Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4064 in orxonox.OLD for orxonox/trunk/src/lib/gui/gui/gui_gtk.h


Ignore:
Timestamp:
May 5, 2005, 3:18:39 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk/gui: better video

File:
1 edited

Legend:

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

    r4058 r4064  
    358358};
    359359
     360//! A EntryField is a TextEntry field, for putting some text into.
     361class EntryField : public Option
     362{
     363 public:
     364  EntryField(const char* name = NULL);
     365  virtual ~EntryField(void);
     366 
     367  void setValue(const char* newValue);
     368  virtual char* save(void);
     369  virtual void load(char* loadString);
     370 
     371  virtual void redraw(void);
     372  virtual void changeOption(void);
     373};
     374
    360375//! A label is a Widget, that displays a text
    361376class Label : public Widget
Note: See TracChangeset for help on using the changeset viewer.