X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f80ea77b4a8bac4ab005bfc592f9cd3262ffa397..47e175a24f862aa8b7ca7dd4a2bb5957991e7f2d:/src/xrc/xh_sttxt.cpp diff --git a/src/xrc/xh_sttxt.cpp b/src/xrc/xh_sttxt.cpp index a65e2b4b4f..9986696777 100644 --- a/src/xrc/xh_sttxt.cpp +++ b/src/xrc/xh_sttxt.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_sttxt.cpp +// Name: src/xrc/xh_sttxt.cpp // Purpose: XRC resource for wxStaticText // Author: Bob Mitchell // Created: 2000/03/21 @@ -8,10 +8,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "xh_sttxt.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,8 +15,13 @@ #pragma hdrstop #endif +#if wxUSE_XRC && wxUSE_STATTEXT + #include "wx/xrc/xh_sttxt.h" -#include "wx/stattext.h" + +#ifndef WX_PRECOMP + #include "wx/stattext.h" +#endif IMPLEMENT_DYNAMIC_CLASS(wxStaticTextXmlHandler, wxXmlResourceHandler) @@ -39,14 +40,18 @@ wxObject *wxStaticTextXmlHandler::DoCreateResource() XRC_MAKE_INSTANCE(text, wxStaticText) text->Create(m_parentAsWindow, - GetID(), - GetText(wxT("label")), - GetPosition(), GetSize(), - GetStyle(), - GetName()); + GetID(), + GetText(wxT("label")), + GetPosition(), GetSize(), + GetStyle(), + GetName()); SetupWindow(text); + long wrap = GetLong(wxT("wrap"), -1); + if (wrap != -1) + text->Wrap(wrap); + return text; } @@ -54,3 +59,5 @@ bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxStaticText")); } + +#endif // wxUSE_XRC && wxUSE_STATTEXT