summaryrefslogtreecommitdiffstats
path: root/kdeui/kstringvalidator.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
commite16866e072f94410321d70daedbcb855ea878cac (patch)
treeee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /kdeui/kstringvalidator.cpp
parenta58c20c1a7593631a1b50213c805507ebc16adaf (diff)
downloadtdelibs-e16866e072f94410321d70daedbcb855ea878cac.tar.gz
tdelibs-e16866e072f94410321d70daedbcb855ea878cac.zip
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'kdeui/kstringvalidator.cpp')
-rw-r--r--kdeui/kstringvalidator.cpp90
1 files changed, 0 insertions, 90 deletions
diff --git a/kdeui/kstringvalidator.cpp b/kdeui/kstringvalidator.cpp
deleted file mode 100644
index 4c2f33890..000000000
--- a/kdeui/kstringvalidator.cpp
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- kstringvalidator.cpp
-
- Copyright (c) 2001 Marc Mutz <mutz@kde.org>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; version 2.0
- of the License.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public
- License along with this library; if not, write to the Free
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- 02110-1301 USA
-*/
-
-#include "kstringvalidator.h"
-#include "kdebug.h"
-
-//
-// KStringListValidator
-//
-
-TQValidator::State KStringListValidator::validate( TQString & input, int& ) const {
- if ( input.isEmpty() ) return Intermediate;
-
- if ( isRejecting() ) // anything not in mStringList is acceptable:
- if ( mStringList.find( input ) == mStringList.end() )
- return Acceptable;
- else
- return Intermediate;
- else // only what is in mStringList is acceptable:
- if ( mStringList.find( input ) != mStringList.end() )
- return Acceptable;
- else
- for ( TQStringList::ConstIterator it = mStringList.begin() ;
- it != mStringList.end() ; ++it )
- if ( (*it).startsWith( input ) || input.startsWith( *it ) )
- return Intermediate;
-
- return Invalid;
-}
-
-void KStringListValidator::fixup( TQString & /* input */ ) const {
- if ( !isFixupEnabled() ) return;
- // warn (but only once!) about non-implemented fixup():
- static bool warn = true;
- if ( warn ) {
- kdDebug() << "KStringListValidator::fixup() isn't yet implemented!"
- << endl;
- warn = false;
- }
-}
-
-//
-// KMimeTypeValidator
-//
-
-#define ALLOWED_CHARS "!#-'*+.0-9^-~+-"
-
-TQValidator::State KMimeTypeValidator::validate( TQString & input, int& ) const
-{
- if ( input.isEmpty() )
- return Intermediate;
-
- TQRegExp acceptable( "[" ALLOWED_CHARS "]+/[" ALLOWED_CHARS "]+",
- false /*case-insens.*/);
- if ( acceptable.exactMatch( input ) )
- return Acceptable;
-
- TQRegExp intermediate( "[" ALLOWED_CHARS "]*/?[" ALLOWED_CHARS "]*",
- false /*case-insensitive*/);
- if ( intermediate.exactMatch( input ) )
- return Intermediate;
-
- return Invalid;
-}
-
-void KMimeTypeValidator::fixup( TQString & input ) const
-{
- TQRegExp invalidChars("[^/" ALLOWED_CHARS "]+");
- input.replace( invalidChars, TQString());
-}
-
-#include "kstringvalidator.moc"