Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/updater/src/gui/orxonox_gui_exec.h @ 3313

Last change on this file since 3313 was 3300, checked in by bensch, 19 years ago

orxonox/branches/updater: implemented a new SignalHandler, signals for starting and quiting the Gui are now located in OrxonoxGuiExec.
Now thinking about a way to pass options to Orxonox (so the GUI really makes sense)

File size: 2.1 KB
RevLine 
[2588]1/*!
2  \file orxonox_gui_exec.h
3  \brief File that holds the class that creates the execute-Options.
4*/
5
[1812]6#ifndef _ORXONOX_GUI_EXEC_H
7#define _ORXONOX_GUI_EXEC_H
[2018]8
[1819]9#include "orxonox_gui.h"
[2018]10#include <stdio.h>
11using namespace std;
[1812]12
[2588]13//! Class that creates the execute-Options.
[2018]14class OrxonoxGuiExec
15{
16 private:
[3187]17  Frame* execFrame;            //!< The Frame that holds the ExecutionOptions.
18  Box* execBox;                //!< The Box that holds the ExecutionOptions.
19  Button* start;               //!< The start Button of orxonox.
20  CheckButton* saveSettings;   //!< A CheckBox for if the Options should be saved.
21  Menu* verboseMode;           //!< A Menu for setting the verbose-Mode. \todo setting up a verbose-class.
22  CheckButton* alwaysShow;     //!< A CheckButton, for if orxonox should start with or without gui.
23  Button* quit;                //!< A Button to quit the Gui without starting orxonox.
24  char* configFile;            //!< The name of the .orxonox.conf(ig)-file.
25  FILE* CONFIG_FILE;           //!< Filehandler for reading and writing.
[3292]26 
27  //! A struct that holds informations about variables.
28  struct VarInfo
29  {
30    char* variableName;        //!< The Name of this variable;
31    char* variableValue;       //!< The Value this variable gets.
32  };
[3187]33
[2018]34 public:
35  OrxonoxGuiExec (Window* orxonoxGUI);
36  ~OrxonoxGuiExec ();
37 
[2595]38  Widget* getWidget ();
[2018]39 
40  void setFilename (char* filename);
[3296]41  char* getConfigFile(void);
42  int shouldsave();
[2018]43  void writeToFile (Widget* widget);
[2615]44  void writeFileText (Widget* widget, int depth);
[2018]45  void readFromFile (Widget* widget);
[3292]46  static void readFileText (Widget* widget, void* varInfo);
[2634]47  Widget* locateGroup(Widget* widget, char* groupName, int depth);
[1829]48
[3165]49#ifdef HAVE_GTK2
[3300]50  static int startOrxonox (GtkWidget *widget, void* data);
51  static int quitOrxonox (GtkWidget *widget, void* data);
[3297]52#else /* HAVE_GTK2 */
[3300]53  static int startOrxonox (void* widget, void* data);
54  static int quitOrxonox (void* widget, void* data);
[3165]55#endif /* HAVE_GTK2 */
[3296]56};
[3300]57
58
59struct HashTable
60{
61  char* name;
62  char* value;
63  HashTable* next;
64};
65
66
[1812]67#endif /* _ORXONOX_GUI_EXEC_H */
Note: See TracBrowser for help on using the repository browser.