]> git.mxchange.org Git - flightgear.git/blob - src/GUI/gui.h
Added support for reinit(), to reload the configuration files without
[flightgear.git] / src / GUI / gui.h
1 /**************************************************************************
2  * gui.h
3  *
4  * Written 1998 by Durk Talsma, started Juni, 1998.  For the flight gear
5  * project.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * $Id$
22  **************************************************************************/
23
24
25 #ifndef _GUI_H_
26 #define _GUI_H_
27
28 #ifdef HAVE_CONFIG_H
29 #  include <config.h>
30 #endif
31
32 #ifdef HAVE_WINDOWS_H
33 #  include <windows.h>
34 #endif
35
36 #include GLUT_H                 // needed before pu.h
37
38 #include <plib/pu.h>            // plib include
39
40 #include <simgear/misc/exception.hxx>
41
42 #define TR_HIRES_SNAP   1
43
44
45 // gui.cxx
46 extern void guiInit();
47 #if defined (FG_OLD_MENUBAR)
48 extern void guiToggleMenu(void);
49 #endif
50 extern void mkDialog(const char *txt);
51 extern void guiErrorMessage(const char *txt);
52 extern void guiErrorMessage(const char *txt, const sg_throwable &throwable);
53 extern void ConfirmExitDialog(void);
54
55 extern void fgDumpSnapShot();
56
57 extern puFont guiFnt;
58 extern fntTexFont *guiFntHandle;
59 extern int gui_menu_on;
60
61 // from gui_funcs.cxx
62 extern void saveFlight(puObject *);
63 extern void loadFlight(puObject *);
64 extern void reInit(puObject *);
65 extern void dumpSnapShot(puObject *);
66 #ifdef TR_HIRES_SNAP
67 extern void dumpHiResSnapShot(puObject *);
68 #endif
69 #if defined( WIN32 ) && !defined( __CYGWIN__) && !defined(__MINGW32__)
70 extern void printScreen(puObject *);
71 #endif
72 extern void MayBeGoodBye(puObject *);
73 extern void guiTogglePanel(puObject *);
74 extern void PilotOffsetAdjust(puObject *);
75 extern void fgHUDalphaAdjust(puObject *);
76 extern void prop_pickerView(puObject *);
77 extern void NewAirport(puObject *);
78 #ifdef FG_NETWORK_OLK
79 extern void net_display_toggle(puObject *);
80 extern void NewCallSign(puObject *);
81 extern void net_fgd_scan(puObject *);
82 extern void net_register(puObject *);
83 extern void net_unregister(puObject *);
84 #endif
85 extern void NewAltitude(puObject *);
86 extern void AddWayPoint(puObject *);
87 extern void PopWayPoint(puObject *);
88 extern void ClearRoute(puObject *);
89 extern void fgAPAdjust(puObject *);
90 extern void fgLatLonFormatToggle(puObject *);
91 extern void helpCb(puObject *);
92
93 typedef struct {
94         char *name;
95         void (*fn)(puObject *);
96 } __fg_gui_fn_t;
97 extern const __fg_gui_fn_t __fg_gui_fn[];
98
99 // GLOBAL COMMON DIALOG BOX TEXT STRINGS
100 extern char *gui_msg_OK;     // "OK"
101 extern char *gui_msg_NO;     // "NO"
102 extern char *gui_msg_YES;    // "YES"
103 extern char *gui_msg_CANCEL; // "CANCEL"
104 extern char *gui_msg_RESET;  // "RESET"
105
106 // mouse.cxx
107 extern void guiInitMouse(int width, int height);
108 extern void guiMotionFunc ( int x, int y );
109 extern void guiMouseFunc(int button, int updown, int x, int y);
110 extern void maybeToggleMouse( void );
111 extern void BusyCursor( int restore );
112 extern void CenterView( void );
113 extern void TurnCursorOn( void );
114 extern void TurnCursorOff( void );
115
116 // MACROS TO HELP KEEP PUI LIVE INTERFACE STACK IN SYNC
117 // These insure that the mouse is active when dialog is shown
118 // and try to the maintain the original mouse state when hidden
119 // These will also repair any damage done to the Panel if active
120
121 // Activate Dialog Box
122 inline void FG_PUSH_PUI_DIALOG( puObject *X ) {
123     maybeToggleMouse(); 
124     puPushLiveInterface( (puInterface *)X ) ; 
125     X->reveal() ;
126 }
127
128 // Deactivate Dialog Box
129 inline void FG_POP_PUI_DIALOG( puObject *X ) {
130     X->hide(); 
131     puPopLiveInterface(); 
132     maybeToggleMouse();
133 }
134
135 // Finalize Dialog Box Construction 
136 inline void FG_FINALIZE_PUI_DIALOG( puObject *X ) {
137     ((puGroup *)X)->close();
138     X->hide();
139     puPopLiveInterface();
140 }
141             
142 #endif // _GUI_H_