Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2622 in orxonox.OLD for orxonox/trunk/gui/orxonox_gui.h


Ignore:
Timestamp:
Oct 22, 2004, 11:12:28 AM (20 years ago)
Author:
bensch
Message:

orxonox/trunk/gui: modularity improved. Now init() of Subclasses execute the init() of their superclass to set the default values for specific Widgets

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/gui/orxonox_gui.h

    r2618 r2622  
    3838
    3939//! This is the topmost object that can be displayed all others are derived from it.
    40 
    4140class Widget
    4241{
     
    4746  Widget* next; //!< next always points to the next Widget in the list. Every Widget has a next one, or has NULL as next
    4847  GtkWidget* widget; //!< widget is the gtk_widget that the specific Object Contains.
    49   virtual void init(void);
     48  void init(void);
    5049  int is_option; //!< with this Paramenter one can set the IsOption type: -2:Container, -1: Box, 0: not an Option, 1: Bool-option, 2: int-option
    5150  /**
Note: See TracChangeset for help on using the changeset viewer.