]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/xrc/xh_bttn.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XML resource for buttons
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2000 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "xh_bttn.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
22 #include "wx/xrc/xh_bttn.h"
23 #include "wx/button.h"
26 wxButtonXmlHandler::wxButtonXmlHandler()
27 : wxXmlResourceHandler()
30 ADD_STYLE(wxBU_RIGHT
);
32 ADD_STYLE(wxBU_BOTTOM
);
37 wxObject
*wxButtonXmlHandler::DoCreateResource()
39 wxButton
*button
= new wxButton(m_parentAsWindow
,
41 GetText(wxT("label")),
42 GetPosition(), GetSize(),
46 if (GetBool(wxT("default"), 0) == 1) button
->SetDefault();
54 bool wxButtonXmlHandler::CanHandle(wxXmlNode
*node
)
56 return IsOfClass(node
, wxT("wxButton"));