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