Mercurial > minori
view include/gui/dialog/about.h @ 260:dd211ff68b36
pages/seasons: add initial functionality
the menu doesn't work yet, but it's a good start
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 03 Apr 2024 19:48:38 -0400 |
parents | 862d0d8619f6 |
children | 3ec7804abf17 |
line wrap: on
line source
#ifndef __gui__dialog__about_h #define __gui__dialog__about_h #include <QDialog> class AboutWindow final : public QDialog { Q_OBJECT public: AboutWindow(QWidget* parent = nullptr); protected: void showEvent(QShowEvent* event) override; }; #endif // __gui__dialog__about_h