1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
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();
}
|