Mercurial > minori
view include/gui/window.h @ 83:d02fdf1d6708
*: huuuge update
1. make the now playing page function correctly
2. de-constructorfy many of our custom widgets,
allowing them to be changed on-the-fly from
the Now Playing page
3. ... :)
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Tue, 24 Oct 2023 22:01:02 -0400 |
parents | c489dd4434af |
children | 8043152ef9d4 |
line wrap: on
line source
#ifndef __window_h #define __window_h #include "core/config.h" #include <QMainWindow> class QWidget; class QStackedWidget; class QCloseEvent; class SideBar; class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow(QWidget* parent = nullptr); void SetActivePage(QWidget* page); void CreateBars(); void closeEvent(QCloseEvent* event) override; private: QWidget* main_widget; QStackedWidget* stack; SideBar* sidebar; }; #endif // __window_h