+ inline wxSlider( wxWindow* pParent
+ ,wxWindowID vId
+ ,int nValue
+ ,int nMinValue
+ ,int nMaxValue
+ ,const wxPoint& rPos = wxDefaultPosition
+ ,const wxSize& rSize = wxDefaultSize
+ ,long lStyle = wxSL_HORIZONTAL
+ ,const wxValidator& rValidator = wxDefaultValidator
+ ,const wxString& rsName = wxSliderNameStr
+ )
+ {
+ Create( pParent
+ ,vId
+ ,nValue
+ ,nMinValue
+ ,nMaxValue
+ ,rPos
+ ,rSize
+ ,lStyle
+ ,rValidator
+ ,rsName
+ );
+ }
+ virtual ~wxSlider();
+
+ bool Create( wxWindow* pParent
+ ,wxWindowID vId
+ ,int nValue
+ ,int nMinValue
+ ,int nMaxValue
+ ,const wxPoint& rPos = wxDefaultPosition
+ ,const wxSize& rSize = wxDefaultSize
+ ,long lStyle = wxSL_HORIZONTAL
+ ,const wxValidator& rValidator = wxDefaultValidator
+ ,const wxString& rsName = wxSliderNameStr
+ );
+
+ virtual int GetValue(void) const ;
+ virtual void SetValue(int);