Mercurial > minori
view include/gui/pages/now_playing.h @ 79:c489dd4434af
*: what did I do again?
I really forgot what I did here :)
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Thu, 12 Oct 2023 11:31:39 -0400 |
parents | 27a19dd6cba1 |
children | 825506f0e221 |
line wrap: on
line source
#ifndef __gui__pages__now_playing_h #define __gui__pages__now_playing_h #include <QFrame> class QStackedWidget; class NowPlayingPage : public QFrame { Q_OBJECT public: NowPlayingPage(QWidget* parent = nullptr); void SetDefault(); void SetPlaying(int id, int episodes); int GetPlayingId(); private: QStackedWidget* stack; }; #endif // __gui__pages__now_playing_h