]>
Commit | Line | Data |
---|---|---|
21709999 JS |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/generic/spinctlg.cpp | |
3 | // Purpose: implements wxSpinCtrl as a composite control | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 29.01.01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
526954c5 | 9 | // Licence: wxWindows licence |
21709999 JS |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
21709999 JS |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
21709999 JS |
27 | #ifndef WX_PRECOMP |
28 | #include "wx/textctrl.h" | |
29 | #endif //WX_PRECOMP | |
30 | ||
8cd6a9ad | 31 | #include "wx/spinctrl.h" |
cb7ef329 | 32 | #include "wx/tooltip.h" |
8cd6a9ad | 33 | |
c67d6888 JS |
34 | #if wxUSE_SPINCTRL |
35 | ||
8cd6a9ad VZ |
36 | IMPLEMENT_DYNAMIC_CLASS(wxSpinDoubleEvent, wxNotifyEvent) |
37 | ||
38 | // There are port-specific versions for the wxSpinCtrl, so exclude the | |
39 | // contents of this file in those cases | |
40 | #if !defined(wxHAS_NATIVE_SPINCTRL) || !defined(wxHAS_NATIVE_SPINCTRLDOUBLE) | |
41 | ||
21709999 | 42 | #include "wx/spinbutt.h" |
8cd6a9ad VZ |
43 | |
44 | #if wxUSE_SPINBTN | |
21709999 JS |
45 | |
46 | // ---------------------------------------------------------------------------- | |
47 | // constants | |
48 | // ---------------------------------------------------------------------------- | |
49 | ||
30138611 VZ |
50 | // The margin between the text control and the spin: the value here is the same |
51 | // as the margin between the spin button and its "buddy" text control in wxMSW | |
52 | // so the generic control looks similarly to the native one there, we might | |
53 | // need to use different value for the other platforms (and maybe even | |
54 | // determine it dynamically?). | |
55 | static const wxCoord MARGIN = 1; | |
21709999 | 56 | |
8cd6a9ad VZ |
57 | #define SPINCTRLBUT_MAX 32000 // large to avoid wrap around trouble |
58 | ||
21709999 | 59 | // ---------------------------------------------------------------------------- |
405f0fef | 60 | // wxSpinCtrlTextGeneric: text control used by spin control |
21709999 JS |
61 | // ---------------------------------------------------------------------------- |
62 | ||
405f0fef | 63 | class wxSpinCtrlTextGeneric : public wxTextCtrl |
21709999 JS |
64 | { |
65 | public: | |
7e4952db VZ |
66 | wxSpinCtrlTextGeneric(wxSpinCtrlGenericBase *spin, const wxString& value, long style=0) |
67 | : wxTextCtrl(spin->GetParent(), wxID_ANY, value, wxDefaultPosition, wxDefaultSize, | |
af07be96 | 68 | style & wxALIGN_MASK) |
21709999 JS |
69 | { |
70 | m_spin = spin; | |
ca65c044 | 71 | |
e459a794 | 72 | // remove the default minsize, the spinctrl will have one instead |
8cd6a9ad | 73 | SetSizeHints(wxDefaultCoord, wxDefaultCoord); |
21709999 JS |
74 | } |
75 | ||
405f0fef | 76 | virtual ~wxSpinCtrlTextGeneric() |
21709999 | 77 | { |
8cd6a9ad VZ |
78 | // MSW sends extra kill focus event on destroy |
79 | if (m_spin) | |
80 | m_spin->m_textCtrl = NULL; | |
21709999 | 81 | |
8cd6a9ad | 82 | m_spin = NULL; |
21709999 | 83 | } |
71e03035 | 84 | |
8cd6a9ad VZ |
85 | void OnChar( wxKeyEvent &event ) |
86 | { | |
87 | if (m_spin) | |
88 | m_spin->OnTextChar(event); | |
23d416bf | 89 | } |
21709999 | 90 | |
8cd6a9ad VZ |
91 | void OnKillFocus(wxFocusEvent& event) |
92 | { | |
93 | if (m_spin) | |
af07be96 | 94 | m_spin->OnTextLostFocus(); |
8cd6a9ad VZ |
95 | |
96 | event.Skip(); | |
97 | } | |
21709999 | 98 | |
8cd6a9ad VZ |
99 | wxSpinCtrlGenericBase *m_spin; |
100 | ||
101 | private: | |
21709999 JS |
102 | DECLARE_EVENT_TABLE() |
103 | }; | |
104 | ||
405f0fef | 105 | BEGIN_EVENT_TABLE(wxSpinCtrlTextGeneric, wxTextCtrl) |
405f0fef | 106 | EVT_CHAR(wxSpinCtrlTextGeneric::OnChar) |
8cd6a9ad | 107 | |
405f0fef | 108 | EVT_KILL_FOCUS(wxSpinCtrlTextGeneric::OnKillFocus) |
21709999 JS |
109 | END_EVENT_TABLE() |
110 | ||
111 | // ---------------------------------------------------------------------------- | |
405f0fef | 112 | // wxSpinCtrlButtonGeneric: spin button used by spin control |
21709999 JS |
113 | // ---------------------------------------------------------------------------- |
114 | ||
405f0fef | 115 | class wxSpinCtrlButtonGeneric : public wxSpinButton |
21709999 JS |
116 | { |
117 | public: | |
405f0fef | 118 | wxSpinCtrlButtonGeneric(wxSpinCtrlGenericBase *spin, int style) |
8cd6a9ad VZ |
119 | : wxSpinButton(spin->GetParent(), wxID_ANY, wxDefaultPosition, |
120 | wxDefaultSize, style | wxSP_VERTICAL) | |
21709999 JS |
121 | { |
122 | m_spin = spin; | |
123 | ||
8cd6a9ad | 124 | SetRange(-SPINCTRLBUT_MAX, SPINCTRLBUT_MAX); |
e459a794 RD |
125 | |
126 | // remove the default minsize, the spinctrl will have one instead | |
8cd6a9ad | 127 | SetSizeHints(wxDefaultCoord, wxDefaultCoord); |
21709999 JS |
128 | } |
129 | ||
8cd6a9ad | 130 | void OnSpinButton(wxSpinEvent& event) |
21709999 | 131 | { |
8cd6a9ad VZ |
132 | if (m_spin) |
133 | m_spin->OnSpinButton(event); | |
21709999 JS |
134 | } |
135 | ||
8cd6a9ad | 136 | wxSpinCtrlGenericBase *m_spin; |
21709999 | 137 | |
8cd6a9ad | 138 | private: |
21709999 JS |
139 | DECLARE_EVENT_TABLE() |
140 | }; | |
141 | ||
405f0fef VZ |
142 | BEGIN_EVENT_TABLE(wxSpinCtrlButtonGeneric, wxSpinButton) |
143 | EVT_SPIN_UP( wxID_ANY, wxSpinCtrlButtonGeneric::OnSpinButton) | |
144 | EVT_SPIN_DOWN(wxID_ANY, wxSpinCtrlButtonGeneric::OnSpinButton) | |
21709999 JS |
145 | END_EVENT_TABLE() |
146 | ||
21709999 | 147 | // ============================================================================ |
8cd6a9ad | 148 | // wxSpinCtrlGenericBase |
21709999 JS |
149 | // ============================================================================ |
150 | ||
151 | // ---------------------------------------------------------------------------- | |
8cd6a9ad | 152 | // wxSpinCtrlGenericBase creation |
21709999 JS |
153 | // ---------------------------------------------------------------------------- |
154 | ||
8cd6a9ad | 155 | void wxSpinCtrlGenericBase::Init() |
21709999 | 156 | { |
8cd6a9ad VZ |
157 | m_value = 0; |
158 | m_min = 0; | |
159 | m_max = 100; | |
160 | m_increment = 1; | |
161 | m_snap_to_ticks = false; | |
162 | m_format = wxS("%g"); | |
163 | ||
164 | m_spin_value = 0; | |
165 | ||
166 | m_textCtrl = NULL; | |
167 | m_spinButton = NULL; | |
21709999 JS |
168 | } |
169 | ||
8cd6a9ad VZ |
170 | bool wxSpinCtrlGenericBase::Create(wxWindow *parent, |
171 | wxWindowID id, | |
172 | const wxString& value, | |
173 | const wxPoint& pos, const wxSize& size, | |
174 | long style, | |
175 | double min, double max, double initial, | |
176 | double increment, | |
177 | const wxString& name) | |
21709999 | 178 | { |
8cd6a9ad VZ |
179 | // don't use borders for this control itself, it wouldn't look good with |
180 | // the text control borders (but we might want to use style border bits to | |
181 | // select the text control style) | |
182 | if ( !wxControl::Create(parent, id, wxDefaultPosition, wxDefaultSize, | |
18e45a88 VZ |
183 | (style & ~wxBORDER_MASK) | wxBORDER_NONE, |
184 | wxDefaultValidator, name) ) | |
21709999 | 185 | { |
3fb79396 | 186 | return false; |
21709999 JS |
187 | } |
188 | ||
8cd6a9ad VZ |
189 | m_value = initial; |
190 | m_min = min; | |
191 | m_max = max; | |
192 | m_increment = increment; | |
193 | ||
7e4952db | 194 | m_textCtrl = new wxSpinCtrlTextGeneric(this, value, style); |
405f0fef | 195 | m_spinButton = new wxSpinCtrlButtonGeneric(this, style); |
cb7ef329 VZ |
196 | #if wxUSE_TOOLTIPS |
197 | m_textCtrl->SetToolTip(GetToolTipText()); | |
198 | m_spinButton->SetToolTip(GetToolTipText()); | |
199 | #endif // wxUSE_TOOLTIPS | |
8cd6a9ad VZ |
200 | |
201 | m_spin_value = m_spinButton->GetValue(); | |
202 | ||
71e03035 VZ |
203 | // the string value overrides the numeric one (for backwards compatibility |
204 | // reasons and also because it is simpler to satisfy the string value which | |
205 | // comes much sooner in the list of arguments and leave the initial | |
206 | // parameter unspecified) | |
207 | if ( !value.empty() ) | |
208 | { | |
8cd6a9ad VZ |
209 | double d; |
210 | if ( value.ToDouble(&d) ) | |
211 | { | |
212 | m_value = d; | |
213 | m_textCtrl->SetValue(wxString::Format(m_format, m_value)); | |
214 | } | |
71e03035 VZ |
215 | } |
216 | ||
170acdc9 | 217 | SetInitialSize(size); |
9cb6c9a0 | 218 | Move(pos); |
ca65c044 | 219 | |
21709999 JS |
220 | // have to disable this window to avoid interfering it with message |
221 | // processing to the text and the button... but pretend it is enabled to | |
3fb79396 WS |
222 | // make IsEnabled() return true |
223 | wxControl::Enable(false); // don't use non virtual Disable() here! | |
224 | m_isEnabled = true; | |
21709999 JS |
225 | |
226 | // we don't even need to show this window itself - and not doing it avoids | |
227 | // that it overwrites the text control | |
3fb79396 WS |
228 | wxControl::Show(false); |
229 | m_isShown = true; | |
230 | return true; | |
21709999 JS |
231 | } |
232 | ||
8cd6a9ad | 233 | wxSpinCtrlGenericBase::~wxSpinCtrlGenericBase() |
21709999 | 234 | { |
e459a794 | 235 | // delete the controls now, don't leave them alive even though they would |
21709999 JS |
236 | // still be eventually deleted by our parent - but it will be too late, the |
237 | // user code expects them to be gone now | |
8cd6a9ad VZ |
238 | |
239 | if (m_textCtrl) | |
240 | { | |
405f0fef VZ |
241 | // null this since MSW sends KILL_FOCUS on deletion, see ~wxSpinCtrlTextGeneric |
242 | wxDynamicCast(m_textCtrl, wxSpinCtrlTextGeneric)->m_spin = NULL; | |
8cd6a9ad | 243 | |
405f0fef | 244 | wxSpinCtrlTextGeneric *text = (wxSpinCtrlTextGeneric*)m_textCtrl; |
8cd6a9ad VZ |
245 | m_textCtrl = NULL; |
246 | delete text; | |
247 | } | |
248 | ||
5276b0a5 | 249 | wxDELETE(m_spinButton); |
21709999 JS |
250 | } |
251 | ||
252 | // ---------------------------------------------------------------------------- | |
253 | // geometry | |
254 | // ---------------------------------------------------------------------------- | |
255 | ||
8cd6a9ad | 256 | wxSize wxSpinCtrlGenericBase::DoGetBestSize() const |
21709999 | 257 | { |
8cd6a9ad VZ |
258 | wxSize sizeBtn = m_spinButton->GetBestSize(), |
259 | sizeText = m_textCtrl->GetBestSize(); | |
21709999 JS |
260 | |
261 | return wxSize(sizeBtn.x + sizeText.x + MARGIN, sizeText.y); | |
262 | } | |
263 | ||
8cd6a9ad | 264 | void wxSpinCtrlGenericBase::DoMoveWindow(int x, int y, int width, int height) |
21709999 JS |
265 | { |
266 | wxControl::DoMoveWindow(x, y, width, height); | |
267 | ||
268 | // position the subcontrols inside the client area | |
8cd6a9ad | 269 | wxSize sizeBtn = m_spinButton->GetSize(); |
21709999 | 270 | |
6f0b6fd1 | 271 | wxCoord wText = width - sizeBtn.x - MARGIN; |
8cd6a9ad VZ |
272 | m_textCtrl->SetSize(x, y, wText, height); |
273 | m_spinButton->SetSize(x + wText + MARGIN, y, wxDefaultCoord, height); | |
21709999 JS |
274 | } |
275 | ||
276 | // ---------------------------------------------------------------------------- | |
277 | // operations forwarded to the subcontrols | |
278 | // ---------------------------------------------------------------------------- | |
279 | ||
fda43a0e VZ |
280 | void wxSpinCtrlGenericBase::SetFocus() |
281 | { | |
282 | if ( m_textCtrl ) | |
283 | m_textCtrl->SetFocus(); | |
284 | } | |
285 | ||
8cd6a9ad | 286 | bool wxSpinCtrlGenericBase::Enable(bool enable) |
21709999 | 287 | { |
3f77c76c VZ |
288 | // Notice that we never enable this control itself, it must stay disabled |
289 | // to avoid interfering with the siblings event handling (see e.g. #12045 | |
290 | // for the kind of problems which arise otherwise). | |
291 | if ( enable == m_isEnabled ) | |
3fb79396 | 292 | return false; |
21709999 | 293 | |
3f77c76c VZ |
294 | m_isEnabled = enable; |
295 | ||
8cd6a9ad VZ |
296 | m_spinButton->Enable(enable); |
297 | m_textCtrl->Enable(enable); | |
21709999 | 298 | |
3fb79396 | 299 | return true; |
21709999 JS |
300 | } |
301 | ||
8cd6a9ad | 302 | bool wxSpinCtrlGenericBase::Show(bool show) |
21709999 JS |
303 | { |
304 | if ( !wxControl::Show(show) ) | |
3fb79396 | 305 | return false; |
21709999 | 306 | |
3379ed37 VZ |
307 | // under GTK Show() is called the first time before we are fully |
308 | // constructed | |
8cd6a9ad | 309 | if ( m_spinButton ) |
3379ed37 | 310 | { |
8cd6a9ad VZ |
311 | m_spinButton->Show(show); |
312 | m_textCtrl->Show(show); | |
3379ed37 | 313 | } |
21709999 | 314 | |
3fb79396 | 315 | return true; |
21709999 JS |
316 | } |
317 | ||
7f0cbaaa | 318 | bool wxSpinCtrlGenericBase::Reparent(wxWindowBase *newParent) |
03d4194d | 319 | { |
8cd6a9ad | 320 | if ( m_spinButton ) |
03d4194d | 321 | { |
8cd6a9ad VZ |
322 | m_spinButton->Reparent(newParent); |
323 | m_textCtrl->Reparent(newParent); | |
03d4194d VZ |
324 | } |
325 | ||
326 | return true; | |
327 | } | |
328 | ||
cb7ef329 VZ |
329 | #if wxUSE_TOOLTIPS |
330 | void wxSpinCtrlGenericBase::DoSetToolTip(wxToolTip *tip) | |
331 | { | |
332 | // Notice that we must check for the subcontrols not being NULL (as they | |
333 | // could be if we were created with the default ctor and this is called | |
334 | // before Create() for some reason) and that we can't call SetToolTip(tip) | |
335 | // because this would take ownership of the wxToolTip object (twice). | |
336 | if ( m_textCtrl ) | |
337 | { | |
338 | if ( tip ) | |
339 | m_textCtrl->SetToolTip(tip->GetTip()); | |
340 | else | |
341 | m_textCtrl->SetToolTip(NULL); | |
342 | } | |
343 | ||
344 | if ( m_spinButton ) | |
345 | { | |
346 | if( tip ) | |
347 | m_spinButton->SetToolTip(tip->GetTip()); | |
348 | else | |
349 | m_spinButton->SetToolTip(NULL); | |
350 | } | |
351 | ||
352 | wxWindowBase::DoSetToolTip(tip); | |
353 | } | |
354 | #endif // wxUSE_TOOLTIPS | |
355 | ||
21709999 | 356 | // ---------------------------------------------------------------------------- |
8cd6a9ad | 357 | // Handle sub controls events |
21709999 JS |
358 | // ---------------------------------------------------------------------------- |
359 | ||
8cd6a9ad | 360 | void wxSpinCtrlGenericBase::OnSpinButton(wxSpinEvent& event) |
21709999 | 361 | { |
8cd6a9ad VZ |
362 | event.Skip(); |
363 | ||
364 | // Sync the textctrl since the user expects that the button will modify | |
365 | // what they see in the textctrl. | |
3a712105 | 366 | SyncSpinToText(); |
8cd6a9ad VZ |
367 | |
368 | int spin_value = event.GetPosition(); | |
369 | double step = (event.GetEventType() == wxEVT_SCROLL_LINEUP) ? 1 : -1; | |
370 | ||
371 | // Use the spinbutton's acceleration, if any, but not if wrapping around | |
372 | if (((spin_value >= 0) && (m_spin_value >= 0)) || ((spin_value <= 0) && (m_spin_value <= 0))) | |
373 | step *= abs(spin_value - m_spin_value); | |
21709999 | 374 | |
70c14728 | 375 | double value = AdjustToFitInRange(m_value + step*m_increment); |
8cd6a9ad VZ |
376 | |
377 | // Ignore the edges when it wraps since the up/down event may be opposite | |
378 | // They are in GTK and Mac | |
379 | if (abs(spin_value - m_spin_value) > SPINCTRLBUT_MAX) | |
21709999 | 380 | { |
8cd6a9ad VZ |
381 | m_spin_value = spin_value; |
382 | return; | |
21709999 JS |
383 | } |
384 | ||
8cd6a9ad | 385 | m_spin_value = spin_value; |
21709999 | 386 | |
70c14728 | 387 | if ( DoSetValue(value) ) |
8cd6a9ad | 388 | DoSendEvent(); |
21709999 JS |
389 | } |
390 | ||
af07be96 | 391 | void wxSpinCtrlGenericBase::OnTextLostFocus() |
21709999 | 392 | { |
8cd6a9ad VZ |
393 | SyncSpinToText(); |
394 | DoSendEvent(); | |
21709999 JS |
395 | } |
396 | ||
8cd6a9ad | 397 | void wxSpinCtrlGenericBase::OnTextChar(wxKeyEvent& event) |
21709999 | 398 | { |
fd07e185 VZ |
399 | if ( !HasFlag(wxSP_ARROW_KEYS) ) |
400 | { | |
401 | event.Skip(); | |
402 | return; | |
403 | } | |
404 | ||
8cd6a9ad VZ |
405 | double value = m_value; |
406 | switch ( event.GetKeyCode() ) | |
407 | { | |
408 | case WXK_UP : | |
409 | value += m_increment; | |
410 | break; | |
411 | ||
412 | case WXK_DOWN : | |
413 | value -= m_increment; | |
414 | break; | |
415 | ||
416 | case WXK_PAGEUP : | |
417 | value += m_increment * 10.0; | |
418 | break; | |
419 | ||
420 | case WXK_PAGEDOWN : | |
421 | value -= m_increment * 10.0; | |
422 | break; | |
423 | ||
424 | default: | |
425 | event.Skip(); | |
426 | return; | |
427 | } | |
428 | ||
70c14728 VZ |
429 | value = AdjustToFitInRange(value); |
430 | ||
3a712105 | 431 | SyncSpinToText(); |
8cd6a9ad VZ |
432 | |
433 | if ( DoSetValue(value) ) | |
434 | DoSendEvent(); | |
21709999 JS |
435 | } |
436 | ||
8cd6a9ad VZ |
437 | // ---------------------------------------------------------------------------- |
438 | // Textctrl functions | |
439 | // ---------------------------------------------------------------------------- | |
440 | ||
3a712105 | 441 | bool wxSpinCtrlGenericBase::SyncSpinToText() |
21709999 | 442 | { |
3a712105 VZ |
443 | if ( !m_textCtrl || !m_textCtrl->IsModified() ) |
444 | return false; | |
8cd6a9ad VZ |
445 | |
446 | double textValue; | |
447 | if ( m_textCtrl->GetValue().ToDouble(&textValue) ) | |
448 | { | |
449 | if (textValue > m_max) | |
450 | textValue = m_max; | |
451 | else if (textValue < m_min) | |
452 | textValue = m_min; | |
8cd6a9ad | 453 | } |
3a712105 | 454 | else // text contents is not a valid number at all |
8cd6a9ad | 455 | { |
3a712105 VZ |
456 | // replace its contents with the last valid value |
457 | textValue = m_value; | |
8cd6a9ad | 458 | } |
3a712105 VZ |
459 | |
460 | // we must always set the value here, even if it's equal to m_value, as | |
461 | // otherwise we could be left with an out of range value when leaving the | |
462 | // text control and the current value is already m_max for example | |
463 | return DoSetValue(textValue); | |
21709999 JS |
464 | } |
465 | ||
466 | // ---------------------------------------------------------------------------- | |
467 | // changing value and range | |
468 | // ---------------------------------------------------------------------------- | |
469 | ||
8cd6a9ad VZ |
470 | void wxSpinCtrlGenericBase::SetValue(const wxString& text) |
471 | { | |
9a83f860 | 472 | wxCHECK_RET( m_textCtrl, wxT("invalid call to wxSpinCtrl::SetValue") ); |
8cd6a9ad VZ |
473 | |
474 | double val; | |
475 | if ( text.ToDouble(&val) && InRange(val) ) | |
476 | { | |
477 | DoSetValue(val); | |
478 | } | |
479 | else // not a number at all or out of range | |
480 | { | |
481 | m_textCtrl->SetValue(text); | |
482 | m_textCtrl->SetSelection(0, -1); | |
b78ffab0 | 483 | m_textCtrl->SetInsertionPointEnd(); |
8cd6a9ad VZ |
484 | } |
485 | } | |
486 | ||
487 | bool wxSpinCtrlGenericBase::DoSetValue(double val) | |
21709999 | 488 | { |
9a83f860 | 489 | wxCHECK_MSG( m_textCtrl, false, wxT("invalid call to wxSpinCtrl::SetValue") ); |
21709999 | 490 | |
8cd6a9ad VZ |
491 | if (!InRange(val)) |
492 | return false; | |
21709999 | 493 | |
8cd6a9ad VZ |
494 | if ( m_snap_to_ticks && (m_increment != 0) ) |
495 | { | |
496 | double snap_value = val / m_increment; | |
21709999 | 497 | |
8cd6a9ad VZ |
498 | if (wxFinite(snap_value)) // FIXME what to do about a failure? |
499 | { | |
500 | if ((snap_value - floor(snap_value)) < (ceil(snap_value) - snap_value)) | |
501 | val = floor(snap_value) * m_increment; | |
502 | else | |
503 | val = ceil(snap_value) * m_increment; | |
504 | } | |
505 | } | |
506 | ||
507 | wxString str(wxString::Format(m_format.c_str(), val)); | |
508 | ||
509 | if ((val != m_value) || (str != m_textCtrl->GetValue())) | |
510 | { | |
511 | m_value = val; | |
512 | str.ToDouble( &m_value ); // wysiwyg for textctrl | |
513 | m_textCtrl->SetValue( str ); | |
b78ffab0 | 514 | m_textCtrl->SetInsertionPointEnd(); |
8cd6a9ad VZ |
515 | m_textCtrl->DiscardEdits(); |
516 | return true; | |
517 | } | |
518 | ||
519 | return false; | |
21709999 JS |
520 | } |
521 | ||
70c14728 VZ |
522 | double wxSpinCtrlGenericBase::AdjustToFitInRange(double value) const |
523 | { | |
524 | if (value < m_min) | |
525 | value = HasFlag(wxSP_WRAP) ? m_max : m_min; | |
526 | if (value > m_max) | |
527 | value = HasFlag(wxSP_WRAP) ? m_min : m_max; | |
528 | ||
529 | return value; | |
530 | } | |
531 | ||
8cd6a9ad | 532 | void wxSpinCtrlGenericBase::DoSetRange(double min, double max) |
21709999 | 533 | { |
8cd6a9ad VZ |
534 | m_min = min; |
535 | m_max = max; | |
536 | } | |
21709999 | 537 | |
8cd6a9ad VZ |
538 | void wxSpinCtrlGenericBase::DoSetIncrement(double inc) |
539 | { | |
540 | m_increment = inc; | |
541 | } | |
21709999 | 542 | |
8cd6a9ad VZ |
543 | void wxSpinCtrlGenericBase::SetSnapToTicks(bool snap_to_ticks) |
544 | { | |
545 | m_snap_to_ticks = snap_to_ticks; | |
546 | DoSetValue(m_value); | |
21709999 JS |
547 | } |
548 | ||
8cd6a9ad | 549 | void wxSpinCtrlGenericBase::SetSelection(long from, long to) |
21709999 | 550 | { |
9a83f860 | 551 | wxCHECK_RET( m_textCtrl, wxT("invalid call to wxSpinCtrl::SetSelection") ); |
21709999 | 552 | |
8cd6a9ad | 553 | m_textCtrl->SetSelection(from, to); |
21709999 JS |
554 | } |
555 | ||
8cd6a9ad VZ |
556 | #ifndef wxHAS_NATIVE_SPINCTRL |
557 | ||
558 | //----------------------------------------------------------------------------- | |
559 | // wxSpinCtrl | |
560 | //----------------------------------------------------------------------------- | |
561 | ||
8cd6a9ad | 562 | void wxSpinCtrl::DoSendEvent() |
21709999 | 563 | { |
8cd6a9ad VZ |
564 | wxSpinEvent event( wxEVT_COMMAND_SPINCTRL_UPDATED, GetId()); |
565 | event.SetEventObject( this ); | |
566 | event.SetPosition((int)(m_value + 0.5)); // FIXME should be SetValue | |
567 | event.SetString(m_textCtrl->GetValue()); | |
568 | GetEventHandler()->ProcessEvent( event ); | |
569 | } | |
570 | ||
571 | #endif // !wxHAS_NATIVE_SPINCTRL | |
572 | ||
573 | //----------------------------------------------------------------------------- | |
574 | // wxSpinCtrlDouble | |
575 | //----------------------------------------------------------------------------- | |
21709999 | 576 | |
8cd6a9ad VZ |
577 | IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrlDouble, wxSpinCtrlGenericBase) |
578 | ||
579 | void wxSpinCtrlDouble::DoSendEvent() | |
580 | { | |
581 | wxSpinDoubleEvent event( wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED, GetId()); | |
582 | event.SetEventObject( this ); | |
583 | event.SetValue(m_value); | |
584 | event.SetString(m_textCtrl->GetValue()); | |
585 | GetEventHandler()->ProcessEvent( event ); | |
21709999 JS |
586 | } |
587 | ||
8cd6a9ad | 588 | void wxSpinCtrlDouble::SetDigits(unsigned digits) |
739555e3 | 589 | { |
8cd6a9ad | 590 | wxCHECK_RET( digits <= 20, "too many digits for wxSpinCtrlDouble" ); |
739555e3 | 591 | |
9bce7b7b VZ |
592 | if ( digits == m_digits ) |
593 | return; | |
594 | ||
595 | m_digits = digits; | |
596 | ||
8cd6a9ad VZ |
597 | m_format.Printf(wxT("%%0.%ulf"), digits); |
598 | ||
599 | DoSetValue(m_value); | |
739555e3 VZ |
600 | } |
601 | ||
8cd6a9ad VZ |
602 | #endif // wxUSE_SPINBTN |
603 | ||
3379ed37 | 604 | #endif // !wxPort-with-native-spinctrl |
8cd6a9ad VZ |
605 | |
606 | #endif // wxUSE_SPINCTRL |