]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/canvas_mgr.cxx
Canvas: First version of new Canvas GUI system.
[flightgear.git] / src / Canvas / canvas_mgr.cxx
1 // Canvas with 2D rendering api
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19 #include "canvas_mgr.hxx"
20 #include "canvas.hxx"
21
22 #include <boost/bind.hpp>
23
24 typedef boost::shared_ptr<Canvas> CanvasPtr;
25 CanvasPtr canvasFactory(SGPropertyNode* node)
26 {
27   return CanvasPtr(new Canvas(node));
28 }
29
30
31 //------------------------------------------------------------------------------
32 CanvasMgr::CanvasMgr():
33   PropertyBasedMgr("/canvas", "texture", &canvasFactory)
34 {
35   Canvas::addPlacementFactory
36   (
37     "object",
38     boost::bind
39     (
40       &FGODGauge::set_texture,
41       _1,
42       boost::bind(&Canvas::getTexture, _2),
43       boost::bind(&Canvas::getCullCallback, _2)
44     )
45   );
46 }
47
48 //------------------------------------------------------------------------------
49 unsigned int CanvasMgr::getCanvasTexId(size_t index) const
50 {
51   if(    index >= _elements.size()
52       || !_elements[index] )
53     return 0;
54
55   return static_cast<Canvas*>(_elements[index].get())->getTexId();
56 }