]> git.mxchange.org Git - flightgear.git/blob - utils/fgpanel/FGPanelApplication.hxx
fgviewer: Update fgviewer.
[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/structure/subsystem_mgr.hxx>
25 #include <simgear/props/props.hxx>
26
27 #include <string>
28
29 #include "panel.hxx"
30
31 class FGPanelApplication : public FGGLApplication {
32 public:
33   FGPanelApplication( int argc, char ** argv );
34   ~FGPanelApplication();
35
36   void Run();
37
38 protected:
39   virtual void Key( unsigned char key, int x, int y );
40   virtual void Idle();
41 //  virtual void Display();
42   virtual void Reshape( int width, int height );
43
44   virtual void Init();
45
46   double Sleep();
47
48   SGSharedPtr<FGPanel> panel;
49   SGSharedPtr<FGPanelProtocol> protocol;
50
51   int width;
52   int height;
53 };
54
55 #endif