add about and license

This commit is contained in:
Maik Jurischka
2025-12-19 09:50:35 +01:00
parent 705519ec39
commit 01ef031fcd
12 changed files with 204 additions and 2 deletions

18
aboutwidget.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef ABOUTWIDGET_H
#define ABOUTWIDGET_H
#include <QWidget>
#include <QLabel>
class AboutWidget : public QWidget
{
Q_OBJECT
public:
explicit AboutWidget(QWidget *parent = nullptr);
private:
void setupUI();
};
#endif // ABOUTWIDGET_H