]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/elements/CanvasGroup.hxx
Move parseColor to scene/util
[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 <boost/shared_ptr.hpp>
25 #include <list>
26 #include <map>
27
28 namespace simgear
29 {
30 namespace canvas
31 {
32
33   typedef boost::shared_ptr<Element> ElementPtr;
34
35   class Group:
36     public Element
37   {
38     public:
39       typedef std::list< std::pair< const SGPropertyNode*,
40                                     ElementPtr
41                                   >
42                        > ChildList;
43
44       Group( const CanvasWeakPtr& canvas,
45              SGPropertyNode_ptr node,
46              const Style& parent_style = Style() );
47       virtual ~Group();
48
49       virtual void update(double dt);
50
51     protected:
52
53       ChildList _children;
54
55       virtual bool handleLocalMouseEvent(const canvas::MouseEvent& event);
56
57       virtual void childAdded(SGPropertyNode * child);
58       virtual void childRemoved(SGPropertyNode * child);
59       virtual void childChanged(SGPropertyNode * child);
60
61       void handleZIndexChanged(SGPropertyNode* node, int z_index);
62   };
63
64 } // namespace canvas
65 } // namespace simgear
66
67 #endif /* CANVAS_GROUP_HXX_ */