diff options
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/qml/DiveDetailsView.qml | 6 | ||||
-rw-r--r-- | qt-mobile/qmlmanager.cpp | 36 | ||||
-rw-r--r-- | qt-mobile/qmlmanager.h | 2 |
3 files changed, 2 insertions, 42 deletions
diff --git a/qt-mobile/qml/DiveDetailsView.qml b/qt-mobile/qml/DiveDetailsView.qml index 7479ccb7a..d72f0e5a9 100644 --- a/qt-mobile/qml/DiveDetailsView.qml +++ b/qt-mobile/qml/DiveDetailsView.qml @@ -12,8 +12,6 @@ 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) - property string weight: manager.getWeights(dive.id) width: parent.width height: mainLayout.implicitHeight + MobileComponents.Units.iconSizes.large Rectangle { @@ -168,7 +166,7 @@ Item { } MobileComponents.Label { id: txtWeight - text: weight + text: dive.sumWeight Layout.fillWidth: true wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere } @@ -180,7 +178,7 @@ Item { } MobileComponents.Label { id: txtCylinder - text: cylinder + text: dive.getCylinder Layout.fillWidth: true wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere } diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp index fb3c6de51..e80c2c082 100644 --- a/qt-mobile/qmlmanager.cpp +++ b/qt-mobile/qmlmanager.cpp @@ -708,39 +708,3 @@ QString QMLManager::getDate(const QString& diveId) datestring = get_dive_date_string(d->when); return datestring; } - -QString QMLManager::getCylinder(const QString& diveId) -{ - int dive_id = diveId.toInt(); - struct dive *d = get_dive_by_uniq_id(dive_id); - QString cylinder; - if (d){ - if (d->cylinder[1].type.description != NULL){ - cylinder = "Multiple"; - } - else { - cylinder = d->cylinder[0].type.description; - } - } - return cylinder; -} - -QString QMLManager::getWeights(const 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), 'f', 1) + " lbs"; - } - else { - weights = QString::number(weight/1000, 'f', 1) + " kg"; - } - } - return weights; -} diff --git a/qt-mobile/qmlmanager.h b/qt-mobile/qmlmanager.h index b53af4d04..eb225a6cf 100644 --- a/qt-mobile/qmlmanager.h +++ b/qt-mobile/qmlmanager.h @@ -87,8 +87,6 @@ public slots: QString getNumber(const QString& diveId); QString getDate(const QString& diveId); QString getCurrentPosition(); - QString getCylinder(const QString& diveId); - QString getWeights(const QString& diveId); void deleteGpsFix(quint64 when); void refreshDiveList(); |