]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Program: wxWidgets Widgets Sample | |
3 | // Name: slider.cpp | |
4 | // Purpose: Part of the widgets sample showing wxSlider | |
5 | // Author: Vadim Zeitlin | |
6 | // Created: 16.04.01 | |
7 | // Id: $Id$ | |
8 | // Copyright: (c) 2001 Vadim Zeitlin | |
9 | // License: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // for compilers that support precompilation, includes "wx/wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #if wxUSE_SLIDER | |
28 | ||
29 | // for all others, include the necessary headers | |
30 | #ifndef WX_PRECOMP | |
31 | #include "wx/log.h" | |
32 | ||
33 | #include "wx/bitmap.h" | |
34 | #include "wx/button.h" | |
35 | #include "wx/checkbox.h" | |
36 | #include "wx/radiobox.h" | |
37 | #include "wx/slider.h" | |
38 | #include "wx/statbox.h" | |
39 | #include "wx/textctrl.h" | |
40 | #endif | |
41 | ||
42 | #if wxUSE_TOOLTIPS | |
43 | #include "wx/tooltip.h" | |
44 | #endif | |
45 | ||
46 | #include "wx/sizer.h" | |
47 | ||
48 | #include "widgets.h" | |
49 | ||
50 | #include "icons/slider.xpm" | |
51 | ||
52 | // ---------------------------------------------------------------------------- | |
53 | // constants | |
54 | // ---------------------------------------------------------------------------- | |
55 | ||
56 | // control ids | |
57 | enum | |
58 | { | |
59 | SliderPage_Reset = wxID_HIGHEST, | |
60 | SliderPage_Clear, | |
61 | SliderPage_SetValue, | |
62 | SliderPage_SetMinAndMax, | |
63 | SliderPage_SetTickFreq, | |
64 | SliderPage_SetThumbLen, | |
65 | SliderPage_CurValueText, | |
66 | SliderPage_ValueText, | |
67 | SliderPage_MinText, | |
68 | SliderPage_MaxText, | |
69 | SliderPage_TickFreqText, | |
70 | SliderPage_ThumbLenText, | |
71 | SliderPage_RadioSides, | |
72 | SliderPage_BothSides, | |
73 | SliderPage_Slider | |
74 | }; | |
75 | ||
76 | // sides radiobox values | |
77 | enum | |
78 | { | |
79 | SliderTicks_Top, | |
80 | SliderTicks_Bottom, | |
81 | SliderTicks_Left, | |
82 | SliderTicks_Right | |
83 | }; | |
84 | ||
85 | // ---------------------------------------------------------------------------- | |
86 | // SliderWidgetsPage | |
87 | // ---------------------------------------------------------------------------- | |
88 | ||
89 | class SliderWidgetsPage : public WidgetsPage | |
90 | { | |
91 | public: | |
92 | SliderWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist); | |
93 | virtual ~SliderWidgetsPage(){}; | |
94 | ||
95 | virtual wxControl *GetWidget() const { return m_slider; } | |
96 | virtual void RecreateWidget() { CreateSlider(); } | |
97 | ||
98 | protected: | |
99 | // event handlers | |
100 | void OnButtonReset(wxCommandEvent& event); | |
101 | void OnButtonClear(wxCommandEvent& event); | |
102 | void OnButtonSetValue(wxCommandEvent& event); | |
103 | void OnButtonSetMinAndMax(wxCommandEvent& event); | |
104 | void OnButtonSetTickFreq(wxCommandEvent& event); | |
105 | void OnButtonSetThumbLen(wxCommandEvent& event); | |
106 | ||
107 | void OnCheckOrRadioBox(wxCommandEvent& event); | |
108 | ||
109 | void OnSlider(wxScrollEvent& event); | |
110 | ||
111 | void OnUpdateUIValueButton(wxUpdateUIEvent& event); | |
112 | void OnUpdateUIMinMaxButton(wxUpdateUIEvent& event); | |
113 | void OnUpdateUITickFreq(wxUpdateUIEvent& event); | |
114 | void OnUpdateUIThumbLen(wxUpdateUIEvent& event); | |
115 | void OnUpdateUIRadioSides(wxUpdateUIEvent& event); | |
116 | void OnUpdateUIBothSides(wxUpdateUIEvent& event); | |
117 | ||
118 | void OnUpdateUIResetButton(wxUpdateUIEvent& event); | |
119 | ||
120 | void OnUpdateUICurValueText(wxUpdateUIEvent& event); | |
121 | ||
122 | // reset the slider parameters | |
123 | void Reset(); | |
124 | ||
125 | // (re)create the slider | |
126 | void CreateSlider(); | |
127 | ||
128 | // set the tick frequency from the text field value | |
129 | void DoSetTickFreq(); | |
130 | ||
131 | // set the thumb len from the text field value | |
132 | void DoSetThumbLen(); | |
133 | ||
134 | // is this slider value in range? | |
135 | bool IsValidValue(int val) const | |
136 | { return (val >= m_min) && (val <= m_max); } | |
137 | ||
138 | // the slider range | |
139 | int m_min, m_max; | |
140 | ||
141 | // the controls | |
142 | // ------------ | |
143 | ||
144 | // the check/radio boxes for styles | |
145 | wxCheckBox *m_chkLabels, | |
146 | *m_chkInverse, | |
147 | *m_chkTicks, | |
148 | *m_chkBothSides; | |
149 | ||
150 | wxRadioBox *m_radioSides; | |
151 | ||
152 | // the slider itself and the sizer it is in | |
153 | wxSlider *m_slider; | |
154 | wxSizer *m_sizerSlider; | |
155 | ||
156 | // the text entries for set value/range | |
157 | wxTextCtrl *m_textValue, | |
158 | *m_textMin, | |
159 | *m_textMax, | |
160 | *m_textTickFreq, | |
161 | *m_textThumbLen; | |
162 | ||
163 | private: | |
164 | DECLARE_EVENT_TABLE() | |
165 | DECLARE_WIDGETS_PAGE(SliderWidgetsPage) | |
166 | }; | |
167 | ||
168 | // ---------------------------------------------------------------------------- | |
169 | // event tables | |
170 | // ---------------------------------------------------------------------------- | |
171 | ||
172 | BEGIN_EVENT_TABLE(SliderWidgetsPage, WidgetsPage) | |
173 | EVT_BUTTON(SliderPage_Reset, SliderWidgetsPage::OnButtonReset) | |
174 | EVT_BUTTON(SliderPage_SetValue, SliderWidgetsPage::OnButtonSetValue) | |
175 | EVT_BUTTON(SliderPage_SetMinAndMax, SliderWidgetsPage::OnButtonSetMinAndMax) | |
176 | EVT_BUTTON(SliderPage_SetTickFreq, SliderWidgetsPage::OnButtonSetTickFreq) | |
177 | EVT_BUTTON(SliderPage_SetThumbLen, SliderWidgetsPage::OnButtonSetThumbLen) | |
178 | ||
179 | EVT_UPDATE_UI(SliderPage_SetValue, SliderWidgetsPage::OnUpdateUIValueButton) | |
180 | EVT_UPDATE_UI(SliderPage_SetMinAndMax, SliderWidgetsPage::OnUpdateUIMinMaxButton) | |
181 | EVT_UPDATE_UI(SliderPage_SetTickFreq, SliderWidgetsPage::OnUpdateUITickFreq) | |
182 | EVT_UPDATE_UI(SliderPage_SetThumbLen, SliderWidgetsPage::OnUpdateUIThumbLen) | |
183 | EVT_UPDATE_UI(SliderPage_TickFreqText, SliderWidgetsPage::OnUpdateUITickFreq) | |
184 | EVT_UPDATE_UI(SliderPage_RadioSides, SliderWidgetsPage::OnUpdateUIRadioSides) | |
185 | EVT_UPDATE_UI(SliderPage_BothSides, SliderWidgetsPage::OnUpdateUIBothSides) | |
186 | ||
187 | EVT_UPDATE_UI(SliderPage_Reset, SliderWidgetsPage::OnUpdateUIResetButton) | |
188 | ||
189 | EVT_UPDATE_UI(SliderPage_CurValueText, SliderWidgetsPage::OnUpdateUICurValueText) | |
190 | ||
191 | EVT_COMMAND_SCROLL(SliderPage_Slider, SliderWidgetsPage::OnSlider) | |
192 | ||
193 | EVT_CHECKBOX(wxID_ANY, SliderWidgetsPage::OnCheckOrRadioBox) | |
194 | EVT_RADIOBOX(wxID_ANY, SliderWidgetsPage::OnCheckOrRadioBox) | |
195 | END_EVENT_TABLE() | |
196 | ||
197 | // ============================================================================ | |
198 | // implementation | |
199 | // ============================================================================ | |
200 | ||
201 | #if defined(__WXUNIVERSAL__) | |
202 | #define FAMILY_CTRLS UNIVERSAL_CTRLS | |
203 | #else | |
204 | #define FAMILY_CTRLS NATIVE_CTRLS | |
205 | #endif | |
206 | ||
207 | IMPLEMENT_WIDGETS_PAGE(SliderWidgetsPage, _T("Slider"), FAMILY_CTRLS ); | |
208 | ||
209 | SliderWidgetsPage::SliderWidgetsPage(WidgetsBookCtrl *book, | |
210 | wxImageList *imaglist) | |
211 | : WidgetsPage(book) | |
212 | { | |
213 | imaglist->Add(wxBitmap(slider_xpm)); | |
214 | ||
215 | // init everything | |
216 | m_min = 0; | |
217 | m_max = 100; | |
218 | ||
219 | m_chkInverse = | |
220 | m_chkTicks = | |
221 | m_chkLabels = | |
222 | m_chkBothSides = (wxCheckBox *)NULL; | |
223 | ||
224 | m_radioSides = (wxRadioBox *)NULL; | |
225 | ||
226 | m_slider = (wxSlider *)NULL; | |
227 | m_sizerSlider = (wxSizer *)NULL; | |
228 | ||
229 | wxSizer *sizerTop = new wxBoxSizer(wxHORIZONTAL); | |
230 | ||
231 | // left pane | |
232 | wxStaticBox *box = new wxStaticBox(this, wxID_ANY, _T("&Set style")); | |
233 | wxSizer *sizerLeft = new wxStaticBoxSizer(box, wxVERTICAL); | |
234 | ||
235 | m_chkInverse = CreateCheckBoxAndAddToSizer(sizerLeft, _T("&Inverse")); | |
236 | m_chkTicks = CreateCheckBoxAndAddToSizer(sizerLeft, _T("Show &ticks")); | |
237 | m_chkLabels = CreateCheckBoxAndAddToSizer(sizerLeft, _T("Show &labels")); | |
238 | static const wxString sides[] = | |
239 | { | |
240 | _T("top"), | |
241 | _T("bottom"), | |
242 | _T("left"), | |
243 | _T("right"), | |
244 | }; | |
245 | m_radioSides = new wxRadioBox(this, SliderPage_RadioSides, _T("&Ticks/Labels"), | |
246 | wxDefaultPosition, wxDefaultSize, | |
247 | WXSIZEOF(sides), sides, | |
248 | 1, wxRA_SPECIFY_COLS); | |
249 | sizerLeft->Add(m_radioSides, 0, wxGROW | wxALL, 5); | |
250 | m_chkBothSides = CreateCheckBoxAndAddToSizer | |
251 | (sizerLeft, _T("&Both sides"), SliderPage_BothSides); | |
252 | #if wxUSE_TOOLTIPS | |
253 | m_chkBothSides->SetToolTip( _T("\"Both sides\" is only supported \nin Win95 and Universal") ); | |
254 | #endif // wxUSE_TOOLTIPS | |
255 | ||
256 | sizerLeft->Add(5, 5, 0, wxGROW | wxALL, 5); // spacer | |
257 | ||
258 | wxButton *btn = new wxButton(this, SliderPage_Reset, _T("&Reset")); | |
259 | sizerLeft->Add(btn, 0, wxALIGN_CENTRE_HORIZONTAL | wxALL, 15); | |
260 | ||
261 | // middle pane | |
262 | wxStaticBox *box2 = new wxStaticBox(this, wxID_ANY, _T("&Change slider value")); | |
263 | wxSizer *sizerMiddle = new wxStaticBoxSizer(box2, wxVERTICAL); | |
264 | ||
265 | wxTextCtrl *text; | |
266 | wxSizer *sizerRow = CreateSizerWithTextAndLabel(_T("Current value"), | |
267 | SliderPage_CurValueText, | |
268 | &text); | |
269 | text->SetEditable(false); | |
270 | ||
271 | sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5); | |
272 | ||
273 | sizerRow = CreateSizerWithTextAndButton(SliderPage_SetValue, | |
274 | _T("Set &value"), | |
275 | SliderPage_ValueText, | |
276 | &m_textValue); | |
277 | sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5); | |
278 | ||
279 | sizerRow = CreateSizerWithTextAndButton(SliderPage_SetMinAndMax, | |
280 | _T("&Min and max"), | |
281 | SliderPage_MinText, | |
282 | &m_textMin); | |
283 | ||
284 | m_textMax = new wxTextCtrl(this, SliderPage_MaxText, wxEmptyString); | |
285 | sizerRow->Add(m_textMax, 1, wxLEFT | wxALIGN_CENTRE_VERTICAL, 5); | |
286 | ||
287 | m_textMin->SetValue( wxString::Format(_T("%d"), m_min) ); | |
288 | m_textMax->SetValue( wxString::Format(_T("%d"), m_max) ); | |
289 | ||
290 | sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5); | |
291 | ||
292 | sizerRow = CreateSizerWithTextAndButton(SliderPage_SetTickFreq, | |
293 | _T("Tick &frequency"), | |
294 | SliderPage_TickFreqText, | |
295 | &m_textTickFreq); | |
296 | ||
297 | m_textTickFreq->SetValue(_T("10")); | |
298 | ||
299 | sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5); | |
300 | ||
301 | sizerRow = CreateSizerWithTextAndButton(SliderPage_SetThumbLen, | |
302 | _T("Thumb &length"), | |
303 | SliderPage_ThumbLenText, | |
304 | &m_textThumbLen); | |
305 | ||
306 | sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5); | |
307 | ||
308 | // right pane | |
309 | wxSizer *sizerRight = new wxBoxSizer(wxHORIZONTAL); | |
310 | sizerRight->SetMinSize(150, 40); | |
311 | m_sizerSlider = sizerRight; // save it to modify it later | |
312 | ||
313 | Reset(); | |
314 | CreateSlider(); | |
315 | ||
316 | // the 3 panes panes compose the window | |
317 | sizerTop->Add(sizerLeft, 0, wxGROW | (wxALL & ~wxLEFT), 10); | |
318 | sizerTop->Add(sizerMiddle, 0, wxGROW | wxALL, 10); | |
319 | sizerTop->Add(sizerRight, 1, wxGROW | (wxALL & ~wxRIGHT), 10); | |
320 | ||
321 | // final initializations | |
322 | SetSizer(sizerTop); | |
323 | ||
324 | sizerTop->Fit(this); | |
325 | } | |
326 | ||
327 | // ---------------------------------------------------------------------------- | |
328 | // operations | |
329 | // ---------------------------------------------------------------------------- | |
330 | ||
331 | void SliderWidgetsPage::Reset() | |
332 | { | |
333 | m_chkInverse->SetValue(false); | |
334 | m_chkTicks->SetValue(true); | |
335 | m_chkLabels->SetValue(true); | |
336 | m_chkBothSides->SetValue(false); | |
337 | ||
338 | m_radioSides->SetSelection(SliderTicks_Top); | |
339 | } | |
340 | ||
341 | void SliderWidgetsPage::CreateSlider() | |
342 | { | |
343 | int flags = ms_defaultFlags; | |
344 | ||
345 | if ( m_chkInverse->GetValue() ) | |
346 | { | |
347 | flags |= wxSL_INVERSE; | |
348 | } | |
349 | ||
350 | if ( m_chkLabels->GetValue() ) | |
351 | { | |
352 | flags |= wxSL_LABELS; | |
353 | } | |
354 | ||
355 | if ( m_chkTicks->GetValue() ) | |
356 | { | |
357 | flags |= wxSL_AUTOTICKS; | |
358 | } | |
359 | ||
360 | switch ( m_radioSides->GetSelection() ) | |
361 | { | |
362 | case SliderTicks_Top: | |
363 | flags |= wxSL_TOP; | |
364 | break; | |
365 | ||
366 | case SliderTicks_Left: | |
367 | flags |= wxSL_LEFT; | |
368 | break; | |
369 | ||
370 | case SliderTicks_Bottom: | |
371 | flags |= wxSL_BOTTOM; | |
372 | break; | |
373 | ||
374 | case SliderTicks_Right: | |
375 | flags |= wxSL_RIGHT; | |
376 | break; | |
377 | ||
378 | default: | |
379 | wxFAIL_MSG(_T("unexpected radiobox selection")); | |
380 | // fall through | |
381 | } | |
382 | ||
383 | if ( m_chkBothSides->GetValue() ) | |
384 | { | |
385 | flags |= wxSL_BOTH; | |
386 | } | |
387 | ||
388 | int val = m_min; | |
389 | if ( m_slider ) | |
390 | { | |
391 | int valOld = m_slider->GetValue(); | |
392 | if ( !IsValidValue(valOld) ) | |
393 | { | |
394 | val = valOld; | |
395 | } | |
396 | ||
397 | m_sizerSlider->Detach( m_slider ); | |
398 | ||
399 | if ( m_sizerSlider->GetChildren().GetCount() ) | |
400 | { | |
401 | // we have 2 spacers, remove them too | |
402 | m_sizerSlider->Remove( 0 ); | |
403 | m_sizerSlider->Remove( 0 ); | |
404 | } | |
405 | ||
406 | delete m_slider; | |
407 | } | |
408 | ||
409 | m_slider = new wxSlider(this, SliderPage_Slider, | |
410 | val, m_min, m_max, | |
411 | wxDefaultPosition, wxDefaultSize, | |
412 | flags); | |
413 | ||
414 | if ( m_slider->HasFlag(wxSL_VERTICAL) ) | |
415 | { | |
416 | m_sizerSlider->Add(0, 0, 1); | |
417 | m_sizerSlider->Add(m_slider, 0, wxGROW | wxALL, 5); | |
418 | m_sizerSlider->Add(0, 0, 1); | |
419 | } | |
420 | else | |
421 | { | |
422 | m_sizerSlider->Add(m_slider, 1, wxCENTRE | wxALL, 5); | |
423 | } | |
424 | ||
425 | if ( m_chkTicks->GetValue() ) | |
426 | { | |
427 | DoSetTickFreq(); | |
428 | } | |
429 | ||
430 | m_sizerSlider->Layout(); | |
431 | } | |
432 | ||
433 | void SliderWidgetsPage::DoSetTickFreq() | |
434 | { | |
435 | long freq; | |
436 | if ( !m_textTickFreq->GetValue().ToLong(&freq) ) | |
437 | { | |
438 | wxLogWarning(_T("Invalid slider tick frequency")); | |
439 | ||
440 | return; | |
441 | } | |
442 | ||
443 | m_slider->SetTickFreq(freq, 0 /* unused */); | |
444 | } | |
445 | ||
446 | void SliderWidgetsPage::DoSetThumbLen() | |
447 | { | |
448 | long len; | |
449 | if ( !m_textThumbLen->GetValue().ToLong(&len) ) | |
450 | { | |
451 | wxLogWarning(_T("Invalid slider thumb length")); | |
452 | ||
453 | return; | |
454 | } | |
455 | ||
456 | m_slider->SetThumbLength(len); | |
457 | } | |
458 | ||
459 | // ---------------------------------------------------------------------------- | |
460 | // event handlers | |
461 | // ---------------------------------------------------------------------------- | |
462 | ||
463 | void SliderWidgetsPage::OnButtonReset(wxCommandEvent& WXUNUSED(event)) | |
464 | { | |
465 | Reset(); | |
466 | ||
467 | CreateSlider(); | |
468 | } | |
469 | ||
470 | void SliderWidgetsPage::OnButtonSetTickFreq(wxCommandEvent& WXUNUSED(event)) | |
471 | { | |
472 | DoSetTickFreq(); | |
473 | } | |
474 | ||
475 | void SliderWidgetsPage::OnButtonSetThumbLen(wxCommandEvent& WXUNUSED(event)) | |
476 | { | |
477 | DoSetThumbLen(); | |
478 | } | |
479 | ||
480 | void SliderWidgetsPage::OnButtonSetMinAndMax(wxCommandEvent& WXUNUSED(event)) | |
481 | { | |
482 | long minNew, | |
483 | maxNew = 0; // init to suppress compiler warning | |
484 | if ( !m_textMin->GetValue().ToLong(&minNew) || | |
485 | !m_textMax->GetValue().ToLong(&maxNew) || | |
486 | minNew >= maxNew ) | |
487 | { | |
488 | wxLogWarning(_T("Invalid min/max values for the slider.")); | |
489 | ||
490 | return; | |
491 | } | |
492 | ||
493 | m_min = minNew; | |
494 | m_max = maxNew; | |
495 | ||
496 | m_slider->SetRange(minNew, maxNew); | |
497 | ||
498 | if ( m_slider->GetMin() != m_min || | |
499 | m_slider->GetMax() != m_max ) | |
500 | { | |
501 | wxLogWarning(_T("Invalid range in slider.")); | |
502 | } | |
503 | } | |
504 | ||
505 | void SliderWidgetsPage::OnButtonSetValue(wxCommandEvent& WXUNUSED(event)) | |
506 | { | |
507 | long val; | |
508 | if ( !m_textValue->GetValue().ToLong(&val) || !IsValidValue(val) ) | |
509 | { | |
510 | wxLogWarning(_T("Invalid slider value.")); | |
511 | ||
512 | return; | |
513 | } | |
514 | ||
515 | m_slider->SetValue(val); | |
516 | } | |
517 | ||
518 | void SliderWidgetsPage::OnUpdateUIValueButton(wxUpdateUIEvent& event) | |
519 | { | |
520 | long val; | |
521 | event.Enable( m_textValue->GetValue().ToLong(&val) && IsValidValue(val) ); | |
522 | } | |
523 | ||
524 | void SliderWidgetsPage::OnUpdateUITickFreq(wxUpdateUIEvent& event) | |
525 | { | |
526 | long freq; | |
527 | event.Enable( m_chkTicks->GetValue() && | |
528 | m_textTickFreq->GetValue().ToLong(&freq) && | |
529 | (freq > 0) && (freq <= m_max - m_min) ); | |
530 | } | |
531 | ||
532 | void SliderWidgetsPage::OnUpdateUIThumbLen(wxUpdateUIEvent& event) | |
533 | { | |
534 | long val; | |
535 | event.Enable( m_textThumbLen->GetValue().ToLong(&val)); | |
536 | } | |
537 | ||
538 | void SliderWidgetsPage::OnUpdateUIMinMaxButton(wxUpdateUIEvent& event) | |
539 | { | |
540 | long mn, mx; | |
541 | event.Enable( m_textMin->GetValue().ToLong(&mn) && | |
542 | m_textMax->GetValue().ToLong(&mx) && | |
543 | mn < mx); | |
544 | } | |
545 | ||
546 | void SliderWidgetsPage::OnUpdateUIResetButton(wxUpdateUIEvent& event) | |
547 | { | |
548 | event.Enable( m_chkInverse->GetValue() || | |
549 | !m_chkTicks->GetValue() || | |
550 | !m_chkLabels->GetValue() || | |
551 | m_chkBothSides->GetValue() || | |
552 | m_radioSides->GetSelection() != SliderTicks_Top ); | |
553 | } | |
554 | ||
555 | void SliderWidgetsPage::OnCheckOrRadioBox(wxCommandEvent& WXUNUSED(event)) | |
556 | { | |
557 | CreateSlider(); | |
558 | } | |
559 | ||
560 | void SliderWidgetsPage::OnUpdateUICurValueText(wxUpdateUIEvent& event) | |
561 | { | |
562 | event.SetText( wxString::Format(_T("%d"), m_slider->GetValue()) ); | |
563 | } | |
564 | ||
565 | void SliderWidgetsPage::OnUpdateUIRadioSides(wxUpdateUIEvent& event) | |
566 | { | |
567 | event.Enable( m_chkLabels->GetValue() || m_chkTicks->GetValue() ); | |
568 | } | |
569 | ||
570 | void SliderWidgetsPage::OnUpdateUIBothSides(wxUpdateUIEvent& event) | |
571 | { | |
572 | #if defined(__WXMSW__) || defined(__WXUNIVERSAL__) | |
573 | event.Enable( m_chkTicks->GetValue() ); | |
574 | #else | |
575 | event.Enable( false ); | |
576 | #endif // defined(__WXMSW__) || defined(__WXUNIVERSAL__) | |
577 | } | |
578 | ||
579 | void SliderWidgetsPage::OnSlider(wxScrollEvent& event) | |
580 | { | |
581 | wxASSERT_MSG( event.GetInt() == m_slider->GetValue(), | |
582 | wxT("slider value should be the same") ); | |
583 | ||
584 | wxEventType eventType = event.GetEventType(); | |
585 | ||
586 | /* | |
587 | This array takes the EXACT order of the declarations in | |
588 | include/wx/event.h | |
589 | (section "wxScrollBar and wxSlider event identifiers") | |
590 | */ | |
591 | static const wxChar *eventNames[] = | |
592 | { | |
593 | wxT("wxEVT_SCROLL_TOP"), | |
594 | wxT("wxEVT_SCROLL_BOTTOM"), | |
595 | wxT("wxEVT_SCROLL_LINEUP"), | |
596 | wxT("wxEVT_SCROLL_LINEDOWN"), | |
597 | wxT("wxEVT_SCROLL_PAGEUP"), | |
598 | wxT("wxEVT_SCROLL_PAGEDOWN"), | |
599 | wxT("wxEVT_SCROLL_THUMBTRACK"), | |
600 | wxT("wxEVT_SCROLL_THUMBRELEASE"), | |
601 | wxT("wxEVT_SCROLL_CHANGED") | |
602 | }; | |
603 | ||
604 | int index = eventType - wxEVT_SCROLL_TOP; | |
605 | ||
606 | /* | |
607 | If this assert is triggered, there is an unknown slider event which | |
608 | should be added to the above eventNames array. | |
609 | */ | |
610 | wxASSERT_MSG(index >= 0 && (size_t)index < WXSIZEOF(eventNames), | |
611 | wxT("Unknown slider event") ); | |
612 | ||
613 | ||
614 | static int s_numSliderEvents = 0; | |
615 | ||
616 | wxLogMessage(wxT("Slider event #%d: %s (pos = %d, int value = %d)"), | |
617 | s_numSliderEvents++, | |
618 | eventNames[index], | |
619 | event.GetPosition(), | |
620 | event.GetInt()); | |
621 | } | |
622 | ||
623 | #endif // wxUSE_SLIDER |