Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
May 27, 2005, 9:16:53 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: merged branches/physics back to the trunk
merged with command
svn merge -r 3866:HEAD . ../../trunk/
many conflict that i tried to resolv
@patrick: i hope i did not interfere with your stuff :/

File:
1 edited

Legend:

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

    r4132 r4338  
    6161
    6262  virtual void setTitle(const char* title);  //!< An abstract Function, that sets the title of Widgets.
     63  virtual const char* getTitle(void) const { return this->title; };
    6364
    6465  Widget* findWidgetByName(char* name, unsigned int depth);
     
    296297{
    297298 private:
    298   int start;                            //!< The beginning of the Slider-range.
    299   int end;                              //!< The end of the Slider-range.
    300  public:
    301   Slider(const char* slidername, int start, int end);
     299  float start;                            //!< The beginning of the Slider-range.
     300  float end;                              //!< The end of the Slider-range.
     301  float fValue;                           //!< a value for the slider
     302 public:
     303  Slider(const char* slidername, float start, float end);
    302304  virtual ~Slider(void);
    303305
    304   void setValue(int value);
    305   virtual void redraw(void);
    306   virtual void changeOption(void);
     306  void setExactness(int exactness);
     307  void setValue(float value);
     308  virtual void redraw(void);
     309  virtual void changeOption(void);
     310
     311  virtual char* save(void);
     312  virtual void load(char* loadString);
    307313};
    308314
Note: See TracChangeset for help on using the changeset viewer.