mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add the gas pressure plot.
Added the Gas Pressure Graph with the related Model Changes to access the cylinder index, pressure, interpolated pressure and SAC. The plot does not correctly plot its color right now but it's not hard to do. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
779c1b6738
commit
4ff73cf537
6 changed files with 80 additions and 14 deletions
|
@ -34,6 +34,7 @@ QVariant DivePlotDataModel::data(const QModelIndex& index, int role) const
|
|||
case CYLINDERINDEX: return item.cylinderindex;
|
||||
case SENSOR_PRESSURE: return item.pressure[0];
|
||||
case INTERPOLATED_PRESSURE: return item.pressure[1];
|
||||
case SAC: return item.sac;
|
||||
}
|
||||
}
|
||||
if (role == Qt::BackgroundRole) {
|
||||
|
@ -65,8 +66,9 @@ QVariant DivePlotDataModel::headerData(int section, Qt::Orientation orientation,
|
|||
case COLOR: return tr("Color");
|
||||
case USERENTERED: return tr("User Entered");
|
||||
case CYLINDERINDEX: return tr("Cylinder Index");
|
||||
case SENSOR_PRESSURE: return tr("Sensor Pressure");
|
||||
case INTERPOLATED_PRESSURE: return tr("Interpolated Pressure");
|
||||
case SENSOR_PRESSURE: return tr("Pressure S");
|
||||
case INTERPOLATED_PRESSURE: return tr("Pressure I");
|
||||
case SAC: return tr("SAC");
|
||||
}
|
||||
return QVariant();
|
||||
}
|
||||
|
@ -88,16 +90,8 @@ void DivePlotDataModel::setDive(dive* d,const plot_info& pInfo)
|
|||
|
||||
if (d)
|
||||
dc = select_dc(&d->dc);
|
||||
|
||||
/* Create the new plot data */
|
||||
if (plotData)
|
||||
free((void *)plotData);
|
||||
|
||||
plot_info info = pInfo;
|
||||
plotData = populate_plot_entries(d, dc, &info); // Create the plot data.
|
||||
analyze_plot_info(&info); // Get the Velocity Color information.
|
||||
|
||||
sampleCount = info.nr;
|
||||
plotData = pInfo.entry;
|
||||
sampleCount = pInfo.nr;
|
||||
beginInsertRows(QModelIndex(), 0, sampleCount-1);
|
||||
endInsertRows();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue