Mercurial > minori
annotate include/gui/pages/now_playing.h @ 198:bc1ae1810855
dep/animia: switch from using classes to global functions
the old idea was ok, but sort of hackish; this method doesn't use classes
at all, and this way (especially important!) we can do wayland stuff AND x11
at the same time, which wasn't really possible without stupid workarounds in
the other method
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 24 Dec 2023 02:59:42 -0500 |
parents | d43d68408d3c |
children | 4d461ef7d424 |
rev | line source |
---|---|
9 | 1 #ifndef __gui__pages__now_playing_h |
2 #define __gui__pages__now_playing_h | |
85 | 3 |
64 | 4 #include <QFrame> |
80 | 5 #include <unordered_map> |
2 | 6 |
64 | 7 class QStackedWidget; |
85 | 8 |
83 | 9 namespace Anime { |
10 class Anime; | |
11 } | |
64 | 12 |
154 | 13 namespace anitomy { |
14 class Elements; | |
15 } | |
16 | |
95
8043152ef9d4
include: set classes as final where appropriate
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
17 class NowPlayingPage final : public QFrame { |
9 | 18 Q_OBJECT |
7 | 19 |
2 | 20 public: |
64 | 21 NowPlayingPage(QWidget* parent = nullptr); |
22 void SetDefault(); | |
154 | 23 void SetPlaying(const Anime::Anime& anime, const anitomy::Elements& episodes); |
69 | 24 int GetPlayingId(); |
64 | 25 |
26 private: | |
27 QStackedWidget* stack; | |
2 | 28 }; |
29 | |
9 | 30 #endif // __gui__pages__now_playing_h |