]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.cpp | |
3 | // Purpose: wxRadioBox | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
c085e333 | 9 | // Licence: wxWindows license |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
e373f51b VZ |
12 | // =========================================================================== |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
2bda0e17 | 20 | #ifdef __GNUG__ |
da07e033 | 21 | #pragma implementation "radiobox.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
da07e033 | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
31 | #ifndef WX_PRECOMP | |
da07e033 VZ |
32 | #include <stdio.h> |
33 | #include "wx/setup.h" | |
34 | #include "wx/bitmap.h" | |
35 | #include "wx/brush.h" | |
36 | #include "wx/radiobox.h" | |
2bda0e17 KB |
37 | #endif |
38 | ||
39 | #include "wx/msw/private.h" | |
40 | ||
41 | #if !USE_SHARED_LIBRARY | |
da07e033 | 42 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl) |
2bda0e17 KB |
43 | #endif |
44 | ||
e373f51b VZ |
45 | // --------------------------------------------------------------------------- |
46 | // private functions | |
47 | // --------------------------------------------------------------------------- | |
48 | ||
e373f51b | 49 | // wnd proc for radio buttons |
2a47d3c1 | 50 | #ifdef __WIN32__ |
e373f51b VZ |
51 | LRESULT APIENTRY _EXPORT wxRadioBtnWndProc(HWND hWnd, |
52 | UINT message, | |
53 | WPARAM wParam, | |
54 | LPARAM lParam); | |
55 | ||
56 | // --------------------------------------------------------------------------- | |
57 | // global vars | |
58 | // --------------------------------------------------------------------------- | |
59 | ||
60 | // the pointer to standard radio button wnd proc | |
20e85460 | 61 | static WXFARPROC s_wndprocRadioBtn = (WXFARPROC)NULL; |
e373f51b | 62 | |
42e69d6b VZ |
63 | #endif // __WIN32__ |
64 | ||
e373f51b VZ |
65 | // =========================================================================== |
66 | // implementation | |
67 | // =========================================================================== | |
68 | ||
69 | // --------------------------------------------------------------------------- | |
70 | // wxRadioBox | |
71 | // --------------------------------------------------------------------------- | |
72 | ||
73 | int wxRadioBox::GetNumVer() const | |
74 | { | |
75 | if ( m_windowStyle & wxRA_SPECIFY_ROWS ) | |
76 | { | |
77 | return m_majorDim; | |
78 | } | |
79 | else | |
80 | { | |
81 | return (m_noItems + m_majorDim - 1)/m_majorDim; | |
82 | } | |
83 | } | |
84 | ||
85 | int wxRadioBox::GetNumHor() const | |
86 | { | |
87 | if ( m_windowStyle & wxRA_SPECIFY_ROWS ) | |
88 | { | |
89 | return (m_noItems + m_majorDim - 1)/m_majorDim; | |
90 | } | |
91 | else | |
92 | { | |
93 | return m_majorDim; | |
94 | } | |
95 | } | |
96 | ||
42e69d6b | 97 | bool wxRadioBox::MSWCommand(WXUINT cmd, WXWORD id) |
2bda0e17 | 98 | { |
42e69d6b | 99 | if ( cmd == BN_CLICKED ) |
da07e033 | 100 | { |
9a5ccab4 | 101 | int selectedButton = -1; |
e373f51b VZ |
102 | |
103 | for ( int i = 0; i < m_noItems; i++ ) | |
104 | { | |
cc2b7472 | 105 | if ( id == wxGetWindowId(m_radioButtons[i]) ) |
e373f51b | 106 | { |
9a5ccab4 | 107 | selectedButton = i; |
e373f51b VZ |
108 | |
109 | break; | |
110 | } | |
111 | } | |
112 | ||
837e5743 | 113 | wxASSERT_MSG( selectedButton != -1, _T("click from alien button?") ); |
2bda0e17 | 114 | |
9a5ccab4 VZ |
115 | if ( selectedButton != m_selectedButton ) |
116 | { | |
117 | m_selectedButton = selectedButton; | |
118 | ||
119 | SendNotificationEvent(); | |
120 | } | |
121 | //else: don't generate events when the selection doesn't change | |
e373f51b | 122 | |
da07e033 VZ |
123 | return TRUE; |
124 | } | |
e373f51b VZ |
125 | else |
126 | return FALSE; | |
2bda0e17 KB |
127 | } |
128 | ||
129 | #if WXWIN_COMPATIBILITY | |
130 | wxRadioBox::wxRadioBox(wxWindow *parent, wxFunction func, const char *title, | |
da07e033 VZ |
131 | int x, int y, int width, int height, |
132 | int n, char **choices, | |
133 | int majorDim, long style, const char *name) | |
2bda0e17 KB |
134 | { |
135 | wxString *choices2 = new wxString[n]; | |
136 | for ( int i = 0; i < n; i ++) choices2[i] = choices[i]; | |
137 | Create(parent, -1, title, wxPoint(x, y), wxSize(width, height), n, choices2, majorDim, style, | |
da07e033 | 138 | wxDefaultValidator, name); |
2bda0e17 KB |
139 | Callback(func); |
140 | delete choices2; | |
141 | } | |
142 | ||
143 | #endif | |
144 | ||
145 | // Radio box item | |
e373f51b | 146 | wxRadioBox::wxRadioBox() |
2bda0e17 | 147 | { |
da07e033 VZ |
148 | m_selectedButton = -1; |
149 | m_noItems = 0; | |
150 | m_noRowsOrCols = 0; | |
151 | m_radioButtons = NULL; | |
e373f51b VZ |
152 | m_majorDim = 0; |
153 | m_radioWidth = NULL; | |
154 | m_radioHeight = NULL; | |
2bda0e17 KB |
155 | } |
156 | ||
debe6624 | 157 | bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title, |
da07e033 VZ |
158 | const wxPoint& pos, const wxSize& size, |
159 | int n, const wxString choices[], | |
160 | int majorDim, long style, | |
161 | const wxValidator& val, const wxString& name) | |
2bda0e17 | 162 | { |
da07e033 VZ |
163 | m_selectedButton = -1; |
164 | m_noItems = n; | |
2bda0e17 | 165 | |
da07e033 VZ |
166 | SetName(name); |
167 | SetValidator(val); | |
2bda0e17 | 168 | |
da07e033 | 169 | parent->AddChild(this); |
e373f51b VZ |
170 | m_backgroundColour = parent->GetBackgroundColour(); |
171 | m_foregroundColour = parent->GetForegroundColour(); | |
2bda0e17 | 172 | |
da07e033 | 173 | m_windowStyle = (long&)style; |
2bda0e17 | 174 | |
da07e033 VZ |
175 | int x = pos.x; |
176 | int y = pos.y; | |
177 | int width = size.x; | |
178 | int height = size.y; | |
2bda0e17 | 179 | |
da07e033 VZ |
180 | if (id == -1) |
181 | m_windowId = NewControlId(); | |
182 | else | |
183 | m_windowId = id; | |
184 | ||
e373f51b VZ |
185 | if ( majorDim == 0 ) |
186 | m_majorDim = n; | |
187 | else | |
188 | m_majorDim = majorDim; | |
da07e033 | 189 | m_noRowsOrCols = majorDim; |
da07e033 VZ |
190 | |
191 | long msStyle = GROUP_FLAGS; | |
192 | ||
193 | bool want3D; | |
e373f51b | 194 | WXDWORD exStyle = Determine3DEffects(0, &want3D); |
da07e033 | 195 | |
e373f51b | 196 | HWND hwndParent = (HWND)parent->GetHWND(); |
da07e033 VZ |
197 | |
198 | m_hWnd = (WXHWND)::CreateWindowEx | |
e373f51b VZ |
199 | ( |
200 | (DWORD)exStyle, | |
201 | GROUP_CLASS, | |
202 | title, | |
203 | msStyle, | |
204 | 0, 0, 0, 0, | |
205 | hwndParent, | |
206 | (HMENU)m_windowId, | |
207 | wxGetInstance(), | |
208 | NULL | |
209 | ); | |
c085e333 | 210 | |
1f112209 | 211 | #if wxUSE_CTL3D |
da07e033 VZ |
212 | if (want3D) |
213 | { | |
214 | Ctl3dSubclassCtl((HWND)m_hWnd); | |
215 | m_useCtl3D = TRUE; | |
216 | } | |
e373f51b | 217 | #endif // wxUSE_CTL3D |
2bda0e17 | 218 | |
da07e033 VZ |
219 | SetFont(parent->GetFont()); |
220 | ||
e373f51b | 221 | SubclassWin(m_hWnd); |
da07e033 VZ |
222 | |
223 | // Some radio boxes test consecutive id. | |
e373f51b | 224 | (void)NewControlId(); |
da07e033 | 225 | m_radioButtons = new WXHWND[n]; |
e373f51b VZ |
226 | m_radioWidth = new int[n]; |
227 | m_radioHeight = new int[n]; | |
da07e033 VZ |
228 | int i; |
229 | for (i = 0; i < n; i++) | |
230 | { | |
e373f51b | 231 | m_radioWidth[i] = m_radioHeight[i] = -1; |
da07e033 | 232 | long groupStyle = 0; |
e373f51b | 233 | if ( i == 0 && style == 0 ) |
da07e033 VZ |
234 | groupStyle = WS_GROUP; |
235 | long newId = NewControlId(); | |
236 | long msStyle = groupStyle | RADIO_FLAGS; | |
237 | ||
e373f51b VZ |
238 | HWND hwndBtn = CreateWindowEx(exStyle, RADIO_CLASS, |
239 | choices[i], msStyle, | |
240 | 0,0,0,0, | |
241 | hwndParent, | |
242 | (HMENU)newId, wxGetInstance(), | |
243 | NULL); | |
2bda0e17 | 244 | |
e373f51b | 245 | m_radioButtons[i] = (WXHWND)hwndBtn; |
42e69d6b | 246 | |
e373f51b | 247 | SubclassRadioButton((WXHWND)hwndBtn); |
2bda0e17 | 248 | |
e373f51b VZ |
249 | wxFont& font = GetFont(); |
250 | if ( font.Ok() ) | |
da07e033 | 251 | { |
e373f51b VZ |
252 | SendMessage(hwndBtn, WM_SETFONT, |
253 | (WPARAM)font.GetResourceHandle(), 0L); | |
da07e033 | 254 | } |
e373f51b | 255 | |
42e69d6b | 256 | m_subControls.Append((wxObject *)(WXWORD)newId); |
da07e033 | 257 | } |
e373f51b | 258 | |
da07e033 | 259 | // Create a dummy radio control to end the group. |
837e5743 | 260 | (void)CreateWindowEx(0, RADIO_CLASS, _T(""), WS_GROUP | RADIO_FLAGS, |
e373f51b VZ |
261 | 0, 0, 0, 0, hwndParent, |
262 | (HMENU)NewControlId(), wxGetInstance(), NULL); | |
2bda0e17 | 263 | |
da07e033 | 264 | SetSelection(0); |
2bda0e17 | 265 | |
da07e033 | 266 | SetSize(x, y, width, height); |
2bda0e17 | 267 | |
da07e033 | 268 | return TRUE; |
2bda0e17 | 269 | } |
2bda0e17 | 270 | |
e373f51b | 271 | wxRadioBox::~wxRadioBox() |
2bda0e17 | 272 | { |
da07e033 | 273 | m_isBeingDeleted = TRUE; |
1eb20d4a | 274 | |
da07e033 VZ |
275 | if (m_radioButtons) |
276 | { | |
277 | int i; | |
278 | for (i = 0; i < m_noItems; i++) | |
42e69d6b | 279 | ::DestroyWindow((HWND)m_radioButtons[i]); |
da07e033 VZ |
280 | delete[] m_radioButtons; |
281 | } | |
42e69d6b | 282 | |
da07e033 | 283 | if (m_radioWidth) |
e373f51b | 284 | delete[] m_radioWidth; |
da07e033 | 285 | if (m_radioHeight) |
e373f51b | 286 | delete[] m_radioHeight; |
2bda0e17 KB |
287 | |
288 | } | |
289 | ||
d66a042c VZ |
290 | wxString wxRadioBox::GetLabel(int item) const |
291 | { | |
837e5743 | 292 | wxCHECK_MSG( item >= 0 && item < m_noItems, _T(""), _T("invalid radiobox index") ); |
d66a042c VZ |
293 | |
294 | return wxGetWindowText(m_radioButtons[item]); | |
295 | } | |
296 | ||
debe6624 | 297 | void wxRadioBox::SetLabel(int item, const wxString& label) |
2bda0e17 | 298 | { |
837e5743 | 299 | wxCHECK_RET( item >= 0 && item < m_noItems, _T("invalid radiobox index") ); |
d66a042c | 300 | |
e373f51b | 301 | m_radioWidth[item] = m_radioHeight[item] = -1; |
42e69d6b | 302 | SetWindowText((HWND)m_radioButtons[item], label.c_str()); |
2bda0e17 KB |
303 | } |
304 | ||
debe6624 | 305 | void wxRadioBox::SetLabel(int item, wxBitmap *bitmap) |
2bda0e17 | 306 | { |
da07e033 | 307 | /* |
e373f51b VZ |
308 | m_radioWidth[item] = bitmap->GetWidth() + FB_MARGIN; |
309 | m_radioHeight[item] = bitmap->GetHeight() + FB_MARGIN; | |
da07e033 | 310 | */ |
837e5743 | 311 | wxFAIL_MSG(_T("not implemented")); |
2bda0e17 KB |
312 | } |
313 | ||
314 | int wxRadioBox::FindString(const wxString& s) const | |
315 | { | |
42e69d6b | 316 | for (int i = 0; i < m_noItems; i++) |
da07e033 | 317 | { |
42e69d6b | 318 | if ( s == wxGetWindowText(m_radioButtons[i]) ) |
da07e033 VZ |
319 | return i; |
320 | } | |
42e69d6b VZ |
321 | |
322 | return wxNOT_FOUND; | |
2bda0e17 KB |
323 | } |
324 | ||
debe6624 | 325 | void wxRadioBox::SetSelection(int N) |
2bda0e17 | 326 | { |
837e5743 | 327 | wxCHECK_RET( (N >= 0) && (N < m_noItems), _T("invalid radiobox index") ); |
2bda0e17 | 328 | |
da07e033 VZ |
329 | // Following necessary for Win32s, because Win32s translate BM_SETCHECK |
330 | if (m_selectedButton >= 0 && m_selectedButton < m_noItems) | |
e373f51b VZ |
331 | ::SendMessage((HWND) m_radioButtons[m_selectedButton], BM_SETCHECK, 0, 0L); |
332 | ||
333 | ::SendMessage((HWND)m_radioButtons[N], BM_SETCHECK, 1, 0L); | |
334 | ::SetFocus((HWND)m_radioButtons[N]); | |
2bda0e17 | 335 | |
da07e033 | 336 | m_selectedButton = N; |
2bda0e17 KB |
337 | } |
338 | ||
339 | // Get single selection, for single choice list items | |
e373f51b | 340 | int wxRadioBox::GetSelection() const |
2bda0e17 | 341 | { |
da07e033 | 342 | return m_selectedButton; |
2bda0e17 KB |
343 | } |
344 | ||
345 | // Find string for position | |
debe6624 | 346 | wxString wxRadioBox::GetString(int N) const |
2bda0e17 | 347 | { |
e373f51b | 348 | return wxGetWindowText(m_radioButtons[N]); |
2bda0e17 KB |
349 | } |
350 | ||
1f916a19 | 351 | // Restored old code. |
bfc6fde4 | 352 | void wxRadioBox::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
1f916a19 JS |
353 | { |
354 | int currentX, currentY; | |
355 | GetPosition(¤tX, ¤tY); | |
356 | int xx = x; | |
357 | int yy = y; | |
358 | ||
359 | if (x == -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) | |
360 | xx = currentX; | |
361 | if (y == -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) | |
362 | yy = currentY; | |
363 | ||
837e5743 | 364 | wxChar buf[400]; |
1f916a19 JS |
365 | |
366 | int y_offset = yy; | |
367 | int x_offset = xx; | |
368 | int current_width, cyf; | |
369 | ||
e373f51b | 370 | int cx1,cy1; |
1f916a19 JS |
371 | wxGetCharSize(m_hWnd, &cx1, &cy1, & GetFont()); |
372 | // Attempt to have a look coherent with other platforms: | |
373 | // We compute the biggest toggle dim, then we align all | |
374 | // items according this value. | |
375 | int maxWidth = -1; | |
e373f51b | 376 | int maxHeight = -1; |
1f916a19 JS |
377 | |
378 | int i; | |
379 | for (i = 0 ; i < m_noItems; i++) | |
380 | { | |
381 | int eachWidth; | |
e373f51b | 382 | int eachHeight; |
1f916a19 JS |
383 | if (m_radioWidth[i]<0) |
384 | { | |
385 | // It's a labelled toggle | |
386 | GetWindowText((HWND) m_radioButtons[i], buf, 300); | |
387 | GetTextExtent(buf, ¤t_width, &cyf,NULL,NULL, & GetFont()); | |
388 | eachWidth = (int)(current_width + RADIO_SIZE); | |
389 | eachHeight = (int)((3*cyf)/2); | |
390 | } | |
391 | else | |
392 | { | |
e373f51b VZ |
393 | eachWidth = m_radioWidth[i]; |
394 | eachHeight = m_radioHeight[i]; | |
1f916a19 | 395 | } |
e373f51b VZ |
396 | if (maxWidth<eachWidth) maxWidth = eachWidth; |
397 | if (maxHeight<eachHeight) maxHeight = eachHeight; | |
1f916a19 JS |
398 | } |
399 | ||
400 | if (m_hWnd) | |
401 | { | |
e373f51b | 402 | int totWidth; |
1f916a19 JS |
403 | int totHeight; |
404 | ||
e373f51b VZ |
405 | int nbHor = GetNumHor(), |
406 | nbVer = GetNumVer(); | |
1f916a19 JS |
407 | |
408 | // this formula works, but I don't know why. | |
409 | // Please, be sure what you do if you modify it!! | |
410 | if (m_radioWidth[0]<0) | |
e373f51b | 411 | totHeight = (nbVer * maxHeight) + cy1/2; |
1f916a19 | 412 | else |
e373f51b VZ |
413 | totHeight = nbVer * (maxHeight+cy1/2); |
414 | totWidth = nbHor * (maxWidth+cx1); | |
1f916a19 JS |
415 | |
416 | #if (!CTL3D) | |
417 | // Requires a bigger group box in plain Windows | |
e373f51b | 418 | MoveWindow((HWND) m_hWnd,x_offset,y_offset,totWidth+cx1,totHeight+(3*cy1)/2,TRUE); |
1f916a19 | 419 | #else |
e373f51b | 420 | MoveWindow((HWND) m_hWnd,x_offset,y_offset,totWidth+cx1,totHeight+cy1,TRUE); |
1f916a19 JS |
421 | #endif |
422 | x_offset += cx1; | |
423 | y_offset += cy1; | |
424 | } | |
425 | ||
426 | #if (!CTL3D) | |
427 | y_offset += (int)(cy1/2); // Fudge factor since buttons overlapped label | |
428 | // JACS 2/12/93. CTL3D draws group label quite high. | |
429 | #endif | |
e373f51b VZ |
430 | int startX = x_offset; |
431 | int startY = y_offset; | |
1f916a19 JS |
432 | |
433 | for ( i = 0 ; i < m_noItems; i++) | |
434 | { | |
435 | // Bidimensional radio adjustment | |
436 | if (i&&((i%m_majorDim)==0)) // Why is this omitted for i = 0? | |
437 | { | |
438 | if (m_windowStyle & wxRA_VERTICAL) | |
439 | { | |
440 | y_offset = startY; | |
e373f51b | 441 | x_offset += maxWidth + cx1; |
1f916a19 JS |
442 | } |
443 | else | |
444 | { | |
e373f51b VZ |
445 | x_offset = startX; |
446 | y_offset += maxHeight; | |
1f916a19 | 447 | if (m_radioWidth[0]>0) |
e373f51b | 448 | y_offset += cy1/2; |
1f916a19 JS |
449 | } |
450 | } | |
e373f51b VZ |
451 | int eachWidth; |
452 | int eachHeight; | |
1f916a19 JS |
453 | if (m_radioWidth[i]<0) |
454 | { | |
455 | // It's a labeled item | |
456 | GetWindowText((HWND) m_radioButtons[i], buf, 300); | |
457 | GetTextExtent(buf, ¤t_width, &cyf,NULL,NULL, & GetFont()); | |
458 | ||
459 | // How do we find out radio button bitmap size!! | |
460 | // By adjusting them carefully, manually :-) | |
461 | eachWidth = (int)(current_width + RADIO_SIZE); | |
462 | eachHeight = (int)((3*cyf)/2); | |
463 | } | |
464 | else | |
465 | { | |
e373f51b VZ |
466 | eachWidth = m_radioWidth[i]; |
467 | eachHeight = m_radioHeight[i]; | |
1f916a19 JS |
468 | } |
469 | ||
470 | MoveWindow((HWND) m_radioButtons[i],x_offset,y_offset,eachWidth,eachHeight,TRUE); | |
471 | if (m_windowStyle & wxRA_SPECIFY_ROWS) | |
472 | { | |
473 | y_offset += maxHeight; | |
474 | if (m_radioWidth[0]>0) | |
e373f51b | 475 | y_offset += cy1/2; |
1f916a19 JS |
476 | } |
477 | else | |
478 | x_offset += maxWidth + cx1; | |
479 | } | |
480 | } | |
481 | ||
2bda0e17 KB |
482 | |
483 | void wxRadioBox::GetSize(int *width, int *height) const | |
484 | { | |
da07e033 VZ |
485 | RECT rect; |
486 | rect.left = -1; rect.right = -1; rect.top = -1; rect.bottom = -1; | |
2bda0e17 | 487 | |
da07e033 VZ |
488 | if (m_hWnd) |
489 | wxFindMaxSize(m_hWnd, &rect); | |
2bda0e17 | 490 | |
da07e033 VZ |
491 | int i; |
492 | for (i = 0; i < m_noItems; i++) | |
493 | wxFindMaxSize(m_radioButtons[i], &rect); | |
2bda0e17 | 494 | |
da07e033 VZ |
495 | *width = rect.right - rect.left; |
496 | *height = rect.bottom - rect.top; | |
2bda0e17 KB |
497 | } |
498 | ||
499 | void wxRadioBox::GetPosition(int *x, int *y) const | |
500 | { | |
da07e033 VZ |
501 | wxWindow *parent = GetParent(); |
502 | RECT rect; | |
503 | rect.left = -1; rect.right = -1; rect.top = -1; rect.bottom = -1; | |
504 | ||
505 | int i; | |
506 | for (i = 0; i < m_noItems; i++) | |
507 | wxFindMaxSize(m_radioButtons[i], &rect); | |
508 | ||
509 | if (m_hWnd) | |
510 | wxFindMaxSize(m_hWnd, &rect); | |
511 | ||
512 | // Since we now have the absolute screen coords, | |
513 | // if there's a parent we must subtract its top left corner | |
514 | POINT point; | |
515 | point.x = rect.left; | |
516 | point.y = rect.top; | |
517 | if (parent) | |
518 | { | |
519 | ::ScreenToClient((HWND) parent->GetHWND(), &point); | |
520 | } | |
521 | // We may be faking the client origin. | |
522 | // So a window that's really at (0, 30) may appear | |
523 | // (to wxWin apps) to be at (0, 0). | |
524 | if (GetParent()) | |
525 | { | |
526 | wxPoint pt(GetParent()->GetClientAreaOrigin()); | |
527 | point.x -= pt.x; | |
528 | point.y -= pt.y; | |
529 | } | |
530 | ||
531 | *x = point.x; | |
532 | *y = point.y; | |
2bda0e17 KB |
533 | } |
534 | ||
e373f51b | 535 | void wxRadioBox::SetFocus() |
2bda0e17 | 536 | { |
da07e033 VZ |
537 | if (m_noItems > 0) |
538 | { | |
539 | if (m_selectedButton == -1) | |
540 | ::SetFocus((HWND) m_radioButtons[0]); | |
541 | else | |
542 | ::SetFocus((HWND) m_radioButtons[m_selectedButton]); | |
543 | } | |
2bda0e17 KB |
544 | |
545 | } | |
546 | ||
debe6624 | 547 | bool wxRadioBox::Show(bool show) |
2bda0e17 | 548 | { |
42e69d6b VZ |
549 | if ( !wxControl::Show(show) ) |
550 | return FALSE; | |
551 | ||
552 | int nCmdShow = show ? SW_SHOW : SW_HIDE; | |
553 | for ( int i = 0; i < m_noItems; i++ ) | |
554 | { | |
555 | ::ShowWindow((HWND)m_radioButtons[i], nCmdShow); | |
556 | } | |
557 | ||
da07e033 | 558 | return TRUE; |
2bda0e17 KB |
559 | } |
560 | ||
561 | // Enable a specific button | |
debe6624 | 562 | void wxRadioBox::Enable(int item, bool enable) |
2bda0e17 | 563 | { |
42e69d6b VZ |
564 | wxCHECK_RET( item >= 0 && item < m_noItems, |
565 | _T("invalid item in wxRadioBox::Enable()") ); | |
566 | ||
567 | ::EnableWindow((HWND) m_radioButtons[item], enable); | |
2bda0e17 KB |
568 | } |
569 | ||
570 | // Enable all controls | |
cc2b7472 | 571 | bool wxRadioBox::Enable(bool enable) |
2bda0e17 | 572 | { |
cc2b7472 VZ |
573 | if ( !wxControl::Enable(enable) ) |
574 | return FALSE; | |
1eb20d4a | 575 | |
42e69d6b | 576 | for (int i = 0; i < m_noItems; i++) |
da07e033 | 577 | ::EnableWindow((HWND) m_radioButtons[i], enable); |
cc2b7472 VZ |
578 | |
579 | return TRUE; | |
2bda0e17 KB |
580 | } |
581 | ||
582 | // Show a specific button | |
debe6624 | 583 | void wxRadioBox::Show(int item, bool show) |
2bda0e17 | 584 | { |
42e69d6b VZ |
585 | wxCHECK_RET( item >= 0 && item < m_noItems, |
586 | _T("invalid item in wxRadioBox::Show()") ); | |
587 | ||
588 | ::ShowWindow((HWND)m_radioButtons[item], show ? SW_SHOW : SW_HIDE); | |
2bda0e17 KB |
589 | } |
590 | ||
debe6624 | 591 | WXHBRUSH wxRadioBox::OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, |
da07e033 | 592 | WXUINT message, WXWPARAM wParam, WXLPARAM lParam) |
2bda0e17 | 593 | { |
1f112209 | 594 | #if wxUSE_CTL3D |
da07e033 VZ |
595 | if ( m_useCtl3D ) |
596 | { | |
597 | HBRUSH hbrush = Ctl3dCtlColorEx(message, wParam, lParam); | |
598 | return (WXHBRUSH) hbrush; | |
599 | } | |
2bda0e17 KB |
600 | #endif |
601 | ||
da07e033 VZ |
602 | if (GetParent()->GetTransparentBackground()) |
603 | SetBkMode((HDC) pDC, TRANSPARENT); | |
604 | else | |
605 | SetBkMode((HDC) pDC, OPAQUE); | |
2bda0e17 | 606 | |
da07e033 VZ |
607 | ::SetBkColor((HDC) pDC, RGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue())); |
608 | ::SetTextColor((HDC) pDC, RGB(GetForegroundColour().Red(), GetForegroundColour().Green(), GetForegroundColour().Blue())); | |
2bda0e17 | 609 | |
da07e033 | 610 | wxBrush *backgroundBrush = wxTheBrushList->FindOrCreateBrush(GetBackgroundColour(), wxSOLID); |
2bda0e17 | 611 | |
da07e033 | 612 | return (WXHBRUSH) backgroundBrush->GetResourceHandle(); |
2bda0e17 KB |
613 | } |
614 | ||
615 | // For single selection items only | |
e373f51b | 616 | wxString wxRadioBox::GetStringSelection() const |
2bda0e17 | 617 | { |
e373f51b VZ |
618 | wxString result; |
619 | int sel = GetSelection(); | |
da07e033 | 620 | if (sel > -1) |
e373f51b VZ |
621 | result = GetString(sel); |
622 | ||
623 | return result; | |
2bda0e17 KB |
624 | } |
625 | ||
e373f51b | 626 | bool wxRadioBox::SetStringSelection(const wxString& s) |
2bda0e17 | 627 | { |
da07e033 VZ |
628 | int sel = FindString (s); |
629 | if (sel > -1) | |
2bda0e17 | 630 | { |
da07e033 VZ |
631 | SetSelection (sel); |
632 | return TRUE; | |
2bda0e17 | 633 | } |
da07e033 VZ |
634 | else |
635 | return FALSE; | |
2bda0e17 KB |
636 | } |
637 | ||
2bda0e17 KB |
638 | bool wxRadioBox::ContainsHWND(WXHWND hWnd) const |
639 | { | |
da07e033 | 640 | int i; |
2bda0e17 | 641 | for (i = 0; i < Number(); i++) |
42e69d6b | 642 | { |
da07e033 VZ |
643 | if (GetRadioButtons()[i] == hWnd) |
644 | return TRUE; | |
42e69d6b VZ |
645 | } |
646 | ||
da07e033 | 647 | return FALSE; |
2bda0e17 KB |
648 | } |
649 | ||
650 | void wxRadioBox::Command (wxCommandEvent & event) | |
651 | { | |
da07e033 VZ |
652 | SetSelection (event.m_commandInt); |
653 | ProcessCommand (event); | |
2bda0e17 KB |
654 | } |
655 | ||
42e69d6b | 656 | long wxRadioBox::MSWWindowProc(WXUINT msg, WXWPARAM wParam, WXLPARAM lParam) |
983162bd | 657 | { |
42e69d6b VZ |
658 | long rc = 0; |
659 | bool processed = FALSE; | |
660 | ||
661 | switch ( msg ) | |
983162bd | 662 | { |
42e69d6b VZ |
663 | case WM_NCHITTEST: |
664 | { | |
665 | int xPos = LOWORD(lParam); // horizontal position of cursor | |
666 | int yPos = HIWORD(lParam); // vertical position of cursor | |
983162bd | 667 | |
42e69d6b | 668 | ScreenToClient(&xPos, &yPos); |
983162bd | 669 | |
42e69d6b VZ |
670 | // Make sure you can drag by the top of the groupbox, but let |
671 | // other (enclosed) controls get mouse events also | |
672 | if ( yPos < 10 ) | |
673 | { | |
674 | rc = HTCLIENT; | |
675 | processed = TRUE; | |
676 | } | |
677 | } | |
678 | break; | |
983162bd JS |
679 | } |
680 | ||
42e69d6b VZ |
681 | if ( !processed ) |
682 | rc = wxControl::MSWWindowProc(msg, wParam, lParam); | |
683 | ||
684 | return rc; | |
983162bd | 685 | } |
2bda0e17 | 686 | |
e373f51b VZ |
687 | void wxRadioBox::SubclassRadioButton(WXHWND hWndBtn) |
688 | { | |
42e69d6b | 689 | #ifdef __WIN32__ |
e373f51b VZ |
690 | HWND hwndBtn = (HWND)hWndBtn; |
691 | ||
692 | if ( !s_wndprocRadioBtn ) | |
20e85460 | 693 | s_wndprocRadioBtn = (WXFARPROC)::GetWindowLong(hwndBtn, GWL_WNDPROC); |
e373f51b | 694 | |
2a47d3c1 | 695 | // No GWL_USERDATA in Win16, so omit this subclassing. |
e373f51b VZ |
696 | ::SetWindowLong(hwndBtn, GWL_WNDPROC, (long)wxRadioBtnWndProc); |
697 | ::SetWindowLong(hwndBtn, GWL_USERDATA, (long)this); | |
42e69d6b | 698 | #endif // __WIN32__ |
e373f51b VZ |
699 | } |
700 | ||
9a5ccab4 VZ |
701 | void wxRadioBox::SendNotificationEvent() |
702 | { | |
703 | wxCommandEvent event(wxEVT_COMMAND_RADIOBOX_SELECTED, m_windowId); | |
704 | event.SetInt( m_selectedButton ); | |
705 | event.SetEventObject( this ); | |
706 | ProcessCommand(event); | |
707 | } | |
708 | ||
e373f51b VZ |
709 | // --------------------------------------------------------------------------- |
710 | // window proc for radio buttons | |
711 | // --------------------------------------------------------------------------- | |
712 | ||
2a47d3c1 JS |
713 | #ifdef __WIN32__ |
714 | ||
e373f51b VZ |
715 | LRESULT APIENTRY _EXPORT wxRadioBtnWndProc(HWND hwnd, |
716 | UINT msg, | |
717 | WPARAM wParam, | |
718 | LPARAM lParam) | |
719 | { | |
720 | bool processed = TRUE; | |
721 | if ( msg != WM_KEYDOWN ) | |
722 | processed = FALSE; | |
723 | ||
724 | if ( processed ) | |
725 | { | |
726 | wxRadioBox *radiobox = (wxRadioBox *)::GetWindowLong(hwnd, GWL_USERDATA); | |
727 | ||
837e5743 | 728 | wxCHECK_MSG( radiobox, 0, _T("radio button without radio box?") ); |
e373f51b VZ |
729 | |
730 | int sel = radiobox->GetSelection(); | |
731 | ||
732 | switch ( wParam ) | |
733 | { | |
734 | case VK_UP: | |
735 | sel--; | |
736 | break; | |
737 | ||
738 | case VK_LEFT: | |
739 | sel -= radiobox->GetNumVer(); | |
740 | break; | |
741 | ||
742 | case VK_DOWN: | |
743 | sel++; | |
744 | break; | |
745 | ||
746 | case VK_RIGHT: | |
747 | sel += radiobox->GetNumVer(); | |
748 | break; | |
749 | ||
750 | case VK_TAB: | |
751 | { | |
752 | wxNavigationKeyEvent event; | |
753 | event.SetDirection(!(::GetKeyState(VK_SHIFT) & 0x100)); | |
754 | event.SetWindowChange(FALSE); | |
755 | event.SetEventObject(radiobox); | |
756 | ||
757 | if ( radiobox->GetEventHandler()->ProcessEvent(event) ) | |
758 | return 0; | |
759 | } | |
760 | // fall through | |
761 | ||
762 | default: | |
763 | processed = FALSE; | |
764 | } | |
765 | ||
766 | if ( processed ) | |
767 | { | |
768 | if ( sel >= 0 && sel < radiobox->Number() ) | |
9a5ccab4 | 769 | { |
e373f51b | 770 | radiobox->SetSelection(sel); |
9a5ccab4 VZ |
771 | |
772 | // emulate the button click | |
773 | radiobox->SendNotificationEvent(); | |
774 | } | |
e373f51b VZ |
775 | } |
776 | } | |
777 | ||
778 | if ( !processed ) | |
20e85460 | 779 | return ::CallWindowProc(CASTWNDPROC s_wndprocRadioBtn, hwnd, msg, wParam, lParam); |
e373f51b VZ |
780 | else |
781 | return 0; | |
782 | } | |
42e69d6b VZ |
783 | |
784 | #endif // __WIN32__ | |
e373f51b | 785 |