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"
33 #include "wx/textctrl.h"
36 #include "wx/msw/private.h"
37 #include "wx/msw/wrapcctl.h"
40 #include "wx/tooltip.h"
41 #endif // wxUSE_TOOLTIPS
43 #include <limits.h> // for INT_MIN
45 // ----------------------------------------------------------------------------
47 // ----------------------------------------------------------------------------
49 #if wxUSE_EXTENDED_RTTI
50 WX_DEFINE_FLAGS( wxSpinCtrlStyle
)
52 wxBEGIN_FLAGS( wxSpinCtrlStyle
)
53 // new style border flags, we put them first to
54 // use them for streaming out
55 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
56 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
57 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
58 wxFLAGS_MEMBER(wxBORDER_RAISED
)
59 wxFLAGS_MEMBER(wxBORDER_STATIC
)
60 wxFLAGS_MEMBER(wxBORDER_NONE
)
62 // old style border flags
63 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
64 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
65 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
66 wxFLAGS_MEMBER(wxRAISED_BORDER
)
67 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
68 wxFLAGS_MEMBER(wxBORDER
)
70 // standard window styles
71 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
72 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
73 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
74 wxFLAGS_MEMBER(wxWANTS_CHARS
)
75 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
76 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
77 wxFLAGS_MEMBER(wxVSCROLL
)
78 wxFLAGS_MEMBER(wxHSCROLL
)
80 wxFLAGS_MEMBER(wxSP_HORIZONTAL
)
81 wxFLAGS_MEMBER(wxSP_VERTICAL
)
82 wxFLAGS_MEMBER(wxSP_ARROW_KEYS
)
83 wxFLAGS_MEMBER(wxSP_WRAP
)
85 wxEND_FLAGS( wxSpinCtrlStyle
)
87 IMPLEMENT_DYNAMIC_CLASS_XTI(wxSpinCtrl
, wxControl
,"wx/spinbut.h")
89 wxBEGIN_PROPERTIES_TABLE(wxSpinCtrl
)
90 wxEVENT_RANGE_PROPERTY( Spin
, wxEVT_SCROLL_TOP
, wxEVT_SCROLL_ENDSCROLL
, wxSpinEvent
)
91 wxEVENT_PROPERTY( Updated
, wxEVT_COMMAND_SPINCTRL_UPDATED
, wxCommandEvent
)
92 wxEVENT_PROPERTY( TextUpdated
, wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
)
93 wxEVENT_PROPERTY( TextEnter
, wxEVT_COMMAND_TEXT_ENTER
, wxCommandEvent
)
95 wxPROPERTY( ValueString
, wxString
, SetValue
, GetValue
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) ;
96 wxPROPERTY( Value
, int , SetValue
, GetValue
, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
97 wxPROPERTY( Min
, int , SetMin
, GetMin
, 0, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
98 wxPROPERTY( Max
, int , SetMax
, GetMax
, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
99 wxPROPERTY_FLAGS( WindowStyle
, wxSpinCtrlStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
102 style wxSP_ARROW_KEYS
104 wxEND_PROPERTIES_TABLE()
106 wxBEGIN_HANDLERS_TABLE(wxSpinCtrl
)
107 wxEND_HANDLERS_TABLE()
109 wxCONSTRUCTOR_6( wxSpinCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, ValueString
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
111 IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl
, wxControl
)
115 BEGIN_EVENT_TABLE(wxSpinCtrl
, wxSpinButton
)
116 EVT_CHAR(wxSpinCtrl::OnChar
)
118 EVT_SET_FOCUS(wxSpinCtrl::OnSetFocus
)
119 EVT_KILL_FOCUS(wxSpinCtrl::OnKillFocus
)
120 EVT_SPIN(wxID_ANY
, wxSpinCtrl::OnSpinChange
)
123 #define GetBuddyHwnd() (HWND)(m_hwndBuddy)
125 // ----------------------------------------------------------------------------
127 // ----------------------------------------------------------------------------
129 // the margin between the up-down control and its buddy (can be arbitrary,
130 // choose what you like - or may be decide during run-time depending on the
132 static const int MARGIN_BETWEEN
= 1;
134 // ============================================================================
136 // ============================================================================
138 wxArraySpins
wxSpinCtrl::ms_allSpins
;
140 // ----------------------------------------------------------------------------
141 // wnd proc for the buddy text ctrl
142 // ----------------------------------------------------------------------------
144 LRESULT APIENTRY _EXPORT
wxBuddyTextWndProc(HWND hwnd
,
149 wxSpinCtrl
*spin
= (wxSpinCtrl
*)wxGetWindowUserData(hwnd
);
151 // forward some messages (the key and focus ones only so far) to
156 // if the focus comes from the spin control itself, don't set it
157 // back to it -- we don't want to go into an infinite loop
158 if ( (WXHWND
)wParam
== spin
->GetHWND() )
167 spin
->MSWWindowProc(message
, wParam
, lParam
);
169 // The control may have been deleted at this point, so check.
170 if ( !::IsWindow(hwnd
) || wxGetWindowUserData(hwnd
) != spin
)
175 // we want to get WXK_RETURN in order to generate the event for it
176 return DLGC_WANTCHARS
;
179 return ::CallWindowProc(CASTWNDPROC spin
->GetBuddyWndProc(),
180 hwnd
, message
, wParam
, lParam
);
184 wxSpinCtrl
*wxSpinCtrl::GetSpinForTextCtrl(WXHWND hwndBuddy
)
186 wxSpinCtrl
*spin
= (wxSpinCtrl
*)wxGetWindowUserData((HWND
)hwndBuddy
);
188 int i
= ms_allSpins
.Index(spin
);
190 if ( i
== wxNOT_FOUND
)
194 wxASSERT_MSG( spin
->m_hwndBuddy
== hwndBuddy
,
195 _T("wxSpinCtrl has incorrect buddy HWND!") );
200 // process a WM_COMMAND generated by the buddy text control
201 bool wxSpinCtrl::ProcessTextCommand(WXWORD cmd
, WXWORD
WXUNUSED(id
))
207 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, GetId());
208 event
.SetEventObject(this);
209 wxString val
= wxGetWindowText(m_hwndBuddy
);
210 event
.SetString(val
);
211 event
.SetInt(GetValue());
212 return GetEventHandler()->ProcessEvent(event
);
217 wxFocusEvent
event(cmd
== EN_KILLFOCUS
? wxEVT_KILL_FOCUS
220 event
.SetEventObject( this );
221 return GetEventHandler()->ProcessEvent(event
);
231 void wxSpinCtrl::OnChar(wxKeyEvent
& event
)
233 switch ( event
.GetKeyCode() )
237 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
238 InitCommandEvent(event
);
239 wxString val
= wxGetWindowText(m_hwndBuddy
);
240 event
.SetString(val
);
241 event
.SetInt(GetValue());
242 if ( GetEventHandler()->ProcessEvent(event
) )
248 // always produce navigation event - even if we process TAB
249 // ourselves the fact that we got here means that the user code
250 // decided to skip processing of this TAB - probably to let it
251 // do its default job.
253 wxNavigationKeyEvent eventNav
;
254 eventNav
.SetDirection(!event
.ShiftDown());
255 eventNav
.SetWindowChange(event
.ControlDown());
256 eventNav
.SetEventObject(this);
258 if ( GetParent()->GetEventHandler()->ProcessEvent(eventNav
) )
264 // no, we didn't process it
268 void wxSpinCtrl::OnKillFocus(wxFocusEvent
& event
)
270 // ensure that the value is shown correctly
271 SetValue(GetValue()) ;
275 void wxSpinCtrl::OnSetFocus(wxFocusEvent
& event
)
277 // when we get focus, give it to our buddy window as it needs it more than
279 ::SetFocus((HWND
)m_hwndBuddy
);
284 // ----------------------------------------------------------------------------
286 // ----------------------------------------------------------------------------
288 bool wxSpinCtrl::Create(wxWindow
*parent
,
290 const wxString
& value
,
294 int min
, int max
, int initial
,
295 const wxString
& name
)
297 // before using DoGetBestSize(), have to set style to let the base class
298 // know whether this is a horizontal or vertical control (we're always
300 style
|= wxSP_VERTICAL
;
302 if ( (style
& wxBORDER_MASK
) == wxBORDER_DEFAULT
)
304 style
|= wxBORDER_SIMPLE
;
306 style
|= wxBORDER_SUNKEN
;
309 SetWindowStyle(style
);
312 WXDWORD msStyle
= MSWGetStyle(GetWindowStyle(), & exStyle
) ;
314 // calculate the sizes: the size given is the toal size for both controls
315 // and we need to fit them both in the given width (height is the same)
316 wxSize
sizeText(size
), sizeBtn(size
);
317 sizeBtn
.x
= wxSpinButton::DoGetBestSize().x
;
318 if ( sizeText
.x
<= 0 )
320 // DEFAULT_ITEM_WIDTH is the default width for the text control
321 sizeText
.x
= DEFAULT_ITEM_WIDTH
+ MARGIN_BETWEEN
+ sizeBtn
.x
;
324 sizeText
.x
-= sizeBtn
.x
+ MARGIN_BETWEEN
;
325 if ( sizeText
.x
<= 0 )
327 wxLogDebug(_T("not enough space for wxSpinCtrl!"));
331 posBtn
.x
+= sizeText
.x
+ MARGIN_BETWEEN
;
333 // we must create the text control before the spin button for the purpose
334 // of the dialog navigation: if there is a static text just before the spin
335 // control, activating it by Alt-letter should give focus to the text
336 // control, not the spin and the dialog navigation code will give focus to
337 // the next control (at Windows level), not the one after it
339 // create the text window
341 m_hwndBuddy
= (WXHWND
)::CreateWindowEx
343 exStyle
, // sunken border
344 _T("EDIT"), // window class
345 NULL
, // no window title
346 msStyle
, // style (will be shown later)
347 pos
.x
, pos
.y
, // position
348 0, 0, // size (will be set later)
349 GetHwndOf(parent
), // parent
350 (HMENU
)-1, // control id
351 wxGetInstance(), // app instance
352 NULL
// unused client data
357 wxLogLastError(wxT("CreateWindow(buddy text window)"));
363 // create the spin button
364 if ( !wxSpinButton::Create(parent
, id
, posBtn
, sizeBtn
, style
, name
) )
372 // subclass the text ctrl to be able to intercept some events
373 wxSetWindowUserData(GetBuddyHwnd(), this);
374 m_wndProcBuddy
= (WXFARPROC
)wxSetWindowProc(GetBuddyHwnd(),
377 // set up fonts and colours (This is nomally done in MSWCreateControl)
380 SetFont(GetDefaultAttributes().font
);
382 // set the size of the text window - can do it only now, because we
383 // couldn't call DoGetBestSize() before as font wasn't set
384 if ( sizeText
.y
<= 0 )
387 wxGetCharSize(GetHWND(), &cx
, &cy
, GetFont());
389 sizeText
.y
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
394 (void)::ShowWindow(GetBuddyHwnd(), SW_SHOW
);
396 // associate the text window with the spin button
397 (void)::SendMessage(GetHwnd(), UDM_SETBUDDY
, (WPARAM
)m_hwndBuddy
, 0);
399 if ( !value
.empty() )
404 // do it after finishing with m_hwndBuddy creation to avoid generating
405 // initial wxEVT_COMMAND_TEXT_UPDATED message
406 ms_allSpins
.Add(this);
411 wxSpinCtrl::~wxSpinCtrl()
413 ms_allSpins
.Remove(this);
415 // This removes spurious memory leak reporting
416 if (ms_allSpins
.GetCount() == 0)
419 // destroy the buddy window because this pointer which wxBuddyTextWndProc
420 // uses will not soon be valid any more
421 ::DestroyWindow(GetBuddyHwnd());
424 // ----------------------------------------------------------------------------
425 // wxTextCtrl-like methods
426 // ----------------------------------------------------------------------------
428 void wxSpinCtrl::SetValue(const wxString
& text
)
430 if ( !::SetWindowText(GetBuddyHwnd(), text
.c_str()) )
432 wxLogLastError(wxT("SetWindowText(buddy)"));
436 void wxSpinCtrl::SetValue(int val
)
438 wxSpinButton::SetValue(val
);
440 // normally setting the value of the spin button is enough as it updates
441 // its buddy control automatically ...
442 if ( wxGetWindowText(m_hwndBuddy
).empty() )
444 // ... but sometimes it doesn't, notably when the value is 0 and the
445 // text control is currently empty, the spin button seems to be happy
446 // to leave it like this, while we really want to always show the
447 // current value in the control, so do it manually
448 ::SetWindowText(GetBuddyHwnd(), wxString::Format(_T("%d"), val
));
452 int wxSpinCtrl::GetValue() const
454 wxString val
= wxGetWindowText(m_hwndBuddy
);
457 if ( (wxSscanf(val
, wxT("%ld"), &n
) != 1) )
468 void wxSpinCtrl::SetSelection(long from
, long to
)
470 // if from and to are both -1, it means (in wxWidgets) that all text should
471 // be selected - translate into Windows convention
472 if ( (from
== -1) && (to
== -1) )
477 ::SendMessage(GetBuddyHwnd(), EM_SETSEL
, (WPARAM
)from
, (LPARAM
)to
);
480 // ----------------------------------------------------------------------------
481 // forward some methods to subcontrols
482 // ----------------------------------------------------------------------------
484 bool wxSpinCtrl::SetFont(const wxFont
& font
)
486 if ( !wxWindowBase::SetFont(font
) )
492 WXHANDLE hFont
= GetFont().GetResourceHandle();
493 (void)::SendMessage(GetBuddyHwnd(), WM_SETFONT
, (WPARAM
)hFont
, TRUE
);
498 bool wxSpinCtrl::Show(bool show
)
500 if ( !wxControl::Show(show
) )
505 ::ShowWindow(GetBuddyHwnd(), show
? SW_SHOW
: SW_HIDE
);
510 bool wxSpinCtrl::Enable(bool enable
)
512 if ( !wxControl::Enable(enable
) )
517 ::EnableWindow(GetBuddyHwnd(), enable
);
522 void wxSpinCtrl::SetFocus()
524 ::SetFocus(GetBuddyHwnd());
529 void wxSpinCtrl::DoSetToolTip(wxToolTip
*tip
)
531 wxSpinButton::DoSetToolTip(tip
);
534 tip
->Add(m_hwndBuddy
);
537 #endif // wxUSE_TOOLTIPS
539 // ----------------------------------------------------------------------------
541 // ----------------------------------------------------------------------------
543 void wxSpinCtrl::OnSpinChange(wxSpinEvent
& eventSpin
)
545 wxCommandEvent
event(wxEVT_COMMAND_SPINCTRL_UPDATED
, GetId());
546 event
.SetEventObject(this);
547 event
.SetInt(eventSpin
.GetPosition());
549 (void)GetEventHandler()->ProcessEvent(event
);
551 if ( eventSpin
.GetSkipped() )
557 // ----------------------------------------------------------------------------
559 // ----------------------------------------------------------------------------
561 wxSize
wxSpinCtrl::DoGetBestSize() const
563 wxSize sizeBtn
= wxSpinButton::DoGetBestSize();
564 sizeBtn
.x
+= DEFAULT_ITEM_WIDTH
+ MARGIN_BETWEEN
;
567 wxGetCharSize(GetHWND(), NULL
, &y
, GetFont());
568 y
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(y
);
570 // JACS: we should always use the height calculated
571 // from above, because otherwise we'll get a spin control
572 // that's too big. So never use the height calculated
573 // from wxSpinButton::DoGetBestSize().
575 // if ( sizeBtn.y < y )
577 // make the text tall enough
584 void wxSpinCtrl::DoMoveWindow(int x
, int y
, int width
, int height
)
586 int widthBtn
= wxSpinButton::DoGetBestSize().x
;
587 int widthText
= width
- widthBtn
- MARGIN_BETWEEN
;
588 if ( widthText
<= 0 )
590 wxLogDebug(_T("not enough space for wxSpinCtrl!"));
593 // 1) The buddy window
594 DoMoveSibling(m_hwndBuddy
, x
, y
, widthText
, height
);
596 // 2) The button window
597 x
+= widthText
+ MARGIN_BETWEEN
;
598 wxSpinButton::DoMoveWindow(x
, y
, widthBtn
, height
);
601 // get total size of the control
602 void wxSpinCtrl::DoGetSize(int *x
, int *y
) const
604 RECT spinrect
, textrect
, ctrlrect
;
605 GetWindowRect(GetHwnd(), &spinrect
);
606 GetWindowRect(GetBuddyHwnd(), &textrect
);
607 UnionRect(&ctrlrect
,&textrect
, &spinrect
);
610 *x
= ctrlrect
.right
- ctrlrect
.left
;
612 *y
= ctrlrect
.bottom
- ctrlrect
.top
;
615 void wxSpinCtrl::DoGetPosition(int *x
, int *y
) const
617 // hack: pretend that our HWND is the text control just for a moment
618 WXHWND hWnd
= GetHWND();
619 wxConstCast(this, wxSpinCtrl
)->m_hWnd
= m_hwndBuddy
;
621 wxSpinButton::DoGetPosition(x
, y
);
623 wxConstCast(this, wxSpinCtrl
)->m_hWnd
= hWnd
;
626 #endif // wxUSE_SPINCTRL