evt_mouse.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * evt_mouse.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 2f72f98e100f5553f53e7aac144f1f9a195ef1cd $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifndef EVT_MOUSE_HPP
  25. #define EVT_MOUSE_HPP
  26. #include "evt_input.hpp"
  27. /// Class for mouse button events
  28. class EvtMouse: public EvtInput
  29. {
  30.     public:
  31.         enum ButtonType_t
  32.         {
  33.             kLeft,
  34.             kMiddle,
  35.             kRight
  36.         };
  37.         enum ActionType_t
  38.         {
  39.             kDown,
  40.             kUp,
  41.             kDblClick
  42.         };
  43.         EvtMouse( intf_thread_t *pIntf, int xPos, int yPos, ButtonType_t button,
  44.                   ActionType_t action, int mod = kModNone ):
  45.             EvtInput( pIntf, mod ), m_xPos( xPos ), m_yPos( yPos ),
  46.             m_button( button ), m_action( action ) {}
  47.         virtual ~EvtMouse() {}
  48.         // Return the event coordinates
  49.         int getXPos() const { return m_xPos; }
  50.         int getYPos() const { return m_yPos; }
  51.         // Return the button and the action
  52.         ButtonType_t getButton() const { return m_button; }
  53.         ActionType_t getAction() const { return m_action; }
  54.         virtual const string getAsString() const;
  55.     private:
  56.         /// Coordinates of the mouse relative to the window
  57.         int m_xPos, m_yPos;
  58.         /// Mouse button involved in the event
  59.         ButtonType_t m_button;
  60.         /// Type of action
  61.         ActionType_t m_action;
  62. };
  63. #endif