]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/window.hxx
Refactor PropertyBasedElement and Manager
[flightgear.git] / src / Canvas / window.hxx
1 // Window for placing a Canvas onto it (for dialogs, menus, etc.)
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_WINDOW_HXX_
20 #define CANVAS_WINDOW_HXX_
21
22 #include <Canvas/elements/CanvasImage.hxx>
23 #include <Canvas/MouseEvent.hxx>
24
25 #include <simgear/props/PropertyBasedElement.hxx>
26 #include <simgear/props/propertyObject.hxx>
27
28 #include <osg/Geode>
29 #include <osg/Geometry>
30
31 namespace canvas
32 {
33   class Window:
34     public simgear::PropertyBasedElement
35   {
36     public:
37       Window(SGPropertyNode* node);
38       virtual ~Window();
39
40       virtual void update(double delta_time_sec);
41       virtual void valueChanged (SGPropertyNode * node);
42
43       osg::Group* getGroup();
44       const Rect<float>& getRegion() const;
45
46       void setCanvas(CanvasPtr canvas);
47       CanvasWeakPtr getCanvas() const;
48
49       bool handleMouseEvent(const MouseEvent& event);
50
51     protected:
52
53       Image _image;
54
55       void doRaise(SGPropertyNode* node_raise);
56   };
57 } // namespace canvas
58
59 #endif /* CANVAS_WINDOW_HXX_ */