#if wxUSE_RADIOBOX
+IMPLEMENT_DYNAMIC_CLASS(wxRadioButtonXmlHandler, wxXmlResourceHandler)
+
wxRadioButtonXmlHandler::wxRadioButtonXmlHandler()
: wxXmlResourceHandler()
{
- ADD_STYLE( wxRB_GROUP );
+ XRC_ADD_STYLE(wxRB_GROUP);
AddWindowStyles();
}
* normal radio button.
*/
- wxRadioButton *control = wxStaticCast(m_instance, wxRadioButton);
-
- if (!control)
- control = new wxRadioButton;
+ XRC_MAKE_INSTANCE(control, wxRadioButton)
control->Create(m_parentAsWindow,
GetID(),
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