Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gl_gui/glgui_frame.h @ 5393

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

orxonox/trunk: container-packing

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