mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
36 lines
656 B
C
36 lines
656 B
C
|
/* SleepyHead AboutDialog Header
|
|||
|
*
|
|||
|
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
|
|||
|
*
|
|||
|
* 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();
|
|||
|
|
|||
|
private slots:
|
|||
|
void on_donateButton_clicked();
|
|||
|
|
|||
|
private:
|
|||
|
QString getLicense();
|
|||
|
QString getRelnotes();
|
|||
|
|
|||
|
Ui::AboutDialog *ui;
|
|||
|
};
|
|||
|
|
|||
|
#endif // ABOUTDIALOG_H
|