1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/os2/radiobox.cpp
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
18 #include "wx/wxchar.h"
19 #include "wx/string.h"
20 #include "wx/bitmap.h"
22 #include "wx/radiobox.h"
25 #include "wx/os2/private.h"
27 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox
, wxControl
)
29 // ---------------------------------------------------------------------------
31 // ---------------------------------------------------------------------------
33 // wnd proc for radio buttons
34 MRESULT EXPENTRY
wxRadioBtnWndProc( HWND hWnd
39 MRESULT EXPENTRY
wxRadioBoxWndProc( HWND hWnd
45 // ---------------------------------------------------------------------------
47 // ---------------------------------------------------------------------------
49 // the pointer to standard radio button wnd proc
50 extern void wxAssociateWinWithHandle( HWND hWnd
53 static WXFARPROC fnWndProcRadioBtn
= NULL
;
54 static WXFARPROC fnWndProcRadioBox
= NULL
;
56 // ===========================================================================
58 // ===========================================================================
60 // ---------------------------------------------------------------------------
62 // ---------------------------------------------------------------------------
65 wxRadioBox::wxRadioBox()
67 m_nSelectedButton
= -1;
70 m_ahRadioButtons
= NULL
;
71 m_pnRadioWidth
= NULL
;
72 m_pnRadioHeight
= NULL
;
73 } // end of wxRadioBox::wxRadioBox
75 wxRadioBox::~wxRadioBox()
77 m_isBeingDeleted
= true;
82 for (i
= 0; i
< m_nNoItems
; i
++)
83 ::WinDestroyWindow((HWND
)m_ahRadioButtons
[i
]);
84 delete[] m_ahRadioButtons
;
87 delete[] m_pnRadioWidth
;
89 delete[] m_pnRadioHeight
;
90 } // end of wxRadioBox::~wxRadioBox
92 void wxRadioBox::AdjustButtons( int nX
,
96 int WXUNUSED(nSizeFlags
) )
100 int nYOffset
= nY
+ nHeight
;
107 wxFont vFont
= GetFont();
109 wxGetCharSize( m_hWnd
114 vMaxSize
= GetMaxButtonSize();
115 nMaxWidth
= vMaxSize
.x
;
116 nMaxHeight
= vMaxSize
.y
;
119 nYOffset
-= (nMaxHeight
+ ((3*nCy1
)/2));
124 for (int i
= 0; i
< m_nNoItems
; i
++)
127 // The last button in the row may be wider than the other ones as the
128 // radiobox may be wider than the sum of the button widths (as it
129 // happens, for example, when the radiobox label is very long)
131 bool bIsLastInTheRow
;
133 if (m_windowStyle
& wxRA_SPECIFY_COLS
)
136 // Item is the last in its row if it is a multiple of the number of
137 // columns or if it is just the last item
141 bIsLastInTheRow
= ((n
% GetMajorDim()) == 0) || (n
== m_nNoItems
);
143 else // winRA_SPECIFY_ROWS
146 // Item is the last in the row if it is in the last columns
148 bIsLastInTheRow
= i
>= (m_nNoItems
/GetMajorDim()) * GetMajorDim();
152 // Is this the start of new row/column?
154 if (i
&& (i
% GetMajorDim() == 0))
156 if (m_windowStyle
& wxRA_SPECIFY_ROWS
)
160 // Start of new column
163 nXOffset
+= nMaxWidth
+ nCx1
;
165 else // start of new row
168 nYOffset
-= nMaxHeight
;
169 if (m_pnRadioWidth
[0] > 0L)
179 // Make the button go to the end of radio box
181 nWidthBtn
= nStartX
+ nWidth
- nXOffset
- (2 * nCx1
);
182 if (nWidthBtn
< nMaxWidth
)
183 nWidthBtn
= nMaxWidth
;
188 // Normal button, always of the same size
190 nWidthBtn
= nMaxWidth
;
194 // Make all buttons of the same, maximal size - like this they
195 // cover the radiobox entirely and the radiobox tooltips are always
196 // shown (otherwise they are not when the mouse pointer is in the
197 // radiobox part not belonging to any radiobutton)
199 ::WinSetWindowPos( (HWND
)m_ahRadioButtons
[i
]
205 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
208 // Where do we put the next button?
210 if (m_windowStyle
& wxRA_SPECIFY_ROWS
)
215 nYOffset
-= nMaxHeight
;
216 if (m_pnRadioWidth
[0] > 0)
222 // To the right of this one
224 nXOffset
+= nWidthBtn
+ nCx1
;
227 } // end of wxRadioBox::AdjustButtons
229 void wxRadioBox::Command (
230 wxCommandEvent
& rEvent
233 SetSelection (rEvent
.GetInt());
234 ProcessCommand(rEvent
);
235 } // end of wxRadioBox::Command
237 bool wxRadioBox::ContainsHWND(
241 size_t nCount
= GetCount();
244 for (i
= 0; i
< nCount
; i
++)
246 if (GetRadioButtons()[i
] == hWnd
)
250 } // end of wxRadioBox::ContainsHWND
252 bool wxRadioBox::Create(
255 , const wxString
& rsTitle
256 , const wxPoint
& rPos
257 , const wxSize
& rSize
258 , const wxArrayString
& asChoices
261 , const wxValidator
& rVal
262 , const wxString
& rsName
265 wxCArrayString
chs(asChoices
);
267 return Create(pParent
, vId
, rsTitle
, rPos
, rSize
, chs
.GetCount(),
268 chs
.GetStrings(), nMajorDim
, lStyle
, rVal
, rsName
);
271 bool wxRadioBox::Create(
274 , const wxString
& rsTitle
275 , const wxPoint
& rPos
276 , const wxSize
& rSize
278 , const wxString asChoices
[]
281 , const wxValidator
& rVal
282 , const wxString
& rsName
288 vColour
.Set(wxString(wxT("BLACK")));
289 m_backgroundColour
= pParent
->GetBackgroundColour();
290 m_nSelectedButton
= -1;
294 // Common initialization
296 if (!CreateControl( pParent
305 if (!OS2CreateControl( wxT("STATIC")
313 wxAssociateWinWithHandle(m_hWnd
, this);
316 // Now we can set m_nNoItems and let SetMajorDim set m_numCols/m_numRows
319 SetMajorDim(nMajorDim
== 0 ? nNum
: nMajorDim
, lStyle
);
320 m_nNoRowsOrCols
= nMajorDim
;
323 // Some radio boxes test consecutive id.
325 (void)NewControlId();
326 m_ahRadioButtons
= new WXHWND
[nNum
];
327 m_pnRadioWidth
= new int[nNum
];
328 m_pnRadioHeight
= new int[nNum
];
330 for (int i
= 0; i
< nNum
; i
++)
332 m_pnRadioWidth
[i
] = m_pnRadioHeight
[i
] = -1;
334 long lStyleBtn
= BS_AUTORADIOBUTTON
| WS_TABSTOP
| WS_VISIBLE
;
335 int nNewId
= NewControlId();
337 if (i
== 0 && lStyle
== 0)
338 lStyleBtn
|= WS_GROUP
;
340 HWND hWndBtn
= (WXHWND
)::WinCreateWindow ( GetHwndOf(pParent
)
342 ,::wxPMTextToLabel(asChoices
[i
])
351 lColor
= (LONG
)vColour
.GetPixel();
352 ::WinSetPresParam( hWndBtn
357 lColor
= (LONG
)m_backgroundColour
.GetPixel();
359 ::WinSetPresParam( hWndBtn
368 m_ahRadioButtons
[i
] = (WXHWND
)hWndBtn
;
369 SubclassRadioButton((WXHWND
)hWndBtn
);
370 wxAssociateWinWithHandle(hWndBtn
, this);
371 wxOS2SetFont( hWndBtn
374 ::WinSetWindowULong(hWndBtn
, QWL_USER
, (ULONG
)this);
375 m_aSubControls
.Add(nNewId
);
379 // Create a dummy radio control to end the group.
381 (void)::WinCreateWindow ( GetHwndOf(pParent
),
384 WS_GROUP
| BS_AUTORADIOBUTTON
,
388 (HMENU
)NewControlId(),
392 SetFont(*wxSMALL_FONT
);
393 fnWndProcRadioBox
= (WXFARPROC
)::WinSubclassWindow( GetHwnd()
394 ,(PFNWP
)wxRadioBoxWndProc
396 ::WinSetWindowULong(GetHwnd(), QWL_USER
, (ULONG
)this);
397 lColor
= (LONG
)vColour
.GetPixel();
398 ::WinSetPresParam( m_hWnd
403 ::WinSetPresParam( m_hWnd
408 lColor
= (LONG
)m_backgroundColour
.GetPixel();
410 ::WinSetPresParam( m_hWnd
415 ::WinSetPresParam( m_hWnd
429 } // end of wxRadioBox::Create
431 wxSize
wxRadioBox::DoGetBestSize() const
433 return (GetTotalButtonSize(GetMaxButtonSize()));
434 } // end of WinGuiBase_CRadioBox::DoGetBestSize
436 void wxRadioBox::DoSetSize(
450 #if RADIOBTN_PARENT_IS_RADIOBOX
459 wxSize vMaxSize
= GetMaxButtonSize();
467 wxFont vFont
= GetFont();
469 m_nSizeFlags
= nSizeFlags
;
470 GetPosition( &nCurrentX
477 if (nX
== wxDefaultCoord
&& !(nSizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
479 if (nY
== wxDefaultCoord
&& !(nSizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
486 wxGetCharSize( m_hWnd
493 // Attempt to have a look coherent with other platforms: We compute the
494 // biggest toggle dim, then we align all items according this value.
496 vMaxSize
= GetMaxButtonSize();
497 nMaxWidth
= vMaxSize
.x
;
498 nMaxHeight
= vMaxSize
.y
;
500 vTotSize
= GetTotalButtonSize(vMaxSize
);
501 nTotWidth
= vTotSize
.x
;
502 nTotHeight
= vTotSize
.y
;
505 // Only change our width/height if asked for
509 if (nSizeFlags
& wxSIZE_AUTO_WIDTH
)
517 if (nSizeFlags
& wxSIZE_AUTO_HEIGHT
)
518 nHeight
= nTotHeight
;
520 nHeight
= nHeightOld
;
523 wxWindowOS2
* pParent
= (wxWindowOS2
*)GetParent();
527 int nOS2Height
= GetOS2ParentHeight(pParent
);
529 nYy
= nOS2Height
- (nYy
+ nHeight
);
530 nYOffset
= nYy
+ nHeight
;
536 ::WinQueryWindowRect(HWND_DESKTOP
, &vRect
);
537 nYy
= vRect
.yTop
- (nYy
+ nHeight
);
539 ::WinSetWindowPos( GetHwnd()
545 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
549 // Now position all the buttons: the current button will be put at
550 // wxPoint(x_offset, y_offset) and the new row/column will start at
551 // startX/startY. The size of all buttons will be the same wxSize(maxWidth,
552 // maxHeight) except for the buttons in the last column which should extend
553 // to the right border of radiobox and thus can be wider than this.
555 // Also, remember that wxRA_SPECIFY_COLS means that we arrange buttons in
556 // left to right order and m_majorDim is the number of columns while
557 // wxRA_SPECIFY_ROWS means that the buttons are arranged top to bottom and
558 // m_majorDim is the number of rows.
561 nYOffset
-= (nMaxHeight
+ ((3*nCy1
)/2));
566 for (int i
= 0; i
< m_nNoItems
; i
++)
569 // The last button in the row may be wider than the other ones as the
570 // radiobox may be wider than the sum of the button widths (as it
571 // happens, for example, when the radiobox label is very long)
573 bool bIsLastInTheRow
;
575 if (m_windowStyle
& wxRA_SPECIFY_COLS
)
578 // Item is the last in its row if it is a multiple of the number of
579 // columns or if it is just the last item
583 bIsLastInTheRow
= ((n
% GetMajorDim()) == 0) || (n
== m_nNoItems
);
585 else // winRA_SPECIFY_ROWS
588 // Item is the last in the row if it is in the last columns
590 bIsLastInTheRow
= i
>= (m_nNoItems
/GetMajorDim()) * GetMajorDim();
594 // Is this the start of new row/column?
596 if (i
&& (i
% GetMajorDim() == 0))
598 if (m_windowStyle
& wxRA_SPECIFY_ROWS
)
602 // Start of new column
605 nXOffset
+= nMaxWidth
+ nCx1
;
607 else // start of new row
610 nYOffset
-= nMaxHeight
;
611 if (m_pnRadioWidth
[0] > 0L)
621 // Make the button go to the end of radio box
623 nWidthBtn
= nStartX
+ nWidth
- nXOffset
- (2 * nCx1
);
624 if (nWidthBtn
< nMaxWidth
)
625 nWidthBtn
= nMaxWidth
;
630 // Normal button, always of the same size
632 nWidthBtn
= nMaxWidth
;
636 // 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)
641 ::WinSetWindowPos( (HWND
)m_ahRadioButtons
[i
]
647 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
650 // Where do we put the next button?
652 if (m_windowStyle
& wxRA_SPECIFY_ROWS
)
657 nYOffset
-= nMaxHeight
;
658 if (m_pnRadioWidth
[0] > 0)
664 // To the right of this one
666 nXOffset
+= nWidthBtn
+ nCx1
;
669 } // end of wxRadioBox::DoSetSize
671 bool wxRadioBox::Enable(int nItem
, bool bEnable
)
673 wxCHECK_MSG( IsValid(nItem
), false,
674 wxT("invalid item in wxRadioBox::Enable()") );
676 ::WinEnableWindow((HWND
) m_ahRadioButtons
[nItem
], bEnable
);
678 } // end of wxRadioBox::Enable
680 bool wxRadioBox::Enable(
684 if ( !wxControl::Enable(bEnable
) )
686 for (int i
= 0; i
< m_nNoItems
; i
++)
687 ::WinEnableWindow((HWND
)m_ahRadioButtons
[i
], bEnable
);
689 } // end of wxRadioBox::Enable
691 int wxRadioBox::GetCount() const
694 } // end of wxRadioBox::GetCount
696 wxString
wxRadioBox::GetLabel(int nItem
) const
698 wxCHECK_MSG( IsValid(nItem
), wxEmptyString
, wxT("invalid radiobox index") );
700 return wxGetWindowText(m_ahRadioButtons
[nItem
]);
701 } // end of wxRadioBox::GetLabel
703 wxSize
wxRadioBox::GetMaxButtonSize() const
708 for (int i
= 0 ; i
< m_nNoItems
; i
++)
713 if (m_pnRadioWidth
[i
] < 0L)
715 GetTextExtent( wxGetWindowText(m_ahRadioButtons
[i
])
721 // Adjust the size to take into account the radio box itself
722 // FIXME this is totally bogus!
724 nWidth
+= RADIO_SIZE
;
730 nWidth
= m_pnRadioWidth
[i
];
731 nHeight
= m_pnRadioHeight
[i
];
733 if (nWidthMax
< nWidth
)
735 if (nHeightMax
< nHeight
)
736 nHeightMax
= nHeight
;
738 wxSize
maxsize( nWidthMax
, nHeightMax
);
740 } // end of wxRadioBox::GetMaxButtonSize
742 void wxRadioBox::GetPosition( int* pnX
,
745 wxWindowOS2
* pParent
= GetParent();
746 RECT vRect
= { -1, -1, -1, -1 };
750 for (i
= 0; i
< m_nNoItems
; i
++)
751 wxFindMaxSize( m_ahRadioButtons
[i
]
755 wxFindMaxSize( m_hWnd
760 // Since we now have the absolute screen coords, if there's a parent we
761 // must subtract its top left corner
763 vPoint
.x
= vRect
.xLeft
;
764 vPoint
.y
= vRect
.yTop
;
769 ::WinQueryWindowPos((HWND
)pParent
->GetHWND(), &vSwp
);
775 // We may be faking the client origin. So a window that's really at (0, 30)
776 // may appear (to wxWin apps) to be at (0, 0).
780 wxPoint
vPt(GetParent()->GetClientAreaOrigin());
789 } // end of wxRadioBox::GetPosition
791 // Get single selection, for single choice list items
792 int wxRadioBox::GetSelection() const
794 return m_nSelectedButton
;
795 } // end of wxRadioBox::GetSelection
797 void wxRadioBox::GetSize( int* pnWidth
, int* pnHeight
) const
808 wxFindMaxSize( m_hWnd
812 for (i
= 0; i
< m_nNoItems
; i
++)
813 wxFindMaxSize( m_ahRadioButtons
[i
]
818 *pnWidth
= vRect
.xRight
- vRect
.xLeft
;
820 *pnHeight
= vRect
.yTop
- vRect
.yBottom
;
821 } // end of wxRadioBox::GetSize
823 // Find string for position
824 wxString
wxRadioBox::GetString(
828 return wxGetWindowText(m_ahRadioButtons
[nNum
]);
829 } // end of wxRadioBox::GetString
831 // For single selection items only
832 wxString
wxRadioBox::GetStringSelection() const
835 int nSel
= GetSelection();
838 sResult
= GetString(nSel
);
840 } // end of wxRadioBox::GetStringSelection
842 wxSize
wxRadioBox::GetTotalButtonSize( const wxSize
& rSizeBtn
) const
850 nCx1
= GetCharWidth();
851 nCy1
= GetCharHeight();
852 nHeight
= GetRowCount() * rSizeBtn
.y
+ (2 * nCy1
);
853 nWidth
= GetColumnCount() * (rSizeBtn
.x
+ nCx1
) + nCx1
;
856 // And also wide enough for its label
858 wxString sStr
= wxGetWindowText(GetHwnd());
865 nWidthLabel
+= 2*nCx1
;
867 if (nWidthLabel
> nWidth
)
868 nWidth
= nWidthLabel
;
870 wxSize
total( nWidth
, nHeight
);
872 } // end of wxRadioBox::GetTotalButtonSize
874 WXHBRUSH
wxRadioBox::OnCtlColor( WXHDC hwinDC
,
875 WXHWND
WXUNUSED(hWnd
),
876 WXUINT
WXUNUSED(uCtlColor
),
877 WXUINT
WXUNUSED(uMessage
),
878 WXWPARAM
WXUNUSED(wParam
),
879 WXLPARAM
WXUNUSED(lParam
) )
881 HPS hPS
= (HPS
)hwinDC
; // pass in a PS handle in OS/2
883 if (GetParent()->GetTransparentBackground())
884 ::GpiSetBackMix(hPS
, BM_LEAVEALONE
);
886 ::GpiSetBackMix(hPS
, BM_OVERPAINT
);
888 wxColour vColBack
= GetBackgroundColour();
890 ::GpiSetBackColor(hPS
, vColBack
.GetPixel());
891 ::GpiSetColor(hPS
, vColBack
.GetPixel());
893 wxBrush
* pBrush
= wxTheBrushList
->FindOrCreateBrush( vColBack
, wxSOLID
);
894 return ((WXHBRUSH
)pBrush
->GetResourceHandle());
895 } // end of wxRadioBox::OnCtlColor
897 bool wxRadioBox::OS2Command( WXUINT uCmd
,
900 int nSelectedButton
= -1;
902 if (uCmd
== BN_CLICKED
)
908 for (int i
= 0; i
< m_nNoItems
; i
++)
910 if (wId
== wxGetWindowId(m_ahRadioButtons
[i
]))
916 if (nSelectedButton
== -1)
923 if (nSelectedButton
!= m_nSelectedButton
)
925 m_nSelectedButton
= nSelectedButton
;
926 SendNotificationEvent();
932 } // end of wxRadioBox::OS2Command
934 void wxRadioBox::SendNotificationEvent()
936 wxCommandEvent
vEvent( wxEVT_COMMAND_RADIOBOX_SELECTED
940 vEvent
.SetInt( m_nSelectedButton
);
941 vEvent
.SetString( GetString(m_nSelectedButton
) );
942 vEvent
.SetEventObject(this);
943 ProcessCommand(vEvent
);
944 } // end of wxRadioBox::SendNotificationEvent
946 void wxRadioBox::SetFocus()
950 if (m_nSelectedButton
== -1)
951 ::WinSetFocus(HWND_DESKTOP
, (HWND
)m_ahRadioButtons
[0]);
953 ::WinSetFocus(HWND_DESKTOP
, (HWND
)m_ahRadioButtons
[m_nSelectedButton
]);
955 } // end of wxRadioBox::SetFocus
957 bool wxRadioBox::SetFont(
961 if (!wxControl::SetFont(rFont
))
969 // Also set the font of our radio buttons
971 for (int n
= 0; n
< (int)m_nNoItems
; n
++)
973 HWND hWndBtn
= (HWND
)m_ahRadioButtons
[n
];
975 wxOS2SetFont( hWndBtn
978 ::WinInvalidateRect(hWndBtn
, NULL
, FALSE
);
981 } // end of wxRadioBox::SetFont
983 void wxRadioBox::SetSelection(
987 wxCHECK_RET( IsValid(nNum
), wxT("invalid radiobox index") );
989 if ( IsValid(m_nSelectedButton
) )
990 ::WinSendMsg((HWND
)m_ahRadioButtons
[m_nSelectedButton
], BM_SETCHECK
, (MPARAM
)0, (MPARAM
)0);
992 ::WinSendMsg((HWND
)m_ahRadioButtons
[nNum
], BM_SETCHECK
, (MPARAM
)1, (MPARAM
)0);
993 ::WinSetFocus(HWND_DESKTOP
, (HWND
)m_ahRadioButtons
[nNum
]);
994 m_nSelectedButton
= nNum
;
995 } // end of wxRadioBox::SetSelection
997 void wxRadioBox::SetString(
999 , const wxString
& rsLabel
1002 wxCHECK_RET( IsValid(nItem
), wxT("invalid radiobox index") );
1004 m_pnRadioWidth
[nItem
] = m_pnRadioHeight
[nItem
] = -1;
1005 ::WinSetWindowText((HWND
)m_ahRadioButtons
[nItem
], (PSZ
)rsLabel
.c_str());
1006 } // end of wxRadioBox::SetString
1008 bool wxRadioBox::SetStringSelection(const wxString
& rsStr
)
1010 int nSel
= FindString(rsStr
);
1019 } // end of wxRadioBox::SetStringSelection
1021 bool wxRadioBox::Show(
1025 if (!wxControl::Show(bShow
))
1028 for (int i
= 0; i
< m_nNoItems
; i
++)
1030 ::WinShowWindow((HWND
)m_ahRadioButtons
[i
], (BOOL
)bShow
);
1033 } // end of wxRadioBox::Show
1035 // Show a specific button
1036 bool wxRadioBox::Show(
1041 wxCHECK_MSG( IsValid(nItem
), false,
1042 wxT("invalid item in wxRadioBox::Show()") );
1044 ::WinShowWindow((HWND
)m_ahRadioButtons
[nItem
], bShow
);
1047 } // end of wxRadioBox::Show
1049 void wxRadioBox::SubclassRadioButton(
1053 fnWndProcRadioBtn
= (WXFARPROC
)::WinSubclassWindow(hWndBtn
, (PFNWP
)wxRadioBtnWndProc
);
1054 } // end of wxRadioBox::SubclassRadioButton
1056 MRESULT
wxRadioBox::WindowProc(
1062 return (wxControl::OS2WindowProc( uMsg
1066 } // end of wxRadioBox::WindowProc
1068 // ---------------------------------------------------------------------------
1069 // window proc for radio buttons
1070 // ---------------------------------------------------------------------------
1072 MRESULT
wxRadioBtnWndProc(
1083 USHORT uKeyFlags
= SHORT1FROMMP((MPARAM
)wParam
);
1085 if (!(uKeyFlags
& KC_KEYUP
)) // Key Down event
1087 if (uKeyFlags
& KC_VIRTUALKEY
)
1089 wxRadioBox
* pRadiobox
= (wxRadioBox
*)::WinQueryWindowULong( hWnd
1092 USHORT uVk
= SHORT2FROMMP((MPARAM
)lParam
);
1093 bool bProcessed
= true;
1118 // Just to suppress the compiler warning
1125 int nSelOld
= pRadiobox
->GetSelection();
1126 int nSelNew
= pRadiobox
->GetNextItem( nSelOld
1128 ,pRadiobox
->GetWindowStyleFlag()
1131 if (nSelNew
!= nSelOld
)
1133 pRadiobox
->SetSelection(nSelNew
);
1136 // Emulate the button click
1138 pRadiobox
->SendNotificationEvent();
1148 return fnWndProcRadioBtn( hWnd
1153 } // end of wxRadioBtnWndProc
1155 MRESULT EXPENTRY
wxRadioBoxWndProc( HWND hWnd
,
1160 return (fnWndProcRadioBox( hWnd
,
1165 } // end of wxRadioBoxWndProc