2010-07-07 20:18:42 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2022-02-05 11:45:17 +01:00
|
|
|
* Copyright (C) 2007-2022 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PROJECTFILE_DIALOG_H
|
|
|
|
#define PROJECTFILE_DIALOG_H
|
|
|
|
|
2018-04-09 06:43:48 +02:00
|
|
|
#include "suppressions.h"
|
|
|
|
|
2022-02-02 16:17:28 +01:00
|
|
|
#include <QDialog>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
2010-07-07 20:18:42 +02:00
|
|
|
|
2022-04-13 12:24:00 +02:00
|
|
|
class QModelIndex;
|
|
|
|
class QObject;
|
2010-11-11 20:49:58 +01:00
|
|
|
class QWidget;
|
2022-03-19 19:54:20 +01:00
|
|
|
namespace Ui {
|
|
|
|
class ProjectFile;
|
|
|
|
}
|
2010-07-07 20:18:42 +02:00
|
|
|
|
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
|
2016-11-19 22:54:32 +01:00
|
|
|
class ProjectFile;
|
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief A dialog for editing project file data.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class ProjectFileDialog : public QDialog {
|
2010-07-07 20:18:42 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2022-08-22 21:11:28 +02:00
|
|
|
explicit ProjectFileDialog(ProjectFile *projectFile, bool premium, QWidget *parent = nullptr);
|
2022-03-13 20:07:58 +01:00
|
|
|
~ProjectFileDialog() override;
|
2010-07-07 20:18:42 +02:00
|
|
|
|
2017-07-31 16:14:01 +02:00
|
|
|
private:
|
2017-07-28 13:43:49 +02:00
|
|
|
void loadFromProjectFile(const ProjectFile *projectFile);
|
|
|
|
void saveToProjectFile(ProjectFile *projectFile) const;
|
2016-11-19 22:54:32 +01:00
|
|
|
|
2017-07-28 18:13:17 +02:00
|
|
|
/** Enable and disable widgets in the 'Paths and Defines' tab */
|
|
|
|
void updatePathsAndDefines();
|
|
|
|
|
2010-08-21 16:08:10 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return project root path from the dialog control.
|
|
|
|
* @return Project root path.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
QString getRootPath() const;
|
2010-08-21 16:08:10 +02:00
|
|
|
|
2020-07-20 22:06:07 +02:00
|
|
|
QStringList getProjectConfigurations() const;
|
|
|
|
void setProjectConfigurations(const QStringList &configs);
|
2020-01-31 07:08:38 +01:00
|
|
|
|
2017-07-28 13:43:49 +02:00
|
|
|
QString getImportProject() const;
|
2016-08-18 21:58:50 +02:00
|
|
|
|
2016-11-19 20:38:50 +01:00
|
|
|
/** Get Cppcheck build dir */
|
2017-07-28 13:43:49 +02:00
|
|
|
QString getBuildDir() const;
|
2016-11-19 20:38:50 +01:00
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return include paths from the dialog control.
|
|
|
|
* @return List of include paths.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
QStringList getIncludePaths() const;
|
2010-07-12 19:21:45 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return define names from the dialog control.
|
|
|
|
* @return List of define names.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
QStringList getDefines() const;
|
2010-07-12 19:21:45 +02:00
|
|
|
|
2018-10-09 15:05:05 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return undefine names from the dialog control.
|
|
|
|
* @return List of undefine names.
|
|
|
|
*/
|
2018-10-09 15:05:05 +02:00
|
|
|
QStringList getUndefines() const;
|
|
|
|
|
2010-08-17 18:32:29 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return check paths from the dialog control.
|
|
|
|
* @return List of check paths.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
QStringList getCheckPaths() const;
|
2010-08-17 18:32:29 +02:00
|
|
|
|
2011-02-28 14:58:44 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return excluded paths from the dialog control.
|
|
|
|
* @return List of excluded paths.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
QStringList getExcludedPaths() const;
|
2011-02-28 14:58:44 +01:00
|
|
|
|
2013-12-29 18:06:31 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return selected libraries from the dialog control.
|
|
|
|
* @return List of libraries.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
QStringList getLibraries() const;
|
2013-12-29 18:06:31 +01:00
|
|
|
|
2013-12-30 22:32:50 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return suppressions from the dialog control.
|
|
|
|
* @return List of suppressions.
|
|
|
|
*/
|
2018-04-09 06:43:48 +02:00
|
|
|
QList<Suppressions::Suppression> getSuppressions() const {
|
|
|
|
return mSuppressions;
|
|
|
|
}
|
2013-12-30 22:32:50 +01:00
|
|
|
|
2010-08-21 16:08:10 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set project root path to dialog control.
|
|
|
|
* @param root Project root path to set to dialog control.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void setRootPath(const QString &root);
|
2010-08-21 16:08:10 +02:00
|
|
|
|
2016-11-19 20:38:50 +01:00
|
|
|
/** Set build dir */
|
2017-07-28 13:43:49 +02:00
|
|
|
void setBuildDir(const QString &buildDir);
|
2016-11-19 20:38:50 +01:00
|
|
|
|
2017-07-28 13:43:49 +02:00
|
|
|
void setImportProject(const QString &importProject);
|
2016-08-18 21:58:50 +02:00
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set include paths to dialog control.
|
|
|
|
* @param includes List of include paths to set to dialog control.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void setIncludepaths(const QStringList &includes);
|
2010-07-07 23:59:02 +02:00
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set define names to dialog control.
|
|
|
|
* @param defines List of define names to set to dialog control.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void setDefines(const QStringList &defines);
|
2010-07-07 23:59:02 +02:00
|
|
|
|
2018-10-09 15:05:05 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set undefine names to dialog control.
|
|
|
|
* @param undefines List of undefine names to set to dialog control.
|
|
|
|
*/
|
2018-12-08 07:37:27 +01:00
|
|
|
void setUndefines(const QStringList &undefines);
|
2018-10-09 15:05:05 +02:00
|
|
|
|
2010-08-17 18:32:29 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set check paths to dialog control.
|
|
|
|
* @param paths List of path names to set to dialog control.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void setCheckPaths(const QStringList &paths);
|
2010-08-17 18:32:29 +02:00
|
|
|
|
2011-02-28 14:58:44 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set excluded paths to dialog control.
|
|
|
|
* @param paths List of path names to set to dialog control.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void setExcludedPaths(const QStringList &paths);
|
2011-02-28 14:58:44 +01:00
|
|
|
|
2013-12-29 18:06:31 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set libraries to dialog control.
|
|
|
|
* @param libraries List of libraries to set to dialog control.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void setLibraries(const QStringList &libraries);
|
2013-12-29 18:06:31 +01:00
|
|
|
|
2021-07-22 18:54:43 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Add a single suppression to dialog control.
|
|
|
|
* @param suppression A suppressions to add to dialog control.
|
|
|
|
*/
|
2021-07-22 18:54:43 +02:00
|
|
|
void addSingleSuppression(const Suppressions::Suppression &suppression);
|
|
|
|
|
2013-12-30 22:32:50 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set suppressions to dialog control.
|
|
|
|
* @param suppressions List of suppressions to set to dialog control.
|
|
|
|
*/
|
2018-04-09 06:43:48 +02:00
|
|
|
void setSuppressions(const QList<Suppressions::Suppression> &suppressions);
|
2013-12-30 22:32:50 +01:00
|
|
|
|
2010-11-11 20:49:58 +01:00
|
|
|
protected slots:
|
2016-08-18 21:58:50 +02:00
|
|
|
|
2017-07-31 16:14:01 +02:00
|
|
|
/** ok button pressed, save changes and accept */
|
|
|
|
void ok();
|
|
|
|
|
2016-11-19 20:38:50 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Browse for build dir.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void browseBuildDir();
|
2016-11-19 20:38:50 +01:00
|
|
|
|
2017-07-28 18:13:17 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Clear 'import project'.
|
|
|
|
*/
|
2017-07-28 18:13:17 +02:00
|
|
|
void clearImportProject();
|
|
|
|
|
2016-08-18 21:58:50 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Browse for solution / project / compile database.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void browseImportProject();
|
2016-08-18 21:58:50 +02:00
|
|
|
|
2010-11-11 20:49:58 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Add new path to check.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void addCheckPath();
|
2011-02-26 12:18:11 +01:00
|
|
|
|
2010-11-11 20:49:58 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Edit path in the list.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void editCheckPath();
|
2010-11-11 20:49:58 +01:00
|
|
|
|
2011-02-25 19:34:55 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Remove path from the list.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void removeCheckPath();
|
2011-02-25 19:34:55 +01:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Browse for include directory.
|
|
|
|
* Allow user to add new include directory to the list.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void addIncludeDir();
|
2011-02-25 19:34:55 +01:00
|
|
|
|
2011-02-26 12:18:11 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Remove include directory from the list.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void removeIncludeDir();
|
2011-02-26 12:18:11 +01:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Edit include directory in the list.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void editIncludeDir();
|
2011-02-26 12:18:11 +01:00
|
|
|
|
2011-02-28 14:58:44 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Add new path to exclude list.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void addExcludePath();
|
2011-02-28 14:58:44 +01:00
|
|
|
|
2020-07-18 08:56:31 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Add new file to exclude list.
|
|
|
|
*/
|
2020-07-18 08:56:31 +02:00
|
|
|
void addExcludeFile();
|
|
|
|
|
2011-02-28 14:58:44 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Edit excluded path in the list.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void editExcludePath();
|
2011-02-28 14:58:44 +01:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Remove excluded path from the list.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void removeExcludePath();
|
2011-02-28 14:58:44 +01:00
|
|
|
|
2011-08-22 21:16:59 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Move include path up in the list.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void moveIncludePathUp();
|
2011-08-22 21:16:59 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Move include path down in the list.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void moveIncludePathDown();
|
2011-08-22 21:16:59 +02:00
|
|
|
|
2013-12-30 22:32:50 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Add suppression to the list
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void addSuppression();
|
2013-12-30 22:32:50 +01:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Remove selected suppression from the list
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void removeSuppression();
|
2013-12-30 22:32:50 +01:00
|
|
|
|
2018-08-09 06:50:35 +02:00
|
|
|
/**
|
|
|
|
* @brief Edit suppression (double clicking on suppression)
|
|
|
|
*/
|
|
|
|
void editSuppression(const QModelIndex &index);
|
|
|
|
|
2020-01-31 07:08:38 +01:00
|
|
|
/**
|
|
|
|
* @brief Check for all VS configurations
|
|
|
|
*/
|
|
|
|
void checkAllVSConfigs();
|
|
|
|
|
2010-11-11 20:49:58 +01:00
|
|
|
protected:
|
2011-02-25 19:34:55 +01:00
|
|
|
|
2011-05-13 09:12:19 +02:00
|
|
|
/**
|
|
|
|
* @brief Save dialog settings.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void loadSettings();
|
2011-05-13 09:12:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Load dialog settings.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void saveSettings() const;
|
2011-05-13 09:12:19 +02:00
|
|
|
|
2011-02-25 19:34:55 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Add new indlude directory.
|
|
|
|
* @param dir Directory to add.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void addIncludeDir(const QString &dir);
|
2011-02-25 19:34:55 +01:00
|
|
|
|
2010-11-11 20:49:58 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Add new path to check.
|
|
|
|
* @param path Path to add.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void addCheckPath(const QString &path);
|
2010-11-11 20:49:58 +01:00
|
|
|
|
2011-02-28 14:58:44 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Add new path to ignore list.
|
|
|
|
* @param path Path to add.
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void addExcludePath(const QString &path);
|
2011-02-28 14:58:44 +01:00
|
|
|
|
2018-08-09 06:50:35 +02:00
|
|
|
/**
|
|
|
|
* @brief Get mSuppressions index that match the
|
|
|
|
* given short text
|
|
|
|
* @param shortText text as generated by Suppression::getText
|
|
|
|
* @return index of matching suppression, -1 if not found
|
|
|
|
*/
|
2018-08-09 09:40:49 +02:00
|
|
|
int getSuppressionIndex(const QString &shortText) const;
|
2018-08-09 06:50:35 +02:00
|
|
|
|
2010-07-07 20:18:42 +02:00
|
|
|
private:
|
2022-09-08 20:01:41 +02:00
|
|
|
static QStringList getProjectConfigs(const QString &fileName);
|
2020-01-31 07:08:38 +01:00
|
|
|
|
2022-03-19 19:54:20 +01:00
|
|
|
Ui::ProjectFile *mUI;
|
2011-05-13 08:23:43 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Projectfile path.
|
|
|
|
*/
|
2017-07-31 16:14:01 +02:00
|
|
|
ProjectFile *mProjectFile;
|
2013-12-30 00:05:03 +01:00
|
|
|
|
2022-08-22 21:11:28 +02:00
|
|
|
/** Is this Cppcheck Premium? */
|
|
|
|
bool mPremium;
|
|
|
|
|
2016-11-19 20:38:50 +01:00
|
|
|
QString getExistingDirectory(const QString &caption, bool trailingSlash);
|
2018-04-09 06:43:48 +02:00
|
|
|
|
|
|
|
QList<Suppressions::Suppression> mSuppressions;
|
2010-07-07 20:18:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
#endif // PROJECTFILE_DIALOG_H
|