]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/slider95.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxSlider95 class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "slider95.h"
19 #include "wx/control.h"
21 WXDLLEXPORT_DATA(extern const char*) wxSliderNameStr
;
24 class WXDLLEXPORT wxSlider95
: public wxControl
26 DECLARE_DYNAMIC_CLASS(wxSlider95
)
31 inline wxSlider95(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(void) const ;
53 virtual void SetValue(int);
54 void GetSize(int *x
, int *y
) const ;
55 void SetSize(int x
, int y
, int width
, int height
, int sizeFlags
= wxSIZE_AUTO
);
56 void GetPosition(int *x
, int *y
) const ;
59 void SetRange(int minValue
, int maxValue
);
61 inline int GetMin(void) const { return m_rangeMin
; }
62 inline int GetMax(void) const { return m_rangeMax
; }
65 void SetTickFreq(int n
, int pos
);
66 inline int GetTickFreq(void) const { return m_tickFreq
; }
67 void SetPageSize(int pageSize
);
68 int GetPageSize(void) const ;
70 void ClearTicks(void) ;
71 void SetLineSize(int lineSize
);
72 int GetLineSize(void) const ;
73 int GetSelEnd(void) const ;
74 int GetSelStart(void) const ;
75 void SetSelection(int minPos
, int maxPos
);
76 void SetThumbLength(int len
) ;
77 int GetThumbLength(void) const ;
78 void SetTick(int tickPos
) ;
81 inline WXHWND
GetStaticMin() const { return m_staticMin
; }
82 inline WXHWND
GetStaticMax() const { return m_staticMax
; }
83 inline WXHWND
GetEditValue() const { return m_staticValue
; }
84 virtual bool ContainsHWND(WXHWND hWnd
) const;
86 // Backward compatibility: translate to familiar wxEVT_COMMAND_SLIDER_UPDATED
87 #if WXWIN_COMPATIBILITY
88 void OnScroll(wxScrollEvent
& event
);
91 void Command(wxCommandEvent
& event
);
92 virtual WXHBRUSH
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
93 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
94 void MSWOnVScroll(WXWORD wParam
, WXWORD pos
, WXHWND control
);
95 void MSWOnHScroll(WXWORD wParam
, WXWORD pos
, WXHWND control
);
100 WXHWND m_staticValue
;
106 DECLARE_EVENT_TABLE()