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