summaryrefslogtreecommitdiffstats
path: root/qt-models
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models')
-rw-r--r--qt-models/diveimportedmodel.cpp9
-rw-r--r--qt-models/diveimportedmodel.h1
2 files changed, 9 insertions, 1 deletions
diff --git a/qt-models/diveimportedmodel.cpp b/qt-models/diveimportedmodel.cpp
index be25d6a2a..eeb564fc8 100644
--- a/qt-models/diveimportedmodel.cpp
+++ b/qt-models/diveimportedmodel.cpp
@@ -101,6 +101,12 @@ void DiveImportedModel::selectAll()
dataChanged(index(0, 0), index(lastIndex - firstIndex, 0), QVector<int>() << Qt::CheckStateRole);
}
+void DiveImportedModel::selectRow(int row)
+{
+ checkStates[row] = !checkStates[row];
+ dataChanged(index(row, 0), index(row, 0));
+}
+
void DiveImportedModel::selectNone()
{
memset(checkStates, false, lastIndex - firstIndex + 1);
@@ -169,6 +175,7 @@ QHash<int, QByteArray> DiveImportedModel::roleNames() const {
static QHash<int, QByteArray> roles = {
{ DateTime, "datetime"},
{ Depth, "depth"},
- { Duration, "duration"}};
+ { Duration, "duration"},
+ };
return roles;
}
diff --git a/qt-models/diveimportedmodel.h b/qt-models/diveimportedmodel.h
index 240f7f4b5..21674480d 100644
--- a/qt-models/diveimportedmodel.h
+++ b/qt-models/diveimportedmodel.h
@@ -25,6 +25,7 @@ public:
public
slots:
void changeSelected(QModelIndex clickedIndex);
+ void selectRow(int row);
void selectAll();
void selectNone();