Mercurial > minori
view include/gui/pages/now_playing.h @ 66:6481c5aed3e1
posters: add poster widget...
why does AniList call these cover images? they're posters...
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 02 Oct 2023 05:56:32 -0400 |
parents | fe719c109dbc |
children | 27a19dd6cba1 |
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); private: QStackedWidget* stack; }; #endif // __gui__pages__now_playing_h