]>
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 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifdef __GNUG__ | |
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 | ||
22 | #include "wx/xrc/xh_text.h" | |
23 | #include "wx/textctrl.h" | |
24 | ||
25 | wxTextCtrlXmlHandler::wxTextCtrlXmlHandler() : wxXmlResourceHandler() | |
26 | { | |
544fee32 VS |
27 | XRC_ADD_STYLE(wxTE_PROCESS_ENTER); |
28 | XRC_ADD_STYLE(wxTE_PROCESS_TAB); | |
29 | XRC_ADD_STYLE(wxTE_MULTILINE); | |
30 | XRC_ADD_STYLE(wxTE_PASSWORD); | |
31 | XRC_ADD_STYLE(wxTE_READONLY); | |
32 | XRC_ADD_STYLE(wxHSCROLL); | |
78d14f80 VS |
33 | AddWindowStyles(); |
34 | } | |
35 | ||
36 | wxObject *wxTextCtrlXmlHandler::DoCreateResource() | |
37 | { | |
544fee32 | 38 | XRC_MAKE_INSTANCE(text, wxTextCtrl) |
f2588180 | 39 | |
544fee32 VS |
40 | text->Create(m_parentAsWindow, |
41 | GetID(), | |
42 | GetText(wxT("value")), | |
43 | GetPosition(), GetSize(), | |
44 | GetStyle(), | |
45 | wxDefaultValidator, | |
46 | GetName()); | |
f2588180 | 47 | |
78d14f80 VS |
48 | SetupWindow(text); |
49 | ||
50 | return text; | |
51 | } | |
52 | ||
78d14f80 VS |
53 | bool wxTextCtrlXmlHandler::CanHandle(wxXmlNode *node) |
54 | { | |
55 | return IsOfClass(node, wxT("wxTextCtrl")); | |
56 | } |