X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f94a790dafd54c290618c97cb3d4feffc400fd15..571d2e0f232be3f7220c485c7e72eccfb87f2855:/src/common/valtext.cpp diff --git a/src/common/valtext.cpp b/src/common/valtext.cpp index 86211d8434..4acfd58319 100644 --- a/src/common/valtext.cpp +++ b/src/common/valtext.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: valtext.cpp +// Name: src/common/valtext.cpp // Purpose: wxTextValidator // Author: Julian Smart // Modified by: @@ -9,10 +9,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "valtext.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -22,6 +18,8 @@ #if wxUSE_VALIDATORS && wxUSE_TEXTCTRL +#include "wx/valtext.h" + #ifndef WX_PRECOMP #include #include "wx/textctrl.h" @@ -30,8 +28,6 @@ #include "wx/intl.h" #endif -#include "wx/valtext.h" - #include #include #include @@ -82,7 +78,7 @@ bool wxTextValidator::Copy(const wxTextValidator& val) static bool wxIsAlpha(const wxString& val) { int i; - for ( i = 0; i < (int)val.Length(); i++) + for ( i = 0; i < (int)val.length(); i++) { if (!wxIsalpha(val[i])) return false; @@ -93,7 +89,7 @@ static bool wxIsAlpha(const wxString& val) static bool wxIsAlphaNumeric(const wxString& val) { int i; - for ( i = 0; i < (int)val.Length(); i++) + for ( i = 0; i < (int)val.length(); i++) { if (!wxIsalnum(val[i])) return false; @@ -221,8 +217,12 @@ inline void wxCopyStringListToArrayString(wxArrayString& to, const wxStringList& { to.Clear(); - for(wxStringList::Node* pNode = from.GetFirst(); pNode; pNode = pNode->GetNext()) + for ( wxStringList::compatibility_iterator pNode = from.GetFirst(); + pNode; + pNode = pNode->GetNext() ) + { to.Add(pNode->GetData()); + } } inline void wxCopyArrayStringToStringList(wxStringList& to, const wxArrayString& from) @@ -271,7 +271,7 @@ bool wxTextValidator::IsNotInCharExcludeList(const wxString& val) bool wxTextValidator::IsInCharIncludes(const wxString& val) { size_t i; - for ( i = 0; i < val.Length(); i++) + for ( i = 0; i < val.length(); i++) { if (m_includes.Index((wxString) val[i]) == wxNOT_FOUND) return false; @@ -282,7 +282,7 @@ bool wxTextValidator::IsInCharIncludes(const wxString& val) bool wxTextValidator::IsNotInCharExcludes(const wxString& val) { size_t i; - for ( i = 0; i < val.Length(); i++) + for ( i = 0; i < val.length(); i++) { if (m_excludes.Index((wxString) val[i]) != wxNOT_FOUND) return false; @@ -311,7 +311,7 @@ void wxTextValidator::OnChar(wxKeyEvent& event) ((m_validatorStyle & wxFILTER_ALPHA) && !wxIsalpha(keyCode)) || ((m_validatorStyle & wxFILTER_ALPHANUMERIC) && !wxIsalnum(keyCode)) || ((m_validatorStyle & wxFILTER_NUMERIC) && !wxIsdigit(keyCode) - && keyCode != '.' && keyCode != ',' && keyCode != '-') + && keyCode != wxT('.') && keyCode != wxT(',') && keyCode != wxT('-') && keyCode != wxT('+') && keyCode != wxT('e') && keyCode != wxT('E')) ) ) { @@ -329,11 +329,11 @@ void wxTextValidator::OnChar(wxKeyEvent& event) static bool wxIsNumeric(const wxString& val) { int i; - for ( i = 0; i < (int)val.Length(); i++) + for ( i = 0; i < (int)val.length(); i++) { // Allow for "," (French) as well as "." -- in future we should // use wxSystemSettings or other to do better localisation - if ((!wxIsdigit(val[i])) && (val[i] != '.') && (val[i] != ',') && (val[i] != wxT('e')) && (val[i] != wxT('E')) && (val[i] != wxT('+')) && (val[i] != wxT('-'))) + if ((!wxIsdigit(val[i])) && (val[i] != wxT('.')) && (val[i] != wxT(',')) && (val[i] != wxT('e')) && (val[i] != wxT('E')) && (val[i] != wxT('+')) && (val[i] != wxT('-'))) return false; } return true;