2009-03-18 16:43:01 +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).
|
2009-03-18 16:43:01 +01:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2009-03-18 16:43:01 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
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.
|
2009-03-18 16:43:01 +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.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2009-03-18 16:43:01 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "cppfilesettingspage.h"
|
|
|
|
|
#include "cpptoolsconstants.h"
|
|
|
|
|
#include "ui_cppfilesettingspage.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2009-06-22 16:22:15 +02:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2009-03-18 16:43:01 +01:00
|
|
|
#include <coreplugin/mimedatabase.h>
|
2009-06-22 16:22:15 +02:00
|
|
|
#include <cppeditor/cppeditorconstants.h>
|
|
|
|
|
|
2009-03-18 16:43:01 +01:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
|
2011-03-30 15:15:15 +02:00
|
|
|
#include <utils/fileutils.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QSettings>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QCoreApplication>
|
|
|
|
|
#include <QDate>
|
|
|
|
|
#include <QLocale>
|
|
|
|
|
#include <QTextCodec>
|
|
|
|
|
#include <QTextStream>
|
2009-06-22 16:22:15 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QFileDialog>
|
|
|
|
|
#include <QMessageBox>
|
2009-03-18 16:43:01 +01:00
|
|
|
|
2011-05-10 15:19:38 +02:00
|
|
|
static const char headerSuffixKeyC[] = "HeaderSuffix";
|
|
|
|
|
static const char sourceSuffixKeyC[] = "SourceSuffix";
|
|
|
|
|
static const char licenseTemplatePathKeyC[] = "LicenseTemplate";
|
2009-06-22 16:22:15 +02:00
|
|
|
|
|
|
|
|
const char *licenseTemplateTemplate = QT_TRANSLATE_NOOP("CppTools::Internal::CppFileSettingsWidget",
|
|
|
|
|
"/**************************************************************************\n"
|
|
|
|
|
"** Qt Creator license header template\n"
|
|
|
|
|
"** Special keywords: %USER% %DATE% %YEAR%\n"
|
|
|
|
|
"** Environment variables: %$VARIABLE%\n"
|
|
|
|
|
"** To protect a percent sign, use '%%'.\n"
|
|
|
|
|
"**************************************************************************/\n");
|
2009-03-18 16:43:01 +01:00
|
|
|
|
|
|
|
|
namespace CppTools {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
CppFileSettings::CppFileSettings() :
|
|
|
|
|
lowerCaseFiles(false)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppFileSettings::toSettings(QSettings *s) const
|
|
|
|
|
{
|
|
|
|
|
s->beginGroup(QLatin1String(Constants::CPPTOOLS_SETTINGSGROUP));
|
|
|
|
|
s->setValue(QLatin1String(headerSuffixKeyC), headerSuffix);
|
|
|
|
|
s->setValue(QLatin1String(sourceSuffixKeyC), sourceSuffix);
|
|
|
|
|
s->setValue(QLatin1String(Constants::LOWERCASE_CPPFILES_KEY), lowerCaseFiles);
|
2009-06-22 16:22:15 +02:00
|
|
|
s->setValue(QLatin1String(licenseTemplatePathKeyC), licenseTemplatePath);
|
2009-03-18 16:43:01 +01:00
|
|
|
s->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppFileSettings::fromSettings(QSettings *s)
|
|
|
|
|
{
|
|
|
|
|
s->beginGroup(QLatin1String(Constants::CPPTOOLS_SETTINGSGROUP));
|
|
|
|
|
headerSuffix= s->value(QLatin1String(headerSuffixKeyC), QLatin1String("h")).toString();
|
|
|
|
|
sourceSuffix = s->value(QLatin1String(sourceSuffixKeyC), QLatin1String("cpp")).toString();
|
2009-03-18 17:05:48 +01:00
|
|
|
const bool lowerCaseDefault = Constants::lowerCaseFilesDefault;
|
|
|
|
|
lowerCaseFiles = s->value(QLatin1String(Constants::LOWERCASE_CPPFILES_KEY), QVariant(lowerCaseDefault)).toBool();
|
2009-06-22 16:22:15 +02:00
|
|
|
licenseTemplatePath = s->value(QLatin1String(licenseTemplatePathKeyC), QString()).toString();
|
2009-03-18 16:43:01 +01:00
|
|
|
s->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-29 09:04:59 +02:00
|
|
|
bool CppFileSettings::applySuffixesToMimeDB()
|
2009-03-18 16:43:01 +01:00
|
|
|
{
|
2012-01-24 15:36:40 +01:00
|
|
|
Core::MimeDatabase *mdb = Core::ICore::mimeDatabase();
|
2009-04-29 09:04:59 +02:00
|
|
|
return mdb->setPreferredSuffix(QLatin1String(CppTools::Constants::CPP_SOURCE_MIMETYPE), sourceSuffix)
|
|
|
|
|
&& mdb->setPreferredSuffix(QLatin1String(CppTools::Constants::CPP_HEADER_MIMETYPE), headerSuffix);
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CppFileSettings::equals(const CppFileSettings &rhs) const
|
|
|
|
|
{
|
|
|
|
|
return lowerCaseFiles == rhs.lowerCaseFiles
|
|
|
|
|
&& headerSuffix == rhs.headerSuffix
|
2009-06-22 16:22:15 +02:00
|
|
|
&& sourceSuffix == rhs.sourceSuffix
|
|
|
|
|
&& licenseTemplatePath == rhs.licenseTemplatePath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Replacements of special license template keywords.
|
2010-08-09 12:23:21 +02:00
|
|
|
static bool keyWordReplacement(const QString &keyWord,
|
|
|
|
|
const QString &file,
|
|
|
|
|
const QString &className,
|
|
|
|
|
QString *value)
|
2009-06-22 16:22:15 +02:00
|
|
|
{
|
|
|
|
|
if (keyWord == QLatin1String("%YEAR%")) {
|
2010-08-09 12:23:21 +02:00
|
|
|
*value = QString::number(QDate::currentDate().year());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2010-10-28 12:13:47 +02:00
|
|
|
if (keyWord == QLatin1String("%MONTH%")) {
|
|
|
|
|
*value = QString::number(QDate::currentDate().month());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (keyWord == QLatin1String("%DAY%")) {
|
|
|
|
|
*value = QString::number(QDate::currentDate().day());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2010-08-09 12:23:21 +02:00
|
|
|
if (keyWord == QLatin1String("%CLASS%")) {
|
|
|
|
|
*value = className;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (keyWord == QLatin1String("%FILENAME%")) {
|
|
|
|
|
*value = QFileInfo(file).fileName();
|
|
|
|
|
return true;
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
|
|
|
|
if (keyWord == QLatin1String("%DATE%")) {
|
|
|
|
|
static QString format;
|
|
|
|
|
// ensure a format with 4 year digits. Some have locales have 2.
|
|
|
|
|
if (format.isEmpty()) {
|
|
|
|
|
QLocale loc;
|
|
|
|
|
format = loc.dateFormat(QLocale::ShortFormat);
|
|
|
|
|
const QChar ypsilon = QLatin1Char('y');
|
|
|
|
|
if (format.count(ypsilon) == 2)
|
|
|
|
|
format.insert(format.indexOf(ypsilon), QString(2, ypsilon));
|
|
|
|
|
}
|
2010-08-09 12:23:21 +02:00
|
|
|
*value = QDate::currentDate().toString(format);
|
|
|
|
|
return true;
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
|
|
|
|
if (keyWord == QLatin1String("%USER%")) {
|
|
|
|
|
#ifdef Q_OS_WIN
|
2010-08-09 12:23:21 +02:00
|
|
|
*value = QString::fromLocal8Bit(qgetenv("USERNAME"));
|
2009-06-22 16:22:15 +02:00
|
|
|
#else
|
2010-08-09 12:23:21 +02:00
|
|
|
*value = QString::fromLocal8Bit(qgetenv("USER"));
|
2009-06-22 16:22:15 +02:00
|
|
|
#endif
|
2010-08-09 12:23:21 +02:00
|
|
|
return true;
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
|
|
|
|
// Environment variables (for example '%$EMAIL%').
|
|
|
|
|
if (keyWord.startsWith(QLatin1String("%$"))) {
|
|
|
|
|
const QString varName = keyWord.mid(2, keyWord.size() - 3);
|
2010-08-09 12:23:21 +02:00
|
|
|
*value = QString::fromLocal8Bit(qgetenv(varName.toLocal8Bit()));
|
|
|
|
|
return true;
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
2010-08-09 12:23:21 +02:00
|
|
|
return false;
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Parse a license template, scan for %KEYWORD% and replace if known.
|
|
|
|
|
// Replace '%%' by '%'.
|
2010-08-09 12:23:21 +02:00
|
|
|
static void parseLicenseTemplatePlaceholders(QString *t, const QString &file, const QString &className)
|
2009-06-22 16:22:15 +02:00
|
|
|
{
|
|
|
|
|
int pos = 0;
|
|
|
|
|
const QChar placeHolder = QLatin1Char('%');
|
|
|
|
|
do {
|
|
|
|
|
const int placeHolderPos = t->indexOf(placeHolder, pos);
|
|
|
|
|
if (placeHolderPos == -1)
|
|
|
|
|
break;
|
|
|
|
|
const int endPlaceHolderPos = t->indexOf(placeHolder, placeHolderPos + 1);
|
|
|
|
|
if (endPlaceHolderPos == -1)
|
|
|
|
|
break;
|
|
|
|
|
if (endPlaceHolderPos == placeHolderPos + 1) { // '%%' -> '%'
|
|
|
|
|
t->remove(placeHolderPos, 1);
|
|
|
|
|
pos = placeHolderPos + 1;
|
|
|
|
|
} else {
|
|
|
|
|
const QString keyWord = t->mid(placeHolderPos, endPlaceHolderPos + 1 - placeHolderPos);
|
2010-08-09 12:23:21 +02:00
|
|
|
QString replacement;
|
|
|
|
|
if (keyWordReplacement(keyWord, file, className, &replacement)) {
|
2009-06-22 16:22:15 +02:00
|
|
|
t->replace(placeHolderPos, keyWord.size(), replacement);
|
|
|
|
|
pos = placeHolderPos + replacement.size();
|
2010-08-09 12:23:21 +02:00
|
|
|
} else {
|
|
|
|
|
// Leave invalid keywords as is.
|
|
|
|
|
pos = endPlaceHolderPos + 1;
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} while (pos < t->size());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Convenience that returns the formatted license template.
|
2010-08-09 12:23:21 +02:00
|
|
|
QString CppFileSettings::licenseTemplate(const QString &fileName, const QString &className)
|
2009-06-22 16:22:15 +02:00
|
|
|
{
|
|
|
|
|
|
2012-01-24 15:36:40 +01:00
|
|
|
const QSettings *s = Core::ICore::settings();
|
2009-06-22 16:22:15 +02:00
|
|
|
QString key = QLatin1String(Constants::CPPTOOLS_SETTINGSGROUP);
|
|
|
|
|
key += QLatin1Char('/');
|
|
|
|
|
key += QLatin1String(licenseTemplatePathKeyC);
|
|
|
|
|
const QString path = s->value(key, QString()).toString();
|
|
|
|
|
if (path.isEmpty())
|
|
|
|
|
return QString();
|
|
|
|
|
QFile file(path);
|
|
|
|
|
if (!file.open(QIODevice::ReadOnly|QIODevice::Text)) {
|
|
|
|
|
qWarning("Unable to open the license template %s: %s", qPrintable(path), qPrintable(file.errorString()));
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
2010-11-11 11:00:40 +01:00
|
|
|
|
2011-02-01 14:13:54 +01:00
|
|
|
QTextCodec *codec = Core::EditorManager::instance()->defaultTextCodec();
|
2010-11-11 11:00:40 +01:00
|
|
|
QTextStream licenseStream(&file);
|
|
|
|
|
licenseStream.setCodec(codec);
|
|
|
|
|
licenseStream.setAutoDetectUnicode(true);
|
|
|
|
|
QString license = licenseStream.readAll();
|
|
|
|
|
|
2010-08-09 12:23:21 +02:00
|
|
|
parseLicenseTemplatePlaceholders(&license, fileName, className);
|
2009-06-22 16:22:15 +02:00
|
|
|
// Ensure exactly one additional new line separating stuff
|
|
|
|
|
const QChar newLine = QLatin1Char('\n');
|
|
|
|
|
if (!license.endsWith(newLine))
|
|
|
|
|
license += newLine;
|
|
|
|
|
license += newLine;
|
|
|
|
|
return license;
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ------------------ CppFileSettingsWidget
|
|
|
|
|
|
|
|
|
|
CppFileSettingsWidget::CppFileSettingsWidget(QWidget *parent) :
|
|
|
|
|
QWidget(parent),
|
2011-11-23 15:15:01 +00:00
|
|
|
m_ui(new Internal::Ui::CppFileSettingsPage)
|
2009-03-18 16:43:01 +01:00
|
|
|
{
|
|
|
|
|
m_ui->setupUi(this);
|
2012-01-24 15:36:40 +01:00
|
|
|
const Core::MimeDatabase *mdb = Core::ICore::mimeDatabase();
|
2009-03-18 16:43:01 +01:00
|
|
|
// populate suffix combos
|
|
|
|
|
if (const Core::MimeType sourceMt = mdb->findByType(QLatin1String(CppTools::Constants::CPP_SOURCE_MIMETYPE)))
|
|
|
|
|
foreach (const QString &suffix, sourceMt.suffixes())
|
|
|
|
|
m_ui->sourceSuffixComboBox->addItem(suffix);
|
|
|
|
|
|
|
|
|
|
if (const Core::MimeType headerMt = mdb->findByType(QLatin1String(CppTools::Constants::CPP_HEADER_MIMETYPE)))
|
|
|
|
|
foreach (const QString &suffix, headerMt.suffixes())
|
|
|
|
|
m_ui->headerSuffixComboBox->addItem(suffix);
|
2009-10-05 11:06:05 +02:00
|
|
|
m_ui->licenseTemplatePathChooser->setExpectedKind(Utils::PathChooser::File);
|
2011-10-05 20:13:49 +02:00
|
|
|
m_ui->licenseTemplatePathChooser->addButton(tr("Edit..."), this, SLOT(slotEdit()));
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CppFileSettingsWidget::~CppFileSettingsWidget()
|
|
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-22 16:22:15 +02:00
|
|
|
QString CppFileSettingsWidget::licenseTemplatePath() const
|
|
|
|
|
{
|
|
|
|
|
return m_ui->licenseTemplatePathChooser->path();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppFileSettingsWidget::setLicenseTemplatePath(const QString &lp)
|
|
|
|
|
{
|
|
|
|
|
m_ui->licenseTemplatePathChooser->setPath(lp);
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-18 16:43:01 +01:00
|
|
|
CppFileSettings CppFileSettingsWidget::settings() const
|
|
|
|
|
{
|
|
|
|
|
CppFileSettings rc;
|
|
|
|
|
rc.lowerCaseFiles = m_ui->lowerCaseFileNamesCheckBox->isChecked();
|
|
|
|
|
rc.headerSuffix = m_ui->headerSuffixComboBox->currentText();
|
|
|
|
|
rc.sourceSuffix = m_ui->sourceSuffixComboBox->currentText();
|
2009-06-22 16:22:15 +02:00
|
|
|
rc.licenseTemplatePath = licenseTemplatePath();
|
2009-03-18 16:43:01 +01:00
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-20 16:55:23 +01:00
|
|
|
QString CppFileSettingsWidget::searchKeywords() const
|
|
|
|
|
{
|
|
|
|
|
QString rc;
|
|
|
|
|
QTextStream(&rc) << m_ui->headerSuffixLabel->text()
|
|
|
|
|
<< ' ' << m_ui->sourceSuffixLabel->text()
|
2009-11-24 15:05:02 +01:00
|
|
|
<< ' ' << m_ui->lowerCaseFileNamesCheckBox->text()
|
|
|
|
|
<< ' ' << m_ui->licenseTemplateLabel->text();
|
2009-11-20 16:55:23 +01:00
|
|
|
rc.remove(QLatin1Char('&'));
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-18 16:43:01 +01:00
|
|
|
static inline void setComboText(QComboBox *cb, const QString &text, int defaultIndex = 0)
|
|
|
|
|
{
|
|
|
|
|
const int index = cb->findText(text);
|
|
|
|
|
cb->setCurrentIndex(index == -1 ? defaultIndex: index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppFileSettingsWidget::setSettings(const CppFileSettings &s)
|
|
|
|
|
{
|
|
|
|
|
m_ui->lowerCaseFileNamesCheckBox->setChecked(s.lowerCaseFiles);
|
|
|
|
|
setComboText(m_ui->headerSuffixComboBox, s.headerSuffix);
|
|
|
|
|
setComboText(m_ui->sourceSuffixComboBox, s.sourceSuffix);
|
2009-06-22 16:22:15 +02:00
|
|
|
setLicenseTemplatePath(s.licenseTemplatePath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppFileSettingsWidget::slotEdit()
|
|
|
|
|
{
|
|
|
|
|
QString path = licenseTemplatePath();
|
2011-03-30 15:15:15 +02:00
|
|
|
if (path.isEmpty()) {
|
|
|
|
|
// Pick a file name and write new template, edit with C++
|
|
|
|
|
path = QFileDialog::getSaveFileName(this, tr("Choose Location for New License Template File"));
|
|
|
|
|
if (path.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
Utils::FileSaver saver(path, QIODevice::Text);
|
|
|
|
|
saver.write(tr(licenseTemplateTemplate).toUtf8());
|
|
|
|
|
if (!saver.finalize(this))
|
|
|
|
|
return;
|
|
|
|
|
setLicenseTemplatePath(path);
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
2011-03-30 15:15:15 +02:00
|
|
|
// Edit (now) existing file with C++
|
2012-05-08 09:43:14 +02:00
|
|
|
Core::EditorManager::openEditor(path, CppEditor::Constants::CPPEDITOR_ID,
|
|
|
|
|
Core::EditorManager::ModeSwitch);
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------------- CppFileSettingsPage
|
2009-04-29 09:04:59 +02:00
|
|
|
CppFileSettingsPage::CppFileSettingsPage(QSharedPointer<CppFileSettings> &settings,
|
|
|
|
|
QObject *parent) :
|
|
|
|
|
Core::IOptionsPage(parent),
|
|
|
|
|
m_settings(settings)
|
2009-03-18 16:43:01 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CppFileSettingsPage::~CppFileSettingsPage()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString CppFileSettingsPage::id() const
|
|
|
|
|
{
|
2011-02-03 15:48:14 +01:00
|
|
|
return QLatin1String(Constants::CPP_FILE_SETTINGS_ID);
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
QString CppFileSettingsPage::displayName() const
|
2009-03-18 16:43:01 +01:00
|
|
|
{
|
2011-02-03 15:48:14 +01:00
|
|
|
return QCoreApplication::translate("CppTools", Constants::CPP_FILE_SETTINGS_NAME);
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString CppFileSettingsPage::category() const
|
|
|
|
|
{
|
|
|
|
|
return QLatin1String(Constants::CPP_SETTINGS_CATEGORY);
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
QString CppFileSettingsPage::displayCategory() const
|
2009-03-18 16:43:01 +01:00
|
|
|
{
|
2009-11-27 16:12:12 +01:00
|
|
|
return QCoreApplication::translate("CppTools", Constants::CPP_SETTINGS_TR_CATEGORY);
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-26 17:34:10 +01:00
|
|
|
QIcon CppFileSettingsPage::categoryIcon() const
|
|
|
|
|
{
|
2010-05-14 11:03:30 +02:00
|
|
|
return QIcon(QLatin1String(Constants::SETTINGS_CATEGORY_CPP_ICON));
|
2010-03-26 17:34:10 +01:00
|
|
|
}
|
|
|
|
|
|
2009-03-18 16:43:01 +01:00
|
|
|
QWidget *CppFileSettingsPage::createPage(QWidget *parent)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
m_widget = new CppFileSettingsWidget(parent);
|
2009-04-29 09:04:59 +02:00
|
|
|
m_widget->setSettings(*m_settings);
|
2009-11-20 16:55:23 +01:00
|
|
|
if (m_searchKeywords.isEmpty())
|
|
|
|
|
m_searchKeywords = m_widget->searchKeywords();
|
2009-03-18 16:43:01 +01:00
|
|
|
return m_widget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppFileSettingsPage::apply()
|
|
|
|
|
{
|
|
|
|
|
if (m_widget) {
|
|
|
|
|
const CppFileSettings newSettings = m_widget->settings();
|
2009-04-29 09:04:59 +02:00
|
|
|
if (newSettings != *m_settings) {
|
|
|
|
|
*m_settings = newSettings;
|
2012-01-24 15:36:40 +01:00
|
|
|
m_settings->toSettings(Core::ICore::settings());
|
2009-04-29 09:04:59 +02:00
|
|
|
m_settings->applySuffixesToMimeDB();
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-20 16:55:23 +01:00
|
|
|
bool CppFileSettingsPage::matches(const QString &s) const
|
|
|
|
|
{
|
|
|
|
|
return m_searchKeywords.contains(s, Qt::CaseInsensitive);
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-13 17:31:42 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace CppTools
|