summaryrefslogtreecommitdiffstats
path: root/qt-mobile
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-03-02 04:41:36 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-03-02 04:46:26 -0800
commit3b37844708d0bcbac3dbec86a44d6dfff69639a0 (patch)
treedb4674939cf3312662ae0eaa959cb6291a8d5462 /qt-mobile
parentb275e604c13004427e37cc1f42139d2f412158f2 (diff)
downloadsubsurface-3b37844708d0bcbac3dbec86a44d6dfff69639a0.tar.gz
Add helper functions to identify the position of a dive in the dive list
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r--qt-mobile/qmlmanager.cpp8
-rw-r--r--qt-mobile/qmlmanager.h1
2 files changed, 9 insertions, 0 deletions
diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp
index 9a0a97f65..39b02e6a9 100644
--- a/qt-mobile/qmlmanager.cpp
+++ b/qt-mobile/qmlmanager.cpp
@@ -882,6 +882,14 @@ void QMLManager::showMap(const QString& location)
}
}
+// where in the QML dive list is that dive?
+int QMLManager::getIndex(const QString &diveId)
+{
+ int dive_id = diveId.toInt();
+ int idx = DiveListModel::instance()->getDiveIdx(dive_id);
+ return idx;
+}
+
QString QMLManager::getNumber(const QString& diveId)
{
int dive_id = diveId.toInt();
diff --git a/qt-mobile/qmlmanager.h b/qt-mobile/qmlmanager.h
index 41ca2271f..17fe699e4 100644
--- a/qt-mobile/qmlmanager.h
+++ b/qt-mobile/qmlmanager.h
@@ -103,6 +103,7 @@ public slots:
void finishSetup();
void openLocalThenRemote(QString url);
void showMap(const QString& location);
+ int getIndex(const QString& diveId);
QString getNumber(const QString& diveId);
QString getDate(const QString& diveId);
QString getCurrentPosition();