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: WX_CONSTRUCTOR
51 #if 0 // wxUSE_EXTENDED_RTTI
52 WX_DEFINE_FLAGS( wxRadioBoxStyle
)
54 WX_BEGIN_FLAGS( wxRadioBoxStyle
)
55 // new style border flags, we put them first to
56 // use them for streaming out
57 WX_FLAGS_MEMBER(wxBORDER_SIMPLE
)
58 WX_FLAGS_MEMBER(wxBORDER_SUNKEN
)
59 WX_FLAGS_MEMBER(wxBORDER_DOUBLE
)
60 WX_FLAGS_MEMBER(wxBORDER_RAISED
)
61 WX_FLAGS_MEMBER(wxBORDER_STATIC
)
62 WX_FLAGS_MEMBER(wxBORDER_NONE
)
64 // old style border flags
65 WX_FLAGS_MEMBER(wxSIMPLE_BORDER
)
66 WX_FLAGS_MEMBER(wxSUNKEN_BORDER
)
67 WX_FLAGS_MEMBER(wxDOUBLE_BORDER
)
68 WX_FLAGS_MEMBER(wxRAISED_BORDER
)
69 WX_FLAGS_MEMBER(wxSTATIC_BORDER
)
70 WX_FLAGS_MEMBER(wxNO_BORDER
)
72 // standard window styles
73 WX_FLAGS_MEMBER(wxTAB_TRAVERSAL
)
74 WX_FLAGS_MEMBER(wxCLIP_CHILDREN
)
75 WX_FLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
76 WX_FLAGS_MEMBER(wxWANTS_CHARS
)
77 WX_FLAGS_MEMBER(wxNO_FULL_REPAINT_ON_RESIZE
)
78 WX_FLAGS_MEMBER(wxALWAYS_SHOW_SB
)
79 WX_FLAGS_MEMBER(wxVSCROLL
)
80 WX_FLAGS_MEMBER(wxHSCROLL
)
82 WX_FLAGS_MEMBER(wxRA_SPECIFY_COLS
)
83 WX_FLAGS_MEMBER(wxRA_HORIZONTAL
)
84 WX_FLAGS_MEMBER(wxRA_SPECIFY_ROWS
)
85 WX_FLAGS_MEMBER(wxRA_VERTICAL
)
87 WX_END_FLAGS( wxRadioBoxStyle
)
89 IMPLEMENT_DYNAMIC_CLASS_XTI(wxRadioBox
, wxControl
,"wx/radiobox.h")
91 WX_BEGIN_PROPERTIES_TABLE(wxRadioBox
)
92 WX_PROPERTY_FLAGS( WindowStyle
, wxRadioBoxStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
93 WX_END_PROPERTIES_TABLE()
96 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox
, wxControl
)
107 // there are two possible ways to create the radio buttons: either as children
108 // of the radiobox or as siblings of it - allow playing with both variants for
109 // now, eventually we will choose the best one for our purposes
111 // two main problems are the keyboard navigation inside the radiobox (arrows
112 // should switch between buttons, not pass focus to the next control) and the
113 // tooltips - a tooltip is associated with the radiobox itself, not the
116 // the problems with setting this to 1:
117 // a) Alt-<mnemonic of radiobox> isn't handled properly by IsDialogMessage()
118 // because it sets focus to the next control accepting it which is not a
119 // radio button but a radiobox sibling in this case - the only solution to
120 // this would be to handle Alt-<mnemonic> ourselves
121 // b) the problems with setting radiobox colours under Win98/2K were reported
122 // but I couldn't reproduce it so I have no idea about what causes it
124 // the problems with setting this to 0:
125 // a) the tooltips are not shown for the radiobox - possible solution: make
126 // TTM_WINDOWFROMPOS handling code in msw/tooltip.cpp work (easier said than
127 // done because I don't know why it doesn't work)
128 #define RADIOBTN_PARENT_IS_RADIOBOX 0
130 // ---------------------------------------------------------------------------
132 // ---------------------------------------------------------------------------
134 // wnd proc for radio buttons
136 LRESULT APIENTRY _EXPORT
wxRadioBtnWndProc(HWND hWnd
,
141 // ---------------------------------------------------------------------------
143 // ---------------------------------------------------------------------------
145 // the pointer to standard radio button wnd proc
146 static WXFARPROC s_wndprocRadioBtn
= (WXFARPROC
)NULL
;
150 // ===========================================================================
152 // ===========================================================================
154 // ---------------------------------------------------------------------------
156 // ---------------------------------------------------------------------------
158 int wxRadioBox::GetCount() const
163 int wxRadioBox::GetColumnCount() const
168 int wxRadioBox::GetRowCount() const
173 // returns the number of rows
174 int wxRadioBox::GetNumVer() const
176 if ( m_windowStyle
& wxRA_SPECIFY_ROWS
)
182 return (m_noItems
+ m_majorDim
- 1)/m_majorDim
;
186 // returns the number of columns
187 int wxRadioBox::GetNumHor() const
189 if ( m_windowStyle
& wxRA_SPECIFY_ROWS
)
191 return (m_noItems
+ m_majorDim
- 1)/m_majorDim
;
199 bool wxRadioBox::MSWCommand(WXUINT cmd
, WXWORD id
)
201 if ( cmd
== BN_CLICKED
)
206 int selectedButton
= -1;
208 for ( int i
= 0; i
< m_noItems
; i
++ )
210 if ( id
== wxGetWindowId(m_radioButtons
[i
]) )
218 if ( selectedButton
== -1 )
220 // just ignore it - due to a hack with WM_NCHITTEST handling in our
221 // wnd proc, we can receive dummy click messages when we click near
222 // the radiobox edge (this is ugly but Julian wouldn't let me get
227 if ( selectedButton
!= m_selectedButton
)
229 m_selectedButton
= selectedButton
;
231 SendNotificationEvent();
233 //else: don't generate events when the selection doesn't change
242 wxRadioBox::wxRadioBox()
244 m_selectedButton
= -1;
247 m_radioButtons
= NULL
;
250 m_radioHeight
= NULL
;
253 bool wxRadioBox::Create(wxWindow
*parent
,
255 const wxString
& title
,
259 const wxString choices
[],
262 const wxValidator
& val
,
263 const wxString
& name
)
265 // initialize members
266 m_selectedButton
= -1;
269 m_majorDim
= majorDim
== 0 ? n
: majorDim
;
270 m_noRowsOrCols
= majorDim
;
272 // common initialization
273 if ( !CreateControl(parent
, id
, pos
, size
, style
, val
, name
) )
276 // create the static box
277 if ( !MSWCreateControl(wxT("BUTTON"), BS_GROUPBOX
| WS_GROUP
,
278 pos
, size
, title
, 0) )
281 // and now create the buttons
283 #if RADIOBTN_PARENT_IS_RADIOBOX
284 HWND hwndParent
= GetHwnd();
286 HWND hwndParent
= GetHwndOf(parent
);
289 // Some radio boxes test consecutive id.
290 (void)NewControlId();
291 m_radioButtons
= new WXHWND
[n
];
292 m_radioWidth
= new int[n
];
293 m_radioHeight
= new int[n
];
296 wxFont
& font
= GetFont();
299 hfont
= font
.GetResourceHandle();
302 for ( int i
= 0; i
< n
; i
++ )
305 m_radioHeight
[i
] = -1;
306 long styleBtn
= BS_AUTORADIOBUTTON
| WS_TABSTOP
| WS_CHILD
| WS_VISIBLE
;
307 if ( i
== 0 && style
== 0 )
308 styleBtn
|= WS_GROUP
;
310 long newId
= NewControlId();
312 HWND hwndBtn
= ::CreateWindow(_T("BUTTON"),
315 0, 0, 0, 0, // will be set in SetSize()
323 wxLogLastError(wxT("CreateWindow(radio btn)"));
328 m_radioButtons
[i
] = (WXHWND
)hwndBtn
;
330 SubclassRadioButton((WXHWND
)hwndBtn
);
334 ::SendMessage(hwndBtn
, WM_SETFONT
, (WPARAM
)hfont
, 0L);
337 m_subControls
.Add(newId
);
340 // Create a dummy radio control to end the group.
341 (void)::CreateWindow(_T("BUTTON"),
343 WS_GROUP
| BS_AUTORADIOBUTTON
| WS_CHILD
,
344 0, 0, 0, 0, hwndParent
,
345 (HMENU
)NewControlId(), wxGetInstance(), NULL
);
349 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
354 wxRadioBox::~wxRadioBox()
356 m_isBeingDeleted
= TRUE
;
361 for (i
= 0; i
< m_noItems
; i
++)
362 ::DestroyWindow((HWND
)m_radioButtons
[i
]);
363 delete[] m_radioButtons
;
367 delete[] m_radioWidth
;
369 delete[] m_radioHeight
;
373 void wxRadioBox::SetString(int item
, const wxString
& label
)
375 wxCHECK_RET( item
>= 0 && item
< m_noItems
, wxT("invalid radiobox index") );
377 m_radioWidth
[item
] = m_radioHeight
[item
] = -1;
378 SetWindowText((HWND
)m_radioButtons
[item
], label
.c_str());
381 void wxRadioBox::SetSelection(int N
)
383 wxCHECK_RET( (N
>= 0) && (N
< m_noItems
), wxT("invalid radiobox index") );
385 // Following necessary for Win32s, because Win32s translate BM_SETCHECK
386 if (m_selectedButton
>= 0 && m_selectedButton
< m_noItems
)
387 ::SendMessage((HWND
) m_radioButtons
[m_selectedButton
], BM_SETCHECK
, 0, 0L);
389 ::SendMessage((HWND
)m_radioButtons
[N
], BM_SETCHECK
, 1, 0L);
391 m_selectedButton
= N
;
394 // Get single selection, for single choice list items
395 int wxRadioBox::GetSelection() const
397 return m_selectedButton
;
400 // Find string for position
401 wxString
wxRadioBox::GetString(int item
) const
403 wxCHECK_MSG( item
>= 0 && item
< m_noItems
, wxEmptyString
,
404 wxT("invalid radiobox index") );
406 return wxGetWindowText(m_radioButtons
[item
]);
409 // ----------------------------------------------------------------------------
411 // ----------------------------------------------------------------------------
413 wxSize
wxRadioBox::GetMaxButtonSize() const
415 // calculate the max button size
418 for ( int i
= 0 ; i
< m_noItems
; i
++ )
421 if ( m_radioWidth
[i
] < 0 )
423 GetTextExtent(wxGetWindowText(m_radioButtons
[i
]), &width
, &height
);
425 // adjust the size to take into account the radio box itself
426 // FIXME this is totally bogus!
433 width
= m_radioWidth
[i
];
434 height
= m_radioHeight
[i
];
437 if ( widthMax
< width
)
439 if ( heightMax
< height
)
443 return wxSize(widthMax
, heightMax
);
446 wxSize
wxRadioBox::GetTotalButtonSize(const wxSize
& sizeBtn
) const
448 // the radiobox should be big enough for its buttons
450 wxGetCharSize(m_hWnd
, &cx1
, &cy1
, &GetFont());
452 int extraHeight
= cy1
;
454 /* We'll assume the adjustments below are OK for Win 3.1 too
455 #if defined(CTL3D) && !CTL3D
456 // Requires a bigger group box in plain Windows
462 int height
= GetNumVer() * sizeBtn
.y
+ cy1
/2 + extraHeight
;
463 int width
= GetNumHor() * (sizeBtn
.x
+ cx1
) + cx1
;
465 // Add extra space under the label, if it exists.
466 if (!wxControl::GetLabel().IsEmpty())
469 // and also wide enough for its label
471 GetTextExtent(GetTitle(), &widthLabel
, NULL
);
472 widthLabel
+= RADIO_SIZE
; // FIXME this is bogus too
473 if ( widthLabel
> width
)
476 return wxSize(width
, height
);
479 wxSize
wxRadioBox::DoGetBestSize() const
481 return GetTotalButtonSize(GetMaxButtonSize());
484 // Restored old code.
485 void wxRadioBox::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
487 int currentX
, currentY
;
488 GetPosition(¤tX
, ¤tY
);
489 int widthOld
, heightOld
;
490 GetSize(&widthOld
, &heightOld
);
495 if (x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
497 if (y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
500 #if RADIOBTN_PARENT_IS_RADIOBOX
509 wxGetCharSize(m_hWnd
, &cx1
, &cy1
, & GetFont());
511 // Attempt to have a look coherent with other platforms: We compute the
512 // biggest toggle dim, then we align all items according this value.
513 wxSize maxSize
= GetMaxButtonSize();
514 int maxWidth
= maxSize
.x
,
515 maxHeight
= maxSize
.y
;
517 wxSize totSize
= GetTotalButtonSize(maxSize
);
518 int totWidth
= totSize
.x
,
519 totHeight
= totSize
.y
;
521 // only change our width/height if asked for
524 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
532 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
538 ::MoveWindow(GetHwnd(), xx
, yy
, width
, height
, TRUE
);
540 // Now position all the buttons: the current button will be put at
541 // wxPoint(x_offset, y_offset) and the new row/column will start at
542 // startX/startY. The size of all buttons will be the same wxSize(maxWidth,
543 // maxHeight) except for the buttons in the last column which should extend
544 // to the right border of radiobox and thus can be wider than this.
546 // Also, remember that wxRA_SPECIFY_COLS means that we arrange buttons in
547 // left to right order and m_majorDim is the number of columns while
548 // wxRA_SPECIFY_ROWS means that the buttons are arranged top to bottom and
549 // m_majorDim is the number of rows.
554 // Add extra space under the label, if it exists.
555 if (!wxControl::GetLabel().IsEmpty())
558 int startX
= x_offset
;
559 int startY
= y_offset
;
561 for ( int i
= 0; i
< m_noItems
; i
++ )
563 // the last button in the row may be wider than the other ones as the
564 // radiobox may be wider than the sum of the button widths (as it
565 // happens, for example, when the radiobox label is very long)
567 if ( m_windowStyle
& wxRA_SPECIFY_COLS
)
569 // item is the last in its row if it is a multiple of the number of
570 // columns or if it is just the last item
572 isLastInTheRow
= ((n
% m_majorDim
) == 0) || (n
== m_noItems
);
574 else // wxRA_SPECIFY_ROWS
576 // item is the last in the row if it is in the last columns
577 isLastInTheRow
= i
>= (m_noItems
/m_majorDim
)*m_majorDim
;
580 // is this the start of new row/column?
581 if ( i
&& (i
% m_majorDim
== 0) )
583 if ( m_windowStyle
& wxRA_SPECIFY_ROWS
)
585 // start of new column
587 x_offset
+= maxWidth
+ cx1
;
589 else // start of new row
592 y_offset
+= maxHeight
;
593 if (m_radioWidth
[0]>0)
599 if ( isLastInTheRow
)
601 // make the button go to the end of radio box
602 widthBtn
= startX
+ width
- x_offset
- 2*cx1
;
603 if ( widthBtn
< maxWidth
)
608 // normal button, always of the same size
612 // VZ: make all buttons of the same, maximal size - like this they
613 // cover the radiobox entirely and the radiobox tooltips are always
614 // shown (otherwise they are not when the mouse pointer is in the
615 // radiobox part not belonging to any radiobutton)
616 ::MoveWindow((HWND
)m_radioButtons
[i
],
617 x_offset
, y_offset
, widthBtn
, maxHeight
,
620 // where do we put the next button?
621 if ( m_windowStyle
& wxRA_SPECIFY_ROWS
)
624 y_offset
+= maxHeight
;
625 if (m_radioWidth
[0]>0)
630 // to the right of this one
631 x_offset
+= widthBtn
+ cx1
;
636 void wxRadioBox::GetSize(int *width
, int *height
) const
639 rect
.left
= -1; rect
.right
= -1; rect
.top
= -1; rect
.bottom
= -1;
642 wxFindMaxSize(m_hWnd
, &rect
);
645 for (i
= 0; i
< m_noItems
; i
++)
646 wxFindMaxSize(m_radioButtons
[i
], &rect
);
648 *width
= rect
.right
- rect
.left
;
649 *height
= rect
.bottom
- rect
.top
;
652 void wxRadioBox::GetPosition(int *x
, int *y
) const
654 wxWindow
*parent
= GetParent();
655 RECT rect
= { -1, -1, -1, -1 };
658 for (i
= 0; i
< m_noItems
; i
++)
659 wxFindMaxSize(m_radioButtons
[i
], &rect
);
662 wxFindMaxSize(m_hWnd
, &rect
);
664 // Since we now have the absolute screen coords, if there's a parent we
665 // must subtract its top left corner
671 ::ScreenToClient((HWND
) parent
->GetHWND(), &point
);
674 // We may be faking the client origin. So a window that's really at (0, 30)
675 // may appear (to wxWin apps) to be at (0, 0).
678 wxPoint
pt(GetParent()->GetClientAreaOrigin());
687 void wxRadioBox::SetFocus()
691 ::SetFocus((HWND
)m_radioButtons
[m_selectedButton
== -1
693 : m_selectedButton
]);
698 bool wxRadioBox::Show(bool show
)
700 if ( !wxControl::Show(show
) )
703 int nCmdShow
= show
? SW_SHOW
: SW_HIDE
;
704 for ( int i
= 0; i
< m_noItems
; i
++ )
706 ::ShowWindow((HWND
)m_radioButtons
[i
], nCmdShow
);
712 // Enable a specific button
713 void wxRadioBox::Enable(int item
, bool enable
)
715 wxCHECK_RET( item
>= 0 && item
< m_noItems
,
716 wxT("invalid item in wxRadioBox::Enable()") );
718 ::EnableWindow((HWND
) m_radioButtons
[item
], enable
);
721 // Enable all controls
722 bool wxRadioBox::Enable(bool enable
)
724 if ( !wxControl::Enable(enable
) )
727 for (int i
= 0; i
< m_noItems
; i
++)
728 ::EnableWindow((HWND
) m_radioButtons
[i
], enable
);
733 // Show a specific button
734 void wxRadioBox::Show(int item
, bool show
)
736 wxCHECK_RET( item
>= 0 && item
< m_noItems
,
737 wxT("invalid item in wxRadioBox::Show()") );
739 ::ShowWindow((HWND
)m_radioButtons
[item
], show
? SW_SHOW
: SW_HIDE
);
742 bool wxRadioBox::ContainsHWND(WXHWND hWnd
) const
744 size_t count
= GetCount();
745 for ( size_t i
= 0; i
< count
; i
++ )
747 if ( GetRadioButtons()[i
] == hWnd
)
754 void wxRadioBox::Command(wxCommandEvent
& event
)
756 SetSelection (event
.m_commandInt
);
758 ProcessCommand (event
);
761 // NB: if this code is changed, wxGetWindowForHWND() which relies on having the
762 // radiobox pointer in GWL_USERDATA for radio buttons must be updated too!
763 void wxRadioBox::SubclassRadioButton(WXHWND hWndBtn
)
765 HWND hwndBtn
= (HWND
)hWndBtn
;
767 if ( !s_wndprocRadioBtn
)
768 s_wndprocRadioBtn
= (WXFARPROC
)::GetWindowLong(hwndBtn
, GWL_WNDPROC
);
770 ::SetWindowLong(hwndBtn
, GWL_WNDPROC
, (long)wxRadioBtnWndProc
);
771 ::SetWindowLong(hwndBtn
, GWL_USERDATA
, (long)this);
774 void wxRadioBox::SendNotificationEvent()
776 wxCommandEvent
event(wxEVT_COMMAND_RADIOBOX_SELECTED
, m_windowId
);
777 event
.SetInt( m_selectedButton
);
778 event
.SetString( GetString(m_selectedButton
) );
779 event
.SetEventObject( this );
780 ProcessCommand(event
);
783 bool wxRadioBox::SetFont(const wxFont
& font
)
785 if ( !wxControl::SetFont(font
) )
791 // also set the font of our radio buttons
792 WXHFONT hfont
= wxFont(font
).GetResourceHandle();
793 for ( int n
= 0; n
< m_noItems
; n
++ )
795 HWND hwndBtn
= (HWND
)m_radioButtons
[n
];
796 ::SendMessage(hwndBtn
, WM_SETFONT
, (WPARAM
)hfont
, 0L);
798 // otherwise the buttons are not redrawn correctly
799 ::InvalidateRect(hwndBtn
, NULL
, FALSE
/* don't erase bg */);
805 // ----------------------------------------------------------------------------
807 // ----------------------------------------------------------------------------
809 long wxRadioBox::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
814 case WM_CTLCOLORSTATIC
:
815 // set the colour of the radio buttons to be the same as ours
817 HDC hdc
= (HDC
)wParam
;
819 const wxColour
& colBack
= GetBackgroundColour();
820 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
821 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
823 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
825 return (WXHBRUSH
)brush
->GetResourceHandle();
829 // VZ: this code breaks radiobox redrawing under Windows XP, don't use
830 // it. If you need to get messages from the static controls,
831 // create them as a child of another (non static) window
833 // This is required for the radiobox to be sensitive to mouse input,
834 // e.g. for Dialog Editor.
837 int xPos
= LOWORD(lParam
); // horizontal position of cursor
838 int yPos
= HIWORD(lParam
); // vertical position of cursor
840 ScreenToClient(&xPos
, &yPos
);
842 // Make sure you can drag by the top of the groupbox, but let
843 // other (enclosed) controls get mouse events also
845 return (long)HTCLIENT
;
851 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
854 WXHBRUSH
wxRadioBox::OnCtlColor(WXHDC pDC
, WXHWND
WXUNUSED(pWnd
), WXUINT
WXUNUSED(nCtlColor
),
860 WXUINT
WXUNUSED(message
),
861 WXWPARAM
WXUNUSED(wParam
),
862 WXLPARAM
WXUNUSED(lParam
)
869 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
870 return (WXHBRUSH
) hbrush
;
872 #endif // wxUSE_CTL3D
875 wxColour colBack
= GetBackgroundColour();
878 colBack
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
880 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
881 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
883 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
885 return (WXHBRUSH
)brush
->GetResourceHandle();
889 // ---------------------------------------------------------------------------
890 // window proc for radio buttons
891 // ---------------------------------------------------------------------------
895 LRESULT APIENTRY _EXPORT
wxRadioBtnWndProc(HWND hwnd
,
903 // we must tell IsDialogMessage()/our kbd processing code that we
904 // want to process arrows ourselves because neither of them is
905 // smart enough to handle arrows properly for us
907 long lDlgCode
= ::CallWindowProc(CASTWNDPROC s_wndprocRadioBtn
, hwnd
,
908 message
, wParam
, lParam
);
910 return lDlgCode
| DLGC_WANTARROWS
;
916 NMHDR
* hdr
= (NMHDR
*)lParam
;
917 if ( hdr
->code
== TTN_NEEDTEXT
)
919 wxRadioBox
*radiobox
= (wxRadioBox
*)
920 ::GetWindowLong(hwnd
, GWL_USERDATA
);
922 wxCHECK_MSG( radiobox
, 0,
923 wxT("radio button without radio box?") );
925 wxToolTip
*tooltip
= radiobox
->GetToolTip();
928 TOOLTIPTEXT
*ttt
= (TOOLTIPTEXT
*)lParam
;
929 ttt
->lpszText
= (wxChar
*)tooltip
->GetTip().c_str();
937 #endif // wxUSE_TOOLTIPS
941 wxRadioBox
*radiobox
= (wxRadioBox
*)
942 ::GetWindowLong(hwnd
, GWL_USERDATA
);
944 wxCHECK_MSG( radiobox
, 0, wxT("radio button without radio box?") );
946 bool processed
= TRUE
;
970 // just to suppress the compiler warning
976 int selOld
= radiobox
->GetSelection();
977 int selNew
= radiobox
->GetNextItem
981 radiobox
->GetWindowStyle()
984 if ( selNew
!= selOld
)
986 radiobox
->SetSelection(selNew
);
987 radiobox
->SetFocus();
989 // emulate the button click
990 radiobox
->SendNotificationEvent();
1001 wxRadioBox
*radiobox
= (wxRadioBox
*)
1002 ::GetWindowLong(hwnd
, GWL_USERDATA
);
1004 wxCHECK_MSG( radiobox
, 0, wxT("radio button without radio box?") );
1006 bool processed
= TRUE
;
1008 // HELPINFO doesn't seem to be supported on WinCE.
1010 HELPINFO
* info
= (HELPINFO
*) lParam
;
1011 // Don't yet process menu help events, just windows
1012 if (info
->iContextType
== HELPINFO_WINDOW
)
1015 wxWindow
* subjectOfHelp
= radiobox
;
1016 bool eventProcessed
= FALSE
;
1017 while (subjectOfHelp
&& !eventProcessed
)
1019 wxHelpEvent
helpEvent(wxEVT_HELP
, subjectOfHelp
->GetId(),
1023 wxPoint(info
->MousePos
.x
, info
->MousePos
.y
)
1025 ) ; // info->iCtrlId);
1026 helpEvent
.SetEventObject(radiobox
);
1027 eventProcessed
= radiobox
->GetEventHandler()->ProcessEvent(helpEvent
);
1029 // Go up the window hierarchy until the event is handled (or not)
1030 subjectOfHelp
= subjectOfHelp
->GetParent();
1032 processed
= eventProcessed
;
1035 else if (info
->iContextType
== HELPINFO_MENUITEM
)
1037 wxHelpEvent
helpEvent(wxEVT_HELP
, info
->iCtrlId
) ;
1038 helpEvent
.SetEventObject(radiobox
);
1039 processed
= radiobox
->GetEventHandler()->ProcessEvent(helpEvent
);
1052 return ::CallWindowProc(CASTWNDPROC s_wndprocRadioBtn
, hwnd
, message
, wParam
, lParam
);
1057 #endif // wxUSE_RADIOBOX