]> git.saurik.com Git - wxWidgets.git/blame - src/msw/radiobox.cpp
more synonyms for UCS-2/4
[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 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
e373f51b
VZ
12// ===========================================================================
13// declarations
14// ===========================================================================
15
16// ---------------------------------------------------------------------------
17// headers
18// ---------------------------------------------------------------------------
19
14f355c2 20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
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
bd0a76e2 41#include "wx/msw/subwin.h"
2bda0e17 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
3ff066a4 50// TODO: wxCONSTRUCTOR
bc9fb572
JS
51#if 0 // wxUSE_EXTENDED_RTTI
52WX_DEFINE_FLAGS( wxRadioBoxStyle )
53
3ff066a4 54wxBEGIN_FLAGS( wxRadioBoxStyle )
bc9fb572
JS
55 // new style border flags, we put them first to
56 // use them for streaming out
3ff066a4
SC
57 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
58 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
59 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
60 wxFLAGS_MEMBER(wxBORDER_RAISED)
61 wxFLAGS_MEMBER(wxBORDER_STATIC)
62 wxFLAGS_MEMBER(wxBORDER_NONE)
4d08943e 63
bc9fb572 64 // old style border flags
3ff066a4
SC
65 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
66 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
67 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
68 wxFLAGS_MEMBER(wxRAISED_BORDER)
69 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 70 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
71
72 // standard window styles
3ff066a4
SC
73 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
74 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
75 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
76 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 77 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
78 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
79 wxFLAGS_MEMBER(wxVSCROLL)
80 wxFLAGS_MEMBER(wxHSCROLL)
81
82 wxFLAGS_MEMBER(wxRA_SPECIFY_COLS)
83 wxFLAGS_MEMBER(wxRA_HORIZONTAL)
84 wxFLAGS_MEMBER(wxRA_SPECIFY_ROWS)
85 wxFLAGS_MEMBER(wxRA_VERTICAL)
86
87wxEND_FLAGS( wxRadioBoxStyle )
bc9fb572
JS
88
89IMPLEMENT_DYNAMIC_CLASS_XTI(wxRadioBox, wxControl,"wx/radiobox.h")
90
3ff066a4
SC
91wxBEGIN_PROPERTIES_TABLE(wxRadioBox)
92 wxEVENT_PROPERTY( Select , wxEVT_COMMAND_RADIOBOX_SELECTED , wxCommandEvent )
93 wxPROPERTY_FLAGS( WindowStyle , wxRadioBoxStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
94wxEND_PROPERTIES_TABLE()
bc9fb572
JS
95
96#else
d3acd369 97IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl)
bc9fb572 98#endif
2bda0e17 99
066f1b7a 100/*
4d08943e
WS
101 selection
102 content
103 label
104 dimension
105 item
066f1b7a
SC
106*/
107
e373f51b
VZ
108// ---------------------------------------------------------------------------
109// private functions
110// ---------------------------------------------------------------------------
111
e373f51b
VZ
112// wnd proc for radio buttons
113LRESULT APIENTRY _EXPORT wxRadioBtnWndProc(HWND hWnd,
114 UINT message,
115 WPARAM wParam,
116 LPARAM lParam);
117
118// ---------------------------------------------------------------------------
119// global vars
120// ---------------------------------------------------------------------------
121
122// the pointer to standard radio button wnd proc
457e6c54 123static WXFARPROC s_wndprocRadioBtn = (WXFARPROC)NULL;
e373f51b
VZ
124
125// ===========================================================================
126// implementation
127// ===========================================================================
128
129// ---------------------------------------------------------------------------
bd0a76e2 130// wxRadioBox creation
e373f51b
VZ
131// ---------------------------------------------------------------------------
132
2bda0e17 133// Radio box item
bd0a76e2 134void wxRadioBox::Init()
2bda0e17 135{
bd0a76e2 136 m_selectedButton = wxNOT_FOUND;
da07e033 137 m_radioButtons = NULL;
e373f51b
VZ
138 m_majorDim = 0;
139 m_radioWidth = NULL;
140 m_radioHeight = NULL;
2bda0e17
KB
141}
142
f048e32f
VZ
143bool wxRadioBox::Create(wxWindow *parent,
144 wxWindowID id,
145 const wxString& title,
146 const wxPoint& pos,
147 const wxSize& size,
148 int n,
149 const wxString choices[],
150 int majorDim,
151 long style,
152 const wxValidator& val,
153 const wxString& name)
2bda0e17 154{
f048e32f 155 // initialize members
3ca6a5f0 156 m_majorDim = majorDim == 0 ? n : majorDim;
da07e033 157
f048e32f 158 // common initialization
bd0a76e2 159 if ( !wxStaticBox::Create(parent, id, title, pos, size, style, name) )
4d08943e 160 return false;
2bda0e17 161
bd0a76e2
VZ
162#if wxUSE_VALIDATORS
163 SetValidator(val);
164#else
165 wxUnusedVar(val);
166#endif // wxUSE_VALIDATORS/!wxUSE_VALIDATORS
da07e033 167
bd0a76e2 168 m_radioButtons = new wxSubwindows(n);
e373f51b
VZ
169 m_radioWidth = new int[n];
170 m_radioHeight = new int[n];
f048e32f 171
f048e32f
VZ
172 for ( int i = 0; i < n; i++ )
173 {
174 m_radioWidth[i] =
4d08943e 175 m_radioHeight[i] = wxDefaultCoord;
d3acd369 176 long styleBtn = BS_AUTORADIOBUTTON | WS_TABSTOP | WS_CHILD | WS_VISIBLE;
1f621c2f 177 if ( i == 0 )
f048e32f
VZ
178 styleBtn |= WS_GROUP;
179
da07e033 180 long newId = NewControlId();
da07e033 181
f048e32f
VZ
182 HWND hwndBtn = ::CreateWindow(_T("BUTTON"),
183 choices[i],
184 styleBtn,
185 0, 0, 0, 0, // will be set in SetSize()
eba99da4 186 GetHwnd(),
f048e32f
VZ
187 (HMENU)newId,
188 wxGetInstance(),
e373f51b 189 NULL);
2bda0e17 190
f048e32f
VZ
191 if ( !hwndBtn )
192 {
f6bcfd97 193 wxLogLastError(wxT("CreateWindow(radio btn)"));
f048e32f 194
4d08943e 195 return false;
f048e32f
VZ
196 }
197
bd0a76e2 198 (*m_radioButtons)[i] = hwndBtn;
42e69d6b 199
e373f51b 200 SubclassRadioButton((WXHWND)hwndBtn);
2bda0e17 201
f048e32f 202 m_subControls.Add(newId);
da07e033 203 }
e373f51b 204
da07e033 205 // Create a dummy radio control to end the group.
f048e32f 206 (void)::CreateWindow(_T("BUTTON"),
fda7962d 207 wxEmptyString,
f048e32f 208 WS_GROUP | BS_AUTORADIOBUTTON | WS_CHILD,
eba99da4 209 0, 0, 0, 0, GetHwnd(),
e373f51b 210 (HMENU)NewControlId(), wxGetInstance(), NULL);
2bda0e17 211
bd0a76e2
VZ
212 m_radioButtons->SetFont(GetFont());
213
64133c38
JS
214#ifdef __WXWINCE__
215 // Set the z-order correctly
d26e1ab2 216 SetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
64133c38
JS
217#endif
218
da07e033 219 SetSelection(0);
f048e32f 220 SetSize(pos.x, pos.y, size.x, size.y);
2bda0e17 221
7a5a5718
RD
222 // Now that we have items determine what is the best size and set it.
223 SetBestSize(size);
4d08943e
WS
224
225 return true;
2bda0e17 226}
2bda0e17 227
584ad2a3
MB
228bool wxRadioBox::Create(wxWindow *parent,
229 wxWindowID id,
230 const wxString& title,
231 const wxPoint& pos,
232 const wxSize& size,
233 const wxArrayString& choices,
234 int majorDim,
235 long style,
236 const wxValidator& val,
237 const wxString& name)
238{
239 wxCArrayString chs(choices);
240 return Create(parent, id, title, pos, size, chs.GetCount(),
241 chs.GetStrings(), majorDim, style, val, name);
242}
243
e373f51b 244wxRadioBox::~wxRadioBox()
2bda0e17 245{
4d08943e 246 m_isBeingDeleted = true;
1eb20d4a 247
bd0a76e2
VZ
248 delete m_radioButtons;
249 delete[] m_radioWidth;
250 delete[] m_radioHeight;
251}
252
253// NB: if this code is changed, wxGetWindowForHWND() which relies on having the
254// radiobox pointer in GWL_USERDATA for radio buttons must be updated too!
255void wxRadioBox::SubclassRadioButton(WXHWND hWndBtn)
256{
257 HWND hwndBtn = (HWND)hWndBtn;
258
259 if ( !s_wndprocRadioBtn )
260 s_wndprocRadioBtn = (WXFARPROC)wxGetWindowProc(hwndBtn);
261
262 wxSetWindowProc(hwndBtn, wxRadioBtnWndProc);
263 wxSetWindowUserData(hwndBtn, this);
264}
265
266// ----------------------------------------------------------------------------
267// events generation
268// ----------------------------------------------------------------------------
269
270bool wxRadioBox::MSWCommand(WXUINT cmd, WXWORD id)
271{
272 if ( cmd == BN_CLICKED )
da07e033 273 {
bd0a76e2
VZ
274 if (id == GetId())
275 return true;
276
277 int selectedButton = wxNOT_FOUND;
278
279 int count = GetCount();
280 for ( int i = 0; i < count; i++ )
281 {
282 if ( id == wxGetWindowId((*m_radioButtons)[i]) )
283 {
284 selectedButton = i;
285
286 break;
287 }
288 }
289
290 if ( selectedButton == wxNOT_FOUND )
291 {
292 // just ignore it - due to a hack with WM_NCHITTEST handling in our
293 // wnd proc, we can receive dummy click messages when we click near
294 // the radiobox edge (this is ugly but Julian wouldn't let me get
295 // rid of this...)
296 return false;
297 }
298
299 if ( selectedButton != m_selectedButton )
300 {
301 m_selectedButton = selectedButton;
302
303 SendNotificationEvent();
304 }
305 //else: don't generate events when the selection doesn't change
306
307 return true;
da07e033 308 }
bd0a76e2
VZ
309 else
310 return false;
311}
42e69d6b 312
bd0a76e2
VZ
313void wxRadioBox::Command(wxCommandEvent & event)
314{
687706f5 315 SetSelection (event.GetInt());
bd0a76e2
VZ
316 SetFocus();
317 ProcessCommand(event);
318}
2bda0e17 319
bd0a76e2
VZ
320void wxRadioBox::SendNotificationEvent()
321{
322 wxCommandEvent event(wxEVT_COMMAND_RADIOBOX_SELECTED, m_windowId);
323 event.SetInt( m_selectedButton );
324 event.SetString( GetString(m_selectedButton) );
325 event.SetEventObject( this );
326 ProcessCommand(event);
2bda0e17
KB
327}
328
bd0a76e2
VZ
329// ----------------------------------------------------------------------------
330// simple accessors
331// ----------------------------------------------------------------------------
332
333int wxRadioBox::GetCount() const
2bda0e17 334{
bd0a76e2
VZ
335 return m_radioButtons->GetCount();
336}
d66a042c 337
bd0a76e2
VZ
338// returns the number of rows
339int wxRadioBox::GetNumVer() const
340{
341 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
342 {
343 return m_majorDim;
344 }
345 else
346 {
347 return (GetCount() + m_majorDim - 1)/m_majorDim;
348 }
2bda0e17
KB
349}
350
bd0a76e2
VZ
351// returns the number of columns
352int wxRadioBox::GetNumHor() const
2bda0e17 353{
bd0a76e2
VZ
354 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
355 {
356 return (GetCount() + m_majorDim - 1)/m_majorDim;
357 }
358 else
359 {
360 return m_majorDim;
361 }
362}
2bda0e17 363
bd0a76e2
VZ
364void wxRadioBox::SetString(int item, const wxString& label)
365{
789f6795 366 wxCHECK_RET( IsValid(item), wxT("invalid radiobox index") );
e373f51b 367
bd0a76e2
VZ
368 m_radioWidth[item] =
369 m_radioHeight[item] = wxDefaultCoord;
2bda0e17 370
bd0a76e2 371 ::SetWindowText((*m_radioButtons)[item], label.c_str());
31582e4e
RD
372
373 InvalidateBestSize();
2bda0e17
KB
374}
375
bd0a76e2 376void wxRadioBox::SetSelection(int N)
2bda0e17 377{
789f6795 378 wxCHECK_RET( IsValid(N), wxT("invalid radiobox index") );
bd0a76e2 379
27758ba7
VZ
380 // unselect the old button
381 if ( m_selectedButton != wxNOT_FOUND )
382 ::SendMessage((*m_radioButtons)[m_selectedButton], BM_SETCHECK, 0, 0L);
383
384 // and select the new one
bd0a76e2
VZ
385 ::SendMessage((*m_radioButtons)[N], BM_SETCHECK, 1, 0L);
386
387 m_selectedButton = N;
2bda0e17
KB
388}
389
390// Find string for position
1e6feb95 391wxString wxRadioBox::GetString(int item) const
2bda0e17 392{
789f6795 393 wxCHECK_MSG( IsValid(item), wxEmptyString,
1e6feb95
VZ
394 wxT("invalid radiobox index") );
395
bd0a76e2
VZ
396 return wxGetWindowText((*m_radioButtons)[item]);
397}
398
399void wxRadioBox::SetFocus()
400{
401 if ( GetCount() > 0 )
402 {
403 ::SetFocus((*m_radioButtons)[m_selectedButton == wxNOT_FOUND
404 ? 0
405 : m_selectedButton]);
406 }
407}
408
409// Enable a specific button
1a87edf2 410bool wxRadioBox::Enable(int item, bool enable)
bd0a76e2 411{
789f6795 412 wxCHECK_MSG( IsValid(item), false,
bd0a76e2
VZ
413 wxT("invalid item in wxRadioBox::Enable()") );
414
789f6795
WS
415 BOOL ret = ::EnableWindow((*m_radioButtons)[item], enable);
416
417 return (ret == 0) == enable;
2bda0e17
KB
418}
419
bd0a76e2 420// Show a specific button
789f6795 421bool wxRadioBox::Show(int item, bool show)
bd0a76e2 422{
789f6795 423 wxCHECK_MSG( IsValid(item), false,
bd0a76e2
VZ
424 wxT("invalid item in wxRadioBox::Show()") );
425
789f6795
WS
426 BOOL ret = ::ShowWindow((*m_radioButtons)[item], show ? SW_SHOW : SW_HIDE);
427
31582e4e
RD
428 bool changed = (ret != 0) == show;
429 if( changed )
430 InvalidateBestSize();
431 return changed;
bd0a76e2
VZ
432}
433
434WX_FORWARD_STD_METHODS_TO_SUBWINDOWS(wxRadioBox, wxStaticBox, m_radioButtons)
435
3ca6a5f0
BP
436// ----------------------------------------------------------------------------
437// size calculations
438// ----------------------------------------------------------------------------
439
440wxSize wxRadioBox::GetMaxButtonSize() const
441{
442 // calculate the max button size
443 int widthMax = 0,
444 heightMax = 0;
bd0a76e2
VZ
445 const int count = GetCount();
446 for ( int i = 0 ; i < count; i++ )
3ca6a5f0
BP
447 {
448 int width, height;
449 if ( m_radioWidth[i] < 0 )
450 {
bd0a76e2 451 GetTextExtent(wxGetWindowText((*m_radioButtons)[i]), &width, &height);
3ca6a5f0
BP
452
453 // adjust the size to take into account the radio box itself
454 // FIXME this is totally bogus!
455 width += RADIO_SIZE;
456 height *= 3;
457 height /= 2;
458 }
459 else
460 {
461 width = m_radioWidth[i];
462 height = m_radioHeight[i];
463 }
464
465 if ( widthMax < width )
466 widthMax = width;
467 if ( heightMax < height )
468 heightMax = height;
469 }
470
471 return wxSize(widthMax, heightMax);
472}
473
474wxSize wxRadioBox::GetTotalButtonSize(const wxSize& sizeBtn) const
475{
476 // the radiobox should be big enough for its buttons
477 int cx1, cy1;
7a5e53ab 478 wxGetCharSize(m_hWnd, &cx1, &cy1, GetFont());
3ca6a5f0
BP
479
480 int extraHeight = cy1;
481
3ca6a5f0
BP
482 int height = GetNumVer() * sizeBtn.y + cy1/2 + extraHeight;
483 int width = GetNumHor() * (sizeBtn.x + cx1) + cx1;
484
c7fd6717 485 // Add extra space under the label, if it exists.
1a87edf2 486 if (!wxControl::GetLabel().empty())
c7fd6717
JS
487 height += cy1/2;
488
3ca6a5f0
BP
489 // and also wide enough for its label
490 int widthLabel;
491 GetTextExtent(GetTitle(), &widthLabel, NULL);
492 widthLabel += RADIO_SIZE; // FIXME this is bogus too
493 if ( widthLabel > width )
494 width = widthLabel;
495
496 return wxSize(width, height);
497}
498
499wxSize wxRadioBox::DoGetBestSize() const
500{
31582e4e
RD
501 wxSize best = GetTotalButtonSize(GetMaxButtonSize());
502 CacheBestSize(best);
503 return best;
3ca6a5f0
BP
504}
505
1f916a19 506// Restored old code.
bfc6fde4 507void wxRadioBox::DoSetSize(int x, int y, int width, int height, int sizeFlags)
1f916a19 508{
4438caf4
VZ
509 int currentX, currentY;
510 GetPosition(&currentX, &currentY);
c219cecc
VZ
511 int widthOld, heightOld;
512 GetSize(&widthOld, &heightOld);
513
4438caf4
VZ
514 int xx = x;
515 int yy = y;
516
4d08943e 517 if (x == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
4438caf4 518 xx = currentX;
4d08943e 519 if (y == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
4438caf4
VZ
520 yy = currentY;
521
eba99da4
JS
522 int y_offset = 0;
523 int x_offset = 0;
f048e32f 524
3ca6a5f0 525 int cx1, cy1;
7a5e53ab 526 wxGetCharSize(m_hWnd, &cx1, &cy1, GetFont());
4438caf4
VZ
527
528 // Attempt to have a look coherent with other platforms: We compute the
529 // biggest toggle dim, then we align all items according this value.
3ca6a5f0
BP
530 wxSize maxSize = GetMaxButtonSize();
531 int maxWidth = maxSize.x,
532 maxHeight = maxSize.y;
4438caf4 533
3ca6a5f0
BP
534 wxSize totSize = GetTotalButtonSize(maxSize);
535 int totWidth = totSize.x,
536 totHeight = totSize.y;
537
538 // only change our width/height if asked for
4d08943e 539 if ( width == wxDefaultCoord )
1f916a19 540 {
3ca6a5f0
BP
541 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
542 width = totWidth;
4438caf4 543 else
3ca6a5f0 544 width = widthOld;
1f916a19 545 }
1f916a19 546
4d08943e 547 if ( height == wxDefaultCoord )
4438caf4 548 {
3ca6a5f0
BP
549 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
550 height = totHeight;
4438caf4 551 else
3ca6a5f0
BP
552 height = heightOld;
553 }
4438caf4 554
7d86a2d4 555 DoMoveWindow(xx, yy, width, height);
c219cecc 556
3ca6a5f0
BP
557 // Now position all the buttons: the current button will be put at
558 // wxPoint(x_offset, y_offset) and the new row/column will start at
559 // startX/startY. The size of all buttons will be the same wxSize(maxWidth,
560 // maxHeight) except for the buttons in the last column which should extend
561 // to the right border of radiobox and thus can be wider than this.
c219cecc 562
3ca6a5f0
BP
563 // Also, remember that wxRA_SPECIFY_COLS means that we arrange buttons in
564 // left to right order and m_majorDim is the number of columns while
565 // wxRA_SPECIFY_ROWS means that the buttons are arranged top to bottom and
566 // m_majorDim is the number of rows.
4438caf4 567
3ca6a5f0
BP
568 x_offset += cx1;
569 y_offset += cy1;
1f916a19 570
c7fd6717 571 // Add extra space under the label, if it exists.
1a87edf2 572 if (!wxControl::GetLabel().empty())
c7fd6717 573 y_offset += cy1/2;
3ca6a5f0 574
4438caf4
VZ
575 int startX = x_offset;
576 int startY = y_offset;
1f916a19 577
bd0a76e2
VZ
578 const int count = GetCount();
579 for ( int i = 0; i < count; i++ )
1f916a19 580 {
3ca6a5f0
BP
581 // the last button in the row may be wider than the other ones as the
582 // radiobox may be wider than the sum of the button widths (as it
583 // happens, for example, when the radiobox label is very long)
584 bool isLastInTheRow;
585 if ( m_windowStyle & wxRA_SPECIFY_COLS )
586 {
587 // item is the last in its row if it is a multiple of the number of
588 // columns or if it is just the last item
589 int n = i + 1;
bd0a76e2 590 isLastInTheRow = ((n % m_majorDim) == 0) || (n == count);
3ca6a5f0
BP
591 }
592 else // wxRA_SPECIFY_ROWS
4438caf4 593 {
3ca6a5f0 594 // item is the last in the row if it is in the last columns
bd0a76e2 595 isLastInTheRow = i >= (count/m_majorDim)*m_majorDim;
3ca6a5f0
BP
596 }
597
598 // is this the start of new row/column?
599 if ( i && (i % m_majorDim == 0) )
600 {
601 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
4438caf4 602 {
3ca6a5f0 603 // start of new column
4438caf4
VZ
604 y_offset = startY;
605 x_offset += maxWidth + cx1;
606 }
3ca6a5f0 607 else // start of new row
4438caf4
VZ
608 {
609 x_offset = startX;
610 y_offset += maxHeight;
611 if (m_radioWidth[0]>0)
612 y_offset += cy1/2;
613 }
614 }
3ca6a5f0
BP
615
616 int widthBtn;
617 if ( isLastInTheRow )
4438caf4 618 {
3ca6a5f0
BP
619 // make the button go to the end of radio box
620 widthBtn = startX + width - x_offset - 2*cx1;
621 if ( widthBtn < maxWidth )
622 widthBtn = maxWidth;
4438caf4
VZ
623 }
624 else
625 {
3ca6a5f0
BP
626 // normal button, always of the same size
627 widthBtn = maxWidth;
4438caf4 628 }
1f916a19 629
bd0a76e2
VZ
630 // make all buttons of the same, maximal size - like this they cover
631 // the radiobox entirely and the radiobox tooltips are always shown
632 // (otherwise they are not when the mouse pointer is in the radiobox
633 // part not belonging to any radiobutton)
634 ::MoveWindow((*m_radioButtons)[i],
3ca6a5f0 635 x_offset, y_offset, widthBtn, maxHeight,
f048e32f 636 TRUE);
4438caf4 637
3ca6a5f0
BP
638 // where do we put the next button?
639 if ( m_windowStyle & wxRA_SPECIFY_ROWS )
4438caf4 640 {
3ca6a5f0 641 // below this one
4438caf4
VZ
642 y_offset += maxHeight;
643 if (m_radioWidth[0]>0)
644 y_offset += cy1/2;
645 }
646 else
3ca6a5f0
BP
647 {
648 // to the right of this one
649 x_offset += widthBtn + cx1;
650 }
1f916a19 651 }
1f916a19
JS
652}
653
c3732409
VZ
654// ----------------------------------------------------------------------------
655// radio box drawing
656// ----------------------------------------------------------------------------
657
658#ifndef __WXWINCE__
659
660WXHRGN wxRadioBox::MSWGetRegionWithoutChildren()
661{
662 RECT rc;
663 ::GetWindowRect(GetHwnd(), &rc);
664 HRGN hrgn = ::CreateRectRgn(rc.left, rc.top, rc.right + 1, rc.bottom + 1);
665
666 const size_t count = GetCount();
667 for ( size_t i = 0; i < count; ++i )
668 {
669 ::GetWindowRect((*m_radioButtons)[i], &rc);
670 AutoHRGN hrgnchild(::CreateRectRgnIndirect(&rc));
671 ::CombineRgn(hrgn, hrgn, hrgnchild, RGN_DIFF);
672 }
673
674 return (WXHRGN)hrgn;
675}
676
1a784dfc
VZ
677WXLRESULT
678wxRadioBox::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
679{
8e44f3ca
JS
680 // FIXME: Without this, the radiobox corrupts other controls as it moves
681 // in a dynamic layout. Refreshing causes flicker, but it's better than
682 // leaving droppings. Note that for some reason, wxStaticBox doesn't need
683 // this (perhaps because it has no real children?)
9705fbe9 684 if ( nMsg == WM_MOVE )
8e44f3ca
JS
685 {
686 WXLRESULT res = wxControl::MSWWindowProc(nMsg, wParam, lParam);
687 wxRect rect = GetRect();
688 GetParent()->Refresh(true, & rect);
689 return res;
690 }
1a784dfc
VZ
691
692 return wxStaticBox::MSWWindowProc(nMsg, wParam, lParam);
693}
694
c3732409
VZ
695#endif // __WXWINCE__
696
e373f51b
VZ
697// ---------------------------------------------------------------------------
698// window proc for radio buttons
699// ---------------------------------------------------------------------------
700
701LRESULT APIENTRY _EXPORT wxRadioBtnWndProc(HWND hwnd,
8614c467 702 UINT message,
e373f51b
VZ
703 WPARAM wParam,
704 LPARAM lParam)
705{
8614c467 706 switch ( message )
e373f51b 707 {
8614c467
VZ
708 case WM_GETDLGCODE:
709 // we must tell IsDialogMessage()/our kbd processing code that we
710 // want to process arrows ourselves because neither of them is
711 // smart enough to handle arrows properly for us
712 {
8ad6ad99 713 long lDlgCode = ::CallWindowProc(CASTWNDPROC s_wndprocRadioBtn, hwnd,
8614c467 714 message, wParam, lParam);
8ad6ad99 715
8614c467
VZ
716 return lDlgCode | DLGC_WANTARROWS;
717 }
e373f51b 718
8614c467
VZ
719#if wxUSE_TOOLTIPS
720 case WM_NOTIFY:
f048e32f 721 {
8614c467 722 NMHDR* hdr = (NMHDR *)lParam;
2b5f62a0 723 if ( hdr->code == TTN_NEEDTEXT )
e373f51b 724 {
975b6bcf
VZ
725 wxRadioBox *
726 radiobox = (wxRadioBox *)wxGetWindowUserData(hwnd);
e373f51b 727
8614c467
VZ
728 wxCHECK_MSG( radiobox, 0,
729 wxT("radio button without radio box?") );
730
731 wxToolTip *tooltip = radiobox->GetToolTip();
732 if ( tooltip )
733 {
734 TOOLTIPTEXT *ttt = (TOOLTIPTEXT *)lParam;
735 ttt->lpszText = (wxChar *)tooltip->GetTip().c_str();
736 }
737
738 // processed
739 return 0;
e373f51b 740 }
f048e32f 741 }
8614c467 742 break;
f048e32f 743#endif // wxUSE_TOOLTIPS
f048e32f 744
8614c467 745 case WM_KEYDOWN:
9a5ccab4 746 {
975b6bcf 747 wxRadioBox *radiobox = (wxRadioBox *)wxGetWindowUserData(hwnd);
f048e32f 748
8614c467 749 wxCHECK_MSG( radiobox, 0, wxT("radio button without radio box?") );
f048e32f 750
4d08943e 751 bool processed = true;
f048e32f 752
e421922f 753 wxDirection dir;
8614c467
VZ
754 switch ( wParam )
755 {
756 case VK_UP:
1e6feb95 757 dir = wxUP;
8614c467 758 break;
f048e32f 759
8614c467 760 case VK_LEFT:
1e6feb95 761 dir = wxLEFT;
8614c467 762 break;
f048e32f 763
8614c467 764 case VK_DOWN:
1e6feb95 765 dir = wxDOWN;
8614c467 766 break;
f048e32f 767
8614c467 768 case VK_RIGHT:
1e6feb95 769 dir = wxRIGHT;
8614c467
VZ
770 break;
771
772 default:
4d08943e 773 processed = false;
1e6feb95
VZ
774
775 // just to suppress the compiler warning
776 dir = wxALL;
8614c467
VZ
777 }
778
779 if ( processed )
f048e32f 780 {
1e6feb95
VZ
781 int selOld = radiobox->GetSelection();
782 int selNew = radiobox->GetNextItem
783 (
784 selOld,
785 dir,
786 radiobox->GetWindowStyle()
787 );
3ca6a5f0 788
8614c467
VZ
789 if ( selNew != selOld )
790 {
791 radiobox->SetSelection(selNew);
974931fe 792 radiobox->SetFocus();
8614c467
VZ
793
794 // emulate the button click
795 radiobox->SendNotificationEvent();
9a5ccab4 796
8614c467
VZ
797 return 0;
798 }
f048e32f 799 }
9a5ccab4 800 }
21687069
VZ
801 break;
802
1dab049c
VZ
803 case WM_SETFOCUS:
804 case WM_KILLFOCUS:
805 {
975b6bcf 806 wxRadioBox *radiobox = (wxRadioBox *)wxGetWindowUserData(hwnd);
1dab049c
VZ
807
808 wxCHECK_MSG( radiobox, 0, wxT("radio button without radio box?") );
809
810 // if we don't do this, no focus events are generated for the
811 // radiobox and, besides, we need to notify the parent about
812 // the focus change, otherwise the focus handling logic in
813 // wxControlContainer doesn't work
814 if ( message == WM_SETFOCUS )
815 radiobox->HandleSetFocus((WXHWND)wParam);
816 else
817 radiobox->HandleKillFocus((WXHWND)wParam);
818 }
819 break;
820
bd0a76e2 821#ifndef __WXWINCE__
fac93396 822 case WM_HELP:
e421922f 823 {
975b6bcf 824 wxRadioBox *radiobox = (wxRadioBox *)wxGetWindowUserData(hwnd);
fac93396 825
e421922f 826 wxCHECK_MSG( radiobox, 0, wxT("radio button without radio box?") );
fac93396 827
bd0a76e2
VZ
828 bool processed = false;
829
830 wxEvtHandler * const handler = radiobox->GetEventHandler();
fac93396 831
e421922f 832 HELPINFO* info = (HELPINFO*) lParam;
bd0a76e2 833 if ( info->iContextType == HELPINFO_WINDOW )
fac93396 834 {
bd0a76e2
VZ
835 for ( wxWindow* subjectOfHelp = radiobox;
836 subjectOfHelp;
837 subjectOfHelp = subjectOfHelp->GetParent() )
e421922f 838 {
bd0a76e2
VZ
839 wxHelpEvent helpEvent(wxEVT_HELP,
840 subjectOfHelp->GetId(),
841 wxPoint(info->MousePos.x,
842 info->MousePos.y));
e421922f 843 helpEvent.SetEventObject(radiobox);
bd0a76e2
VZ
844 if ( handler->ProcessEvent(helpEvent) )
845 {
846 processed = true;
847 break;
848 }
e421922f 849 }
fac93396 850 }
e421922f
VZ
851 else if (info->iContextType == HELPINFO_MENUITEM)
852 {
bd0a76e2 853 wxHelpEvent helpEvent(wxEVT_HELP, info->iCtrlId);
e421922f 854 helpEvent.SetEventObject(radiobox);
bd0a76e2 855 processed = handler->ProcessEvent(helpEvent);
e421922f 856 }
bd0a76e2
VZ
857
858 if ( processed )
e421922f 859 return 0;
e421922f 860 }
c3732409 861 break;
bd0a76e2 862#endif // !__WXWINCE__
e373f51b
VZ
863 }
864
8ad6ad99 865 return ::CallWindowProc(CASTWNDPROC s_wndprocRadioBtn, hwnd, message, wParam, lParam);
e373f51b 866}
42e69d6b 867
1e6feb95 868#endif // wxUSE_RADIOBOX
bd0a76e2 869