Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gl/glgui_frame.h @ 9869

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

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

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