comparison include/gui/pages/statistics.h @ 250:c130f47f6f48

*: many many changes e.g. the search page is actually implemented now!
author Paper <paper@paper.us.eu.org>
date Sun, 04 Feb 2024 21:17:17 -0500
parents bd68e4393e6f
children 862d0d8619f6
comparison
equal deleted inserted replaced
249:6b2441c776dd 250:c130f47f6f48
20 20
21 protected: 21 protected:
22 void showEvent(QShowEvent*) override; 22 void showEvent(QShowEvent*) override;
23 23
24 private: 24 private:
25 std::string MinutesToDateString(int minutes);
26 std::string SecondsToDateString(int seconds);
27
28 std::shared_ptr<TextWidgets::LabelledSection> _anime_list; 25 std::shared_ptr<TextWidgets::LabelledSection> _anime_list;
29 std::shared_ptr<Graph<int>> _score_distribution_graph; 26 std::shared_ptr<Graph<int>> _score_distribution_graph;
30 std::shared_ptr<TextWidgets::LabelledSection> _application; 27 std::shared_ptr<TextWidgets::LabelledSection> _application;
31 }; 28 };
32 29