Mercurial > minori
annotate include/gui/pages/statistics.h @ 266:1a6a5d3a94cd
dep/animone: make bsd.cc and x11.cc actually work
apparently I broke these, and even now the x11 code *still* doesn't want
to work correctly (at least on FreeBSD). half of the PID response codes
are just 0 or the PID for the X server itself... wtf?
maybe dwm just doesn't support the XRes extension, or I'm just stupid.
i don't know.
| author | Paper <paper@paper.us.eu.org> |
|---|---|
| date | Thu, 11 Apr 2024 22:05:41 -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_ |
