Mercurial > minori
comparison include/gui/dialog/licenses.h @ 368:6d37a998cf91
gui/dialog: consolidate win32 dark theme cruft into a single class
author | Paper <paper@tflc.us> |
---|---|
date | Fri, 25 Jul 2025 10:05:23 -0400 |
parents | eac06513db86 |
children |
comparison
equal
deleted
inserted
replaced
367:8d45d892be88 | 368:6d37a998cf91 |
---|---|
1 #ifndef MINORI_GUI_DIALOG_LICENSES_H_ | 1 #ifndef MINORI_GUI_DIALOG_LICENSES_H_ |
2 #define MINORI_GUI_DIALOG_LICENSES_H_ | 2 #define MINORI_GUI_DIALOG_LICENSES_H_ |
3 | 3 |
4 #include <QDialog> | 4 #include "gui/dialog/dialog.h" |
5 | 5 |
6 class LicensesWindow final : public QDialog { | 6 class LicensesWindow final : public Dialog { |
7 Q_OBJECT | 7 Q_OBJECT |
8 | 8 |
9 public: | 9 public: |
10 LicensesWindow(QWidget* parent = nullptr); | 10 LicensesWindow(QWidget* parent = nullptr); |
11 | |
12 protected: | |
13 void showEvent(QShowEvent* event) override; | |
14 }; | 11 }; |
15 | 12 |
16 #endif // MINORI_GUI_DIALOG_LICENSES_H_ | 13 #endif // MINORI_GUI_DIALOG_LICENSES_H_ |