aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile
diff options
context:
space:
mode:
authorGravatar Joakim Bygdell <j.bygdell@gmail.com>2016-01-25 18:44:51 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-25 11:14:30 -0800
commit19588ce1399381129f86b4cc54e0c6522852e666 (patch)
tree7327dbde6a2ec8a77354284434a670c7b50ba178 /qt-mobile
parent1c3a1433e42dd69f823cea78ea2862ea14620f9b (diff)
downloadsubsurface-19588ce.tar.gz
QML UI: Add helper function to get cylinder info
Helper function that retrieves the cylinder description to be displayed in the DiveDetails. Only the first cylinder for a dive is retrieved. Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r--qt-mobile/qml/DiveDetailsView.qml3
-rw-r--r--qt-mobile/qmlmanager.cpp10
-rw-r--r--qt-mobile/qmlmanager.h1
3 files changed, 13 insertions, 1 deletions
diff --git a/qt-mobile/qml/DiveDetailsView.qml b/qt-mobile/qml/DiveDetailsView.qml
index 60ae8dfaf..6c333596c 100644
--- a/qt-mobile/qml/DiveDetailsView.qml
+++ b/qt-mobile/qml/DiveDetailsView.qml
@@ -12,6 +12,7 @@ import org.kde.plasma.mobilecomponents 0.2 as MobileComponents
Item {
id: detailsView
property int labelWidth: MobileComponents.Units.gridUnit * 10
+ property string cylinder: manager.getCylinder(dive.id)
width: parent.width
height: mainLayout.implicitHeight + MobileComponents.Units.iconSizes.large
Rectangle {
@@ -169,7 +170,7 @@ Item {
}
MobileComponents.Label {
id: txtWeight
- //text: dive.weights
+ text: weight
Layout.fillWidth: true
wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
Layout.alignment: Qt.AlignRight
diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp
index a84e46dd4..d2b5c4702 100644
--- a/qt-mobile/qmlmanager.cpp
+++ b/qt-mobile/qmlmanager.cpp
@@ -708,3 +708,13 @@ QString QMLManager::getDate(QString diveId)
datestring = get_dive_date_string(d->when);
return datestring;
}
+
+QString QMLManager::getCylinder(QString diveId)
+{
+ int dive_id = diveId.toInt();
+ struct dive *d = get_dive_by_uniq_id(dive_id);
+ QString cylinder;
+ if (d)
+ cylinder = d->cylinder[0].type.description;
+ return cylinder;
+}
diff --git a/qt-mobile/qmlmanager.h b/qt-mobile/qmlmanager.h
index 4e4646158..57b67c24a 100644
--- a/qt-mobile/qmlmanager.h
+++ b/qt-mobile/qmlmanager.h
@@ -84,6 +84,7 @@ public slots:
QString getNumber(QString diveId);
QString getDate(QString diveId);
QString getCurrentPosition();
+ QString getCylinder(QString diveId);
void deleteGpsFix(quint64 when);
void refreshDiveList();