comparison include/gui/dialog/licenses.h @ 339:eac06513db86

dialog/about: add licenses button otherwise we wouldn't be complying with most of the libraries and external software we use
author Paper <paper@paper.us.eu.org>
date Wed, 19 Jun 2024 14:02:11 -0400
parents
children
comparison
equal deleted inserted replaced
338:f63dfa309380 339:eac06513db86
1 #ifndef MINORI_GUI_DIALOG_LICENSES_H_
2 #define MINORI_GUI_DIALOG_LICENSES_H_
3
4 #include <QDialog>
5
6 class LicensesWindow final : public QDialog {
7 Q_OBJECT
8
9 public:
10 LicensesWindow(QWidget* parent = nullptr);
11
12 protected:
13 void showEvent(QShowEvent* event) override;
14 };
15
16 #endif // MINORI_GUI_DIALOG_LICENSES_H_