]> 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 36554a629da5fcdbe5db417616d17c9bc5e9ae6a..3a1bae6acfc069e93352d430c04b6fe7ef02224a 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        slider.h
 // Purpose:     interface of wxSlider
 // Author:      wxWidgets team
 // Name:        slider.h
 // Purpose:     interface of wxSlider
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
     @event{EVT_COMMAND_SCROLL_CHANGED(func)}
         Process @c wxEVT_SCROLL_CHANGED end of scrolling events (MSW only).
     @event{EVT_SLIDER(id, func)}
     @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
 
         change of wxSlider position in addition to one of the events above.
     @endEventTable
 
 
     @library{wxcore}
     @category{ctrl}
 
     @library{wxcore}
     @category{ctrl}
-    @appearance{slider.png}
+    @appearance{slider}
 
     @see @ref overview_events, wxScrollBar
 */
 
     @see @ref overview_events, wxScrollBar
 */
@@ -296,6 +295,27 @@ public:
     */
     virtual void SetLineSize(int lineSize);
 
     */
     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.
 
     /**
         Sets the page size for the slider.