Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/qt_gui/src/lib/gui/gui_element.h @ 7470

Last change on this file since 7470 was 7470, checked in by bensch, 18 years ago

compile again

File size: 500 bytes
Line 
1/*!
2 * @file gui_element.h
3 *  Definition of ...
4
5*/
6
7#ifndef _GUI_ELEMENT_H
8#define _GUI_ELEMENT_H
9
10class Widget;
11namespace OrxGui
12{
13  //! A SuperClass for all the Different GuiElements
14  class GuiElement
15  {
16
17  public:
18    GuiElement();
19    virtual ~GuiElement();
20
21    /** @returns the main Widget of this GuiElement. */
22    Widget* getWidget() { return this->mainWidget; }
23  protected:
24    void setMainWidget(Widget* widget);
25
26  private:
27    Widget* mainWidget;
28  };
29}
30#endif /* _GUI_ELEMENT_H */
Note: See TracBrowser for help on using the repository browser.