]>
git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_tglbtn.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XRC resource for wxToggleButton
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_TOGGLEBTN
20 #include "wx/xrc/xh_tglbtn.h"
21 #include "wx/tglbtn.h"
22 #include "wx/button.h" // solely for wxBU_EXACTFIT
24 IMPLEMENT_DYNAMIC_CLASS(wxToggleButtonXmlHandler
, wxXmlResourceHandler
)
26 wxToggleButtonXmlHandler::wxToggleButtonXmlHandler()
27 : wxXmlResourceHandler()
29 XRC_ADD_STYLE(wxBU_EXACTFIT
);
34 wxObject
*wxToggleButtonXmlHandler::DoCreateResource()
36 XRC_MAKE_INSTANCE(control
, wxToggleButton
)
38 control
->Create(m_parentAsWindow
,
40 GetText(wxT("label")),
41 GetPosition(), GetSize(),
46 control
->SetValue(GetBool( wxT("checked")));
52 bool wxToggleButtonXmlHandler::CanHandle(wxXmlNode
*node
)
54 return IsOfClass(node
, wxT("wxToggleButton"));
57 #endif // wxUSE_XRC && wxUSE_TOGGLEBTN