]> git.saurik.com Git - wxWidgets.git/blame - src/msw/radiobox.cpp
More WinCE mods
[wxWidgets.git] / src / msw / radiobox.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
3ca6a5f0
BP
2// Name: msw/radiobox.cpp
3// Purpose: wxRadioBox implementation
2bda0e17
KB
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
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
1e6feb95
VZ
31#if wxUSE_RADIOBOX
32
2bda0e17 33#ifndef WX_PRECOMP
da07e033
VZ
34 #include "wx/bitmap.h"
35 #include "wx/brush.h"
36 #include "wx/radiobox.h"
f6bcfd97 37 #include "wx/settings.h"
381dd4bf 38 #include "wx/log.h"
2bda0e17
KB
39#endif
40
41#include "wx/msw/private.h"
42
f048e32f 43#if wxUSE_TOOLTIPS
ae090fdb 44 #if !defined(__GNUWIN32_OLD__) || defined(__CYGWIN10__)
8614c467 45 #include <commctrl.h>
5ace0213 46 #endif
f048e32f
VZ
47 #include "wx/tooltip.h"
48#endif // wxUSE_TOOLTIPS
49
d3acd369 50IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl)
2bda0e17 51
8614c467
VZ
52// there are two possible ways to create the radio buttons: either as children
53// of the radiobox or as siblings of it - allow playing with both variants for
54// now, eventually we will choose the best one for our purposes
f048e32f 55//
8614c467
VZ
56// two main problems are the keyboard navigation inside the radiobox (arrows
57// should switch between buttons, not pass focus to the next control) and the
58// tooltips - a tooltip is associated with the radiobox itself, not the
59// children...
60//
61// the problems with setting this to 1:
62// a) Alt-<mnemonic of radiobox> isn't handled properly by IsDialogMessage()
63// because it sets focus to the next control accepting it which is not a
64// radio button but a radiobox sibling in this case - the only solution to
65// this would be to handle Alt-<mnemonic> ourselves
66// b) the problems with setting radiobox colours under Win98/2K were reported
67// but I couldn't reproduce it so I have no idea about what causes it
68//
69// the problems with setting this to 0:
70// a) the tooltips are not shown for the radiobox - possible solution: make
71// TTM_WINDOWFROMPOS handling code in msw/tooltip.cpp work (easier said than
72// done because I don't know why it doesn't work)
d1e418ea 73#define RADIOBTN_PARENT_IS_RADIOBOX 0
f048e32f 74
e373f51b
VZ
75// ---------------------------------------------------------------------------
76// private functions
77// ---------------------------------------------------------------------------
78
e373f51b 79// wnd proc for radio buttons
2a47d3c1 80#ifdef __WIN32__
e373f51b
VZ
81LRESULT APIENTRY _EXPORT wxRadioBtnWndProc(HWND hWnd,
82 UINT message,
83 WPARAM wParam,
84 LPARAM lParam);
85
86// ---------------------------------------------------------------------------
87// global vars
88// ---------------------------------------------------------------------------
89
90// the pointer to standard radio button wnd proc
457e6c54 91static WXFARPROC s_wndprocRadioBtn = (WXFARPROC)NULL;
e373f51b 92
42e69d6b
VZ
93#endif // __WIN32__
94
e373f51b
VZ
95// ===========================================================================
96// implementation
97// ===========================================================================
98
99// ---------------------------------------------------------------------------
100// wxRadioBox
101// ---------------------------------------------------------------------------
102
1e6feb95
VZ
103int wxRadioBox::GetCount() const
104{
105 return m_noItems;
106}
107
108int wxRadioBox::GetColumnCount() const
109{
110 return GetNumHor();
111}
112
113int wxRadioBox::GetRowCount() const
114{
115 return GetNumVer();
116}
117
3ca6a5f0 118// returns the number of rows
e373f51b
VZ
119int wxRadioBox::GetNumVer() const
120{
121 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
122 {
123 return m_majorDim;
124 }
125 else
126 {
127 return (m_noItems + m_majorDim - 1)/m_majorDim;
128 }
129}
130
3ca6a5f0 131// returns the number of columns
e373f51b
VZ
132int wxRadioBox::GetNumHor() const
133{
134 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
135 {
136 return (m_noItems + m_majorDim - 1)/m_majorDim;
137 }
138 else
139 {
140 return m_majorDim;
141 }
142}
143
42e69d6b 144bool wxRadioBox::MSWCommand(WXUINT cmd, WXWORD id)
2bda0e17 145{
42e69d6b 146 if ( cmd == BN_CLICKED )
da07e033 147 {
f6bcfd97
BP
148 if (id == GetId())
149 return TRUE;
150
9a5ccab4 151 int selectedButton = -1;
e373f51b
VZ
152
153 for ( int i = 0; i < m_noItems; i++ )
154 {
cc2b7472 155 if ( id == wxGetWindowId(m_radioButtons[i]) )
e373f51b 156 {
9a5ccab4 157 selectedButton = i;
e373f51b
VZ
158
159 break;
160 }
161 }
162
3ca6a5f0
BP
163 if ( selectedButton == -1 )
164 {
165 // just ignore it - due to a hack with WM_NCHITTEST handling in our
166 // wnd proc, we can receive dummy click messages when we click near
167 // the radiobox edge (this is ugly but Julian wouldn't let me get
168 // rid of this...)
169 return FALSE;
170 }
2bda0e17 171
9a5ccab4
VZ
172 if ( selectedButton != m_selectedButton )
173 {
174 m_selectedButton = selectedButton;
175
176 SendNotificationEvent();
177 }
178 //else: don't generate events when the selection doesn't change
e373f51b 179
da07e033
VZ
180 return TRUE;
181 }
e373f51b
VZ
182 else
183 return FALSE;
2bda0e17
KB
184}
185
2bda0e17 186// Radio box item
e373f51b 187wxRadioBox::wxRadioBox()
2bda0e17 188{
da07e033
VZ
189 m_selectedButton = -1;
190 m_noItems = 0;
191 m_noRowsOrCols = 0;
192 m_radioButtons = NULL;
e373f51b
VZ
193 m_majorDim = 0;
194 m_radioWidth = NULL;
195 m_radioHeight = NULL;
2bda0e17
KB
196}
197
f048e32f
VZ
198bool wxRadioBox::Create(wxWindow *parent,
199 wxWindowID id,
200 const wxString& title,
201 const wxPoint& pos,
202 const wxSize& size,
203 int n,
204 const wxString choices[],
205 int majorDim,
206 long style,
207 const wxValidator& val,
208 const wxString& name)
2bda0e17 209{
f048e32f 210 // initialize members
da07e033 211 m_selectedButton = -1;
4afd7529 212 m_noItems = 0;
2bda0e17 213
3ca6a5f0 214 m_majorDim = majorDim == 0 ? n : majorDim;
da07e033 215 m_noRowsOrCols = majorDim;
da07e033 216
f048e32f
VZ
217 // common initialization
218 if ( !CreateControl(parent, id, pos, size, style, val, name) )
219 return FALSE;
2bda0e17 220
f048e32f 221 // create the static box
d9317fd4
VZ
222 if ( !MSWCreateControl(wxT("BUTTON"), BS_GROUPBOX | WS_GROUP,
223 pos, size, title, 0) )
f048e32f 224 return FALSE;
da07e033 225
f048e32f 226 // and now create the buttons
4afd7529 227 m_noItems = n;
f048e32f
VZ
228#if RADIOBTN_PARENT_IS_RADIOBOX
229 HWND hwndParent = GetHwnd();
230#else
231 HWND hwndParent = GetHwndOf(parent);
232#endif
da07e033
VZ
233
234 // Some radio boxes test consecutive id.
e373f51b 235 (void)NewControlId();
da07e033 236 m_radioButtons = new WXHWND[n];
e373f51b
VZ
237 m_radioWidth = new int[n];
238 m_radioHeight = new int[n];
f048e32f
VZ
239
240 WXHFONT hfont = 0;
241 wxFont& font = GetFont();
242 if ( font.Ok() )
da07e033 243 {
f048e32f
VZ
244 hfont = font.GetResourceHandle();
245 }
246
247 for ( int i = 0; i < n; i++ )
248 {
249 m_radioWidth[i] =
250 m_radioHeight[i] = -1;
d3acd369 251 long styleBtn = BS_AUTORADIOBUTTON | WS_TABSTOP | WS_CHILD | WS_VISIBLE;
e373f51b 252 if ( i == 0 && style == 0 )
f048e32f
VZ
253 styleBtn |= WS_GROUP;
254
da07e033 255 long newId = NewControlId();
da07e033 256
f048e32f
VZ
257 HWND hwndBtn = ::CreateWindow(_T("BUTTON"),
258 choices[i],
259 styleBtn,
260 0, 0, 0, 0, // will be set in SetSize()
e373f51b 261 hwndParent,
f048e32f
VZ
262 (HMENU)newId,
263 wxGetInstance(),
e373f51b 264 NULL);
2bda0e17 265
f048e32f
VZ
266 if ( !hwndBtn )
267 {
f6bcfd97 268 wxLogLastError(wxT("CreateWindow(radio btn)"));
f048e32f
VZ
269
270 return FALSE;
271 }
272
e373f51b 273 m_radioButtons[i] = (WXHWND)hwndBtn;
42e69d6b 274
e373f51b 275 SubclassRadioButton((WXHWND)hwndBtn);
2bda0e17 276
f048e32f 277 if ( hfont )
da07e033 278 {
f048e32f 279 ::SendMessage(hwndBtn, WM_SETFONT, (WPARAM)hfont, 0L);
da07e033 280 }
e373f51b 281
f048e32f 282 m_subControls.Add(newId);
da07e033 283 }
e373f51b 284
da07e033 285 // Create a dummy radio control to end the group.
f048e32f 286 (void)::CreateWindow(_T("BUTTON"),
fda7962d 287 wxEmptyString,
f048e32f 288 WS_GROUP | BS_AUTORADIOBUTTON | WS_CHILD,
e373f51b
VZ
289 0, 0, 0, 0, hwndParent,
290 (HMENU)NewControlId(), wxGetInstance(), NULL);
2bda0e17 291
da07e033 292 SetSelection(0);
2bda0e17 293
f048e32f 294 SetSize(pos.x, pos.y, size.x, size.y);
2bda0e17 295
da07e033 296 return TRUE;
2bda0e17 297}
2bda0e17 298
e373f51b 299wxRadioBox::~wxRadioBox()
2bda0e17 300{
da07e033 301 m_isBeingDeleted = TRUE;
1eb20d4a 302
da07e033
VZ
303 if (m_radioButtons)
304 {
305 int i;
306 for (i = 0; i < m_noItems; i++)
42e69d6b 307 ::DestroyWindow((HWND)m_radioButtons[i]);
da07e033
VZ
308 delete[] m_radioButtons;
309 }
42e69d6b 310
da07e033 311 if (m_radioWidth)
e373f51b 312 delete[] m_radioWidth;
da07e033 313 if (m_radioHeight)
e373f51b 314 delete[] m_radioHeight;
2bda0e17
KB
315
316}
317
1e6feb95 318void wxRadioBox::SetString(int item, const wxString& label)
2bda0e17 319{
223d09f6 320 wxCHECK_RET( item >= 0 && item < m_noItems, wxT("invalid radiobox index") );
d66a042c 321
e373f51b 322 m_radioWidth[item] = m_radioHeight[item] = -1;
42e69d6b 323 SetWindowText((HWND)m_radioButtons[item], label.c_str());
2bda0e17
KB
324}
325
debe6624 326void wxRadioBox::SetSelection(int N)
2bda0e17 327{
223d09f6 328 wxCHECK_RET( (N >= 0) && (N < m_noItems), wxT("invalid radiobox index") );
2bda0e17 329
da07e033
VZ
330 // Following necessary for Win32s, because Win32s translate BM_SETCHECK
331 if (m_selectedButton >= 0 && m_selectedButton < m_noItems)
e373f51b
VZ
332 ::SendMessage((HWND) m_radioButtons[m_selectedButton], BM_SETCHECK, 0, 0L);
333
334 ::SendMessage((HWND)m_radioButtons[N], BM_SETCHECK, 1, 0L);
335 ::SetFocus((HWND)m_radioButtons[N]);
2bda0e17 336
da07e033 337 m_selectedButton = N;
2bda0e17
KB
338}
339
340// Get single selection, for single choice list items
e373f51b 341int wxRadioBox::GetSelection() const
2bda0e17 342{
da07e033 343 return m_selectedButton;
2bda0e17
KB
344}
345
346// Find string for position
1e6feb95 347wxString wxRadioBox::GetString(int item) const
2bda0e17 348{
1e6feb95
VZ
349 wxCHECK_MSG( item >= 0 && item < m_noItems, wxEmptyString,
350 wxT("invalid radiobox index") );
351
352 return wxGetWindowText(m_radioButtons[item]);
2bda0e17
KB
353}
354
3ca6a5f0
BP
355// ----------------------------------------------------------------------------
356// size calculations
357// ----------------------------------------------------------------------------
358
359wxSize wxRadioBox::GetMaxButtonSize() const
360{
361 // calculate the max button size
362 int widthMax = 0,
363 heightMax = 0;
364 for ( int i = 0 ; i < m_noItems; i++ )
365 {
366 int width, height;
367 if ( m_radioWidth[i] < 0 )
368 {
369 GetTextExtent(wxGetWindowText(m_radioButtons[i]), &width, &height);
370
371 // adjust the size to take into account the radio box itself
372 // FIXME this is totally bogus!
373 width += RADIO_SIZE;
374 height *= 3;
375 height /= 2;
376 }
377 else
378 {
379 width = m_radioWidth[i];
380 height = m_radioHeight[i];
381 }
382
383 if ( widthMax < width )
384 widthMax = width;
385 if ( heightMax < height )
386 heightMax = height;
387 }
388
389 return wxSize(widthMax, heightMax);
390}
391
392wxSize wxRadioBox::GetTotalButtonSize(const wxSize& sizeBtn) const
393{
394 // the radiobox should be big enough for its buttons
395 int cx1, cy1;
396 wxGetCharSize(m_hWnd, &cx1, &cy1, &GetFont());
397
398 int extraHeight = cy1;
399
c7fd6717 400 /* We'll assume the adjustments below are OK for Win 3.1 too
3ca6a5f0
BP
401#if defined(CTL3D) && !CTL3D
402 // Requires a bigger group box in plain Windows
403 extraHeight *= 3;
404 extraHeight /= 2;
405#endif
c7fd6717
JS
406 */
407
3ca6a5f0
BP
408 int height = GetNumVer() * sizeBtn.y + cy1/2 + extraHeight;
409 int width = GetNumHor() * (sizeBtn.x + cx1) + cx1;
410
c7fd6717
JS
411 // Add extra space under the label, if it exists.
412 if (!wxControl::GetLabel().IsEmpty())
413 height += cy1/2;
414
3ca6a5f0
BP
415 // and also wide enough for its label
416 int widthLabel;
417 GetTextExtent(GetTitle(), &widthLabel, NULL);
418 widthLabel += RADIO_SIZE; // FIXME this is bogus too
419 if ( widthLabel > width )
420 width = widthLabel;
421
422 return wxSize(width, height);
423}
424
425wxSize wxRadioBox::DoGetBestSize() const
426{
427 return GetTotalButtonSize(GetMaxButtonSize());
428}
429
1f916a19 430// Restored old code.
bfc6fde4 431void wxRadioBox::DoSetSize(int x, int y, int width, int height, int sizeFlags)
1f916a19 432{
4438caf4
VZ
433 int currentX, currentY;
434 GetPosition(&currentX, &currentY);
c219cecc
VZ
435 int widthOld, heightOld;
436 GetSize(&widthOld, &heightOld);
437
4438caf4
VZ
438 int xx = x;
439 int yy = y;
440
ce96b7a0 441 if (x == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
4438caf4 442 xx = currentX;
ce96b7a0 443 if (y == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
4438caf4
VZ
444 yy = currentY;
445
f048e32f
VZ
446#if RADIOBTN_PARENT_IS_RADIOBOX
447 int y_offset = 0;
448 int x_offset = 0;
449#else
4438caf4
VZ
450 int y_offset = yy;
451 int x_offset = xx;
f048e32f
VZ
452#endif
453
3ca6a5f0 454 int cx1, cy1;
4438caf4
VZ
455 wxGetCharSize(m_hWnd, &cx1, &cy1, & GetFont());
456
457 // Attempt to have a look coherent with other platforms: We compute the
458 // biggest toggle dim, then we align all items according this value.
3ca6a5f0
BP
459 wxSize maxSize = GetMaxButtonSize();
460 int maxWidth = maxSize.x,
461 maxHeight = maxSize.y;
4438caf4 462
3ca6a5f0
BP
463 wxSize totSize = GetTotalButtonSize(maxSize);
464 int totWidth = totSize.x,
465 totHeight = totSize.y;
466
467 // only change our width/height if asked for
468 if ( width == -1 )
1f916a19 469 {
3ca6a5f0
BP
470 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
471 width = totWidth;
4438caf4 472 else
3ca6a5f0 473 width = widthOld;
1f916a19 474 }
1f916a19 475
3ca6a5f0 476 if ( height == -1 )
4438caf4 477 {
3ca6a5f0
BP
478 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
479 height = totHeight;
4438caf4 480 else
3ca6a5f0
BP
481 height = heightOld;
482 }
4438caf4 483
3ca6a5f0 484 ::MoveWindow(GetHwnd(), xx, yy, width, height, TRUE);
c219cecc 485
3ca6a5f0
BP
486 // Now position all the buttons: the current button will be put at
487 // wxPoint(x_offset, y_offset) and the new row/column will start at
488 // startX/startY. The size of all buttons will be the same wxSize(maxWidth,
489 // maxHeight) except for the buttons in the last column which should extend
490 // to the right border of radiobox and thus can be wider than this.
c219cecc 491
3ca6a5f0
BP
492 // Also, remember that wxRA_SPECIFY_COLS means that we arrange buttons in
493 // left to right order and m_majorDim is the number of columns while
494 // wxRA_SPECIFY_ROWS means that the buttons are arranged top to bottom and
495 // m_majorDim is the number of rows.
4438caf4 496
3ca6a5f0
BP
497 x_offset += cx1;
498 y_offset += cy1;
1f916a19 499
c7fd6717
JS
500 // Add extra space under the label, if it exists.
501 if (!wxControl::GetLabel().IsEmpty())
502 y_offset += cy1/2;
3ca6a5f0 503
4438caf4
VZ
504 int startX = x_offset;
505 int startY = y_offset;
1f916a19 506
3ca6a5f0 507 for ( int i = 0; i < m_noItems; i++ )
1f916a19 508 {
3ca6a5f0
BP
509 // the last button in the row may be wider than the other ones as the
510 // radiobox may be wider than the sum of the button widths (as it
511 // happens, for example, when the radiobox label is very long)
512 bool isLastInTheRow;
513 if ( m_windowStyle & wxRA_SPECIFY_COLS )
514 {
515 // item is the last in its row if it is a multiple of the number of
516 // columns or if it is just the last item
517 int n = i + 1;
518 isLastInTheRow = ((n % m_majorDim) == 0) || (n == m_noItems);
519 }
520 else // wxRA_SPECIFY_ROWS
4438caf4 521 {
3ca6a5f0
BP
522 // item is the last in the row if it is in the last columns
523 isLastInTheRow = i >= (m_noItems/m_majorDim)*m_majorDim;
524 }
525
526 // is this the start of new row/column?
527 if ( i && (i % m_majorDim == 0) )
528 {
529 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
4438caf4 530 {
3ca6a5f0 531 // start of new column
4438caf4
VZ
532 y_offset = startY;
533 x_offset += maxWidth + cx1;
534 }
3ca6a5f0 535 else // start of new row
4438caf4
VZ
536 {
537 x_offset = startX;
538 y_offset += maxHeight;
539 if (m_radioWidth[0]>0)
540 y_offset += cy1/2;
541 }
542 }
3ca6a5f0
BP
543
544 int widthBtn;
545 if ( isLastInTheRow )
4438caf4 546 {
3ca6a5f0
BP
547 // make the button go to the end of radio box
548 widthBtn = startX + width - x_offset - 2*cx1;
549 if ( widthBtn < maxWidth )
550 widthBtn = maxWidth;
4438caf4
VZ
551 }
552 else
553 {
3ca6a5f0
BP
554 // normal button, always of the same size
555 widthBtn = maxWidth;
4438caf4 556 }
1f916a19 557
f048e32f
VZ
558 // VZ: make all buttons of the same, maximal size - like this they
559 // cover the radiobox entirely and the radiobox tooltips are always
560 // shown (otherwise they are not when the mouse pointer is in the
561 // radiobox part not belonging to any radiobutton)
562 ::MoveWindow((HWND)m_radioButtons[i],
3ca6a5f0 563 x_offset, y_offset, widthBtn, maxHeight,
f048e32f 564 TRUE);
4438caf4 565
3ca6a5f0
BP
566 // where do we put the next button?
567 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
4438caf4 568 {
3ca6a5f0 569 // below this one
4438caf4
VZ
570 y_offset += maxHeight;
571 if (m_radioWidth[0]>0)
572 y_offset += cy1/2;
573 }
574 else
3ca6a5f0
BP
575 {
576 // to the right of this one
577 x_offset += widthBtn + cx1;
578 }
1f916a19 579 }
1f916a19
JS
580}
581
2bda0e17
KB
582void wxRadioBox::GetSize(int *width, int *height) const
583{
da07e033
VZ
584 RECT rect;
585 rect.left = -1; rect.right = -1; rect.top = -1; rect.bottom = -1;
2bda0e17 586
da07e033
VZ
587 if (m_hWnd)
588 wxFindMaxSize(m_hWnd, &rect);
2bda0e17 589
da07e033
VZ
590 int i;
591 for (i = 0; i < m_noItems; i++)
592 wxFindMaxSize(m_radioButtons[i], &rect);
2bda0e17 593
da07e033
VZ
594 *width = rect.right - rect.left;
595 *height = rect.bottom - rect.top;
2bda0e17
KB
596}
597
598void wxRadioBox::GetPosition(int *x, int *y) const
599{
da07e033 600 wxWindow *parent = GetParent();
f048e32f 601 RECT rect = { -1, -1, -1, -1 };
da07e033
VZ
602
603 int i;
604 for (i = 0; i < m_noItems; i++)
605 wxFindMaxSize(m_radioButtons[i], &rect);
606
607 if (m_hWnd)
608 wxFindMaxSize(m_hWnd, &rect);
609
f048e32f
VZ
610 // Since we now have the absolute screen coords, if there's a parent we
611 // must subtract its top left corner
da07e033
VZ
612 POINT point;
613 point.x = rect.left;
614 point.y = rect.top;
615 if (parent)
616 {
617 ::ScreenToClient((HWND) parent->GetHWND(), &point);
618 }
f048e32f
VZ
619
620 // We may be faking the client origin. So a window that's really at (0, 30)
621 // may appear (to wxWin apps) to be at (0, 0).
da07e033
VZ
622 if (GetParent())
623 {
624 wxPoint pt(GetParent()->GetClientAreaOrigin());
625 point.x -= pt.x;
626 point.y -= pt.y;
627 }
628
629 *x = point.x;
630 *y = point.y;
2bda0e17
KB
631}
632
e373f51b 633void wxRadioBox::SetFocus()
2bda0e17 634{
da07e033
VZ
635 if (m_noItems > 0)
636 {
637 if (m_selectedButton == -1)
638 ::SetFocus((HWND) m_radioButtons[0]);
639 else
640 ::SetFocus((HWND) m_radioButtons[m_selectedButton]);
641 }
2bda0e17
KB
642
643}
644
debe6624 645bool wxRadioBox::Show(bool show)
2bda0e17 646{
42e69d6b
VZ
647 if ( !wxControl::Show(show) )
648 return FALSE;
649
650 int nCmdShow = show ? SW_SHOW : SW_HIDE;
651 for ( int i = 0; i < m_noItems; i++ )
652 {
653 ::ShowWindow((HWND)m_radioButtons[i], nCmdShow);
654 }
655
da07e033 656 return TRUE;
2bda0e17
KB
657}
658
659// Enable a specific button
debe6624 660void wxRadioBox::Enable(int item, bool enable)
2bda0e17 661{
42e69d6b 662 wxCHECK_RET( item >= 0 && item < m_noItems,
223d09f6 663 wxT("invalid item in wxRadioBox::Enable()") );
42e69d6b
VZ
664
665 ::EnableWindow((HWND) m_radioButtons[item], enable);
2bda0e17
KB
666}
667
668// Enable all controls
cc2b7472 669bool wxRadioBox::Enable(bool enable)
2bda0e17 670{
cc2b7472
VZ
671 if ( !wxControl::Enable(enable) )
672 return FALSE;
1eb20d4a 673
42e69d6b 674 for (int i = 0; i < m_noItems; i++)
da07e033 675 ::EnableWindow((HWND) m_radioButtons[i], enable);
cc2b7472
VZ
676
677 return TRUE;
2bda0e17
KB
678}
679
680// Show a specific button
debe6624 681void wxRadioBox::Show(int item, bool show)
2bda0e17 682{
42e69d6b 683 wxCHECK_RET( item >= 0 && item < m_noItems,
223d09f6 684 wxT("invalid item in wxRadioBox::Show()") );
42e69d6b
VZ
685
686 ::ShowWindow((HWND)m_radioButtons[item], show ? SW_SHOW : SW_HIDE);
2bda0e17
KB
687}
688
2bda0e17
KB
689bool wxRadioBox::ContainsHWND(WXHWND hWnd) const
690{
1e6feb95
VZ
691 size_t count = GetCount();
692 for ( size_t i = 0; i < count; i++ )
42e69d6b 693 {
1e6feb95 694 if ( GetRadioButtons()[i] == hWnd )
da07e033 695 return TRUE;
42e69d6b
VZ
696 }
697
da07e033 698 return FALSE;
2bda0e17
KB
699}
700
4afd7529 701void wxRadioBox::Command(wxCommandEvent & event)
2bda0e17 702{
da07e033
VZ
703 SetSelection (event.m_commandInt);
704 ProcessCommand (event);
2bda0e17
KB
705}
706
8614c467
VZ
707// NB: if this code is changed, wxGetWindowForHWND() which relies on having the
708// radiobox pointer in GWL_USERDATA for radio buttons must be updated too!
e373f51b
VZ
709void wxRadioBox::SubclassRadioButton(WXHWND hWndBtn)
710{
8614c467 711 // No GWL_USERDATA in Win16, so omit this subclassing.
42e69d6b 712#ifdef __WIN32__
e373f51b
VZ
713 HWND hwndBtn = (HWND)hWndBtn;
714
715 if ( !s_wndprocRadioBtn )
457e6c54 716 s_wndprocRadioBtn = (WXFARPROC)::GetWindowLong(hwndBtn, GWL_WNDPROC);
e373f51b
VZ
717
718 ::SetWindowLong(hwndBtn, GWL_WNDPROC, (long)wxRadioBtnWndProc);
719 ::SetWindowLong(hwndBtn, GWL_USERDATA, (long)this);
42e69d6b 720#endif // __WIN32__
e373f51b
VZ
721}
722
9a5ccab4
VZ
723void wxRadioBox::SendNotificationEvent()
724{
725 wxCommandEvent event(wxEVT_COMMAND_RADIOBOX_SELECTED, m_windowId);
726 event.SetInt( m_selectedButton );
36dda0de 727 event.SetString( GetString(m_selectedButton) );
9a5ccab4
VZ
728 event.SetEventObject( this );
729 ProcessCommand(event);
730}
731
4afd7529
VZ
732bool wxRadioBox::SetFont(const wxFont& font)
733{
734 if ( !wxControl::SetFont(font) )
735 {
736 // nothing to do
737 return FALSE;
738 }
739
740 // also set the font of our radio buttons
741 WXHFONT hfont = wxFont(font).GetResourceHandle();
742 for ( int n = 0; n < m_noItems; n++ )
743 {
f6bcfd97
BP
744 HWND hwndBtn = (HWND)m_radioButtons[n];
745 ::SendMessage(hwndBtn, WM_SETFONT, (WPARAM)hfont, 0L);
4afd7529 746
f6bcfd97
BP
747 // otherwise the buttons are not redrawn correctly
748 ::InvalidateRect(hwndBtn, NULL, FALSE /* don't erase bg */);
749 }
8614c467 750
4afd7529
VZ
751 return TRUE;
752}
753
8614c467
VZ
754// ----------------------------------------------------------------------------
755// our window proc
756// ----------------------------------------------------------------------------
757
c92d798f
JS
758long wxRadioBox::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
759{
d3acd369 760 switch ( nMsg )
c92d798f 761 {
8614c467 762#ifdef __WIN32__
d3acd369
VZ
763 case WM_CTLCOLORSTATIC:
764 // set the colour of the radio buttons to be the same as ours
765 {
766 HDC hdc = (HDC)wParam;
c92d798f 767
d3acd369
VZ
768 const wxColour& colBack = GetBackgroundColour();
769 ::SetBkColor(hdc, wxColourToRGB(colBack));
770 ::SetTextColor(hdc, wxColourToRGB(GetForegroundColour()));
c92d798f 771
d3acd369
VZ
772 wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBack, wxSOLID);
773
774 return (WXHBRUSH)brush->GetResourceHandle();
775 }
8614c467 776#endif // Win32
c92d798f 777
73b26a1c
VZ
778 // VZ: this code breaks radiobox redrawing under Windows XP, don't use
779 // it. If you need to get messages from the static controls,
780 // create them as a child of another (non static) window
781#if 0
d3acd369
VZ
782 // This is required for the radiobox to be sensitive to mouse input,
783 // e.g. for Dialog Editor.
784 case WM_NCHITTEST:
785 {
786 int xPos = LOWORD(lParam); // horizontal position of cursor
787 int yPos = HIWORD(lParam); // vertical position of cursor
788
789 ScreenToClient(&xPos, &yPos);
790
791 // Make sure you can drag by the top of the groupbox, but let
792 // other (enclosed) controls get mouse events also
793 if (yPos < 10)
794 return (long)HTCLIENT;
795 }
8614c467 796 break;
73b26a1c 797#endif // 0
d3acd369 798 }
8614c467
VZ
799
800 return wxControl::MSWWindowProc(nMsg, wParam, lParam);
c92d798f
JS
801}
802
33ac7e6f 803WXHBRUSH wxRadioBox::OnCtlColor(WXHDC pDC, WXHWND WXUNUSED(pWnd), WXUINT WXUNUSED(nCtlColor),
788722ac
JS
804#if wxUSE_CTL3D
805 WXUINT message,
806 WXWPARAM wParam,
807 WXLPARAM lParam
808#else
33ac7e6f
KB
809 WXUINT WXUNUSED(message),
810 WXWPARAM WXUNUSED(wParam),
788722ac
JS
811 WXLPARAM WXUNUSED(lParam)
812#endif
813 )
f6bcfd97
BP
814{
815#if wxUSE_CTL3D
816 if ( m_useCtl3D )
817 {
818 HBRUSH hbrush = Ctl3dCtlColorEx(message, wParam, lParam);
819 return (WXHBRUSH) hbrush;
820 }
821#endif // wxUSE_CTL3D
822
823 HDC hdc = (HDC)pDC;
f6bcfd97
BP
824 wxColour colBack = GetBackgroundColour();
825
826 if (!IsEnabled())
a756f210 827 colBack = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
f6bcfd97
BP
828
829 ::SetBkColor(hdc, wxColourToRGB(colBack));
830 ::SetTextColor(hdc, wxColourToRGB(GetForegroundColour()));
831
832 wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBack, wxSOLID);
833
834 return (WXHBRUSH)brush->GetResourceHandle();
835}
836
837
e373f51b
VZ
838// ---------------------------------------------------------------------------
839// window proc for radio buttons
840// ---------------------------------------------------------------------------
841
2a47d3c1
JS
842#ifdef __WIN32__
843
e373f51b 844LRESULT APIENTRY _EXPORT wxRadioBtnWndProc(HWND hwnd,
8614c467 845 UINT message,
e373f51b
VZ
846 WPARAM wParam,
847 LPARAM lParam)
848{
8614c467 849 switch ( message )
e373f51b 850 {
8614c467
VZ
851 case WM_GETDLGCODE:
852 // we must tell IsDialogMessage()/our kbd processing code that we
853 // want to process arrows ourselves because neither of them is
854 // smart enough to handle arrows properly for us
855 {
8ad6ad99 856 long lDlgCode = ::CallWindowProc(CASTWNDPROC s_wndprocRadioBtn, hwnd,
8614c467 857 message, wParam, lParam);
8ad6ad99 858
8614c467
VZ
859 return lDlgCode | DLGC_WANTARROWS;
860 }
e373f51b 861
8614c467
VZ
862#if wxUSE_TOOLTIPS
863 case WM_NOTIFY:
f048e32f 864 {
8614c467 865 NMHDR* hdr = (NMHDR *)lParam;
2b5f62a0 866 if ( hdr->code == TTN_NEEDTEXT )
e373f51b 867 {
8614c467
VZ
868 wxRadioBox *radiobox = (wxRadioBox *)
869 ::GetWindowLong(hwnd, GWL_USERDATA);
e373f51b 870
8614c467
VZ
871 wxCHECK_MSG( radiobox, 0,
872 wxT("radio button without radio box?") );
873
874 wxToolTip *tooltip = radiobox->GetToolTip();
875 if ( tooltip )
876 {
877 TOOLTIPTEXT *ttt = (TOOLTIPTEXT *)lParam;
878 ttt->lpszText = (wxChar *)tooltip->GetTip().c_str();
879 }
880
881 // processed
882 return 0;
e373f51b 883 }
f048e32f 884 }
8614c467 885 break;
f048e32f 886#endif // wxUSE_TOOLTIPS
f048e32f 887
8614c467 888 case WM_KEYDOWN:
9a5ccab4 889 {
8614c467
VZ
890 wxRadioBox *radiobox = (wxRadioBox *)
891 ::GetWindowLong(hwnd, GWL_USERDATA);
f048e32f 892
8614c467 893 wxCHECK_MSG( radiobox, 0, wxT("radio button without radio box?") );
f048e32f 894
8614c467 895 bool processed = TRUE;
f048e32f 896
e421922f 897 wxDirection dir;
8614c467
VZ
898 switch ( wParam )
899 {
900 case VK_UP:
1e6feb95 901 dir = wxUP;
8614c467 902 break;
f048e32f 903
8614c467 904 case VK_LEFT:
1e6feb95 905 dir = wxLEFT;
8614c467 906 break;
f048e32f 907
8614c467 908 case VK_DOWN:
1e6feb95 909 dir = wxDOWN;
8614c467 910 break;
f048e32f 911
8614c467 912 case VK_RIGHT:
1e6feb95 913 dir = wxRIGHT;
8614c467
VZ
914 break;
915
916 default:
917 processed = FALSE;
1e6feb95
VZ
918
919 // just to suppress the compiler warning
920 dir = wxALL;
8614c467
VZ
921 }
922
923 if ( processed )
f048e32f 924 {
1e6feb95
VZ
925 int selOld = radiobox->GetSelection();
926 int selNew = radiobox->GetNextItem
927 (
928 selOld,
929 dir,
930 radiobox->GetWindowStyle()
931 );
3ca6a5f0 932
8614c467
VZ
933 if ( selNew != selOld )
934 {
935 radiobox->SetSelection(selNew);
936
937 // emulate the button click
938 radiobox->SendNotificationEvent();
9a5ccab4 939
8614c467
VZ
940 return 0;
941 }
f048e32f 942 }
9a5ccab4 943 }
21687069
VZ
944 break;
945
fac93396
JS
946#ifdef __WIN32__
947 case WM_HELP:
e421922f
VZ
948 {
949 wxRadioBox *radiobox = (wxRadioBox *)
950 ::GetWindowLong(hwnd, GWL_USERDATA);
fac93396 951
e421922f 952 wxCHECK_MSG( radiobox, 0, wxT("radio button without radio box?") );
fac93396 953
e421922f 954 bool processed = TRUE;
fac93396 955
e421922f
VZ
956 HELPINFO* info = (HELPINFO*) lParam;
957 // Don't yet process menu help events, just windows
958 if (info->iContextType == HELPINFO_WINDOW)
fac93396 959 {
e421922f
VZ
960 wxWindow* subjectOfHelp = radiobox;
961 bool eventProcessed = FALSE;
962 while (subjectOfHelp && !eventProcessed)
963 {
964 wxHelpEvent helpEvent(wxEVT_HELP, subjectOfHelp->GetId(), wxPoint(info->MousePos.x, info->MousePos.y) ) ; // info->iCtrlId);
965 helpEvent.SetEventObject(radiobox);
966 eventProcessed = radiobox->GetEventHandler()->ProcessEvent(helpEvent);
fac93396 967
e421922f
VZ
968 // Go up the window hierarchy until the event is handled (or not)
969 subjectOfHelp = subjectOfHelp->GetParent();
970 }
971 processed = eventProcessed;
fac93396 972 }
e421922f
VZ
973 else if (info->iContextType == HELPINFO_MENUITEM)
974 {
975 wxHelpEvent helpEvent(wxEVT_HELP, info->iCtrlId) ;
976 helpEvent.SetEventObject(radiobox);
977 processed = radiobox->GetEventHandler()->ProcessEvent(helpEvent);
978 }
979 else processed = FALSE;
fac93396 980
e421922f
VZ
981 if (processed)
982 return 0;
fac93396 983
e421922f
VZ
984 break;
985 }
986#endif // __WIN32__
e373f51b
VZ
987 }
988
8ad6ad99 989 return ::CallWindowProc(CASTWNDPROC s_wndprocRadioBtn, hwnd, message, wParam, lParam);
e373f51b 990}
42e69d6b
VZ
991
992#endif // __WIN32__
e373f51b 993
1e6feb95 994#endif // wxUSE_RADIOBOX