Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Oct 11, 2005, 1:36:08 AM (19 years ago)
Author:
bensch
Message:

oroxnox/trunk: gui extends element2D

File:
1 edited

Legend:

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

    r5359 r5362  
    11/*!
    2  * @file glgui_.h
    3  * The gl_ widget of th openglGUI
    4  *
     2 * @file glgui_widget.h
     3 * The gl_widget of the openglGUI
    54 */
    65
    7 #ifndef _GLGUI__H
    8 #define _GLGUI__H
     6#ifndef _GLGUI_WIDGET_H
     7#define _GLGUI_WIDGET_H
    98
    10 #include "base_object.h"
     9#include "element_2d.h"
    1110
    1211// FORWARD DECLARATION
     
    1413//! This is part of the openglGUI class
    1514/**
    16  *
     15 * A widget is the main class of all the elements of th GUI.
    1716 */
    18 class GLGui : public GLGui {
     17class GLGuiWidget : public Element2D {
    1918
    2019 public:
    21   GLGui();
    22   virtual ~GLGui();
     20  GLGuiWidget();
     21  virtual ~GLGuiWidget();
    2322
    2423  void init();
    2524
    2625  virtual void draw();
     26  virtual void update();
     27
    2728
    2829 private:
     
    3031};
    3132
    32 #endif /* _GLGUI__H */
     33#endif /* _GLGUI_WIDGET_H */
Note: See TracChangeset for help on using the changeset viewer.