| Line |   | 
|---|
| 1 | /*! | 
|---|
| 2 |  * @file glgui_window.h | 
|---|
| 3 |  * The gl_WINDOW widget of th openglGUI | 
|---|
| 4 |  * | 
|---|
| 5 |  */ | 
|---|
| 6 |  | 
|---|
| 7 | #ifndef _GLGUI_WINDOW_H | 
|---|
| 8 | #define _GLGUI_WINDOW_H | 
|---|
| 9 |  | 
|---|
| 10 | #include "glgui_container.h" | 
|---|
| 11 |  | 
|---|
| 12 | // FORWARD DECLARATION | 
|---|
| 13 | namespace OrxGui | 
|---|
| 14 | { | 
|---|
| 15 |  | 
|---|
| 16 |   //! This is window part of the openglGUI class | 
|---|
| 17 |   /** | 
|---|
| 18 |    * | 
|---|
| 19 |    */ | 
|---|
| 20 |   class GLGuiWindow : public GLGuiContainer | 
|---|
| 21 |   { | 
|---|
| 22 |  | 
|---|
| 23 |   public: | 
|---|
| 24 |     GLGuiWindow(); | 
|---|
| 25 |     virtual ~GLGuiWindow(); | 
|---|
| 26 |  | 
|---|
| 27 |     void init(); | 
|---|
| 28 |  | 
|---|
| 29 |     virtual void draw() const; | 
|---|
| 30 |  | 
|---|
| 31 |   private: | 
|---|
| 32 |  | 
|---|
| 33 |   }; | 
|---|
| 34 | } | 
|---|
| 35 | #endif /* _GLGUI__H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.