1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/slider.h
3 // Purpose: wxSlider class
4 // Author: David Elliott
9 // Copyright: (c) 2003 David Elliott
10 // (c) 2007 Software 2000 Ltd.
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
14 #ifndef __WX_COCOA_SLIDER_H__
15 #define __WX_COCOA_SLIDER_H__
17 #include "wx/cocoa/NSSlider.h"
19 // ========================================================================
21 // ========================================================================
22 class WXDLLEXPORT wxSlider
: public wxSliderBase
, protected wxCocoaNSSlider
24 DECLARE_DYNAMIC_CLASS(wxSlider
)
26 WX_DECLARE_COCOA_OWNER(NSSlider
,NSControl
,NSView
)
27 // ------------------------------------------------------------------------
29 // ------------------------------------------------------------------------
32 wxSlider(wxWindow
*parent
, wxWindowID winid
,
33 int value
, int minValue
, int maxValue
,
34 const wxPoint
& pos
= wxDefaultPosition
,
35 const wxSize
& size
= wxDefaultSize
,
36 long style
= wxSL_HORIZONTAL
,
37 const wxValidator
& validator
= wxDefaultValidator
,
38 const wxString
& name
= wxSliderNameStr
)
40 Create(parent
, winid
, value
, minValue
, maxValue
,
41 pos
, size
, style
, validator
, name
);
44 bool Create(wxWindow
*parent
, wxWindowID winid
,
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
);
53 // ------------------------------------------------------------------------
55 // ------------------------------------------------------------------------
58 virtual void ProcessEventType(wxEventType commandType
);
59 virtual void Cocoa_wxNSSliderUpArrowKeyDown(void) { ProcessEventType(wxEVT_SCROLL_PAGEDOWN
); }
60 virtual void Cocoa_wxNSSliderDownArrowKeyDown(void) { ProcessEventType(wxEVT_SCROLL_PAGEUP
); }
61 virtual void Cocoa_wxNSSliderLeftArrowKeyDown(void) { ProcessEventType(wxEVT_SCROLL_PAGEUP
); }
62 virtual void Cocoa_wxNSSliderRightArrowKeyDown(void) { ProcessEventType(wxEVT_SCROLL_PAGEDOWN
); }
63 virtual void Cocoa_wxNSSliderPageUpKeyDown(void) { ProcessEventType(wxEVT_SCROLL_BOTTOM
); }
64 virtual void Cocoa_wxNSSliderPageDownKeyDown(void) { ProcessEventType(wxEVT_SCROLL_TOP
); }
65 virtual void Cocoa_wxNSSliderMoveUp(void) { ProcessEventType(wxEVT_SCROLL_PAGEDOWN
); }
66 virtual void Cocoa_wxNSSliderMoveDown(void) { ProcessEventType(wxEVT_SCROLL_PAGEUP
); }
67 virtual void Cocoa_wxNSSliderMoveLeft(void) { ProcessEventType(wxEVT_SCROLL_PAGEUP
); }
68 virtual void Cocoa_wxNSSliderMoveRight(void) { ProcessEventType(wxEVT_SCROLL_PAGEDOWN
); }
69 virtual void Cocoa_wxNSSliderPageUp(void) { ProcessEventType(wxEVT_SCROLL_BOTTOM
); }
70 virtual void Cocoa_wxNSSliderPageDown(void) { ProcessEventType(wxEVT_SCROLL_TOP
); }
71 virtual void CocoaNotification_startTracking(WX_NSNotification notification
);
72 virtual void CocoaNotification_continueTracking(WX_NSNotification notification
);
73 virtual void CocoaNotification_stopTracking(WX_NSNotification notification
);
76 // ------------------------------------------------------------------------
78 // ------------------------------------------------------------------------
81 virtual int GetValue() const;
82 virtual void SetValue(int value
);
84 // retrieve/change the range
85 virtual void SetRange(int minValue
, int maxValue
);
86 virtual int GetMin() const;
87 virtual int GetMax() const;
89 // the line/page size is the increment by which the slider moves when
90 // cursor arrow key/page up or down are pressed (clicking the mouse is like
91 // pressing PageUp/Down) and are by default set to 1 and 1/10 of the range
92 virtual void SetLineSize(int lineSize
);
93 virtual void SetPageSize(int pageSize
);
94 virtual int GetLineSize() const;
95 virtual int GetPageSize() const;
97 // these methods get/set the length of the slider pointer in pixels
98 virtual void SetThumbLength(int lenPixels
);
99 virtual int GetThumbLength() const;
101 // copied from (wxSliderCocoa.h)
102 virtual void SetTickFreq(int n
, int pos
);
103 virtual int GetTickFreq() const;
104 virtual void ClearTicks() { SetTickFreq(0, 0); }
106 virtual void SetTickPos(int pos
);
111 // __WX_COCOA_SLIDER_H__