Mercurial > minori
comparison 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 |
comparison
equal
deleted
inserted
replaced
257:699a20c57dc8 | 258:862d0d8619f6 |
---|---|
10 namespace TextWidgets { | 10 namespace TextWidgets { |
11 class LabelledSection; | 11 class LabelledSection; |
12 } | 12 } |
13 | 13 |
14 class StatisticsPage final : public QFrame { | 14 class StatisticsPage final : public QFrame { |
15 Q_OBJECT | 15 Q_OBJECT |
16 | 16 |
17 public: | 17 public: |
18 StatisticsPage(QWidget* parent = nullptr); | 18 StatisticsPage(QWidget* parent = nullptr); |
19 void UpdateStatistics(); | 19 void UpdateStatistics(); |
20 | 20 |
21 protected: | 21 protected: |
22 void showEvent(QShowEvent*) override; | 22 void showEvent(QShowEvent*) override; |
23 | 23 |
24 private: | 24 private: |
25 std::shared_ptr<TextWidgets::LabelledSection> _anime_list; | 25 std::shared_ptr<TextWidgets::LabelledSection> _anime_list; |
26 std::shared_ptr<Graph<int>> _score_distribution_graph; | 26 std::shared_ptr<Graph<int>> _score_distribution_graph; |
27 std::shared_ptr<TextWidgets::LabelledSection> _application; | 27 std::shared_ptr<TextWidgets::LabelledSection> _application; |
28 }; | 28 }; |
29 | 29 |
30 #endif // __gui__pages__statistics_h | 30 #endif // __gui__pages__statistics_h |