]>
Commit | Line | Data |
---|---|---|
b782f2e0 | 1 | ///////////////////////////////////////////////////////////////////////////// |
623d5f80 | 2 | // Name: src/msw/spinctrl.cpp |
b782f2e0 VZ |
3 | // Purpose: wxSpinCtrl class implementation for Win32 |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 22.07.99 | |
7 | // RCS-ID: $Id$ | |
74124ea9 | 8 | // Copyright: (c) 1999-2005 Vadim Zeitlin |
65571936 | 9 | // Licence: wxWindows licence |
b782f2e0 VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
b782f2e0 VZ |
16 | // ---------------------------------------------------------------------------- |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // for compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
0e528b99 JS |
27 | #if wxUSE_SPINCTRL |
28 | ||
b782f2e0 | 29 | #include "wx/spinctrl.h" |
623d5f80 WS |
30 | |
31 | #ifndef WX_PRECOMP | |
57bd4c60 | 32 | #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly" |
623d5f80 WS |
33 | #include "wx/event.h" |
34 | #include "wx/textctrl.h" | |
193d0c93 | 35 | #include "wx/wxcrtvararg.h" |
623d5f80 WS |
36 | #endif |
37 | ||
b782f2e0 VZ |
38 | #include "wx/msw/private.h" |
39 | ||
74124ea9 VZ |
40 | #if wxUSE_TOOLTIPS |
41 | #include "wx/tooltip.h" | |
42 | #endif // wxUSE_TOOLTIPS | |
b782f2e0 | 43 | |
678cd6de VZ |
44 | #include <limits.h> // for INT_MIN |
45 | ||
b782f2e0 VZ |
46 | // ---------------------------------------------------------------------------- |
47 | // macros | |
48 | // ---------------------------------------------------------------------------- | |
49 | ||
f0a126fe | 50 | #if wxUSE_EXTENDED_RTTI |
bc9fb572 JS |
51 | WX_DEFINE_FLAGS( wxSpinCtrlStyle ) |
52 | ||
3ff066a4 | 53 | wxBEGIN_FLAGS( wxSpinCtrlStyle ) |
bc9fb572 JS |
54 | // new style border flags, we put them first to |
55 | // use them for streaming out | |
3ff066a4 SC |
56 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) |
57 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
58 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
59 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
60 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
61 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
57f4f925 | 62 | |
bc9fb572 | 63 | // old style border flags |
3ff066a4 SC |
64 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) |
65 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
66 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
67 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
68 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
cb0afb26 | 69 | wxFLAGS_MEMBER(wxBORDER) |
bc9fb572 JS |
70 | |
71 | // standard window styles | |
3ff066a4 SC |
72 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
73 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
74 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
75 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
cb0afb26 | 76 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) |
3ff066a4 SC |
77 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) |
78 | wxFLAGS_MEMBER(wxVSCROLL) | |
79 | wxFLAGS_MEMBER(wxHSCROLL) | |
80 | ||
81 | wxFLAGS_MEMBER(wxSP_HORIZONTAL) | |
82 | wxFLAGS_MEMBER(wxSP_VERTICAL) | |
83 | wxFLAGS_MEMBER(wxSP_ARROW_KEYS) | |
84 | wxFLAGS_MEMBER(wxSP_WRAP) | |
85 | ||
86 | wxEND_FLAGS( wxSpinCtrlStyle ) | |
bc9fb572 | 87 | |
51741307 | 88 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxSpinCtrl, wxControl,"wx/spinbut.h") |
9750fc42 | 89 | |
3ff066a4 | 90 | wxBEGIN_PROPERTIES_TABLE(wxSpinCtrl) |
6f45066b | 91 | wxEVENT_RANGE_PROPERTY( Spin , wxEVT_SCROLL_TOP , wxEVT_SCROLL_CHANGED , wxSpinEvent ) |
3ff066a4 | 92 | wxEVENT_PROPERTY( Updated , wxEVT_COMMAND_SPINCTRL_UPDATED , wxCommandEvent ) |
57f4f925 | 93 | wxEVENT_PROPERTY( TextUpdated , wxEVT_COMMAND_TEXT_UPDATED , wxCommandEvent ) |
3ff066a4 SC |
94 | wxEVENT_PROPERTY( TextEnter , wxEVT_COMMAND_TEXT_ENTER , wxCommandEvent ) |
95 | ||
af498247 | 96 | wxPROPERTY( ValueString , wxString , SetValue , GetValue , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) ; |
57f4f925 WS |
97 | wxPROPERTY( Value , int , SetValue, GetValue, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) |
98 | wxPROPERTY( Min , int , SetMin, GetMin, 0, 0 /*flags*/ , wxT("Helpstring") , wxT("group") ) | |
99 | wxPROPERTY( Max , int , SetMax, GetMax, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) | |
af498247 | 100 | wxPROPERTY_FLAGS( WindowStyle , wxSpinCtrlStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style |
066f1b7a | 101 | /* |
57f4f925 WS |
102 | TODO PROPERTIES |
103 | style wxSP_ARROW_KEYS | |
066f1b7a | 104 | */ |
3ff066a4 | 105 | wxEND_PROPERTIES_TABLE() |
51741307 | 106 | |
3ff066a4 SC |
107 | wxBEGIN_HANDLERS_TABLE(wxSpinCtrl) |
108 | wxEND_HANDLERS_TABLE() | |
51741307 | 109 | |
57f4f925 | 110 | wxCONSTRUCTOR_6( wxSpinCtrl , wxWindow* , Parent , wxWindowID , Id , wxString , ValueString , wxPoint , Position , wxSize , Size , long , WindowStyle ) |
51741307 SC |
111 | #else |
112 | IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl, wxControl) | |
113 | #endif | |
066f1b7a | 114 | |
9750fc42 | 115 | BEGIN_EVENT_TABLE(wxSpinCtrl, wxSpinButton) |
e3582f7f | 116 | EVT_CHAR(wxSpinCtrl::OnChar) |
c5c04fab | 117 | EVT_SET_FOCUS(wxSpinCtrl::OnSetFocus) |
4a528443 | 118 | EVT_KILL_FOCUS(wxSpinCtrl::OnKillFocus) |
9750fc42 | 119 | END_EVENT_TABLE() |
b782f2e0 | 120 | |
6fe19057 VZ |
121 | #define GetBuddyHwnd() (HWND)(m_hwndBuddy) |
122 | ||
b782f2e0 VZ |
123 | // ---------------------------------------------------------------------------- |
124 | // constants | |
125 | // ---------------------------------------------------------------------------- | |
126 | ||
baccb514 VZ |
127 | // the margin between the up-down control and its buddy (can be arbitrary, |
128 | // choose what you like - or may be decide during run-time depending on the | |
129 | // font size?) | |
130 | static const int MARGIN_BETWEEN = 1; | |
b782f2e0 VZ |
131 | |
132 | // ============================================================================ | |
133 | // implementation | |
134 | // ============================================================================ | |
135 | ||
6fe19057 VZ |
136 | wxArraySpins wxSpinCtrl::ms_allSpins; |
137 | ||
f6bcfd97 BP |
138 | // ---------------------------------------------------------------------------- |
139 | // wnd proc for the buddy text ctrl | |
140 | // ---------------------------------------------------------------------------- | |
141 | ||
142 | LRESULT APIENTRY _EXPORT wxBuddyTextWndProc(HWND hwnd, | |
143 | UINT message, | |
144 | WPARAM wParam, | |
145 | LPARAM lParam) | |
146 | { | |
975b6bcf | 147 | wxSpinCtrl *spin = (wxSpinCtrl *)wxGetWindowUserData(hwnd); |
f6bcfd97 | 148 | |
5a0b1008 | 149 | // forward some messages (mostly the key and focus ones) to the spin ctrl |
f6bcfd97 BP |
150 | switch ( message ) |
151 | { | |
93c4157c | 152 | case WM_SETFOCUS: |
c5c04fab VZ |
153 | // if the focus comes from the spin control itself, don't set it |
154 | // back to it -- we don't want to go into an infinite loop | |
c140b7e7 | 155 | if ( (WXHWND)wParam == spin->GetHWND() ) |
c5c04fab VZ |
156 | break; |
157 | //else: fall through | |
158 | ||
93c4157c | 159 | case WM_KILLFOCUS: |
f6bcfd97 BP |
160 | case WM_CHAR: |
161 | case WM_DEADCHAR: | |
162 | case WM_KEYUP: | |
163 | case WM_KEYDOWN: | |
5a0b1008 VZ |
164 | #ifdef WM_HELP |
165 | // we need to forward WM_HELP too to ensure that the context help | |
166 | // associated with wxSpinCtrl is shown when the text control part of it | |
167 | // is clicked with the "?" cursor | |
168 | case WM_HELP: | |
169 | #endif | |
f6bcfd97 | 170 | spin->MSWWindowProc(message, wParam, lParam); |
e3582f7f JS |
171 | |
172 | // The control may have been deleted at this point, so check. | |
975b6bcf | 173 | if ( !::IsWindow(hwnd) || wxGetWindowUserData(hwnd) != spin ) |
e3582f7f | 174 | return 0; |
f6bcfd97 | 175 | break; |
350ba193 VZ |
176 | |
177 | case WM_GETDLGCODE: | |
242ec2f7 VZ |
178 | if ( spin->HasFlag(wxTE_PROCESS_ENTER) ) |
179 | { | |
180 | long dlgCode = ::CallWindowProc | |
181 | ( | |
182 | CASTWNDPROC spin->GetBuddyWndProc(), | |
183 | hwnd, | |
184 | message, | |
185 | wParam, | |
186 | lParam | |
187 | ); | |
188 | dlgCode |= DLGC_WANTMESSAGE; | |
189 | return dlgCode; | |
190 | } | |
191 | break; | |
f6bcfd97 | 192 | } |
350ba193 | 193 | |
f6bcfd97 BP |
194 | return ::CallWindowProc(CASTWNDPROC spin->GetBuddyWndProc(), |
195 | hwnd, message, wParam, lParam); | |
196 | } | |
197 | ||
6fe19057 VZ |
198 | /* static */ |
199 | wxSpinCtrl *wxSpinCtrl::GetSpinForTextCtrl(WXHWND hwndBuddy) | |
200 | { | |
975b6bcf | 201 | wxSpinCtrl *spin = (wxSpinCtrl *)wxGetWindowUserData((HWND)hwndBuddy); |
6fe19057 VZ |
202 | |
203 | int i = ms_allSpins.Index(spin); | |
204 | ||
205 | if ( i == wxNOT_FOUND ) | |
206 | return NULL; | |
207 | ||
208 | // sanity check | |
209 | wxASSERT_MSG( spin->m_hwndBuddy == hwndBuddy, | |
9a83f860 | 210 | wxT("wxSpinCtrl has incorrect buddy HWND!") ); |
6fe19057 VZ |
211 | |
212 | return spin; | |
213 | } | |
214 | ||
215 | // process a WM_COMMAND generated by the buddy text control | |
216 | bool wxSpinCtrl::ProcessTextCommand(WXWORD cmd, WXWORD WXUNUSED(id)) | |
217 | { | |
ea6cbf48 | 218 | if ( (cmd == EN_CHANGE) && (!m_blockEvent )) |
6fe19057 | 219 | { |
0ca3c231 VZ |
220 | wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, GetId()); |
221 | event.SetEventObject(this); | |
222 | wxString val = wxGetWindowText(m_hwndBuddy); | |
223 | event.SetString(val); | |
224 | event.SetInt(GetValue()); | |
937013e0 | 225 | return HandleWindowEvent(event); |
6fe19057 VZ |
226 | } |
227 | ||
228 | // not processed | |
57f4f925 | 229 | return false; |
6fe19057 VZ |
230 | } |
231 | ||
e3582f7f JS |
232 | void wxSpinCtrl::OnChar(wxKeyEvent& event) |
233 | { | |
77e00fe9 | 234 | switch ( event.GetKeyCode() ) |
e3582f7f JS |
235 | { |
236 | case WXK_RETURN: | |
237 | { | |
238 | wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId); | |
239 | InitCommandEvent(event); | |
240 | wxString val = wxGetWindowText(m_hwndBuddy); | |
241 | event.SetString(val); | |
242 | event.SetInt(GetValue()); | |
937013e0 | 243 | if ( HandleWindowEvent(event) ) |
e3582f7f JS |
244 | return; |
245 | break; | |
246 | } | |
247 | ||
248 | case WXK_TAB: | |
249 | // always produce navigation event - even if we process TAB | |
250 | // ourselves the fact that we got here means that the user code | |
251 | // decided to skip processing of this TAB - probably to let it | |
252 | // do its default job. | |
253 | { | |
254 | wxNavigationKeyEvent eventNav; | |
255 | eventNav.SetDirection(!event.ShiftDown()); | |
256 | eventNav.SetWindowChange(event.ControlDown()); | |
257 | eventNav.SetEventObject(this); | |
258 | ||
937013e0 | 259 | if ( GetParent()->HandleWindowEvent(eventNav) ) |
e3582f7f JS |
260 | return; |
261 | } | |
262 | break; | |
263 | } | |
264 | ||
265 | // no, we didn't process it | |
266 | event.Skip(); | |
267 | } | |
268 | ||
4a528443 JS |
269 | void wxSpinCtrl::OnKillFocus(wxFocusEvent& event) |
270 | { | |
5ec60151 VZ |
271 | // ensure that a correct value is shown by the control |
272 | NormalizeValue(); | |
4a528443 JS |
273 | event.Skip(); |
274 | } | |
275 | ||
c5c04fab VZ |
276 | void wxSpinCtrl::OnSetFocus(wxFocusEvent& event) |
277 | { | |
278 | // when we get focus, give it to our buddy window as it needs it more than | |
279 | // we do | |
280 | ::SetFocus((HWND)m_hwndBuddy); | |
281 | ||
282 | event.Skip(); | |
283 | } | |
284 | ||
1e8dba5e RR |
285 | void wxSpinCtrl::NormalizeValue() |
286 | { | |
e816f5c7 | 287 | const int value = GetValue(); |
d40e9e06 | 288 | const bool changed = value != m_oldValue; |
e816f5c7 | 289 | |
b6d83018 VZ |
290 | // notice that we have to call SetValue() even if the value didn't change |
291 | // because otherwise we could be left with empty buddy control when value | |
292 | // is 0, see comment in SetValue() | |
e816f5c7 VZ |
293 | SetValue(value); |
294 | ||
b6d83018 VZ |
295 | if ( changed ) |
296 | { | |
d40e9e06 | 297 | SendSpinUpdate(value); |
b6d83018 | 298 | } |
1e8dba5e RR |
299 | } |
300 | ||
b782f2e0 VZ |
301 | // ---------------------------------------------------------------------------- |
302 | // construction | |
303 | // ---------------------------------------------------------------------------- | |
304 | ||
305 | bool wxSpinCtrl::Create(wxWindow *parent, | |
306 | wxWindowID id, | |
678cd6de | 307 | const wxString& value, |
b782f2e0 VZ |
308 | const wxPoint& pos, |
309 | const wxSize& size, | |
310 | long style, | |
311 | int min, int max, int initial, | |
312 | const wxString& name) | |
313 | { | |
ea6cbf48 RR |
314 | m_blockEvent = false; |
315 | ||
d40e9e06 VZ |
316 | // this should be in ctor/init function but I don't want to add one to 2.8 |
317 | // to avoid problems with default ctor which can be inlined in the user | |
318 | // code and so might not get this fix without recompilation | |
319 | m_oldValue = INT_MIN; | |
320 | ||
b782f2e0 VZ |
321 | // before using DoGetBestSize(), have to set style to let the base class |
322 | // know whether this is a horizontal or vertical control (we're always | |
323 | // vertical) | |
882a8f40 | 324 | style |= wxSP_VERTICAL; |
c76b1a30 JS |
325 | |
326 | if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT ) | |
5d72f195 RR |
327 | #ifdef __WXWINCE__ |
328 | style |= wxBORDER_SIMPLE; | |
329 | #else | |
c76b1a30 | 330 | style |= wxBORDER_SUNKEN; |
5d72f195 | 331 | #endif |
c76b1a30 | 332 | |
882a8f40 | 333 | SetWindowStyle(style); |
b782f2e0 | 334 | |
fe3d9123 JS |
335 | WXDWORD exStyle = 0; |
336 | WXDWORD msStyle = MSWGetStyle(GetWindowStyle(), & exStyle) ; | |
337 | ||
7e4952db | 338 | // propagate text alignment style to text ctrl |
f1ddb476 | 339 | if ( style & wxALIGN_RIGHT ) |
7e4952db | 340 | msStyle |= ES_RIGHT; |
f1ddb476 | 341 | else if ( style & wxALIGN_CENTER ) |
7e4952db | 342 | msStyle |= ES_CENTER; |
f1ddb476 | 343 | |
8e190f0e | 344 | // calculate the sizes: the size given is the total size for both controls |
b782f2e0 VZ |
345 | // and we need to fit them both in the given width (height is the same) |
346 | wxSize sizeText(size), sizeBtn(size); | |
347 | sizeBtn.x = wxSpinButton::DoGetBestSize().x; | |
baccb514 VZ |
348 | if ( sizeText.x <= 0 ) |
349 | { | |
350 | // DEFAULT_ITEM_WIDTH is the default width for the text control | |
351 | sizeText.x = DEFAULT_ITEM_WIDTH + MARGIN_BETWEEN + sizeBtn.x; | |
352 | } | |
353 | ||
b782f2e0 VZ |
354 | sizeText.x -= sizeBtn.x + MARGIN_BETWEEN; |
355 | if ( sizeText.x <= 0 ) | |
356 | { | |
9a83f860 | 357 | wxLogDebug(wxT("not enough space for wxSpinCtrl!")); |
b782f2e0 VZ |
358 | } |
359 | ||
360 | wxPoint posBtn(pos); | |
361 | posBtn.x += sizeText.x + MARGIN_BETWEEN; | |
362 | ||
c5c04fab VZ |
363 | // we must create the text control before the spin button for the purpose |
364 | // of the dialog navigation: if there is a static text just before the spin | |
365 | // control, activating it by Alt-letter should give focus to the text | |
366 | // control, not the spin and the dialog navigation code will give focus to | |
367 | // the next control (at Windows level), not the one after it | |
b782f2e0 | 368 | |
c5c04fab | 369 | // create the text window |
b782f2e0 | 370 | |
b782f2e0 VZ |
371 | m_hwndBuddy = (WXHWND)::CreateWindowEx |
372 | ( | |
c5c04fab | 373 | exStyle, // sunken border |
9a83f860 | 374 | wxT("EDIT"), // window class |
baccb514 | 375 | NULL, // no window title |
c5c04fab | 376 | msStyle, // style (will be shown later) |
baccb514 VZ |
377 | pos.x, pos.y, // position |
378 | 0, 0, // size (will be set later) | |
379 | GetHwndOf(parent), // parent | |
380 | (HMENU)-1, // control id | |
381 | wxGetInstance(), // app instance | |
382 | NULL // unused client data | |
b782f2e0 VZ |
383 | ); |
384 | ||
385 | if ( !m_hwndBuddy ) | |
386 | { | |
f6bcfd97 | 387 | wxLogLastError(wxT("CreateWindow(buddy text window)")); |
b782f2e0 | 388 | |
57f4f925 | 389 | return false; |
b782f2e0 VZ |
390 | } |
391 | ||
c5c04fab VZ |
392 | |
393 | // create the spin button | |
394 | if ( !wxSpinButton::Create(parent, id, posBtn, sizeBtn, style, name) ) | |
395 | { | |
57f4f925 | 396 | return false; |
c5c04fab VZ |
397 | } |
398 | ||
23ec96e3 | 399 | wxSpinButtonBase::SetRange(min, max); |
e816f5c7 | 400 | |
f6bcfd97 | 401 | // subclass the text ctrl to be able to intercept some events |
975b6bcf VZ |
402 | wxSetWindowUserData(GetBuddyHwnd(), this); |
403 | m_wndProcBuddy = (WXFARPROC)wxSetWindowProc(GetBuddyHwnd(), | |
404 | wxBuddyTextWndProc); | |
f6bcfd97 | 405 | |
8d2e831b RD |
406 | // set up fonts and colours (This is nomally done in MSWCreateControl) |
407 | InheritAttributes(); | |
e0176dd9 VZ |
408 | if (!m_hasFont) |
409 | SetFont(GetDefaultAttributes().font); | |
8d2e831b | 410 | |
baccb514 VZ |
411 | // set the size of the text window - can do it only now, because we |
412 | // couldn't call DoGetBestSize() before as font wasn't set | |
413 | if ( sizeText.y <= 0 ) | |
414 | { | |
882a8f40 | 415 | int cx, cy; |
7a5e53ab | 416 | wxGetCharSize(GetHWND(), &cx, &cy, GetFont()); |
882a8f40 VZ |
417 | |
418 | sizeText.y = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy); | |
baccb514 VZ |
419 | } |
420 | ||
170acdc9 | 421 | SetInitialSize(size); |
baccb514 | 422 | |
6fe19057 | 423 | (void)::ShowWindow(GetBuddyHwnd(), SW_SHOW); |
b782f2e0 VZ |
424 | |
425 | // associate the text window with the spin button | |
baccb514 VZ |
426 | (void)::SendMessage(GetHwnd(), UDM_SETBUDDY, (WPARAM)m_hwndBuddy, 0); |
427 | ||
549cc3a8 JS |
428 | SetValue(initial); |
429 | ||
430 | // Set the range in the native control | |
431 | SetRange(min, max); | |
432 | ||
3d104ec3 | 433 | if ( !value.empty() ) |
678cd6de VZ |
434 | { |
435 | SetValue(value); | |
5bcdac45 JS |
436 | m_oldValue = (int) wxAtol(value); |
437 | } | |
438 | else | |
439 | { | |
440 | SetValue(wxString::Format(wxT("%d"), initial)); | |
441 | m_oldValue = initial; | |
678cd6de VZ |
442 | } |
443 | ||
6fe19057 VZ |
444 | // do it after finishing with m_hwndBuddy creation to avoid generating |
445 | // initial wxEVT_COMMAND_TEXT_UPDATED message | |
446 | ms_allSpins.Add(this); | |
447 | ||
57f4f925 | 448 | return true; |
baccb514 VZ |
449 | } |
450 | ||
f6bcfd97 BP |
451 | wxSpinCtrl::~wxSpinCtrl() |
452 | { | |
6fe19057 VZ |
453 | ms_allSpins.Remove(this); |
454 | ||
5648c0ad JS |
455 | // This removes spurious memory leak reporting |
456 | if (ms_allSpins.GetCount() == 0) | |
457 | ms_allSpins.Clear(); | |
458 | ||
f6bcfd97 BP |
459 | // destroy the buddy window because this pointer which wxBuddyTextWndProc |
460 | // uses will not soon be valid any more | |
6fe19057 | 461 | ::DestroyWindow(GetBuddyHwnd()); |
f6bcfd97 BP |
462 | } |
463 | ||
678cd6de VZ |
464 | // ---------------------------------------------------------------------------- |
465 | // wxTextCtrl-like methods | |
466 | // ---------------------------------------------------------------------------- | |
467 | ||
468 | void wxSpinCtrl::SetValue(const wxString& text) | |
469 | { | |
6fe19057 | 470 | if ( !::SetWindowText(GetBuddyHwnd(), text.c_str()) ) |
678cd6de | 471 | { |
f6bcfd97 | 472 | wxLogLastError(wxT("SetWindowText(buddy)")); |
678cd6de VZ |
473 | } |
474 | } | |
475 | ||
eeea41ab VZ |
476 | void wxSpinCtrl::SetValue(int val) |
477 | { | |
ea6cbf48 | 478 | m_blockEvent = true; |
f1ddb476 | 479 | |
eeea41ab VZ |
480 | wxSpinButton::SetValue(val); |
481 | ||
482 | // normally setting the value of the spin button is enough as it updates | |
483 | // its buddy control automatically ... | |
484 | if ( wxGetWindowText(m_hwndBuddy).empty() ) | |
485 | { | |
486 | // ... but sometimes it doesn't, notably when the value is 0 and the | |
487 | // text control is currently empty, the spin button seems to be happy | |
488 | // to leave it like this, while we really want to always show the | |
489 | // current value in the control, so do it manually | |
e0a050e3 | 490 | ::SetWindowText(GetBuddyHwnd(), |
9a83f860 | 491 | wxString::Format(wxT("%d"), val).wx_str()); |
eeea41ab | 492 | } |
e816f5c7 | 493 | |
25dff19c | 494 | m_oldValue = GetValue(); |
f1ddb476 | 495 | |
ea6cbf48 | 496 | m_blockEvent = false; |
eeea41ab VZ |
497 | } |
498 | ||
678cd6de VZ |
499 | int wxSpinCtrl::GetValue() const |
500 | { | |
501 | wxString val = wxGetWindowText(m_hwndBuddy); | |
502 | ||
503 | long n; | |
eeea41ab | 504 | if ( (wxSscanf(val, wxT("%ld"), &n) != 1) ) |
678cd6de | 505 | n = INT_MIN; |
3d104ec3 | 506 | |
eeea41ab VZ |
507 | if ( n < m_min ) |
508 | n = m_min; | |
509 | if ( n > m_max ) | |
510 | n = m_max; | |
678cd6de VZ |
511 | |
512 | return n; | |
513 | } | |
514 | ||
07901ec9 VZ |
515 | void wxSpinCtrl::SetSelection(long from, long to) |
516 | { | |
77ffb593 | 517 | // if from and to are both -1, it means (in wxWidgets) that all text should |
07901ec9 VZ |
518 | // be selected - translate into Windows convention |
519 | if ( (from == -1) && (to == -1) ) | |
520 | { | |
521 | from = 0; | |
522 | } | |
523 | ||
7d86a2d4 | 524 | ::SendMessage(GetBuddyHwnd(), EM_SETSEL, (WPARAM)from, (LPARAM)to); |
07901ec9 VZ |
525 | } |
526 | ||
345ff9c6 VZ |
527 | // ---------------------------------------------------------------------------- |
528 | // wxSpinButton methods | |
529 | // ---------------------------------------------------------------------------- | |
530 | ||
531 | void wxSpinCtrl::SetRange(int minVal, int maxVal) | |
532 | { | |
533 | wxSpinButton::SetRange(minVal, maxVal); | |
534 | ||
535 | // this control is used for numeric entry so restrict the input to numeric | |
536 | // keys only -- but only if we don't need to be able to enter "-" in it as | |
537 | // otherwise this would become impossible | |
538 | const DWORD styleOld = ::GetWindowLong(GetBuddyHwnd(), GWL_STYLE); | |
539 | DWORD styleNew; | |
540 | if ( minVal < 0 ) | |
541 | styleNew = styleOld & ~ES_NUMBER; | |
542 | else | |
543 | styleNew = styleOld | ES_NUMBER; | |
544 | ||
545 | if ( styleNew != styleOld ) | |
546 | ::SetWindowLong(GetBuddyHwnd(), GWL_STYLE, styleNew); | |
547 | } | |
548 | ||
baccb514 | 549 | // ---------------------------------------------------------------------------- |
882a8f40 | 550 | // forward some methods to subcontrols |
baccb514 VZ |
551 | // ---------------------------------------------------------------------------- |
552 | ||
553 | bool wxSpinCtrl::SetFont(const wxFont& font) | |
554 | { | |
555 | if ( !wxWindowBase::SetFont(font) ) | |
556 | { | |
557 | // nothing to do | |
57f4f925 | 558 | return false; |
baccb514 VZ |
559 | } |
560 | ||
561 | WXHANDLE hFont = GetFont().GetResourceHandle(); | |
6fe19057 | 562 | (void)::SendMessage(GetBuddyHwnd(), WM_SETFONT, (WPARAM)hFont, TRUE); |
b782f2e0 | 563 | |
57f4f925 | 564 | return true; |
b782f2e0 VZ |
565 | } |
566 | ||
882a8f40 VZ |
567 | bool wxSpinCtrl::Show(bool show) |
568 | { | |
569 | if ( !wxControl::Show(show) ) | |
570 | { | |
57f4f925 | 571 | return false; |
882a8f40 VZ |
572 | } |
573 | ||
6fe19057 | 574 | ::ShowWindow(GetBuddyHwnd(), show ? SW_SHOW : SW_HIDE); |
882a8f40 | 575 | |
57f4f925 | 576 | return true; |
882a8f40 VZ |
577 | } |
578 | ||
03d4194d VZ |
579 | bool wxSpinCtrl::Reparent(wxWindowBase *newParent) |
580 | { | |
581 | // Reparenting both the updown control and its buddy does not seem to work: | |
582 | // they continue to be connected somehow, but visually there is no feedback | |
583 | // on the buddy edit control. To avoid this problem, we reparent the buddy | |
584 | // window normally, but we recreate the updown control and reassign its | |
585 | // buddy. | |
586 | ||
587 | if ( !wxWindowBase::Reparent(newParent) ) | |
588 | return false; | |
589 | ||
590 | newParent->GetChildren().DeleteObject(this); | |
591 | ||
592 | // preserve the old values | |
593 | const wxSize size = GetSize(); | |
594 | int value = GetValue(); | |
595 | const wxRect btnRect = wxRectFromRECT(wxGetWindowRect(GetHwnd())); | |
596 | ||
597 | // destroy the old spin button | |
598 | UnsubclassWin(); | |
599 | if ( !::DestroyWindow(GetHwnd()) ) | |
43b2d5e7 | 600 | { |
03d4194d | 601 | wxLogLastError(wxT("DestroyWindow")); |
43b2d5e7 | 602 | } |
03d4194d VZ |
603 | |
604 | // create and initialize the new one | |
605 | if ( !wxSpinButton::Create(GetParent(), GetId(), | |
606 | btnRect.GetPosition(), btnRect.GetSize(), | |
607 | GetWindowStyle(), GetName()) ) | |
608 | return false; | |
609 | ||
610 | SetValue(value); | |
611 | SetRange(m_min, m_max); | |
612 | SetInitialSize(size); | |
613 | ||
614 | // associate it with the buddy control again | |
615 | ::SetParent(GetBuddyHwnd(), GetHwndOf(GetParent())); | |
616 | (void)::SendMessage(GetHwnd(), UDM_SETBUDDY, (WPARAM)GetBuddyHwnd(), 0); | |
617 | ||
618 | return true; | |
619 | } | |
620 | ||
882a8f40 VZ |
621 | bool wxSpinCtrl::Enable(bool enable) |
622 | { | |
623 | if ( !wxControl::Enable(enable) ) | |
624 | { | |
57f4f925 | 625 | return false; |
882a8f40 VZ |
626 | } |
627 | ||
6fe19057 | 628 | ::EnableWindow(GetBuddyHwnd(), enable); |
882a8f40 | 629 | |
57f4f925 | 630 | return true; |
882a8f40 VZ |
631 | } |
632 | ||
8bf3196d GRG |
633 | void wxSpinCtrl::SetFocus() |
634 | { | |
6fe19057 | 635 | ::SetFocus(GetBuddyHwnd()); |
8bf3196d GRG |
636 | } |
637 | ||
74124ea9 VZ |
638 | #if wxUSE_TOOLTIPS |
639 | ||
640 | void wxSpinCtrl::DoSetToolTip(wxToolTip *tip) | |
641 | { | |
642 | wxSpinButton::DoSetToolTip(tip); | |
643 | ||
644 | if ( tip ) | |
645 | tip->Add(m_hwndBuddy); | |
646 | } | |
647 | ||
648 | #endif // wxUSE_TOOLTIPS | |
649 | ||
9750fc42 | 650 | // ---------------------------------------------------------------------------- |
d40e9e06 | 651 | // events processing and generation |
9750fc42 VZ |
652 | // ---------------------------------------------------------------------------- |
653 | ||
d40e9e06 | 654 | void wxSpinCtrl::SendSpinUpdate(int value) |
9750fc42 VZ |
655 | { |
656 | wxCommandEvent event(wxEVT_COMMAND_SPINCTRL_UPDATED, GetId()); | |
657 | event.SetEventObject(this); | |
d40e9e06 | 658 | event.SetInt(value); |
e816f5c7 | 659 | |
937013e0 | 660 | (void)HandleWindowEvent(event); |
d40e9e06 VZ |
661 | |
662 | m_oldValue = value; | |
663 | } | |
9750fc42 | 664 | |
177e38e6 RR |
665 | bool wxSpinCtrl::MSWOnScroll(int WXUNUSED(orientation), WXWORD wParam, |
666 | WXWORD pos, WXHWND control) | |
d40e9e06 | 667 | { |
177e38e6 RR |
668 | wxCHECK_MSG( control, false, wxT("scrolling what?") ); |
669 | ||
670 | if ( wParam != SB_THUMBPOSITION ) | |
9750fc42 | 671 | { |
177e38e6 RR |
672 | // probable SB_ENDSCROLL - we don't react to it |
673 | return false; | |
9750fc42 | 674 | } |
177e38e6 RR |
675 | |
676 | int new_value = (short) pos; | |
677 | if (m_oldValue != new_value) | |
678 | SendSpinUpdate( new_value ); | |
679 | ||
680 | return TRUE; | |
681 | } | |
682 | ||
683 | bool wxSpinCtrl::MSWOnNotify(int WXUNUSED(idCtrl), WXLPARAM lParam, WXLPARAM *result) | |
684 | { | |
685 | NM_UPDOWN *lpnmud = (NM_UPDOWN *)lParam; | |
686 | ||
687 | if (lpnmud->hdr.hwndFrom != GetHwnd()) // make sure it is the right control | |
688 | return false; | |
689 | ||
690 | *result = 0; // never reject UP and DOWN events | |
691 | ||
692 | return TRUE; | |
9750fc42 VZ |
693 | } |
694 | ||
177e38e6 | 695 | |
b782f2e0 VZ |
696 | // ---------------------------------------------------------------------------- |
697 | // size calculations | |
698 | // ---------------------------------------------------------------------------- | |
699 | ||
f68586e5 | 700 | wxSize wxSpinCtrl::DoGetBestSize() const |
baccb514 VZ |
701 | { |
702 | wxSize sizeBtn = wxSpinButton::DoGetBestSize(); | |
703 | sizeBtn.x += DEFAULT_ITEM_WIDTH + MARGIN_BETWEEN; | |
704 | ||
705 | int y; | |
7a5e53ab | 706 | wxGetCharSize(GetHWND(), NULL, &y, GetFont()); |
baccb514 VZ |
707 | y = EDIT_HEIGHT_FROM_CHAR_HEIGHT(y); |
708 | ||
09f27917 JS |
709 | // JACS: we should always use the height calculated |
710 | // from above, because otherwise we'll get a spin control | |
711 | // that's too big. So never use the height calculated | |
712 | // from wxSpinButton::DoGetBestSize(). | |
57f4f925 | 713 | |
09f27917 | 714 | // if ( sizeBtn.y < y ) |
baccb514 VZ |
715 | { |
716 | // make the text tall enough | |
717 | sizeBtn.y = y; | |
718 | } | |
719 | ||
720 | return sizeBtn; | |
721 | } | |
722 | ||
b782f2e0 VZ |
723 | void wxSpinCtrl::DoMoveWindow(int x, int y, int width, int height) |
724 | { | |
baccb514 | 725 | int widthBtn = wxSpinButton::DoGetBestSize().x; |
b782f2e0 VZ |
726 | int widthText = width - widthBtn - MARGIN_BETWEEN; |
727 | if ( widthText <= 0 ) | |
728 | { | |
9a83f860 | 729 | wxLogDebug(wxT("not enough space for wxSpinCtrl!")); |
b782f2e0 VZ |
730 | } |
731 | ||
8e44f3ca | 732 | // 1) The buddy window |
7d86a2d4 | 733 | DoMoveSibling(m_hwndBuddy, x, y, widthText, height); |
b782f2e0 | 734 | |
8e44f3ca | 735 | // 2) The button window |
b782f2e0 | 736 | x += widthText + MARGIN_BETWEEN; |
7d86a2d4 | 737 | wxSpinButton::DoMoveWindow(x, y, widthBtn, height); |
b782f2e0 VZ |
738 | } |
739 | ||
f6bcfd97 BP |
740 | // get total size of the control |
741 | void wxSpinCtrl::DoGetSize(int *x, int *y) const | |
742 | { | |
743 | RECT spinrect, textrect, ctrlrect; | |
744 | GetWindowRect(GetHwnd(), &spinrect); | |
6fe19057 | 745 | GetWindowRect(GetBuddyHwnd(), &textrect); |
f6bcfd97 BP |
746 | UnionRect(&ctrlrect,&textrect, &spinrect); |
747 | ||
748 | if ( x ) | |
749 | *x = ctrlrect.right - ctrlrect.left; | |
750 | if ( y ) | |
751 | *y = ctrlrect.bottom - ctrlrect.top; | |
752 | } | |
753 | ||
b7527dde VS |
754 | void wxSpinCtrl::DoGetClientSize(int *x, int *y) const |
755 | { | |
756 | RECT spinrect = wxGetClientRect(GetHwnd()); | |
757 | RECT textrect = wxGetClientRect(GetBuddyHwnd()); | |
758 | RECT ctrlrect; | |
759 | UnionRect(&ctrlrect,&textrect, &spinrect); | |
760 | ||
761 | if ( x ) | |
762 | *x = ctrlrect.right - ctrlrect.left; | |
763 | if ( y ) | |
764 | *y = ctrlrect.bottom - ctrlrect.top; | |
765 | } | |
766 | ||
f6bcfd97 BP |
767 | void wxSpinCtrl::DoGetPosition(int *x, int *y) const |
768 | { | |
769 | // hack: pretend that our HWND is the text control just for a moment | |
770 | WXHWND hWnd = GetHWND(); | |
771 | wxConstCast(this, wxSpinCtrl)->m_hWnd = m_hwndBuddy; | |
772 | ||
773 | wxSpinButton::DoGetPosition(x, y); | |
774 | ||
775 | wxConstCast(this, wxSpinCtrl)->m_hWnd = hWnd; | |
776 | } | |
777 | ||
74124ea9 | 778 | #endif // wxUSE_SPINCTRL |