#include "wx/xrc/xh_stbmp.h"
#include "wx/statbmp.h"
+IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmapXmlHandler, wxXmlResourceHandler)
+
wxStaticBitmapXmlHandler::wxStaticBitmapXmlHandler()
: wxXmlResourceHandler()
{
wxObject *wxStaticBitmapXmlHandler::DoCreateResource()
{
- wxStaticBitmap *bmp = new wxStaticBitmap(m_parentAsWindow,
- GetID(),
- GetBitmap(wxT("bitmap"), GetSize()),
- GetPosition(), GetSize(),
- GetStyle(),
- GetName()
- );
+ XRC_MAKE_INSTANCE(bmp, wxStaticBitmap)
+
+ bmp->Create(m_parentAsWindow,
+ GetID(),
+ GetBitmap(wxT("bitmap"), wxART_OTHER, GetSize()),
+ GetPosition(), GetSize(),
+ GetStyle(),
+ GetName());
+
SetupWindow(bmp);
return bmp;
}
-
-
bool wxStaticBitmapXmlHandler::CanHandle(wxXmlNode *node)
{
return IsOfClass(node, wxT("wxStaticBitmap"));
}
-
-