Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/branches/guiMerge: heavy clean-up of the gui

File size: 629 bytes
Line 
1/*!
2 \file orxonox_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 _ORXONOX_GUI_H
14#define _ORXONOX_GUI_H
15
16using namespace std;
17
18#include <stdlib.h>
19
20#define ORXONOX_GUI_DEFAULT_CONFIG_FILE "~/.orxonox/orxonox.conf"
21
22class OrxonoxGuiElement;
23
24//! Class that creates the OrxonoxGui
25class OrxonoxGui
26{
27 public:
28  OrxonoxGui(int argc, char *argv[]);
29  ~OrxonoxGui(void);
30};
31
32#endif /* _ORXONOX_GUI_H */
Note: See TracBrowser for help on using the repository browser.