]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/glcanvas/samples/cube/cube.h
added wxJPEGHandler
[wxWidgets.git] / utils / glcanvas / samples / cube / cube.h
index 81dc1afe7a58a0e7f5946b97a6ecdd67e4db86a7..5ae1fd9f7f19d4c50da4ce429fd63a4ea7e81c9f 100644 (file)
@@ -19,20 +19,19 @@ class MyApp: public wxApp
 {
 public:
     bool OnInit(void);
 {
 public:
     bool OnInit(void);
-    void InitGL(void);
 };
 
 // Define a new frame type
 class TestGLCanvas;
 class MyFrame: public wxFrame
 };
 
 // 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);
     MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size,
         long style = wxDEFAULT_FRAME_STYLE);
 
     void OnExit(wxCommandEvent& event);
-
     bool OnClose(void);
     bool OnClose(void);
-
+public:
     TestGLCanvas*    m_canvas;
 
 DECLARE_EVENT_TABLE()
     TestGLCanvas*    m_canvas;
 
 DECLARE_EVENT_TABLE()
@@ -48,6 +47,11 @@ class TestGLCanvas: public wxGLCanvas
    void OnPaint(wxPaintEvent& event);
    void OnSize(wxSizeEvent& event);
    void OnEraseBackground(wxEraseEvent& event);
    void OnPaint(wxPaintEvent& event);
    void OnSize(wxSizeEvent& event);
    void OnEraseBackground(wxEraseEvent& event);
+   void InitGL(void);
+   
+ private:
+   bool m_init;
 
 DECLARE_EVENT_TABLE()
 };
 
 DECLARE_EVENT_TABLE()
 };