Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/gui/gtk/gui_exec.h @ 9357

Last change on this file since 9357 was 9357, checked in by bensch, 18 years ago

orxonox/proxy: removed 'using namespace std;' everywhere

File size: 1.7 KB
Line 
1/*!
2 * file gui_exec.h
3 * File that holds the class that creates the execute-Options.
4 */
5
6#ifndef _GUI_EXEC_H
7#define _GUI_EXEC_H
8
9#include "gui.h"
10#include "gui_element.h"
11#include "gui_gtk.h"
12
13#include <string>
14
15class Widget;
16class CheckButton;
17
18class IniParser;
19
20//! Class that creates the execute-Options.
21class GuiExec : public GuiElement
22{
23 private:
24  CheckButton* saveSettings;   //!< A CheckBox for if the Options should be saved.
25
26  std::string confDir;         //!< The directory of the orxonox-configuration-files.
27  std::string confFile;        //!< The name of the .orxonox.conf(ig)-file.
28
29  //! A struct that holds informations about variables.
30  struct VarInfo
31  {
32    const char* variableName;  //!< The Name of this variable;
33    const char* variableValue; //!< The Value this variable gets.
34  };
35
36 public:
37  GuiExec();
38  virtual ~GuiExec();
39
40  void setConfDir(const char* confDir);
41  void setConfFile(const char* confFile);
42  const char* getConfigFile() const;
43  int shouldsave();
44  void writeToFile(Widget* widget);
45  void writeFileText(Widget* widget, IniParser* parser, int depth);
46  void readFromFile(Widget* widget);
47  static void readFileText(Widget* widget, void* varInfo);
48  Widget* locateGroup(Widget* widget, const char* groupName, int depth);
49
50#ifdef HAVE_GTK2
51  static int startOrxonox(GtkWidget *widget, void* data);
52  static int quitGui(GtkWidget *widget, void* data);
53#else /* HAVE_GTK2 */
54  static int startOrxonox(void* widget, void* data);
55  static int quitGui(void* widget, void* data);
56#endif /* HAVE_GTK2 */
57};
58
59//! A simple hashtable
60struct HashTable
61{
62  std::string name;           //!< name of the entry
63  std::string value;          //!< value of the entry
64  HashTable* next;      //!< pointer to the next entry
65};
66
67
68#endif /* _GUI_EXEC_H */
Note: See TracBrowser for help on using the repository browser.