Mercurial > minori
annotate include/gui/pages/statistics.h @ 258:862d0d8619f6
*: HUUUGE changes
animia has been renamed to animone, so instead of thinking of a
health condition, you think of a beautiful flower :)
I've also edited some of the code for animone, but I have no idea
if it even works or not because I don't have a mac or windows
machine lying around. whoops!
... anyway, all of the changes divergent from Anisthesia are now
licensed under BSD. it's possible that I could even rewrite most
of the code to where I don't even have to keep the MIT license,
but that's thinking too far into the future
I've been slacking off on implementing the anime seasons page,
mostly out of laziness. I think I'd have to create another db file
specifically for the seasons
anyway, this code is being pushed *primarily* because the hard drive
it's on is failing! yay :)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Mon, 01 Apr 2024 02:43:44 -0400 |
parents | c130f47f6f48 |
children | 3ec7804abf17 |
rev | line source |
---|---|
9 | 1 #ifndef __gui__pages__statistics_h |
2 #define __gui__pages__statistics_h | |
85 | 3 |
9 | 4 #include <QFrame> |
5 #include <QWidget> | |
96
bd68e4393e6f
statistics: forward declare Graph
Paper <mrpapersonic@gmail.com>
parents:
95
diff
changeset
|
6 |
bd68e4393e6f
statistics: forward declare Graph
Paper <mrpapersonic@gmail.com>
parents:
95
diff
changeset
|
7 template<typename T> |
bd68e4393e6f
statistics: forward declare Graph
Paper <mrpapersonic@gmail.com>
parents:
95
diff
changeset
|
8 class Graph; |
9 | 9 |
64 | 10 namespace TextWidgets { |
93 | 11 class LabelledSection; |
64 | 12 } |
13 | |
95
8043152ef9d4
include: set classes as final where appropriate
Paper <mrpapersonic@gmail.com>
parents:
93
diff
changeset
|
14 class StatisticsPage final : public QFrame { |
258 | 15 Q_OBJECT |
9 | 16 |
258 | 17 public: |
18 StatisticsPage(QWidget* parent = nullptr); | |
19 void UpdateStatistics(); | |
9 | 20 |
258 | 21 protected: |
22 void showEvent(QShowEvent*) override; | |
9 | 23 |
258 | 24 private: |
25 std::shared_ptr<TextWidgets::LabelledSection> _anime_list; | |
26 std::shared_ptr<Graph<int>> _score_distribution_graph; | |
27 std::shared_ptr<TextWidgets::LabelledSection> _application; | |
9 | 28 }; |
85 | 29 |
9 | 30 #endif // __gui__pages__statistics_h |