summaryrefslogtreecommitdiffstats
path: root/core/subsurface-qt/DiveObjectHelper.cpp
diff options
context:
space:
mode:
authorGravatar Joakim Bygdell <j.bygdell@gmail.com>2016-08-30 16:24:19 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-09-04 07:36:13 -0700
commit674d8331f5c15a8c3095afd1deca2b087fd82464 (patch)
treedefca414c3ca03c51b8dd65840b1d5ba6dedf963 /core/subsurface-qt/DiveObjectHelper.cpp
parent7b3665827a3fdf6717be5419b41641d8e2d95c93 (diff)
downloadsubsurface-674d8331f5c15a8c3095afd1deca2b087fd82464.tar.gz
QML UI: Enable cylinder edit
This adds the option to select a cylinder when adding or editing a dive. Due to limited screen size we restrict the editing to the first cylinder only. Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/subsurface-qt/DiveObjectHelper.cpp')
-rw-r--r--core/subsurface-qt/DiveObjectHelper.cpp25
1 files changed, 20 insertions, 5 deletions
diff --git a/core/subsurface-qt/DiveObjectHelper.cpp b/core/subsurface-qt/DiveObjectHelper.cpp
index 768d4a860..87fae7c06 100644
--- a/core/subsurface-qt/DiveObjectHelper.cpp
+++ b/core/subsurface-qt/DiveObjectHelper.cpp
@@ -5,6 +5,7 @@
#include "../qthelper.h"
#include "../helpers.h"
+#include "../../qt-models/tankinfomodel.h"
static QString EMPTY_DIVE_STRING = QStringLiteral("");
enum returnPressureSelector {START_PRESSURE, END_PRESSURE};
@@ -252,15 +253,29 @@ QString DiveObjectHelper::suit() const
return m_dive->suit ? m_dive->suit : EMPTY_DIVE_STRING;
}
-QString DiveObjectHelper::cylinderList() const
+QStringList DiveObjectHelper::cylinderList() const
{
- QString cylinders;
- for (int i = 0; i < MAX_CYLINDERS; i++) {
- QString cyl = getFormattedCylinder(m_dive, i);
+ QStringList cylinders;
+ struct dive *d;
+ int i = 0;
+ for_each_dive (i, d) {
+ for (int j = 0; j < MAX_CYLINDERS; j++) {
+ QString cyl = d->cylinder[j].type.description;
+ if (cyl == EMPTY_DIVE_STRING)
+ continue;
+ cylinders << cyl;
+ }
+ }
+
+ for (i = 0; i < sizeof(tank_info) && tank_info[i].name != NULL; i++) {
+ QString cyl = tank_info[i].name;
if (cyl == EMPTY_DIVE_STRING)
continue;
- cylinders += cyl + "; ";
+ cylinders << cyl;
}
+
+ cylinders.removeDuplicates();
+ cylinders.sort();
return cylinders;
}