Mercurial > minori
annotate include/gui/pages/now_playing.h @ 229:adc20fa321c1
theme: force Fusion style on platforms other than Win32 or OS X
I was reluctant to do this, but most of the other styles just
look like pure shite regardless of whether I force a stylesheet
on them or not. KDE's style is actually hilariously bad paired
with my stylesheet, so I've decided to also make the stylesheet
Windows-specific as well, because that's really the only platform
where it makes sense in the first place.
| author | Paper <paper@paper.us.eu.org> |
|---|---|
| date | Wed, 10 Jan 2024 21:23:57 -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 |
