]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/glcanvas/samples/cube/cube.h
Added more makefiles
[wxWidgets.git] / utils / glcanvas / samples / cube / cube.h
index f3dc44ac49f3ff24082217558878e9c17705a5d2..74d3219ecef44bb61f4ca0389f4591eb807c4f64 100644 (file)
@@ -19,7 +19,6 @@ class MyApp: public wxApp
 {
 public:
     bool OnInit(void);
-    void InitGL(void);
 };
 
 // Define a new frame type
@@ -31,7 +30,6 @@ public:
         long style = wxDEFAULT_FRAME_STYLE);
 
     void OnExit(wxCommandEvent& event);
-    bool OnClose(void);
 public:
     TestGLCanvas*    m_canvas;
 
@@ -48,6 +46,11 @@ class TestGLCanvas: public wxGLCanvas
    void OnPaint(wxPaintEvent& event);
    void OnSize(wxSizeEvent& event);
    void OnEraseBackground(wxEraseEvent& event);
+   void InitGL(void);
+   
+ private:
+   bool m_init;
 
 DECLARE_EVENT_TABLE()
 };