aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/profile
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2014-01-15 13:20:05 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-01-16 10:12:31 +0700
commit52064d9e02a6ca559beb8f8e64e28e2ef77c5e44 (patch)
treed3327a8dca6a0e7d80120c0af08e9bab44583802 /qt-ui/profile
parent7affccdf5b2baff6fb757ca41ffe11ec953f27d6 (diff)
downloadsubsurface-52064d9e02a6ca559beb8f8e64e28e2ef77c5e44.tar.gz
Added debug code to help understand the Profile
This commit adds a QTableView if built in debug mode. This is very userful to understand the Profile that will be drawn by the graphics classes and fix the possible errors. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile')
-rw-r--r--qt-ui/profile/profilewidget2.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp
index b2c59b2cc..067fc97fb 100644
--- a/qt-ui/profile/profilewidget2.cpp
+++ b/qt-ui/profile/profilewidget2.cpp
@@ -12,6 +12,11 @@
#include <QMenu>
#include <QContextMenuEvent>
+#ifndef QT_NO_DEBUG
+#include <QTableView>
+#include "mainwindow.h"
+#endif
+
ProfileWidget2::ProfileWidget2(QWidget *parent) :
QGraphicsView(parent),
dataModel(new DivePlotDataModel(this)),
@@ -212,6 +217,12 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) :
// Starting the transitions:
stateMachine->start();
+
+#ifndef QT_NO_DEBUG
+ QTableView *diveDepthTableView = new QTableView();
+ diveDepthTableView->setModel(dataModel);
+ mainWindow()->tabWidget()->addTab(diveDepthTableView, "Depth Model");
+#endif
}
// Currently just one dive, but the plan is to enable All of the selected dives.