2010-07-07 20:18:42 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2013-01-01 17:29:08 +01:00
|
|
|
* Copyright (C) 2007-2013 Daniel Marjamäki and Cppcheck team.
|
2010-07-07 20:18:42 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-10-31 12:16:55 +01:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QString>
|
2010-07-07 20:18:42 +02:00
|
|
|
#include <QStringList>
|
2010-07-12 19:31:37 +02:00
|
|
|
#include <QFileInfo>
|
2010-11-11 20:49:58 +01:00
|
|
|
#include <QFileDialog>
|
2010-11-11 21:00:58 +01:00
|
|
|
#include <QDir>
|
2011-05-13 09:12:19 +02:00
|
|
|
#include <QSettings>
|
|
|
|
#include "common.h"
|
2010-07-07 20:18:42 +02:00
|
|
|
#include "projectfiledialog.h"
|
|
|
|
|
|
|
|
ProjectFileDialog::ProjectFileDialog(const QString &path, QWidget *parent)
|
|
|
|
: QDialog(parent)
|
2011-05-13 08:23:43 +02:00
|
|
|
, mFilePath(path)
|
2010-07-07 20:18:42 +02:00
|
|
|
{
|
|
|
|
mUI.setupUi(this);
|
|
|
|
|
2010-07-12 19:31:37 +02:00
|
|
|
QFileInfo inf(path);
|
|
|
|
QString filename = inf.fileName();
|
|
|
|
QString title = tr("Project file: %1").arg(filename);
|
|
|
|
setWindowTitle(title);
|
2011-05-13 09:12:19 +02:00
|
|
|
LoadSettings();
|
2010-07-12 19:31:37 +02:00
|
|
|
|
2010-07-08 17:59:06 +02:00
|
|
|
connect(mUI.mButtons, SIGNAL(accepted()), this, SLOT(accept()));
|
2011-02-25 19:34:55 +01:00
|
|
|
connect(mUI.mBtnAddInclude, SIGNAL(clicked()), this, SLOT(AddIncludeDir()));
|
2011-02-26 12:18:11 +01:00
|
|
|
connect(mUI.mBtnAddPath, SIGNAL(clicked()), this, SLOT(AddPath()));
|
2011-02-25 19:34:55 +01:00
|
|
|
connect(mUI.mBtnEditInclude, SIGNAL(clicked()), this, SLOT(EditIncludeDir()));
|
|
|
|
connect(mUI.mBtnRemoveInclude, SIGNAL(clicked()), this, SLOT(RemoveIncludeDir()));
|
2011-02-26 12:18:11 +01:00
|
|
|
connect(mUI.mBtnEditPath, SIGNAL(clicked()), this, SLOT(EditPath()));
|
|
|
|
connect(mUI.mBtnRemovePath, SIGNAL(clicked()), this, SLOT(RemovePath()));
|
2011-09-25 19:59:47 +02:00
|
|
|
connect(mUI.mBtnAddIgnorePath, SIGNAL(clicked()), this, SLOT(AddExcludePath()));
|
|
|
|
connect(mUI.mBtnEditIgnorePath, SIGNAL(clicked()), this, SLOT(EditExcludePath()));
|
|
|
|
connect(mUI.mBtnRemoveIgnorePath, SIGNAL(clicked()), this, SLOT(RemoveExcludePath()));
|
2011-08-22 21:16:59 +02:00
|
|
|
connect(mUI.mBtnIncludeUp, SIGNAL(clicked()), this, SLOT(MoveIncludePathUp()));
|
|
|
|
connect(mUI.mBtnIncludeDown, SIGNAL(clicked()), this, SLOT(MoveIncludePathDown()));
|
2011-02-25 19:34:55 +01:00
|
|
|
}
|
|
|
|
|
2011-05-13 09:12:19 +02:00
|
|
|
ProjectFileDialog::~ProjectFileDialog()
|
|
|
|
{
|
|
|
|
SaveSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectFileDialog::LoadSettings()
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
resize(settings.value(SETTINGS_PROJECT_DIALOG_WIDTH, 470).toInt(),
|
|
|
|
settings.value(SETTINGS_PROJECT_DIALOG_HEIGHT, 330).toInt());
|
|
|
|
}
|
|
|
|
|
2012-10-27 12:10:32 +02:00
|
|
|
void ProjectFileDialog::SaveSettings() const
|
2011-05-13 09:12:19 +02:00
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
settings.setValue(SETTINGS_PROJECT_DIALOG_WIDTH, size().width());
|
|
|
|
settings.setValue(SETTINGS_PROJECT_DIALOG_HEIGHT, size().height());
|
|
|
|
}
|
|
|
|
|
2011-02-25 19:34:55 +01:00
|
|
|
void ProjectFileDialog::AddIncludeDir(const QString &dir)
|
|
|
|
{
|
|
|
|
if (dir.isNull() || dir.isEmpty())
|
|
|
|
return;
|
|
|
|
|
2011-02-28 16:18:14 +01:00
|
|
|
const QString newdir = QDir::toNativeSeparators(dir);
|
|
|
|
QListWidgetItem *item = new QListWidgetItem(newdir);
|
2011-02-25 19:34:55 +01:00
|
|
|
item->setFlags(item->flags() | Qt::ItemIsEditable);
|
|
|
|
mUI.mListIncludeDirs->addItem(item);
|
2010-07-12 19:21:45 +02:00
|
|
|
}
|
2010-07-08 17:59:06 +02:00
|
|
|
|
2011-02-26 12:18:11 +01:00
|
|
|
void ProjectFileDialog::AddPath(const QString &path)
|
|
|
|
{
|
|
|
|
if (path.isNull() || path.isEmpty())
|
|
|
|
return;
|
|
|
|
|
2011-02-28 16:18:14 +01:00
|
|
|
const QString newpath = QDir::toNativeSeparators(path);
|
|
|
|
QListWidgetItem *item = new QListWidgetItem(newpath);
|
2011-02-26 12:18:11 +01:00
|
|
|
item->setFlags(item->flags() | Qt::ItemIsEditable);
|
|
|
|
mUI.mListPaths->addItem(item);
|
|
|
|
}
|
|
|
|
|
2011-09-25 19:59:47 +02:00
|
|
|
void ProjectFileDialog::AddExcludePath(const QString &path)
|
2011-02-28 14:58:44 +01:00
|
|
|
{
|
|
|
|
if (path.isNull() || path.isEmpty())
|
|
|
|
return;
|
|
|
|
|
2011-02-28 16:18:14 +01:00
|
|
|
const QString newpath = QDir::toNativeSeparators(path);
|
|
|
|
QListWidgetItem *item = new QListWidgetItem(newpath);
|
2011-02-28 14:58:44 +01:00
|
|
|
item->setFlags(item->flags() | Qt::ItemIsEditable);
|
2011-09-25 19:59:47 +02:00
|
|
|
mUI.mListExcludedPaths->addItem(item);
|
2011-02-28 14:58:44 +01:00
|
|
|
}
|
|
|
|
|
2010-08-21 16:08:10 +02:00
|
|
|
QString ProjectFileDialog::GetRootPath() const
|
|
|
|
{
|
|
|
|
QString root = mUI.mEditProjectRoot->text();
|
|
|
|
root = root.trimmed();
|
2011-02-28 16:18:14 +01:00
|
|
|
root = QDir::fromNativeSeparators(root);
|
2010-08-21 16:08:10 +02:00
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
QStringList ProjectFileDialog::GetIncludePaths() const
|
|
|
|
{
|
2011-02-25 19:34:55 +01:00
|
|
|
const int count = mUI.mListIncludeDirs->count();
|
|
|
|
QStringList includePaths;
|
2011-10-13 20:53:06 +02:00
|
|
|
for (int i = 0; i < count; i++) {
|
2011-02-25 19:34:55 +01:00
|
|
|
QListWidgetItem *item = mUI.mListIncludeDirs->item(i);
|
2011-02-28 16:41:52 +01:00
|
|
|
includePaths << QDir::fromNativeSeparators(item->text());
|
2010-07-08 17:59:06 +02:00
|
|
|
}
|
2011-03-01 17:58:15 +01:00
|
|
|
return includePaths;
|
2010-07-08 17:59:06 +02:00
|
|
|
}
|
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
QStringList ProjectFileDialog::GetDefines() const
|
2010-07-08 17:59:06 +02:00
|
|
|
{
|
2010-07-12 19:21:45 +02:00
|
|
|
QString define = mUI.mEditDefines->text();
|
|
|
|
QStringList defines;
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!define.isEmpty()) {
|
2010-07-12 19:21:45 +02:00
|
|
|
define = define.trimmed();
|
|
|
|
if (define.indexOf(';') != -1)
|
|
|
|
defines = define.split(";");
|
|
|
|
else
|
|
|
|
defines.append(define);
|
2010-07-08 18:49:04 +02:00
|
|
|
}
|
2010-07-12 19:21:45 +02:00
|
|
|
return defines;
|
|
|
|
}
|
2010-07-07 20:18:42 +02:00
|
|
|
|
2010-08-17 18:32:29 +02:00
|
|
|
QStringList ProjectFileDialog::GetPaths() const
|
|
|
|
{
|
2011-02-26 12:18:11 +01:00
|
|
|
const int count = mUI.mListPaths->count();
|
2010-08-17 18:32:29 +02:00
|
|
|
QStringList paths;
|
2011-10-13 20:53:06 +02:00
|
|
|
for (int i = 0; i < count; i++) {
|
2011-02-26 12:18:11 +01:00
|
|
|
QListWidgetItem *item = mUI.mListPaths->item(i);
|
2011-02-28 16:18:14 +01:00
|
|
|
paths << QDir::fromNativeSeparators(item->text());
|
2010-08-17 18:32:29 +02:00
|
|
|
}
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
2011-09-25 19:59:47 +02:00
|
|
|
QStringList ProjectFileDialog::GetExcludedPaths() const
|
2011-02-28 14:58:44 +01:00
|
|
|
{
|
2011-09-25 19:59:47 +02:00
|
|
|
const int count = mUI.mListExcludedPaths->count();
|
2011-02-28 14:58:44 +01:00
|
|
|
QStringList paths;
|
2011-10-13 20:53:06 +02:00
|
|
|
for (int i = 0; i < count; i++) {
|
2011-09-25 19:59:47 +02:00
|
|
|
QListWidgetItem *item = mUI.mListExcludedPaths->item(i);
|
2011-02-28 16:18:14 +01:00
|
|
|
paths << QDir::fromNativeSeparators(item->text());
|
2011-02-28 14:58:44 +01:00
|
|
|
}
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
2010-08-21 16:08:10 +02:00
|
|
|
void ProjectFileDialog::SetRootPath(const QString &root)
|
|
|
|
{
|
2011-02-28 16:18:14 +01:00
|
|
|
QString newroot = QDir::toNativeSeparators(root);
|
|
|
|
mUI.mEditProjectRoot->setText(newroot);
|
2010-08-21 16:08:10 +02:00
|
|
|
}
|
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
void ProjectFileDialog::SetIncludepaths(const QStringList &includes)
|
|
|
|
{
|
2011-10-13 20:53:06 +02:00
|
|
|
foreach(QString dir, includes) {
|
2011-02-25 19:34:55 +01:00
|
|
|
AddIncludeDir(dir);
|
2010-07-07 20:18:42 +02:00
|
|
|
}
|
2010-07-12 19:21:45 +02:00
|
|
|
}
|
2010-07-07 20:18:42 +02:00
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
void ProjectFileDialog::SetDefines(const QStringList &defines)
|
|
|
|
{
|
2010-07-07 20:18:42 +02:00
|
|
|
QString definestr;
|
|
|
|
QString define;
|
2011-10-13 20:53:06 +02:00
|
|
|
foreach(define, defines) {
|
2010-07-07 20:18:42 +02:00
|
|
|
definestr += define;
|
|
|
|
definestr += ";";
|
|
|
|
}
|
2010-07-13 11:40:20 +02:00
|
|
|
// Remove ; from the end of the string
|
|
|
|
if (definestr.endsWith(';'))
|
|
|
|
definestr = definestr.left(definestr.length() - 1);
|
2010-07-07 20:18:42 +02:00
|
|
|
mUI.mEditDefines->setText(definestr);
|
2010-07-07 23:59:02 +02:00
|
|
|
}
|
2010-08-17 18:32:29 +02:00
|
|
|
|
|
|
|
void ProjectFileDialog::SetPaths(const QStringList &paths)
|
|
|
|
{
|
2011-10-13 20:53:06 +02:00
|
|
|
foreach(QString path, paths) {
|
2011-02-26 12:18:11 +01:00
|
|
|
AddPath(path);
|
2010-08-17 18:32:29 +02:00
|
|
|
}
|
|
|
|
}
|
2010-11-11 20:49:58 +01:00
|
|
|
|
2011-09-25 19:59:47 +02:00
|
|
|
void ProjectFileDialog::SetExcludedPaths(const QStringList &paths)
|
2011-02-28 14:58:44 +01:00
|
|
|
{
|
2011-10-13 20:53:06 +02:00
|
|
|
foreach(QString path, paths) {
|
2011-09-25 19:59:47 +02:00
|
|
|
AddExcludePath(path);
|
2011-02-28 14:58:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-25 19:34:55 +01:00
|
|
|
void ProjectFileDialog::AddIncludeDir()
|
2010-11-11 20:49:58 +01:00
|
|
|
{
|
2012-01-10 21:14:51 +01:00
|
|
|
const QFileInfo inf(mFilePath);
|
2011-05-13 08:23:43 +02:00
|
|
|
const QString rootpath = inf.absolutePath();
|
2010-11-11 20:49:58 +01:00
|
|
|
QString selectedDir = QFileDialog::getExistingDirectory(this,
|
|
|
|
tr("Select include directory"),
|
2011-05-13 08:23:43 +02:00
|
|
|
rootpath);
|
2010-11-11 20:49:58 +01:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!selectedDir.isEmpty()) {
|
2012-01-10 21:14:51 +01:00
|
|
|
// Check if the path is relative to project file's path and if so
|
|
|
|
// make it a relative path instead of absolute path.
|
|
|
|
const QDir dir(selectedDir);
|
|
|
|
QString absPath = dir.absolutePath();
|
|
|
|
if (absPath.startsWith(rootpath)) {
|
|
|
|
// Remove also the slash from begin of new relative path
|
|
|
|
selectedDir = absPath.remove(0, rootpath.length() + 1);
|
|
|
|
}
|
|
|
|
if (!selectedDir.endsWith("/"))
|
|
|
|
selectedDir += '/';
|
2011-02-25 19:34:55 +01:00
|
|
|
AddIncludeDir(selectedDir);
|
2010-11-11 20:49:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-26 12:18:11 +01:00
|
|
|
void ProjectFileDialog::AddPath()
|
2010-11-11 20:49:58 +01:00
|
|
|
{
|
2011-05-13 08:23:43 +02:00
|
|
|
QFileInfo inf(mFilePath);
|
|
|
|
const QString rootpath = inf.absolutePath();
|
2010-11-11 20:49:58 +01:00
|
|
|
QString selectedDir = QFileDialog::getExistingDirectory(this,
|
2011-05-13 08:23:43 +02:00
|
|
|
tr("Select a directory to check"),
|
|
|
|
rootpath);
|
2010-11-11 20:49:58 +01:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!selectedDir.isEmpty()) {
|
2011-02-26 12:18:11 +01:00
|
|
|
AddPath(selectedDir);
|
2010-11-11 20:49:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-25 19:34:55 +01:00
|
|
|
void ProjectFileDialog::RemoveIncludeDir()
|
|
|
|
{
|
|
|
|
const int row = mUI.mListIncludeDirs->currentRow();
|
|
|
|
QListWidgetItem *item = mUI.mListIncludeDirs->takeItem(row);
|
|
|
|
delete item;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectFileDialog::EditIncludeDir()
|
|
|
|
{
|
|
|
|
QListWidgetItem *item = mUI.mListIncludeDirs->currentItem();
|
|
|
|
mUI.mListIncludeDirs->editItem(item);
|
|
|
|
}
|
2011-02-26 12:18:11 +01:00
|
|
|
|
|
|
|
void ProjectFileDialog::EditPath()
|
|
|
|
{
|
|
|
|
QListWidgetItem *item = mUI.mListPaths->currentItem();
|
|
|
|
mUI.mListPaths->editItem(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectFileDialog::RemovePath()
|
|
|
|
{
|
|
|
|
const int row = mUI.mListPaths->currentRow();
|
|
|
|
QListWidgetItem *item = mUI.mListPaths->takeItem(row);
|
|
|
|
delete item;
|
|
|
|
}
|
2011-02-28 14:58:44 +01:00
|
|
|
|
2011-09-25 19:59:47 +02:00
|
|
|
void ProjectFileDialog::AddExcludePath()
|
2011-02-28 14:58:44 +01:00
|
|
|
{
|
2011-05-13 08:23:43 +02:00
|
|
|
QFileInfo inf(mFilePath);
|
|
|
|
const QString rootpath = inf.absolutePath();
|
|
|
|
|
2011-02-28 14:58:44 +01:00
|
|
|
QString selectedDir = QFileDialog::getExistingDirectory(this,
|
|
|
|
tr("Select directory to ignore"),
|
2011-05-13 08:23:43 +02:00
|
|
|
rootpath);
|
2011-02-28 14:58:44 +01:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!selectedDir.isEmpty()) {
|
2011-02-28 15:24:18 +01:00
|
|
|
if (!selectedDir.endsWith('/'))
|
|
|
|
selectedDir += '/';
|
2011-09-25 19:59:47 +02:00
|
|
|
AddExcludePath(selectedDir);
|
2011-02-28 14:58:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-25 19:59:47 +02:00
|
|
|
void ProjectFileDialog::EditExcludePath()
|
2011-02-28 14:58:44 +01:00
|
|
|
{
|
2011-09-25 19:59:47 +02:00
|
|
|
QListWidgetItem *item = mUI.mListExcludedPaths->currentItem();
|
|
|
|
mUI.mListExcludedPaths->editItem(item);
|
2011-02-28 14:58:44 +01:00
|
|
|
}
|
|
|
|
|
2011-09-25 19:59:47 +02:00
|
|
|
void ProjectFileDialog::RemoveExcludePath()
|
2011-02-28 14:58:44 +01:00
|
|
|
{
|
2011-09-25 19:59:47 +02:00
|
|
|
const int row = mUI.mListExcludedPaths->currentRow();
|
|
|
|
QListWidgetItem *item = mUI.mListExcludedPaths->takeItem(row);
|
2011-02-28 14:58:44 +01:00
|
|
|
delete item;
|
|
|
|
}
|
2011-08-22 21:16:59 +02:00
|
|
|
|
|
|
|
void ProjectFileDialog::MoveIncludePathUp()
|
|
|
|
{
|
|
|
|
int row = mUI.mListIncludeDirs->currentRow();
|
|
|
|
QListWidgetItem *item = mUI.mListIncludeDirs->takeItem(row);
|
|
|
|
row = row > 0 ? row - 1 : 0;
|
|
|
|
mUI.mListIncludeDirs->insertItem(row, item);
|
|
|
|
mUI.mListIncludeDirs->setCurrentItem(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectFileDialog::MoveIncludePathDown()
|
|
|
|
{
|
|
|
|
int row = mUI.mListIncludeDirs->currentRow();
|
|
|
|
QListWidgetItem *item = mUI.mListIncludeDirs->takeItem(row);
|
|
|
|
const int count = mUI.mListIncludeDirs->count();
|
|
|
|
row = row < count ? row + 1 : count;
|
|
|
|
mUI.mListIncludeDirs->insertItem(row, item);
|
|
|
|
mUI.mListIncludeDirs->setCurrentItem(item);
|
|
|
|
}
|