forked from qt-creator/qt-creator
Change-Id: Id54a11b6868d5033fd1ecfd6324b7e50b94e305c Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
623 lines
21 KiB
C++
623 lines
21 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
|
** Contact: http://www.qt-project.org/legal
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** 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
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, 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.
|
|
**
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "customtoolchain.h"
|
|
#include "abiwidget.h"
|
|
#include "gccparser.h"
|
|
#include "clangparser.h"
|
|
#include "linuxiccparser.h"
|
|
#include "msvcparser.h"
|
|
#include "customparser.h"
|
|
#include "customparserconfigdialog.h"
|
|
#include "projectexplorerconstants.h"
|
|
#include "toolchainmanager.h"
|
|
|
|
#include <utils/detailswidget.h>
|
|
#include <utils/environment.h>
|
|
#include <utils/pathchooser.h>
|
|
#include <utils/qtcassert.h>
|
|
|
|
#include <QFormLayout>
|
|
#include <QPlainTextEdit>
|
|
#include <QLineEdit>
|
|
#include <QHBoxLayout>
|
|
#include <QComboBox>
|
|
#include <QPushButton>
|
|
|
|
using namespace Utils;
|
|
|
|
namespace ProjectExplorer {
|
|
|
|
// --------------------------------------------------------------------------
|
|
// Helpers:
|
|
// --------------------------------------------------------------------------
|
|
|
|
static const char compilerCommandKeyC[] = "ProjectExplorer.CustomToolChain.CompilerPath";
|
|
static const char makeCommandKeyC[] = "ProjectExplorer.CustomToolChain.MakePath";
|
|
static const char targetAbiKeyC[] = "ProjectExplorer.CustomToolChain.TargetAbi";
|
|
static const char predefinedMacrosKeyC[] = "ProjectExplorer.CustomToolChain.PredefinedMacros";
|
|
static const char headerPathsKeyC[] = "ProjectExplorer.CustomToolChain.HeaderPaths";
|
|
static const char cxx11FlagsKeyC[] = "ProjectExplorer.CustomToolChain.Cxx11Flags";
|
|
static const char mkspecsKeyC[] = "ProjectExplorer.CustomToolChain.Mkspecs";
|
|
static const char outputParserKeyC[] = "ProjectExplorer.CustomToolChain.OutputParser";
|
|
static const char errorPatternKeyC[] = "ProjectExplorer.CustomToolChain.ErrorPattern";
|
|
static const char lineNumberCapKeyC[] = "ProjectExplorer.CustomToolChain.LineNumberCap";
|
|
static const char fileNameCapKeyC[] = "ProjectExplorer.CustomToolChain.FileNameCap";
|
|
static const char messageCapKeyC[] = "ProjectExplorer.CustomToolChain.MessageCap";
|
|
|
|
// --------------------------------------------------------------------------
|
|
// CustomToolChain
|
|
// --------------------------------------------------------------------------
|
|
|
|
CustomToolChain::CustomToolChain(Detection d) :
|
|
ToolChain(QLatin1String(Constants::CUSTOM_TOOLCHAIN_ID), d),
|
|
m_outputParser(Gcc)
|
|
{ }
|
|
|
|
CustomToolChain::CustomToolChain(const QString &id, Detection d) :
|
|
ToolChain(id, d)
|
|
{ }
|
|
|
|
CustomToolChain::CustomToolChain(const CustomToolChain &tc) :
|
|
ToolChain(tc),
|
|
m_compilerCommand(tc.m_compilerCommand),
|
|
m_makeCommand(tc.m_makeCommand),
|
|
m_targetAbi(tc.m_targetAbi),
|
|
m_predefinedMacros(tc.m_predefinedMacros),
|
|
m_systemHeaderPaths(tc.m_systemHeaderPaths)
|
|
{ }
|
|
|
|
QString CustomToolChain::type() const
|
|
{
|
|
return QLatin1String("custom");
|
|
}
|
|
|
|
QString CustomToolChain::typeDisplayName() const
|
|
{
|
|
return Internal::CustomToolChainFactory::tr("Custom");
|
|
}
|
|
|
|
Abi CustomToolChain::targetAbi() const
|
|
{
|
|
return m_targetAbi;
|
|
}
|
|
|
|
void CustomToolChain::setTargetAbi(const Abi &abi)
|
|
{
|
|
if (abi == m_targetAbi)
|
|
return;
|
|
|
|
m_targetAbi = abi;
|
|
toolChainUpdated();
|
|
}
|
|
|
|
bool CustomToolChain::isValid() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
QByteArray CustomToolChain::predefinedMacros(const QStringList &cxxflags) const
|
|
{
|
|
QByteArray result;
|
|
QStringList macros = m_predefinedMacros;
|
|
foreach (const QString &cxxFlag, cxxflags) {
|
|
if (cxxFlag.startsWith(QLatin1String("-D"))) {
|
|
macros << cxxFlag.mid(2).trimmed();
|
|
} else if (cxxFlag.startsWith(QLatin1String("-U"))) {
|
|
const QString &removedName = cxxFlag.mid(2).trimmed();
|
|
for (int i = macros.size() - 1; i >= 0; --i) {
|
|
const QString &m = macros.at(i);
|
|
if (m.left(m.indexOf(QLatin1Char('='))) == removedName)
|
|
macros.removeAt(i);
|
|
}
|
|
}
|
|
}
|
|
foreach (const QString &str, macros) {
|
|
QByteArray ba = str.toUtf8();
|
|
int equals = ba.indexOf('=');
|
|
if (equals == -1) {
|
|
result += "#define " + ba.trimmed() + '\n';
|
|
} else {
|
|
result += "#define " + ba.left(equals).trimmed() + ' '
|
|
+ ba.mid(equals + 1).trimmed() + '\n';
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
ToolChain::CompilerFlags CustomToolChain::compilerFlags(const QStringList &cxxflags) const
|
|
{
|
|
foreach (const QString &cxx11Flag, m_cxx11Flags)
|
|
if (cxxflags.contains(cxx11Flag))
|
|
return StandardCxx11;
|
|
return NoFlags;
|
|
}
|
|
|
|
ToolChain::WarningFlags CustomToolChain::warningFlags(const QStringList &cxxflags) const
|
|
{
|
|
Q_UNUSED(cxxflags);
|
|
return WarningFlags(WarningsDefault);
|
|
}
|
|
|
|
const QStringList &CustomToolChain::rawPredefinedMacros() const
|
|
{
|
|
return m_predefinedMacros;
|
|
}
|
|
|
|
void CustomToolChain::setPredefinedMacros(const QStringList &list)
|
|
{
|
|
m_predefinedMacros = list;
|
|
}
|
|
|
|
QList<HeaderPath> CustomToolChain::systemHeaderPaths(const QStringList &cxxFlags, const Utils::FileName &) const
|
|
{
|
|
QList<HeaderPath> flagHeaderPaths;
|
|
foreach (const QString &cxxFlag, cxxFlags) {
|
|
if (cxxFlag.startsWith(QLatin1String("-I")))
|
|
flagHeaderPaths << HeaderPath(cxxFlag.mid(2).trimmed(), HeaderPath::GlobalHeaderPath);
|
|
}
|
|
|
|
return m_systemHeaderPaths + flagHeaderPaths;
|
|
}
|
|
|
|
void CustomToolChain::addToEnvironment(Environment &env) const
|
|
{
|
|
if (!m_compilerCommand.isEmpty()) {
|
|
FileName path = m_compilerCommand.parentDir();
|
|
env.prependOrSetPath(path.toString());
|
|
FileName makePath = m_makeCommand.parentDir();
|
|
if (makePath != path)
|
|
env.prependOrSetPath(makePath.toString());
|
|
}
|
|
}
|
|
|
|
QList<FileName> CustomToolChain::suggestedMkspecList() const
|
|
{
|
|
return m_mkspecs;
|
|
}
|
|
|
|
IOutputParser *CustomToolChain::outputParser() const
|
|
{
|
|
switch (m_outputParser) {
|
|
case Gcc: return new GccParser;
|
|
case Clang: return new ClangParser;
|
|
case LinuxIcc: return new LinuxIccParser;
|
|
#if defined(Q_OS_WIN)
|
|
case Msvc: return new MsvcParser;
|
|
#endif
|
|
case Custom: return new CustomParser(m_customParserSettings);
|
|
default: return 0;
|
|
}
|
|
}
|
|
|
|
QStringList CustomToolChain::headerPathsList() const
|
|
{
|
|
QStringList list;
|
|
foreach (const HeaderPath &headerPath, m_systemHeaderPaths)
|
|
list << headerPath.path();
|
|
return list;
|
|
}
|
|
|
|
void CustomToolChain::setHeaderPaths(const QStringList &list)
|
|
{
|
|
m_systemHeaderPaths.clear();
|
|
foreach (const QString &headerPath, list)
|
|
m_systemHeaderPaths << HeaderPath(headerPath.trimmed(), HeaderPath::GlobalHeaderPath);
|
|
}
|
|
|
|
void CustomToolChain::setCompilerCommand(const FileName &path)
|
|
{
|
|
if (path == m_compilerCommand)
|
|
return;
|
|
m_compilerCommand = path;
|
|
toolChainUpdated();
|
|
}
|
|
|
|
FileName CustomToolChain::compilerCommand() const
|
|
{
|
|
return m_compilerCommand;
|
|
}
|
|
|
|
void CustomToolChain::setMakeCommand(const FileName &path)
|
|
{
|
|
if (path == m_makeCommand)
|
|
return;
|
|
m_makeCommand = path;
|
|
toolChainUpdated();
|
|
}
|
|
|
|
QString CustomToolChain::makeCommand(const Utils::Environment &) const
|
|
{
|
|
return m_makeCommand.toString();
|
|
}
|
|
|
|
void CustomToolChain::setCxx11Flags(const QStringList &flags)
|
|
{
|
|
if (flags == m_cxx11Flags)
|
|
return;
|
|
m_cxx11Flags = flags;
|
|
toolChainUpdated();
|
|
}
|
|
|
|
const QStringList &CustomToolChain::cxx11Flags() const
|
|
{
|
|
return m_cxx11Flags;
|
|
}
|
|
|
|
void CustomToolChain::setMkspecs(const QString &specs)
|
|
{
|
|
m_mkspecs.clear();
|
|
foreach (const QString &spec, specs.split(QLatin1Char(',')))
|
|
m_mkspecs << FileName::fromString(spec);
|
|
}
|
|
|
|
QString CustomToolChain::mkspecs() const
|
|
{
|
|
QString list;
|
|
foreach (const FileName &spec, m_mkspecs)
|
|
list.append(spec.toString() + QLatin1Char(','));
|
|
list.chop(1);
|
|
return list;
|
|
}
|
|
|
|
ToolChain *CustomToolChain::clone() const
|
|
{
|
|
return new CustomToolChain(*this);
|
|
}
|
|
|
|
QVariantMap CustomToolChain::toMap() const
|
|
{
|
|
QVariantMap data = ToolChain::toMap();
|
|
data.insert(QLatin1String(compilerCommandKeyC), m_compilerCommand.toString());
|
|
data.insert(QLatin1String(makeCommandKeyC), m_makeCommand.toString());
|
|
data.insert(QLatin1String(targetAbiKeyC), m_targetAbi.toString());
|
|
data.insert(QLatin1String(predefinedMacrosKeyC), m_predefinedMacros);
|
|
data.insert(QLatin1String(headerPathsKeyC), headerPathsList());
|
|
data.insert(QLatin1String(cxx11FlagsKeyC), m_cxx11Flags);
|
|
data.insert(QLatin1String(mkspecsKeyC), mkspecs());
|
|
data.insert(QLatin1String(outputParserKeyC), m_outputParser);
|
|
data.insert(QLatin1String(errorPatternKeyC), m_customParserSettings.errorPattern);
|
|
data.insert(QLatin1String(fileNameCapKeyC), m_customParserSettings.fileNameCap);
|
|
data.insert(QLatin1String(lineNumberCapKeyC), m_customParserSettings.lineNumberCap);
|
|
data.insert(QLatin1String(messageCapKeyC), m_customParserSettings.messageCap);
|
|
|
|
return data;
|
|
}
|
|
|
|
bool CustomToolChain::fromMap(const QVariantMap &data)
|
|
{
|
|
if (!ToolChain::fromMap(data))
|
|
return false;
|
|
|
|
m_compilerCommand = FileName::fromString(data.value(QLatin1String(compilerCommandKeyC)).toString());
|
|
m_makeCommand = FileName::fromString(data.value(QLatin1String(makeCommandKeyC)).toString());
|
|
m_targetAbi = Abi(data.value(QLatin1String(targetAbiKeyC)).toString());
|
|
m_predefinedMacros = data.value(QLatin1String(predefinedMacrosKeyC)).toStringList();
|
|
setHeaderPaths(data.value(QLatin1String(headerPathsKeyC)).toStringList());
|
|
m_cxx11Flags = data.value(QLatin1String(cxx11FlagsKeyC)).toStringList();
|
|
setMkspecs(data.value(QLatin1String(mkspecsKeyC)).toString());
|
|
m_outputParser = (OutputParser)data.value(QLatin1String(outputParserKeyC)).toInt();
|
|
m_customParserSettings.errorPattern = data.value(QLatin1String(errorPatternKeyC)).toString();
|
|
m_customParserSettings.fileNameCap = data.value(QLatin1String(fileNameCapKeyC)).toInt();
|
|
m_customParserSettings.lineNumberCap = data.value(QLatin1String(lineNumberCapKeyC)).toInt();
|
|
m_customParserSettings.messageCap = data.value(QLatin1String(messageCapKeyC)).toInt();
|
|
QTC_ASSERT(m_outputParser >= Gcc && m_outputParser < OutputParserCount, return false);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool CustomToolChain::operator ==(const ToolChain &other) const
|
|
{
|
|
if (!ToolChain::operator ==(other))
|
|
return false;
|
|
|
|
const CustomToolChain *customTc = static_cast<const CustomToolChain *>(&other);
|
|
return m_compilerCommand == customTc->m_compilerCommand
|
|
&& m_makeCommand == customTc->m_makeCommand
|
|
&& m_targetAbi == customTc->m_targetAbi
|
|
&& m_predefinedMacros == customTc->m_predefinedMacros
|
|
&& m_systemHeaderPaths == customTc->m_systemHeaderPaths;
|
|
}
|
|
|
|
CustomToolChain::OutputParser CustomToolChain::outputParserType() const
|
|
{
|
|
return m_outputParser;
|
|
}
|
|
|
|
void CustomToolChain::setOutputParserType(CustomToolChain::OutputParser parser)
|
|
{
|
|
m_outputParser = parser;
|
|
}
|
|
|
|
CustomParserSettings CustomToolChain::customParserSettings() const
|
|
{
|
|
return m_customParserSettings;
|
|
}
|
|
|
|
void CustomToolChain::setCustomParserSettings(const CustomParserSettings &settings)
|
|
{
|
|
m_customParserSettings = settings;
|
|
}
|
|
|
|
QString CustomToolChain::parserName(CustomToolChain::OutputParser parser)
|
|
{
|
|
switch (parser) {
|
|
case Gcc: return tr("GCC");
|
|
case Clang: return tr("Clang");
|
|
case LinuxIcc: return tr("ICC");
|
|
#if defined(Q_OS_WIN)
|
|
case Msvc: return tr("MSVC");
|
|
#endif
|
|
case Custom: return tr("Custom");
|
|
default: return QString();
|
|
}
|
|
}
|
|
|
|
ToolChainConfigWidget *CustomToolChain::configurationWidget()
|
|
{
|
|
return new Internal::CustomToolChainConfigWidget(this);
|
|
}
|
|
|
|
namespace Internal {
|
|
|
|
// --------------------------------------------------------------------------
|
|
// CustomToolChainFactory
|
|
// --------------------------------------------------------------------------
|
|
|
|
CustomToolChainFactory::CustomToolChainFactory()
|
|
{
|
|
setId(Constants::CUSTOM_TOOLCHAIN_ID);
|
|
setDisplayName(tr("Custom"));
|
|
}
|
|
|
|
bool CustomToolChainFactory::canCreate()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
ToolChain *CustomToolChainFactory::create()
|
|
{
|
|
return createToolChain(false);
|
|
}
|
|
|
|
// Used by the ToolChainManager to restore user-generated tool chains
|
|
bool CustomToolChainFactory::canRestore(const QVariantMap &data)
|
|
{
|
|
const QString id = idFromMap(data);
|
|
return id.startsWith(QLatin1String(Constants::CUSTOM_TOOLCHAIN_ID) + QLatin1Char(':'));
|
|
}
|
|
|
|
ToolChain *CustomToolChainFactory::restore(const QVariantMap &data)
|
|
{
|
|
CustomToolChain *tc = new CustomToolChain(ToolChain::ManualDetection);
|
|
if (tc->fromMap(data))
|
|
return tc;
|
|
|
|
delete tc;
|
|
return 0;
|
|
}
|
|
|
|
CustomToolChain *CustomToolChainFactory::createToolChain(bool autoDetect)
|
|
{
|
|
return new CustomToolChain(autoDetect ? ToolChain::AutoDetection : ToolChain::ManualDetection);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
// Helper for ConfigWidget
|
|
// --------------------------------------------------------------------------
|
|
|
|
class TextEditDetailsWidget : public DetailsWidget
|
|
{
|
|
Q_DECLARE_TR_FUNCTIONS(ProjectExplorer::Internal::TextEditDetailsWidget)
|
|
public:
|
|
TextEditDetailsWidget(QPlainTextEdit *textEdit)
|
|
{
|
|
setWidget(textEdit);
|
|
}
|
|
|
|
inline QPlainTextEdit *textEditWidget() const
|
|
{
|
|
return static_cast<QPlainTextEdit *>(widget());
|
|
}
|
|
|
|
inline QStringList entries() const
|
|
{
|
|
return textEditWidget()->toPlainText().split(QLatin1Char('\n'), QString::SkipEmptyParts);
|
|
}
|
|
|
|
// not accurate, counts empty lines (except last)
|
|
int entryCount() const
|
|
{
|
|
int count = textEditWidget()->blockCount();
|
|
QString text = textEditWidget()->toPlainText();
|
|
if (text.isEmpty() || text.endsWith(QLatin1Char('\n')))
|
|
--count;
|
|
return count;
|
|
}
|
|
|
|
void updateSummaryText()
|
|
{
|
|
int count = entryCount();
|
|
setSummaryText(count ? tr("%n entries", "", count) : tr("Empty"));
|
|
}
|
|
};
|
|
|
|
// --------------------------------------------------------------------------
|
|
// CustomToolChainConfigWidget
|
|
// --------------------------------------------------------------------------
|
|
|
|
CustomToolChainConfigWidget::CustomToolChainConfigWidget(CustomToolChain *tc) :
|
|
ToolChainConfigWidget(tc),
|
|
m_compilerCommand(new PathChooser),
|
|
m_makeCommand(new PathChooser),
|
|
m_abiWidget(new AbiWidget),
|
|
m_predefinedMacros(new QPlainTextEdit),
|
|
m_headerPaths(new QPlainTextEdit),
|
|
m_predefinedDetails(new TextEditDetailsWidget(m_predefinedMacros)),
|
|
m_headerDetails(new TextEditDetailsWidget(m_headerPaths)),
|
|
m_cxx11Flags(new QLineEdit),
|
|
m_mkspecs(new QLineEdit),
|
|
m_errorParserComboBox(new QComboBox),
|
|
m_customParserSettingsButton(new QPushButton(tr("Custom Parser Settings...")))
|
|
{
|
|
Q_ASSERT(tc);
|
|
|
|
for (int i = 0; i < CustomToolChain::OutputParserCount; ++i)
|
|
m_errorParserComboBox->addItem(CustomToolChain::parserName((CustomToolChain::OutputParser)i));
|
|
|
|
QWidget *parserLayoutWidget = new QWidget;
|
|
QHBoxLayout *parserLayout = new QHBoxLayout(parserLayoutWidget);
|
|
parserLayout->setContentsMargins(0, 0, 0, 0);
|
|
m_predefinedMacros->setTabChangesFocus(true);
|
|
m_predefinedMacros->setToolTip(tr("Each line defines a macro. Format is MACRO[=VALUE]."));
|
|
m_headerPaths->setTabChangesFocus(true);
|
|
m_headerPaths->setToolTip(tr("Each line adds a global header lookup path."));
|
|
m_cxx11Flags->setToolTip(tr("Comma-separated list of flags that turn on C++11 support."));
|
|
m_mkspecs->setToolTip(tr("Comma-separated list of mkspecs."));
|
|
m_compilerCommand->setExpectedKind(PathChooser::ExistingCommand);
|
|
m_compilerCommand->setHistoryCompleter(QLatin1String("PE.ToolChainCommand.History"));
|
|
m_makeCommand->setExpectedKind(PathChooser::ExistingCommand);
|
|
m_makeCommand->setHistoryCompleter(QLatin1String("PE.MakeCommand.History"));
|
|
m_mainLayout->addRow(tr("&Compiler path:"), m_compilerCommand);
|
|
m_mainLayout->addRow(tr("&Make path:"), m_makeCommand);
|
|
m_mainLayout->addRow(tr("&ABI:"), m_abiWidget);
|
|
m_mainLayout->addRow(tr("&Predefined macros:"), m_predefinedDetails);
|
|
m_mainLayout->addRow(tr("&Header paths:"), m_headerDetails);
|
|
m_mainLayout->addRow(tr("C++11 &flags:"), m_cxx11Flags);
|
|
m_mainLayout->addRow(tr("&Qt mkspecs:"), m_mkspecs);
|
|
parserLayout->addWidget(m_errorParserComboBox);
|
|
parserLayout->addWidget(m_customParserSettingsButton);
|
|
m_mainLayout->addRow(tr("&Error parser:"), parserLayoutWidget);
|
|
addErrorLabel();
|
|
|
|
setFromToolchain();
|
|
m_predefinedDetails->updateSummaryText();
|
|
m_headerDetails->updateSummaryText();
|
|
|
|
connect(m_compilerCommand, SIGNAL(changed(QString)), this, SIGNAL(dirty()));
|
|
connect(m_makeCommand, SIGNAL(changed(QString)), this, SIGNAL(dirty()));
|
|
connect(m_abiWidget, SIGNAL(abiChanged()), this, SIGNAL(dirty()));
|
|
connect(m_predefinedMacros, SIGNAL(textChanged()), this, SLOT(updateSummaries()));
|
|
connect(m_headerPaths, SIGNAL(textChanged()), this, SLOT(updateSummaries()));
|
|
connect(m_cxx11Flags, SIGNAL(textChanged(QString)), this, SIGNAL(dirty()));
|
|
connect(m_mkspecs, SIGNAL(textChanged(QString)), this, SIGNAL(dirty()));
|
|
connect(m_errorParserComboBox, SIGNAL(currentIndexChanged(int)),
|
|
this, SLOT(errorParserChanged(int)));
|
|
connect(m_customParserSettingsButton, SIGNAL(clicked()),
|
|
this, SLOT(openCustomParserSettingsDialog()));
|
|
errorParserChanged(m_errorParserComboBox->currentIndex());
|
|
}
|
|
|
|
void CustomToolChainConfigWidget::updateSummaries()
|
|
{
|
|
if (sender() == m_predefinedMacros)
|
|
m_predefinedDetails->updateSummaryText();
|
|
else
|
|
m_headerDetails->updateSummaryText();
|
|
emit dirty();
|
|
}
|
|
|
|
void CustomToolChainConfigWidget::errorParserChanged(int index)
|
|
{
|
|
m_customParserSettingsButton->setEnabled(index == m_errorParserComboBox->count() - 1);
|
|
emit dirty();
|
|
}
|
|
|
|
void CustomToolChainConfigWidget::openCustomParserSettingsDialog()
|
|
{
|
|
CustomParserConfigDialog dialog;
|
|
dialog.setSettings(m_customParserSettings);
|
|
|
|
if (dialog.exec() == QDialog::Accepted) {
|
|
m_customParserSettings = dialog.settings();
|
|
if (dialog.isDirty())
|
|
emit dirty();
|
|
}
|
|
}
|
|
|
|
void CustomToolChainConfigWidget::applyImpl()
|
|
{
|
|
if (toolChain()->isAutoDetected())
|
|
return;
|
|
|
|
CustomToolChain *tc = static_cast<CustomToolChain *>(toolChain());
|
|
Q_ASSERT(tc);
|
|
QString displayName = tc->displayName();
|
|
tc->setCompilerCommand(m_compilerCommand->fileName());
|
|
tc->setMakeCommand(m_makeCommand->fileName());
|
|
tc->setTargetAbi(m_abiWidget->currentAbi());
|
|
tc->setPredefinedMacros(m_predefinedDetails->entries());
|
|
tc->setHeaderPaths(m_headerDetails->entries());
|
|
tc->setCxx11Flags(m_cxx11Flags->text().split(QLatin1Char(',')));
|
|
tc->setMkspecs(m_mkspecs->text());
|
|
tc->setDisplayName(displayName); // reset display name
|
|
tc->setOutputParserType((CustomToolChain::OutputParser)m_errorParserComboBox->currentIndex());
|
|
tc->setCustomParserSettings(m_customParserSettings);
|
|
}
|
|
|
|
void CustomToolChainConfigWidget::setFromToolchain()
|
|
{
|
|
// subwidgets are not yet connected!
|
|
bool blocked = blockSignals(true);
|
|
CustomToolChain *tc = static_cast<CustomToolChain *>(toolChain());
|
|
m_compilerCommand->setFileName(tc->compilerCommand());
|
|
m_makeCommand->setFileName(FileName::fromString(tc->makeCommand(Utils::Environment())));
|
|
m_abiWidget->setAbis(QList<Abi>(), tc->targetAbi());
|
|
m_predefinedMacros->setPlainText(tc->rawPredefinedMacros().join(QLatin1String("\n")));
|
|
m_headerPaths->setPlainText(tc->headerPathsList().join(QLatin1String("\n")));
|
|
m_cxx11Flags->setText(tc->cxx11Flags().join(QLatin1String(",")));
|
|
m_mkspecs->setText(tc->mkspecs());
|
|
m_errorParserComboBox->setCurrentIndex(tc->outputParserType());
|
|
m_customParserSettings = tc->customParserSettings();
|
|
blockSignals(blocked);
|
|
}
|
|
|
|
bool CustomToolChainConfigWidget::isDirtyImpl() const
|
|
{
|
|
CustomToolChain *tc = static_cast<CustomToolChain *>(toolChain());
|
|
Q_ASSERT(tc);
|
|
return m_compilerCommand->fileName() != tc->compilerCommand()
|
|
|| m_makeCommand->path() != tc->makeCommand(Utils::Environment())
|
|
|| m_abiWidget->currentAbi() != tc->targetAbi()
|
|
|| m_predefinedDetails->entries() != tc->rawPredefinedMacros()
|
|
|| m_headerDetails->entries() != tc->headerPathsList()
|
|
|| m_cxx11Flags->text().split(QLatin1Char(',')) != tc->cxx11Flags()
|
|
|| m_mkspecs->text() != tc->mkspecs()
|
|
|| m_errorParserComboBox->currentIndex() == tc->outputParserType()
|
|
|| m_customParserSettings != tc->customParserSettings();
|
|
}
|
|
|
|
void CustomToolChainConfigWidget::makeReadOnlyImpl()
|
|
{
|
|
m_mainLayout->setEnabled(false);
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace ProjectExplorer
|