From 0787347691aec0521f1e3fa749415aae70bd4cd3 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Fri, 17 Jan 2014 11:07:52 -0200 Subject: Add Information about the Pressure to the Model. Added missing information about the pressure to the model; this shows that I didn't do something right, as the model has 0 pressure information. Need to fix that on the next commit. Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- qt-ui/profile/diveplotdatamodel.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'qt-ui/profile/diveplotdatamodel.cpp') diff --git a/qt-ui/profile/diveplotdatamodel.cpp b/qt-ui/profile/diveplotdatamodel.cpp index cbe9cfadc..09985b1ca 100644 --- a/qt-ui/profile/diveplotdatamodel.cpp +++ b/qt-ui/profile/diveplotdatamodel.cpp @@ -31,6 +31,9 @@ QVariant DivePlotDataModel::data(const QModelIndex& index, int role) const case TEMPERATURE: return item.temperature; case COLOR: return item.velocity; case USERENTERED: return false; + case CYLINDERINDEX: return item.cylinderindex; + case SENSOR_PRESSURE: return item.pressure[0]; + case INTERPOLATED_PRESSURE: return item.pressure[1]; } } if (role == Qt::BackgroundRole) { @@ -61,6 +64,9 @@ QVariant DivePlotDataModel::headerData(int section, Qt::Orientation orientation, case TEMPERATURE: return tr("Temperature"); 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"); } return QVariant(); } -- cgit v1.2.3-70-g09d2