]> git.sesse.net Git - vlc/blob - modules/gui/skins2/events/evt_menu.hpp
26295cb05a9269f12d51645ca1d0bad7b1c64d62
[vlc] / modules / gui / skins2 / events / evt_menu.hpp
1 /*****************************************************************************
2  * evt_menu.hpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef EVT_MENU_HPP
25 #define EVT_MENU_HPP
26
27 #include "evt_generic.hpp"
28
29
30 /// Mouse move event
31 class EvtMenu: public EvtGeneric
32 {
33     public:
34         EvtMenu( intf_thread_t *pIntf, int itemId ):
35             EvtGeneric( pIntf ), m_itemId( itemId ) {}
36         virtual ~EvtMenu() {}
37
38         /// Return the type of event
39         virtual const string getAsString() const { return "menu"; }
40
41         // Getter
42         int getItemId() const { return m_itemId; }
43
44     private:
45         /// Coordinates of the mouse (absolute or relative)
46         int m_itemId;
47 };
48
49
50 #endif