1 /**************************************************************************
4 * Written 1998 by Durk Talsma, started Juni, 1998. For the flight gear
7 * Additional mouse supported added by David Megginson, 1999.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of the
12 * License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 **************************************************************************/
31 #include <simgear/compiler.h>
37 #include <simgear/structure/exception.hxx>
38 #include <simgear/misc/sg_path.hxx>
39 #include <simgear/props/props.hxx>
40 #include <simgear/props/props_io.hxx>
44 #include <Include/general.hxx>
45 #include <Main/main.hxx>
46 #include <Main/globals.hxx>
47 #include <Main/fg_props.hxx>
50 #include "gui_local.hxx"
51 #include "preset_dlg.hxx"
54 extern void initDialog (void);
55 extern void mkDialogInit (void);
56 extern void ConfirmExitDialogInit(void);
60 fntTexFont *guiFntHandle = 0;
63 /* -------------------------------------------------------------------------
65 _____________________________________________________________________*/
74 puSetDefaultStyle ( PUSTYLE_SMALL_SHADED ); //PUSTYLE_DEFAULT
75 puSetDefaultColourScheme (0.8, 0.8, 0.9, 1);
79 // Next check home directory
81 char* envp = ::getenv( "FG_FONTS" );
85 fntpath.set( globals->get_fg_root() );
86 fntpath.append( "Fonts" );
89 // Install our fast fonts
90 SGPropertyNode *locale = globals->get_locale();
91 fntpath.append(locale->getStringValue("font", "typewriter.txf"));
92 guiFntHandle = new fntTexFont ;
93 guiFntHandle -> load ( (char *)fntpath.c_str() ) ;
94 puFont GuiFont ( guiFntHandle, 15 ) ;
95 puSetDefaultFonts( GuiFont, GuiFont ) ;
96 guiFnt = puGetDefaultLabelFont();
98 LayoutWidget::setDefaultFont(&GuiFont, 15);
100 if (!fgHasNode("/sim/startup/mouse-pointer")) {
101 // no preference specified for mouse pointer, attempt to autodetect...
102 // Determine if we need to render the cursor, or if the windowing
103 // system will do it. First test if we are rendering with glide.
104 if ( strstr ( general.get_glRenderer(), "Glide" ) ) {
105 // Test for the MESA_GLX_FX env variable
106 if ( (mesa_win_state = getenv( "MESA_GLX_FX" )) != NULL) {
107 // test if we are fullscreen mesa/glide
108 if ( (mesa_win_state[0] == 'f') ||
109 (mesa_win_state[0] == 'F') ) {
114 // mouse_active = ~mouse_active;
115 } else if ( !fgGetBool("/sim/startup/mouse-pointer") ) {
116 // don't show pointer
118 // force showing pointer
120 // mouse_active = ~mouse_active;
123 // MOUSE_VIEW mode stuff
126 // Set up our Dialog Boxes
127 ConfirmExitDialogInit();