summaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/tankitem.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-08-14 18:22:27 -0600
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-08-14 18:22:27 -0600
commitfa3c18d83b3f8d8ec9ccb692bf385b07cde30412 (patch)
treed235c094f21312d79a28cf7e699a691cfb3173c4 /qt-ui/profile/tankitem.cpp
parent9015160199506f271f8758c9b284b1d56bae860b (diff)
downloadsubsurface-fa3c18d83b3f8d8ec9ccb692bf385b07cde30412.tar.gz
Add initial support for a visual tracker of gas used
This shows a color-coded bar at the bottom of the graph that corresponds with the active gas. Todo: - text that explicitly states gas on the left edge of the bar - better vertical positioning of the bar - ability to turn this on and off Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/tankitem.cpp')
-rw-r--r--qt-ui/profile/tankitem.cpp97
1 files changed, 97 insertions, 0 deletions
diff --git a/qt-ui/profile/tankitem.cpp b/qt-ui/profile/tankitem.cpp
new file mode 100644
index 000000000..6608216be
--- /dev/null
+++ b/qt-ui/profile/tankitem.cpp
@@ -0,0 +1,97 @@
+#include "tankitem.h"
+#include "diveplotdatamodel.h"
+#include "profile.h"
+#include <QGradient>
+#include <QDebug>
+
+TankItem::TankItem(QObject *parent) :
+ QGraphicsRectItem(),
+ dataModel(0),
+ dive(0),
+ pInfo(0)
+{
+}
+
+void TankItem::setData(DivePlotDataModel *model, struct plot_info *plotInfo, struct dive *d)
+{
+ pInfo = plotInfo;
+ dive = d;
+ dataModel = model;
+ connect(dataModel, SIGNAL(dataChanged(QModelIndex, QModelIndex)), this, SLOT(modelDataChanged(QModelIndex, QModelIndex)));
+ modelDataChanged();
+}
+
+void TankItem::modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
+{
+ // We don't have enougth data to calculate things, quit.
+
+ if (!dive || !dataModel || !pInfo || !pInfo->nr)
+ return;
+
+ // remove the old rectangles
+ foreach (QGraphicsRectItem *r, rects) {
+ delete(r);
+ }
+ rects.clear();
+
+ // define the position on the profile
+ qreal width, left, yPos, height;
+ yPos = 95.0;
+ height = 3.0;
+
+ // set up the three patterns
+ QLinearGradient nitrox(QPointF(0, yPos), QPointF(0, yPos + height));
+ nitrox.setColorAt(0.0, Qt::green);
+ nitrox.setColorAt(0.49, Qt::green);
+ nitrox.setColorAt(0.5, Qt::yellow);
+ nitrox.setColorAt(1.0, Qt::yellow);
+ QLinearGradient trimix(QPointF(0, yPos), QPointF(0, yPos + height));
+ trimix.setColorAt(0.0, Qt::green);
+ trimix.setColorAt(0.49, Qt::green);
+ trimix.setColorAt(0.5, Qt::red);
+ trimix.setColorAt(1.0, Qt::red);
+ QColor air(Qt::blue);
+ air.lighter();
+
+ // walk the list and figure out which tanks go where
+ struct plot_data *entry = pInfo->entry;
+ int cylIdx = entry->cylinderindex;
+ int i = -1;
+ int startTime = 0;
+ struct gasmix *gas = &dive->cylinder[cylIdx].gasmix;
+ while (++i < pInfo->nr) {
+ entry = &pInfo->entry[i];
+ if (entry->cylinderindex == cylIdx)
+ continue;
+ width = hAxis->posAtValue(entry->sec) - hAxis->posAtValue(startTime);
+ left = hAxis->posAtValue(startTime);
+ QGraphicsRectItem *rect = new QGraphicsRectItem(left, yPos, width, height, this);
+ if (gasmix_is_air(gas))
+ rect->setBrush(air);
+ else if (gas->he.permille)
+ rect->setBrush(trimix);
+ else
+ rect->setBrush(nitrox);
+ rects << rect;
+ cylIdx = entry->cylinderindex;
+ gas = &dive->cylinder[cylIdx].gasmix;
+ startTime = entry->sec;
+ }
+ width = hAxis->posAtValue(entry->sec) - hAxis->posAtValue(startTime);
+ left = hAxis->posAtValue(startTime);
+ QGraphicsRectItem *rect = new QGraphicsRectItem(left, yPos, width, height, this);
+ if (gasmix_is_air(gas))
+ rect->setBrush(air);
+ else if (gas->he.permille)
+ rect->setBrush(trimix);
+ else
+ rect->setBrush(nitrox);
+ rects << rect;
+}
+
+void TankItem::setHorizontalAxis(DiveCartesianAxis *horizontal)
+{
+ hAxis = horizontal;
+ connect(hAxis, SIGNAL(sizeChanged()), this, SLOT(modelDataChanged()));
+ modelDataChanged();
+}