const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxSliderNameStr);
*/
+ wxSliderBase() { }
// get/set the current slider value (should be in range)
virtual int GetValue() const = 0;
virtual int GetSelEnd() const { return GetMin(); }
virtual int GetSelStart() const { return GetMax(); }
virtual void SetSelection(int WXUNUSED(min), int WXUNUSED(max)) { }
+
+private:
+ DECLARE_NO_COPY_CLASS(wxSliderBase)
};
// ----------------------------------------------------------------------------