Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 22, 2005, 1:37:59 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the branches/updater back to the trunk.
merged with command
svn merge -r 3423:HEAD branches/updater/src/gui trunk/src/lib/graphics/gui/gui.

I do not wish to make such jokes again, because it is even worse than copy-pasting. All Files had to be eddited manually, and many diffs where a little bit strange (artifacts).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/gui/gui/orxonox_gui_gtk.h

    r3624 r3625  
    217217  void saveability(void);
    218218  void saveability(bool isSaveable);
     219  virtual char* save(void);
     220  virtual void load(char* loadString);
     221
    219222  bool isSaveable(void);
    220223  void setFlagName(char* flagname, int defaultvalue);
     
    286289  GtkWidget* menu;                      //!< The menu That will hold the Options.
    287290#endif /* HAVE_GTK2 */
    288   va_list itemlist;                     //!< The list to readin multiple Options.
    289  
     291
    290292  //! A struct to handle the MenuItems
    291293  struct MenuItem
    292294  {
    293     char* name;                         //!< The name of this entry.
     295    char* name;                         //!< The name of this entry.
     296    int itemNumber;                     //!< The n'th entry of this menu;
    294297#ifdef HAVE_GTK2
    295298    GtkWidget* item;                    //!< One Item From a Menu.
     
    305308  virtual ~Menu(void);
    306309  void init(void);
     310
     311  virtual char* save(void);
     312  virtual void load(char* loadString);
    307313 
    308314  void addItem(char* itemName);
     
    322328 
    323329  void setValue(char* newValue);
     330
     331  virtual char* save(void);
     332  virtual void load(char* loadString);
     333
    324334  void redraw(void);
    325335  void changeOption(void);
Note: See TracChangeset for help on using the changeset viewer.