X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f25881804583790351480098b50f4ce1b924e697..931d6a47c32a5b4c283243cb553ce71ee2b535d5:/src/xrc/xh_radbt.cpp diff --git a/src/xrc/xh_radbt.cpp b/src/xrc/xh_radbt.cpp index a850d44437..07617f264e 100644 --- a/src/xrc/xh_radbt.cpp +++ b/src/xrc/xh_radbt.cpp @@ -1,16 +1,11 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_radbt.cpp +// Name: src/xrc/xh_radbt.cpp // Purpose: XRC resource for wxRadioButton // Author: Bob Mitchell // Created: 2000/03/21 -// RCS-ID: $Id$ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifdef __GNUG__ -#pragma implementation "xh_radbt.h" -#endif // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,31 +14,34 @@ #pragma hdrstop #endif +#if wxUSE_XRC && wxUSE_RADIOBTN + #include "wx/xrc/xh_radbt.h" -#include "wx/radiobut.h" -#if wxUSE_RADIOBOX +#ifndef WX_PRECOMP + #include "wx/radiobut.h" +#endif + +IMPLEMENT_DYNAMIC_CLASS(wxRadioButtonXmlHandler, wxXmlResourceHandler) -wxRadioButtonXmlHandler::wxRadioButtonXmlHandler() -: wxXmlResourceHandler() +wxRadioButtonXmlHandler::wxRadioButtonXmlHandler() +: wxXmlResourceHandler() { - ADD_STYLE( wxRB_GROUP ); + XRC_ADD_STYLE(wxRB_GROUP); + XRC_ADD_STYLE(wxRB_SINGLE); 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. - */ - - wxRadioButton *control = wxStaticCast(m_instance, wxRadioButton); + */ - if (!control) - control = new wxRadioButton; + XRC_MAKE_INSTANCE(control, wxRadioButton) control->Create(m_parentAsWindow, GetID(), @@ -53,18 +51,15 @@ wxObject *wxRadioButtonXmlHandler::DoCreateResource() 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 +#endif // wxUSE_XRC && wxUSE_RADIOBTN