2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:58:39 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02: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
|
|
|
|
|
|
2013-06-05 14:29:24 +02:00
|
|
|
\brief The ClassNameValidatingLineEdit class implements a line edit that
|
|
|
|
|
validates a C++ class name and emits a signal
|
2011-03-02 17:13:33 +01:00
|
|
|
to derive suggested file names from it.
|
|
|
|
|
*/
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
namespace Utils {
|
|
|
|
|
|
|
|
|
|
struct ClassNameValidatingLineEditPrivate {
|
|
|
|
|
ClassNameValidatingLineEditPrivate();
|
|
|
|
|
|
2013-01-15 01:09:45 +04:00
|
|
|
QRegExp m_nameRegexp;
|
|
|
|
|
QString m_namespaceDelimiter;
|
2008-12-02 12:01:29 +01:00
|
|
|
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) :
|
2014-07-15 23:33:17 +03:00
|
|
|
FancyLineEdit(parent),
|
2011-09-07 14:26:11 +02:00
|
|
|
d(new ClassNameValidatingLineEditPrivate)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2015-04-28 14:49:56 +02:00
|
|
|
setValidationFunction([this](FancyLineEdit *edit, QString *errorMessage) {
|
|
|
|
|
return validateClassName(edit, errorMessage);
|
|
|
|
|
});
|
2013-01-15 01:09:45 +04:00
|
|
|
updateRegExp();
|
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
|
|
|
}
|
|
|
|
|
|
2013-01-15 01:09:45 +04:00
|
|
|
/**
|
|
|
|
|
* @return Language-specific namespace delimiter, e.g. '::' or '.'
|
|
|
|
|
*/
|
|
|
|
|
QString ClassNameValidatingLineEdit::namespaceDelimiter()
|
|
|
|
|
{
|
|
|
|
|
return d->m_namespaceDelimiter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Sets language-specific namespace delimiter, e.g. '::' or '.'
|
|
|
|
|
* Do not use identifier characters in delimiter
|
|
|
|
|
*/
|
|
|
|
|
void ClassNameValidatingLineEdit::setNamespaceDelimiter(const QString &delimiter)
|
|
|
|
|
{
|
|
|
|
|
d->m_namespaceDelimiter = delimiter;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-28 14:49:56 +02:00
|
|
|
bool ClassNameValidatingLineEdit::validateClassName(FancyLineEdit *edit, QString *errorMessage) const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-01-15 01:09:45 +04:00
|
|
|
QTC_ASSERT(d->m_nameRegexp.isValid(), return false);
|
|
|
|
|
|
2015-04-28 14:49:56 +02:00
|
|
|
const QString value = edit->text();
|
2013-01-15 01:09:45 +04:00
|
|
|
if (!d->m_namespacesEnabled && value.contains(d->m_namespaceDelimiter)) {
|
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;
|
2013-01-15 01:09:45 +04:00
|
|
|
} else if (!d->m_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;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-13 16:13:54 +01:00
|
|
|
void ClassNameValidatingLineEdit::handleChanged(const QString &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;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-15 01:09:45 +04:00
|
|
|
void ClassNameValidatingLineEdit::updateRegExp() const
|
|
|
|
|
{
|
2013-03-19 00:25:42 +04:00
|
|
|
const QString pattern(QLatin1String("%1(%2%1)*"));
|
|
|
|
|
d->m_nameRegexp.setPattern(pattern.arg(QLatin1String("[a-zA-Z_][a-zA-Z0-9_]*"))
|
|
|
|
|
.arg(QRegExp::escape(d->m_namespaceDelimiter)));
|
2013-01-15 01:09:45 +04:00
|
|
|
}
|
|
|
|
|
|
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
|