X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544fee32eeac1a4f6ca3e0c7c1b13ee24f1d1c1c..976f924083419b6a7feb1ff7d597c746a70abf1a:/src/xrc/xh_radbt.cpp diff --git a/src/xrc/xh_radbt.cpp b/src/xrc/xh_radbt.cpp index a117b1b9d0..e615ef9365 100644 --- a/src/xrc/xh_radbt.cpp +++ b/src/xrc/xh_radbt.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_radbt.h" #endif @@ -19,26 +19,28 @@ #pragma hdrstop #endif +#if wxUSE_XRC && wxUSE_RADIOBOX + #include "wx/xrc/xh_radbt.h" #include "wx/radiobut.h" -#if wxUSE_RADIOBOX +IMPLEMENT_DYNAMIC_CLASS(wxRadioButtonXmlHandler, wxXmlResourceHandler) -wxRadioButtonXmlHandler::wxRadioButtonXmlHandler() -: wxXmlResourceHandler() +wxRadioButtonXmlHandler::wxRadioButtonXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxRB_GROUP); AddWindowStyles(); } wxObject *wxRadioButtonXmlHandler::DoCreateResource() -{ +{ /* BOBM - implementation note. * once the wxBitmapRadioButton is implemented. - * look for a bitmap property. If not null, - * make it a wxBitmapRadioButton instead of the + * look for a bitmap property. If not null, + * make it a wxBitmapRadioButton instead of the * normal radio button. - */ + */ XRC_MAKE_INSTANCE(control, wxRadioButton) @@ -52,7 +54,7 @@ wxObject *wxRadioButtonXmlHandler::DoCreateResource() control->SetValue(GetBool(wxT("value"), 0)); SetupWindow(control); - + return control; } @@ -61,4 +63,4 @@ bool wxRadioButtonXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxRadioButton")); } -#endif +#endif // wxUSE_XRC && wxUSE_NOTEBOOK