Mercurial > minori
annotate include/gui/widgets/anime_info.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 | 8043152ef9d4 |
| children | 862d0d8619f6 |
| rev | line source |
|---|---|
| 64 | 1 #ifndef __gui__widgets__anime_info_h |
| 2 #define __gui__widgets__anime_info_h | |
| 85 | 3 |
| 64 | 4 #include <QWidget> |
| 85 | 5 |
| 6 namespace TextWidgets { | |
| 7 class OneLineSection; | |
| 8 class LabelledSection; | |
| 9 class SelectableSection; | |
| 10 } | |
| 64 | 11 |
| 12 namespace Anime { | |
| 76 | 13 class Anime; |
| 64 | 14 } |
| 15 | |
|
95
8043152ef9d4
include: set classes as final where appropriate
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
16 class AnimeInfoWidget final : public QWidget { |
| 64 | 17 Q_OBJECT |
| 18 | |
| 19 public: | |
| 80 | 20 AnimeInfoWidget(QWidget* parent = nullptr); |
| 64 | 21 AnimeInfoWidget(const Anime::Anime& anime, QWidget* parent = nullptr); |
|
82
8b65c417c225
*: fix old stuff, make video players and extensions constants
Paper <mrpapersonic@gmail.com>
parents:
80
diff
changeset
|
22 void SetAnime(const Anime::Anime& anime); |
| 80 | 23 |
| 24 private: | |
| 25 std::shared_ptr<TextWidgets::OneLineSection> _title = nullptr; | |
| 26 std::shared_ptr<TextWidgets::LabelledSection> _details = nullptr; | |
| 27 std::shared_ptr<TextWidgets::SelectableSection> _synopsis = nullptr; | |
| 64 | 28 }; |
| 29 | |
| 30 #endif // __gui__widgets__anime_info_h |
