2003-01-20 16:03:09 +00:00
|
|
|
// new_gui.hxx - XML-configured GUI subsystem.
|
2002-11-08 16:33:00 +00:00
|
|
|
|
2002-11-07 16:27:47 +00:00
|
|
|
#ifndef __NEW_GUI_HXX
|
|
|
|
#define __NEW_GUI_HXX 1
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
# error This library requires C++
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <plib/pu.h>
|
|
|
|
|
|
|
|
#include <simgear/compiler.h> // for SG_USING_STD
|
|
|
|
#include <simgear/misc/props.hxx>
|
|
|
|
|
2002-11-07 22:59:46 +00:00
|
|
|
#include <vector>
|
|
|
|
SG_USING_STD(vector);
|
|
|
|
|
2002-11-07 16:27:47 +00:00
|
|
|
#include <map>
|
|
|
|
SG_USING_STD(map);
|
|
|
|
|
|
|
|
#include <Main/fgfs.hxx>
|
2002-12-22 19:52:26 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2002-11-07 16:27:47 +00:00
|
|
|
|
2003-01-16 18:06:27 +00:00
|
|
|
class FGMenuBar;
|
2003-01-18 15:16:34 +00:00
|
|
|
class FGDialog;
|
|
|
|
class FGBinding;
|
2002-11-07 16:27:47 +00:00
|
|
|
|
2002-11-08 15:24:14 +00:00
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* XML-configured GUI subsystem.
|
|
|
|
*
|
|
|
|
* This subsystem manages the graphical user interface for FlightGear.
|
|
|
|
* It creates a menubar from the XML configuration file in
|
|
|
|
* $FG_ROOT/gui/menubar.xml, then stores the configuration properties
|
|
|
|
* for XML-configured dialog boxes in $FG_ROOT/gui/dialogs/*. It
|
|
|
|
* can show or hide the menubar, and can display any dialog by name.
|
|
|
|
*/
|
2002-11-08 15:24:14 +00:00
|
|
|
class NewGUI : public FGSubsystem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*/
|
2002-11-08 15:24:14 +00:00
|
|
|
NewGUI ();
|
2003-01-20 16:03:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destructor.
|
|
|
|
*/
|
2002-11-08 15:24:14 +00:00
|
|
|
virtual ~NewGUI ();
|
2003-01-20 16:03:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the GUI subsystem.
|
|
|
|
*/
|
2002-11-08 15:24:14 +00:00
|
|
|
virtual void init ();
|
2003-01-20 16:03:09 +00:00
|
|
|
|
2003-01-21 02:09:27 +00:00
|
|
|
/**
|
|
|
|
* Reinitialize the GUI subsystem.
|
|
|
|
*/
|
|
|
|
virtual void reinit ();
|
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Bind properties for the GUI subsystem.
|
|
|
|
*
|
|
|
|
* Currently, this method binds the properties for showing and
|
|
|
|
* hiding the menu.
|
|
|
|
*/
|
2003-01-18 21:11:51 +00:00
|
|
|
virtual void bind ();
|
2003-01-20 16:03:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unbind properties for the GUI subsystem.
|
|
|
|
*/
|
2003-01-18 21:11:51 +00:00
|
|
|
virtual void unbind ();
|
2002-11-08 15:24:14 +00:00
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Update the GUI subsystem.
|
|
|
|
*
|
|
|
|
* Currently, this method is a no-op, because nothing the GUI
|
|
|
|
* subsystem does is time-dependent.
|
|
|
|
*/
|
|
|
|
virtual void update (double delta_time_sec);
|
2002-12-22 19:52:26 +00:00
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Display a dialog box.
|
|
|
|
*
|
|
|
|
* At initialization time, the subsystem reads all of the XML
|
|
|
|
* configuration files from $FG_ROOT/gui/dialogs/*. The
|
|
|
|
* configuration for each dialog specifies a name, and this method
|
|
|
|
* invokes the dialog with the name specified (if it exists).
|
|
|
|
*
|
|
|
|
* @param name The name of the dialog box.
|
|
|
|
* @return true if the dialog exists, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool showDialog (const string &name);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Close the currently-active dialog, if any.
|
|
|
|
*
|
|
|
|
* @return true if a dialog was active, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool closeActiveDialog ();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a pointer to the current menubar.
|
|
|
|
*/
|
2003-01-16 18:06:27 +00:00
|
|
|
virtual FGMenuBar * getMenuBar ();
|
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ignore this method.
|
|
|
|
*
|
|
|
|
* This method is for internal use only, but it has to be public
|
|
|
|
* so that a non-class callback can see it.
|
|
|
|
*/
|
|
|
|
virtual void setActiveDialog (FGDialog * dialog);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the dialog currently active, if any.
|
|
|
|
*
|
|
|
|
* @return The active dialog, or 0 if none is active.
|
|
|
|
*/
|
|
|
|
virtual FGDialog * getActiveDialog ();
|
|
|
|
|
2003-01-18 21:11:51 +00:00
|
|
|
protected:
|
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Test if the menubar is visible.
|
|
|
|
*
|
|
|
|
* This method exists only for binding.
|
|
|
|
*/
|
2003-01-18 21:11:51 +00:00
|
|
|
virtual bool getMenuBarVisible () const;
|
2003-01-20 16:03:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show or hide the menubar.
|
|
|
|
*
|
|
|
|
* This method exists only for binding.
|
|
|
|
*/
|
2003-01-18 21:11:51 +00:00
|
|
|
virtual void setMenuBarVisible (bool visible);
|
|
|
|
|
2002-12-22 19:52:26 +00:00
|
|
|
|
2002-11-08 15:24:14 +00:00
|
|
|
private:
|
|
|
|
|
2003-01-21 15:44:21 +00:00
|
|
|
// Free all allocated memory.
|
|
|
|
void clear ();
|
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
// Read all the configuration files in a directory.
|
2002-11-08 15:24:14 +00:00
|
|
|
void readDir (const char * path);
|
|
|
|
|
2003-01-16 18:06:27 +00:00
|
|
|
FGMenuBar * _menubar;
|
2003-01-20 16:03:09 +00:00
|
|
|
FGDialog * _active_dialog;
|
2003-01-21 15:44:21 +00:00
|
|
|
map<string,SGPropertyNode *> _dialog_props;
|
2002-11-08 15:24:14 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2002-12-22 19:52:26 +00:00
|
|
|
|
2002-11-07 16:27:47 +00:00
|
|
|
#endif // __NEW_GUI_HXX
|
2002-11-08 16:33:00 +00:00
|
|
|
|