Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/gui/orxonox_gui_flags.h @ 3187

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

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

File size: 920 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  char* flagText;             //!< The Text of the Label. \todo Delete when Object is destroyed.
20
21 public:
22  OrxonoxGuiFlags (Widget* widget);
23  ~OrxonoxGuiFlags ();
24
25  void setTextFromFlags (Widget* widget);
26  void OrxonoxGuiFlags::FlagsText(Widget* widget);
27 
28  Widget* getWidget ();
29};
30#endif /* _ORXONOX_GUI_FLAGS_H */
Note: See TracBrowser for help on using the repository browser.