Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3187 in orxonox.OLD for orxonox/trunk/gui/orxonox_gui_gtk.h


Ignore:
Timestamp:
Dec 15, 2004, 9:00:38 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk/gui: doxygen-tags… it's very much.

File:
1 edited

Legend:

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

    r3165 r3187  
    3838{
    3939 private:
     40
    4041 public:
    4142  ~Widget ();
     
    111112{
    112113 private:
    113   bool isOpen;
    114  public:
    115   static Window* mainWindow;
     114  bool isOpen;                //!< A bool Variable that checks if a Window is already open.
     115 public:
     116  static Window* mainWindow;  //!< Pointer to the First Window that was opened. By default this should be the GUI's main-Window.
    116117  static void addWindow(Window* windowToAdd);
    117118
     
    163164//! A Box can contain multiple Widgets
    164165/**
    165  * A Box can Contain multiple Widgets, that are ordered either horizontally or vertically
    166  * I defined the standartbox to be horizontally.
    167  * A Box is always filled left->right (horizontally) or up->down (vertically)
    168  */
     166   A Box can Contain multiple Widgets, that are ordered either horizontally or vertically
     167   I defined the standartbox to be horizontally.
     168   A Box is always filled left->right (horizontally) or up->down (vertically)
     169*/
    169170class Box : public Packer
    170171{
     
    204205  char* flagNameShort; //!< like flag_name but shorter
    205206  int defaultValue; //!< A default value is good, for hiding a option if it is not needed. (hidden if value == default_value)
    206   bool saveable;  //! Options can be Saved.
     207  bool saveable;  //!< Options can be Saved.
    207208
    208209  void setFlagName (char* flagname, int defaultvalue);
     
    268269 private:
    269270#ifdef HAVE_GTK2
    270   GtkWidget* menu;
    271   GtkWidget* item;
    272 #endif /* HAVE_GTK2 */
    273   va_list itemlist;
     271  GtkWidget* menu;     //!< The menu That will hold the Options.
     272  GtkWidget* item;     //!< One Item From a Menu.
     273#endif /* HAVE_GTK2 */
     274  va_list itemlist;    //!> The list to readin multiple Options.
    274275 
    275276 public:
     
    293294  void init(void);
    294295 
    295   char* cValue;
     296  char* cValue;   //!< The Value the Label will have.
    296297 
    297298  void setValue(char* newValue);
Note: See TracChangeset for help on using the changeset viewer.