,const wxString asChoices[] = NULL
,int nMajorDim = 0
,long lStyle = wxRA_HORIZONTAL
-#if wxUSE_VALIDATORS
,const wxValidator& rVal = wxDefaultValidator
-#endif
,const wxString& rsName = wxRadioBoxNameStr
)
{
,asChoices
,nMajorDim
,lStyle
-#if wxUSE_VALIDATORS
,rVal
-#endif
+ ,rsName
+ );
+ }
+
+ inline wxRadioBox( wxWindow* pParent
+ ,wxWindowID vId
+ ,const wxString& rsTitle
+ ,const wxPoint& rPos
+ ,const wxSize& rSize
+ ,const wxArrayString& asChoices
+ ,int nMajorDim = 0
+ ,long lStyle = wxRA_HORIZONTAL
+ ,const wxValidator& rVal = wxDefaultValidator
+ ,const wxString& rsName = wxRadioBoxNameStr
+ )
+ {
+ Create( pParent
+ ,vId
+ ,rsTitle
+ ,rPos
+ ,rSize
+ ,asChoices
+ ,nMajorDim
+ ,lStyle
+ ,rVal
,rsName
);
}
,const wxString asChoices[] = NULL
,int nMajorDim = 0
,long lStyle = wxRA_HORIZONTAL
-#if wxUSE_VALIDATORS
,const wxValidator& rVal = wxDefaultValidator
-#endif
,const wxString& rsName = wxRadioBoxNameStr
);
+ bool Create( wxWindow* pParent
+ ,wxWindowID vId
+ ,const wxString& rsTitle
+ ,const wxPoint& rPos
+ ,const wxSize& rSize
+ ,const wxArrayString& asChoices
+ ,int nMajorDim = 0
+ ,long lStyle = wxRA_HORIZONTAL
+ ,const wxValidator& rVal = wxDefaultValidator
+ ,const wxString& rsName = wxRadioBoxNameStr
+ );
+
void Command(wxCommandEvent& rEvent);
bool ContainsHWND(WXHWND hWnd) const;
virtual bool Enable(bool bEnable = TRUE);