Mercurial > minori
annotate include/gui/pages/statistics.h @ 327:b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
ToLocalString has also been altered to take in both season
and year because lots of locales actually treat formatting
seasons differently! most notably is Russian which adds a
suffix at the end to notate seasons(??)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Thu, 13 Jun 2024 01:49:18 -0400 |
parents | 3ec7804abf17 |
children | 6b0768158dcd |
rev | line source |
---|---|
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
1 #ifndef MINORI_GUI_PAGES_STATISTICS_H_ |
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
2 #define MINORI_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 |
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
30 #endif // MINORI_GUI_PAGES_STATISTICS_H_ |