]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/MouseEvent.hxx
Minor main loop/init clean-up
[flightgear.git] / src / Canvas / MouseEvent.hxx
1 // Mouse event
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19 #ifndef CANVAS_MOUSE_EVENT_HXX_
20 #define CANVAS_MOUSE_EVENT_HXX_
21
22 #include <osgGA/GUIEventAdapter>
23
24 namespace canvas
25 {
26
27   class MouseEvent
28   {
29     public:
30       typedef osgGA::GUIEventAdapter::EventType EventType;
31       typedef osgGA::GUIEventAdapter::ScrollingMotion Scroll;
32
33       MouseEvent(EventType type):
34         type(type),
35         x(-1), y(-1),
36         dx(0), dy(0),
37         button(-1),
38         state(-1),
39         mod(-1),
40         scroll(osgGA::GUIEventAdapter::SCROLL_NONE)
41       {}
42
43       osg::Vec2f getPos() const { return osg::Vec2f(x, y); }
44       osg::Vec3f getPos3() const { return osg::Vec3f(x, y, 0); }
45
46       EventType   type;
47       float       x, y,
48                   dx, dy;
49       int         button, //<! Button for this event
50                   state,  //<! Current button state
51                   mod;    //<! Keyboard modifier state
52       Scroll      scroll;
53   };
54
55 } // namespace canvas
56
57 #endif /* CANVAS_MOUSE_EVENT_HXX_ */