Mercurial > minori
view include/gui/window.h @ 62:4c6dd5999b39
*: update
1. updated animia
2. use widestrings for filesystem on Windows
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 01 Oct 2023 06:16:06 -0400 |
parents | d0adc4aedfc8 |
children | c489dd4434af |
line wrap: on
line source
#ifndef __window_h #define __window_h #include "core/config.h" #include <QCloseEvent> #include <QMainWindow> #include <QWidget> class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow(QWidget* parent = nullptr); void SetActivePage(QWidget* page); void closeEvent(QCloseEvent* event) override; private: QWidget* main_widget; }; #endif // __window_h