Mercurial > minori
annotate include/gui/pages/statistics.h @ 337:a7d4e5107531
dep/animone: REFACTOR ALL THE THINGS
1: animone now has its own syntax divergent from anisthesia,
making different platforms actually have their own sections
2: process names in animone are now called `comm' (this will
probably break things). this is what its called in bsd/linux
so I'm just going to use it everywhere
3: the X11 code now checks for the existence of a UTF-8 window title
and passes it if available
4: ANYTHING THATS NOT LINUX IS 100% UNTESTED AND CAN AND WILL BREAK!
I still actually need to test the bsd code. to be honest I'm probably
going to move all of the bsds into separate files because they're
all essentially different operating systems at this point
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 19 Jun 2024 12:51:15 -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_ |