diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2017-12-23 15:49:21 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-12-24 08:24:11 -0800 |
commit | 7451517e4a5e9aeffe31f1cd7346b07c0c9e15ac (patch) | |
tree | 328e5aa5c0bb922640a53a2cc54546f36dfa79ec /qt-models/filtermodels.h | |
parent | 668635e98eb32e3c5ffd3cb3e65da51c71db2975 (diff) | |
download | subsurface-7451517e4a5e9aeffe31f1cd7346b07c0c9e15ac.tar.gz |
Add select-all, deselect-all and invert-selection options to filters
To every filter list add a menu button that allows selection of all,
selection of none or inversion of selection.
Implements #435.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/filtermodels.h')
-rw-r--r-- | qt-models/filtermodels.h | 2 |
1 files changed, 2 insertions, 0 deletions
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<char> checkState; bool anyChecked; protected: |