]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/glcanvas.h
disable use of #pragma interface under Mac OS X
[wxWidgets.git] / include / wx / mac / glcanvas.h
index 877d50197458d6c8aecad1d28dc1489a2a700238..a5465fcc5b9ffef13e33578d079a12f286091131 100644 (file)
@@ -9,7 +9,7 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
 #  pragma interface "glcanvas.h"
 #endif
 
@@ -82,7 +82,7 @@ public:
    wxWindow*        m_window;
 };
 
-class WXDLLEXPORT wxGLCanvas: public wxScrolledWindow
+class WXDLLEXPORT wxGLCanvas: public wxWindow
 {
    DECLARE_CLASS(wxGLCanvas)
  public:
@@ -114,6 +114,10 @@ class WXDLLEXPORT wxGLCanvas: public wxScrolledWindow
    // It sets the viewport correctly and update the context.
    // You shouldn't call glViewport yourself either (use SetViewport if you must reset it.)
    void OnSize(wxSizeEvent& event);
+   
+        virtual void MacSuperChangedPosition() ;
+        virtual void MacTopLevelWindowChangedPosition() ;
+        void MacUpdateView() ;
 
    inline wxGLContext* GetContext() const { return m_glContext; }