2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "classnamevalidatinglineedit.h"
|
|
|
|
|
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QRegExp>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-03-02 17:13:33 +01:00
|
|
|
/*!
|
|
|
|
|
\class Utils::ClassNameValidatingLineEdit
|
|
|
|
|
|
|
|
|
|
\brief A Line edit that validates a C++ class name and emits a signal
|
|
|
|
|
to derive suggested file names from it.
|
|
|
|
|
*/
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
namespace Utils {
|
|
|
|
|
|
|
|
|
|
struct ClassNameValidatingLineEditPrivate {
|
|
|
|
|
ClassNameValidatingLineEditPrivate();
|
|
|
|
|
|
|
|
|
|
const QRegExp m_nameRegexp;
|
|
|
|
|
const QString m_namespaceDelimiter;
|
|
|
|
|
bool m_namespacesEnabled;
|
2009-03-18 16:43:01 +01:00
|
|
|
bool m_lowerCaseFileName;
|
2012-04-12 14:04:03 +02:00
|
|
|
bool m_forceFirstCapitalLetter;
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Match something like "Namespace1::Namespace2::ClassName".
|
|
|
|
|
ClassNameValidatingLineEditPrivate:: ClassNameValidatingLineEditPrivate() :
|
|
|
|
|
m_namespaceDelimiter(QLatin1String("::")),
|
2009-03-18 16:43:01 +01:00
|
|
|
m_namespacesEnabled(false),
|
2012-04-12 14:04:03 +02:00
|
|
|
m_lowerCaseFileName(true),
|
|
|
|
|
m_forceFirstCapitalLetter(false)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------------------- ClassNameValidatingLineEdit
|
|
|
|
|
ClassNameValidatingLineEdit::ClassNameValidatingLineEdit(QWidget *parent) :
|
2009-10-05 11:06:05 +02:00
|
|
|
Utils::BaseValidatingLineEdit(parent),
|
2011-09-07 14:26:11 +02:00
|
|
|
d(new ClassNameValidatingLineEditPrivate)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ClassNameValidatingLineEdit::~ClassNameValidatingLineEdit()
|
|
|
|
|
{
|
2011-09-07 14:26:11 +02:00
|
|
|
delete d;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ClassNameValidatingLineEdit::namespacesEnabled() const
|
|
|
|
|
{
|
2011-09-07 14:26:11 +02:00
|
|
|
return d->m_namespacesEnabled;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ClassNameValidatingLineEdit::setNamespacesEnabled(bool b)
|
|
|
|
|
{
|
2011-09-07 14:26:11 +02:00
|
|
|
d->m_namespacesEnabled = b;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ClassNameValidatingLineEdit::validate(const QString &value, QString *errorMessage) const
|
|
|
|
|
{
|
2012-04-12 14:04:03 +02:00
|
|
|
static QRegExp nameRegexp(QLatin1String("[a-zA-Z_][a-zA-Z0-9_]*(::[a-zA-Z_][a-zA-Z0-9_]*)*"));
|
|
|
|
|
QTC_ASSERT(nameRegexp.isValid(), return false);
|
2011-09-07 14:26:11 +02:00
|
|
|
if (!d->m_namespacesEnabled && value.contains(QLatin1Char(':'))) {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (errorMessage)
|
|
|
|
|
*errorMessage = tr("The class name must not contain namespace delimiters.");
|
|
|
|
|
return false;
|
2009-03-20 11:06:09 +01:00
|
|
|
} else if (value.isEmpty()) {
|
|
|
|
|
if (errorMessage)
|
|
|
|
|
*errorMessage = tr("Please enter a class name.");
|
|
|
|
|
return false;
|
2012-04-12 14:04:03 +02:00
|
|
|
} else if (!nameRegexp.exactMatch(value)) {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (errorMessage)
|
|
|
|
|
*errorMessage = tr("The class name contains invalid characters.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ClassNameValidatingLineEdit::slotChanged(const QString &t)
|
|
|
|
|
{
|
2009-10-05 11:06:05 +02:00
|
|
|
Utils::BaseValidatingLineEdit::slotChanged(t);
|
2008-12-02 12:01:29 +01:00
|
|
|
if (isValid()) {
|
|
|
|
|
// Suggest file names, strip namespaces
|
2011-09-07 14:26:11 +02:00
|
|
|
QString fileName = d->m_lowerCaseFileName ? t.toLower() : t;
|
|
|
|
|
if (d->m_namespacesEnabled) {
|
|
|
|
|
const int namespaceIndex = fileName.lastIndexOf(d->m_namespaceDelimiter);
|
2008-12-02 12:01:29 +01:00
|
|
|
if (namespaceIndex != -1)
|
2011-09-07 14:26:11 +02:00
|
|
|
fileName.remove(0, namespaceIndex + d->m_namespaceDelimiter.size());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
emit updateFileName(fileName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-12 14:04:03 +02:00
|
|
|
QString ClassNameValidatingLineEdit::fixInputString(const QString &string)
|
|
|
|
|
{
|
|
|
|
|
if (!forceFirstCapitalLetter())
|
|
|
|
|
return string;
|
|
|
|
|
|
|
|
|
|
QString fixedString = string;
|
|
|
|
|
if (!string.isEmpty() && string.at(0).isLower())
|
|
|
|
|
fixedString[0] = string.at(0).toUpper();
|
|
|
|
|
|
|
|
|
|
return fixedString;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QString ClassNameValidatingLineEdit::createClassName(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
// Remove spaces and convert the adjacent characters to uppercase
|
|
|
|
|
QString className = name;
|
|
|
|
|
QRegExp spaceMatcher(QLatin1String(" +(\\w)"), Qt::CaseSensitive, QRegExp::RegExp2);
|
2011-07-29 12:00:11 +02:00
|
|
|
QTC_CHECK(spaceMatcher.isValid());
|
2008-12-02 12:01:29 +01:00
|
|
|
int pos;
|
|
|
|
|
while ((pos = spaceMatcher.indexIn(className)) != -1) {
|
|
|
|
|
className.replace(pos, spaceMatcher.matchedLength(),
|
|
|
|
|
spaceMatcher.cap(1).toUpper());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Filter out any remaining invalid characters
|
|
|
|
|
className.remove(QRegExp(QLatin1String("[^a-zA-Z0-9_]")));
|
|
|
|
|
|
|
|
|
|
// If the first character is numeric, prefix the name with a "_"
|
|
|
|
|
if (className.at(0).isNumber()) {
|
|
|
|
|
className.prepend(QLatin1Char('_'));
|
|
|
|
|
} else {
|
|
|
|
|
// Convert the first character to uppercase
|
|
|
|
|
className.replace(0, 1, className.left(1).toUpper());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return className;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-18 16:43:01 +01:00
|
|
|
bool ClassNameValidatingLineEdit::lowerCaseFileName() const
|
|
|
|
|
{
|
2011-09-07 14:26:11 +02:00
|
|
|
return d->m_lowerCaseFileName;
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ClassNameValidatingLineEdit::setLowerCaseFileName(bool v)
|
|
|
|
|
{
|
2011-09-07 14:26:11 +02:00
|
|
|
d->m_lowerCaseFileName = v;
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
2012-04-12 14:04:03 +02:00
|
|
|
bool ClassNameValidatingLineEdit::forceFirstCapitalLetter() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_forceFirstCapitalLetter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ClassNameValidatingLineEdit::setForceFirstCapitalLetter(bool b)
|
|
|
|
|
{
|
|
|
|
|
d->m_forceFirstCapitalLetter = b;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 14:09:21 +01:00
|
|
|
} // namespace Utils
|