1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/spinctrl.cpp
3 // Purpose: wxSpinCtrl class implementation for Win32
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999-2005 Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/spinctrl.h"
32 #include "wx/hashmap.h"
33 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
35 #include "wx/textctrl.h"
36 #include "wx/wxcrtvararg.h"
39 #include "wx/msw/private.h"
42 #include "wx/tooltip.h"
43 #endif // wxUSE_TOOLTIPS
45 #include <limits.h> // for INT_MIN
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 BEGIN_EVENT_TABLE(wxSpinCtrl
, wxSpinButton
)
52 EVT_CHAR(wxSpinCtrl::OnChar
)
53 EVT_SET_FOCUS(wxSpinCtrl::OnSetFocus
)
54 EVT_KILL_FOCUS(wxSpinCtrl::OnKillFocus
)
57 #define GetBuddyHwnd() (HWND)(m_hwndBuddy)
59 // ----------------------------------------------------------------------------
61 // ----------------------------------------------------------------------------
63 // the margin between the up-down control and its buddy (can be arbitrary,
64 // choose what you like - or may be decide during run-time depending on the
66 static const int MARGIN_BETWEEN
= 1;
69 // ---------------------------------------------------------------------------
71 // ---------------------------------------------------------------------------
76 // Global hash used to find the spin control corresponding to the given buddy
78 WX_DECLARE_HASH_MAP(HWND
, wxSpinCtrl
*,
79 wxPointerHash
, wxPointerEqual
,
82 SpinForTextCtrl gs_spinForTextCtrl
;
84 } // anonymous namespace
86 // ============================================================================
88 // ============================================================================
90 // ----------------------------------------------------------------------------
91 // wnd proc for the buddy text ctrl
92 // ----------------------------------------------------------------------------
94 LRESULT APIENTRY _EXPORT
wxBuddyTextWndProc(HWND hwnd
,
99 wxSpinCtrl
* const spin
= wxSpinCtrl::GetSpinForTextCtrl(hwnd
);
101 // forward some messages (mostly the key and focus ones) to the spin ctrl
105 // if the focus comes from the spin control itself, don't set it
106 // back to it -- we don't want to go into an infinite loop
107 if ( (WXHWND
)wParam
== spin
->GetHWND() )
117 // we need to forward WM_HELP too to ensure that the context help
118 // associated with wxSpinCtrl is shown when the text control part of it
119 // is clicked with the "?" cursor
124 if ( spin
->MSWHandleMessage(&result
, message
, wParam
, lParam
) )
126 // Do not let the message be processed by the window proc
127 // of the text control if it had been already handled at wx
128 // level, this is consistent with what happens for normal,
129 // non-composite controls.
133 // The control may have been deleted at this point, so check.
134 if ( !::IsWindow(hwnd
) )
140 if ( spin
->HasFlag(wxTE_PROCESS_ENTER
) )
142 long dlgCode
= ::CallWindowProc
144 CASTWNDPROC spin
->GetBuddyWndProc(),
150 dlgCode
|= DLGC_WANTMESSAGE
;
156 return ::CallWindowProc(CASTWNDPROC spin
->GetBuddyWndProc(),
157 hwnd
, message
, wParam
, lParam
);
161 wxSpinCtrl
*wxSpinCtrl::GetSpinForTextCtrl(WXHWND hwndBuddy
)
163 const SpinForTextCtrl::const_iterator
164 it
= gs_spinForTextCtrl
.find(hwndBuddy
);
165 if ( it
== gs_spinForTextCtrl
.end() )
168 wxSpinCtrl
* const spin
= it
->second
;
171 wxASSERT_MSG( spin
->m_hwndBuddy
== hwndBuddy
,
172 wxT("wxSpinCtrl has incorrect buddy HWND!") );
177 // process a WM_COMMAND generated by the buddy text control
178 bool wxSpinCtrl::ProcessTextCommand(WXWORD cmd
, WXWORD
WXUNUSED(id
))
180 if ( (cmd
== EN_CHANGE
) && (!m_blockEvent
))
182 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, GetId());
183 event
.SetEventObject(this);
184 wxString val
= wxGetWindowText(m_hwndBuddy
);
185 event
.SetString(val
);
186 event
.SetInt(GetValue());
187 return HandleWindowEvent(event
);
194 void wxSpinCtrl::OnChar(wxKeyEvent
& event
)
196 switch ( event
.GetKeyCode() )
200 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
201 InitCommandEvent(event
);
202 wxString val
= wxGetWindowText(m_hwndBuddy
);
203 event
.SetString(val
);
204 event
.SetInt(GetValue());
205 if ( HandleWindowEvent(event
) )
211 // always produce navigation event - even if we process TAB
212 // ourselves the fact that we got here means that the user code
213 // decided to skip processing of this TAB - probably to let it
214 // do its default job.
216 wxNavigationKeyEvent eventNav
;
217 eventNav
.SetDirection(!event
.ShiftDown());
218 eventNav
.SetWindowChange(event
.ControlDown());
219 eventNav
.SetEventObject(this);
221 if ( GetParent()->HandleWindowEvent(eventNav
) )
227 // no, we didn't process it
231 void wxSpinCtrl::OnKillFocus(wxFocusEvent
& event
)
233 // ensure that a correct value is shown by the control
238 void wxSpinCtrl::OnSetFocus(wxFocusEvent
& event
)
240 // when we get focus, give it to our buddy window as it needs it more than
242 ::SetFocus((HWND
)m_hwndBuddy
);
247 void wxSpinCtrl::NormalizeValue()
249 const int value
= GetValue();
250 const bool changed
= value
!= m_oldValue
;
252 // notice that we have to call SetValue() even if the value didn't change
253 // because otherwise we could be left with empty buddy control when value
254 // is 0, see comment in SetValue()
259 SendSpinUpdate(value
);
263 // ----------------------------------------------------------------------------
265 // ----------------------------------------------------------------------------
267 bool wxSpinCtrl::Create(wxWindow
*parent
,
269 const wxString
& value
,
273 int min
, int max
, int initial
,
274 const wxString
& name
)
276 m_blockEvent
= false;
278 // this should be in ctor/init function but I don't want to add one to 2.8
279 // to avoid problems with default ctor which can be inlined in the user
280 // code and so might not get this fix without recompilation
281 m_oldValue
= INT_MIN
;
283 // before using DoGetBestSize(), have to set style to let the base class
284 // know whether this is a horizontal or vertical control (we're always
286 style
|= wxSP_VERTICAL
;
288 if ( (style
& wxBORDER_MASK
) == wxBORDER_DEFAULT
)
290 style
|= wxBORDER_SIMPLE
;
292 style
|= wxBORDER_SUNKEN
;
295 SetWindowStyle(style
);
298 WXDWORD msStyle
= MSWGetStyle(GetWindowStyle(), & exStyle
) ;
300 // propagate text alignment style to text ctrl
301 if ( style
& wxALIGN_RIGHT
)
303 else if ( style
& wxALIGN_CENTER
)
304 msStyle
|= ES_CENTER
;
306 // calculate the sizes: the size given is the total size for both controls
307 // and we need to fit them both in the given width (height is the same)
308 wxSize
sizeText(size
), sizeBtn(size
);
309 sizeBtn
.x
= wxSpinButton::DoGetBestSize().x
;
310 if ( sizeText
.x
<= 0 )
312 // DEFAULT_ITEM_WIDTH is the default width for the text control
313 sizeText
.x
= DEFAULT_ITEM_WIDTH
+ MARGIN_BETWEEN
+ sizeBtn
.x
;
316 sizeText
.x
-= sizeBtn
.x
+ MARGIN_BETWEEN
;
317 if ( sizeText
.x
<= 0 )
319 wxLogDebug(wxT("not enough space for wxSpinCtrl!"));
323 posBtn
.x
+= sizeText
.x
+ MARGIN_BETWEEN
;
325 // we must create the text control before the spin button for the purpose
326 // of the dialog navigation: if there is a static text just before the spin
327 // control, activating it by Alt-letter should give focus to the text
328 // control, not the spin and the dialog navigation code will give focus to
329 // the next control (at Windows level), not the one after it
331 // create the text window
333 m_hwndBuddy
= (WXHWND
)::CreateWindowEx
335 exStyle
, // sunken border
336 wxT("EDIT"), // window class
337 NULL
, // no window title
338 msStyle
, // style (will be shown later)
339 pos
.x
, pos
.y
, // position
340 0, 0, // size (will be set later)
341 GetHwndOf(parent
), // parent
342 (HMENU
)-1, // control id
343 wxGetInstance(), // app instance
344 NULL
// unused client data
349 wxLogLastError(wxT("CreateWindow(buddy text window)"));
355 // create the spin button
356 if ( !wxSpinButton::Create(parent
, id
, posBtn
, sizeBtn
, style
, name
) )
361 wxSpinButtonBase::SetRange(min
, max
);
363 // subclass the text ctrl to be able to intercept some events
364 gs_spinForTextCtrl
[GetBuddyHwnd()] = this;
366 m_wndProcBuddy
= (WXFARPROC
)wxSetWindowProc(GetBuddyHwnd(),
369 // set up fonts and colours (This is nomally done in MSWCreateControl)
372 SetFont(GetDefaultAttributes().font
);
374 // set the size of the text window - can do it only now, because we
375 // couldn't call DoGetBestSize() before as font wasn't set
376 if ( sizeText
.y
<= 0 )
379 wxGetCharSize(GetHWND(), &cx
, &cy
, GetFont());
381 sizeText
.y
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
384 SetInitialSize(size
);
386 (void)::ShowWindow(GetBuddyHwnd(), SW_SHOW
);
388 // associate the text window with the spin button
389 (void)::SendMessage(GetHwnd(), UDM_SETBUDDY
, (WPARAM
)m_hwndBuddy
, 0);
393 // Set the range in the native control
396 if ( !value
.empty() )
399 m_oldValue
= (int) wxAtol(value
);
403 SetValue(wxString::Format(wxT("%d"), initial
));
404 m_oldValue
= initial
;
410 wxSpinCtrl::~wxSpinCtrl()
412 // destroy the buddy window because this pointer which wxBuddyTextWndProc
413 // uses will not soon be valid any more
414 ::DestroyWindow( GetBuddyHwnd() );
416 gs_spinForTextCtrl
.erase(GetBuddyHwnd());
419 // ----------------------------------------------------------------------------
420 // wxTextCtrl-like methods
421 // ----------------------------------------------------------------------------
423 void wxSpinCtrl::SetValue(const wxString
& text
)
425 if ( !::SetWindowText(GetBuddyHwnd(), text
.c_str()) )
427 wxLogLastError(wxT("SetWindowText(buddy)"));
431 void wxSpinCtrl::SetValue(int val
)
435 wxSpinButton::SetValue(val
);
437 // normally setting the value of the spin button is enough as it updates
438 // its buddy control automatically ...
439 if ( wxGetWindowText(m_hwndBuddy
).empty() )
441 // ... but sometimes it doesn't, notably when the value is 0 and the
442 // text control is currently empty, the spin button seems to be happy
443 // to leave it like this, while we really want to always show the
444 // current value in the control, so do it manually
445 ::SetWindowText(GetBuddyHwnd(),
446 wxString::Format(wxT("%d"), val
).wx_str());
449 m_oldValue
= GetValue();
451 m_blockEvent
= false;
454 int wxSpinCtrl::GetValue() const
456 wxString val
= wxGetWindowText(m_hwndBuddy
);
459 if ( (wxSscanf(val
, wxT("%ld"), &n
) != 1) )
470 void wxSpinCtrl::SetSelection(long from
, long to
)
472 // if from and to are both -1, it means (in wxWidgets) that all text should
473 // be selected - translate into Windows convention
474 if ( (from
== -1) && (to
== -1) )
479 ::SendMessage(GetBuddyHwnd(), EM_SETSEL
, (WPARAM
)from
, (LPARAM
)to
);
482 // ----------------------------------------------------------------------------
483 // wxSpinButton methods
484 // ----------------------------------------------------------------------------
486 void wxSpinCtrl::SetRange(int minVal
, int maxVal
)
488 wxSpinButton::SetRange(minVal
, maxVal
);
490 // this control is used for numeric entry so restrict the input to numeric
491 // keys only -- but only if we don't need to be able to enter "-" in it as
492 // otherwise this would become impossible
493 const DWORD styleOld
= ::GetWindowLong(GetBuddyHwnd(), GWL_STYLE
);
496 styleNew
= styleOld
& ~ES_NUMBER
;
498 styleNew
= styleOld
| ES_NUMBER
;
500 if ( styleNew
!= styleOld
)
501 ::SetWindowLong(GetBuddyHwnd(), GWL_STYLE
, styleNew
);
504 // ----------------------------------------------------------------------------
505 // forward some methods to subcontrols
506 // ----------------------------------------------------------------------------
508 bool wxSpinCtrl::SetFont(const wxFont
& font
)
510 if ( !wxWindowBase::SetFont(font
) )
516 WXHANDLE hFont
= GetFont().GetResourceHandle();
517 (void)::SendMessage(GetBuddyHwnd(), WM_SETFONT
, (WPARAM
)hFont
, TRUE
);
522 bool wxSpinCtrl::Show(bool show
)
524 if ( !wxControl::Show(show
) )
529 ::ShowWindow(GetBuddyHwnd(), show
? SW_SHOW
: SW_HIDE
);
534 bool wxSpinCtrl::Reparent(wxWindowBase
*newParent
)
536 // Reparenting both the updown control and its buddy does not seem to work:
537 // they continue to be connected somehow, but visually there is no feedback
538 // on the buddy edit control. To avoid this problem, we reparent the buddy
539 // window normally, but we recreate the updown control and reassign its
542 // Get the position before changing the parent as it would be offset after
544 const wxRect rect
= GetRect();
546 if ( !wxWindowBase::Reparent(newParent
) )
549 newParent
->GetChildren().DeleteObject(this);
551 // destroy the old spin button after detaching it from this wxWindow object
552 // (notice that m_hWnd will be reset by UnsubclassWin() so save it first)
553 const HWND hwndOld
= GetHwnd();
555 if ( !::DestroyWindow(hwndOld
) )
557 wxLogLastError(wxT("DestroyWindow"));
560 // create and initialize the new one
561 if ( !wxSpinButton::Create(GetParent(), GetId(),
562 rect
.GetPosition(), rect
.GetSize(),
563 GetWindowStyle(), GetName()) )
566 // reapply our values to wxSpinButton
567 wxSpinButton::SetValue(GetValue());
568 SetRange(m_min
, m_max
);
570 // also set the size again with wxSIZE_ALLOW_MINUS_ONE flag: this is
571 // necessary if our original position used -1 for either x or y
572 SetSize(rect
, wxSIZE_ALLOW_MINUS_ONE
);
574 // associate it with the buddy control again
575 ::SetParent(GetBuddyHwnd(), GetHwndOf(GetParent()));
576 (void)::SendMessage(GetHwnd(), UDM_SETBUDDY
, (WPARAM
)GetBuddyHwnd(), 0);
581 bool wxSpinCtrl::Enable(bool enable
)
583 if ( !wxControl::Enable(enable
) )
588 MSWEnableHWND(GetBuddyHwnd(), enable
);
593 void wxSpinCtrl::SetFocus()
595 ::SetFocus(GetBuddyHwnd());
600 void wxSpinCtrl::DoSetToolTip(wxToolTip
*tip
)
602 wxSpinButton::DoSetToolTip(tip
);
605 tip
->Add(m_hwndBuddy
);
608 #endif // wxUSE_TOOLTIPS
610 // ----------------------------------------------------------------------------
611 // events processing and generation
612 // ----------------------------------------------------------------------------
614 void wxSpinCtrl::SendSpinUpdate(int value
)
616 wxCommandEvent
event(wxEVT_COMMAND_SPINCTRL_UPDATED
, GetId());
617 event
.SetEventObject(this);
620 (void)HandleWindowEvent(event
);
625 bool wxSpinCtrl::MSWOnScroll(int WXUNUSED(orientation
), WXWORD wParam
,
626 WXWORD pos
, WXHWND control
)
628 wxCHECK_MSG( control
, false, wxT("scrolling what?") );
630 if ( wParam
!= SB_THUMBPOSITION
)
632 // probable SB_ENDSCROLL - we don't react to it
636 int new_value
= (short) pos
;
637 if (m_oldValue
!= new_value
)
638 SendSpinUpdate( new_value
);
643 bool wxSpinCtrl::MSWOnNotify(int WXUNUSED(idCtrl
), WXLPARAM lParam
, WXLPARAM
*result
)
645 NM_UPDOWN
*lpnmud
= (NM_UPDOWN
*)lParam
;
647 if (lpnmud
->hdr
.hwndFrom
!= GetHwnd()) // make sure it is the right control
650 *result
= 0; // never reject UP and DOWN events
656 // ----------------------------------------------------------------------------
658 // ----------------------------------------------------------------------------
660 wxSize
wxSpinCtrl::DoGetBestSize() const
662 wxSize sizeBtn
= wxSpinButton::DoGetBestSize();
663 sizeBtn
.x
+= DEFAULT_ITEM_WIDTH
+ MARGIN_BETWEEN
;
666 wxGetCharSize(GetHWND(), NULL
, &y
, GetFont());
667 y
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(y
);
669 // JACS: we should always use the height calculated
670 // from above, because otherwise we'll get a spin control
671 // that's too big. So never use the height calculated
672 // from wxSpinButton::DoGetBestSize().
674 // if ( sizeBtn.y < y )
676 // make the text tall enough
683 void wxSpinCtrl::DoMoveWindow(int x
, int y
, int width
, int height
)
685 int widthBtn
= wxSpinButton::DoGetBestSize().x
;
686 int widthText
= width
- widthBtn
- MARGIN_BETWEEN
;
687 if ( widthText
<= 0 )
689 wxLogDebug(wxT("not enough space for wxSpinCtrl!"));
692 // 1) The buddy window
693 DoMoveSibling(m_hwndBuddy
, x
, y
, widthText
, height
);
695 // 2) The button window
696 x
+= widthText
+ MARGIN_BETWEEN
;
697 wxSpinButton::DoMoveWindow(x
, y
, widthBtn
, height
);
700 // get total size of the control
701 void wxSpinCtrl::DoGetSize(int *x
, int *y
) const
703 RECT spinrect
, textrect
, ctrlrect
;
704 GetWindowRect(GetHwnd(), &spinrect
);
705 GetWindowRect(GetBuddyHwnd(), &textrect
);
706 UnionRect(&ctrlrect
,&textrect
, &spinrect
);
709 *x
= ctrlrect
.right
- ctrlrect
.left
;
711 *y
= ctrlrect
.bottom
- ctrlrect
.top
;
714 void wxSpinCtrl::DoGetClientSize(int *x
, int *y
) const
716 RECT spinrect
= wxGetClientRect(GetHwnd());
717 RECT textrect
= wxGetClientRect(GetBuddyHwnd());
719 UnionRect(&ctrlrect
,&textrect
, &spinrect
);
722 *x
= ctrlrect
.right
- ctrlrect
.left
;
724 *y
= ctrlrect
.bottom
- ctrlrect
.top
;
727 void wxSpinCtrl::DoGetPosition(int *x
, int *y
) const
729 // hack: pretend that our HWND is the text control just for a moment
730 WXHWND hWnd
= GetHWND();
731 wxConstCast(this, wxSpinCtrl
)->m_hWnd
= m_hwndBuddy
;
733 wxSpinButton::DoGetPosition(x
, y
);
735 wxConstCast(this, wxSpinCtrl
)->m_hWnd
= hWnd
;
738 #endif // wxUSE_SPINCTRL