summaryrefslogtreecommitdiffstats
path: root/qt-models/divelistmodel.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-05-28 11:48:30 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-05-28 11:54:33 -0700
commit3f0d21046e92701de200a00f12bde20a7ad3a55c (patch)
treed5b4134865a3153da692c913aa7f829f08ad8bd0 /qt-models/divelistmodel.cpp
parent84b1b63d46e4868808cc8dbd1c4fef8078ddcb16 (diff)
downloadsubsurface-3f0d21046e92701de200a00f12bde20a7ad3a55c.tar.gz
QML UI: add downloaded dives to dive list
This already takes into account which of those dives were selected. Right now all we have is select all or none - this needs actual support in the UI, but once that's there, it will just work (famous last words). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/divelistmodel.cpp')
-rw-r--r--qt-models/divelistmodel.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/qt-models/divelistmodel.cpp b/qt-models/divelistmodel.cpp
index 2a77f34fe..a0f181405 100644
--- a/qt-models/divelistmodel.cpp
+++ b/qt-models/divelistmodel.cpp
@@ -25,6 +25,18 @@ int DiveListSortModel::getIdxForId(int id)
return -1;
}
+void DiveListSortModel::clear()
+{
+ DiveListModel *mySourceModel = qobject_cast<DiveListModel *>(sourceModel());
+ mySourceModel->clear();
+}
+
+void DiveListSortModel::addAllDives()
+{
+ DiveListModel *mySourceModel = qobject_cast<DiveListModel *>(sourceModel());
+ mySourceModel->addAllDives();
+}
+
DiveListModel *DiveListModel::m_instance = NULL;
DiveListModel::DiveListModel(QObject *parent) : QAbstractListModel(parent)