diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2014-01-23 18:03:28 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-01-23 21:11:15 -0800 |
commit | b5e8ef160aa2320f4d2af51e68023580647da252 (patch) | |
tree | 6746ea3f9284c89c4a922d57a8e49f8ed6bdc700 /qt-ui/profile/profilewidget2.cpp | |
parent | 1cae362c16ae94a98f4d00e19e1ffb591ecc5761 (diff) | |
download | subsurface-b5e8ef160aa2320f4d2af51e68023580647da252.tar.gz |
Added the Po2 Partial Pressure Graph.
Important to note that no Partial Pressure Graph handles
settings yet.
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/profilewidget2.cpp')
-rw-r--r-- | qt-ui/profile/profilewidget2.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index 8397dcb41..a39dbadd7 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -190,6 +190,16 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) : pheGasItem->setThreshouldSettingsKey("phethreshold"); scene()->addItem(pheGasItem); + pheGasItem = new PartialPressureGasItem(); + pheGasItem->setHorizontalAxis(timeAxis); + pheGasItem->setVerticalAxis(gasYAxis); + pheGasItem->setModel(dataModel); + pheGasItem->setVerticalDataColumn(DivePlotDataModel::PO2); + pheGasItem->setHorizontalDataColumn(DivePlotDataModel::TIME); + pheGasItem->setZValue(0); + pheGasItem->setThreshouldSettingsKey("po2threshold"); + scene()->addItem(pheGasItem); + background->setFlag(QGraphicsItem::ItemIgnoresTransformations); //enum State{ EMPTY, PROFILE, EDIT, ADD, PLAN, INVALID }; |