aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/statistics/statisticswidget.h
blob: 4ffd3ff88c29cf3526f4c9e62187fe65acafea56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: GPL-2.0
#ifndef YEARLYSTATISTICSWIDGET_H
#define YEARLYSTATISTICSWIDGET_H

#include <QGraphicsView>

class YearlyStatisticsModel;
class QModelIndex;

class YearlyStatisticsWidget : public QGraphicsView {
	Q_OBJECT
public:
	YearlyStatisticsWidget(QWidget *parent = 0);
	void setModel(YearlyStatisticsModel *m);
protected:
	void resizeEvent(QResizeEvent *event) override;
public slots:
	void modelRowsInserted(const QModelIndex& index, int first, int last);
	void modelDataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight);
private:
	YearlyStatisticsModel *m_model;
};

#endif