diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2016-01-25 18:44:52 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-25 11:14:33 -0800 |
commit | e0725966b1740f35c986466210bb384f1ece1b7f (patch) | |
tree | 086255f349accc94d1ed55fe5ed20350d096eb41 /qt-mobile/qmlmanager.cpp | |
parent | 19588ce1399381129f86b4cc54e0c6522852e666 (diff) | |
download | subsurface-e0725966b1740f35c986466210bb384f1ece1b7f.tar.gz |
QML UI: Add helper function to get weights
Helper function that retrieved the total weight for a dive to be displayed
on the DiveDetials page.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qmlmanager.cpp')
-rw-r--r-- | qt-mobile/qmlmanager.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp index d2b5c4702..a4cfd5fd4 100644 --- a/qt-mobile/qmlmanager.cpp +++ b/qt-mobile/qmlmanager.cpp @@ -718,3 +718,23 @@ QString QMLManager::getCylinder(QString diveId) cylinder = d->cylinder[0].type.description; return cylinder; } + +QString QMLManager::getWeights(QString diveId) +{ + int dive_id = diveId.toInt(); + struct dive *d = get_dive_by_uniq_id(dive_id); + int weight = 0; + QString weights; + if (d){ + for (int i = 0; i < MAX_WEIGHTSYSTEMS; i++) + weight += d->weightsystem[i].weight.grams; + + if (informational_prefs.unit_system == IMPERIAL){ + weights = QString::number(grams_to_lbs(weight)) + " lbs"; + } + else { + weights = QString::number(weight/1000) + " kg"; + } + } + return weights; +} |