1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
/*
SPDX-FileCopyrightText: 2010 Andreas Pakulat <apaku@gmx.de>
SPDX-FileCopyrightText: 2014 Sergey Kalinichev <kalinichev.so.0@gmail.com>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-or-later
*/
#include "projectpathswidget.h"
#include <QFileDialog>
#include <QPointer>
#include <QRegExp>
#include <interfaces/iproject.h>
#include "../compilerprovider/compilerprovider.h"
#include "../compilerprovider/settingsmanager.h"
#include "ui_projectpathswidget.h"
#include "ui_batchedit.h"
#include "projectpathsmodel.h"
#include <debug.h>
#include <KMessageBox>
#include <KLocalizedString>
using namespace KDevelop;
namespace
{
enum PageType {
IncludesPage,
DefinesPage,
ParserArgumentsPage
};
}
ProjectPathsWidget::ProjectPathsWidget( QWidget* parent )
: QWidget(parent),
ui(new Ui::ProjectPathsWidget),
pathsModel(new ProjectPathsModel(this))
{
ui->setupUi( this );
// hack taken from kurlrequester, make the buttons a bit less in height so they better match the url-requester
ui->addPath->setFixedHeight( ui->projectPaths->sizeHint().height() );
ui->removePath->setFixedHeight( ui->projectPaths->sizeHint().height() );
connect( ui->addPath, &QPushButton::clicked, this, &ProjectPathsWidget::addProjectPath );
connect( ui->removePath, &QPushButton::clicked, this, &ProjectPathsWidget::deleteProjectPath );
connect( ui->batchEdit, &QPushButton::clicked, this, &ProjectPathsWidget::batchEdit );
ui->projectPaths->setModel( pathsModel );
connect( ui->projectPaths, QOverload<int>::of(&KComboBox::currentIndexChanged), this, &ProjectPathsWidget::projectPathSelected );
connect( pathsModel, &ProjectPathsModel::dataChanged, this, &ProjectPathsWidget::changed );
connect( pathsModel, &ProjectPathsModel::rowsInserted, this, &ProjectPathsWidget::changed );
connect(pathsModel, &ProjectPathsModel::rowsRemoved, this, &ProjectPathsWidget::changed);
connect(ui->compiler, &QComboBox::textActivated, this, &ProjectPathsWidget::changed);
connect(ui->compiler, &QComboBox::textActivated, this, &ProjectPathsWidget::changeCompilerForPath);
connect( ui->includesWidget, QOverload<const QStringList&>::of(&IncludesWidget::includesChanged), this, &ProjectPathsWidget::includesChanged );
connect( ui->definesWidget, QOverload<const KDevelop::Defines&>::of(&DefinesWidget::definesChanged), this, &ProjectPathsWidget::definesChanged );
connect(ui->languageParameters, &QTabWidget::currentChanged, this, &ProjectPathsWidget::tabChanged);
connect(ui->parserWidget, &ParserWidget::changed, this, &ProjectPathsWidget::parserArgumentsChanged);
tabChanged(IncludesPage);
}
ProjectPathsWidget::~ProjectPathsWidget()
{
}
QVector<ConfigEntry> ProjectPathsWidget::paths() const
{
return pathsModel->paths();
}
void ProjectPathsWidget::setPaths( const QVector<ConfigEntry>& paths )
{
bool b = blockSignals( true );
clear();
pathsModel->setPaths( paths );
blockSignals( b );
ui->projectPaths->setCurrentIndex(0); // at least a project root item is present
ui->languageParameters->setCurrentIndex(0);
// Set compilers
ui->compiler->clear();
auto settings = SettingsManager::globalInstance();
auto compilers = settings->provider()->compilers();
for (int i = 0 ; i < compilers.count(); ++i) {
Q_ASSERT(compilers[i]);
if (!compilers[i]) {
continue;
}
ui->compiler->addItem(compilers[i]->name());
QVariant val; val.setValue(compilers[i]);
ui->compiler->setItemData(i, val);
}
projectPathSelected(0);
updateEnablements();
}
void ProjectPathsWidget::definesChanged( const Defines& defines )
{
qCDebug(DEFINESANDINCLUDES) << "defines changed";
updatePathsModel( QVariant::fromValue(defines), ProjectPathsModel::DefinesDataRole );
}
void ProjectPathsWidget::includesChanged( const QStringList& includes )
{
qCDebug(DEFINESANDINCLUDES) << "includes changed";
updatePathsModel( includes, ProjectPathsModel::IncludesDataRole );
}
void ProjectPathsWidget::parserArgumentsChanged()
{
updatePathsModel(QVariant::fromValue(ui->parserWidget->parserArguments()), ProjectPathsModel::ParserArgumentsRole);
}
void ProjectPathsWidget::updatePathsModel(const QVariant& newData, int role)
{
QModelIndex idx = pathsModel->index( ui->projectPaths->currentIndex(), 0, QModelIndex() );
if( idx.isValid() ) {
bool b = pathsModel->setData( idx, newData, role );
if( b ) {
emit changed();
}
}
}
void ProjectPathsWidget::projectPathSelected( int index )
{
if( index < 0 && pathsModel->rowCount() > 0 ) {
index = 0;
}
Q_ASSERT(index >= 0);
const QModelIndex midx = pathsModel->index( index, 0 );
ui->includesWidget->setIncludes( pathsModel->data( midx, ProjectPathsModel::IncludesDataRole ).toStringList() );
ui->definesWidget->setDefines( pathsModel->data( midx, ProjectPathsModel::DefinesDataRole ).value<Defines>() );
Q_ASSERT(pathsModel->data(midx, ProjectPathsModel::CompilerDataRole).value<CompilerPointer>());
ui->compiler->setCurrentText(pathsModel->data(midx, ProjectPathsModel::CompilerDataRole).value<CompilerPointer>()->name());
ui->parserWidget->setParserArguments(pathsModel->data(midx, ProjectPathsModel::ParserArgumentsRole).value<ParserArguments>());
updateEnablements();
}
void ProjectPathsWidget::clear()
{
bool sigDisabled = ui->projectPaths->blockSignals( true );
pathsModel->setPaths({});
ui->includesWidget->clear();
ui->definesWidget->clear();
updateEnablements();
ui->projectPaths->blockSignals( sigDisabled );
}
void ProjectPathsWidget::addProjectPath()
{
const QUrl directory = pathsModel->data(pathsModel->index(0, 0), ProjectPathsModel::FullUrlDataRole).toUrl();
QPointer<QFileDialog> dlg = new QFileDialog(this, i18nc("@title:window", "Select Project Path"), directory.toLocalFile());
dlg->setFileMode(QFileDialog::Directory);
dlg->setOption(QFileDialog::ShowDirsOnly);
if (dlg->exec()) {
pathsModel->addPath(dlg->selectedUrls().value(0));
ui->projectPaths->setCurrentIndex(pathsModel->rowCount() - 1);
updateEnablements();
}
delete dlg;
}
void ProjectPathsWidget::deleteProjectPath()
{
const QModelIndex idx = pathsModel->index( ui->projectPaths->currentIndex(), 0 );
if (KMessageBox::questionTwoActions(this,
i18n("Are you sure you want to delete the configuration for the path '%1'?",
pathsModel->data(idx, Qt::DisplayRole).toString()),
i18nc("@title:window", "Delete Path Configuration"), KStandardGuiItem::del(),
KStandardGuiItem::cancel())
== KMessageBox::PrimaryAction) {
pathsModel->removeRows( ui->projectPaths->currentIndex(), 1 );
}
updateEnablements();
}
void ProjectPathsWidget::setProject(KDevelop::IProject* w_project)
{
pathsModel->setProject( w_project );
ui->includesWidget->setProject( w_project );
}
void ProjectPathsWidget::updateEnablements() {
// Disable removal of the project root entry which is always first in the list
ui->removePath->setEnabled( ui->projectPaths->currentIndex() > 0 );
}
void ProjectPathsWidget::batchEdit()
{
Ui::BatchEdit be;
QPointer<QDialog> dialog = new QDialog(this);
be.setupUi(dialog);
const int index = qMax(ui->projectPaths->currentIndex(), 0);
const QModelIndex midx = pathsModel->index(index, 0);
if (!midx.isValid()) {
return;
}
bool includesTab = ui->languageParameters->currentIndex() == 0;
if (includesTab) {
auto includes = pathsModel->data(midx, ProjectPathsModel::IncludesDataRole).toStringList();
be.textEdit->setPlainText(includes.join(QLatin1Char('\n')));
dialog->setWindowTitle(i18nc("@title:window", "Edit Include Directories/Files"));
} else {
auto defines = pathsModel->data(midx, ProjectPathsModel::DefinesDataRole).value<Defines>();
for (auto it = defines.constBegin(); it != defines.constEnd(); it++) {
be.textEdit->appendPlainText(it.key() + QLatin1Char('=') + it.value());
}
dialog->setWindowTitle(i18nc("@title:window", "Edit Defined Macros"));
}
if (dialog->exec() != QDialog::Accepted) {
delete dialog;
return;
}
if (includesTab) {
auto includes = be.textEdit->toPlainText().split(QLatin1Char('\n'), Qt::SkipEmptyParts);
for (auto& s : includes) {
s = s.trimmed();
}
pathsModel->setData(midx, includes, ProjectPathsModel::IncludesDataRole);
} else {
auto list = be.textEdit->toPlainText().split(QLatin1Char('\n'), Qt::SkipEmptyParts);
Defines defines;
for (auto& d : list) {
//This matches: a=b, a=, a
QRegExp r(QStringLiteral("^([^=]+)(=(.*))?$"));
if (!r.exactMatch(d)) {
continue;
}
defines[r.cap(1).trimmed()] = r.cap(3).trimmed();
}
pathsModel->setData(midx, QVariant::fromValue(defines), ProjectPathsModel::DefinesDataRole);
}
projectPathSelected(index);
delete dialog;
}
void ProjectPathsWidget::setCurrentCompiler(const QString& name)
{
for (int i = 0 ; i < ui->compiler->count(); ++i) {
if(ui->compiler->itemText(i) == name)
{
ui->compiler->setCurrentIndex(i);
}
}
}
CompilerPointer ProjectPathsWidget::currentCompiler() const
{
return ui->compiler->itemData(ui->compiler->currentIndex()).value<CompilerPointer>();
}
void ProjectPathsWidget::tabChanged(int idx)
{
if (idx == ParserArgumentsPage) {
ui->batchEdit->setVisible(false);
ui->compilerBox->setVisible(true);
ui->configureLabel->setText(i18n("Configure C/C++ parser"));
} else {
ui->batchEdit->setVisible(true);
ui->compilerBox->setVisible(false);
ui->configureLabel->setText(i18n("Configure which macros and include directories/files will be added to the parser during project parsing:"));
}
}
void ProjectPathsWidget::changeCompilerForPath()
{
for (int idx = 0; idx < pathsModel->rowCount(); idx++) {
const QModelIndex midx = pathsModel->index(idx, 0);
if (pathsModel->data(midx, Qt::DisplayRole) == ui->projectPaths->currentText()) {
pathsModel->setData(midx, QVariant::fromValue(currentCompiler()), ProjectPathsModel::CompilerDataRole);
break;
}
}
}
#include "moc_projectpathswidget.cpp"
|