]> git.mxchange.org Git - flightgear.git/blob - src/GUI/new_gui.hxx
49d4fe94c6b7f017ad3e95dd2fe15e8c49a4bee6
[flightgear.git] / src / GUI / new_gui.hxx
1 // new_gui.hxx - XML-configured GUI subsystem.
2
3 #ifndef __NEW_GUI_HXX
4 #define __NEW_GUI_HXX 1
5
6 #ifndef __cplusplus
7 # error This library requires C++
8 #endif
9
10 #ifdef HAVE_CONFIG_H
11 #  include <config.h>
12 #endif
13
14 #include <Main/fg_os.hxx>
15 #include <plib/pu.h>
16
17 #include <simgear/compiler.h>   // for SG_USING_STD
18 #include <simgear/props/props.hxx>
19 #include <simgear/structure/subsystem_mgr.hxx>
20
21 #include <vector>
22 SG_USING_STD(vector);
23
24 #include <map>
25 SG_USING_STD(map);
26
27 #include <Main/fg_props.hxx>
28
29 class FGMenuBar;
30 class FGDialog;
31 class FGBinding;
32
33
34 /**
35  * XML-configured GUI subsystem.
36  *
37  * This subsystem manages the graphical user interface for FlightGear.
38  * It creates a menubar from the XML configuration file in
39  * $FG_ROOT/gui/menubar.xml, then stores the configuration properties
40  * for XML-configured dialog boxes found in $FG_ROOT/gui/dialogs/.  It
41  * can show or hide the menubar, and can display any dialog by name.
42  */
43 class NewGUI : public SGSubsystem
44 {
45 public:
46
47     /**
48      * Constructor.
49      */
50     NewGUI ();
51
52     /**
53      * Destructor.
54      */
55     virtual ~NewGUI ();
56
57     /**
58      * Initialize the GUI subsystem.
59      */
60     virtual void init ();
61
62     /**
63      * Reinitialize the GUI subsystem.
64      */
65     virtual void reinit ();
66
67     /**
68      * Bind properties for the GUI subsystem.
69      *
70      * Currently, this method binds the properties for showing and
71      * hiding the menu.
72      */
73     virtual void bind ();
74
75     /**
76      * Unbind properties for the GUI subsystem.
77      */
78     virtual void unbind ();
79
80     /**
81      * Update the GUI subsystem.
82      *
83      * Currently, this method is a no-op, because nothing the GUI
84      * subsystem does is time-dependent.
85      */
86     virtual void update (double delta_time_sec);
87
88     /**
89      * Creates a new dialog box, using the same property format as the
90      * gui/dialogs configuration files.  Does not display the
91      * resulting dialog.  If a pre-existing dialog of the same name
92      * exists, it will be deleted.  The node argument will be stored
93      * in the GUI subsystem using SGPropertNode_ptr reference counting.
94      * It should not be deleted by user code.
95      *
96      * @param node A property node containing the dialog definition
97      */
98     virtual void newDialog (SGPropertyNode* node);
99
100     /**
101      * Display a dialog box.
102      *
103      * At initialization time, the subsystem reads all of the XML
104      * configuration files from the directory $FG_ROOT/gui/dialogs/.
105      * The configuration for each dialog specifies a name, and this
106      * method invokes the dialog with the name specified (if it
107      * exists).
108      *
109      * @param name The name of the dialog box.
110      * @return true if the dialog exists, false otherwise.
111      */
112     virtual bool showDialog (const string &name);
113
114
115     /**
116      * Close the currenty active dialog.  This function is intended to
117      * be called from code (pui callbacks, for instance) that registers
118      * its dialog object as active via setActiveDialog().  Other
119      * user-level code should use the closeDialog(name) API.
120      *
121      * @return true if a dialog was active, false otherwise
122      */
123     virtual bool closeActiveDialog ();
124
125     /**
126      * Close a named dialog, if it is open.
127      *
128      * @param name The name of the dialog box.
129      * @return true if the dialog was active, false otherwise.
130      */
131     virtual bool closeDialog (const string &name);
132
133     /**
134      * Return a pointer to the current menubar.
135      */
136     virtual FGMenuBar * getMenuBar ();
137
138
139     /**
140      * Ignore this method.
141      *
142      * This method is for internal use only, but it has to be public
143      * so that a non-class callback can see it.
144      */
145     virtual void setActiveDialog (FGDialog * dialog);
146
147     /**
148      * Get the dialog currently active, if any.
149      *
150      * @return The active dialog, or 0 if none is active.
151      */
152     virtual FGDialog * getActiveDialog ();
153
154 protected:
155
156     /**
157      * Test if the menubar is visible.
158      *
159      * This method exists only for binding.
160      */
161     virtual bool getMenuBarVisible () const;
162
163     /**
164      * Show or hide the menubar.
165      *
166      * This method exists only for binding.
167      */
168     virtual void setMenuBarVisible (bool visible);
169
170
171 private:
172
173     // Free all allocated memory.
174     void clear ();
175
176     // Read all the configuration files in a directory.
177     void readDir (const char * path);
178
179     FGMenuBar * _menubar;
180     FGDialog * _active_dialog;
181     map<string,FGDialog *> _active_dialogs;
182     map<string,SGPropertyNode_ptr> _dialog_props;
183
184 };
185
186
187 #endif // __NEW_GUI_HXX
188