]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/window.hxx
Canvas: Fully remove Window drawable if destroyed
[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 "property_based_element.hxx"
23 #include "rect.hxx"
24 #include <Canvas/MouseEvent.hxx>
25
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 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::Drawable* getDrawable() { return _geometry; }
44       const Rect<int>& getRegion() const { return _region; }
45
46       void setCanvas(CanvasPtr canvas);
47       CanvasWeakPtr getCanvas() const;
48
49       bool handleMouseEvent(const MouseEvent& event);
50
51     protected:
52
53       bool _dirty;
54
55       osg::ref_ptr<osg::Geometry>   _geometry;
56       osg::ref_ptr<osg::Vec3Array>  _vertices;
57       osg::ref_ptr<osg::Vec2Array>  _tex_coords;
58
59       simgear::PropertyObject<int>  _x, _y,
60                                     _width, _height;
61       Rect<int>                     _region;
62
63       CanvasWeakPtr _canvas;
64   };
65 } // namespace canvas
66
67 #endif /* CANVAS_WINDOW_HXX_ */