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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PROJECTFILE_DIALOG_H
|
|
|
|
#define PROJECTFILE_DIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QString>
|
2010-08-21 16:08:10 +02:00
|
|
|
#include <QStringList>
|
2010-07-07 20:18:42 +02:00
|
|
|
|
|
|
|
#include "ui_projectfile.h"
|
|
|
|
|
2010-11-11 20:49:58 +01:00
|
|
|
class QWidget;
|
2010-07-07 20:18:42 +02:00
|
|
|
|
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
2010-07-12 19:21:45 +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:
|
|
|
|
ProjectFileDialog(const QString &path, QWidget *parent = 0);
|
2011-05-13 09:12:19 +02:00
|
|
|
virtual ~ProjectFileDialog();
|
2010-07-07 20:18:42 +02:00
|
|
|
|
2010-08-21 16:08:10 +02:00
|
|
|
/**
|
|
|
|
* @brief Return project root path from the dialog control.
|
|
|
|
* @return Project root path.
|
|
|
|
*/
|
|
|
|
QString GetRootPath() const;
|
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
/**
|
|
|
|
* @brief Return include paths from the dialog control.
|
|
|
|
* @return List of include paths.
|
|
|
|
*/
|
|
|
|
QStringList GetIncludePaths() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return define names from the dialog control.
|
|
|
|
* @return List of define names.
|
|
|
|
*/
|
|
|
|
QStringList GetDefines() const;
|
|
|
|
|
2010-08-17 18:32:29 +02:00
|
|
|
/**
|
|
|
|
* @brief Return check paths from the dialog control.
|
|
|
|
* @return List of check paths.
|
|
|
|
*/
|
|
|
|
QStringList GetPaths() const;
|
|
|
|
|
2011-02-28 14:58:44 +01:00
|
|
|
/**
|
2011-09-25 19:59:47 +02:00
|
|
|
* @brief Return excluded paths from the dialog control.
|
|
|
|
* @return List of excluded paths.
|
2011-02-28 14:58:44 +01:00
|
|
|
*/
|
2011-09-25 19:59:47 +02:00
|
|
|
QStringList GetExcludedPaths() const;
|
2011-02-28 14:58:44 +01:00
|
|
|
|
2010-08-21 16:08:10 +02:00
|
|
|
/**
|
|
|
|
* @brief Set project root path to dialog control.
|
|
|
|
* @param root Project root path to set to dialog control.
|
|
|
|
*/
|
|
|
|
void SetRootPath(const QString &root);
|
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
/**
|
|
|
|
* @brief Set include paths to dialog control.
|
|
|
|
* @param includes List of include paths to set to dialog control.
|
|
|
|
*/
|
|
|
|
void SetIncludepaths(const QStringList &includes);
|
2010-07-07 23:59:02 +02:00
|
|
|
|
2010-07-12 19:21:45 +02:00
|
|
|
/**
|
|
|
|
* @brief Set define names to dialog control.
|
|
|
|
* @param defines List of define names to set to dialog control.
|
|
|
|
*/
|
|
|
|
void SetDefines(const QStringList &defines);
|
2010-07-07 23:59:02 +02:00
|
|
|
|
2010-08-17 18:32:29 +02:00
|
|
|
/**
|
|
|
|
* @brief Set check paths to dialog control.
|
|
|
|
* @param paths List of path names to set to dialog control.
|
|
|
|
*/
|
|
|
|
void SetPaths(const QStringList &paths);
|
|
|
|
|
2011-02-28 14:58:44 +01:00
|
|
|
/**
|
2011-09-25 19:59:47 +02:00
|
|
|
* @brief Set excluded paths to dialog control.
|
2011-02-28 14:58:44 +01:00
|
|
|
* @param paths List of path names to set to dialog control.
|
|
|
|
*/
|
2011-09-25 19:59:47 +02:00
|
|
|
void SetExcludedPaths(const QStringList &paths);
|
2011-02-28 14:58:44 +01:00
|
|
|
|
2010-11-11 20:49:58 +01:00
|
|
|
protected slots:
|
|
|
|
/**
|
|
|
|
* @brief Browse for include directory.
|
2011-02-25 19:34:55 +01:00
|
|
|
* Allow user to add new include directory to the list.
|
2010-11-11 20:49:58 +01:00
|
|
|
*/
|
2011-02-25 19:34:55 +01:00
|
|
|
void AddIncludeDir();
|
2011-02-26 12:18:11 +01:00
|
|
|
|
2010-11-11 20:49:58 +01:00
|
|
|
/**
|
2011-02-26 12:18:11 +01:00
|
|
|
* @brief Add new path to check.
|
2010-11-11 20:49:58 +01:00
|
|
|
*/
|
2011-02-26 12:18:11 +01:00
|
|
|
void AddPath();
|
2010-11-11 20:49:58 +01:00
|
|
|
|
2011-02-25 19:34:55 +01:00
|
|
|
/**
|
|
|
|
* @brief Remove include directory from the list.
|
|
|
|
*/
|
|
|
|
void RemoveIncludeDir();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Edit include directory in the list.
|
|
|
|
*/
|
|
|
|
void EditIncludeDir();
|
|
|
|
|
2011-02-26 12:18:11 +01:00
|
|
|
/**
|
|
|
|
* @brief Edit path in the list.
|
|
|
|
*/
|
|
|
|
void EditPath();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Remove path from the list.
|
|
|
|
*/
|
|
|
|
void RemovePath();
|
|
|
|
|
2011-02-28 14:58:44 +01:00
|
|
|
/**
|
2011-09-25 19:59:47 +02:00
|
|
|
* @brief Add new path to exclude.
|
2011-02-28 14:58:44 +01:00
|
|
|
*/
|
2011-09-25 19:59:47 +02:00
|
|
|
void AddExcludePath();
|
2011-02-28 14:58:44 +01:00
|
|
|
|
|
|
|
/**
|
2011-09-25 19:59:47 +02:00
|
|
|
* @brief Edit excluded path in the list.
|
2011-02-28 14:58:44 +01:00
|
|
|
*/
|
2011-09-25 19:59:47 +02:00
|
|
|
void EditExcludePath();
|
2011-02-28 14:58:44 +01:00
|
|
|
|
|
|
|
/**
|
2011-09-25 19:59:47 +02:00
|
|
|
* @brief Remove excluded path from the list.
|
2011-02-28 14:58:44 +01:00
|
|
|
*/
|
2011-09-25 19:59:47 +02:00
|
|
|
void RemoveExcludePath();
|
2011-02-28 14:58:44 +01:00
|
|
|
|
2011-08-22 21:16:59 +02:00
|
|
|
/**
|
|
|
|
* @brief Move include path up in the list.
|
|
|
|
*/
|
|
|
|
void MoveIncludePathUp();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Move include path down in the list.
|
|
|
|
*/
|
|
|
|
void MoveIncludePathDown();
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
void LoadSettings();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Load dialog settings.
|
|
|
|
*/
|
2012-10-27 12:10:32 +02:00
|
|
|
void SaveSettings() const;
|
2011-05-13 09:12:19 +02:00
|
|
|
|
2011-02-25 19:34:55 +01:00
|
|
|
/**
|
|
|
|
* @brief Add new indlude directory.
|
|
|
|
* @param dir Directory to add.
|
|
|
|
*/
|
|
|
|
void AddIncludeDir(const QString &dir);
|
|
|
|
|
2010-11-11 20:49:58 +01:00
|
|
|
/**
|
2011-02-26 12:18:11 +01:00
|
|
|
* @brief Add new path to check.
|
|
|
|
* @param path Path to add.
|
2010-11-11 20:49:58 +01:00
|
|
|
*/
|
2011-02-26 12:18:11 +01:00
|
|
|
void AddPath(const QString &path);
|
2010-11-11 20:49:58 +01:00
|
|
|
|
2011-02-28 14:58:44 +01:00
|
|
|
/**
|
|
|
|
* @brief Add new path to ignore list.
|
|
|
|
* @param path Path to add.
|
|
|
|
*/
|
2011-09-25 19:59:47 +02:00
|
|
|
void AddExcludePath(const QString &path);
|
2011-02-28 14:58:44 +01:00
|
|
|
|
2010-07-07 20:18:42 +02:00
|
|
|
private:
|
|
|
|
Ui::ProjectFile mUI;
|
2011-05-13 08:23:43 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Projectfile path.
|
|
|
|
*/
|
|
|
|
QString mFilePath;
|
2010-07-07 20:18:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
#endif // PROJECTFILE_DIALOG_H
|