1 /**************************************************************************
4 * Written 1998 by Durk Talsma, started Juni, 1998. For the flight gear
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.
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.
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.
22 **************************************************************************/
38 #include <simgear/structure/exception.hxx>
40 #define TR_HIRES_SNAP 1
44 extern void guiInit();
45 extern void mkDialog(const char *txt);
46 extern void guiErrorMessage(const char *txt);
47 extern void guiErrorMessage(const char *txt, const sg_throwable &throwable);
48 extern void ConfirmExitDialog(void);
50 extern void fgDumpSnapShot();
53 extern fntTexFont *guiFntHandle;
54 extern int gui_menu_on;
57 extern void saveFlight(puObject *);
58 extern void loadFlight(puObject *);
59 extern void reInit(puObject *);
60 extern void dumpSnapShot(puObject *);
62 extern void dumpHiResSnapShot(puObject *);
64 #if defined( WIN32 ) && !defined( __CYGWIN__) && !defined(__MINGW32__)
65 extern void printScreen(puObject *);
67 extern void MayBeGoodBye(puObject *);
68 extern void guiTogglePanel(puObject *);
69 extern void PilotOffsetAdjust(puObject *);
70 extern void fgHUDalphaAdjust(puObject *);
71 extern void prop_pickerView(puObject *);
72 extern void NewAirport(puObject *);
74 extern void net_display_toggle(puObject *);
75 extern void NewCallSign(puObject *);
76 extern void net_fgd_scan(puObject *);
77 extern void net_register(puObject *);
78 extern void net_unregister(puObject *);
80 extern void NewAltitude(puObject *);
81 extern void AddWayPoint(puObject *);
82 extern void PopWayPoint(puObject *);
83 extern void ClearRoute(puObject *);
84 extern void fgAPAdjust(puObject *);
85 extern void fgLatLonFormatToggle(puObject *);
86 extern void helpCb(puObject *);
87 extern void fgReshape(int, int);
91 void (*fn)(puObject *);
93 extern const __fg_gui_fn_t __fg_gui_fn[];
95 // GLOBAL COMMON DIALOG BOX TEXT STRINGS
96 extern char *gui_msg_OK; // "OK"
97 extern char *gui_msg_NO; // "NO"
98 extern char *gui_msg_YES; // "YES"
99 extern char *gui_msg_CANCEL; // "CANCEL"
100 extern char *gui_msg_RESET; // "RESET"
103 extern void guiInitMouse(int width, int height);
104 extern void guiMotionFunc ( int x, int y );
105 extern void guiMouseFunc(int button, int updown, int x, int y);
106 extern void maybeToggleMouse( void );
107 extern void BusyCursor( int restore );
108 extern void CenterView( void );
109 extern void TurnCursorOn( void );
110 extern void TurnCursorOff( void );
112 // MACROS TO HELP KEEP PUI LIVE INTERFACE STACK IN SYNC
113 // These insure that the mouse is active when dialog is shown
114 // and try to the maintain the original mouse state when hidden
115 // These will also repair any damage done to the Panel if active
117 // Activate Dialog Box
118 inline void FG_PUSH_PUI_DIALOG( puObject *X ) {
120 puPushLiveInterface( (puInterface *)X ) ;
124 // Deactivate Dialog Box
125 inline void FG_POP_PUI_DIALOG( puObject *X ) {
127 puPopLiveInterface();
131 // Finalize Dialog Box Construction
132 inline void FG_FINALIZE_PUI_DIALOG( puObject *X ) {
133 ((puGroup *)X)->close();
135 puPopLiveInterface();