]> 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 81dc1afe7a58a0e7f5946b97a6ecdd67e4db86a7..74d3219ecef44bb61f4ca0389f4591eb807c4f64 100644 (file)
@@ -19,20 +19,18 @@ class MyApp: public wxApp
 {
 public:
     bool OnInit(void);
-    void InitGL(void);
 };
 
 // Define a new frame type
 class TestGLCanvas;
 class MyFrame: public wxFrame
-{ public:
+{
+public:
     MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size,
         long style = wxDEFAULT_FRAME_STYLE);
 
     void OnExit(wxCommandEvent& event);
-
-    bool OnClose(void);
-
+public:
     TestGLCanvas*    m_canvas;
 
 DECLARE_EVENT_TABLE()
@@ -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()
 };