view include/gui/pages/statistics.h @ 257:699a20c57dc8

scripts: Bourne shell compatibility
author Paper <paper@paper.us.eu.org>
date Sun, 18 Feb 2024 16:02:14 -0500
parents c130f47f6f48
children 862d0d8619f6
line wrap: on
line source

#ifndef __gui__pages__statistics_h
#define __gui__pages__statistics_h

#include <QFrame>
#include <QWidget>

template<typename T>
class Graph;

namespace TextWidgets {
class LabelledSection;
}

class StatisticsPage final : public QFrame {
		Q_OBJECT

	public:
		StatisticsPage(QWidget* parent = nullptr);
		void UpdateStatistics();

	protected:
		void showEvent(QShowEvent*) override;

	private:
		std::shared_ptr<TextWidgets::LabelledSection> _anime_list;
		std::shared_ptr<Graph<int>> _score_distribution_graph;
		std::shared_ptr<TextWidgets::LabelledSection> _application;
};

#endif // __gui__pages__statistics_h