]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/radiobut.cpp
xti additions / changes, trying to reduce dependencies
[wxWidgets.git] / src / msw / radiobut.cpp
index 4cff6cf1e3e1af2ada229bf821fc8f7386d9dd64..f733548853d4cf92577dc809dcf5ba783f426991 100644 (file)
@@ -17,7 +17,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "radiobut.h"
 #endif
 
 #pragma implementation "radiobut.h"
 #endif
 
 // wxRadioButton creation
 // ----------------------------------------------------------------------------
 
 // 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)
 IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl)
+#endif
+
 
 void wxRadioButton::Init()
 {
 
 void wxRadioButton::Init()
 {