X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/222ed1d678dff2f5c3c4164321dd05e8f47de487..cb73e6001f891ae46b12a1e4ca39b93649cb6099:/src/msw/radiobut.cpp?ds=inline diff --git a/src/msw/radiobut.cpp b/src/msw/radiobut.cpp index 4cff6cf1e3..f733548853 100644 --- a/src/msw/radiobut.cpp +++ b/src/msw/radiobut.cpp @@ -17,7 +17,7 @@ // headers // ---------------------------------------------------------------------------- -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "radiobut.h" #endif @@ -47,7 +47,26 @@ // wxRadioButton creation // ---------------------------------------------------------------------------- + +#if wxUSE_EXTENDED_RTTI +IMPLEMENT_DYNAMIC_CLASS_XTI(wxRadioButton, wxControl,"wx/radiobut.h") + +WX_BEGIN_PROPERTIES_TABLE(wxRadioButton) + WX_DELEGATE( OnClick , wxEVT_COMMAND_RADIOBUTTON_SELECTED , wxCommandEvent ) + WX_PROPERTY( Font , wxFont , SetFont , GetFont , ) + WX_PROPERTY( Label,wxString, SetLabel, GetLabel, wxEmptyString ) + WX_PROPERTY( Value ,bool, SetValue, GetValue, ) +WX_END_PROPERTIES_TABLE() + +WX_BEGIN_HANDLERS_TABLE(wxRadioButton) +WX_END_HANDLERS_TABLE() + +WX_CONSTRUCTOR_6( wxRadioButton , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle ) + +#else IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl) +#endif + void wxRadioButton::Init() {