]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/slider.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxSlider class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "slider.h"
19 #include "wx/control.h"
21 WXDLLEXPORT_DATA(extern const char*) wxSliderNameStr
;
24 class WXDLLEXPORT wxSlider
: public wxSliderBase
26 DECLARE_DYNAMIC_CLASS(wxSlider
)
31 wxSlider(wxWindow
*parent
, wxWindowID id
,
32 int value
, int minValue
, int maxValue
,
33 const wxPoint
& pos
= wxDefaultPosition
,
34 const wxSize
& size
= wxDefaultSize
,
35 long style
= wxSL_HORIZONTAL
,
36 const wxValidator
& validator
= wxDefaultValidator
,
37 const wxString
& name
= wxSliderNameStr
)
39 Create(parent
, id
, value
, minValue
, maxValue
, pos
, size
, style
, validator
, name
);
44 bool Create(wxWindow
*parent
, wxWindowID id
,
45 int value
, int minValue
, int maxValue
,
46 const wxPoint
& pos
= wxDefaultPosition
,
47 const wxSize
& size
= wxDefaultSize
,
48 long style
= wxSL_HORIZONTAL
,
49 const wxValidator
& validator
= wxDefaultValidator
,
50 const wxString
& name
= wxSliderNameStr
);
52 virtual int GetValue() const ;
53 virtual void SetValue(int);
55 void SetRange(int minValue
, int maxValue
);
57 inline int GetMin() const { return m_rangeMin
; }
58 inline int GetMax() const { return m_rangeMax
; }
61 void SetPageSize(int pageSize
);
62 int GetPageSize() const ;
63 void SetLineSize(int lineSize
);
64 int GetLineSize() const ;
65 void SetThumbLength(int len
) ;
66 int GetThumbLength() const ;
68 void Command(wxCommandEvent
& event
);
76 virtual void DoSetSize(int x
, int y
,
77 int width
, int height
,
78 int sizeFlags
= wxSIZE_AUTO
);