X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f25881804583790351480098b50f4ce1b924e697..822e690b221486b63895b5f14a7fbee2bc966fe5:/contrib/src/xrc/xh_sttxt.cpp diff --git a/contrib/src/xrc/xh_sttxt.cpp b/contrib/src/xrc/xh_sttxt.cpp index 7aba85fda8..a65e2b4b4f 100644 --- a/contrib/src/xrc/xh_sttxt.cpp +++ b/contrib/src/xrc/xh_sttxt.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_sttxt.h" #endif @@ -22,22 +22,21 @@ #include "wx/xrc/xh_sttxt.h" #include "wx/stattext.h" -wxStaticTextXmlHandler::wxStaticTextXmlHandler() -: wxXmlResourceHandler() +IMPLEMENT_DYNAMIC_CLASS(wxStaticTextXmlHandler, wxXmlResourceHandler) + +wxStaticTextXmlHandler::wxStaticTextXmlHandler() +: wxXmlResourceHandler() { - ADD_STYLE(wxST_NO_AUTORESIZE); - ADD_STYLE(wxALIGN_LEFT); - ADD_STYLE(wxALIGN_RIGHT); - ADD_STYLE(wxALIGN_CENTRE); + XRC_ADD_STYLE(wxST_NO_AUTORESIZE); + XRC_ADD_STYLE(wxALIGN_LEFT); + XRC_ADD_STYLE(wxALIGN_RIGHT); + XRC_ADD_STYLE(wxALIGN_CENTRE); AddWindowStyles(); } wxObject *wxStaticTextXmlHandler::DoCreateResource() -{ - wxStaticText *text = wxStaticCast(m_instance, wxStaticText); - - if (!text) - text = new wxStaticText; +{ + XRC_MAKE_INSTANCE(text, wxStaticText) text->Create(m_parentAsWindow, GetID(), @@ -47,15 +46,11 @@ wxObject *wxStaticTextXmlHandler::DoCreateResource() GetName()); SetupWindow(text); - + return text; } - - bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxStaticText")); } - -