#include "wx/xrc/xh_stbox.h"
#include "wx/statbox.h"
+IMPLEMENT_DYNAMIC_CLASS(wxStaticBoxXmlHandler, wxXmlResourceHandler)
+
wxStaticBoxXmlHandler::wxStaticBoxXmlHandler()
: wxXmlResourceHandler()
{
wxObject *wxStaticBoxXmlHandler::DoCreateResource()
{
- wxStaticBox *box = wxStaticCast(m_instance, wxStaticBox);
-
- if (!box)
- box = new wxStaticBox;
+ XRC_MAKE_INSTANCE(box, wxStaticBox)
box->Create(m_parentAsWindow,
GetID(),
return box;
}
-
-
bool wxStaticBoxXmlHandler::CanHandle(wxXmlNode *node)
{
return IsOfClass(node, wxT("wxStaticBox"));
}
-
-