X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/da86e1776517d2403a687de08947698f5a608219..f363cee882672e147340240cf0bb194a68e37833:/src/xrc/xh_sttxt.cpp diff --git a/src/xrc/xh_sttxt.cpp b/src/xrc/xh_sttxt.cpp index dc42cd178f..3b4c9b91e1 100644 --- a/src/xrc/xh_sttxt.cpp +++ b/src/xrc/xh_sttxt.cpp @@ -1,17 +1,12 @@ ///////////////////////////////////////////////////////////////////////////// -// 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 ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "xh_sttxt.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,10 +14,13 @@ #pragma hdrstop #endif -#if wxUSE_XML && 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) @@ -41,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; } @@ -57,4 +59,4 @@ bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxStaticText")); } -#endif // wxUSE_XML && wxUSE_XRC +#endif // wxUSE_XRC && wxUSE_STATTEXT