/usr/include/kstringvalidator.h is in kdelibs5-dev 4:4.14.16-0ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | /*
kstringvalidator.h
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
*/
#ifndef KSTRINGVALIDATOR_H
#define KSTRINGVALIDATOR_H
#include <kdeui_export.h>
#include <QtCore/QStringList>
#include <QtGui/QValidator>
/**
* @short A QValidator to (dis)allow certain strings
*
* This validator allows you to accept only certain or to accept all
* but certain strings.
*
* When used in rejecting mode, accepts only strings not in the
* stringlist. This mode is the default and comes in handy when asking
* the user for a name of some listed entity. Set the list of already
* used names to prevent the user from entering duplicate names.
*
* When used in non-rejecting mode, accepts only strings that appear
* in the stringlist. Use with care! From a user's point of view this
* mode is hard to grasp.
*
* This validator can also fix strings. In rejecting mode, a number
* will be appended to the string until it is Acceptable. E.g. if
* "foo" and "foo 1" are in the stringlist, then fixup will change
* "foo" to "foo 2", provided "foo 2" isn't in the list of forbidden
* strings.
*
* In accepting mode, when the input starts with an Acceptable
* substring, truncates to the longest Acceptable string. When the
* input is the start of an Acceptable string, completes to the
* shortest Acceptable string.
*
* NOTE: fixup isn't yet implemented.
*
* @author Marc Mutz <mutz@kde.org>
**/
class KDEUI_EXPORT KStringListValidator : public QValidator
{
Q_OBJECT
Q_PROPERTY( QStringList stringList READ stringList WRITE setStringList )
Q_PROPERTY( bool rejecting READ isRejecting WRITE setRejecting )
Q_PROPERTY( bool fixupEnabled READ isFixupEnabled WRITE setFixupEnabled )
public:
/**
* Creates a new string validator.
*
* @param list The list of strings to (dis)allow.
* @param rejecting Selects the validator's mode
* (rejecting: true; accepting: false)
* @param fixupEnabled Selects whether to fix strings or not.
* @param parent Passed to lower level constructor.
*
**/
explicit KStringListValidator( const QStringList &list = QStringList(),
bool rejecting = true, bool fixupEnabled = false,
QObject *parent = 0 );
/**
* Destroys the string validator.
*/
~KStringListValidator();
/**
* Sets whether the string validator is in rejecting mode or not.
* If in rejecting mode, the strings from @see stringList are not
* allowed to appear in the validation string.
*/
void setRejecting( bool rejecting );
/**
* Returns whether the string validator is in rejecting mode.
*/
bool isRejecting() const;
/**
* Sets the fixup flag. If enabled, wrong input is corrected
* automatically.
*/
void setFixupEnabled( bool fixupEnabled );
/**
* Returns whether the fixup flag is set.
*/
bool isFixupEnabled() const;
/**
* Sets the @param list of string which is used as black or
* white list, depending on the rejecting mode (@see isRejecting()).
*/
void setStringList( const QStringList & list );
/**
* Returns the string list of the validator.
*/
QStringList stringList() const;
/**
* Reimplemented from @see QValidator.
*/
virtual State validate( QString & input, int & pos ) const;
/**
* Reimplemented from @see QValidator.
*/
virtual void fixup( QString & input ) const;
private:
class Private;
Private* const d;
};
/**
* @short A QValidator for mime types.
*
* This validator allows you to validate mimetype names
* (e.g. text/plain, image/jpeg). Note that the validation is only
* syntactically. It will e.g. not reject "foo/bar", although that
* particular mime type isn't yet registered. It suffices for the name
* to adhere to the production
*
* \code
* mime-type := token "/" token ; 'token' is defined in rfc2045
* \endcode
*
* The fixup will simply remove all non-token characters.
*
* @deprecated
* @author Marc Mutz <mutz@kde.org>
**/
class KDEUI_EXPORT_DEPRECATED KMimeTypeValidator : public QValidator
{
Q_OBJECT
public:
/**
* Creates a new mime type validator.
*/
explicit KMimeTypeValidator( QObject* parent = 0 );
/**
* Destroys the mime type validator.
*/
~KMimeTypeValidator();
/**
* Checks for well-formed mimetype. Returns
* @li Acceptable iff input ~= /^[:allowed chars:]+\/[:allowed chars:]+$/
* @li Intermediate iff input ~= /^[:allowed chars:]*\/?[:allowed chars:]*$/
* @li Invalid else
*/
virtual State validate( QString & input, int & pos ) const;
/**
* Removes all characters that are forbidden in mimetypes.
*/
virtual void fixup( QString & input ) const;
private:
class Private;
Private* const d;
};
#endif // KSTRINGVALIDATOR_H
|