]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/elements/CanvasGroup.hxx
Canvas: Propagate style changes on groups to children
[simgear.git] / simgear / canvas / elements / CanvasGroup.hxx
1 // A group of 2D Canvas elements
2 //
3 // Copyright (C) 2012  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_GROUP_HXX_
20 #define CANVAS_GROUP_HXX_
21
22 #include "CanvasElement.hxx"
23
24 #include <list>
25
26 namespace simgear
27 {
28 namespace canvas
29 {
30
31   class Group:
32     public Element
33   {
34     public:
35       typedef std::list< std::pair< const SGPropertyNode*,
36                                     ElementPtr
37                                   >
38                        > ChildList;
39
40       Group( const CanvasWeakPtr& canvas,
41              const SGPropertyNode_ptr& node,
42              const Style& parent_style = Style(),
43              Element* parent = 0 );
44       virtual ~Group();
45
46       ElementPtr createChild( const std::string& type,
47                               const std::string& id = "" );
48       ElementPtr getChild(const SGPropertyNode* node);
49
50       /**
51        * Get first child with given id (breadth-first search)
52        *
53        * @param id  Id (value if property node 'id') of element
54        */
55       ElementPtr getElementById(const std::string& id);
56
57       virtual void update(double dt);
58
59       virtual bool traverse(EventVisitor& visitor);
60
61       virtual bool setStyle(const SGPropertyNode* child);
62
63       virtual osg::BoundingBox getTransformedBounds(const osg::Matrix& m) const;
64
65     protected:
66
67       typedef std::map<std::string, ElementFactory> ChildFactories;
68
69       ChildFactories    _child_factories;
70       ChildList         _children;
71
72       virtual void childAdded(SGPropertyNode * child);
73       virtual void childRemoved(SGPropertyNode * child);
74       virtual void childChanged(SGPropertyNode * child);
75
76       void handleZIndexChanged(SGPropertyNode* node, int z_index);
77
78       ChildList::iterator findChild(const SGPropertyNode* node);
79   };
80
81 } // namespace canvas
82 } // namespace simgear
83
84 #endif /* CANVAS_GROUP_HXX_ */