]>
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 | |
78d14f80 VS |
11 | // For compilers that support precompilation, includes "wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
621be1ec | 18 | #if wxUSE_XRC |
a1e4ec87 | 19 | |
78d14f80 VS |
20 | #include "wx/xrc/xh_text.h" |
21 | #include "wx/textctrl.h" | |
22 | ||
854e189f VS |
23 | IMPLEMENT_DYNAMIC_CLASS(wxTextCtrlXmlHandler, wxXmlResourceHandler) |
24 | ||
f80ea77b | 25 | wxTextCtrlXmlHandler::wxTextCtrlXmlHandler() : wxXmlResourceHandler() |
78d14f80 | 26 | { |
a1c7668e VS |
27 | XRC_ADD_STYLE(wxTE_NO_VSCROLL); |
28 | XRC_ADD_STYLE(wxTE_AUTO_SCROLL); | |
544fee32 VS |
29 | XRC_ADD_STYLE(wxTE_PROCESS_ENTER); |
30 | XRC_ADD_STYLE(wxTE_PROCESS_TAB); | |
31 | XRC_ADD_STYLE(wxTE_MULTILINE); | |
32 | XRC_ADD_STYLE(wxTE_PASSWORD); | |
33 | XRC_ADD_STYLE(wxTE_READONLY); | |
34 | XRC_ADD_STYLE(wxHSCROLL); | |
df93d8ba VS |
35 | XRC_ADD_STYLE(wxTE_RICH); |
36 | XRC_ADD_STYLE(wxTE_RICH2); | |
37 | XRC_ADD_STYLE(wxTE_AUTO_URL); | |
38 | XRC_ADD_STYLE(wxTE_NOHIDESEL); | |
39 | XRC_ADD_STYLE(wxTE_LEFT); | |
40 | XRC_ADD_STYLE(wxTE_CENTRE); | |
41 | XRC_ADD_STYLE(wxTE_RIGHT); | |
42 | XRC_ADD_STYLE(wxTE_DONTWRAP); | |
43 | XRC_ADD_STYLE(wxTE_LINEWRAP); | |
44 | XRC_ADD_STYLE(wxTE_WORDWRAP); | |
78d14f80 VS |
45 | AddWindowStyles(); |
46 | } | |
47 | ||
48 | wxObject *wxTextCtrlXmlHandler::DoCreateResource() | |
f80ea77b | 49 | { |
544fee32 | 50 | XRC_MAKE_INSTANCE(text, wxTextCtrl) |
f2588180 | 51 | |
544fee32 VS |
52 | text->Create(m_parentAsWindow, |
53 | GetID(), | |
54 | GetText(wxT("value")), | |
55 | GetPosition(), GetSize(), | |
56 | GetStyle(), | |
57 | wxDefaultValidator, | |
58 | GetName()); | |
f2588180 | 59 | |
78d14f80 | 60 | SetupWindow(text); |
f80ea77b | 61 | |
d09aa882 JS |
62 | if (HasParam(wxT("maxlength"))) |
63 | text->SetMaxLength(GetLong(wxT("maxlength"))); | |
64 | ||
78d14f80 VS |
65 | return text; |
66 | } | |
67 | ||
78d14f80 VS |
68 | bool wxTextCtrlXmlHandler::CanHandle(wxXmlNode *node) |
69 | { | |
70 | return IsOfClass(node, wxT("wxTextCtrl")); | |
71 | } | |
a1e4ec87 | 72 | |
621be1ec | 73 | #endif // wxUSE_XRC |