]>
git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_chckb.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XRC resource for wxCheckBox
4 // Author: Bob Mitchell
7 // Copyright: (c) 2000 Bob Mitchell and Verant Interactive
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "xh_chckb.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
22 #include "wx/xrc/xh_chckb.h"
23 #include "wx/checkbox.h"
27 wxCheckBoxXmlHandler::wxCheckBoxXmlHandler()
28 : wxXmlResourceHandler()
33 wxObject
*wxCheckBoxXmlHandler::DoCreateResource()
35 XRC_MAKE_INSTANCE(control
, wxCheckBox
)
37 control
->Create(m_parentAsWindow
,
39 GetText(wxT("label")),
40 GetPosition(), GetSize(),
45 control
->SetValue(GetBool( wxT("checked")));
51 bool wxCheckBoxXmlHandler::CanHandle(wxXmlNode
*node
)
53 return IsOfClass(node
, wxT("wxCheckBox"));