diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2013-06-17 20:02:30 -0300 |
---|---|---|
committer | Tomaz Canabrava <tcanabrava@kde.org> | 2013-06-17 20:02:30 -0300 |
commit | a05ea5a6e8f50213559b096871905f9777059eb4 (patch) | |
tree | ab05724734bb04be6b39fc773c61dfae0f79af90 /qt-ui/mainwindow.cpp | |
parent | 240cfa74be5b6bc25053947c632084ad347b46b0 (diff) | |
download | subsurface-a05ea5a6e8f50213559b096871905f9777059eb4.tar.gz |
Create a view for the Statistics Model and Fix displaying the header
This simply creates a view to show the model, while doing that
I noticed that the model header wasn't showing, so I fixed it too.
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r-- | qt-ui/mainwindow.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index 45b8df80a..ae43ff814 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -16,6 +16,7 @@ #include <QApplication> #include <QFontMetrics> #include <QTextBrowser> +#include <QTableView> #include "divelistview.h" #include "starwidget.h" @@ -240,7 +241,10 @@ void MainWindow::on_actionToggleZoom_triggered() void MainWindow::on_actionYearlyStatistics_triggered() { - qDebug("actionYearlyStatistics"); + QTableView *view = new QTableView(); + QAbstractItemModel *model = new YearlyStatisticsModel(); + view->setModel(model); + view->show(); } /** |