Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gl_gui/glgui_container.h @ 5388

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

orxonox/trunk: some more definition of the GUI

File size: 531 bytes
RevLine 
[4838]1/*!
[5364]2 * @file glgui_container.h
3 * The gl_container widget of th openglGUI
[5360]4 *
5 */
[1853]6
[5364]7#ifndef _GLGUI_CONTAINER_H
8#define _GLGUI_CONTAINER_H
[1853]9
[5364]10#include "glgui_widget.h"
[1853]11
[4838]12// FORWARD DECLARATION
[5364]13template<class T> class tList;
[3543]14
[5360]15//! This is part of the openglGUI class
16/**
17 *
18 */
[5364]19class GLGuiContainer : public GLGuiWidget {
[3543]20
[5360]21 public:
[5364]22  GLGuiContainer();
23  virtual ~GLGuiContainer();
[2036]24
[5360]25  void init();
[1853]26
[5364]27  void hideAll();
28  void showAll();
29
[5360]30  virtual void draw();
[1853]31
[3245]32 private:
[5364]33  tList<GLGuiWidget>*           children;
[3245]34
[1853]35};
36
[5360]37#endif /* _GLGUI__H */
Note: See TracBrowser for help on using the repository browser.