2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2009-03-18 16:43:01 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2009-03-18 16:43:01 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2009-03-18 16:43:01 +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:57:40 +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.
|
2009-03-18 16:43:01 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +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
|
|
|
****************************************************************************/
|
2009-03-18 16:43:01 +01:00
|
|
|
|
|
|
|
|
#include "cppfilesettingspage.h"
|
2013-03-27 18:54:03 +01:00
|
|
|
|
2009-03-18 16:43:01 +01:00
|
|
|
#include "cpptoolsconstants.h"
|
2013-08-25 22:42:37 +03:00
|
|
|
#include "cpptoolsplugin.h"
|
2013-03-27 18:54:03 +01:00
|
|
|
#include <ui_cppfilesettingspage.h>
|
2009-03-18 16:43:01 +01:00
|
|
|
|
2018-01-02 17:13:57 +01:00
|
|
|
#include <app/app_version.h>
|
|
|
|
|
|
2009-03-18 16:43:01 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2009-06-22 16:22:15 +02:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <cppeditor/cppeditorconstants.h>
|
|
|
|
|
|
2012-08-31 16:47:53 +02:00
|
|
|
#include <utils/environment.h>
|
2015-01-10 23:40:32 +02:00
|
|
|
#include <utils/fileutils.h>
|
2019-02-20 12:28:52 +01:00
|
|
|
#include <utils/hostosinfo.h>
|
2015-02-04 09:32:46 +01:00
|
|
|
#include <utils/mimetypes/mimedatabase.h>
|
2011-03-30 15:15:15 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QSettings>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QCoreApplication>
|
|
|
|
|
#include <QDate>
|
|
|
|
|
#include <QLocale>
|
|
|
|
|
#include <QTextCodec>
|
|
|
|
|
#include <QTextStream>
|
|
|
|
|
#include <QFileDialog>
|
2009-03-18 16:43:01 +01:00
|
|
|
|
2020-02-04 16:24:37 +01:00
|
|
|
namespace CppTools {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
const char headerPrefixesKeyC[] = "HeaderPrefixes";
|
|
|
|
|
const char sourcePrefixesKeyC[] = "SourcePrefixes";
|
|
|
|
|
const char headerSuffixKeyC[] = "HeaderSuffix";
|
|
|
|
|
const char sourceSuffixKeyC[] = "SourceSuffix";
|
|
|
|
|
const char headerSearchPathsKeyC[] = "HeaderSearchPaths";
|
|
|
|
|
const char sourceSearchPathsKeyC[] = "SourceSearchPaths";
|
|
|
|
|
const char headerPragmaOnceC[] = "HeaderPragmaOnce";
|
|
|
|
|
const char licenseTemplatePathKeyC[] = "LicenseTemplate";
|
2009-06-22 16:22:15 +02:00
|
|
|
|
|
|
|
|
const char *licenseTemplateTemplate = QT_TRANSLATE_NOOP("CppTools::Internal::CppFileSettingsWidget",
|
|
|
|
|
"/**************************************************************************\n"
|
2018-01-02 17:13:57 +01:00
|
|
|
"** %1 license header template\n"
|
2009-06-22 16:22:15 +02:00
|
|
|
"** 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
|
|
|
|
|
|
|
|
void CppFileSettings::toSettings(QSettings *s) const
|
|
|
|
|
{
|
|
|
|
|
s->beginGroup(QLatin1String(Constants::CPPTOOLS_SETTINGSGROUP));
|
2014-01-20 09:15:50 +02:00
|
|
|
s->setValue(QLatin1String(headerPrefixesKeyC), headerPrefixes);
|
|
|
|
|
s->setValue(QLatin1String(sourcePrefixesKeyC), sourcePrefixes);
|
2009-03-18 16:43:01 +01:00
|
|
|
s->setValue(QLatin1String(headerSuffixKeyC), headerSuffix);
|
|
|
|
|
s->setValue(QLatin1String(sourceSuffixKeyC), sourceSuffix);
|
2013-08-25 22:42:37 +03:00
|
|
|
s->setValue(QLatin1String(headerSearchPathsKeyC), headerSearchPaths);
|
|
|
|
|
s->setValue(QLatin1String(sourceSearchPathsKeyC), sourceSearchPaths);
|
2009-03-18 16:43:01 +01:00
|
|
|
s->setValue(QLatin1String(Constants::LOWERCASE_CPPFILES_KEY), lowerCaseFiles);
|
2019-01-03 10:56:36 +01:00
|
|
|
s->setValue(QLatin1String(headerPragmaOnceC), headerPragmaOnce);
|
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)
|
|
|
|
|
{
|
2017-02-08 14:06:01 +01:00
|
|
|
const QStringList defaultHeaderSearchPaths
|
2017-02-22 15:09:35 +01:00
|
|
|
= QStringList({"include", "Include", QDir::toNativeSeparators("../include"),
|
|
|
|
|
QDir::toNativeSeparators("../Include")});
|
2017-02-08 14:06:01 +01:00
|
|
|
const QStringList defaultSourceSearchPaths
|
2017-02-22 15:09:35 +01:00
|
|
|
= QStringList({QDir::toNativeSeparators("../src"), QDir::toNativeSeparators("../Src"),
|
|
|
|
|
".."});
|
2009-03-18 16:43:01 +01:00
|
|
|
s->beginGroup(QLatin1String(Constants::CPPTOOLS_SETTINGSGROUP));
|
2014-01-20 09:15:50 +02:00
|
|
|
headerPrefixes = s->value(QLatin1String(headerPrefixesKeyC)).toStringList();
|
|
|
|
|
sourcePrefixes = s->value(QLatin1String(sourcePrefixesKeyC)).toStringList();
|
|
|
|
|
headerSuffix = s->value(QLatin1String(headerSuffixKeyC), QLatin1String("h")).toString();
|
2009-03-18 16:43:01 +01:00
|
|
|
sourceSuffix = s->value(QLatin1String(sourceSuffixKeyC), QLatin1String("cpp")).toString();
|
2013-08-25 22:42:37 +03:00
|
|
|
headerSearchPaths = s->value(QLatin1String(headerSearchPathsKeyC), defaultHeaderSearchPaths)
|
|
|
|
|
.toStringList();
|
|
|
|
|
sourceSearchPaths = s->value(QLatin1String(sourceSearchPathsKeyC), defaultSourceSearchPaths)
|
|
|
|
|
.toStringList();
|
2009-03-18 17:05:48 +01:00
|
|
|
const bool lowerCaseDefault = Constants::lowerCaseFilesDefault;
|
|
|
|
|
lowerCaseFiles = s->value(QLatin1String(Constants::LOWERCASE_CPPFILES_KEY), QVariant(lowerCaseDefault)).toBool();
|
2019-01-03 10:56:36 +01:00
|
|
|
headerPragmaOnce = s->value(headerPragmaOnceC, headerPragmaOnce).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
|
|
|
{
|
2015-02-04 09:32:46 +01:00
|
|
|
Utils::MimeType mt;
|
2017-03-02 12:07:11 +01:00
|
|
|
mt = Utils::mimeTypeForName(QLatin1String(CppTools::Constants::CPP_SOURCE_MIMETYPE));
|
2015-02-04 09:32:46 +01:00
|
|
|
if (!mt.isValid())
|
|
|
|
|
return false;
|
|
|
|
|
mt.setPreferredSuffix(sourceSuffix);
|
2017-03-02 12:07:11 +01:00
|
|
|
mt = Utils::mimeTypeForName(QLatin1String(CppTools::Constants::CPP_HEADER_MIMETYPE));
|
2015-02-04 09:32:46 +01:00
|
|
|
if (!mt.isValid())
|
|
|
|
|
return false;
|
|
|
|
|
mt.setPreferredSuffix(headerSuffix);
|
|
|
|
|
return true;
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CppFileSettings::equals(const CppFileSettings &rhs) const
|
|
|
|
|
{
|
|
|
|
|
return lowerCaseFiles == rhs.lowerCaseFiles
|
2019-01-03 10:56:36 +01:00
|
|
|
&& headerPragmaOnce == rhs.headerPragmaOnce
|
2014-01-20 09:15:50 +02:00
|
|
|
&& headerPrefixes == rhs.headerPrefixes
|
|
|
|
|
&& sourcePrefixes == rhs.sourcePrefixes
|
2009-03-18 16:43:01 +01:00
|
|
|
&& headerSuffix == rhs.headerSuffix
|
2009-06-22 16:22:15 +02:00
|
|
|
&& sourceSuffix == rhs.sourceSuffix
|
2013-08-25 22:42:37 +03:00
|
|
|
&& headerSearchPaths == rhs.headerSearchPaths
|
|
|
|
|
&& sourceSearchPaths == rhs.sourceSearchPaths
|
2009-06-22 16:22:15 +02:00
|
|
|
&& licenseTemplatePath == rhs.licenseTemplatePath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Replacements of special license template keywords.
|
2010-08-09 12:23:21 +02:00
|
|
|
static bool keyWordReplacement(const QString &keyWord,
|
|
|
|
|
QString *value)
|
2009-06-22 16:22:15 +02:00
|
|
|
{
|
|
|
|
|
if (keyWord == QLatin1String("%YEAR%")) {
|
2015-09-14 10:56:10 +02:00
|
|
|
*value = QLatin1String("%{CurrentDate:yyyy}");
|
2010-08-09 12:23:21 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
2010-10-28 12:13:47 +02:00
|
|
|
if (keyWord == QLatin1String("%MONTH%")) {
|
2015-09-14 10:56:10 +02:00
|
|
|
*value = QLatin1String("%{CurrentDate:M}");
|
2010-10-28 12:13:47 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (keyWord == QLatin1String("%DAY%")) {
|
2015-09-14 10:56:10 +02:00
|
|
|
*value = QLatin1String("%{CurrentDate:d}");
|
2010-10-28 12:13:47 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
2010-08-09 12:23:21 +02:00
|
|
|
if (keyWord == QLatin1String("%CLASS%")) {
|
2015-09-14 10:56:10 +02:00
|
|
|
*value = QLatin1String("%{Cpp:License:ClassName}");
|
2010-08-09 12:23:21 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (keyWord == QLatin1String("%FILENAME%")) {
|
2015-09-14 10:56:10 +02:00
|
|
|
*value = QLatin1String("%{Cpp:License:FileName}");
|
2010-08-09 12:23:21 +02:00
|
|
|
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));
|
2019-06-17 17:51:55 +02:00
|
|
|
format.replace('/', "\\/");
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
2015-09-14 10:56:10 +02:00
|
|
|
*value = QString::fromLatin1("%{CurrentDate:") + format + QLatin1Char('}');
|
2010-08-09 12:23:21 +02:00
|
|
|
return true;
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
|
|
|
|
if (keyWord == QLatin1String("%USER%")) {
|
2019-02-20 12:28:52 +01:00
|
|
|
*value = Utils::HostOsInfo::isWindowsHost() ? QLatin1String("%{Env:USERNAME}")
|
|
|
|
|
: QLatin1String("%{Env:USER}");
|
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);
|
2015-09-14 10:56:10 +02:00
|
|
|
*value = QString::fromLatin1("%{Env:") + varName + QLatin1Char('}');
|
2010-08-09 12:23:21 +02:00
|
|
|
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 '%'.
|
2015-09-14 10:56:10 +02:00
|
|
|
static void parseLicenseTemplatePlaceholders(QString *t)
|
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;
|
2015-09-14 10:56:10 +02:00
|
|
|
if (keyWordReplacement(keyWord, &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());
|
2015-09-14 10:56:10 +02:00
|
|
|
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Convenience that returns the formatted license template.
|
2015-09-14 10:56:10 +02:00
|
|
|
QString CppFileSettings::licenseTemplate()
|
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
|
|
|
|
|
|
|
|
QTextStream licenseStream(&file);
|
2013-08-29 15:46:04 +02:00
|
|
|
licenseStream.setCodec(Core::EditorManager::defaultTextCodec());
|
2010-11-11 11:00:40 +01:00
|
|
|
licenseStream.setAutoDetectUnicode(true);
|
|
|
|
|
QString license = licenseStream.readAll();
|
|
|
|
|
|
2015-09-14 10:56:10 +02:00
|
|
|
parseLicenseTemplatePlaceholders(&license);
|
2015-09-09 16:23:26 +02:00
|
|
|
|
|
|
|
|
// Ensure at least one newline at the end of the license template to separate it from the code
|
2009-06-22 16:22:15 +02:00
|
|
|
const QChar newLine = QLatin1Char('\n');
|
|
|
|
|
if (!license.endsWith(newLine))
|
|
|
|
|
license += newLine;
|
2015-09-09 16:23:26 +02:00
|
|
|
|
2009-06-22 16:22:15 +02:00
|
|
|
return license;
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ------------------ CppFileSettingsWidget
|
|
|
|
|
|
2020-02-04 16:24:37 +01:00
|
|
|
class CppFileSettingsWidget final : public Core::IOptionsPageWidget
|
|
|
|
|
{
|
|
|
|
|
Q_DECLARE_TR_FUNCTIONS(CppTools::Internal::CppFileSettingsWidget)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit CppFileSettingsWidget(CppFileSettings *settings);
|
|
|
|
|
|
|
|
|
|
void apply() final;
|
|
|
|
|
|
|
|
|
|
void setSettings(const CppFileSettings &s);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void slotEdit();
|
|
|
|
|
QString licenseTemplatePath() const;
|
|
|
|
|
void setLicenseTemplatePath(const QString &);
|
|
|
|
|
|
|
|
|
|
Ui::CppFileSettingsPage m_ui;
|
|
|
|
|
CppFileSettings *m_settings = nullptr;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CppFileSettingsWidget::CppFileSettingsWidget(CppFileSettings *settings)
|
|
|
|
|
: m_settings(settings)
|
2009-03-18 16:43:01 +01:00
|
|
|
{
|
2020-02-04 16:24:37 +01:00
|
|
|
m_ui.setupUi(this);
|
2009-03-18 16:43:01 +01:00
|
|
|
// populate suffix combos
|
2017-03-02 12:07:11 +01:00
|
|
|
const Utils::MimeType sourceMt = Utils::mimeTypeForName(QLatin1String(CppTools::Constants::CPP_SOURCE_MIMETYPE));
|
2015-02-04 09:32:46 +01:00
|
|
|
if (sourceMt.isValid()) {
|
2009-03-18 16:43:01 +01:00
|
|
|
foreach (const QString &suffix, sourceMt.suffixes())
|
2020-02-04 16:24:37 +01:00
|
|
|
m_ui.sourceSuffixComboBox->addItem(suffix);
|
2015-02-04 09:32:46 +01:00
|
|
|
}
|
2009-03-18 16:43:01 +01:00
|
|
|
|
2017-03-02 12:07:11 +01:00
|
|
|
const Utils::MimeType headerMt = Utils::mimeTypeForName(QLatin1String(CppTools::Constants::CPP_HEADER_MIMETYPE));
|
2015-02-04 09:32:46 +01:00
|
|
|
if (headerMt.isValid()) {
|
2009-03-18 16:43:01 +01:00
|
|
|
foreach (const QString &suffix, headerMt.suffixes())
|
2020-02-04 16:24:37 +01:00
|
|
|
m_ui.headerSuffixComboBox->addItem(suffix);
|
2015-02-04 09:32:46 +01:00
|
|
|
}
|
2020-02-04 16:24:37 +01:00
|
|
|
m_ui.licenseTemplatePathChooser->setExpectedKind(Utils::PathChooser::File);
|
|
|
|
|
m_ui.licenseTemplatePathChooser->setHistoryCompleter(QLatin1String("Cpp.LicenseTemplate.History"));
|
|
|
|
|
m_ui.licenseTemplatePathChooser->addButton(tr("Edit..."), this, [this] { slotEdit(); });
|
2009-03-18 16:43:01 +01:00
|
|
|
|
2020-02-04 16:24:37 +01:00
|
|
|
setSettings(*m_settings);
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
2009-06-22 16:22:15 +02:00
|
|
|
QString CppFileSettingsWidget::licenseTemplatePath() const
|
|
|
|
|
{
|
2020-04-09 11:35:12 +02:00
|
|
|
return m_ui.licenseTemplatePathChooser->filePath().toString();
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppFileSettingsWidget::setLicenseTemplatePath(const QString &lp)
|
|
|
|
|
{
|
2020-02-04 16:24:37 +01:00
|
|
|
m_ui.licenseTemplatePathChooser->setPath(lp);
|
2009-06-22 16:22:15 +02:00
|
|
|
}
|
|
|
|
|
|
2013-08-25 22:42:37 +03:00
|
|
|
static QStringList trimmedPaths(const QString &paths)
|
|
|
|
|
{
|
|
|
|
|
QStringList res;
|
|
|
|
|
foreach (const QString &path, paths.split(QLatin1Char(','), QString::SkipEmptyParts))
|
|
|
|
|
res << path.trimmed();
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-04 16:24:37 +01:00
|
|
|
void CppFileSettingsWidget::apply()
|
2009-03-18 16:43:01 +01:00
|
|
|
{
|
|
|
|
|
CppFileSettings rc;
|
2020-02-04 16:24:37 +01:00
|
|
|
rc.lowerCaseFiles = m_ui.lowerCaseFileNamesCheckBox->isChecked();
|
|
|
|
|
rc.headerPragmaOnce = m_ui.headerPragmaOnceCheckBox->isChecked();
|
|
|
|
|
rc.headerPrefixes = trimmedPaths(m_ui.headerPrefixesEdit->text());
|
|
|
|
|
rc.sourcePrefixes = trimmedPaths(m_ui.sourcePrefixesEdit->text());
|
|
|
|
|
rc.headerSuffix = m_ui.headerSuffixComboBox->currentText();
|
|
|
|
|
rc.sourceSuffix = m_ui.sourceSuffixComboBox->currentText();
|
|
|
|
|
rc.headerSearchPaths = trimmedPaths(m_ui.headerSearchPathsEdit->text());
|
|
|
|
|
rc.sourceSearchPaths = trimmedPaths(m_ui.sourceSearchPathsEdit->text());
|
2020-05-22 08:57:31 +02:00
|
|
|
rc.licenseTemplatePath = licenseTemplatePath();
|
2020-02-04 16:24:37 +01:00
|
|
|
|
|
|
|
|
if (rc == *m_settings)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
*m_settings = rc;
|
|
|
|
|
m_settings->toSettings(Core::ICore::settings());
|
|
|
|
|
m_settings->applySuffixesToMimeDB();
|
|
|
|
|
CppToolsPlugin::clearHeaderSourceCache();
|
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)
|
|
|
|
|
{
|
2014-08-23 01:19:53 +02:00
|
|
|
const QChar comma = QLatin1Char(',');
|
2020-02-04 16:24:37 +01:00
|
|
|
m_ui.lowerCaseFileNamesCheckBox->setChecked(s.lowerCaseFiles);
|
|
|
|
|
m_ui.headerPragmaOnceCheckBox->setChecked(s.headerPragmaOnce);
|
|
|
|
|
m_ui.headerPrefixesEdit->setText(s.headerPrefixes.join(comma));
|
|
|
|
|
m_ui.sourcePrefixesEdit->setText(s.sourcePrefixes.join(comma));
|
|
|
|
|
setComboText(m_ui.headerSuffixComboBox, s.headerSuffix);
|
|
|
|
|
setComboText(m_ui.sourceSuffixComboBox, s.sourceSuffix);
|
|
|
|
|
m_ui.headerSearchPathsEdit->setText(s.headerSearchPaths.join(comma));
|
|
|
|
|
m_ui.sourceSearchPathsEdit->setText(s.sourceSearchPaths.join(comma));
|
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);
|
2018-01-02 17:13:57 +01:00
|
|
|
saver.write(tr(licenseTemplateTemplate).arg(Core::Constants::IDE_DISPLAY_NAME).toUtf8());
|
2011-03-30 15:15:15 +02:00
|
|
|
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++
|
2013-05-31 12:52:53 +02:00
|
|
|
Core::EditorManager::openEditor(path, CppEditor::Constants::CPPEDITOR_ID);
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------------- CppFileSettingsPage
|
2020-02-04 16:24:37 +01:00
|
|
|
|
|
|
|
|
CppFileSettingsPage::CppFileSettingsPage(CppFileSettings *settings)
|
2009-03-18 16:43:01 +01:00
|
|
|
{
|
2013-01-16 15:22:58 +01:00
|
|
|
setId(Constants::CPP_FILE_SETTINGS_ID);
|
2012-05-22 11:17:13 +02:00
|
|
|
setDisplayName(QCoreApplication::translate("CppTools", Constants::CPP_FILE_SETTINGS_NAME));
|
2012-12-29 03:37:27 +01:00
|
|
|
setCategory(Constants::CPP_SETTINGS_CATEGORY);
|
2020-02-04 16:24:37 +01:00
|
|
|
setWidgetCreator([settings] { return new CppFileSettingsWidget(settings); });
|
2009-11-20 16:55:23 +01:00
|
|
|
}
|
|
|
|
|
|
2010-04-13 17:31:42 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace CppTools
|