2014-09-25 11:11:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2015-01-15 10:32:57 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd
|
2014-09-25 11:11:58 +02:00
|
|
|
** All rights reserved.
|
2015-01-15 10:32:57 +01:00
|
|
|
** For any questions to The Qt Company, please use contact form at http://www.qt.io/contact-us
|
2014-09-25 11:11:58 +02:00
|
|
|
**
|
2015-06-25 17:29:41 +02:00
|
|
|
** This file is part of the Qt Enterprise ClangStaticAnalyzer Add-on.
|
2014-09-25 11:11:58 +02:00
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Enterprise licenses may use this file in
|
|
|
|
|
** accordance with the Qt Enterprise License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-15 10:32:57 +01:00
|
|
|
** a written agreement between you and The Qt Company.
|
2014-09-25 11:11:58 +02:00
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please use
|
2015-01-15 10:32:57 +01:00
|
|
|
** contact form at http://www.qt.io/contact-us
|
2014-09-25 11:11:58 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "clangstaticanalyzerconfigwidget.h"
|
|
|
|
|
#include "ui_clangstaticanalyzerconfigwidget.h"
|
|
|
|
|
|
2015-03-03 11:08:26 +01:00
|
|
|
#include "clangstaticanalyzerutils.h"
|
|
|
|
|
|
2014-09-25 11:11:58 +02:00
|
|
|
#include <QThread>
|
|
|
|
|
|
|
|
|
|
namespace ClangStaticAnalyzer {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
ClangStaticAnalyzerConfigWidget::ClangStaticAnalyzerConfigWidget(
|
|
|
|
|
ClangStaticAnalyzerSettings *settings,
|
|
|
|
|
QWidget *parent)
|
|
|
|
|
: QWidget(parent)
|
|
|
|
|
, m_ui(new Ui::ClangStaticAnalyzerConfigWidget)
|
|
|
|
|
, m_settings(settings)
|
|
|
|
|
{
|
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
|
2015-03-03 11:08:26 +01:00
|
|
|
Utils::PathChooser * const chooser = m_ui->clangExecutableChooser;
|
|
|
|
|
chooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
|
|
|
|
chooser->setHistoryCompleter(QLatin1String("ClangStaticAnalyzer.ClangCommand.History"));
|
|
|
|
|
chooser->setPromptDialogTitle(tr("Clang Command"));
|
2015-04-28 14:50:47 +02:00
|
|
|
const auto validator = [chooser](Utils::FancyLineEdit *edit, QString *errorMessage) {
|
2015-07-09 17:19:21 +02:00
|
|
|
const QString currentFilePath = chooser->fileName().toString();
|
|
|
|
|
Utils::PathChooser pc;
|
|
|
|
|
Utils::PathChooser *helperPathChooser;
|
|
|
|
|
if (currentFilePath.isEmpty()) {
|
|
|
|
|
pc.setExpectedKind(chooser->expectedKind());
|
|
|
|
|
pc.setPath(edit->placeholderText());
|
|
|
|
|
helperPathChooser = &pc;
|
|
|
|
|
} else {
|
|
|
|
|
helperPathChooser = chooser;
|
|
|
|
|
}
|
|
|
|
|
return chooser->defaultValidationFunction()(helperPathChooser->lineEdit(), errorMessage)
|
|
|
|
|
&& isClangExecutableUsable(helperPathChooser->fileName().toString(), errorMessage);
|
2015-03-03 11:08:26 +01:00
|
|
|
};
|
2015-04-28 14:50:47 +02:00
|
|
|
chooser->setValidationFunction(validator);
|
2015-07-09 17:19:21 +02:00
|
|
|
bool clangExeIsSet;
|
|
|
|
|
const QString clangExe = settings->clangExecutable(&clangExeIsSet);
|
|
|
|
|
chooser->lineEdit()->setPlaceholderText(settings->defaultClangExecutable());
|
|
|
|
|
if (clangExeIsSet) {
|
|
|
|
|
chooser->setPath(clangExe);
|
|
|
|
|
} else {
|
|
|
|
|
// Setting an empty string does not trigger the validator, as that is the initial value
|
|
|
|
|
// in the line edit.
|
|
|
|
|
chooser->setPath(QLatin1String(" "));
|
|
|
|
|
chooser->lineEdit()->clear();
|
|
|
|
|
}
|
2015-08-20 14:34:10 +02:00
|
|
|
connect(m_ui->clangExecutableChooser, &Utils::PathChooser::rawPathChanged,
|
2015-04-10 10:17:44 +02:00
|
|
|
[settings](const QString &path) { settings->setClangExecutable(path); });
|
2014-09-25 11:11:58 +02:00
|
|
|
|
|
|
|
|
m_ui->simultaneousProccessesSpinBox->setValue(settings->simultaneousProcesses());
|
|
|
|
|
m_ui->simultaneousProccessesSpinBox->setMinimum(1);
|
|
|
|
|
m_ui->simultaneousProccessesSpinBox->setMaximum(QThread::idealThreadCount());
|
|
|
|
|
connect(m_ui->simultaneousProccessesSpinBox,
|
|
|
|
|
static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged),
|
2015-04-10 10:17:44 +02:00
|
|
|
[settings](int count) { settings->setSimultaneousProcesses(count); });
|
2014-09-25 11:11:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ClangStaticAnalyzerConfigWidget::~ClangStaticAnalyzerConfigWidget()
|
|
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClangStaticAnalyzer
|