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