Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/guiMerge/src/lib/gui/gui/gui.h @ 4049

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

orxonox/branches/guiMerge: minor

File size: 576 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 ORXONOX_GUI_DEFAULT_CONFIG_FILE "~/.orxonox/orxonox.conf"
19
20class OrxonoxGuiElement;
21
22//! Class that creates the OrxonoxGui
23class OrxonoxGui
24{
25 public:
26  OrxonoxGui(int argc, char *argv[]);
27  ~OrxonoxGui(void);
28};
29
30#endif /* _GUI_H */
Note: See TracBrowser for help on using the repository browser.