X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/78d14f80e9a72041ede52c30d912ec5cef21b1b3..3527f29c8769e09d796c547c0c309f8b86407012:/contrib/src/xrc/xh_radbt.cpp?ds=sidebyside diff --git a/contrib/src/xrc/xh_radbt.cpp b/contrib/src/xrc/xh_radbt.cpp index 9caa453e62..8533992393 100644 --- a/contrib/src/xrc/xh_radbt.cpp +++ b/contrib/src/xrc/xh_radbt.cpp @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: xh_radbt.cpp -// Purpose: XML resource for wxRadioButton +// Purpose: XRC resource for wxRadioButton // Author: Bob Mitchell // Created: 2000/03/21 // RCS-ID: $Id$ @@ -24,10 +24,12 @@ #if wxUSE_RADIOBOX +IMPLEMENT_DYNAMIC_CLASS(wxRadioButtonXmlHandler, wxXmlResourceHandler) + wxRadioButtonXmlHandler::wxRadioButtonXmlHandler() : wxXmlResourceHandler() { - ADD_STYLE( wxRB_GROUP ); + XRC_ADD_STYLE(wxRB_GROUP); AddWindowStyles(); } @@ -40,27 +42,25 @@ wxObject *wxRadioButtonXmlHandler::DoCreateResource() * normal radio button. */ - wxRadioButton *control = new wxRadioButton(m_parentAsWindow, - GetID(), - GetText(wxT("label")), - GetPosition(), GetSize(), - GetStyle(), - wxDefaultValidator, - GetName() - ); + XRC_MAKE_INSTANCE(control, wxRadioButton) + + control->Create(m_parentAsWindow, + GetID(), + GetText(wxT("label")), + GetPosition(), GetSize(), + GetStyle(), + wxDefaultValidator, + GetName()); - control->SetValue( GetBool(wxT("value"), 0)); + control->SetValue(GetBool(wxT("value"), 0)); SetupWindow(control); return control; } - - bool wxRadioButtonXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxRadioButton")); } - #endif