Initial commit

This commit is contained in:
jaseg 2020-08-04 01:04:52 +02:00
commit 872bb95acf
20 changed files with 1369 additions and 0 deletions

26
aboutdialog.h Normal file
View file

@ -0,0 +1,26 @@
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H
#include <QAbstractButton>
#include <QDialog>
namespace Ui {
class AboutDialog;
}
class AboutDialog : public QDialog
{
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = nullptr);
~AboutDialog();
private slots:
void on_buttonBox_clicked(QAbstractButton *button);
private:
Ui::AboutDialog *ui;
};
#endif // ABOUTDIALOG_H