]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/slider.h
Correct wxTranslations docs: CWD is not searched.
[wxWidgets.git] / interface / wx / slider.h
index 36554a629da5fcdbe5db417616d17c9bc5e9ae6a..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
 
 
     @library{wxcore}
     @category{ctrl}
-    @appearance{slider.png}
+    @appearance{slider}
 
     @see @ref overview_events, wxScrollBar
 */
@@ -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.