1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/valtext.cpp
3 // Purpose: wxTextValidator
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
19 #if wxUSE_VALIDATORS && (wxUSE_TEXTCTRL || wxUSE_COMBOBOX)
21 #include "wx/valtext.h"
25 #include "wx/textctrl.h"
26 #include "wx/combobox.h"
28 #include "wx/msgdlg.h"
40 IMPLEMENT_DYNAMIC_CLASS(wxTextValidator
, wxValidator
)
42 BEGIN_EVENT_TABLE(wxTextValidator
, wxValidator
)
43 EVT_CHAR(wxTextValidator::OnChar
)
46 static bool wxIsNumeric(const wxString
& val
);
48 wxTextValidator::wxTextValidator(long style
, wxString
*val
)
50 m_validatorStyle
= style
;
53 m_refData = new wxVTextRefData;
55 M_VTEXTDATA->m_validatorStyle = style;
56 M_VTEXTDATA->m_stringValue = val;
60 wxTextValidator::wxTextValidator(const wxTextValidator
& val
)
66 bool wxTextValidator::Copy(const wxTextValidator
& val
)
68 wxValidator::Copy(val
);
70 m_validatorStyle
= val
.m_validatorStyle
;
71 m_stringValue
= val
.m_stringValue
;
73 m_includes
= val
.m_includes
;
74 m_excludes
= val
.m_excludes
;
79 wxTextEntry
*wxTextValidator::GetTextEntry()
82 if (m_validatorWindow
->IsKindOf(CLASSINFO(wxTextCtrl
)))
84 return (wxTextCtrl
*)m_validatorWindow
;
88 // FIXME: in wxMotif wxComboBox doesn't derive from wxTextCtrl yet
91 if (m_validatorWindow
->IsKindOf(CLASSINFO(wxComboBox
)))
93 return (wxComboBox
*)m_validatorWindow
;
96 #endif // !__WXMOTIF__
99 _T("wxTextValidator can only be used with wxTextCtrl or wxComboBox")
105 static bool wxIsAlpha(const wxString
& val
)
108 for ( i
= 0; i
< (int)val
.length(); i
++)
110 if (!wxIsalpha(val
[i
]))
116 static bool wxIsAlphaNumeric(const wxString
& val
)
119 for ( i
= 0; i
< (int)val
.length(); i
++)
121 if (!wxIsalnum(val
[i
]))
127 // Called when the value in the window must be validated.
128 // This function can pop up an error message.
129 bool wxTextValidator::Validate(wxWindow
*parent
)
131 // If window is disabled, simply return
132 if ( !m_validatorWindow
->IsEnabled() )
135 wxTextEntry
* const text
= GetTextEntry();
139 wxString
val(text
->GetValue());
143 // NB: this format string should contian exactly one '%s'
146 bool includes
= (m_validatorStyle
& wxFILTER_INCLUDE_LIST
) != 0;
147 if ( includes
|| (m_validatorStyle
& wxFILTER_EXCLUDE_LIST
) )
149 // if includes, it's only ok to have the members of the list,
150 // otherwise it's only ok to have non-members
151 ok
= includes
== (m_includes
.Index(val
) != wxNOT_FOUND
);
154 errormsg
= _("'%s' is invalid");
157 else if ( (m_validatorStyle
& wxFILTER_ASCII
) && !val
.IsAscii() )
161 errormsg
= _("'%s' should only contain ASCII characters.");
163 else if ( (m_validatorStyle
& wxFILTER_ALPHA
) && !wxIsAlpha(val
) )
167 errormsg
= _("'%s' should only contain alphabetic characters.");
169 else if ( (m_validatorStyle
& wxFILTER_ALPHANUMERIC
) && !wxIsAlphaNumeric(val
))
173 errormsg
= _("'%s' should only contain alphabetic or numeric characters.");
175 else if ( (m_validatorStyle
& wxFILTER_NUMERIC
) && !wxIsNumeric(val
))
179 errormsg
= _("'%s' should be numeric.");
181 else if ( (m_validatorStyle
& wxFILTER_INCLUDE_CHAR_LIST
) && !IsInCharIncludes(val
))
183 //it's only ok to have the members of the list
184 errormsg
= _("'%s' is invalid");
187 else if ( (m_validatorStyle
& wxFILTER_EXCLUDE_CHAR_LIST
) && !IsNotInCharExcludes(val
))
189 // it's only ok to have non-members of the list
190 errormsg
= _("'%s' is invalid");
196 wxASSERT_MSG( !errormsg
.empty(), _T("you forgot to set errormsg") );
198 m_validatorWindow
->SetFocus();
201 buf
.Printf(errormsg
, val
.c_str());
203 wxMessageBox(buf
, _("Validation conflict"),
204 wxOK
| wxICON_EXCLAMATION
, parent
);
210 // Called to transfer data to the window
211 bool wxTextValidator::TransferToWindow(void)
215 wxTextEntry
* const text
= GetTextEntry();
219 text
->SetValue(*m_stringValue
);
225 // Called to transfer data to the window
226 bool wxTextValidator::TransferFromWindow(void)
230 wxTextEntry
* const text
= GetTextEntry();
234 *m_stringValue
= text
->GetValue();
240 bool wxTextValidator::IsInCharIncludes(const wxString
& val
)
243 for ( i
= 0; i
< val
.length(); i
++)
245 if (m_includes
.Index((wxString
) val
[i
]) == wxNOT_FOUND
)
251 bool wxTextValidator::IsNotInCharExcludes(const wxString
& val
)
254 for ( i
= 0; i
< val
.length(); i
++)
256 if (m_excludes
.Index((wxString
) val
[i
]) != wxNOT_FOUND
)
262 void wxTextValidator::OnChar(wxKeyEvent
& event
)
269 if ( m_validatorWindow
)
271 int keyCode
= event
.GetKeyCode();
273 // we don't filter special keys and Delete
275 !(keyCode
< WXK_SPACE
|| keyCode
== WXK_DELETE
|| keyCode
> WXK_START
) &&
277 ((m_validatorStyle
& wxFILTER_INCLUDE_CHAR_LIST
) && !IsInCharIncludes(wxString((wxChar
) keyCode
, 1))) ||
278 ((m_validatorStyle
& wxFILTER_EXCLUDE_CHAR_LIST
) && !IsNotInCharExcludes(wxString((wxChar
) keyCode
, 1))) ||
279 ((m_validatorStyle
& wxFILTER_ASCII
) && !isascii(keyCode
)) ||
280 ((m_validatorStyle
& wxFILTER_ALPHA
) && !wxIsalpha(keyCode
)) ||
281 ((m_validatorStyle
& wxFILTER_ALPHANUMERIC
) && !wxIsalnum(keyCode
)) ||
282 ((m_validatorStyle
& wxFILTER_NUMERIC
) && !wxIsdigit(keyCode
)
283 && keyCode
!= wxT('.') && keyCode
!= wxT(',') && keyCode
!= wxT('-') && keyCode
!= wxT('+') && keyCode
!= wxT('e') && keyCode
!= wxT('E'))
287 if ( !wxValidator::IsSilent() )
298 static bool wxIsNumeric(const wxString
& val
)
301 for ( i
= 0; i
< (int)val
.length(); i
++)
303 // Allow for "," (French) as well as "." -- in future we should
304 // use wxSystemSettings or other to do better localisation
305 if ((!wxIsdigit(val
[i
])) && (val
[i
] != wxT('.')) && (val
[i
] != wxT(',')) && (val
[i
] != wxT('e')) && (val
[i
] != wxT('E')) && (val
[i
] != wxT('+')) && (val
[i
] != wxT('-')))
313 // wxUSE_VALIDATORS && (wxUSE_TEXTCTRL || wxUSE_COMBOBOX)