2009-06-04 14:35:41 +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-06-04 14:35:41 +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-06-04 14:35:41 +02:00
|
|
|
*/
|
|
|
|
|
2009-06-24 22:49:38 +02:00
|
|
|
#ifndef ABOUT_DIALOG_H
|
|
|
|
#define ABOUT_DIALOG_H
|
2009-06-04 14:35:41 +02:00
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QString>
|
2009-07-02 18:36:45 +02:00
|
|
|
|
2022-04-13 12:24:00 +02:00
|
|
|
class QObject;
|
2010-07-17 21:34:07 +02:00
|
|
|
class QWidget;
|
2022-03-19 19:54:20 +01:00
|
|
|
namespace Ui {
|
|
|
|
class About;
|
|
|
|
}
|
2010-07-17 21:34:07 +02:00
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
2009-06-04 14:35:41 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief About dialog
|
|
|
|
*
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class AboutDialog : public QDialog {
|
2009-06-04 14:35:41 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-06-30 21:39:22 +02:00
|
|
|
AboutDialog(const QString &version,
|
|
|
|
const QString &extraVersion,
|
|
|
|
QWidget *parent = nullptr);
|
2009-06-04 14:35:41 +02:00
|
|
|
|
2022-03-19 19:54:20 +01:00
|
|
|
~AboutDialog() override;
|
|
|
|
|
2009-06-04 14:35:41 +02:00
|
|
|
private:
|
2022-03-19 19:54:20 +01:00
|
|
|
Ui::About* mUI;
|
2009-06-04 14:35:41 +02:00
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-06-24 22:49:38 +02:00
|
|
|
#endif // ABOUT_DIALOG_H
|