2019-03-10 16:03:19 +00:00
|
|
|
|
/* OSCAR AboutDialog Header
|
2018-05-07 12:13:07 +00:00
|
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-02-01 00:14:19 +00:00
|
|
|
|
* Copyright (c) 2018 Mark Watkins
|
2018-05-07 12:13:07 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
|
* License. See the file COPYING in the main directory of the Source Directory. */
|
|
|
|
|
|
|
|
|
|
#ifndef ABOUTDIALOG_H
|
|
|
|
|
#define ABOUTDIALOG_H
|
|
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class AboutDialog;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class AboutDialog : public QDialog
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit AboutDialog(QWidget *parent = 0);
|
|
|
|
|
~AboutDialog();
|
|
|
|
|
|
2019-02-15 01:37:29 +00:00
|
|
|
|
/****************************************************
|
2018-05-07 12:13:07 +00:00
|
|
|
|
private slots:
|
|
|
|
|
void on_donateButton_clicked();
|
2019-02-15 01:37:29 +00:00
|
|
|
|
***************************************************/
|
2018-05-07 12:13:07 +00:00
|
|
|
|
private:
|
2019-03-20 13:49:17 +00:00
|
|
|
|
QString getFilename(QString name);
|
2019-02-15 01:37:29 +00:00
|
|
|
|
QString getAbout();
|
|
|
|
|
QString getCredits();
|
2018-05-07 12:13:07 +00:00
|
|
|
|
QString getLicense();
|
|
|
|
|
QString getRelnotes();
|
|
|
|
|
|
|
|
|
|
Ui::AboutDialog *ui;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // ABOUTDIALOG_H
|