]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/slider.h
support for iPhone callbacks
[wxWidgets.git] / interface / wx / slider.h
index 761b459905cf1ccfa5507e015c478e4c70ecf4ff..a0b8b57ff72135fc51ba778433a8e6709c786778 100644 (file)
     @event{EVT_COMMAND_SCROLL_CHANGED(func)}
         Process @c wxEVT_SCROLL_CHANGED end of scrolling events (MSW only).
     @event{EVT_SLIDER(id, func)}
-        Process @c wxEVT_COMMAND_SLIDER_UPDATED which is generated after any
+        Process @c wxEVT_SLIDER which is generated after any
         change of wxSlider position in addition to one of the events above.
     @endEventTable
 
@@ -296,6 +296,27 @@ public:
     */
     virtual void SetLineSize(int lineSize);
 
+
+    /**
+        Sets the minimum slider value.
+
+        @param minValue
+            The new bottom end of the slider range.
+            
+        @see GetMin(), SetRange()
+    */
+    void SetMin( int minValue );
+
+    /**
+        Sets the maximum slider value.
+
+        @param maxValue
+            The new top end of the slider range.
+            
+        @see GetMax(), SetRange()
+    */
+    void SetMax( int maxValue );
+
     /**
         Sets the page size for the slider.