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
|
/* This file is part of the KDE project
Copyright (C) 2003-2005 Jaroslaw Staniek <[email protected]>
Copyright (C) 2005 Martin Ellis <[email protected]>
This program 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; either
version 2 of the License, or (at your option) any later version.
This program 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 program; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef KEXIUTILS_IDENTIFIER_H
#define KEXIUTILS_IDENTIFIER_H
#include "validator.h"
#include <tqstring.h>
namespace KexiUtils {
/*! \return true if \a s is a valid identifier, ie. starts with a letter or '_' character
and contains only letters, numbers and '_' character. */
KEXIUTILS_EXPORT bool isIdentifier(const TQString& s);
/*! \return valid identifier based on \a s.
Non-alphanumeric characters (or spaces) are replaced with '_'.
If a number is at the beginning, '_' is added at start.
Empty strings are not changed. Case remains unchanged. */
KEXIUTILS_EXPORT TQString string2Identifier(const TQString &s);
/*! \return useful message "Value of "valueName" column must be an identifier.
"v" is not a valid identifier.". It is also used by IdentifierValidator. */
KEXIUTILS_EXPORT TQString identifierExpectedMessage(const TQString &valueName,
const TQVariant& v);
//! \return Valid filename based on \a s
KEXIUTILS_EXPORT TQString string2FileName(const TQString &s);
//! Validates input for identifier name.
class KEXIUTILS_EXPORT IdentifierValidator : public Validator
{
public:
IdentifierValidator(TQObject * parent = 0, const char * name = 0);
virtual ~IdentifierValidator();
virtual State validate( TQString & input, int & pos) const;
protected:
virtual Validator::Result internalCheck(const TQString &valueName, const TQVariant& v,
TQString &message, TQString &details);
};
}
#endif
|