]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/CanvasEventVisitor.hxx
Canvas: Ensure events are dispatched to canvas with no element hit.
[simgear.git] / simgear / canvas / CanvasEventVisitor.hxx
1 // Visitor for traversing a canvas element hierarchy similar to the traversal
2 // of the DOM Level 3 Event Model
3 //
4 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Library General Public
8 // License as published by the Free Software Foundation; either
9 // version 2 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Library General Public License for more details.
15 //
16 // You should have received a copy of the GNU Library General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
19
20 #ifndef CANVAS_EVENT_VISITOR_HXX_
21 #define CANVAS_EVENT_VISITOR_HXX_
22
23 #include "canvas_fwd.hxx"
24 #include "CanvasEventManager.hxx"
25
26 namespace simgear
27 {
28 namespace canvas
29 {
30
31   class EventVisitor
32   {
33     public:
34
35       enum TraverseMode
36       {
37         TRAVERSE_UP,
38         TRAVERSE_DOWN
39       };
40
41       /**
42        *
43        * @param mode
44        * @param pos     Mouse position
45        * @param delta   Mouse movement since last mouse move event
46        * @param root    Element to dispatch events to if no element is hit
47        */
48       EventVisitor( TraverseMode mode,
49                     const osg::Vec2f& pos,
50                     const osg::Vec2f& delta,
51                     const ElementPtr& root = ElementPtr() );
52       virtual ~EventVisitor();
53       virtual bool traverse(Element& el);
54       virtual bool apply(Element& el);
55
56       const EventPropagationPath& getPropagationPath() const;
57
58     protected:
59
60       TraverseMode          _traverse_mode;
61       EventPropagationPath  _target_path;
62       ElementPtr            _root;
63
64   };
65
66 } // namespace canvas
67 } // namespace simgear
68
69
70 #endif /* CANVAS_EVENTVISITOR_HXX_ */