X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7106fc4674550da40873f59f7eee9dc2d64dbce8..9e9574fe45b176ee74bba8fad7574cf9906145d1:/interface/wx/slider.h?ds=sidebyside diff --git a/interface/wx/slider.h b/interface/wx/slider.h index 36554a629d..3a1bae6acf 100644 --- a/interface/wx/slider.h +++ b/interface/wx/slider.h @@ -2,7 +2,6 @@ // Name: slider.h // Purpose: interface of wxSlider // Author: wxWidgets team -// RCS-ID: $Id$ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -117,7 +116,7 @@ @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 @@ -137,7 +136,7 @@ @library{wxcore} @category{ctrl} - @appearance{slider.png} + @appearance{slider} @see @ref overview_events, wxScrollBar */ @@ -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.