]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/scrolwin.h
wxDIB::Create(wxBitmap) shouldn't do any conversions if the bitmap is already a DIB...
[wxWidgets.git] / include / wx / scrolwin.h
index 8e12c38018ddc90c2e85fa6a0235da328d904163..e4c0a96763b14745f04f0e37298ed0e09846e82c 100644 (file)
@@ -84,7 +84,7 @@ public:
         DoCalcUnscrolledPosition(pt.x, pt.y, &p2.x, &p2.y);
         return p2;
     }
-    
+
     virtual void DoCalcScrolledPosition(int x, int y, int *xx, int *yy) const;
     virtual void DoCalcUnscrolledPosition(int x, int y, int *xx, int *yy) const;
 
@@ -139,6 +139,11 @@ public:
     //        once it is fixed!
     void OnScroll(wxScrollWinEvent& event) { HandleOnScroll(event); }
 
+#if WXWIN_COMPATIBILITY_2_2
+    // Compatibility only, don't use
+    void ViewStart(int *x, int *y) const { GetViewStart( x, y ); }
+#endif // WXWIN_COMPATIBILITY_2_2
+
 protected:
     // get pointer to our scroll rect if we use it or NULL
     const wxRect *GetRect() const
@@ -196,6 +201,8 @@ protected:
 #endif // wxUSE_MOUSEWHEEL
 
     wxScrollHelperEvtHandler *m_handler;
+
+    DECLARE_NO_COPY_CLASS(wxScrollHelper)
 };
 
 // ----------------------------------------------------------------------------