]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/gui_mgr.hxx
Fix starting on carrier.
[flightgear.git] / src / Canvas / gui_mgr.hxx
1 // Canvas gui/dialog manager
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 #ifndef CANVAS_GUI_MGR_HXX_
20 #define CANVAS_GUI_MGR_HXX_
21
22 #include "canvas_fwd.hpp"
23
24 #include <simgear/canvas/canvas_fwd.hxx>
25 #include <simgear/canvas/elements/CanvasGroup.hxx>
26 #include <simgear/props/PropertyBasedMgr.hxx>
27 #include <simgear/props/propertyObject.hxx>
28
29 #include <osg/ref_ptr>
30 #include <osg/Geode>
31 #include <osg/MatrixTransform>
32
33 namespace osgGA
34 {
35   class GUIEventAdapter;
36 }
37
38 class GUIEventHandler;
39 class GUIMgr:
40   public SGSubsystem
41 {
42   public:
43     GUIMgr();
44
45     canvas::WindowPtr createWindow(const std::string& name = "");
46
47     virtual void init();
48     virtual void shutdown();
49
50     virtual void update(double dt);
51
52     /**
53      * Get simgear::canvas::Group containing all windows
54      */
55     simgear::canvas::GroupPtr getDesktop();
56
57   protected:
58
59     simgear::canvas::GroupPtr           _desktop;
60     osg::ref_ptr<GUIEventHandler>       _event_handler;
61
62     simgear::canvas::Placements
63     addWindowPlacement( SGPropertyNode* placement,
64                         simgear::canvas::CanvasPtr canvas );
65 };
66
67 #endif /* CANVAS_GUI_MGR_HXX_ */