From eb26823b3476dca68200017948b73cb405ef803a Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Sat, 31 May 2014 13:53:18 +0200 Subject: Allow editing segment duration. This shifts all following waypoints. Signed-off-by: Robert C. Helling Signed-off-by: Dirk Hohndel --- qt-ui/diveplanner.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'qt-ui') diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp index 21559a65a..c73487048 100644 --- a/qt-ui/diveplanner.cpp +++ b/qt-ui/diveplanner.cpp @@ -388,6 +388,7 @@ bool DivePlannerPointsModel::setData(const QModelIndex &index, const QVariant &v { int o2 = 0; int he = 0; + int i, shift; if (role == Qt::EditRole) { divedatapoint &p = divepoints[index.row()]; switch (index.column()) { @@ -398,10 +399,13 @@ bool DivePlannerPointsModel::setData(const QModelIndex &index, const QVariant &v p.time = value.toInt() * 60; break; case DURATION: - if (index.row()) - p.time = value.toInt() * 60 + divepoints[index.row() - 1].time; + i = index.row(); + if (i) + shift = divepoints[i].time - divepoints[i - 1].time - value.toInt() * 60; else - p.time = value.toInt() * 60; + shift = divepoints[i].time - value.toInt() * 60; + while (i < divepoints.size()) + divepoints[i++].time -= shift; break; case CCSETPOINT: { int po2 = 0; @@ -445,7 +449,7 @@ QVariant DivePlannerPointsModel::headerData(int section, Qt::Orientation orienta Qt::ItemFlags DivePlannerPointsModel::flags(const QModelIndex &index) const { - if (index.column() != DURATION && index.column() != REMOVE) + if (index.column() != REMOVE) return QAbstractItemModel::flags(index) | Qt::ItemIsEditable; else return QAbstractItemModel::flags(index); -- cgit v1.2.3-70-g09d2