1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWidgets Widgets Sample
4 // Purpose: Part of the widgets sample showing wxSlider
5 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin
9 // License: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
29 // for all others, include the necessary headers
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"
43 #include "wx/tooltip.h"
50 #include "icons/slider.xpm"
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
59 SliderPage_Reset
= wxID_HIGHEST
,
62 SliderPage_SetMinAndMax
,
63 SliderPage_SetTickFreq
,
64 SliderPage_SetThumbLen
,
65 SliderPage_CurValueText
,
69 SliderPage_TickFreqText
,
70 SliderPage_ThumbLenText
,
71 SliderPage_RadioSides
,
76 // sides radiobox values
85 // ----------------------------------------------------------------------------
87 // ----------------------------------------------------------------------------
89 class SliderWidgetsPage
: public WidgetsPage
92 SliderWidgetsPage(WidgetsBookCtrl
*book
, wxImageList
*imaglist
);
93 virtual ~SliderWidgetsPage(){};
95 virtual wxControl
*GetWidget() const { return m_slider
; }
96 virtual void RecreateWidget() { CreateSlider(); }
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
);
107 void OnCheckOrRadioBox(wxCommandEvent
& event
);
109 void OnSlider(wxScrollEvent
& event
);
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
);
118 void OnUpdateUIResetButton(wxUpdateUIEvent
& event
);
120 void OnUpdateUICurValueText(wxUpdateUIEvent
& event
);
122 // reset the slider parameters
125 // (re)create the slider
128 // set the tick frequency from the text field value
129 void DoSetTickFreq();
131 // set the thumb len from the text field value
132 void DoSetThumbLen();
134 // is this slider value in range?
135 bool IsValidValue(int val
) const
136 { return (val
>= m_min
) && (val
<= m_max
); }
144 // the check/radio boxes for styles
145 wxCheckBox
*m_chkLabels
,
150 wxRadioBox
*m_radioSides
;
152 // the slider itself and the sizer it is in
154 wxSizer
*m_sizerSlider
;
156 // the text entries for set value/range
157 wxTextCtrl
*m_textValue
,
164 DECLARE_EVENT_TABLE()
165 DECLARE_WIDGETS_PAGE(SliderWidgetsPage
)
168 // ----------------------------------------------------------------------------
170 // ----------------------------------------------------------------------------
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
)
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
)
187 EVT_UPDATE_UI(SliderPage_Reset
, SliderWidgetsPage::OnUpdateUIResetButton
)
189 EVT_UPDATE_UI(SliderPage_CurValueText
, SliderWidgetsPage::OnUpdateUICurValueText
)
191 EVT_COMMAND_SCROLL(SliderPage_Slider
, SliderWidgetsPage::OnSlider
)
193 EVT_CHECKBOX(wxID_ANY
, SliderWidgetsPage::OnCheckOrRadioBox
)
194 EVT_RADIOBOX(wxID_ANY
, SliderWidgetsPage::OnCheckOrRadioBox
)
197 // ============================================================================
199 // ============================================================================
201 IMPLEMENT_WIDGETS_PAGE(SliderWidgetsPage
, _T("Slider"),
202 (int)wxPlatform(GENERIC_CTRLS
).If(wxMSW
,NATIVE_CTRLS
)
205 SliderWidgetsPage::SliderWidgetsPage(WidgetsBookCtrl
*book
,
206 wxImageList
*imaglist
)
209 imaglist
->Add(wxBitmap(slider_xpm
));
218 m_chkBothSides
= (wxCheckBox
*)NULL
;
220 m_radioSides
= (wxRadioBox
*)NULL
;
222 m_slider
= (wxSlider
*)NULL
;
223 m_sizerSlider
= (wxSizer
*)NULL
;
225 wxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
228 wxStaticBox
*box
= new wxStaticBox(this, wxID_ANY
, _T("&Set style"));
229 wxSizer
*sizerLeft
= new wxStaticBoxSizer(box
, wxVERTICAL
);
231 m_chkInverse
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Inverse"));
232 m_chkTicks
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("Show &ticks"));
233 m_chkLabels
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("Show &labels"));
234 static const wxString sides
[] =
241 m_radioSides
= new wxRadioBox(this, SliderPage_RadioSides
, _T("&Ticks/Labels"),
242 wxDefaultPosition
, wxDefaultSize
,
243 WXSIZEOF(sides
), sides
,
244 1, wxRA_SPECIFY_COLS
);
245 sizerLeft
->Add(m_radioSides
, 0, wxGROW
| wxALL
, 5);
246 m_chkBothSides
= CreateCheckBoxAndAddToSizer
247 (sizerLeft
, _T("&Both sides"), SliderPage_BothSides
);
249 m_chkBothSides
->SetToolTip( _T("\"Both sides\" is only supported \nin Win95 and Universal") );
250 #endif // wxUSE_TOOLTIPS
252 sizerLeft
->Add(5, 5, 0, wxGROW
| wxALL
, 5); // spacer
254 wxButton
*btn
= new wxButton(this, SliderPage_Reset
, _T("&Reset"));
255 sizerLeft
->Add(btn
, 0, wxALIGN_CENTRE_HORIZONTAL
| wxALL
, 15);
258 wxStaticBox
*box2
= new wxStaticBox(this, wxID_ANY
, _T("&Change slider value"));
259 wxSizer
*sizerMiddle
= new wxStaticBoxSizer(box2
, wxVERTICAL
);
262 wxSizer
*sizerRow
= CreateSizerWithTextAndLabel(_T("Current value"),
263 SliderPage_CurValueText
,
265 text
->SetEditable(false);
267 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
269 sizerRow
= CreateSizerWithTextAndButton(SliderPage_SetValue
,
271 SliderPage_ValueText
,
273 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
275 sizerRow
= CreateSizerWithTextAndButton(SliderPage_SetMinAndMax
,
280 m_textMax
= new wxTextCtrl(this, SliderPage_MaxText
, wxEmptyString
);
281 sizerRow
->Add(m_textMax
, 1, wxLEFT
| wxALIGN_CENTRE_VERTICAL
, 5);
283 m_textMin
->SetValue( wxString::Format(_T("%d"), m_min
) );
284 m_textMax
->SetValue( wxString::Format(_T("%d"), m_max
) );
286 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
288 sizerRow
= CreateSizerWithTextAndButton(SliderPage_SetTickFreq
,
289 _T("Tick &frequency"),
290 SliderPage_TickFreqText
,
293 m_textTickFreq
->SetValue(_T("10"));
295 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
297 sizerRow
= CreateSizerWithTextAndButton(SliderPage_SetThumbLen
,
299 SliderPage_ThumbLenText
,
302 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
305 wxSizer
*sizerRight
= new wxBoxSizer(wxHORIZONTAL
);
306 sizerRight
->SetMinSize(150, 40);
307 m_sizerSlider
= sizerRight
; // save it to modify it later
312 // the 3 panes panes compose the window
313 sizerTop
->Add(sizerLeft
, 0, wxGROW
| (wxALL
& ~wxLEFT
), 10);
314 sizerTop
->Add(sizerMiddle
, 0, wxGROW
| wxALL
, 10);
315 sizerTop
->Add(sizerRight
, 1, wxGROW
| (wxALL
& ~wxRIGHT
), 10);
317 // final initializations
323 // ----------------------------------------------------------------------------
325 // ----------------------------------------------------------------------------
327 void SliderWidgetsPage::Reset()
329 m_chkInverse
->SetValue(false);
330 m_chkTicks
->SetValue(true);
331 m_chkLabels
->SetValue(true);
332 m_chkBothSides
->SetValue(false);
334 m_radioSides
->SetSelection(SliderTicks_Top
);
337 void SliderWidgetsPage::CreateSlider()
339 int flags
= ms_defaultFlags
;
341 if ( m_chkInverse
->GetValue() )
343 flags
|= wxSL_INVERSE
;
346 if ( m_chkLabels
->GetValue() )
348 flags
|= wxSL_LABELS
;
351 if ( m_chkTicks
->GetValue() )
353 flags
|= wxSL_AUTOTICKS
;
356 switch ( m_radioSides
->GetSelection() )
358 case SliderTicks_Top
:
362 case SliderTicks_Left
:
366 case SliderTicks_Bottom
:
367 flags
|= wxSL_BOTTOM
;
370 case SliderTicks_Right
:
375 wxFAIL_MSG(_T("unexpected radiobox selection"));
379 if ( m_chkBothSides
->GetValue() )
387 int valOld
= m_slider
->GetValue();
388 if ( !IsValidValue(valOld
) )
393 m_sizerSlider
->Detach( m_slider
);
395 if ( m_sizerSlider
->GetChildren().GetCount() )
397 // we have 2 spacers, remove them too
398 m_sizerSlider
->Remove( 0 );
399 m_sizerSlider
->Remove( 0 );
405 m_slider
= new wxSlider(this, SliderPage_Slider
,
407 wxDefaultPosition
, wxDefaultSize
,
410 if ( m_slider
->HasFlag(wxSL_VERTICAL
) )
412 m_sizerSlider
->Add(0, 0, 1);
413 m_sizerSlider
->Add(m_slider
, 0, wxGROW
| wxALL
, 5);
414 m_sizerSlider
->Add(0, 0, 1);
418 m_sizerSlider
->Add(m_slider
, 1, wxCENTRE
| wxALL
, 5);
421 if ( m_chkTicks
->GetValue() )
426 m_sizerSlider
->Layout();
429 void SliderWidgetsPage::DoSetTickFreq()
432 if ( !m_textTickFreq
->GetValue().ToLong(&freq
) )
434 wxLogWarning(_T("Invalid slider tick frequency"));
439 m_slider
->SetTickFreq(freq
, 0 /* unused */);
442 void SliderWidgetsPage::DoSetThumbLen()
445 if ( !m_textThumbLen
->GetValue().ToLong(&len
) )
447 wxLogWarning(_T("Invalid slider thumb length"));
452 m_slider
->SetThumbLength(len
);
455 // ----------------------------------------------------------------------------
457 // ----------------------------------------------------------------------------
459 void SliderWidgetsPage::OnButtonReset(wxCommandEvent
& WXUNUSED(event
))
466 void SliderWidgetsPage::OnButtonSetTickFreq(wxCommandEvent
& WXUNUSED(event
))
471 void SliderWidgetsPage::OnButtonSetThumbLen(wxCommandEvent
& WXUNUSED(event
))
476 void SliderWidgetsPage::OnButtonSetMinAndMax(wxCommandEvent
& WXUNUSED(event
))
479 maxNew
= 0; // init to suppress compiler warning
480 if ( !m_textMin
->GetValue().ToLong(&minNew
) ||
481 !m_textMax
->GetValue().ToLong(&maxNew
) ||
484 wxLogWarning(_T("Invalid min/max values for the slider."));
492 m_slider
->SetRange(minNew
, maxNew
);
494 if ( m_slider
->GetMin() != m_min
||
495 m_slider
->GetMax() != m_max
)
497 wxLogWarning(_T("Invalid range in slider."));
501 void SliderWidgetsPage::OnButtonSetValue(wxCommandEvent
& WXUNUSED(event
))
504 if ( !m_textValue
->GetValue().ToLong(&val
) || !IsValidValue(val
) )
506 wxLogWarning(_T("Invalid slider value."));
511 m_slider
->SetValue(val
);
514 void SliderWidgetsPage::OnUpdateUIValueButton(wxUpdateUIEvent
& event
)
517 event
.Enable( m_textValue
->GetValue().ToLong(&val
) && IsValidValue(val
) );
520 void SliderWidgetsPage::OnUpdateUITickFreq(wxUpdateUIEvent
& event
)
523 event
.Enable( m_chkTicks
->GetValue() &&
524 m_textTickFreq
->GetValue().ToLong(&freq
) &&
525 (freq
> 0) && (freq
<= m_max
- m_min
) );
528 void SliderWidgetsPage::OnUpdateUIThumbLen(wxUpdateUIEvent
& event
)
531 event
.Enable( m_textThumbLen
->GetValue().ToLong(&val
));
534 void SliderWidgetsPage::OnUpdateUIMinMaxButton(wxUpdateUIEvent
& event
)
537 event
.Enable( m_textMin
->GetValue().ToLong(&mn
) &&
538 m_textMax
->GetValue().ToLong(&mx
) &&
542 void SliderWidgetsPage::OnUpdateUIResetButton(wxUpdateUIEvent
& event
)
544 event
.Enable( m_chkInverse
->GetValue() ||
545 !m_chkTicks
->GetValue() ||
546 !m_chkLabels
->GetValue() ||
547 m_chkBothSides
->GetValue() ||
548 m_radioSides
->GetSelection() != SliderTicks_Top
);
551 void SliderWidgetsPage::OnCheckOrRadioBox(wxCommandEvent
& WXUNUSED(event
))
556 void SliderWidgetsPage::OnUpdateUICurValueText(wxUpdateUIEvent
& event
)
558 event
.SetText( wxString::Format(_T("%d"), m_slider
->GetValue()) );
561 void SliderWidgetsPage::OnUpdateUIRadioSides(wxUpdateUIEvent
& event
)
563 event
.Enable( m_chkLabels
->GetValue() || m_chkTicks
->GetValue() );
566 void SliderWidgetsPage::OnUpdateUIBothSides(wxUpdateUIEvent
& event
)
568 #if defined(__WXMSW__) || defined(__WXUNIVERSAL__)
569 event
.Enable( m_chkTicks
->GetValue() );
571 event
.Enable( false );
572 #endif // defined(__WXMSW__) || defined(__WXUNIVERSAL__)
575 void SliderWidgetsPage::OnSlider(wxScrollEvent
& event
)
577 wxASSERT_MSG( event
.GetInt() == m_slider
->GetValue(),
578 wxT("slider value should be the same") );
580 wxEventType eventType
= event
.GetEventType();
583 This array takes the EXACT order of the declarations in
585 (section "wxScrollBar and wxSlider event identifiers")
587 static const wxChar
*eventNames
[] =
589 wxT("wxEVT_SCROLL_TOP"),
590 wxT("wxEVT_SCROLL_BOTTOM"),
591 wxT("wxEVT_SCROLL_LINEUP"),
592 wxT("wxEVT_SCROLL_LINEDOWN"),
593 wxT("wxEVT_SCROLL_PAGEUP"),
594 wxT("wxEVT_SCROLL_PAGEDOWN"),
595 wxT("wxEVT_SCROLL_THUMBTRACK"),
596 wxT("wxEVT_SCROLL_THUMBRELEASE"),
597 wxT("wxEVT_SCROLL_CHANGED")
600 int index
= eventType
- wxEVT_SCROLL_TOP
;
603 If this assert is triggered, there is an unknown slider event which
604 should be added to the above eventNames array.
606 wxASSERT_MSG(index
>= 0 && (size_t)index
< WXSIZEOF(eventNames
),
607 wxT("Unknown slider event") );
610 static int s_numSliderEvents
= 0;
612 wxLogMessage(wxT("Slider event #%d: %s (pos = %d, int value = %d)"),
619 #endif // wxUSE_SLIDER