]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/slider.h
Somehow, setting a tint color makes gauge work :/.
[wxWidgets.git] / interface / wx / slider.h
index eaf88adb7e5718bd6e18861105a3af51e759090a..3a1bae6acfc069e93352d430c04b6fe7ef02224a 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        slider.h
 // Purpose:     interface of wxSlider
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -296,6 +295,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.