]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/contrib/glcanvas/msw/myglcanvas.h
enabled toolbar as it works now
[wxWidgets.git] / wxPython / contrib / glcanvas / msw / myglcanvas.h
index a56cdb6659a6e8841ce6f26e722da3b9a8505c18..e9ac0a7958cbc4b02f7a476532048605f04cd47f 100644 (file)
 #define _WX_GLCANVAS_H_
 
 #include <wx/setup.h>
 #define _WX_GLCANVAS_H_
 
 #include <wx/setup.h>
-
-
 #undef wxUSE_GLCANVAS
 #define wxUSE_GLCANVAS 1
 #undef wxUSE_GLCANVAS
 #define wxUSE_GLCANVAS 1
-#if wxUSE_GLCANVAS
 
 #include <wx/palette.h>
 #include <wx/scrolwin.h>
 
 #include <wx/palette.h>
 #include <wx/scrolwin.h>
@@ -86,7 +83,7 @@ public:
    wxWindow*        m_window;
 };
 
    wxWindow*        m_window;
 };
 
-class wxGLCanvas: public wxScrolledWindow
+class wxGLCanvas: public wxWindow
 {
    DECLARE_CLASS(wxGLCanvas)
  public:
 {
    DECLARE_CLASS(wxGLCanvas)
  public:
@@ -131,11 +128,29 @@ protected:
     wxPalette      m_palette;
     WXHDC          m_hDC;
 
     wxPalette      m_palette;
     WXHDC          m_hDC;
 
-DECLARE_EVENT_TABLE()
+    DECLARE_EVENT_TABLE()
 };
 
 };
 
-#endif
-    // wxUSE_GLCANVAS
+
+
+class wxGLApp : public wxApp
+{
+public:
+    wxGLApp() : wxApp() { }
+    virtual ~wxGLApp();
+
+    // use this in the constructor of the user-derived wxGLApp class to
+    // determine if an OpenGL rendering context with these attributes
+    // is available - returns TRUE if so, FALSE if not.
+    bool InitGLVisual(int *attribList);
+
+private:
+    DECLARE_DYNAMIC_CLASS(wxGLApp)
+};
+
+
+
+
 #endif
     // _WX_GLCANVAS_H_
 
 #endif
     // _WX_GLCANVAS_H_