2009-05-23 12:37:30 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2016-01-01 14:34:45 +01:00
|
|
|
* Copyright (C) 2007-2016 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>
|
2011-04-02 15:30:09 +02:00
|
|
|
#include "application.h"
|
2009-07-02 18:14:12 +02:00
|
|
|
#include "ui_application.h"
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2010-07-17 21:34:07 +02:00
|
|
|
class QWidget;
|
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2009-05-23 18:29:24 +02:00
|
|
|
* @brief Dialog to edit a startable application.
|
|
|
|
* User can open errors with user specified applications. This is a dialog
|
2009-06-02 22:32:58 +02:00
|
|
|
* to modify/add an application to open errors with.
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
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
|
|
|
/**
|
2011-04-02 15:30:09 +02:00
|
|
|
* @brief Constructor.
|
|
|
|
* @param title Title for the dialog.
|
|
|
|
* @param app Application definition.
|
|
|
|
* @param parent Parent widget.
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2012-10-27 11:35:00 +02:00
|
|
|
ApplicationDialog(const QString &title, Application &app,
|
2009-06-06 11:57:16 +02:00
|
|
|
QWidget *parent = 0);
|
2009-05-23 12:37:30 +02:00
|
|
|
virtual ~ApplicationDialog();
|
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
|
|
|
|
2009-05-24 10:53:29 +02:00
|
|
|
void Ok();
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
|
|
|
* @brief Slot to browse for an application
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-05-23 12:37:30 +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
|
|
|
/**
|
2009-07-02 18:14:12 +02:00
|
|
|
* @brief UI from the Qt designer
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-07-02 18:14:12 +02:00
|
|
|
Ui::ApplicationDialog mUI;
|
2012-10-27 11:35:00 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Underlying Application
|
|
|
|
*/
|
|
|
|
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
|