]>
git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_radbt.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XRC resource for wxRadioButton
4 // Author: Bob Mitchell
7 // Copyright: (c) 2000 Bob Mitchell and Verant Interactive
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
18 #if wxUSE_XRC && wxUSE_RADIOBTN
20 #include "wx/xrc/xh_radbt.h"
21 #include "wx/radiobut.h"
23 IMPLEMENT_DYNAMIC_CLASS(wxRadioButtonXmlHandler
, wxXmlResourceHandler
)
25 wxRadioButtonXmlHandler::wxRadioButtonXmlHandler()
26 : wxXmlResourceHandler()
28 XRC_ADD_STYLE(wxRB_GROUP
);
29 XRC_ADD_STYLE(wxRB_SINGLE
);
33 wxObject
*wxRadioButtonXmlHandler::DoCreateResource()
35 /* BOBM - implementation note.
36 * once the wxBitmapRadioButton is implemented.
37 * look for a bitmap property. If not null,
38 * make it a wxBitmapRadioButton instead of the
39 * normal radio button.
42 XRC_MAKE_INSTANCE(control
, wxRadioButton
)
44 control
->Create(m_parentAsWindow
,
46 GetText(wxT("label")),
47 GetPosition(), GetSize(),
52 control
->SetValue(GetBool(wxT("value"), 0));
58 bool wxRadioButtonXmlHandler::CanHandle(wxXmlNode
*node
)
60 return IsOfClass(node
, wxT("wxRadioButton"));
63 #endif // wxUSE_XRC && wxUSE_RADIOBTN