]> git.saurik.com Git - wxWidgets.git/blame - src/common/valtext.cpp
Unix compilation fixed
[wxWidgets.git] / src / common / valtext.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: valtext.cpp
3// Purpose: wxTextValidator
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
a994f81b 9// Licence: wxWindows license
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
ce4169a4 13#pragma implementation "valtext.h"
c801d85f
KB
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
ce4169a4 20 #pragma hdrstop
c801d85f
KB
21#endif
22
ce4169a4
RR
23#if wxUSE_VALIDATORS
24
25#ifndef WX_PRECOMP
26 #include <stdio.h>
27 #include "wx/textctrl.h"
28 #include "wx/utils.h"
29 #include "wx/msgdlg.h"
30 #include "wx/intl.h"
c801d85f
KB
31#endif
32
33#include "wx/valtext.h"
34
35#include <ctype.h>
36#include <string.h>
37#include <stdlib.h>
38
ce3ed50d 39#ifdef __SALFORDC__
a994f81b 40 #include <clib.h>
ce3ed50d
JS
41#endif
42
c801d85f
KB
43IMPLEMENT_DYNAMIC_CLASS(wxTextValidator, wxValidator)
44
45BEGIN_EVENT_TABLE(wxTextValidator, wxValidator)
a994f81b 46 EVT_CHAR(wxTextValidator::OnChar)
c801d85f 47END_EVENT_TABLE()
c801d85f 48
386af6a2
JS
49static bool wxIsNumeric(const wxString& val);
50
debe6624 51wxTextValidator::wxTextValidator(long style, wxString *val)
c801d85f 52{
a994f81b
VZ
53 m_validatorStyle = style ;
54 m_stringValue = val ;
c801d85f
KB
55/*
56 m_refData = new wxVTextRefData;
57
a994f81b
VZ
58 M_VTEXTDATA->m_validatorStyle = style ;
59 M_VTEXTDATA->m_stringValue = val ;
c801d85f
KB
60*/
61}
62
63wxTextValidator::wxTextValidator(const wxTextValidator& val)
64{
65 Copy(val);
66}
67
68bool wxTextValidator::Copy(const wxTextValidator& val)
69{
70 wxValidator::Copy(val);
71
a994f81b
VZ
72 m_validatorStyle = val.m_validatorStyle ;
73 m_stringValue = val.m_stringValue ;
74
75 wxNode *node = val.m_includeList.First() ;
76 while ( node )
77 {
783b6cfd 78 wxChar *s = (wxChar *)node->Data();
a994f81b
VZ
79 m_includeList.Add(s);
80 node = node->Next();
81 }
82 node = val.m_excludeList.First() ;
83 while ( node )
84 {
783b6cfd 85 wxChar *s = (wxChar *)node->Data();
a994f81b
VZ
86 m_excludeList.Add(s);
87 node = node->Next();
88 }
c801d85f
KB
89 return TRUE;
90}
91
92wxTextValidator::~wxTextValidator()
93{
94}
95
96static bool wxIsAlpha(const wxString& val)
97{
a994f81b
VZ
98 int i;
99 for ( i = 0; i < (int)val.Length(); i++)
100 {
f6bcfd97 101 if (!wxIsalpha(val[i]))
a994f81b
VZ
102 return FALSE;
103 }
104 return TRUE;
c801d85f
KB
105}
106
107static bool wxIsAlphaNumeric(const wxString& val)
108{
a994f81b
VZ
109 int i;
110 for ( i = 0; i < (int)val.Length(); i++)
111 {
f6bcfd97 112 if (!wxIsalnum(val[i]))
a994f81b
VZ
113 return FALSE;
114 }
115 return TRUE;
c801d85f
KB
116}
117
118// Called when the value in the window must be validated.
119// This function can pop up an error message.
120bool wxTextValidator::Validate(wxWindow *parent)
121{
a994f81b
VZ
122 if ( !m_validatorWindow )
123 return FALSE;
124 if ( !m_validatorWindow->IsKindOf(CLASSINFO(wxTextCtrl)) )
125 return FALSE;
126 if ( !m_stringValue )
127 return FALSE;
128
129 wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow ;
130
6cd47507 131 // If window is disabled, simply return
f03fc89f 132 if ( !control->IsEnabled() )
6cd47507 133 return TRUE;
a994f81b
VZ
134
135 wxString val(control->GetValue());
136
2a47d3c1 137 bool ok = TRUE;
a994f81b
VZ
138
139 // this format string should contian exactly one '%s'
783b6cfd 140 const wxChar *errormsg = _("'%s' is invalid");
a994f81b
VZ
141
142 if ( m_validatorStyle & wxFILTER_INCLUDE_LIST )
143 {
144 if ( !m_includeList.Member(val) )
145 {
2a47d3c1 146 ok = FALSE;
a994f81b
VZ
147 }
148 }
149 else if ( m_validatorStyle & wxFILTER_EXCLUDE_LIST )
150 {
151 if ( m_excludeList.Member(val) )
152 {
2a47d3c1 153 ok = FALSE;
a994f81b
VZ
154 }
155 }
156 else if ( (m_validatorStyle & wxFILTER_ASCII) && !val.IsAscii() )
157 {
2a47d3c1 158 ok = FALSE;
a994f81b
VZ
159
160 errormsg = _("'%s' should only contain ASCII characters.");
161 }
162 else if ( (m_validatorStyle & wxFILTER_ALPHA) && !wxIsAlpha(val) )
163 {
2a47d3c1 164 ok = FALSE;
a994f81b
VZ
165
166 errormsg = _("'%s' should only contain alphabetic characters.");
167 }
168 else if ( (m_validatorStyle & wxFILTER_ALPHANUMERIC) && !wxIsAlphaNumeric(val))
169 {
2a47d3c1 170 ok = FALSE;
a994f81b
VZ
171
172 errormsg = _("'%s' should only contain alphabetic or numeric characters.");
173 }
174 else if ( (m_validatorStyle & wxFILTER_NUMERIC) && !wxIsNumeric(val))
175 {
2a47d3c1 176 ok = FALSE;
a994f81b
VZ
177
178 errormsg = _("'%s' should be numeric.");
179 }
180
181 if ( !ok )
182 {
183 m_validatorWindow->SetFocus();
184
185 wxString buf;
186 buf.Printf(errormsg, val.c_str());
187
188 wxMessageBox(buf, _("Validation conflict"),
189 wxOK | wxICON_EXCLAMATION, parent);
190 }
191
192 return ok;
c801d85f
KB
193}
194
195// Called to transfer data to the window
196bool wxTextValidator::TransferToWindow(void)
197{
a994f81b
VZ
198 if ( !m_validatorWindow )
199 return FALSE;
200 if ( !m_validatorWindow->IsKindOf(CLASSINFO(wxTextCtrl)) )
201 return FALSE;
202 if ( !m_stringValue )
203 return FALSE;
c801d85f 204
a994f81b
VZ
205 wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow ;
206 control->SetValue(* m_stringValue) ;
c801d85f 207
a994f81b 208 return TRUE;
c801d85f
KB
209}
210
211// Called to transfer data to the window
212bool wxTextValidator::TransferFromWindow(void)
213{
a994f81b
VZ
214 if ( !m_validatorWindow )
215 return FALSE;
216 if ( !m_validatorWindow->IsKindOf(CLASSINFO(wxTextCtrl)) )
217 return FALSE;
218 if ( !m_stringValue )
219 return FALSE;
c801d85f 220
a994f81b
VZ
221 wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow ;
222 * m_stringValue = control->GetValue() ;
c801d85f 223
a994f81b 224 return TRUE;
c801d85f
KB
225}
226
227void wxTextValidator::SetIncludeList(const wxStringList& list)
228{
229/*
a994f81b
VZ
230 if ( !M_VTEXTDATA )
231 return;
c801d85f
KB
232*/
233
a994f81b
VZ
234 m_includeList.Clear();
235 // TODO: replace with =
236 wxNode *node = list.First() ;
237 while ( node )
238 {
783b6cfd 239 wxChar *s = (wxChar *)node->Data();
a994f81b
VZ
240 m_includeList.Add(s);
241 node = node->Next();
242 }
c801d85f
KB
243}
244
245void wxTextValidator::SetExcludeList(const wxStringList& list)
246{
247/*
a994f81b
VZ
248 if ( !M_VTEXTDATA )
249 return;
c801d85f
KB
250*/
251
a994f81b
VZ
252 m_excludeList.Clear();
253 // TODO: replace with =
254 wxNode *node = list.First() ;
255 while ( node )
256 {
783b6cfd 257 wxChar *s = (wxChar *)node->Data();
a994f81b
VZ
258 m_excludeList.Add(s);
259 node = node->Next();
260 }
c801d85f
KB
261}
262
263void wxTextValidator::OnChar(wxKeyEvent& event)
264{
265/*
a994f81b
VZ
266 if ( !M_VTEXTDATA )
267 return;
c801d85f
KB
268*/
269
a994f81b
VZ
270 if ( m_validatorWindow )
271 {
6f2a55e3 272 int keyCode = (int)event.KeyCode();
a994f81b
VZ
273
274 // we don't filter special keys and Delete
275 if (
276 !(keyCode < WXK_SPACE || keyCode == WXK_DELETE || keyCode > WXK_START) &&
277 (
278 ((m_validatorStyle & wxFILTER_ASCII) && !isascii(keyCode)) ||
f6bcfd97
BP
279 ((m_validatorStyle & wxFILTER_ALPHA) && !wxIsalpha(keyCode)) ||
280 ((m_validatorStyle & wxFILTER_ALPHANUMERIC) && !wxIsalnum(keyCode)) ||
281 ((m_validatorStyle & wxFILTER_NUMERIC) && !wxIsdigit(keyCode)
543f08a6 282 && keyCode != '.' && keyCode != ',' && keyCode != '-')
a994f81b
VZ
283 )
284 )
285 {
286 if ( !wxValidator::IsSilent() )
287 wxBell();
288
289 // eat message
290 return;
291 }
292 }
293
294 event.Skip();
c801d85f
KB
295}
296
386af6a2
JS
297static bool wxIsNumeric(const wxString& val)
298{
a994f81b
VZ
299 int i;
300 for ( i = 0; i < (int)val.Length(); i++)
301 {
543f08a6
JS
302 // Allow for "," (French) as well as "." -- in future we should
303 // use wxSystemSettings or other to do better localisation
304 if ((!isdigit(val[i])) && (val[i] != '.') && (val[i] != ','))
a994f81b
VZ
305 if(!((i == 0) && (val[i] == '-')))
306 return FALSE;
307 }
308 return TRUE;
386af6a2 309}
c801d85f 310
ce4169a4
RR
311#endif
312 // wxUSE_VALIDATORS