Changes to the XRC library:
[wxWidgets.git] / src / xrc / xh_text.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: xh_text.cpp
3 // Purpose: XRC resource for wxTextCtrl
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 {
27 ADD_STYLE(wxTE_PROCESS_ENTER);
28 ADD_STYLE(wxTE_PROCESS_TAB);
29 ADD_STYLE(wxTE_MULTILINE);
30 ADD_STYLE(wxTE_PASSWORD);
31 ADD_STYLE(wxTE_READONLY);
32 ADD_STYLE(wxHSCROLL);
33 AddWindowStyles();
34 }
35
36 wxObject *wxTextCtrlXmlHandler::DoCreateResource()
37 {
38 wxTextCtrl *text = wxStaticCast(m_instance, wxTextCtrl);
39
40 if ( !text )
41 text = new wxTextCtrl;
42
43 text->Create( m_parentAsWindow,
44 GetID(),
45 GetText(wxT("value")),
46 GetPosition(), GetSize(),
47 GetStyle(),
48 wxDefaultValidator,
49 GetName() );
50
51 SetupWindow(text);
52
53 return text;
54 }
55
56
57
58 bool wxTextCtrlXmlHandler::CanHandle(wxXmlNode *node)
59 {
60 return IsOfClass(node, wxT("wxTextCtrl"));
61 }
62
63