1998-06-12 01:07:06 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* gui.cxx
|
|
|
|
*
|
|
|
|
* Written 1998 by Durk Talsma, started Juni, 1998. For the flight gear
|
|
|
|
* project.
|
|
|
|
*
|
1999-09-09 03:40:06 +00:00
|
|
|
* Additional mouse supported added by David Megginson, 1999.
|
|
|
|
*
|
1998-06-12 01:07:06 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
1998-06-12 01:07:06 +00:00
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
**************************************************************************/
|
|
|
|
|
1998-07-04 00:48:41 +00:00
|
|
|
|
1999-03-11 23:09:26 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/compiler.h>
|
1999-05-08 02:33:13 +00:00
|
|
|
|
2008-05-19 21:21:03 +00:00
|
|
|
#include <string>
|
|
|
|
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/exception.hxx>
|
2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2003-05-06 23:46:24 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
|
|
|
#include <simgear/props/props_io.hxx>
|
2002-08-25 22:53:38 +00:00
|
|
|
|
|
|
|
#include <plib/pu.h>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
2003-08-17 09:54:41 +00:00
|
|
|
#include <Main/main.hxx>
|
2000-07-08 06:29:19 +00:00
|
|
|
#include <Main/globals.hxx>
|
2012-04-21 18:17:42 +00:00
|
|
|
#include <Main/locale.hxx>
|
2001-01-05 17:38:58 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2008-05-19 21:21:03 +00:00
|
|
|
#include <Main/WindowSystemAdapter.hxx>
|
2006-06-06 16:33:38 +00:00
|
|
|
#include <GUI/new_gui.hxx>
|
2011-11-19 20:25:51 +00:00
|
|
|
#include <GUI/FGFontCache.hxx>
|
1999-10-14 23:46:28 +00:00
|
|
|
|
1998-06-12 01:07:06 +00:00
|
|
|
#include "gui.h"
|
2004-05-12 15:36:07 +00:00
|
|
|
#include "layout.hxx"
|
1999-06-28 18:41:01 +00:00
|
|
|
|
2008-08-01 15:57:29 +00:00
|
|
|
#include <osg/GraphicsContext>
|
|
|
|
|
2008-05-19 21:21:03 +00:00
|
|
|
using namespace flightgear;
|
2002-08-08 23:25:47 +00:00
|
|
|
|
1999-05-27 00:21:22 +00:00
|
|
|
puFont guiFnt = 0;
|
1998-06-12 01:07:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------
|
1999-06-01 21:17:10 +00:00
|
|
|
init the gui
|
|
|
|
_____________________________________________________________________*/
|
1998-06-12 01:07:06 +00:00
|
|
|
|
2008-05-19 21:21:03 +00:00
|
|
|
namespace
|
1998-06-12 01:07:06 +00:00
|
|
|
{
|
2008-05-19 21:21:03 +00:00
|
|
|
class GUIInitOperation : public GraphicsContextOperation
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GUIInitOperation() : GraphicsContextOperation(std::string("GUI init"))
|
|
|
|
{
|
|
|
|
}
|
2008-08-01 15:57:29 +00:00
|
|
|
void run(osg::GraphicsContext* gc)
|
2008-05-19 21:21:03 +00:00
|
|
|
{
|
|
|
|
WindowSystemAdapter* wsa = WindowSystemAdapter::getWSA();
|
|
|
|
wsa->puInitialize();
|
|
|
|
puSetDefaultStyle ( PUSTYLE_SMALL_SHADED ); //PUSTYLE_DEFAULT
|
|
|
|
puSetDefaultColourScheme (0.8, 0.8, 0.9, 1);
|
|
|
|
|
|
|
|
FGFontCache *fc = globals->get_fontcache();
|
2008-06-06 19:02:17 +00:00
|
|
|
fc->initializeFonts();
|
2008-05-19 21:21:03 +00:00
|
|
|
puFont *GuiFont
|
2012-04-21 18:17:42 +00:00
|
|
|
= fc->get(globals->get_locale()->getDefaultFont("typewriter.txf"),
|
2008-05-19 21:21:03 +00:00
|
|
|
15);
|
|
|
|
puSetDefaultFonts(*GuiFont, *GuiFont);
|
|
|
|
guiFnt = puGetDefaultLabelFont();
|
|
|
|
|
|
|
|
LayoutWidget::setDefaultFont(GuiFont, 15);
|
1999-05-12 01:11:17 +00:00
|
|
|
|
2008-05-19 21:21:03 +00:00
|
|
|
if (!fgHasNode("/sim/startup/mouse-pointer")) {
|
2008-07-27 07:54:13 +00:00
|
|
|
// no preference specified for mouse pointer
|
2008-05-19 21:21:03 +00:00
|
|
|
} else if ( !fgGetBool("/sim/startup/mouse-pointer") ) {
|
|
|
|
// don't show pointer
|
|
|
|
} else {
|
|
|
|
// force showing pointer
|
|
|
|
puShowCursor();
|
1999-06-01 21:17:10 +00:00
|
|
|
}
|
1998-07-04 00:48:41 +00:00
|
|
|
}
|
2008-05-19 21:21:03 +00:00
|
|
|
};
|
|
|
|
|
2008-08-01 15:57:29 +00:00
|
|
|
osg::ref_ptr<GUIInitOperation> initOp;
|
2008-05-19 21:21:03 +00:00
|
|
|
}
|
|
|
|
|
2008-08-01 15:57:29 +00:00
|
|
|
void guiStartInit(osg::GraphicsContext* gc)
|
2008-05-19 21:21:03 +00:00
|
|
|
{
|
2008-08-01 15:57:29 +00:00
|
|
|
if (gc) {
|
|
|
|
initOp = new GUIInitOperation;
|
|
|
|
gc->add(initOp.get());
|
|
|
|
}
|
1999-10-15 20:43:02 +00:00
|
|
|
}
|
2008-05-19 21:21:03 +00:00
|
|
|
|
|
|
|
bool guiFinishInit()
|
|
|
|
{
|
|
|
|
if (!initOp.valid())
|
2008-08-01 15:57:29 +00:00
|
|
|
return true;
|
2008-05-19 21:21:03 +00:00
|
|
|
if (!initOp->isFinished())
|
|
|
|
return false;
|
|
|
|
initOp = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|