]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/events/DeviceEvent.hxx
Canvas: basic Keyboard event support (with input focus).
[simgear.git] / simgear / canvas / events / DeviceEvent.hxx
1 ///@file Input device event (keyboard/mouse)
2 //
3 // Copyright (C) 2014  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #ifndef CANVAS_DEVICE_EVENT_HXX_
20 #define CANVAS_DEVICE_EVENT_HXX_
21
22 #include <simgear/canvas/CanvasEvent.hxx>
23
24 namespace osgGA { class GUIEventAdapter; }
25
26 namespace simgear
27 {
28 namespace canvas
29 {
30
31   /**
32    * Common interface for input device events.
33    */
34   class DeviceEvent:
35     public Event
36   {
37     public:
38       DeviceEvent();
39       DeviceEvent(const osgGA::GUIEventAdapter& ea);
40
41       int getModifiers() const { return modifiers; }
42
43       bool ctrlKey() const;
44       bool shiftKey() const;
45       bool altKey() const;
46       bool metaKey() const;
47
48     protected:
49       int modifiers;  //!< Keyboard modifier state
50   };
51
52 } // namespace canvas
53 } // namespace simgear
54
55 #endif /* CANVAS_DEVICE_EVENT_HXX_ */