Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 5, 2005, 1:02:24 AM (19 years ago)
Author:
bensch
Message:

orxonox/branches/guiMerge: better fileReadIn (more like orxonox)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/guiMerge/src/lib/gui/gui/gui_exec.h

    r4049 r4051  
    99#include "gui.h"
    1010#include "gui_element.h"
     11#include "gui_gtk.h"
    1112
    12 #include "gui_gtk.h"
     13class Widget;
     14class CheckButton;
    1315using namespace std;
    1416
     
    1719{
    1820 private:
    19   Frame* execFrame;            //!< The Frame that holds the ExecutionOptions.
    20   Box* execBox;                //!< The Box that holds the ExecutionOptions.
    21   Button* start;               //!< The start Button of orxonox.
    2221  CheckButton* saveSettings;   //!< A CheckBox for if the Options should be saved.
    23   Menu* verboseMode;           //!< A Menu for setting the verbose-Mode. \todo setting up a verbose-class.
    24   CheckButton* alwaysShow;     //!< A CheckButton, for if orxonox should start with or without gui.
    25   Button* quit;                //!< A Button to quit the Gui without starting orxonox.
     22
    2623  char* confDir;               //!< The directory of the orxonox-configuration-files.
    27   char* configFile;            //!< The name of the .orxonox.conf(ig)-file.
     24  char* confFile;              //!< The name of the .orxonox.conf(ig)-file.
    2825  FILE* CONFIG_FILE;           //!< Filehandler for reading and writing.
    29  
     26
    3027  //! A struct that holds informations about variables.
    3128  struct VarInfo
     
    3936  ~OrxonoxGuiExec(void);
    4037 
    41   void setConfFile(char* confFile);
    42   void setConfDir(char* confDir);
    43   void setFileName(char* fileName);
    44   char* getConfigFile(void) const;
     38  void setConfDir(const char* confDir);
     39  void setConfFile(const char* confFile);
     40  const char* getConfigFile(void) const;
    4541  int shouldsave(void);
    4642  void writeToFile(Widget* widget);
Note: See TracChangeset for help on using the changeset viewer.