]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/vscroll.h
Added __WXMAC_OSX__ guards around the CFRunLoop calls, CFRunLoop not available on...
[wxWidgets.git] / include / wx / vscroll.h
index 47acd803260e12862b35122c2558d899bf8c24f0..cc500db1a912b009cd869b1eccddc463d6171157 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     30.05.03
 // RCS-ID:      $Id$
 // Copyright:   (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_VSCROLL_H_
@@ -95,10 +95,10 @@ public:
     virtual bool ScrollPages(int pages);
 
     // redraw the specified line
-    void RefreshLine(size_t line);
+    virtual void RefreshLine(size_t line);
 
     // redraw all lines in the specified range (inclusive)
-    void RefreshLines(size_t from, size_t to);
+    virtual void RefreshLines(size_t from, size_t to);
 
     // return the item at the specified (in physical coordinates) position or.
 
@@ -163,6 +163,9 @@ protected:
     // the event handlers
     void OnSize(wxSizeEvent& event);
     void OnScroll(wxScrollWinEvent& event);
+#if wxUSE_MOUSEWHEEL
+    void OnMouseWheel(wxMouseEvent& event);
+#endif
 
     // find the index of the line we need to show at the top of the window such
     // that the last (fully or partially) visible line is the given one
@@ -193,6 +196,10 @@ private:
     // partly, visible one)
     size_t m_nVisible;
 
+    // accumulated mouse wheel rotation
+#if wxUSE_MOUSEWHEEL
+    int m_sumWheelRotation;
+#endif
 
     DECLARE_EVENT_TABLE()
     DECLARE_NO_COPY_CLASS(wxVScrolledWindow)