diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-03-02 04:41:36 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-02 04:46:26 -0800 |
commit | 3b37844708d0bcbac3dbec86a44d6dfff69639a0 (patch) | |
tree | db4674939cf3312662ae0eaa959cb6291a8d5462 /qt-models/divelistmodel.cpp | |
parent | b275e604c13004427e37cc1f42139d2f412158f2 (diff) | |
download | subsurface-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-models/divelistmodel.cpp')
-rw-r--r-- | qt-models/divelistmodel.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qt-models/divelistmodel.cpp b/qt-models/divelistmodel.cpp index bef2c5158..7e1844f3e 100644 --- a/qt-models/divelistmodel.cpp +++ b/qt-models/divelistmodel.cpp @@ -91,6 +91,16 @@ int DiveListModel::getDiveId(int idx) const return m_dives[idx]->id(); } +int DiveListModel::getDiveIdx(int id) const +{ + int i; + for (i = 0; i < m_dives.count(); i++) { + if (m_dives.at(i)->id() == id) + return i; + } + return -1; +} + QVariant DiveListModel::data(const QModelIndex &index, int role) const { if(index.row() < 0 || index.row() > m_dives.count()) |