]>
Commit | Line | Data |
---|---|---|
78d14f80 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_sttxt.cpp | |
b5d6954b | 3 | // Purpose: XRC resource for wxStaticText |
78d14f80 VS |
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 | ///////////////////////////////////////////////////////////////////////////// | |
f80ea77b | 10 | |
c575e45a | 11 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
78d14f80 VS |
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 | ||
621be1ec | 22 | #if wxUSE_XRC |
a1e4ec87 | 23 | |
78d14f80 VS |
24 | #include "wx/xrc/xh_sttxt.h" |
25 | #include "wx/stattext.h" | |
26 | ||
854e189f VS |
27 | IMPLEMENT_DYNAMIC_CLASS(wxStaticTextXmlHandler, wxXmlResourceHandler) |
28 | ||
f80ea77b WS |
29 | wxStaticTextXmlHandler::wxStaticTextXmlHandler() |
30 | : wxXmlResourceHandler() | |
78d14f80 | 31 | { |
544fee32 VS |
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); | |
78d14f80 VS |
36 | AddWindowStyles(); |
37 | } | |
38 | ||
39 | wxObject *wxStaticTextXmlHandler::DoCreateResource() | |
f80ea77b | 40 | { |
544fee32 | 41 | XRC_MAKE_INSTANCE(text, wxStaticText) |
f2588180 VS |
42 | |
43 | text->Create(m_parentAsWindow, | |
44 | GetID(), | |
45 | GetText(wxT("label")), | |
46 | GetPosition(), GetSize(), | |
47 | GetStyle(), | |
48 | GetName()); | |
49 | ||
78d14f80 | 50 | SetupWindow(text); |
f80ea77b | 51 | |
78d14f80 VS |
52 | return text; |
53 | } | |
54 | ||
78d14f80 VS |
55 | bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node) |
56 | { | |
57 | return IsOfClass(node, wxT("wxStaticText")); | |
58 | } | |
a1e4ec87 | 59 | |
621be1ec | 60 | #endif // wxUSE_XRC |