diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/gui/dialog/licenses.h	Wed Jun 19 14:02:11 2024 -0400
@@ -0,0 +1,16 @@
+#ifndef MINORI_GUI_DIALOG_LICENSES_H_
+#define MINORI_GUI_DIALOG_LICENSES_H_
+
+#include <QDialog>
+
+class LicensesWindow final : public QDialog {
+	Q_OBJECT
+
+public:
+	LicensesWindow(QWidget* parent = nullptr);
+
+protected:
+	void showEvent(QShowEvent* event) override;
+};
+
+#endif // MINORI_GUI_DIALOG_LICENSES_H_