]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/CanvasMgr.hxx
Clean up Canvas element creation
[simgear.git] / simgear / canvas / CanvasMgr.hxx
1 // Canvas with 2D rendering API
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 SG_CANVAS_MGR_H_
20 #define SG_CANVAS_MGR_H_
21
22 #include "canvas_fwd.hxx"
23 #include <simgear/props/PropertyBasedMgr.hxx>
24
25 namespace simgear
26 {
27 namespace canvas
28 {
29
30   class CanvasMgr:
31     public PropertyBasedMgr
32   {
33     public:
34
35       /**
36        * @param node            Root node of branch used to control canvasses
37        * @param system_adapter  Adapter for connecting between canvas and
38        *                        application framework
39        *
40        */
41       CanvasMgr( SGPropertyNode_ptr node,
42                  SystemAdapterPtr system_adapter );
43
44       /**
45        * Get ::Canvas by index
46        *
47        * @param index Index of texture node in /canvas/by-index/
48        */
49       CanvasPtr getCanvas(size_t index) const;
50
51     protected:
52
53       SystemAdapterPtr _system_adapter;
54
55       virtual void elementCreated(PropertyBasedElementPtr element);
56   };
57
58 } // namespace canvas
59 } // namespace simgear
60
61 #endif /* SG_CANVAS_MGR_H_ */