]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/events/DeviceEvent.cxx
Canvas: Support for preventDefault() on Events.
[simgear.git] / simgear / canvas / events / DeviceEvent.cxx
1 // Input device event
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 #include "DeviceEvent.hxx"
20 #include <osgGA/GUIEventAdapter>
21
22 namespace simgear
23 {
24 namespace canvas
25 {
26
27   //----------------------------------------------------------------------------
28   DeviceEvent::DeviceEvent():
29     modifiers(0)
30   {
31
32   }
33
34   //----------------------------------------------------------------------------
35   DeviceEvent::DeviceEvent(const osgGA::GUIEventAdapter& ea):
36     modifiers(ea.getModKeyMask())
37   {
38     time = ea.getTime();
39   }
40
41   //----------------------------------------------------------------------------
42   bool DeviceEvent::ctrlKey() const
43   {
44     return (modifiers & osgGA::GUIEventAdapter::MODKEY_CTRL) != 0;
45   }
46
47   //----------------------------------------------------------------------------
48   bool DeviceEvent::shiftKey() const
49   {
50     return (modifiers & osgGA::GUIEventAdapter::MODKEY_SHIFT) != 0;
51   }
52
53   //----------------------------------------------------------------------------
54   bool DeviceEvent::altKey() const
55   {
56     return (modifiers & osgGA::GUIEventAdapter::MODKEY_ALT) != 0;
57   }
58
59   //----------------------------------------------------------------------------
60   bool DeviceEvent::metaKey() const
61   {
62     return (modifiers & osgGA::GUIEventAdapter::MODKEY_META) != 0;
63   }
64
65 } // namespace canvas
66 } // namespace simgear