]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/xml/xh_chckb.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XML 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/xml/xh_chckb.h"
23 #include "wx/checkbox.h"
27 wxCheckBoxXmlHandler::wxCheckBoxXmlHandler()
28 : wxXmlResourceHandler()
32 wxObject
*wxCheckBoxXmlHandler::DoCreateResource()
34 wxCheckBox
*control
= new wxCheckBox(m_ParentAsWindow
,
37 GetPosition(), GetSize(),
43 control
->SetValue( GetBool( _T("checked")));
51 bool wxCheckBoxXmlHandler::CanHandle(wxXmlNode
*node
)
53 return node
->GetName() == _T("checkbox");