source:
orxonox.OLD/orxonox/trunk/src/lib/gui/gui.h
@
4468
| Last change on this file since 4468 was 4427, checked in by bensch, 20 years ago | |
|---|---|
| File size: 620 bytes | |
| Rev | Line | |
|---|---|---|
| [2588] | 1 | /*! |
| [4048] | 2 | \file gui.h |
| [3156] | 3 | \brief Creation of the Gui |
| [3187] | 4 | |
| 5 | \todo way to start gui without GTK (textmode) AND IMPROOVE | |
| 6 | \todo curl interface to Download cool stuff | |
| 7 | ||
| 8 | \todo widgets save themselves | |
| 9 | \todo good way to step through all the Widgets | |
| 10 | \todo label -> protected : getlabel function | |
| [2588] | 11 | */ |
| 12 | ||
| [4048] | 13 | #ifndef _GUI_H |
| 14 | #define _GUI_H | |
| [1809] | 15 | |
| [3147] | 16 | using namespace std; |
| 17 | ||
| [4051] | 18 | #define GUI_DEFAULT_CONF_DIR "~/.orxonox" |
| 19 | #define GUI_DEFAULT_CONF_FILE "orxonox.conf" | |
| [4046] | 20 | |
| [4056] | 21 | //! Class that creates the Gui |
| 22 | class Gui | |
| [1817] | 23 | { |
| [2018] | 24 | public: |
| [4056] | 25 | Gui(int argc, char *argv[]); |
| 26 | ~Gui(void); | |
| [4051] | 27 | |
| [4132] | 28 | void startGui(void); |
| 29 | void printHelp(void); | |
| 30 | ||
| [4051] | 31 | static bool startOrxonox; |
| [2018] | 32 | }; |
| 33 | ||
| [4048] | 34 | #endif /* _GUI_H */ |
Note: See TracBrowser
for help on using the repository browser.










