]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/events/MouseEvent.cxx
Canvas: Support for preventDefault() on Events.
[simgear.git] / simgear / canvas / events / MouseEvent.cxx
1 // Mouse 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 "MouseEvent.hxx"
20 #include <osgGA/GUIEventAdapter>
21
22 namespace simgear
23 {
24 namespace canvas
25 {
26
27   //----------------------------------------------------------------------------
28   MouseEvent::MouseEvent():
29     button(0),
30     buttons(0),
31     click_count(0)
32   {
33
34   }
35
36   //----------------------------------------------------------------------------
37   MouseEvent::MouseEvent(const osgGA::GUIEventAdapter& ea):
38     DeviceEvent(ea),
39     button(0),
40     buttons(ea.getButtonMask()),
41     click_count(0)
42   {
43     // Convert button mask to index
44     int button_mask = ea.getButton();
45     while( (button_mask >>= 1) > 0 )
46       button += 1;
47   }
48
49   //----------------------------------------------------------------------------
50   bool MouseEvent::canBubble() const
51   {
52     // Check if event supports bubbling
53     const Event::Type types_no_bubbling[] = {
54       Event::MOUSE_ENTER,
55       Event::MOUSE_LEAVE,
56     };
57     const size_t num_types_no_bubbling = sizeof(types_no_bubbling)
58                                        / sizeof(types_no_bubbling[0]);
59
60     for( size_t i = 0; i < num_types_no_bubbling; ++i )
61       if( type == types_no_bubbling[i] )
62         return false;
63
64     return true;
65   }
66
67 } // namespace canvas
68 } // namespace simgear