1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTextValidator
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "valtext.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
23 #if wxUSE_VALIDATORS && wxUSE_TEXTCTRL
27 #include "wx/textctrl.h"
29 #include "wx/msgdlg.h"
33 #include "wx/valtext.h"
43 IMPLEMENT_DYNAMIC_CLASS(wxTextValidator
, wxValidator
)
45 BEGIN_EVENT_TABLE(wxTextValidator
, wxValidator
)
46 EVT_CHAR(wxTextValidator::OnChar
)
49 static bool wxIsNumeric(const wxString
& val
);
51 wxTextValidator::wxTextValidator(long style
, wxString
*val
)
53 m_validatorStyle
= style
;
56 m_refData = new wxVTextRefData;
58 M_VTEXTDATA->m_validatorStyle = style;
59 M_VTEXTDATA->m_stringValue = val;
63 wxTextValidator::wxTextValidator(const wxTextValidator
& val
)
69 bool wxTextValidator::Copy(const wxTextValidator
& val
)
71 wxValidator::Copy(val
);
73 m_validatorStyle
= val
.m_validatorStyle
;
74 m_stringValue
= val
.m_stringValue
;
76 m_includeList
= val
.m_includeList
;
77 m_excludeList
= val
.m_excludeList
;
82 static bool wxIsAlpha(const wxString
& val
)
85 for ( i
= 0; i
< (int)val
.Length(); i
++)
87 if (!wxIsalpha(val
[i
]))
93 static bool wxIsAlphaNumeric(const wxString
& val
)
96 for ( i
= 0; i
< (int)val
.Length(); i
++)
98 if (!wxIsalnum(val
[i
]))
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
)
108 if( !CheckValidator() )
111 wxTextCtrl
*control
= (wxTextCtrl
*) m_validatorWindow
;
113 // If window is disabled, simply return
114 if ( !control
->IsEnabled() )
117 wxString
val(control
->GetValue());
121 // NB: this format string should contian exactly one '%s'
124 bool includeList
= (m_validatorStyle
& wxFILTER_INCLUDE_LIST
) != 0;
125 if ( includeList
|| (m_validatorStyle
& wxFILTER_EXCLUDE_LIST
) )
127 // if includeList, it's only ok to have the members of the list,
128 // otherwise it's only ok to have non-members
129 ok
= includeList
== m_includeList
.Member(val
);
132 errormsg
= _("'%s' is invalid");
135 else if ( (m_validatorStyle
& wxFILTER_ASCII
) && !val
.IsAscii() )
139 errormsg
= _("'%s' should only contain ASCII characters.");
141 else if ( (m_validatorStyle
& wxFILTER_ALPHA
) && !wxIsAlpha(val
) )
145 errormsg
= _("'%s' should only contain alphabetic characters.");
147 else if ( (m_validatorStyle
& wxFILTER_ALPHANUMERIC
) && !wxIsAlphaNumeric(val
))
151 errormsg
= _("'%s' should only contain alphabetic or numeric characters.");
153 else if ( (m_validatorStyle
& wxFILTER_NUMERIC
) && !wxIsNumeric(val
))
157 errormsg
= _("'%s' should be numeric.");
159 else if ( (m_validatorStyle
& wxFILTER_INCLUDE_CHAR_LIST
) && !IsInCharIncludeList(val
))
161 //it's only ok to have the members of the list
162 errormsg
= _("'%s' is invalid");
165 else if ( (m_validatorStyle
& wxFILTER_EXCLUDE_CHAR_LIST
) && !IsNotInCharExcludeList(val
))
167 // it's only ok to have non-members of the list
168 errormsg
= _("'%s' is invalid");
174 wxASSERT_MSG( !errormsg
.empty(), _T("you forgot to set errormsg") );
176 m_validatorWindow
->SetFocus();
179 buf
.Printf(errormsg
, val
.c_str());
181 wxMessageBox(buf
, _("Validation conflict"),
182 wxOK
| wxICON_EXCLAMATION
, parent
);
188 // Called to transfer data to the window
189 bool wxTextValidator::TransferToWindow(void)
191 if( !CheckValidator() )
196 wxTextCtrl
*control
= (wxTextCtrl
*) m_validatorWindow
;
197 control
->SetValue(* m_stringValue
);
203 // Called to transfer data to the window
204 bool wxTextValidator::TransferFromWindow(void)
206 if( !CheckValidator() )
211 wxTextCtrl
*control
= (wxTextCtrl
*) m_validatorWindow
;
212 *m_stringValue
= control
->GetValue();
218 void wxTextValidator::SetIncludeList(const wxStringList
& list
)
220 m_includeList
= list
;
223 void wxTextValidator::SetExcludeList(const wxStringList
& list
)
225 m_excludeList
= list
;
228 void wxTextValidator::OnChar(wxKeyEvent
& event
)
235 if ( m_validatorWindow
)
237 int keyCode
= event
.GetKeyCode();
239 // we don't filter special keys and Delete
241 !(keyCode
< WXK_SPACE
|| keyCode
== WXK_DELETE
|| keyCode
> WXK_START
) &&
243 ((m_validatorStyle
& wxFILTER_INCLUDE_CHAR_LIST
) && !IsInCharIncludeList(wxString((wxChar
) keyCode
, 1))) ||
244 ((m_validatorStyle
& wxFILTER_EXCLUDE_CHAR_LIST
) && !IsNotInCharExcludeList(wxString((wxChar
) keyCode
, 1))) ||
245 ((m_validatorStyle
& wxFILTER_ASCII
) && !isascii(keyCode
)) ||
246 ((m_validatorStyle
& wxFILTER_ALPHA
) && !wxIsalpha(keyCode
)) ||
247 ((m_validatorStyle
& wxFILTER_ALPHANUMERIC
) && !wxIsalnum(keyCode
)) ||
248 ((m_validatorStyle
& wxFILTER_NUMERIC
) && !wxIsdigit(keyCode
)
249 && keyCode
!= '.' && keyCode
!= ',' && keyCode
!= '-')
253 if ( !wxValidator::IsSilent() )
264 static bool wxIsNumeric(const wxString
& val
)
267 for ( i
= 0; i
< (int)val
.Length(); i
++)
269 // Allow for "," (French) as well as "." -- in future we should
270 // use wxSystemSettings or other to do better localisation
271 if ((!wxIsdigit(val
[i
])) && (val
[i
] != '.') && (val
[i
] != ',') && (val
[i
] != wxT('e')) && (val
[i
] != wxT('E')) && (val
[i
] != wxT('+')) && (val
[i
] != wxT('-')))
277 bool wxTextValidator::IsInCharIncludeList(const wxString
& val
)
280 for ( i
= 0; i
< val
.Length(); i
++)
282 if (!m_includeList
.Member((wxString
) val
[i
]))
288 bool wxTextValidator::IsNotInCharExcludeList(const wxString
& val
)
291 for ( i
= 0; i
< val
.Length(); i
++)
293 if (m_excludeList
.Member((wxString
) val
[i
]))
300 // wxUSE_VALIDATORS && wxUSE_TEXTCTRL