]> git.mxchange.org Git - flightgear.git/blob - src/GUI/gui.h
Fixes to remove dependencies on depricated plib code (that just happened to
[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 <GL/glut.h>            // needed before pu.h
37 #include <plib/pu.h>            // plib include
38
39 #include <simgear/misc/exception.hxx>
40
41 // gui.cxx
42 extern void guiInit();
43 extern void guiToggleMenu(void);
44 extern void mkDialog(const char *txt);
45 extern void guiErrorMessage(const char *txt);
46 extern void guiErrorMessage(const char *txt, const sg_throwable &throwable);
47 extern void ConfirmExitDialog(void);
48
49 extern void fgDumpSnapShot();
50
51 extern puFont guiFnt;
52 extern fntTexFont *guiFntHandle;
53 extern int gui_menu_on;
54
55 // GLOBAL COMMON DIALOG BOX TEXT STRINGS
56 extern char *gui_msg_OK;     // "OK"
57 extern char *gui_msg_NO;     // "NO"
58 extern char *gui_msg_YES;    // "YES"
59 extern char *gui_msg_CANCEL; // "CANCEL"
60 extern char *gui_msg_RESET;  // "RESET"
61
62 // mouse.cxx
63 extern void guiMotionFunc ( int x, int y );
64 extern void guiMouseFunc(int button, int updown, int x, int y);
65 extern void maybeToggleMouse( void );
66 extern void BusyCursor( int restore );
67 extern void CenterView( void );
68 extern void TurnCursorOn( void );
69 extern void TurnCursorOff( void );
70
71 // MACROS TO HELP KEEP PUI LIVE INTERFACE STACK IN SYNC
72 // These insure that the mouse is active when dialog is shown
73 // and try to the maintain the original mouse state when hidden
74 // These will also repair any damage done to the Panel if active
75
76 // Activate Dialog Box
77 #define FG_PUSH_PUI_DIALOG( X ) \
78     maybeToggleMouse(); \
79     puPushLiveInterface( (X) ) ; \
80     ( X )->reveal()
81
82 // Deactivate Dialog Box
83 #define FG_POP_PUI_DIALOG( X ) \
84     (X)->hide(); \
85     puPopLiveInterface(); \
86     maybeToggleMouse();
87
88 // Finalize Dialog Box Construction 
89 #define FG_FINALIZE_PUI_DIALOG( X ) \
90     ( X )->close(); \
91     ( X )->hide(); \
92     puPopLiveInterface();
93             
94 #endif // _GUI_H_