Small devices adjustements.
[wxWidgets.git] / samples / widgets / spinbtn.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWidgets Widgets Sample
3 // Name: spinbtn.cpp
4 // Purpose: Part of the widgets sample showing wxSpinButton
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_SPINBTN
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/statbox.h"
38 #include "wx/textctrl.h"
39 #endif
40
41 #include "wx/spinbutt.h"
42 #include "wx/spinctrl.h"
43
44 #include "wx/sizer.h"
45
46 #include "widgets.h"
47
48 #include "icons/spinbtn.xpm"
49
50 // ----------------------------------------------------------------------------
51 // constants
52 // ----------------------------------------------------------------------------
53
54 // control ids
55 enum
56 {
57 SpinBtnPage_Reset = wxID_HIGHEST,
58 SpinBtnPage_Clear,
59 SpinBtnPage_SetValue,
60 SpinBtnPage_SetMinAndMax,
61 SpinBtnPage_CurValueText,
62 SpinBtnPage_ValueText,
63 SpinBtnPage_MinText,
64 SpinBtnPage_MaxText,
65 SpinBtnPage_SpinBtn,
66 SpinBtnPage_SpinCtrl
67 };
68
69 // ----------------------------------------------------------------------------
70 // SpinBtnWidgetsPage
71 // ----------------------------------------------------------------------------
72
73 class SpinBtnWidgetsPage : public WidgetsPage
74 {
75 public:
76 SpinBtnWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist);
77 virtual ~SpinBtnWidgetsPage(){};
78
79 virtual wxControl *GetWidget() const { return m_spinbtn; }
80 virtual wxControl *GetWidget2() const { return m_spinctrl; }
81 virtual void RecreateWidget() { CreateSpin(); }
82
83 protected:
84 // event handlers
85 void OnButtonReset(wxCommandEvent& event);
86 void OnButtonClear(wxCommandEvent& event);
87 void OnButtonSetValue(wxCommandEvent& event);
88 void OnButtonSetMinAndMax(wxCommandEvent& event);
89
90 void OnCheckOrRadioBox(wxCommandEvent& event);
91
92 void OnSpinBtn(wxSpinEvent& event);
93 void OnSpinBtnUp(wxSpinEvent& event);
94 void OnSpinBtnDown(wxSpinEvent& event);
95 void OnSpinCtrl(wxSpinEvent& event);
96
97 void OnUpdateUIValueButton(wxUpdateUIEvent& event);
98 void OnUpdateUIMinMaxButton(wxUpdateUIEvent& event);
99
100 void OnUpdateUIResetButton(wxUpdateUIEvent& event);
101
102 void OnUpdateUICurValueText(wxUpdateUIEvent& event);
103
104 // reset the spinbtn parameters
105 void Reset();
106
107 // (re)create the spinbtn
108 void CreateSpin();
109
110 // is this spinbtn value in range?
111 bool IsValidValue(int val) const
112 { return (val >= m_min) && (val <= m_max); }
113
114 // the spinbtn range
115 int m_min, m_max;
116
117 // the controls
118 // ------------
119
120 // the check/radio boxes for styles
121 wxCheckBox *m_chkVert,
122 *m_chkWrap;
123
124 // the spinbtn and the spinctrl and the sizer containing them
125 wxSpinButton *m_spinbtn;
126 wxSpinCtrl *m_spinctrl;
127
128 wxSizer *m_sizerSpin;
129
130 // the text entries for set value/range
131 wxTextCtrl *m_textValue,
132 *m_textMin,
133 *m_textMax;
134
135 private:
136 DECLARE_EVENT_TABLE()
137 DECLARE_WIDGETS_PAGE(SpinBtnWidgetsPage)
138 };
139
140 // ----------------------------------------------------------------------------
141 // event tables
142 // ----------------------------------------------------------------------------
143
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)
148
149 EVT_UPDATE_UI(SpinBtnPage_SetValue, SpinBtnWidgetsPage::OnUpdateUIValueButton)
150 EVT_UPDATE_UI(SpinBtnPage_SetMinAndMax, SpinBtnWidgetsPage::OnUpdateUIMinMaxButton)
151
152 EVT_UPDATE_UI(SpinBtnPage_Reset, SpinBtnWidgetsPage::OnUpdateUIResetButton)
153
154 EVT_UPDATE_UI(SpinBtnPage_CurValueText, SpinBtnWidgetsPage::OnUpdateUICurValueText)
155
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)
160
161 EVT_CHECKBOX(wxID_ANY, SpinBtnWidgetsPage::OnCheckOrRadioBox)
162 EVT_RADIOBOX(wxID_ANY, SpinBtnWidgetsPage::OnCheckOrRadioBox)
163 END_EVENT_TABLE()
164
165 // ============================================================================
166 // implementation
167 // ============================================================================
168
169 #if defined(__WXUNIVERSAL__)
170 #define FAMILY_CTRLS UNIVERSAL_CTRLS
171 #else
172 #define FAMILY_CTRLS NATIVE_CTRLS
173 #endif
174
175 IMPLEMENT_WIDGETS_PAGE(SpinBtnWidgetsPage, _T("Spin"),
176 FAMILY_CTRLS | EDITABLE_CTRLS
177 );
178
179 SpinBtnWidgetsPage::SpinBtnWidgetsPage(WidgetsBookCtrl *book,
180 wxImageList *imaglist)
181 : WidgetsPage(book, imaglist, spinbtn_xpm)
182 {
183 m_chkVert = NULL;
184 m_chkWrap = NULL;
185 m_spinbtn = NULL;
186 m_spinctrl = NULL;
187 m_textValue = NULL;
188 m_textMin = NULL;
189 m_textMax = NULL;
190
191 // init everything
192 m_min = 0;
193 m_max = 10;
194
195 m_chkVert =
196 m_chkWrap = (wxCheckBox *)NULL;
197
198 m_spinbtn = (wxSpinButton *)NULL;
199 m_sizerSpin = (wxSizer *)NULL;
200
201 wxSizer *sizerTop = new wxBoxSizer(wxHORIZONTAL);
202
203 // left pane
204 wxStaticBox *box = new wxStaticBox(this, wxID_ANY, _T("&Set style"));
205 wxSizer *sizerLeft = new wxStaticBoxSizer(box, wxVERTICAL);
206
207 m_chkVert = CreateCheckBoxAndAddToSizer(sizerLeft, _T("&Vertical"));
208 m_chkWrap = CreateCheckBoxAndAddToSizer(sizerLeft, _T("&Wrap"));
209
210 sizerLeft->Add(5, 5, 0, wxGROW | wxALL, 5); // spacer
211
212 wxButton *btn = new wxButton(this, SpinBtnPage_Reset, _T("&Reset"));
213 sizerLeft->Add(btn, 0, wxALIGN_CENTRE_HORIZONTAL | wxALL, 15);
214
215 // middle pane
216 wxStaticBox *box2 = new wxStaticBox(this, wxID_ANY,
217 _T("&Change spinbtn value"));
218
219 wxSizer *sizerMiddle = new wxStaticBoxSizer(box2, wxVERTICAL);
220
221 wxTextCtrl *text;
222 wxSizer *sizerRow = CreateSizerWithTextAndLabel(_T("Current value"),
223 SpinBtnPage_CurValueText,
224 &text);
225 text->SetEditable(false);
226
227 sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5);
228
229 sizerRow = CreateSizerWithTextAndButton(SpinBtnPage_SetValue,
230 _T("Set &value"),
231 SpinBtnPage_ValueText,
232 &m_textValue);
233 sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5);
234
235 sizerRow = CreateSizerWithTextAndButton(SpinBtnPage_SetMinAndMax,
236 _T("&Min and max"),
237 SpinBtnPage_MinText,
238 &m_textMin);
239
240 m_textMax = new wxTextCtrl(this, SpinBtnPage_MaxText, wxEmptyString);
241 sizerRow->Add(m_textMax, 1, wxLEFT | wxALIGN_CENTRE_VERTICAL, 5);
242
243 m_textMin->SetValue( wxString::Format(_T("%d"), m_min) );
244 m_textMax->SetValue( wxString::Format(_T("%d"), m_max) );
245
246 sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5);
247
248 // right pane
249 wxSizer *sizerRight = new wxBoxSizer(wxVERTICAL);
250 sizerRight->SetMinSize(150, 0);
251 m_sizerSpin = sizerRight; // save it to modify it later
252
253 Reset();
254 CreateSpin();
255
256 // the 3 panes panes compose the window
257 sizerTop->Add(sizerLeft, 0, wxGROW | (wxALL & ~wxLEFT), 10);
258 sizerTop->Add(sizerMiddle, 0, wxGROW | wxALL, 10);
259 sizerTop->Add(sizerRight, 1, wxGROW | (wxALL & ~wxRIGHT), 10);
260
261 // final initializations
262 SetSizer(sizerTop);
263
264 sizerTop->Fit(this);
265 }
266
267 // ----------------------------------------------------------------------------
268 // operations
269 // ----------------------------------------------------------------------------
270
271 void SpinBtnWidgetsPage::Reset()
272 {
273 m_chkVert->SetValue(true);
274 m_chkWrap->SetValue(false);
275 }
276
277 void SpinBtnWidgetsPage::CreateSpin()
278 {
279 int flags = ms_defaultFlags;
280
281 bool isVert = m_chkVert->GetValue();
282 if ( isVert )
283 flags |= wxSP_VERTICAL;
284 else
285 flags |= wxSP_HORIZONTAL;
286
287 if ( m_chkWrap->GetValue() )
288 flags |= wxSP_WRAP;
289
290 int val = m_min;
291 if ( m_spinbtn )
292 {
293 int valOld = m_spinbtn->GetValue();
294 if ( !IsValidValue(valOld) )
295 {
296 val = valOld;
297 }
298
299 m_sizerSpin->Detach( m_spinbtn );
300 m_sizerSpin->Detach( m_spinctrl );
301
302 // there are 3 spacers left
303 m_sizerSpin->Remove( 0 );
304 m_sizerSpin->Remove( 0 );
305 m_sizerSpin->Remove( 0 );
306
307 delete m_spinbtn;
308 delete m_spinctrl;
309 }
310
311 m_spinbtn = new wxSpinButton(this, SpinBtnPage_SpinBtn,
312 wxDefaultPosition, wxDefaultSize,
313 flags);
314
315 m_spinbtn->SetValue(val);
316 m_spinbtn->SetRange(m_min, m_max);
317
318 m_spinctrl = new wxSpinCtrl(this, SpinBtnPage_SpinCtrl,
319 wxString::Format(_T("%d"), val),
320 wxDefaultPosition, wxDefaultSize,
321 flags,
322 m_min, m_max, val);
323
324 m_sizerSpin->Add(0, 0, 1);
325 m_sizerSpin->Add(m_spinbtn, 0, wxALIGN_CENTRE | wxALL, 5);
326 m_sizerSpin->Add(0, 0, 1);
327 m_sizerSpin->Add(m_spinctrl, 0, wxALIGN_CENTRE | wxALL, 5);
328 m_sizerSpin->Add(0, 0, 1);
329
330 m_sizerSpin->Layout();
331 }
332
333 // ----------------------------------------------------------------------------
334 // event handlers
335 // ----------------------------------------------------------------------------
336
337 void SpinBtnWidgetsPage::OnButtonReset(wxCommandEvent& WXUNUSED(event))
338 {
339 Reset();
340
341 CreateSpin();
342 }
343
344 void SpinBtnWidgetsPage::OnButtonSetMinAndMax(wxCommandEvent& WXUNUSED(event))
345 {
346 long minNew,
347 maxNew = 0; // init to suppress compiler warning
348 if ( !m_textMin->GetValue().ToLong(&minNew) ||
349 !m_textMax->GetValue().ToLong(&maxNew) ||
350 minNew >= maxNew )
351 {
352 wxLogWarning(_T("Invalid min/max values for the spinbtn."));
353
354 return;
355 }
356
357 m_min = minNew;
358 m_max = maxNew;
359
360 m_spinbtn->SetRange(minNew, maxNew);
361 m_spinctrl->SetRange(minNew, maxNew);
362 }
363
364 void SpinBtnWidgetsPage::OnButtonSetValue(wxCommandEvent& WXUNUSED(event))
365 {
366 long val;
367 if ( !m_textValue->GetValue().ToLong(&val) || !IsValidValue(val) )
368 {
369 wxLogWarning(_T("Invalid spinbtn value."));
370
371 return;
372 }
373
374 m_spinbtn->SetValue(val);
375 m_spinctrl->SetValue(val);
376 }
377
378 void SpinBtnWidgetsPage::OnUpdateUIValueButton(wxUpdateUIEvent& event)
379 {
380 long val;
381 event.Enable( m_textValue->GetValue().ToLong(&val) && IsValidValue(val) );
382 }
383
384 void SpinBtnWidgetsPage::OnUpdateUIMinMaxButton(wxUpdateUIEvent& event)
385 {
386 long mn, mx;
387 event.Enable( m_textMin->GetValue().ToLong(&mn) &&
388 m_textMax->GetValue().ToLong(&mx) &&
389 mn < mx);
390 }
391
392 void SpinBtnWidgetsPage::OnUpdateUIResetButton(wxUpdateUIEvent& event)
393 {
394 event.Enable( !m_chkVert->GetValue() || m_chkWrap->GetValue() );
395 }
396
397 void SpinBtnWidgetsPage::OnCheckOrRadioBox(wxCommandEvent& WXUNUSED(event))
398 {
399 CreateSpin();
400 }
401
402 void SpinBtnWidgetsPage::OnUpdateUICurValueText(wxUpdateUIEvent& event)
403 {
404 event.SetText( wxString::Format(_T("%d"), m_spinbtn->GetValue()));
405 }
406
407 void SpinBtnWidgetsPage::OnSpinBtn(wxSpinEvent& event)
408 {
409 int value = event.GetInt();
410
411 wxASSERT_MSG( value == m_spinbtn->GetValue(),
412 _T("spinbtn value should be the same") );
413
414 wxLogMessage(_T("Spin button value changed, now %d"), value);
415 }
416
417 void SpinBtnWidgetsPage::OnSpinBtnUp(wxSpinEvent& event)
418 {
419 wxLogMessage( _T("Spin button value incremented, will be %d (was %d)"),
420 event.GetInt(), m_spinbtn->GetValue() );
421 }
422
423 void SpinBtnWidgetsPage::OnSpinBtnDown(wxSpinEvent& event)
424 {
425 wxLogMessage( _T("Spin button value decremented, will be %d (was %d)"),
426 event.GetInt(), m_spinbtn->GetValue() );
427 }
428
429 void SpinBtnWidgetsPage::OnSpinCtrl(wxSpinEvent& event)
430 {
431 if (!m_spinctrl)
432 return;
433 int value = event.GetInt();
434
435 wxASSERT_MSG( value == m_spinctrl->GetValue(),
436 _T("spinctrl value should be the same") );
437
438 wxLogMessage(_T("Spin control value changed, now %d"), value);
439 }
440 #endif
441 // wxUSE_SPINBTN