Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 2595 was 2595, checked in by bensch, 20 years ago

orxonox/trunk/gui: Generalized plugins (returning Widget* now). Enumerator for isOption added

File size: 589 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;
16  Box* flagsBox;
17  CheckButton* shortFlags;
18  Label* flagsLabel;
19  char* flagText;
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.