]>
Commit | Line | Data |
---|---|---|
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$ | |
55d99c7a | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
14f355c2 | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
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 | ||
d7260478 | 23 | #if wxUSE_VALIDATORS && wxUSE_TEXTCTRL |
ce4169a4 RR |
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 |
43 | IMPLEMENT_DYNAMIC_CLASS(wxTextValidator, wxValidator) |
44 | ||
45 | BEGIN_EVENT_TABLE(wxTextValidator, wxValidator) | |
a994f81b | 46 | EVT_CHAR(wxTextValidator::OnChar) |
c801d85f | 47 | END_EVENT_TABLE() |
c801d85f | 48 | |
386af6a2 JS |
49 | static bool wxIsNumeric(const wxString& val); |
50 | ||
debe6624 | 51 | wxTextValidator::wxTextValidator(long style, wxString *val) |
c801d85f | 52 | { |
52cd14b1 VZ |
53 | m_validatorStyle = style; |
54 | m_stringValue = val; | |
c801d85f KB |
55 | /* |
56 | m_refData = new wxVTextRefData; | |
57 | ||
52cd14b1 VZ |
58 | M_VTEXTDATA->m_validatorStyle = style; |
59 | M_VTEXTDATA->m_stringValue = val; | |
c801d85f KB |
60 | */ |
61 | } | |
62 | ||
63 | wxTextValidator::wxTextValidator(const wxTextValidator& val) | |
d84afea9 | 64 | : wxValidator() |
c801d85f KB |
65 | { |
66 | Copy(val); | |
67 | } | |
68 | ||
69 | bool wxTextValidator::Copy(const wxTextValidator& val) | |
70 | { | |
71 | wxValidator::Copy(val); | |
72 | ||
52cd14b1 VZ |
73 | m_validatorStyle = val.m_validatorStyle; |
74 | m_stringValue = val.m_stringValue; | |
a994f81b | 75 | |
222ed1d6 MB |
76 | m_includeList = val.m_includeList; |
77 | m_excludeList = val.m_excludeList; | |
52cd14b1 | 78 | |
cab1a605 | 79 | return true; |
c801d85f KB |
80 | } |
81 | ||
82 | wxTextValidator::~wxTextValidator() | |
83 | { | |
84 | } | |
85 | ||
86 | static bool wxIsAlpha(const wxString& val) | |
87 | { | |
a994f81b VZ |
88 | int i; |
89 | for ( i = 0; i < (int)val.Length(); i++) | |
90 | { | |
f6bcfd97 | 91 | if (!wxIsalpha(val[i])) |
cab1a605 | 92 | return false; |
a994f81b | 93 | } |
cab1a605 | 94 | return true; |
c801d85f KB |
95 | } |
96 | ||
97 | static bool wxIsAlphaNumeric(const wxString& val) | |
98 | { | |
a994f81b VZ |
99 | int i; |
100 | for ( i = 0; i < (int)val.Length(); i++) | |
101 | { | |
f6bcfd97 | 102 | if (!wxIsalnum(val[i])) |
cab1a605 | 103 | return false; |
a994f81b | 104 | } |
cab1a605 | 105 | return true; |
c801d85f KB |
106 | } |
107 | ||
108 | // Called when the value in the window must be validated. | |
109 | // This function can pop up an error message. | |
110 | bool wxTextValidator::Validate(wxWindow *parent) | |
111 | { | |
33c5b54b | 112 | if( !CheckValidator() ) |
cab1a605 | 113 | return false; |
a994f81b | 114 | |
52cd14b1 | 115 | wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow; |
a994f81b | 116 | |
6cd47507 | 117 | // If window is disabled, simply return |
f03fc89f | 118 | if ( !control->IsEnabled() ) |
cab1a605 | 119 | return true; |
a994f81b VZ |
120 | |
121 | wxString val(control->GetValue()); | |
122 | ||
cab1a605 | 123 | bool ok = true; |
a994f81b | 124 | |
e9086757 VZ |
125 | // NB: this format string should contian exactly one '%s' |
126 | wxString errormsg; | |
a994f81b | 127 | |
e9086757 VZ |
128 | bool includeList = (m_validatorStyle & wxFILTER_INCLUDE_LIST) != 0; |
129 | if ( includeList || (m_validatorStyle & wxFILTER_EXCLUDE_LIST) ) | |
a994f81b | 130 | { |
e9086757 VZ |
131 | // if includeList, it's only ok to have the members of the list, |
132 | // otherwise it's only ok to have non-members | |
133 | ok = includeList == m_includeList.Member(val); | |
134 | if ( !ok ) | |
a994f81b | 135 | { |
e9086757 | 136 | errormsg = _("'%s' is invalid"); |
a994f81b VZ |
137 | } |
138 | } | |
139 | else if ( (m_validatorStyle & wxFILTER_ASCII) && !val.IsAscii() ) | |
140 | { | |
cab1a605 | 141 | ok = false; |
a994f81b VZ |
142 | |
143 | errormsg = _("'%s' should only contain ASCII characters."); | |
144 | } | |
145 | else if ( (m_validatorStyle & wxFILTER_ALPHA) && !wxIsAlpha(val) ) | |
146 | { | |
cab1a605 | 147 | ok = false; |
a994f81b VZ |
148 | |
149 | errormsg = _("'%s' should only contain alphabetic characters."); | |
150 | } | |
151 | else if ( (m_validatorStyle & wxFILTER_ALPHANUMERIC) && !wxIsAlphaNumeric(val)) | |
152 | { | |
cab1a605 | 153 | ok = false; |
a994f81b VZ |
154 | |
155 | errormsg = _("'%s' should only contain alphabetic or numeric characters."); | |
156 | } | |
157 | else if ( (m_validatorStyle & wxFILTER_NUMERIC) && !wxIsNumeric(val)) | |
158 | { | |
cab1a605 | 159 | ok = false; |
a994f81b VZ |
160 | |
161 | errormsg = _("'%s' should be numeric."); | |
162 | } | |
aaae8296 JS |
163 | else if ( (m_validatorStyle & wxFILTER_INCLUDE_CHAR_LIST) && !IsInCharIncludeList(val)) |
164 | { | |
165 | //it's only ok to have the members of the list | |
166 | errormsg = _("'%s' is invalid"); | |
cab1a605 | 167 | ok = false; |
aaae8296 JS |
168 | } |
169 | else if ( (m_validatorStyle & wxFILTER_EXCLUDE_CHAR_LIST) && !IsNotInCharExcludeList(val)) | |
170 | { | |
171 | // it's only ok to have non-members of the list | |
172 | errormsg = _("'%s' is invalid"); | |
cab1a605 | 173 | ok = false; |
aaae8296 | 174 | } |
a994f81b VZ |
175 | |
176 | if ( !ok ) | |
177 | { | |
e9086757 VZ |
178 | wxASSERT_MSG( !errormsg.empty(), _T("you forgot to set errormsg") ); |
179 | ||
a994f81b VZ |
180 | m_validatorWindow->SetFocus(); |
181 | ||
182 | wxString buf; | |
183 | buf.Printf(errormsg, val.c_str()); | |
184 | ||
185 | wxMessageBox(buf, _("Validation conflict"), | |
186 | wxOK | wxICON_EXCLAMATION, parent); | |
187 | } | |
188 | ||
189 | return ok; | |
c801d85f KB |
190 | } |
191 | ||
192 | // Called to transfer data to the window | |
193 | bool wxTextValidator::TransferToWindow(void) | |
194 | { | |
33c5b54b | 195 | if( !CheckValidator() ) |
cab1a605 | 196 | return false; |
c801d85f | 197 | |
52cd14b1 VZ |
198 | if ( m_stringValue ) |
199 | { | |
200 | wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow; | |
201 | control->SetValue(* m_stringValue); | |
202 | } | |
c801d85f | 203 | |
cab1a605 | 204 | return true; |
c801d85f KB |
205 | } |
206 | ||
207 | // Called to transfer data to the window | |
208 | bool wxTextValidator::TransferFromWindow(void) | |
209 | { | |
33c5b54b | 210 | if( !CheckValidator() ) |
cab1a605 | 211 | return false; |
c801d85f | 212 | |
52cd14b1 VZ |
213 | if ( m_stringValue ) |
214 | { | |
215 | wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow; | |
216 | *m_stringValue = control->GetValue(); | |
217 | } | |
c801d85f | 218 | |
cab1a605 | 219 | return true; |
c801d85f KB |
220 | } |
221 | ||
222 | void wxTextValidator::SetIncludeList(const wxStringList& list) | |
223 | { | |
222ed1d6 | 224 | m_includeList = list; |
c801d85f KB |
225 | } |
226 | ||
227 | void wxTextValidator::SetExcludeList(const wxStringList& list) | |
228 | { | |
222ed1d6 | 229 | m_excludeList = list; |
c801d85f KB |
230 | } |
231 | ||
232 | void wxTextValidator::OnChar(wxKeyEvent& event) | |
233 | { | |
234 | /* | |
a994f81b VZ |
235 | if ( !M_VTEXTDATA ) |
236 | return; | |
c801d85f KB |
237 | */ |
238 | ||
a994f81b VZ |
239 | if ( m_validatorWindow ) |
240 | { | |
12a3f227 | 241 | int keyCode = event.GetKeyCode(); |
a994f81b VZ |
242 | |
243 | // we don't filter special keys and Delete | |
244 | if ( | |
245 | !(keyCode < WXK_SPACE || keyCode == WXK_DELETE || keyCode > WXK_START) && | |
246 | ( | |
7df07b10 MB |
247 | ((m_validatorStyle & wxFILTER_INCLUDE_CHAR_LIST) && !IsInCharIncludeList(wxString((wxChar) keyCode, 1))) || |
248 | ((m_validatorStyle & wxFILTER_EXCLUDE_CHAR_LIST) && !IsNotInCharExcludeList(wxString((wxChar) keyCode, 1))) || | |
b1e4e7cc | 249 | ((m_validatorStyle & wxFILTER_ASCII) && !isascii(keyCode)) || |
f6bcfd97 BP |
250 | ((m_validatorStyle & wxFILTER_ALPHA) && !wxIsalpha(keyCode)) || |
251 | ((m_validatorStyle & wxFILTER_ALPHANUMERIC) && !wxIsalnum(keyCode)) || | |
252 | ((m_validatorStyle & wxFILTER_NUMERIC) && !wxIsdigit(keyCode) | |
543f08a6 | 253 | && keyCode != '.' && keyCode != ',' && keyCode != '-') |
a994f81b VZ |
254 | ) |
255 | ) | |
256 | { | |
257 | if ( !wxValidator::IsSilent() ) | |
258 | wxBell(); | |
259 | ||
260 | // eat message | |
261 | return; | |
262 | } | |
263 | } | |
264 | ||
265 | event.Skip(); | |
c801d85f KB |
266 | } |
267 | ||
386af6a2 JS |
268 | static bool wxIsNumeric(const wxString& val) |
269 | { | |
a994f81b VZ |
270 | int i; |
271 | for ( i = 0; i < (int)val.Length(); i++) | |
272 | { | |
543f08a6 JS |
273 | // Allow for "," (French) as well as "." -- in future we should |
274 | // use wxSystemSettings or other to do better localisation | |
1c193821 | 275 | if ((!wxIsdigit(val[i])) && (val[i] != '.') && (val[i] != ',') && (val[i] != wxT('e')) && (val[i] != wxT('E')) && (val[i] != wxT('+')) && (val[i] != wxT('-'))) |
cab1a605 | 276 | return false; |
a994f81b | 277 | } |
cab1a605 | 278 | return true; |
386af6a2 | 279 | } |
c801d85f | 280 | |
aaae8296 JS |
281 | bool wxTextValidator::IsInCharIncludeList(const wxString& val) |
282 | { | |
283 | size_t i; | |
284 | for ( i = 0; i < val.Length(); i++) | |
285 | { | |
286 | if (!m_includeList.Member((wxString) val[i])) | |
cab1a605 | 287 | return false; |
aaae8296 | 288 | } |
cab1a605 | 289 | return true; |
aaae8296 JS |
290 | } |
291 | ||
292 | bool wxTextValidator::IsNotInCharExcludeList(const wxString& val) | |
293 | { | |
294 | size_t i; | |
295 | for ( i = 0; i < val.Length(); i++) | |
296 | { | |
297 | if (m_excludeList.Member((wxString) val[i])) | |
cab1a605 | 298 | return false; |
aaae8296 | 299 | } |
cab1a605 | 300 | return true; |
aaae8296 JS |
301 | } |
302 | ||
ce4169a4 | 303 | #endif |
d7260478 | 304 | // wxUSE_VALIDATORS && wxUSE_TEXTCTRL |