]>
Commit | Line | Data |
---|---|---|
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 | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
13 | #pragma implementation "valtext.h" | |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
23 | #if wxUSE_VALIDATORS && wxUSE_TEXTCTRL | |
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" | |
31 | #endif | |
32 | ||
33 | #include "wx/valtext.h" | |
34 | ||
35 | #include <ctype.h> | |
36 | #include <string.h> | |
37 | #include <stdlib.h> | |
38 | ||
39 | #ifdef __SALFORDC__ | |
40 | #include <clib.h> | |
41 | #endif | |
42 | ||
43 | IMPLEMENT_DYNAMIC_CLASS(wxTextValidator, wxValidator) | |
44 | ||
45 | BEGIN_EVENT_TABLE(wxTextValidator, wxValidator) | |
46 | EVT_CHAR(wxTextValidator::OnChar) | |
47 | END_EVENT_TABLE() | |
48 | ||
49 | static bool wxIsNumeric(const wxString& val); | |
50 | ||
51 | wxTextValidator::wxTextValidator(long style, wxString *val) | |
52 | { | |
53 | m_validatorStyle = style; | |
54 | m_stringValue = val; | |
55 | /* | |
56 | m_refData = new wxVTextRefData; | |
57 | ||
58 | M_VTEXTDATA->m_validatorStyle = style; | |
59 | M_VTEXTDATA->m_stringValue = val; | |
60 | */ | |
61 | } | |
62 | ||
63 | wxTextValidator::wxTextValidator(const wxTextValidator& val) | |
64 | : wxValidator() | |
65 | { | |
66 | Copy(val); | |
67 | } | |
68 | ||
69 | bool wxTextValidator::Copy(const wxTextValidator& val) | |
70 | { | |
71 | wxValidator::Copy(val); | |
72 | ||
73 | m_validatorStyle = val.m_validatorStyle; | |
74 | m_stringValue = val.m_stringValue; | |
75 | ||
76 | m_includes = val.m_includes; | |
77 | m_excludes = val.m_excludes; | |
78 | ||
79 | return true; | |
80 | } | |
81 | ||
82 | static bool wxIsAlpha(const wxString& val) | |
83 | { | |
84 | int i; | |
85 | for ( i = 0; i < (int)val.Length(); i++) | |
86 | { | |
87 | if (!wxIsalpha(val[i])) | |
88 | return false; | |
89 | } | |
90 | return true; | |
91 | } | |
92 | ||
93 | static bool wxIsAlphaNumeric(const wxString& val) | |
94 | { | |
95 | int i; | |
96 | for ( i = 0; i < (int)val.Length(); i++) | |
97 | { | |
98 | if (!wxIsalnum(val[i])) | |
99 | return false; | |
100 | } | |
101 | return true; | |
102 | } | |
103 | ||
104 | // Called when the value in the window must be validated. | |
105 | // This function can pop up an error message. | |
106 | bool wxTextValidator::Validate(wxWindow *parent) | |
107 | { | |
108 | if( !CheckValidator() ) | |
109 | return false; | |
110 | ||
111 | wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow; | |
112 | ||
113 | // If window is disabled, simply return | |
114 | if ( !control->IsEnabled() ) | |
115 | return true; | |
116 | ||
117 | wxString val(control->GetValue()); | |
118 | ||
119 | bool ok = true; | |
120 | ||
121 | // NB: this format string should contian exactly one '%s' | |
122 | wxString errormsg; | |
123 | ||
124 | bool includes = (m_validatorStyle & wxFILTER_INCLUDE_LIST) != 0; | |
125 | if ( includes || (m_validatorStyle & wxFILTER_EXCLUDE_LIST) ) | |
126 | { | |
127 | // if includes, it's only ok to have the members of the list, | |
128 | // otherwise it's only ok to have non-members | |
129 | ok = includes == (m_includes.Index(val) != wxNOT_FOUND); | |
130 | if ( !ok ) | |
131 | { | |
132 | errormsg = _("'%s' is invalid"); | |
133 | } | |
134 | } | |
135 | else if ( (m_validatorStyle & wxFILTER_ASCII) && !val.IsAscii() ) | |
136 | { | |
137 | ok = false; | |
138 | ||
139 | errormsg = _("'%s' should only contain ASCII characters."); | |
140 | } | |
141 | else if ( (m_validatorStyle & wxFILTER_ALPHA) && !wxIsAlpha(val) ) | |
142 | { | |
143 | ok = false; | |
144 | ||
145 | errormsg = _("'%s' should only contain alphabetic characters."); | |
146 | } | |
147 | else if ( (m_validatorStyle & wxFILTER_ALPHANUMERIC) && !wxIsAlphaNumeric(val)) | |
148 | { | |
149 | ok = false; | |
150 | ||
151 | errormsg = _("'%s' should only contain alphabetic or numeric characters."); | |
152 | } | |
153 | else if ( (m_validatorStyle & wxFILTER_NUMERIC) && !wxIsNumeric(val)) | |
154 | { | |
155 | ok = false; | |
156 | ||
157 | errormsg = _("'%s' should be numeric."); | |
158 | } | |
159 | else if ( (m_validatorStyle & wxFILTER_INCLUDE_CHAR_LIST) && !IsInCharIncludes(val)) | |
160 | { | |
161 | //it's only ok to have the members of the list | |
162 | errormsg = _("'%s' is invalid"); | |
163 | ok = false; | |
164 | } | |
165 | else if ( (m_validatorStyle & wxFILTER_EXCLUDE_CHAR_LIST) && !IsNotInCharExcludes(val)) | |
166 | { | |
167 | // it's only ok to have non-members of the list | |
168 | errormsg = _("'%s' is invalid"); | |
169 | ok = false; | |
170 | } | |
171 | ||
172 | if ( !ok ) | |
173 | { | |
174 | wxASSERT_MSG( !errormsg.empty(), _T("you forgot to set errormsg") ); | |
175 | ||
176 | m_validatorWindow->SetFocus(); | |
177 | ||
178 | wxString buf; | |
179 | buf.Printf(errormsg, val.c_str()); | |
180 | ||
181 | wxMessageBox(buf, _("Validation conflict"), | |
182 | wxOK | wxICON_EXCLAMATION, parent); | |
183 | } | |
184 | ||
185 | return ok; | |
186 | } | |
187 | ||
188 | // Called to transfer data to the window | |
189 | bool wxTextValidator::TransferToWindow(void) | |
190 | { | |
191 | if( !CheckValidator() ) | |
192 | return false; | |
193 | ||
194 | if ( m_stringValue ) | |
195 | { | |
196 | wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow; | |
197 | control->SetValue(* m_stringValue); | |
198 | } | |
199 | ||
200 | return true; | |
201 | } | |
202 | ||
203 | // Called to transfer data to the window | |
204 | bool wxTextValidator::TransferFromWindow(void) | |
205 | { | |
206 | if( !CheckValidator() ) | |
207 | return false; | |
208 | ||
209 | if ( m_stringValue ) | |
210 | { | |
211 | wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow; | |
212 | *m_stringValue = control->GetValue(); | |
213 | } | |
214 | ||
215 | return true; | |
216 | } | |
217 | ||
218 | #if WXWIN_COMPATIBILITY_2_4 | |
219 | ||
220 | inline void wxCopyStringListToArrayString(wxArrayString& to, const wxStringList& from) | |
221 | { | |
222 | to.Clear(); | |
223 | ||
224 | for ( wxStringList::compatibility_iterator pNode = from.GetFirst(); | |
225 | pNode; | |
226 | pNode = pNode->GetNext() ) | |
227 | { | |
228 | to.Add(pNode->GetData()); | |
229 | } | |
230 | } | |
231 | ||
232 | inline void wxCopyArrayStringToStringList(wxStringList& to, const wxArrayString& from) | |
233 | { | |
234 | to.Clear(); | |
235 | ||
236 | for(size_t i = 0; i < from.GetCount(); ++i) | |
237 | to.Add(from[i]); | |
238 | } | |
239 | ||
240 | wxStringList& wxTextValidator::GetIncludeList() | |
241 | { | |
242 | wxCopyArrayStringToStringList(m_includeList, m_includes); | |
243 | return m_includeList; | |
244 | } | |
245 | ||
246 | wxStringList& wxTextValidator::GetExcludeList() | |
247 | { | |
248 | wxCopyArrayStringToStringList(m_excludeList, m_excludes); | |
249 | return m_excludeList; | |
250 | } | |
251 | ||
252 | void wxTextValidator::SetIncludeList(const wxStringList& list) | |
253 | { | |
254 | wxCopyStringListToArrayString(m_includes, list); | |
255 | } | |
256 | ||
257 | void wxTextValidator::SetExcludeList(const wxStringList& list) | |
258 | { | |
259 | wxCopyStringListToArrayString(m_excludes, list); | |
260 | } | |
261 | ||
262 | bool wxTextValidator::IsInCharIncludeList(const wxString& val) | |
263 | { | |
264 | return IsInCharIncludes(val); | |
265 | } | |
266 | ||
267 | bool wxTextValidator::IsNotInCharExcludeList(const wxString& val) | |
268 | { | |
269 | return IsNotInCharExcludes(val); | |
270 | } | |
271 | ||
272 | #endif //compat 2.4 | |
273 | ||
274 | ||
275 | bool wxTextValidator::IsInCharIncludes(const wxString& val) | |
276 | { | |
277 | size_t i; | |
278 | for ( i = 0; i < val.Length(); i++) | |
279 | { | |
280 | if (m_includes.Index((wxString) val[i]) == wxNOT_FOUND) | |
281 | return false; | |
282 | } | |
283 | return true; | |
284 | } | |
285 | ||
286 | bool wxTextValidator::IsNotInCharExcludes(const wxString& val) | |
287 | { | |
288 | size_t i; | |
289 | for ( i = 0; i < val.Length(); i++) | |
290 | { | |
291 | if (m_excludes.Index((wxString) val[i]) != wxNOT_FOUND) | |
292 | return false; | |
293 | } | |
294 | return true; | |
295 | } | |
296 | ||
297 | void wxTextValidator::OnChar(wxKeyEvent& event) | |
298 | { | |
299 | /* | |
300 | if ( !M_VTEXTDATA ) | |
301 | return; | |
302 | */ | |
303 | ||
304 | if ( m_validatorWindow ) | |
305 | { | |
306 | int keyCode = event.GetKeyCode(); | |
307 | ||
308 | // we don't filter special keys and Delete | |
309 | if ( | |
310 | !(keyCode < WXK_SPACE || keyCode == WXK_DELETE || keyCode > WXK_START) && | |
311 | ( | |
312 | ((m_validatorStyle & wxFILTER_INCLUDE_CHAR_LIST) && !IsInCharIncludes(wxString((wxChar) keyCode, 1))) || | |
313 | ((m_validatorStyle & wxFILTER_EXCLUDE_CHAR_LIST) && !IsNotInCharExcludes(wxString((wxChar) keyCode, 1))) || | |
314 | ((m_validatorStyle & wxFILTER_ASCII) && !isascii(keyCode)) || | |
315 | ((m_validatorStyle & wxFILTER_ALPHA) && !wxIsalpha(keyCode)) || | |
316 | ((m_validatorStyle & wxFILTER_ALPHANUMERIC) && !wxIsalnum(keyCode)) || | |
317 | ((m_validatorStyle & wxFILTER_NUMERIC) && !wxIsdigit(keyCode) | |
318 | && keyCode != '.' && keyCode != ',' && keyCode != '-') | |
319 | ) | |
320 | ) | |
321 | { | |
322 | if ( !wxValidator::IsSilent() ) | |
323 | wxBell(); | |
324 | ||
325 | // eat message | |
326 | return; | |
327 | } | |
328 | } | |
329 | ||
330 | event.Skip(); | |
331 | } | |
332 | ||
333 | static bool wxIsNumeric(const wxString& val) | |
334 | { | |
335 | int i; | |
336 | for ( i = 0; i < (int)val.Length(); i++) | |
337 | { | |
338 | // Allow for "," (French) as well as "." -- in future we should | |
339 | // use wxSystemSettings or other to do better localisation | |
340 | if ((!wxIsdigit(val[i])) && (val[i] != '.') && (val[i] != ',') && (val[i] != wxT('e')) && (val[i] != wxT('E')) && (val[i] != wxT('+')) && (val[i] != wxT('-'))) | |
341 | return false; | |
342 | } | |
343 | return true; | |
344 | } | |
345 | ||
346 | ||
347 | #endif | |
348 | // wxUSE_VALIDATORS && wxUSE_TEXTCTRL |