diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-08-25 16:10:47 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-25 13:58:38 -0700 |
commit | 1c56c9f6261521ecb2ad65a760359e6b1ae9fd48 (patch) | |
tree | d1e0b8992a97b585136668d29707eda6dd867f32 /qt-ui/statistics/statisticswidget.h | |
parent | 750fc529b70c84b23b84f69bcec28b573646c426 (diff) | |
download | subsurface-1c56c9f6261521ecb2ad65a760359e6b1ae9fd48.tar.gz |
Create stub methods and connects the model with the new statistics
Connects the YearlyStatistics model with the YearlyStatisticsWidget
nothing is shown right now, mostly because I need to do everything
but now it's easyer to add the things that are missing.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/statistics/statisticswidget.h')
-rw-r--r-- | qt-ui/statistics/statisticswidget.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qt-ui/statistics/statisticswidget.h b/qt-ui/statistics/statisticswidget.h index b01f2ee17..0042ce67c 100644 --- a/qt-ui/statistics/statisticswidget.h +++ b/qt-ui/statistics/statisticswidget.h @@ -3,10 +3,20 @@ #include <QGraphicsView> +class YearlyStatisticsModel; +class QModelIndex; + class YearlyStatisticsWidget : public QGraphicsView { Q_OBJECT public: YearlyStatisticsWidget(QWidget *parent = 0); + void setModel(YearlyStatisticsModel *m); +public slots: + void modelRowsInserted(const QModelIndex& index, int first, int last); + void modelRowsRemoved(const QModelIndex& index, int first, int last); + void modelDataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight); +private: + YearlyStatisticsModel *m_model; }; #endif
\ No newline at end of file |