]> git.saurik.com Git - wxWidgets.git/blob - src/palmos/slider.cpp
wxButton, wxCheckBox, wxSlider, wxToggleButton native implementations for PalmOS.
[wxWidgets.git] / src / palmos / slider.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/slider.cpp
3 // Purpose: wxSlider
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Wlodzimierz ABX Skiba - native implementation
6 // Created: 10/13/04
7 // RCS-ID: $Id$
8 // Copyright: (c) William Osborne, Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "slider.h"
14 #endif
15
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
18
19 #ifdef __BORLANDC__
20 #pragma hdrstop
21 #endif
22
23 #if wxUSE_SLIDER
24
25 #ifndef WX_PRECOMP
26 #include "wx/utils.h"
27 #include "wx/brush.h"
28 #include "wx/slider.h"
29 #endif
30
31 #include "wx/toplevel.h"
32
33 #if wxUSE_EXTENDED_RTTI
34 WX_DEFINE_FLAGS( wxSliderStyle )
35
36 wxBEGIN_FLAGS( wxSliderStyle )
37 // new style border flags, we put them first to
38 // use them for streaming out
39 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
40 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
41 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
42 wxFLAGS_MEMBER(wxBORDER_RAISED)
43 wxFLAGS_MEMBER(wxBORDER_STATIC)
44 wxFLAGS_MEMBER(wxBORDER_NONE)
45
46 // old style border flags
47 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
48 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
49 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
50 wxFLAGS_MEMBER(wxRAISED_BORDER)
51 wxFLAGS_MEMBER(wxSTATIC_BORDER)
52 wxFLAGS_MEMBER(wxBORDER)
53
54 // standard window styles
55 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
56 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
57 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
58 wxFLAGS_MEMBER(wxWANTS_CHARS)
59 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
60 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
61 wxFLAGS_MEMBER(wxVSCROLL)
62 wxFLAGS_MEMBER(wxHSCROLL)
63
64 wxFLAGS_MEMBER(wxSL_HORIZONTAL)
65 wxFLAGS_MEMBER(wxSL_VERTICAL)
66 wxFLAGS_MEMBER(wxSL_AUTOTICKS)
67 wxFLAGS_MEMBER(wxSL_LABELS)
68 wxFLAGS_MEMBER(wxSL_LEFT)
69 wxFLAGS_MEMBER(wxSL_TOP)
70 wxFLAGS_MEMBER(wxSL_RIGHT)
71 wxFLAGS_MEMBER(wxSL_BOTTOM)
72 wxFLAGS_MEMBER(wxSL_BOTH)
73 wxFLAGS_MEMBER(wxSL_SELRANGE)
74
75 wxEND_FLAGS( wxSliderStyle )
76
77 IMPLEMENT_DYNAMIC_CLASS_XTI(wxSlider, wxControl,"wx/scrolbar.h")
78
79 wxBEGIN_PROPERTIES_TABLE(wxSlider)
80 wxEVENT_RANGE_PROPERTY( Scroll , wxEVT_SCROLL_TOP , wxEVT_SCROLL_ENDSCROLL , wxScrollEvent )
81 wxEVENT_PROPERTY( Updated , wxEVT_COMMAND_SLIDER_UPDATED , wxCommandEvent )
82
83 wxPROPERTY( Value , int , SetValue, GetValue , 0, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
84 wxPROPERTY( Minimum , int , SetMin, GetMin, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
85 wxPROPERTY( Maximum , int , SetMax, GetMax, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
86 wxPROPERTY( PageSize , int , SetPageSize, GetLineSize, 1 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
87 wxPROPERTY( LineSize , int , SetLineSize, GetLineSize, 1 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
88 wxPROPERTY( ThumbLength , int , SetThumbLength, GetThumbLength, 1 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
89 wxPROPERTY_FLAGS( WindowStyle , wxSliderStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
90 wxEND_PROPERTIES_TABLE()
91
92 wxBEGIN_HANDLERS_TABLE(wxSlider)
93 wxEND_HANDLERS_TABLE()
94
95 wxCONSTRUCTOR_8( wxSlider , wxWindow* , Parent , wxWindowID , Id , int , Value , int , Minimum , int , Maximum , wxPoint , Position , wxSize , Size , long , WindowStyle )
96 #else
97 IMPLEMENT_DYNAMIC_CLASS(wxSlider, wxControl)
98 #endif
99
100 // Slider
101 wxSlider::wxSlider()
102 {
103 }
104
105 bool wxSlider::Create(wxWindow *parent, wxWindowID id,
106 int value, int minValue, int maxValue,
107 const wxPoint& pos,
108 const wxSize& size, long style,
109 const wxValidator& validator,
110 const wxString& name)
111 {
112 wxWindow* parentTLW = GetParent();
113 while ( parentTLW && !parentTLW->IsTopLevel() )
114 {
115 parentTLW = parentTLW->GetParent();
116 }
117 wxTopLevelWindowPalm* tlw = wxDynamicCast(parentTLW, wxTopLevelWindowPalm);
118 if(!tlw)
119 return false;
120 FormType* form = tlw->GetForm();
121
122 SetParent(parent);
123
124 SliderControlType *slider = CtlNewSliderControl (
125 (void **)&form,
126 id,
127 feedbackSliderCtl,
128 NULL,
129 0,
130 0,
131 pos.x,
132 pos.y,
133 size.x,
134 size.y,
135 minValue,
136 maxValue,
137 1,
138 value
139 );
140
141 m_control = (ControlType*) slider;
142
143 if(m_control==NULL)
144 return false;
145
146 Show();
147 return true;
148 }
149
150 wxSlider::~wxSlider()
151 {
152 }
153
154 int wxSlider::GetMin() const
155 {
156 uint16_t ret;
157 CtlGetSliderValues(m_control, &ret, NULL, NULL, NULL);
158 return ret;
159 }
160
161 int wxSlider::GetMax() const
162 {
163 uint16_t ret;
164 CtlGetSliderValues(m_control, NULL, &ret, NULL, NULL);
165 return ret;
166 }
167
168 int wxSlider::GetPageSize() const
169 {
170 uint16_t ret;
171 CtlGetSliderValues(m_control, NULL, NULL, &ret, NULL);
172 return ret;
173 }
174
175 int wxSlider::GetValue() const
176 {
177 uint16_t ret;
178 CtlGetSliderValues(m_control, NULL, NULL, NULL, &ret);
179 return ret;
180 }
181
182 void wxSlider::SetValue(int value)
183 {
184 }
185
186 void wxSlider::DoGetSize(int *width, int *height) const
187 {
188 }
189
190 void wxSlider::GetPosition(int *x, int *y) const
191 {
192 }
193
194 void wxSlider::DoSetSize(int x, int y, int width, int height, int sizeFlags)
195 {
196 }
197
198
199 wxSize wxSlider::DoGetBestSize() const
200 {
201 return wxSize(0,0);
202 }
203
204
205 void wxSlider::SetRange(int minValue, int maxValue)
206 {
207 }
208
209 void wxSlider::SetTickFreq(int n, int pos)
210 {
211 }
212
213 void wxSlider::SetPageSize(int pageSize)
214 {
215 }
216
217 void wxSlider::ClearSel()
218 {
219 }
220
221 void wxSlider::ClearTicks()
222 {
223 }
224
225 void wxSlider::SetLineSize(int lineSize)
226 {
227 }
228
229 int wxSlider::GetLineSize() const
230 {
231 return 0;
232 }
233
234 int wxSlider::GetSelEnd() const
235 {
236 return 0;
237 }
238
239 int wxSlider::GetSelStart() const
240 {
241 return 0;
242 }
243
244 void wxSlider::SetSelection(int minPos, int maxPos)
245 {
246 }
247
248 void wxSlider::SetThumbLength(int len)
249 {
250 }
251
252 int wxSlider::GetThumbLength() const
253 {
254 return 0;
255 }
256
257 void wxSlider::SetTick(int tickPos)
258 {
259 }
260
261 void wxSlider::Command (wxCommandEvent & event)
262 {
263 }
264
265 #endif // wxUSE_SLIDER