]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/window.cxx
Revert "Ensure immediate canvas update inside GUI windows."
[flightgear.git] / src / Canvas / window.cxx
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 #include "window.hxx"
20 #include <simgear/canvas/Canvas.hxx>
21
22 #include <osgGA/GUIEventHandler>
23
24 #include <boost/foreach.hpp>
25
26 namespace canvas
27 {
28   //----------------------------------------------------------------------------
29   Window::Window(SGPropertyNode* node):
30     PropertyBasedElement(node),
31     _image( simgear::canvas::CanvasPtr(),
32             node,
33             simgear::canvas::Style() ),
34     _resizable(false),
35     _capture_events(true),
36     _resize_top(node, "resize-top"),
37     _resize_right(node, "resize-right"),
38     _resize_bottom(node, "resize-bottom"),
39     _resize_left(node, "resize-left"),
40     _resize_status(node, "resize-status")
41   {
42     _image.removeListener();
43
44     // TODO probably better remove default position and size
45     node->setFloatValue("x", 50);
46     node->setFloatValue("y", 100);
47     node->setFloatValue("size[0]", 400);
48     node->setFloatValue("size[1]", 300);
49
50     node->setFloatValue("source/right", 1);
51     node->setFloatValue("source/bottom", 1);
52     node->setBoolValue("source/normalized", true);
53   }
54
55   //----------------------------------------------------------------------------
56   Window::~Window()
57   {
58
59   }
60
61   //----------------------------------------------------------------------------
62   void Window::update(double delta_time_sec)
63   {
64     _image.update(delta_time_sec);
65   }
66
67   //----------------------------------------------------------------------------
68   void Window::valueChanged(SGPropertyNode * node)
69   {
70     bool handled = false;
71     if( node->getParent() == _node )
72     {
73       handled = true;
74       if( node->getNameString() == "raise-top" )
75         doRaise(node);
76       else if( node->getNameString()  == "resize" )
77         _resizable = node->getBoolValue();
78       else if( node->getNameString() == "capture-events" )
79         _capture_events = node->getBoolValue();
80       else
81         handled = false;
82     }
83
84     if( !handled )
85       _image.valueChanged(node);
86   }
87
88   //----------------------------------------------------------------------------
89   osg::Group* Window::getGroup()
90   {
91     return _image.getMatrixTransform();
92   }
93
94   //----------------------------------------------------------------------------
95   const SGRect<float>& Window::getRegion() const
96   {
97     return _image.getRegion();
98   }
99
100   //----------------------------------------------------------------------------
101   void Window::setCanvas(simgear::canvas::CanvasPtr canvas)
102   {
103     _image.setSrcCanvas(canvas);
104   }
105
106   //----------------------------------------------------------------------------
107   simgear::canvas::CanvasWeakPtr Window::getCanvas() const
108   {
109     return _image.getSrcCanvas();
110   }
111
112   //----------------------------------------------------------------------------
113   bool Window::isVisible() const
114   {
115     return _image.isVisible();
116   }
117
118   //----------------------------------------------------------------------------
119   bool Window::isResizable() const
120   {
121     return _resizable;
122   }
123
124   //----------------------------------------------------------------------------
125   bool Window::isCapturingEvents() const
126   {
127     return _capture_events;
128   }
129
130   //----------------------------------------------------------------------------
131   bool Window::handleMouseEvent(const simgear::canvas::MouseEventPtr& event)
132   {
133     return _image.handleMouseEvent(event);
134   }
135
136   //----------------------------------------------------------------------------
137   void Window::handleResize(uint8_t mode, const osg::Vec2f& delta)
138   {
139     if( mode == NONE )
140     {
141       _resize_status = 0;
142       return;
143     }
144     else if( mode & INIT )
145     {
146       _resize_top    = getRegion().t();
147       _resize_right  = getRegion().r();
148       _resize_bottom = getRegion().b();
149       _resize_left   = getRegion().l();
150       _resize_status = 1;
151     }
152
153     if( mode & BOTTOM )
154       _resize_bottom += delta.y();
155     else if( mode & TOP )
156       _resize_top += delta.y();
157
158     if( mode & canvas::Window::RIGHT )
159       _resize_right += delta.x();
160     else if( mode & canvas::Window::LEFT )
161       _resize_left += delta.x();
162   }
163
164   //----------------------------------------------------------------------------
165   void Window::doRaise(SGPropertyNode* node_raise)
166   {
167     if( node_raise && !node_raise->getBoolValue() )
168       return;
169
170     BOOST_FOREACH(osg::Group* parent, getGroup()->getParents())
171     {
172       // Remove window...
173       parent->removeChild(getGroup());
174
175       // ...and add again as topmost window
176       parent->addChild(getGroup());
177     }
178
179     if( node_raise )
180       node_raise->setBoolValue(false);
181   }
182
183 } // namespace canvas