Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/lib/gui/gl/glgui_frame.h @ 9689

Last change on this file since 9689 was 9689, checked in by bensch, 18 years ago

new_class_id: glgui adapted

File size: 673 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
12namespace OrxGui
13{
14  // FORWARD DECLARATION
15
16  //! This is Frame part of the openglGUI class
17  /**
18   *
19   */
20  class GLGuiFrame : public GLGuiContainer
21  {
22    NewObjectListDeclaration(GLGuiFrame);
23  public:
24    GLGuiFrame();
25    virtual ~GLGuiFrame();
26
27    void init();
28
29    virtual void pack(GLGuiWidget* widget);
30    virtual void unpack(GLGuiWidget* widget);
31    virtual void showAll();
32    virtual void hideAll();
33
34    virtual void draw();
35
36  private:
37    GLGuiWidget*           child;
38
39  };
40}
41#endif /* _GLGUI__H */
Note: See TracBrowser for help on using the repository browser.