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
|
2003-05-06 23:46:24 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/subsystem_mgr.hxx>
|
2002-11-07 16:27:47 +00:00
|
|
|
|
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);
|
|
|
|
|
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
|
2003-02-04 22:28:48 +00:00
|
|
|
* for XML-configured dialog boxes found in $FG_ROOT/gui/dialogs/. It
|
2003-01-20 16:03:09 +00:00
|
|
|
* can show or hide the menubar, and can display any dialog by name.
|
|
|
|
*/
|
2003-09-24 17:20:55 +00:00
|
|
|
class NewGUI : public SGSubsystem
|
2002-11-08 15:24:14 +00:00
|
|
|
{
|
|
|
|
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-12-08 02:05:10 +00:00
|
|
|
/**
|
|
|
|
* Creates a new dialog box, using the same property format as the
|
|
|
|
* gui/dialogs configuration files. Does not display the
|
|
|
|
* resulting dialog. If a pre-existing dialog of the same name
|
|
|
|
* exists, it will be deleted. The node argument will be stored
|
|
|
|
* in the GUI subsystem using SGPropertNode_ptr reference counting.
|
|
|
|
* It should not be deleted by user code.
|
|
|
|
*
|
|
|
|
* @param node A property node containing the dialog definition
|
|
|
|
*/
|
|
|
|
virtual void newDialog (SGPropertyNode* node);
|
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Display a dialog box.
|
|
|
|
*
|
|
|
|
* At initialization time, the subsystem reads all of the XML
|
2003-02-04 22:28:48 +00:00
|
|
|
* configuration files from the directory $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).
|
2003-01-20 16:03:09 +00:00
|
|
|
*
|
|
|
|
* @param name The name of the dialog box.
|
|
|
|
* @return true if the dialog exists, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool showDialog (const string &name);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2003-12-08 02:05:10 +00:00
|
|
|
* Close the currenty active dialog. This function is intended to
|
|
|
|
* be called from code (pui callbacks, for instance) that registers
|
|
|
|
* its dialog object as active via setActiveDialog(). Other
|
|
|
|
* user-level code should use the closeDialog(name) API.
|
2003-01-20 16:03:09 +00:00
|
|
|
*
|
2003-12-08 02:05:10 +00:00
|
|
|
* @return true if a dialog was active, false otherwise
|
2003-01-20 16:03:09 +00:00
|
|
|
*/
|
|
|
|
virtual bool closeActiveDialog ();
|
|
|
|
|
2003-12-08 02:05:10 +00:00
|
|
|
/**
|
|
|
|
* Close a named dialog, if it is open.
|
|
|
|
*
|
|
|
|
* @param name The name of the dialog box.
|
|
|
|
* @return true if the dialog was active, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool closeDialog (const string &name);
|
2003-01-20 16:03:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-12-08 02:05:10 +00:00
|
|
|
map<string,FGDialog *> _active_dialogs;
|
|
|
|
map<string,SGPropertyNode_ptr> _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
|
|
|
|