]> git.saurik.com Git - wxWidgets.git/blame - contrib/src/xml/xh_text.cpp
added wxHtmlHelpController::GetHelpData and removed SetBookBasePath (you can use...
[wxWidgets.git] / contrib / src / xml / xh_text.cpp
CommitLineData
56d2f750
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: xh_text.cpp
3// Purpose: XML 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/xml/xh_text.h"
23#include "wx/textctrl.h"
24
25wxTextCtrlXmlHandler::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);
09dc1241 33 AddWindowStyles();
56d2f750
VS
34}
35
36wxObject *wxTextCtrlXmlHandler::DoCreateResource()
37{
ab708d5d 38 wxTextCtrl *text = new wxTextCtrl(m_parentAsWindow,
56d2f750 39 GetID(),
a559d708 40 GetText(wxT("value")),
56d2f750
VS
41 GetPosition(), GetSize(),
42 GetStyle(),
e066e256
VS
43 wxDefaultValidator,
44 GetName()
56d2f750
VS
45 );
46 SetupWindow(text);
47
48 return text;
49}
50
51
52
53bool wxTextCtrlXmlHandler::CanHandle(wxXmlNode *node)
54{
a559d708 55 return IsOfClass(node, wxT("wxTextCtrl"));
56d2f750
VS
56}
57
58