]>
Commit | Line | Data |
---|---|---|
78d14f80 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_text.cpp | |
b5d6954b | 3 | // Purpose: XRC resource for wxTextCtrl |
78d14f80 VS |
4 | // Author: Aleksandras Gluchovas |
5 | // Created: 2000/03/21 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Aleksandras Gluchovas | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
f80ea77b | 10 | |
c575e45a | 11 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
78d14f80 VS |
12 | #pragma implementation "xh_text.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_text.h" |
25 | #include "wx/textctrl.h" | |
26 | ||
854e189f VS |
27 | IMPLEMENT_DYNAMIC_CLASS(wxTextCtrlXmlHandler, wxXmlResourceHandler) |
28 | ||
f80ea77b | 29 | wxTextCtrlXmlHandler::wxTextCtrlXmlHandler() : wxXmlResourceHandler() |
78d14f80 | 30 | { |
a1c7668e VS |
31 | XRC_ADD_STYLE(wxTE_NO_VSCROLL); |
32 | XRC_ADD_STYLE(wxTE_AUTO_SCROLL); | |
544fee32 VS |
33 | XRC_ADD_STYLE(wxTE_PROCESS_ENTER); |
34 | XRC_ADD_STYLE(wxTE_PROCESS_TAB); | |
35 | XRC_ADD_STYLE(wxTE_MULTILINE); | |
36 | XRC_ADD_STYLE(wxTE_PASSWORD); | |
37 | XRC_ADD_STYLE(wxTE_READONLY); | |
38 | XRC_ADD_STYLE(wxHSCROLL); | |
df93d8ba VS |
39 | XRC_ADD_STYLE(wxTE_RICH); |
40 | XRC_ADD_STYLE(wxTE_RICH2); | |
41 | XRC_ADD_STYLE(wxTE_AUTO_URL); | |
42 | XRC_ADD_STYLE(wxTE_NOHIDESEL); | |
43 | XRC_ADD_STYLE(wxTE_LEFT); | |
44 | XRC_ADD_STYLE(wxTE_CENTRE); | |
45 | XRC_ADD_STYLE(wxTE_RIGHT); | |
46 | XRC_ADD_STYLE(wxTE_DONTWRAP); | |
47 | XRC_ADD_STYLE(wxTE_LINEWRAP); | |
48 | XRC_ADD_STYLE(wxTE_WORDWRAP); | |
78d14f80 VS |
49 | AddWindowStyles(); |
50 | } | |
51 | ||
52 | wxObject *wxTextCtrlXmlHandler::DoCreateResource() | |
f80ea77b | 53 | { |
544fee32 | 54 | XRC_MAKE_INSTANCE(text, wxTextCtrl) |
f2588180 | 55 | |
544fee32 VS |
56 | text->Create(m_parentAsWindow, |
57 | GetID(), | |
58 | GetText(wxT("value")), | |
59 | GetPosition(), GetSize(), | |
60 | GetStyle(), | |
61 | wxDefaultValidator, | |
62 | GetName()); | |
f2588180 | 63 | |
78d14f80 | 64 | SetupWindow(text); |
f80ea77b | 65 | |
78d14f80 VS |
66 | return text; |
67 | } | |
68 | ||
78d14f80 VS |
69 | bool wxTextCtrlXmlHandler::CanHandle(wxXmlNode *node) |
70 | { | |
71 | return IsOfClass(node, wxT("wxTextCtrl")); | |
72 | } | |
a1e4ec87 | 73 | |
621be1ec | 74 | #endif // wxUSE_XRC |