1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWidgets Widgets Sample
4 // Purpose: Part of the widgets sample showing wxSpinButton
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/statbox.h"
38 #include "wx/textctrl.h"
41 #include "wx/spinbutt.h"
42 #include "wx/spinctrl.h"
48 #include "icons/spinbtn.xpm"
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
57 SpinBtnPage_Reset
= 100,
60 SpinBtnPage_SetMinAndMax
,
61 SpinBtnPage_CurValueText
,
62 SpinBtnPage_ValueText
,
69 // ----------------------------------------------------------------------------
71 // ----------------------------------------------------------------------------
73 class SpinBtnWidgetsPage
: public WidgetsPage
76 SpinBtnWidgetsPage(WidgetsBookCtrl
*book
, wxImageList
*imaglist
);
77 virtual ~SpinBtnWidgetsPage(){};
79 virtual wxControl
*GetWidget() const { return m_spinbtn
; }
80 virtual wxControl
*GetWidget2() const { return m_spinctrl
; }
81 virtual void RecreateWidget() { CreateSpin(); }
85 void OnButtonReset(wxCommandEvent
& event
);
86 void OnButtonClear(wxCommandEvent
& event
);
87 void OnButtonSetValue(wxCommandEvent
& event
);
88 void OnButtonSetMinAndMax(wxCommandEvent
& event
);
90 void OnCheckOrRadioBox(wxCommandEvent
& event
);
92 void OnSpinBtn(wxSpinEvent
& event
);
93 void OnSpinBtnUp(wxSpinEvent
& event
);
94 void OnSpinBtnDown(wxSpinEvent
& event
);
95 void OnSpinCtrl(wxSpinEvent
& event
);
97 void OnUpdateUIValueButton(wxUpdateUIEvent
& event
);
98 void OnUpdateUIMinMaxButton(wxUpdateUIEvent
& event
);
100 void OnUpdateUIResetButton(wxUpdateUIEvent
& event
);
102 void OnUpdateUICurValueText(wxUpdateUIEvent
& event
);
104 // reset the spinbtn parameters
107 // (re)create the spinbtn
110 // is this spinbtn value in range?
111 bool IsValidValue(int val
) const
112 { return (val
>= m_min
) && (val
<= m_max
); }
120 // the check/radio boxes for styles
121 wxCheckBox
*m_chkVert
,
124 // the spinbtn and the spinctrl and the sizer containing them
125 wxSpinButton
*m_spinbtn
;
126 wxSpinCtrl
*m_spinctrl
;
128 wxSizer
*m_sizerSpin
;
130 // the text entries for set value/range
131 wxTextCtrl
*m_textValue
,
136 DECLARE_EVENT_TABLE()
137 DECLARE_WIDGETS_PAGE(SpinBtnWidgetsPage
)
140 // ----------------------------------------------------------------------------
142 // ----------------------------------------------------------------------------
144 BEGIN_EVENT_TABLE(SpinBtnWidgetsPage
, WidgetsPage
)
145 EVT_BUTTON(SpinBtnPage_Reset
, SpinBtnWidgetsPage::OnButtonReset
)
146 EVT_BUTTON(SpinBtnPage_SetValue
, SpinBtnWidgetsPage::OnButtonSetValue
)
147 EVT_BUTTON(SpinBtnPage_SetMinAndMax
, SpinBtnWidgetsPage::OnButtonSetMinAndMax
)
149 EVT_UPDATE_UI(SpinBtnPage_SetValue
, SpinBtnWidgetsPage::OnUpdateUIValueButton
)
150 EVT_UPDATE_UI(SpinBtnPage_SetMinAndMax
, SpinBtnWidgetsPage::OnUpdateUIMinMaxButton
)
152 EVT_UPDATE_UI(SpinBtnPage_Reset
, SpinBtnWidgetsPage::OnUpdateUIResetButton
)
154 EVT_UPDATE_UI(SpinBtnPage_CurValueText
, SpinBtnWidgetsPage::OnUpdateUICurValueText
)
156 EVT_SPIN(SpinBtnPage_SpinBtn
, SpinBtnWidgetsPage::OnSpinBtn
)
157 EVT_SPIN_UP(SpinBtnPage_SpinBtn
, SpinBtnWidgetsPage::OnSpinBtnUp
)
158 EVT_SPIN_DOWN(SpinBtnPage_SpinBtn
, SpinBtnWidgetsPage::OnSpinBtnDown
)
159 EVT_SPINCTRL(SpinBtnPage_SpinCtrl
, SpinBtnWidgetsPage::OnSpinCtrl
)
161 EVT_CHECKBOX(wxID_ANY
, SpinBtnWidgetsPage::OnCheckOrRadioBox
)
162 EVT_RADIOBOX(wxID_ANY
, SpinBtnWidgetsPage::OnCheckOrRadioBox
)
165 // ============================================================================
167 // ============================================================================
169 IMPLEMENT_WIDGETS_PAGE(SpinBtnWidgetsPage
, _T("Spin"),
170 (int)wxPlatform(GENERIC_CTRLS
).If(wxMSW
,NATIVE_CTRLS
)
174 SpinBtnWidgetsPage::SpinBtnWidgetsPage(WidgetsBookCtrl
*book
,
175 wxImageList
*imaglist
)
185 imaglist
->Add(wxBitmap(spinbtn_xpm
));
192 m_chkWrap
= (wxCheckBox
*)NULL
;
194 m_spinbtn
= (wxSpinButton
*)NULL
;
195 m_sizerSpin
= (wxSizer
*)NULL
;
197 wxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
200 wxStaticBox
*box
= new wxStaticBox(this, wxID_ANY
, _T("&Set style"));
201 wxSizer
*sizerLeft
= new wxStaticBoxSizer(box
, wxVERTICAL
);
203 m_chkVert
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Vertical"));
204 m_chkWrap
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Wrap"));
206 sizerLeft
->Add(5, 5, 0, wxGROW
| wxALL
, 5); // spacer
208 wxButton
*btn
= new wxButton(this, SpinBtnPage_Reset
, _T("&Reset"));
209 sizerLeft
->Add(btn
, 0, wxALIGN_CENTRE_HORIZONTAL
| wxALL
, 15);
212 wxStaticBox
*box2
= new wxStaticBox(this, wxID_ANY
,
213 _T("&Change spinbtn value"));
215 wxSizer
*sizerMiddle
= new wxStaticBoxSizer(box2
, wxVERTICAL
);
218 wxSizer
*sizerRow
= CreateSizerWithTextAndLabel(_T("Current value"),
219 SpinBtnPage_CurValueText
,
221 text
->SetEditable(false);
223 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
225 sizerRow
= CreateSizerWithTextAndButton(SpinBtnPage_SetValue
,
227 SpinBtnPage_ValueText
,
229 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
231 sizerRow
= CreateSizerWithTextAndButton(SpinBtnPage_SetMinAndMax
,
236 m_textMax
= new wxTextCtrl(this, SpinBtnPage_MaxText
, wxEmptyString
);
237 sizerRow
->Add(m_textMax
, 1, wxLEFT
| wxALIGN_CENTRE_VERTICAL
, 5);
239 m_textMin
->SetValue( wxString::Format(_T("%d"), m_min
) );
240 m_textMax
->SetValue( wxString::Format(_T("%d"), m_max
) );
242 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
245 wxSizer
*sizerRight
= new wxBoxSizer(wxVERTICAL
);
246 sizerRight
->SetMinSize(150, 0);
247 m_sizerSpin
= sizerRight
; // save it to modify it later
252 // the 3 panes panes compose the window
253 sizerTop
->Add(sizerLeft
, 0, wxGROW
| (wxALL
& ~wxLEFT
), 10);
254 sizerTop
->Add(sizerMiddle
, 0, wxGROW
| wxALL
, 10);
255 sizerTop
->Add(sizerRight
, 1, wxGROW
| (wxALL
& ~wxRIGHT
), 10);
257 // final initializations
263 // ----------------------------------------------------------------------------
265 // ----------------------------------------------------------------------------
267 void SpinBtnWidgetsPage::Reset()
269 m_chkVert
->SetValue(true);
270 m_chkWrap
->SetValue(false);
273 void SpinBtnWidgetsPage::CreateSpin()
275 int flags
= ms_defaultFlags
;
277 bool isVert
= m_chkVert
->GetValue();
279 flags
|= wxSP_VERTICAL
;
281 flags
|= wxSP_HORIZONTAL
;
283 if ( m_chkWrap
->GetValue() )
289 int valOld
= m_spinbtn
->GetValue();
290 if ( !IsValidValue(valOld
) )
295 m_sizerSpin
->Detach( m_spinbtn
);
296 m_sizerSpin
->Detach( m_spinctrl
);
298 // there are 3 spacers left
299 m_sizerSpin
->Remove( 0 );
300 m_sizerSpin
->Remove( 0 );
301 m_sizerSpin
->Remove( 0 );
307 m_spinbtn
= new wxSpinButton(this, SpinBtnPage_SpinBtn
,
308 wxDefaultPosition
, wxDefaultSize
,
311 m_spinbtn
->SetValue(val
);
312 m_spinbtn
->SetRange(m_min
, m_max
);
314 m_spinctrl
= new wxSpinCtrl(this, SpinBtnPage_SpinCtrl
,
315 wxString::Format(_T("%d"), val
),
316 wxDefaultPosition
, wxDefaultSize
,
320 m_sizerSpin
->Add(0, 0, 1);
321 m_sizerSpin
->Add(m_spinbtn
, 0, wxALIGN_CENTRE
| wxALL
, 5);
322 m_sizerSpin
->Add(0, 0, 1);
323 m_sizerSpin
->Add(m_spinctrl
, 0, wxALIGN_CENTRE
| wxALL
, 5);
324 m_sizerSpin
->Add(0, 0, 1);
326 m_sizerSpin
->Layout();
329 // ----------------------------------------------------------------------------
331 // ----------------------------------------------------------------------------
333 void SpinBtnWidgetsPage::OnButtonReset(wxCommandEvent
& WXUNUSED(event
))
340 void SpinBtnWidgetsPage::OnButtonSetMinAndMax(wxCommandEvent
& WXUNUSED(event
))
343 maxNew
= 0; // init to suppress compiler warning
344 if ( !m_textMin
->GetValue().ToLong(&minNew
) ||
345 !m_textMax
->GetValue().ToLong(&maxNew
) ||
348 wxLogWarning(_T("Invalid min/max values for the spinbtn."));
356 m_spinbtn
->SetRange(minNew
, maxNew
);
357 m_spinctrl
->SetRange(minNew
, maxNew
);
360 void SpinBtnWidgetsPage::OnButtonSetValue(wxCommandEvent
& WXUNUSED(event
))
363 if ( !m_textValue
->GetValue().ToLong(&val
) || !IsValidValue(val
) )
365 wxLogWarning(_T("Invalid spinbtn value."));
370 m_spinbtn
->SetValue(val
);
371 m_spinctrl
->SetValue(val
);
374 void SpinBtnWidgetsPage::OnUpdateUIValueButton(wxUpdateUIEvent
& event
)
377 event
.Enable( m_textValue
->GetValue().ToLong(&val
) && IsValidValue(val
) );
380 void SpinBtnWidgetsPage::OnUpdateUIMinMaxButton(wxUpdateUIEvent
& event
)
383 event
.Enable( m_textMin
->GetValue().ToLong(&mn
) &&
384 m_textMax
->GetValue().ToLong(&mx
) &&
388 void SpinBtnWidgetsPage::OnUpdateUIResetButton(wxUpdateUIEvent
& event
)
390 event
.Enable( !m_chkVert
->GetValue() || m_chkWrap
->GetValue() );
393 void SpinBtnWidgetsPage::OnCheckOrRadioBox(wxCommandEvent
& WXUNUSED(event
))
398 void SpinBtnWidgetsPage::OnUpdateUICurValueText(wxUpdateUIEvent
& event
)
400 event
.SetText( wxString::Format(_T("%d"), m_spinbtn
->GetValue()));
403 void SpinBtnWidgetsPage::OnSpinBtn(wxSpinEvent
& event
)
405 int value
= event
.GetInt();
407 wxASSERT_MSG( value
== m_spinbtn
->GetValue(),
408 _T("spinbtn value should be the same") );
410 wxLogMessage(_T("Spin button value changed, now %d"), value
);
413 void SpinBtnWidgetsPage::OnSpinBtnUp(wxSpinEvent
& event
)
415 wxLogMessage( _T("Spin button value incremented, will be %d (was %d)"),
416 event
.GetInt(), m_spinbtn
->GetValue() );
419 void SpinBtnWidgetsPage::OnSpinBtnDown(wxSpinEvent
& event
)
421 wxLogMessage( _T("Spin button value decremented, will be %d (was %d)"),
422 event
.GetInt(), m_spinbtn
->GetValue() );
425 void SpinBtnWidgetsPage::OnSpinCtrl(wxSpinEvent
& event
)
429 int value
= event
.GetInt();
431 wxASSERT_MSG( value
== m_spinctrl
->GetValue(),
432 _T("spinctrl value should be the same") );
434 wxLogMessage(_T("Spin control value changed, now %d"), value
);