Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5365 in orxonox.OLD for trunk/src/lib/gui/gl_gui/glgui_widget.h


Ignore:
Timestamp:
Oct 11, 2005, 11:52:55 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: more-gui-definition

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/gui/gl_gui/glgui_widget.h

    r5364 r5365  
    88
    99#include "element_2d.h"
     10#include "glincl.h"
    1011
    1112// FORWARD DECLARATION
     13class Material;
    1214
    1315//! This is part of the openglGUI class
     
    1618 */
    1719class GLGuiWidget : public Element2D {
    18 
    1920 public:
    2021  GLGuiWidget();
     
    3132
    3233 private:
     34  bool                  managed;          //!< if this GUI-element should be managed. true means it gets deleted with the deletion of it's parent.
     35  bool                  focusable;        //!< If it can receive focus.
     36  bool                  clickable;        //!< if it can be clicked upon.
     37
     38  Material*             backGround;
     39  GLuint                renderModel;
     40
     41
    3342
    3443};
Note: See TracChangeset for help on using the changeset viewer.