Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/gui/orxonox_gui_flags.h @ 3423

Last change on this file since 3423 was 3423, checked in by bensch, 19 years ago

orxonox/trunk: merged branches/updater back into the trunk
merged with command: svn merge branches/updater trunk -r 3241:HEAD
resolved conflicts in debug.h in favor of the trunk.

File size: 902 bytes
Line 
1/*!
2  \file orxonox_gui_flags.h
3  \brief File that holds the class that creates the flags-Text.
4*/
5
6#ifndef _ORXONOX_GUI_FLAGS_H
7#define _ORXONOX_GUI_FLAGS_H
8
9#include "orxonox_gui.h"
10
11//! Class that creates the flags-Text.
12class OrxonoxGuiFlags
13{
14 private:
15  Frame* flagsFrame;          //!< The Frame that holds the flagsDisplay.
16  Box* flagsBox;              //!< The Box that holds the flagsDisplay.
17  CheckButton* shortFlags;    //!< CheckButton to change the display of short and long flags \todo show long if long not availible...
18  Label* flagsLabel;          //!< The Label of the Flags
19
20 public:
21  OrxonoxGuiFlags(void);
22  ~OrxonoxGuiFlags(void);
23
24  void setTextFromFlags(Widget* widget);
25  static void flagsText(Widget* widget, void* flagInfo);
26 
27  struct FlagInfo
28  {
29    CheckButton* shortFlags;
30    Label* flagsLabel;
31  };
32  Widget* getWidget(void);
33};
34#endif /* _ORXONOX_GUI_FLAGS_H */
Note: See TracBrowser for help on using the repository browser.