]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/xrc/xh_sttxt.cpp
Fixed a long-standing issue where wxSlider controls with a hardcoded size would mispl...
[wxWidgets.git] / src / xrc / xh_sttxt.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: xh_sttxt.cpp
3// Purpose: XRC resource for wxStaticText
4// Author: Bob Mitchell
5// Created: 2000/03/21
6// RCS-ID: $Id$
7// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
12#pragma implementation "xh_sttxt.h"
13#endif
14
15// For compilers that support precompilation, includes "wx.h".
16#include "wx/wxprec.h"
17
18#ifdef __BORLANDC__
19 #pragma hdrstop
20#endif
21
22#if wxUSE_XRC
23
24#include "wx/xrc/xh_sttxt.h"
25#include "wx/stattext.h"
26
27IMPLEMENT_DYNAMIC_CLASS(wxStaticTextXmlHandler, wxXmlResourceHandler)
28
29wxStaticTextXmlHandler::wxStaticTextXmlHandler()
30: wxXmlResourceHandler()
31{
32 XRC_ADD_STYLE(wxST_NO_AUTORESIZE);
33 XRC_ADD_STYLE(wxALIGN_LEFT);
34 XRC_ADD_STYLE(wxALIGN_RIGHT);
35 XRC_ADD_STYLE(wxALIGN_CENTRE);
36 AddWindowStyles();
37}
38
39wxObject *wxStaticTextXmlHandler::DoCreateResource()
40{
41 XRC_MAKE_INSTANCE(text, wxStaticText)
42
43 text->Create(m_parentAsWindow,
44 GetID(),
45 GetText(wxT("label")),
46 GetPosition(), GetSize(),
47 GetStyle(),
48 GetName());
49
50 SetupWindow(text);
51
52 return text;
53}
54
55bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node)
56{
57 return IsOfClass(node, wxT("wxStaticText"));
58}
59
60#endif // wxUSE_XRC