]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
264cb7f5 | 2 | // Name: src/common/valtext.cpp |
c801d85f KB |
3 | // Purpose: wxTextValidator |
4 | // Author: Julian Smart | |
10b0f489 | 5 | // Modified by: Francesco Montorsi |
c801d85f KB |
6 | // Created: 04/01/98 |
7 | // RCS-ID: $Id$ | |
55d99c7a | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
c801d85f KB |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
ce4169a4 | 16 | #pragma hdrstop |
c801d85f KB |
17 | #endif |
18 | ||
472eec8a | 19 | #if wxUSE_VALIDATORS && (wxUSE_TEXTCTRL || wxUSE_COMBOBOX) |
ce4169a4 | 20 | |
264cb7f5 WS |
21 | #include "wx/valtext.h" |
22 | ||
ce4169a4 RR |
23 | #ifndef WX_PRECOMP |
24 | #include <stdio.h> | |
25 | #include "wx/textctrl.h" | |
92646f5a | 26 | #include "wx/combobox.h" |
ce4169a4 RR |
27 | #include "wx/utils.h" |
28 | #include "wx/msgdlg.h" | |
29 | #include "wx/intl.h" | |
c801d85f KB |
30 | #endif |
31 | ||
c801d85f KB |
32 | #include <ctype.h> |
33 | #include <string.h> | |
34 | #include <stdlib.h> | |
35 | ||
40ae9600 FM |
36 | // ---------------------------------------------------------------------------- |
37 | // global helpers | |
38 | // ---------------------------------------------------------------------------- | |
39 | ||
40ae9600 FM |
40 | static bool wxIsNumeric(const wxString& val) |
41 | { | |
1406dc01 | 42 | for ( wxString::const_iterator i = val.begin(); i != val.end(); ++i ) |
40ae9600 FM |
43 | { |
44 | // Allow for "," (French) as well as "." -- in future we should | |
45 | // use wxSystemSettings or other to do better localisation | |
58fa61db FM |
46 | if ((!wxIsdigit(*i)) && |
47 | (*i != wxS('.')) && (*i != wxS(',')) && (*i != wxS('e')) && | |
48 | (*i != wxS('E')) && (*i != wxS('+')) && (*i != wxS('-'))) | |
40ae9600 FM |
49 | return false; |
50 | } | |
51 | return true; | |
52 | } | |
53 | ||
40ae9600 FM |
54 | // ---------------------------------------------------------------------------- |
55 | // wxTextValidator | |
56 | // ---------------------------------------------------------------------------- | |
57 | ||
58 | IMPLEMENT_DYNAMIC_CLASS(wxTextValidator, wxValidator) | |
c801d85f | 59 | BEGIN_EVENT_TABLE(wxTextValidator, wxValidator) |
a994f81b | 60 | EVT_CHAR(wxTextValidator::OnChar) |
c801d85f | 61 | END_EVENT_TABLE() |
c801d85f | 62 | |
debe6624 | 63 | wxTextValidator::wxTextValidator(long style, wxString *val) |
40ae9600 | 64 | { |
40ae9600 | 65 | m_stringValue = val; |
58fa61db | 66 | SetStyle(style); |
40ae9600 FM |
67 | } |
68 | ||
58fa61db FM |
69 | wxTextValidator::wxTextValidator(const wxTextValidator& val) |
70 | : wxValidator() | |
40ae9600 | 71 | { |
58fa61db | 72 | Copy(val); |
40ae9600 | 73 | } |
40ae9600 | 74 | |
58fa61db | 75 | void wxTextValidator::SetStyle(long style) |
c801d85f | 76 | { |
52cd14b1 | 77 | m_validatorStyle = style; |
c801d85f | 78 | |
4b6a582b | 79 | #if wxDEBUG_LEVEL |
58fa61db FM |
80 | int check; |
81 | check = (int)HasFlag(wxFILTER_ALPHA) + (int)HasFlag(wxFILTER_ALPHANUMERIC) + | |
82 | (int)HasFlag(wxFILTER_DIGITS) + (int)HasFlag(wxFILTER_NUMERIC); | |
83 | wxASSERT_MSG(check <= 1, | |
84 | "It makes sense to use only one of the wxFILTER_ALPHA/wxFILTER_ALPHANUMERIC/" | |
85 | "wxFILTER_SIMPLE_NUMBER/wxFILTER_NUMERIC styles"); | |
86 | ||
87 | wxASSERT_MSG(((int)HasFlag(wxFILTER_INCLUDE_LIST) + (int)HasFlag(wxFILTER_INCLUDE_CHAR_LIST) <= 1) && | |
88 | ((int)HasFlag(wxFILTER_EXCLUDE_LIST) + (int)HasFlag(wxFILTER_EXCLUDE_CHAR_LIST) <= 1), | |
89 | "Using both wxFILTER_[IN|EX]CLUDE_LIST _and_ wxFILTER_[IN|EX]CLUDE_CHAR_LIST " | |
90 | "doesn't work since wxTextValidator internally uses the same array for both"); | |
91 | ||
92 | check = (int)HasFlag(wxFILTER_INCLUDE_LIST) + (int)HasFlag(wxFILTER_INCLUDE_CHAR_LIST) + | |
93 | (int)HasFlag(wxFILTER_EXCLUDE_LIST) + (int)HasFlag(wxFILTER_EXCLUDE_CHAR_LIST); | |
94 | wxASSERT_MSG(check <= 1, | |
95 | "Using both an include/exclude list may lead to unexpected results"); | |
4b6a582b | 96 | #endif // wxDEBUG_LEVEL |
c801d85f KB |
97 | } |
98 | ||
99 | bool wxTextValidator::Copy(const wxTextValidator& val) | |
100 | { | |
101 | wxValidator::Copy(val); | |
102 | ||
52cd14b1 VZ |
103 | m_validatorStyle = val.m_validatorStyle; |
104 | m_stringValue = val.m_stringValue; | |
a994f81b | 105 | |
f94a790d RN |
106 | m_includes = val.m_includes; |
107 | m_excludes = val.m_excludes; | |
52cd14b1 | 108 | |
cab1a605 | 109 | return true; |
c801d85f KB |
110 | } |
111 | ||
472eec8a VZ |
112 | wxTextEntry *wxTextValidator::GetTextEntry() |
113 | { | |
114 | #if wxUSE_TEXTCTRL | |
115 | if (m_validatorWindow->IsKindOf(CLASSINFO(wxTextCtrl))) | |
116 | { | |
117 | return (wxTextCtrl*)m_validatorWindow; | |
118 | } | |
119 | #endif | |
7b235dce | 120 | |
472eec8a VZ |
121 | #if wxUSE_COMBOBOX |
122 | if (m_validatorWindow->IsKindOf(CLASSINFO(wxComboBox))) | |
123 | { | |
124 | return (wxComboBox*)m_validatorWindow; | |
125 | } | |
126 | #endif | |
127 | ||
128 | wxFAIL_MSG( | |
9a83f860 | 129 | wxT("wxTextValidator can only be used with wxTextCtrl or wxComboBox") |
472eec8a VZ |
130 | ); |
131 | ||
132 | return NULL; | |
133 | } | |
134 | ||
c801d85f KB |
135 | // Called when the value in the window must be validated. |
136 | // This function can pop up an error message. | |
137 | bool wxTextValidator::Validate(wxWindow *parent) | |
138 | { | |
6cd47507 | 139 | // If window is disabled, simply return |
472eec8a | 140 | if ( !m_validatorWindow->IsEnabled() ) |
cab1a605 | 141 | return true; |
a994f81b | 142 | |
472eec8a VZ |
143 | wxTextEntry * const text = GetTextEntry(); |
144 | if ( !text ) | |
145 | return false; | |
146 | ||
147 | wxString val(text->GetValue()); | |
a994f81b | 148 | |
e9086757 | 149 | wxString errormsg; |
58fa61db | 150 | if ( HasFlag(wxFILTER_EMPTY) && val.empty() ) |
10b0f489 | 151 | { |
af59b3fc | 152 | errormsg = _("Required information entry is empty."); |
58fa61db FM |
153 | } |
154 | else if ( !(errormsg = IsValid(val)).empty() ) | |
155 | { | |
156 | // NB: this format string should always contain exactly one '%s' | |
10b0f489 FM |
157 | wxString buf; |
158 | buf.Printf(errormsg, val.c_str()); | |
58fa61db FM |
159 | errormsg = buf; |
160 | } | |
10b0f489 | 161 | |
58fa61db FM |
162 | if ( !errormsg.empty() ) |
163 | { | |
164 | m_validatorWindow->SetFocus(); | |
165 | wxMessageBox(errormsg, _("Validation conflict"), | |
10b0f489 FM |
166 | wxOK | wxICON_EXCLAMATION, parent); |
167 | ||
168 | return false; | |
169 | } | |
170 | ||
171 | return true; | |
172 | } | |
173 | ||
174 | // Called to transfer data to the window | |
175 | bool wxTextValidator::TransferToWindow() | |
176 | { | |
177 | if ( m_stringValue ) | |
178 | { | |
179 | wxTextEntry * const text = GetTextEntry(); | |
180 | if ( !text ) | |
181 | return false; | |
a994f81b | 182 | |
10b0f489 FM |
183 | text->SetValue(*m_stringValue); |
184 | } | |
185 | ||
186 | return true; | |
187 | } | |
188 | ||
189 | // Called to transfer data to the window | |
190 | bool wxTextValidator::TransferFromWindow() | |
191 | { | |
192 | if ( m_stringValue ) | |
193 | { | |
194 | wxTextEntry * const text = GetTextEntry(); | |
195 | if ( !text ) | |
196 | return false; | |
197 | ||
198 | *m_stringValue = text->GetValue(); | |
199 | } | |
200 | ||
201 | return true; | |
202 | } | |
203 | ||
3e026ad2 VZ |
204 | // IRIX mipsPro refuses to compile wxStringCheck<func>() if func is inline so |
205 | // let's work around this by using this non-template function instead of | |
206 | // wxStringCheck(). And while this might be fractionally less efficient because | |
207 | // the function call won't be inlined like this, we don't care enough about | |
208 | // this to add extra #ifs for non-IRIX case. | |
209 | namespace | |
210 | { | |
211 | ||
212 | bool CheckString(bool (*func)(const wxUniChar&), const wxString& str) | |
213 | { | |
214 | for ( wxString::const_iterator i = str.begin(); i != str.end(); ++i ) | |
215 | { | |
216 | if ( !func(*i) ) | |
217 | return false; | |
218 | } | |
219 | ||
220 | return true; | |
221 | } | |
222 | ||
223 | } // anonymous namespace | |
224 | ||
58fa61db | 225 | wxString wxTextValidator::IsValid(const wxString& val) const |
10b0f489 | 226 | { |
58fa61db FM |
227 | // wxFILTER_EMPTY is checked for in wxTextValidator::Validate |
228 | ||
229 | if ( HasFlag(wxFILTER_ASCII) && !val.IsAscii() ) | |
230 | return _("'%s' should only contain ASCII characters."); | |
3e026ad2 | 231 | if ( HasFlag(wxFILTER_ALPHA) && !CheckString(wxIsalpha, val) ) |
58fa61db | 232 | return _("'%s' should only contain alphabetic characters."); |
3e026ad2 | 233 | if ( HasFlag(wxFILTER_ALPHANUMERIC) && !CheckString(wxIsalnum, val) ) |
58fa61db | 234 | return _("'%s' should only contain alphabetic or numeric characters."); |
90497db9 | 235 | if ( HasFlag(wxFILTER_DIGITS) && !CheckString(wxIsdigit, val) ) |
58fa61db FM |
236 | return _("'%s' should only contain digits."); |
237 | if ( HasFlag(wxFILTER_NUMERIC) && !wxIsNumeric(val) ) | |
238 | return _("'%s' should be numeric."); | |
239 | if ( HasFlag(wxFILTER_INCLUDE_LIST) && m_includes.Index(val) == wxNOT_FOUND ) | |
240 | return _("'%s' is invalid"); | |
241 | if ( HasFlag(wxFILTER_INCLUDE_CHAR_LIST) && !ContainsOnlyIncludedCharacters(val) ) | |
242 | return _("'%s' is invalid"); | |
243 | if ( HasFlag(wxFILTER_EXCLUDE_LIST) && m_excludes.Index(val) != wxNOT_FOUND ) | |
244 | return _("'%s' is invalid"); | |
245 | if ( HasFlag(wxFILTER_EXCLUDE_CHAR_LIST) && ContainsExcludedCharacters(val) ) | |
246 | return _("'%s' is invalid"); | |
247 | ||
248 | return wxEmptyString; | |
c801d85f KB |
249 | } |
250 | ||
1406dc01 | 251 | bool wxTextValidator::ContainsOnlyIncludedCharacters(const wxString& val) const |
c801d85f | 252 | { |
fcd209b6 FM |
253 | for ( wxString::const_iterator i = val.begin(); i != val.end(); ++i ) |
254 | if (m_includes.Index((wxString) *i) == wxNOT_FOUND) | |
10b0f489 | 255 | // one character of 'val' is NOT present in m_includes... |
472eec8a VZ |
256 | return false; |
257 | ||
10b0f489 | 258 | // all characters of 'val' are present in m_includes |
cab1a605 | 259 | return true; |
c801d85f KB |
260 | } |
261 | ||
1406dc01 | 262 | bool wxTextValidator::ContainsExcludedCharacters(const wxString& val) const |
c801d85f | 263 | { |
fcd209b6 FM |
264 | for ( wxString::const_iterator i = val.begin(); i != val.end(); ++i ) |
265 | if (m_excludes.Index((wxString) *i) != wxNOT_FOUND) | |
10b0f489 | 266 | // one character of 'val' is present in m_excludes... |
fcd209b6 | 267 | return true; |
472eec8a | 268 | |
10b0f489 | 269 | // all characters of 'val' are NOT present in m_excludes |
fcd209b6 FM |
270 | return false; |
271 | } | |
272 | ||
273 | void wxTextValidator::SetCharIncludes(const wxString& chars) | |
274 | { | |
275 | wxArrayString arr; | |
276 | ||
277 | for ( wxString::const_iterator i = chars.begin(); i != chars.end(); ++i ) | |
278 | arr.Add(*i); | |
279 | ||
280 | SetIncludes(arr); | |
281 | } | |
282 | ||
283 | void wxTextValidator::SetCharExcludes(const wxString& chars) | |
284 | { | |
285 | wxArrayString arr; | |
286 | ||
287 | for ( wxString::const_iterator i = chars.begin(); i != chars.end(); ++i ) | |
288 | arr.Add(*i); | |
289 | ||
290 | SetExcludes(arr); | |
c801d85f KB |
291 | } |
292 | ||
10b0f489 | 293 | void wxTextValidator::OnChar(wxKeyEvent& event) |
f94a790d | 294 | { |
10b0f489 | 295 | if (!m_validatorWindow) |
f94a790d | 296 | { |
10b0f489 FM |
297 | event.Skip(); |
298 | return; | |
f94a790d | 299 | } |
f94a790d | 300 | |
10b0f489 | 301 | int keyCode = event.GetKeyCode(); |
c801d85f | 302 | |
10b0f489 FM |
303 | // we don't filter special keys and delete |
304 | if (keyCode < WXK_SPACE || keyCode == WXK_DELETE || keyCode >= WXK_START) | |
305 | { | |
306 | event.Skip(); | |
a994f81b | 307 | return; |
10b0f489 | 308 | } |
c801d85f | 309 | |
10b0f489 | 310 | wxString str((wxUniChar)keyCode, 1); |
58fa61db | 311 | if (!IsValid(str).empty()) |
a994f81b | 312 | { |
10b0f489 FM |
313 | if ( !wxValidator::IsSilent() ) |
314 | wxBell(); | |
a994f81b | 315 | |
10b0f489 FM |
316 | // eat message |
317 | return; | |
318 | } | |
319 | else | |
320 | event.Skip(); | |
c801d85f KB |
321 | } |
322 | ||
aaae8296 | 323 | |
ce4169a4 | 324 | #endif |
472eec8a | 325 | // wxUSE_VALIDATORS && (wxUSE_TEXTCTRL || wxUSE_COMBOBOX) |