Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/gui/gui/gui.h @ 4054

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

orxonox/trunk: merged the guiMerge-branche back into the trunk
merged with command:
svn merge -r 4043:HEAD guiMerge/ ../trunk/
no conflicts, only updates and moves :)

File size: 626 bytes
Line 
1/*!
2 \file gui.h
3 \brief Creation of the Gui
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
11*/
12
13#ifndef _GUI_H
14#define _GUI_H
15
16using namespace std;
17
18#define GUI_DEFAULT_CONF_DIR "~/.orxonox"
19#define GUI_DEFAULT_CONF_FILE "orxonox.conf"
20
21class OrxonoxGuiElement;
22
23//! Class that creates the OrxonoxGui
24class OrxonoxGui
25{
26 public:
27  OrxonoxGui(int argc, char *argv[]);
28  ~OrxonoxGui(void);
29
30  static bool startOrxonox;
31};
32
33#endif /* _GUI_H */
Note: See TracBrowser for help on using the repository browser.