]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
2ab30ebf | 2 | // Name: msw/spinbutt.cpp |
2bda0e17 KB |
3 | // Purpose: wxSpinButton |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
6c9a19aa JS |
8 | // Copyright: (c) Julian Smart |
9 | // Licence: wxWindows licence | |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
b782f2e0 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
14f355c2 | 20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
a23fd0e1 | 21 | #pragma implementation "spinbutt.h" |
3c1a88d8 | 22 | #pragma implementation "spinbutbase.h" |
2bda0e17 KB |
23 | #endif |
24 | ||
25 | // For compilers that support precompilation, includes "wx.h". | |
26 | #include "wx/wxprec.h" | |
27 | ||
28 | #ifdef __BORLANDC__ | |
a23fd0e1 | 29 | #pragma hdrstop |
2bda0e17 KB |
30 | #endif |
31 | ||
32 | #ifndef WX_PRECOMP | |
3181cff4 | 33 | #include "wx/app.h" |
2bda0e17 KB |
34 | #endif |
35 | ||
0e528b99 JS |
36 | #if wxUSE_SPINBTN |
37 | ||
c3cb82e1 JS |
38 | #include "wx/spinbutt.h" |
39 | ||
2fa7c206 JS |
40 | IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxNotifyEvent) |
41 | ||
b39dbf34 | 42 | #if defined(__WIN95__) |
2bda0e17 | 43 | |
2bda0e17 KB |
44 | #include "wx/msw/private.h" |
45 | ||
b39dbf34 | 46 | #if defined(__WIN95__) && !(defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__)) |
a23fd0e1 | 47 | #include <commctrl.h> |
2bda0e17 KB |
48 | #endif |
49 | ||
b782f2e0 VZ |
50 | // ============================================================================ |
51 | // implementation | |
52 | // ============================================================================ | |
53 | ||
54 | // ---------------------------------------------------------------------------- | |
55 | // wxWin macros | |
56 | // ---------------------------------------------------------------------------- | |
57 | ||
2bda0e17 | 58 | |
51741307 | 59 | #if wxUSE_EXTENDED_RTTI |
bc9fb572 JS |
60 | WX_DEFINE_FLAGS( wxSpinButtonStyle ) |
61 | ||
3ff066a4 | 62 | wxBEGIN_FLAGS( wxSpinButtonStyle ) |
bc9fb572 JS |
63 | // new style border flags, we put them first to |
64 | // use them for streaming out | |
3ff066a4 SC |
65 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) |
66 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
67 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
68 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
69 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
70 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
bc9fb572 JS |
71 | |
72 | // old style border flags | |
3ff066a4 SC |
73 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) |
74 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
75 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
76 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
77 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
cb0afb26 | 78 | wxFLAGS_MEMBER(wxBORDER) |
bc9fb572 JS |
79 | |
80 | // standard window styles | |
3ff066a4 SC |
81 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
82 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
83 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
84 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
cb0afb26 | 85 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) |
3ff066a4 SC |
86 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) |
87 | wxFLAGS_MEMBER(wxVSCROLL) | |
88 | wxFLAGS_MEMBER(wxHSCROLL) | |
89 | ||
90 | wxFLAGS_MEMBER(wxSP_HORIZONTAL) | |
91 | wxFLAGS_MEMBER(wxSP_VERTICAL) | |
92 | wxFLAGS_MEMBER(wxSP_ARROW_KEYS) | |
93 | wxFLAGS_MEMBER(wxSP_WRAP) | |
94 | ||
95 | wxEND_FLAGS( wxSpinButtonStyle ) | |
bc9fb572 | 96 | |
51741307 SC |
97 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxSpinButton, wxControl,"wx/spinbut.h") |
98 | ||
3ff066a4 SC |
99 | wxBEGIN_PROPERTIES_TABLE(wxSpinButton) |
100 | wxEVENT_RANGE_PROPERTY( Spin , wxEVT_SCROLL_TOP , wxEVT_SCROLL_ENDSCROLL , wxSpinEvent ) | |
c5ca409b | 101 | |
3ff066a4 SC |
102 | wxPROPERTY( Value , int , SetValue, GetValue, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) |
103 | wxPROPERTY( Min , int , SetMin, GetMin, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) | |
104 | wxPROPERTY( Max , int , SetMax, GetMax, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) | |
105 | wxPROPERTY_FLAGS( WindowStyle , wxSpinButtonStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style | |
106 | wxEND_PROPERTIES_TABLE() | |
51741307 | 107 | |
3ff066a4 SC |
108 | wxBEGIN_HANDLERS_TABLE(wxSpinButton) |
109 | wxEND_HANDLERS_TABLE() | |
51741307 | 110 | |
3ff066a4 | 111 | wxCONSTRUCTOR_5( wxSpinButton , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle ) |
51741307 SC |
112 | #else |
113 | IMPLEMENT_DYNAMIC_CLASS(wxSpinButton, wxControl) | |
114 | #endif | |
115 | ||
116 | ||
066f1b7a | 117 | |
b782f2e0 VZ |
118 | // ---------------------------------------------------------------------------- |
119 | // wxSpinButton | |
120 | // ---------------------------------------------------------------------------- | |
121 | ||
31528cd3 VZ |
122 | bool wxSpinButton::Create(wxWindow *parent, |
123 | wxWindowID id, | |
124 | const wxPoint& pos, | |
125 | const wxSize& size, | |
126 | long style, | |
127 | const wxString& name) | |
2bda0e17 | 128 | { |
b782f2e0 | 129 | // basic initialization |
b782f2e0 | 130 | m_windowId = (id == -1) ? NewControlId() : id; |
2bda0e17 | 131 | |
b782f2e0 VZ |
132 | m_backgroundColour = parent->GetBackgroundColour() ; |
133 | m_foregroundColour = parent->GetForegroundColour() ; | |
2bda0e17 | 134 | |
b782f2e0 | 135 | SetName(name); |
2bda0e17 | 136 | |
b782f2e0 VZ |
137 | int x = pos.x; |
138 | int y = pos.y; | |
139 | int width = size.x; | |
140 | int height = size.y; | |
2bda0e17 | 141 | |
b782f2e0 | 142 | m_windowStyle = style; |
2bda0e17 | 143 | |
b782f2e0 | 144 | SetParent(parent); |
2bda0e17 | 145 | |
b782f2e0 VZ |
146 | // get the right size for the control |
147 | if ( width <= 0 || height <= 0 ) | |
148 | { | |
149 | wxSize size = DoGetBestSize(); | |
150 | if ( width <= 0 ) | |
151 | width = size.x; | |
152 | if ( height <= 0 ) | |
153 | height = size.y; | |
154 | } | |
2bda0e17 | 155 | |
b782f2e0 VZ |
156 | if ( x < 0 ) |
157 | x = 0; | |
158 | if ( y < 0 ) | |
159 | y = 0; | |
160 | ||
161 | // translate the styles | |
f6bcfd97 | 162 | DWORD wstyle = WS_VISIBLE | WS_CHILD | WS_TABSTOP | /* WS_CLIPSIBLINGS | */ |
882a8f40 VZ |
163 | UDS_NOTHOUSANDS | // never useful, sometimes harmful |
164 | UDS_SETBUDDYINT; // it doesn't harm if we don't have buddy | |
b782f2e0 | 165 | |
b0766406 JS |
166 | if ( m_windowStyle & wxCLIP_SIBLINGS ) |
167 | wstyle |= WS_CLIPSIBLINGS; | |
b782f2e0 VZ |
168 | if ( m_windowStyle & wxSP_HORIZONTAL ) |
169 | wstyle |= UDS_HORZ; | |
170 | if ( m_windowStyle & wxSP_ARROW_KEYS ) | |
171 | wstyle |= UDS_ARROWKEYS; | |
172 | if ( m_windowStyle & wxSP_WRAP ) | |
173 | wstyle |= UDS_WRAP; | |
174 | ||
175 | // create the UpDown control. | |
176 | m_hWnd = (WXHWND)CreateUpDownControl | |
177 | ( | |
178 | wstyle, | |
179 | x, y, width, height, | |
180 | GetHwndOf(parent), | |
181 | m_windowId, | |
182 | wxGetInstance(), | |
183 | NULL, // no buddy | |
184 | m_max, m_min, | |
185 | m_min // initial position | |
186 | ); | |
187 | ||
188 | if ( !m_hWnd ) | |
189 | { | |
f6bcfd97 | 190 | wxLogLastError(wxT("CreateUpDownControl")); |
2bda0e17 | 191 | |
b782f2e0 VZ |
192 | return FALSE; |
193 | } | |
2bda0e17 | 194 | |
b782f2e0 VZ |
195 | if ( parent ) |
196 | { | |
197 | parent->AddChild(this); | |
198 | } | |
31528cd3 | 199 | |
b782f2e0 | 200 | SubclassWin(m_hWnd); |
2bda0e17 | 201 | |
b782f2e0 | 202 | return TRUE; |
2bda0e17 KB |
203 | } |
204 | ||
a23fd0e1 | 205 | wxSpinButton::~wxSpinButton() |
2bda0e17 KB |
206 | { |
207 | } | |
208 | ||
b782f2e0 VZ |
209 | // ---------------------------------------------------------------------------- |
210 | // size calculation | |
211 | // ---------------------------------------------------------------------------- | |
212 | ||
f68586e5 | 213 | wxSize wxSpinButton::DoGetBestSize() const |
b782f2e0 VZ |
214 | { |
215 | if ( (GetWindowStyle() & wxSP_VERTICAL) != 0 ) | |
216 | { | |
217 | // vertical control | |
218 | return wxSize(GetSystemMetrics(SM_CXVSCROLL), | |
219 | 2*GetSystemMetrics(SM_CYVSCROLL)); | |
220 | } | |
221 | else | |
222 | { | |
223 | // horizontal control | |
224 | return wxSize(2*GetSystemMetrics(SM_CXHSCROLL), | |
225 | GetSystemMetrics(SM_CYHSCROLL)); | |
226 | } | |
227 | } | |
228 | ||
229 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 230 | // Attributes |
b782f2e0 | 231 | // ---------------------------------------------------------------------------- |
2bda0e17 | 232 | |
a23fd0e1 | 233 | int wxSpinButton::GetValue() const |
2bda0e17 | 234 | { |
3d9fe7b2 VZ |
235 | #ifdef UDM_GETPOS32 |
236 | if ( wxTheApp->GetComCtl32Version() >= 580 ) | |
237 | { | |
238 | // use the full 32 bit range if available | |
239 | return ::SendMessage(GetHwnd(), UDM_GETPOS32, 0, 0); | |
240 | } | |
241 | #endif // UDM_GETPOS32 | |
242 | ||
243 | // we're limited to 16 bit | |
0655ad29 | 244 | return (short)LOWORD(::SendMessage(GetHwnd(), UDM_GETPOS, 0, 0)); |
2bda0e17 KB |
245 | } |
246 | ||
debe6624 | 247 | void wxSpinButton::SetValue(int val) |
2bda0e17 | 248 | { |
3d9fe7b2 VZ |
249 | // wxSpinButtonBase::SetValue(val); -- no, it is pure virtual |
250 | ||
251 | #ifdef UDM_SETPOS32 | |
252 | if ( wxTheApp->GetComCtl32Version() >= 580 ) | |
253 | { | |
254 | // use the full 32 bit range if available | |
255 | ::SendMessage(GetHwnd(), UDM_SETPOS32, 0, val); | |
256 | } | |
257 | else // we're limited to 16 bit | |
258 | #endif // UDM_SETPOS32 | |
259 | { | |
260 | ::SendMessage(GetHwnd(), UDM_SETPOS, 0, MAKELONG((short) val, 0)); | |
261 | } | |
2bda0e17 KB |
262 | } |
263 | ||
debe6624 | 264 | void wxSpinButton::SetRange(int minVal, int maxVal) |
2bda0e17 | 265 | { |
31528cd3 | 266 | wxSpinButtonBase::SetRange(minVal, maxVal); |
3d9fe7b2 VZ |
267 | |
268 | #ifdef UDM_SETRANGE32 | |
269 | if ( wxTheApp->GetComCtl32Version() >= 471 ) | |
270 | { | |
271 | // use the full 32 bit range if available | |
272 | ::SendMessage(GetHwnd(), UDM_SETRANGE32, minVal, maxVal); | |
273 | } | |
274 | else // we're limited to 16 bit | |
275 | #endif // UDM_SETRANGE32 | |
276 | { | |
277 | ::SendMessage(GetHwnd(), UDM_SETRANGE, 0, | |
278 | (LPARAM) MAKELONG((short)maxVal, (short)minVal)); | |
279 | } | |
2bda0e17 KB |
280 | } |
281 | ||
33ac7e6f | 282 | bool wxSpinButton::MSWOnScroll(int WXUNUSED(orientation), WXWORD wParam, |
a23fd0e1 | 283 | WXWORD pos, WXHWND control) |
2bda0e17 | 284 | { |
223d09f6 | 285 | wxCHECK_MSG( control, FALSE, wxT("scrolling what?") ) |
2bda0e17 | 286 | |
0655ad29 | 287 | if ( wParam != SB_THUMBPOSITION ) |
a23fd0e1 | 288 | { |
0655ad29 VZ |
289 | // probable SB_ENDSCROLL - we don't react to it |
290 | return FALSE; | |
291 | } | |
2bda0e17 | 292 | |
0655ad29 VZ |
293 | wxSpinEvent event(wxEVT_SCROLL_THUMBTRACK, m_windowId); |
294 | event.SetPosition((short)pos); // cast is important for negative values! | |
295 | event.SetEventObject(this); | |
2bda0e17 | 296 | |
0655ad29 VZ |
297 | return GetEventHandler()->ProcessEvent(event); |
298 | } | |
2bda0e17 | 299 | |
33ac7e6f | 300 | bool wxSpinButton::MSWOnNotify(int WXUNUSED(idCtrl), WXLPARAM lParam, WXLPARAM *result) |
0655ad29 | 301 | { |
be519ffb | 302 | NM_UPDOWN *lpnmud = (NM_UPDOWN *)lParam; |
2bda0e17 | 303 | |
f6bcfd97 BP |
304 | if (lpnmud->hdr.hwndFrom != GetHwnd()) // make sure it is the right control |
305 | return FALSE; | |
306 | ||
0655ad29 VZ |
307 | wxSpinEvent event(lpnmud->iDelta > 0 ? wxEVT_SCROLL_LINEUP |
308 | : wxEVT_SCROLL_LINEDOWN, | |
309 | m_windowId); | |
310 | event.SetPosition(lpnmud->iPos + lpnmud->iDelta); | |
311 | event.SetEventObject(this); | |
2bda0e17 | 312 | |
0655ad29 | 313 | bool processed = GetEventHandler()->ProcessEvent(event); |
2bda0e17 | 314 | |
0655ad29 | 315 | *result = event.IsAllowed() ? 0 : 1; |
2bda0e17 | 316 | |
0655ad29 | 317 | return processed; |
2bda0e17 KB |
318 | } |
319 | ||
33ac7e6f | 320 | bool wxSpinButton::MSWCommand(WXUINT WXUNUSED(cmd), WXWORD WXUNUSED(id)) |
2bda0e17 | 321 | { |
a23fd0e1 VZ |
322 | // No command messages |
323 | return FALSE; | |
2bda0e17 KB |
324 | } |
325 | ||
a23fd0e1 | 326 | #endif // __WIN95__ |
0e528b99 JS |
327 | |
328 | #endif | |
329 | // wxUSE_SPINCTN | |
330 |