/*! \file gui.h \brief Creation of the Gui \todo way to start gui without GTK (textmode) AND IMPROOVE \todo curl interface to Download cool stuff \todo widgets save themselves \todo good way to step through all the Widgets \todo label -> protected : getlabel function */ #ifndef _GUI_H #define _GUI_H using namespace std; #define GUI_DEFAULT_CONF_DIR "~/.orxonox" #define GUI_DEFAULT_CONF_FILE "orxonox.conf" //! Class that creates the Gui class Gui { public: Gui(int argc, char *argv[]); ~Gui(void); void startGui(void); void printHelp(void); static bool startOrxonox; }; #endif /* _GUI_H */