]> git.mxchange.org Git - flightgear.git/blob - utils/fgpanel/FGPanelApplication.hxx
Add property controls for cloud impostors and LoD hierarchy radii.
[flightgear.git] / utils / fgpanel / FGPanelApplication.hxx
1 //
2 //  Written and (c) Torsten Dreyer - Torsten(at)t3r_dot_de
3 //
4 //  This program is free software; you can redistribute it and/or
5 //  modify it under the terms of the GNU General Public License as
6 //  published by the Free Software Foundation; either version 2 of the
7 //  License, or (at your option) any later version.
8 // 
9 //  This program is distributed in the hope that it will be useful, but
10 //  WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 //  General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program; if not, write to the Free Software
16 //  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 //
18 #ifndef __FGPANELAPPLICATION_HXX
19 #define __FGPANELAPPLICATION_HXX
20
21 #include "FGGLApplication.hxx"
22 #include "FGPanelProtocol.hxx"
23
24 #include <simgear/math/SGMath.hxx>
25 #include <simgear/structure/subsystem_mgr.hxx>
26 #include <simgear/props/props.hxx>
27
28 #include <string>
29
30 #include "panel.hxx"
31
32 class FGPanelApplication : public FGGLApplication {
33 public:
34   FGPanelApplication( int argc, char ** argv );
35   ~FGPanelApplication();
36
37   void Run();
38
39 protected:
40   virtual void Key( unsigned char key, int x, int y );
41   virtual void Idle();
42 //  virtual void Display();
43   virtual void Reshape( int width, int height );
44
45   virtual void Init();
46
47   double Sleep();
48
49   SGSharedPtr<FGPanel> panel;
50   SGSharedPtr<FGPanelProtocol> protocol;
51
52   int width;
53   int height;
54 };
55
56 #endif