X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..dca2fe5daecf9c74f227062d8a9a259b4e5ef1fc:/src/xrc/xh_sttxt.cpp?ds=sidebyside diff --git a/src/xrc/xh_sttxt.cpp b/src/xrc/xh_sttxt.cpp index f3bb578bd6..3b4c9b91e1 100644 --- a/src/xrc/xh_sttxt.cpp +++ b/src/xrc/xh_sttxt.cpp @@ -1,9 +1,8 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_sttxt.cpp +// Name: src/xrc/xh_sttxt.cpp // Purpose: XRC resource for wxStaticText // Author: Bob Mitchell // Created: 2000/03/21 -// RCS-ID: $Id$ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -15,10 +14,13 @@ #pragma hdrstop #endif -#if wxUSE_XRC +#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) @@ -37,14 +39,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; } @@ -53,4 +59,4 @@ bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxStaticText")); } -#endif // wxUSE_XRC +#endif // wxUSE_XRC && wxUSE_STATTEXT