From 5e86442bab680b79fbd3cd490091ab9f14252e94 Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sun, 24 Dec 2017 14:34:53 +0100 Subject: [PATCH] Add select-all, deselect-all and invert-selection options to filters To every filter list add a context menu that allows selection of all, selection of none or inversion of selection. Signed-off-by: Berthold Stoeger --- desktop-widgets/simplewidgets.cpp | 12 ++++++++++++ desktop-widgets/simplewidgets.h | 1 + qt-models/filtermodels.cpp | 15 +++++++++++++++ qt-models/filtermodels.h | 2 ++ 4 files changed, 30 insertions(+) diff --git a/desktop-widgets/simplewidgets.cpp b/desktop-widgets/simplewidgets.cpp index addbda6af..fd19cba0b 100644 --- a/desktop-widgets/simplewidgets.cpp +++ b/desktop-widgets/simplewidgets.cpp @@ -500,6 +500,13 @@ void DiveComponentSelection::buttonClicked(QAbstractButton *button) } } +void FilterBase::addContextMenuEntry(const QString &s, void (FilterModelBase::*fn)()) +{ + QAction *act = new QAction(s, this); + connect(act, &QAction::triggered, model, fn); + ui.filterList->addAction(act); +} + FilterBase::FilterBase(FilterModelBase *model_, QWidget *parent) : QWidget(parent) , model(model_) @@ -513,6 +520,11 @@ FilterBase::FilterBase(FilterModelBase *model_, QWidget *parent) filter->setFilterCaseSensitivity(Qt::CaseInsensitive); connect(ui.filterInternalList, SIGNAL(textChanged(QString)), filter, SLOT(setFilterFixedString(QString))); ui.filterList->setModel(filter); + + addContextMenuEntry(tr("Select All"), &FilterModelBase::selectAll); + addContextMenuEntry(tr("Unselect All"), &FilterModelBase::clearFilter); + addContextMenuEntry(tr("Invert Selection"), &FilterModelBase::invertSelection); + ui.filterList->setContextMenuPolicy(Qt::ActionsContextMenu); } void FilterBase::showEvent(QShowEvent *event) diff --git a/desktop-widgets/simplewidgets.h b/desktop-widgets/simplewidgets.h index 294fe26cf..fdaa4587e 100644 --- a/desktop-widgets/simplewidgets.h +++ b/desktop-widgets/simplewidgets.h @@ -167,6 +167,7 @@ public: }; class FilterBase : public QWidget { + void addContextMenuEntry(const QString &s, void (FilterModelBase::*)()); protected: FilterBase(FilterModelBase *model, QWidget *parent = 0); FilterModelBase *model; diff --git a/qt-models/filtermodels.cpp b/qt-models/filtermodels.cpp index 26759571a..0dece6f8f 100644 --- a/qt-models/filtermodels.cpp +++ b/qt-models/filtermodels.cpp @@ -100,6 +100,21 @@ void FilterModelBase::clearFilter() emit dataChanged(createIndex(0,0), createIndex(rowCount()-1, 0)); } +void FilterModelBase::selectAll() +{ + std::fill(checkState.begin(), checkState.end(), true); + anyChecked = true; + emit dataChanged(createIndex(0,0), createIndex(rowCount()-1, 0)); +} + +void FilterModelBase::invertSelection() +{ + for (char &b: checkState) + b = !b; + anyChecked = std::any_of(checkState.begin(), checkState.end(), [](char b){return !!b;}); + emit dataChanged(createIndex(0,0), createIndex(rowCount()-1, 0)); +} + SuitsFilterModel::SuitsFilterModel(QObject *parent) : FilterModelBase(parent) { } diff --git a/qt-models/filtermodels.h b/qt-models/filtermodels.h index d0c3a215a..9db5e5a97 100644 --- a/qt-models/filtermodels.h +++ b/qt-models/filtermodels.h @@ -11,6 +11,8 @@ class FilterModelBase : public QStringListModel { public: virtual bool doFilter(struct dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const = 0; void clearFilter(); + void selectAll(); + void invertSelection(); std::vector checkState; bool anyChecked; protected: