1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/radiobox.cpp
3 // Purpose: wxRadioBox implementation
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "radiobox.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/bitmap.h"
36 #include "wx/radiobox.h"
37 #include "wx/settings.h"
41 #include "wx/msw/private.h"
44 #if !defined(__GNUWIN32_OLD__) || defined(__CYGWIN10__)
47 #include "wx/tooltip.h"
48 #endif // wxUSE_TOOLTIPS
50 // TODO: wxCONSTRUCTOR
51 #if 0 // wxUSE_EXTENDED_RTTI
52 WX_DEFINE_FLAGS( wxRadioBoxStyle
)
54 wxBEGIN_FLAGS( wxRadioBoxStyle
)
55 // new style border flags, we put them first to
56 // use them for streaming out
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
)
64 // old style border flags
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
)
70 wxFLAGS_MEMBER(wxBORDER
)
72 // standard window styles
73 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
74 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
75 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
76 wxFLAGS_MEMBER(wxWANTS_CHARS
)
77 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
78 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
79 wxFLAGS_MEMBER(wxVSCROLL
)
80 wxFLAGS_MEMBER(wxHSCROLL
)
82 wxFLAGS_MEMBER(wxRA_SPECIFY_COLS
)
83 wxFLAGS_MEMBER(wxRA_HORIZONTAL
)
84 wxFLAGS_MEMBER(wxRA_SPECIFY_ROWS
)
85 wxFLAGS_MEMBER(wxRA_VERTICAL
)
87 wxEND_FLAGS( wxRadioBoxStyle
)
89 IMPLEMENT_DYNAMIC_CLASS_XTI(wxRadioBox
, wxControl
,"wx/radiobox.h")
91 wxBEGIN_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
94 wxEND_PROPERTIES_TABLE()
97 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox
, wxControl
)
108 // there are two possible ways to create the radio buttons: either as children
109 // of the radiobox or as siblings of it - allow playing with both variants for
110 // now, eventually we will choose the best one for our purposes
112 // two main problems are the keyboard navigation inside the radiobox (arrows
113 // should switch between buttons, not pass focus to the next control) and the
114 // tooltips - a tooltip is associated with the radiobox itself, not the
117 // the problems with setting this to 1:
118 // a) Alt-<mnemonic of radiobox> isn't handled properly by IsDialogMessage()
119 // because it sets focus to the next control accepting it which is not a
120 // radio button but a radiobox sibling in this case - the only solution to
121 // this would be to handle Alt-<mnemonic> ourselves
122 // b) the problems with setting radiobox colours under Win98/2K were reported
123 // but I couldn't reproduce it so I have no idea about what causes it
125 // the problems with setting this to 0:
126 // a) the tooltips are not shown for the radiobox - possible solution: make
127 // TTM_WINDOWFROMPOS handling code in msw/tooltip.cpp work (easier said than
128 // done because I don't know why it doesn't work)
129 #define RADIOBTN_PARENT_IS_RADIOBOX 0
131 // ---------------------------------------------------------------------------
133 // ---------------------------------------------------------------------------
135 // wnd proc for radio buttons
137 LRESULT APIENTRY _EXPORT
wxRadioBtnWndProc(HWND hWnd
,
142 // ---------------------------------------------------------------------------
144 // ---------------------------------------------------------------------------
146 // the pointer to standard radio button wnd proc
147 static WXFARPROC s_wndprocRadioBtn
= (WXFARPROC
)NULL
;
151 // ===========================================================================
153 // ===========================================================================
155 // ---------------------------------------------------------------------------
157 // ---------------------------------------------------------------------------
159 int wxRadioBox::GetCount() const
164 int wxRadioBox::GetColumnCount() const
169 int wxRadioBox::GetRowCount() const
174 // returns the number of rows
175 int wxRadioBox::GetNumVer() const
177 if ( m_windowStyle
& wxRA_SPECIFY_ROWS
)
183 return (m_noItems
+ m_majorDim
- 1)/m_majorDim
;
187 // returns the number of columns
188 int wxRadioBox::GetNumHor() const
190 if ( m_windowStyle
& wxRA_SPECIFY_ROWS
)
192 return (m_noItems
+ m_majorDim
- 1)/m_majorDim
;
200 bool wxRadioBox::MSWCommand(WXUINT cmd
, WXWORD id
)
202 if ( cmd
== BN_CLICKED
)
207 int selectedButton
= wxID_ANY
;
209 for ( int i
= 0; i
< m_noItems
; i
++ )
211 if ( id
== wxGetWindowId(m_radioButtons
[i
]) )
219 if ( selectedButton
== wxID_ANY
)
221 // just ignore it - due to a hack with WM_NCHITTEST handling in our
222 // wnd proc, we can receive dummy click messages when we click near
223 // the radiobox edge (this is ugly but Julian wouldn't let me get
228 if ( selectedButton
!= m_selectedButton
)
230 m_selectedButton
= selectedButton
;
232 SendNotificationEvent();
234 //else: don't generate events when the selection doesn't change
243 wxRadioBox::wxRadioBox()
245 m_selectedButton
= wxID_ANY
;
248 m_radioButtons
= NULL
;
251 m_radioHeight
= NULL
;
254 bool wxRadioBox::Create(wxWindow
*parent
,
256 const wxString
& title
,
260 const wxString choices
[],
263 const wxValidator
& val
,
264 const wxString
& name
)
266 // initialize members
267 m_selectedButton
= wxID_ANY
;
270 m_majorDim
= majorDim
== 0 ? n
: majorDim
;
271 m_noRowsOrCols
= majorDim
;
273 // common initialization
274 if ( !CreateControl(parent
, id
, pos
, size
, style
, val
, name
) )
277 // create the static box
278 if ( !MSWCreateControl(wxT("BUTTON"), BS_GROUPBOX
| WS_GROUP
,
279 pos
, size
, title
, 0) )
282 // and now create the buttons
284 #if RADIOBTN_PARENT_IS_RADIOBOX
285 HWND hwndParent
= GetHwnd();
287 HWND hwndParent
= GetHwndOf(parent
);
290 // Some radio boxes test consecutive id.
291 (void)NewControlId();
292 m_radioButtons
= new WXHWND
[n
];
293 m_radioWidth
= new int[n
];
294 m_radioHeight
= new int[n
];
297 wxFont font
= GetFont();
300 hfont
= font
.GetResourceHandle();
303 for ( int i
= 0; i
< n
; i
++ )
306 m_radioHeight
[i
] = wxDefaultCoord
;
307 long styleBtn
= BS_AUTORADIOBUTTON
| WS_TABSTOP
| WS_CHILD
| WS_VISIBLE
;
308 if ( i
== 0 && style
== 0 )
309 styleBtn
|= WS_GROUP
;
311 long newId
= NewControlId();
313 HWND hwndBtn
= ::CreateWindow(_T("BUTTON"),
316 0, 0, 0, 0, // will be set in SetSize()
324 wxLogLastError(wxT("CreateWindow(radio btn)"));
329 m_radioButtons
[i
] = (WXHWND
)hwndBtn
;
331 SubclassRadioButton((WXHWND
)hwndBtn
);
335 ::SendMessage(hwndBtn
, WM_SETFONT
, (WPARAM
)hfont
, 0L);
338 m_subControls
.Add(newId
);
341 // Create a dummy radio control to end the group.
342 (void)::CreateWindow(_T("BUTTON"),
344 WS_GROUP
| BS_AUTORADIOBUTTON
| WS_CHILD
,
345 0, 0, 0, 0, hwndParent
,
346 (HMENU
)NewControlId(), wxGetInstance(), NULL
);
349 // Set the z-order correctly
350 SetWindowPos(GetHwnd(), HWND_BOTTOM
, 0, 0, 0, 0, SWP_NOMOVE
|SWP_NOSIZE
);
354 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
356 // Now that we have items determine what is the best size and set it.
362 bool wxRadioBox::Create(wxWindow
*parent
,
364 const wxString
& title
,
367 const wxArrayString
& choices
,
370 const wxValidator
& val
,
371 const wxString
& name
)
373 wxCArrayString
chs(choices
);
374 return Create(parent
, id
, title
, pos
, size
, chs
.GetCount(),
375 chs
.GetStrings(), majorDim
, style
, val
, name
);
378 wxRadioBox::~wxRadioBox()
380 m_isBeingDeleted
= true;
385 for (i
= 0; i
< m_noItems
; i
++)
386 ::DestroyWindow((HWND
)m_radioButtons
[i
]);
387 delete[] m_radioButtons
;
391 delete[] m_radioWidth
;
393 delete[] m_radioHeight
;
397 void wxRadioBox::SetString(int item
, const wxString
& label
)
399 wxCHECK_RET( item
>= 0 && item
< m_noItems
, wxT("invalid radiobox index") );
401 m_radioWidth
[item
] = m_radioHeight
[item
] = wxDefaultCoord
;
402 SetWindowText((HWND
)m_radioButtons
[item
], label
.c_str());
405 void wxRadioBox::SetSelection(int N
)
407 wxCHECK_RET( (N
>= 0) && (N
< m_noItems
), wxT("invalid radiobox index") );
409 // Following necessary for Win32s, because Win32s translate BM_SETCHECK
410 if (m_selectedButton
>= 0 && m_selectedButton
< m_noItems
)
411 ::SendMessage((HWND
) m_radioButtons
[m_selectedButton
], BM_SETCHECK
, 0, 0L);
413 ::SendMessage((HWND
)m_radioButtons
[N
], BM_SETCHECK
, 1, 0L);
415 m_selectedButton
= N
;
418 // Get single selection, for single choice list items
419 int wxRadioBox::GetSelection() const
421 return m_selectedButton
;
424 // Find string for position
425 wxString
wxRadioBox::GetString(int item
) const
427 wxCHECK_MSG( item
>= 0 && item
< m_noItems
, wxEmptyString
,
428 wxT("invalid radiobox index") );
430 return wxGetWindowText(m_radioButtons
[item
]);
433 // ----------------------------------------------------------------------------
435 // ----------------------------------------------------------------------------
437 wxSize
wxRadioBox::GetMaxButtonSize() const
439 // calculate the max button size
442 for ( int i
= 0 ; i
< m_noItems
; i
++ )
445 if ( m_radioWidth
[i
] < 0 )
447 GetTextExtent(wxGetWindowText(m_radioButtons
[i
]), &width
, &height
);
449 // adjust the size to take into account the radio box itself
450 // FIXME this is totally bogus!
457 width
= m_radioWidth
[i
];
458 height
= m_radioHeight
[i
];
461 if ( widthMax
< width
)
463 if ( heightMax
< height
)
467 return wxSize(widthMax
, heightMax
);
470 wxSize
wxRadioBox::GetTotalButtonSize(const wxSize
& sizeBtn
) const
472 // the radiobox should be big enough for its buttons
474 wxGetCharSize(m_hWnd
, &cx1
, &cy1
, GetFont());
476 int extraHeight
= cy1
;
478 /* We'll assume the adjustments below are OK for Win 3.1 too
479 #if defined(CTL3D) && !CTL3D
480 // Requires a bigger group box in plain Windows
486 int height
= GetNumVer() * sizeBtn
.y
+ cy1
/2 + extraHeight
;
487 int width
= GetNumHor() * (sizeBtn
.x
+ cx1
) + cx1
;
489 // Add extra space under the label, if it exists.
490 if (!wxControl::GetLabel().IsEmpty())
493 // and also wide enough for its label
495 GetTextExtent(GetTitle(), &widthLabel
, NULL
);
496 widthLabel
+= RADIO_SIZE
; // FIXME this is bogus too
497 if ( widthLabel
> width
)
500 return wxSize(width
, height
);
503 wxSize
wxRadioBox::DoGetBestSize() const
505 return GetTotalButtonSize(GetMaxButtonSize());
508 // Restored old code.
509 void wxRadioBox::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
511 int currentX
, currentY
;
512 GetPosition(¤tX
, ¤tY
);
513 int widthOld
, heightOld
;
514 GetSize(&widthOld
, &heightOld
);
519 if (x
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
521 if (y
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
524 #if RADIOBTN_PARENT_IS_RADIOBOX
533 wxGetCharSize(m_hWnd
, &cx1
, &cy1
, GetFont());
535 // Attempt to have a look coherent with other platforms: We compute the
536 // biggest toggle dim, then we align all items according this value.
537 wxSize maxSize
= GetMaxButtonSize();
538 int maxWidth
= maxSize
.x
,
539 maxHeight
= maxSize
.y
;
541 wxSize totSize
= GetTotalButtonSize(maxSize
);
542 int totWidth
= totSize
.x
,
543 totHeight
= totSize
.y
;
545 // only change our width/height if asked for
546 if ( width
== wxDefaultCoord
)
548 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
554 if ( height
== wxDefaultCoord
)
556 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
562 ::MoveWindow(GetHwnd(), xx
, yy
, width
, height
, TRUE
);
564 // Now position all the buttons: the current button will be put at
565 // wxPoint(x_offset, y_offset) and the new row/column will start at
566 // startX/startY. The size of all buttons will be the same wxSize(maxWidth,
567 // maxHeight) except for the buttons in the last column which should extend
568 // to the right border of radiobox and thus can be wider than this.
570 // Also, remember that wxRA_SPECIFY_COLS means that we arrange buttons in
571 // left to right order and m_majorDim is the number of columns while
572 // wxRA_SPECIFY_ROWS means that the buttons are arranged top to bottom and
573 // m_majorDim is the number of rows.
578 // Add extra space under the label, if it exists.
579 if (!wxControl::GetLabel().IsEmpty())
582 int startX
= x_offset
;
583 int startY
= y_offset
;
585 for ( int i
= 0; i
< m_noItems
; i
++ )
587 // the last button in the row may be wider than the other ones as the
588 // radiobox may be wider than the sum of the button widths (as it
589 // happens, for example, when the radiobox label is very long)
591 if ( m_windowStyle
& wxRA_SPECIFY_COLS
)
593 // item is the last in its row if it is a multiple of the number of
594 // columns or if it is just the last item
596 isLastInTheRow
= ((n
% m_majorDim
) == 0) || (n
== m_noItems
);
598 else // wxRA_SPECIFY_ROWS
600 // item is the last in the row if it is in the last columns
601 isLastInTheRow
= i
>= (m_noItems
/m_majorDim
)*m_majorDim
;
604 // is this the start of new row/column?
605 if ( i
&& (i
% m_majorDim
== 0) )
607 if ( m_windowStyle
& wxRA_SPECIFY_ROWS
)
609 // start of new column
611 x_offset
+= maxWidth
+ cx1
;
613 else // start of new row
616 y_offset
+= maxHeight
;
617 if (m_radioWidth
[0]>0)
623 if ( isLastInTheRow
)
625 // make the button go to the end of radio box
626 widthBtn
= startX
+ width
- x_offset
- 2*cx1
;
627 if ( widthBtn
< maxWidth
)
632 // normal button, always of the same size
636 // VZ: make all buttons of the same, maximal size - like this they
637 // cover the radiobox entirely and the radiobox tooltips are always
638 // shown (otherwise they are not when the mouse pointer is in the
639 // radiobox part not belonging to any radiobutton)
640 ::MoveWindow((HWND
)m_radioButtons
[i
],
641 x_offset
, y_offset
, widthBtn
, maxHeight
,
644 // where do we put the next button?
645 if ( m_windowStyle
& wxRA_SPECIFY_ROWS
)
648 y_offset
+= maxHeight
;
649 if (m_radioWidth
[0]>0)
654 // to the right of this one
655 x_offset
+= widthBtn
+ cx1
;
660 void wxRadioBox::GetSize(int *width
, int *height
) const
662 RECT rect
= { -1, -1, -1, -1 };
665 wxFindMaxSize(m_hWnd
, &rect
);
668 for (i
= 0; i
< m_noItems
; i
++)
669 wxFindMaxSize(m_radioButtons
[i
], &rect
);
671 *width
= rect
.right
- rect
.left
;
672 *height
= rect
.bottom
- rect
.top
;
675 void wxRadioBox::GetPosition(int *x
, int *y
) const
677 wxWindow
*parent
= GetParent();
678 RECT rect
= { -1, -1, -1, -1 };
681 for (i
= 0; i
< m_noItems
; i
++)
682 wxFindMaxSize(m_radioButtons
[i
], &rect
);
685 wxFindMaxSize(m_hWnd
, &rect
);
687 // Since we now have the absolute screen coords, if there's a parent we
688 // must subtract its top left corner
694 ::ScreenToClient((HWND
) parent
->GetHWND(), &point
);
697 // We may be faking the client origin. So a window that's really at (0, 30)
698 // may appear (to wxWin apps) to be at (0, 0).
701 wxPoint
pt(GetParent()->GetClientAreaOrigin());
710 void wxRadioBox::SetFocus()
714 ::SetFocus((HWND
)m_radioButtons
[m_selectedButton
== wxID_ANY
716 : m_selectedButton
]);
721 bool wxRadioBox::Show(bool show
)
723 if ( !wxControl::Show(show
) )
726 int nCmdShow
= show
? SW_SHOW
: SW_HIDE
;
727 for ( int i
= 0; i
< m_noItems
; i
++ )
729 ::ShowWindow((HWND
)m_radioButtons
[i
], nCmdShow
);
735 // Enable a specific button
736 void wxRadioBox::Enable(int item
, bool enable
)
738 wxCHECK_RET( item
>= 0 && item
< m_noItems
,
739 wxT("invalid item in wxRadioBox::Enable()") );
741 ::EnableWindow((HWND
) m_radioButtons
[item
], enable
);
744 // Enable all controls
745 bool wxRadioBox::Enable(bool enable
)
747 if ( !wxControl::Enable(enable
) )
750 for (int i
= 0; i
< m_noItems
; i
++)
751 ::EnableWindow((HWND
) m_radioButtons
[i
], enable
);
756 // Show a specific button
757 void wxRadioBox::Show(int item
, bool show
)
759 wxCHECK_RET( item
>= 0 && item
< m_noItems
,
760 wxT("invalid item in wxRadioBox::Show()") );
762 ::ShowWindow((HWND
)m_radioButtons
[item
], show
? SW_SHOW
: SW_HIDE
);
765 bool wxRadioBox::ContainsHWND(WXHWND hWnd
) const
767 size_t count
= GetCount();
768 for ( size_t i
= 0; i
< count
; i
++ )
770 if ( GetRadioButtons()[i
] == hWnd
)
777 void wxRadioBox::Command(wxCommandEvent
& event
)
779 SetSelection (event
.m_commandInt
);
781 ProcessCommand (event
);
784 // NB: if this code is changed, wxGetWindowForHWND() which relies on having the
785 // radiobox pointer in GWL_USERDATA for radio buttons must be updated too!
786 void wxRadioBox::SubclassRadioButton(WXHWND hWndBtn
)
788 HWND hwndBtn
= (HWND
)hWndBtn
;
790 if ( !s_wndprocRadioBtn
)
791 s_wndprocRadioBtn
= (WXFARPROC
)wxGetWindowProc(hwndBtn
);
793 wxSetWindowProc(hwndBtn
, wxRadioBtnWndProc
);
794 wxSetWindowUserData(hwndBtn
, this);
797 void wxRadioBox::SendNotificationEvent()
799 wxCommandEvent
event(wxEVT_COMMAND_RADIOBOX_SELECTED
, m_windowId
);
800 event
.SetInt( m_selectedButton
);
801 event
.SetString( GetString(m_selectedButton
) );
802 event
.SetEventObject( this );
803 ProcessCommand(event
);
806 bool wxRadioBox::SetFont(const wxFont
& font
)
808 if ( !wxControl::SetFont(font
) )
814 // also set the font of our radio buttons
815 WXHFONT hfont
= wxFont(font
).GetResourceHandle();
816 for ( int n
= 0; n
< m_noItems
; n
++ )
818 HWND hwndBtn
= (HWND
)m_radioButtons
[n
];
819 ::SendMessage(hwndBtn
, WM_SETFONT
, (WPARAM
)hfont
, 0L);
821 // otherwise the buttons are not redrawn correctly
822 ::InvalidateRect(hwndBtn
, NULL
, FALSE
/* don't erase bg */);
828 // ----------------------------------------------------------------------------
830 // ----------------------------------------------------------------------------
832 WXLRESULT
wxRadioBox::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
837 case WM_CTLCOLORSTATIC
:
838 // set the colour of the radio buttons to be the same as ours
840 HDC hdc
= (HDC
)wParam
;
842 const wxColour
& colBack
= GetBackgroundColour();
843 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
844 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
846 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
848 return (WXLRESULT
)brush
->GetResourceHandle();
852 // VZ: this code breaks radiobox redrawing under Windows XP, don't use
853 // it. If you need to get messages from the static controls,
854 // create them as a child of another (non static) window
856 // This is required for the radiobox to be sensitive to mouse input,
857 // e.g. for Dialog Editor.
860 int xPos
= LOWORD(lParam
); // horizontal position of cursor
861 int yPos
= HIWORD(lParam
); // vertical position of cursor
863 ScreenToClient(&xPos
, &yPos
);
865 // Make sure you can drag by the top of the groupbox, but let
866 // other (enclosed) controls get mouse events also
868 return (long)HTCLIENT
;
874 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
877 WXHBRUSH
wxRadioBox::OnCtlColor(WXHDC pDC
, WXHWND
WXUNUSED(pWnd
), WXUINT
WXUNUSED(nCtlColor
),
883 WXUINT
WXUNUSED(message
),
884 WXWPARAM
WXUNUSED(wParam
),
885 WXLPARAM
WXUNUSED(lParam
)
892 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
893 return (WXHBRUSH
) hbrush
;
895 #endif // wxUSE_CTL3D
898 wxColour colBack
= GetBackgroundColour();
900 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
901 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
903 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
905 return (WXHBRUSH
)brush
->GetResourceHandle();
909 // ---------------------------------------------------------------------------
910 // window proc for radio buttons
911 // ---------------------------------------------------------------------------
915 LRESULT APIENTRY _EXPORT
wxRadioBtnWndProc(HWND hwnd
,
923 // we must tell IsDialogMessage()/our kbd processing code that we
924 // want to process arrows ourselves because neither of them is
925 // smart enough to handle arrows properly for us
927 long lDlgCode
= ::CallWindowProc(CASTWNDPROC s_wndprocRadioBtn
, hwnd
,
928 message
, wParam
, lParam
);
930 return lDlgCode
| DLGC_WANTARROWS
;
936 NMHDR
* hdr
= (NMHDR
*)lParam
;
937 if ( hdr
->code
== TTN_NEEDTEXT
)
940 radiobox
= (wxRadioBox
*)wxGetWindowUserData(hwnd
);
942 wxCHECK_MSG( radiobox
, 0,
943 wxT("radio button without radio box?") );
945 wxToolTip
*tooltip
= radiobox
->GetToolTip();
948 TOOLTIPTEXT
*ttt
= (TOOLTIPTEXT
*)lParam
;
949 ttt
->lpszText
= (wxChar
*)tooltip
->GetTip().c_str();
957 #endif // wxUSE_TOOLTIPS
961 wxRadioBox
*radiobox
= (wxRadioBox
*)wxGetWindowUserData(hwnd
);
963 wxCHECK_MSG( radiobox
, 0, wxT("radio button without radio box?") );
965 bool processed
= true;
989 // just to suppress the compiler warning
995 int selOld
= radiobox
->GetSelection();
996 int selNew
= radiobox
->GetNextItem
1000 radiobox
->GetWindowStyle()
1003 if ( selNew
!= selOld
)
1005 radiobox
->SetSelection(selNew
);
1006 radiobox
->SetFocus();
1008 // emulate the button click
1009 radiobox
->SendNotificationEvent();
1020 wxRadioBox
*radiobox
= (wxRadioBox
*)wxGetWindowUserData(hwnd
);
1022 wxCHECK_MSG( radiobox
, 0, wxT("radio button without radio box?") );
1024 // if we don't do this, no focus events are generated for the
1025 // radiobox and, besides, we need to notify the parent about
1026 // the focus change, otherwise the focus handling logic in
1027 // wxControlContainer doesn't work
1028 if ( message
== WM_SETFOCUS
)
1029 radiobox
->HandleSetFocus((WXHWND
)wParam
);
1031 radiobox
->HandleKillFocus((WXHWND
)wParam
);
1038 wxRadioBox
*radiobox
= (wxRadioBox
*)wxGetWindowUserData(hwnd
);
1040 wxCHECK_MSG( radiobox
, 0, wxT("radio button without radio box?") );
1042 bool processed
wxDUMMY_INITIALIZE(true);
1044 // HELPINFO doesn't seem to be supported on WinCE.
1046 HELPINFO
* info
= (HELPINFO
*) lParam
;
1047 // Don't yet process menu help events, just windows
1048 if (info
->iContextType
== HELPINFO_WINDOW
)
1051 wxWindow
* subjectOfHelp
= radiobox
;
1052 bool eventProcessed
= false;
1053 while (subjectOfHelp
&& !eventProcessed
)
1055 wxHelpEvent
helpEvent(wxEVT_HELP
, subjectOfHelp
->GetId(),
1059 wxPoint(info
->MousePos
.x
, info
->MousePos
.y
)
1061 ) ; // info->iCtrlId);
1062 helpEvent
.SetEventObject(radiobox
);
1063 eventProcessed
= radiobox
->GetEventHandler()->ProcessEvent(helpEvent
);
1065 // Go up the window hierarchy until the event is handled (or not)
1066 subjectOfHelp
= subjectOfHelp
->GetParent();
1068 processed
= eventProcessed
;
1071 else if (info
->iContextType
== HELPINFO_MENUITEM
)
1073 wxHelpEvent
helpEvent(wxEVT_HELP
, info
->iCtrlId
) ;
1074 helpEvent
.SetEventObject(radiobox
);
1075 processed
= radiobox
->GetEventHandler()->ProcessEvent(helpEvent
);
1088 return ::CallWindowProc(CASTWNDPROC s_wndprocRadioBtn
, hwnd
, message
, wParam
, lParam
);
1093 #endif // wxUSE_RADIOBOX