2009-05-23 12:37:30 +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.
|
2009-05-23 12:37:30 +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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-05-23 12:37:30 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef APPLICATIONDIALOG_H
|
|
|
|
#define APPLICATIONDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2010-07-17 21:34:07 +02:00
|
|
|
#include <QString>
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2022-04-13 12:24:00 +02:00
|
|
|
class QObject;
|
2010-07-17 21:34:07 +02:00
|
|
|
class QWidget;
|
2020-05-23 07:16:49 +02:00
|
|
|
class Application;
|
2022-03-19 19:54:20 +01:00
|
|
|
namespace Ui {
|
|
|
|
class ApplicationDialog;
|
|
|
|
}
|
2010-07-17 21:34:07 +02:00
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Dialog to edit a startable application.
|
|
|
|
* User can open errors with user specified applications. This is a dialog
|
|
|
|
* to modify/add an application to open errors with.
|
|
|
|
*
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class ApplicationDialog : public QDialog {
|
2009-05-23 12:37:30 +02:00
|
|
|
Q_OBJECT
|
2011-04-02 15:30:09 +02:00
|
|
|
|
2009-05-23 12:37:30 +02:00
|
|
|
public:
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Constructor.
|
|
|
|
* @param title Title for the dialog.
|
|
|
|
* @param app Application definition.
|
|
|
|
* @param parent Parent widget.
|
|
|
|
*/
|
2019-06-30 21:39:22 +02:00
|
|
|
ApplicationDialog(const QString &title,
|
|
|
|
Application &app,
|
|
|
|
QWidget *parent = nullptr);
|
2022-03-13 20:07:58 +01:00
|
|
|
~ApplicationDialog() override;
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-23 12:37:30 +02:00
|
|
|
protected slots:
|
2011-04-02 15:30:09 +02:00
|
|
|
|
2017-07-28 13:43:49 +02:00
|
|
|
void ok();
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Slot to browse for an application
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 13:43:49 +02:00
|
|
|
void browse();
|
2011-04-02 15:30:09 +02:00
|
|
|
|
2009-05-23 12:37:30 +02:00
|
|
|
protected:
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief UI from the Qt designer
|
|
|
|
*
|
|
|
|
*/
|
2022-03-19 19:54:20 +01:00
|
|
|
Ui::ApplicationDialog* mUI;
|
2012-10-27 11:35:00 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Underlying Application
|
|
|
|
*/
|
2012-10-27 11:35:00 +02:00
|
|
|
Application& mApplication;
|
2009-05-23 12:37:30 +02:00
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-05-23 12:37:30 +02:00
|
|
|
#endif // APPLICATIONDIALOG_H
|