mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Embed the information whether a dive is hidden by a filter in the dive
This way other parts of the code can act on the "hidden_by_filter" state. This also cleans up the way we track if a dive is hidden - do it in the multi filter instead of the individual filters. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
d5ffc16c36
commit
19ca90f1a0
3 changed files with 70 additions and 47 deletions
3
dive.h
3
dive.h
|
@ -306,7 +306,8 @@ struct dive {
|
||||||
tripflag_t tripflag;
|
tripflag_t tripflag;
|
||||||
dive_trip_t *divetrip;
|
dive_trip_t *divetrip;
|
||||||
struct dive *next, **pprev;
|
struct dive *next, **pprev;
|
||||||
int selected;
|
bool selected;
|
||||||
|
bool hidden_by_filter;
|
||||||
bool downloaded;
|
bool downloaded;
|
||||||
timestamp_t when;
|
timestamp_t when;
|
||||||
char *location;
|
char *location;
|
||||||
|
|
110
qt-ui/models.cpp
110
qt-ui/models.cpp
|
@ -2317,17 +2317,12 @@ bool TagFilterModel::setData(const QModelIndex &index, const QVariant &value, in
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool TagFilterModel::filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const
|
bool TagFilterModel::doFilter(dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const
|
||||||
{
|
{
|
||||||
// If there's nothing checked, this should show everythin.
|
// If there's nothing checked, this should show everything
|
||||||
if (!anyChecked) {
|
if (!anyChecked) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
QModelIndex index0 = sourceModel->index(source_row, 0, source_parent);
|
|
||||||
QVariant diveVariant = sourceModel->data(index0, DiveTripModel::DIVE_ROLE);
|
|
||||||
struct dive *d = (struct dive *)diveVariant.value<void *>();
|
|
||||||
|
|
||||||
if (!d) { // It's a trip, only show the ones that have dives to be shown.
|
if (!d) { // It's a trip, only show the ones that have dives to be shown.
|
||||||
for (int i = 0; i < sourceModel->rowCount(index0); i++) {
|
for (int i = 0; i < sourceModel->rowCount(index0); i++) {
|
||||||
if (filterRow(i, index0, sourceModel))
|
if (filterRow(i, index0, sourceModel))
|
||||||
|
@ -2340,12 +2335,7 @@ bool TagFilterModel::filterRow(int source_row, const QModelIndex &source_parent,
|
||||||
|
|
||||||
if (!head) { // last tag means "Show empty tags";
|
if (!head) { // last tag means "Show empty tags";
|
||||||
if (rowCount() > 0)
|
if (rowCount() > 0)
|
||||||
if (checkState[rowCount() - 1]) {
|
return checkState[rowCount() - 1];
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
deselect_dive(get_idx_by_uniq_id(d->id));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -2362,10 +2352,23 @@ bool TagFilterModel::filterRow(int source_row, const QModelIndex &source_parent,
|
||||||
head = head->next;
|
head = head->next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
deselect_dive(get_idx_by_uniq_id(d->id));
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool TagFilterModel::filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const
|
||||||
|
{
|
||||||
|
// If there's nothing checked, this should show everything
|
||||||
|
if (!anyChecked) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
QModelIndex index0 = sourceModel->index(source_row, 0, source_parent);
|
||||||
|
QVariant diveVariant = sourceModel->data(index0, DiveTripModel::DIVE_ROLE);
|
||||||
|
struct dive *d = (struct dive *)diveVariant.value<void *>();
|
||||||
|
|
||||||
|
return doFilter(d, index0, sourceModel);
|
||||||
|
}
|
||||||
|
|
||||||
BuddyFilterModel::BuddyFilterModel(QObject *parent) : QStringListModel(parent)
|
BuddyFilterModel::BuddyFilterModel(QObject *parent) : QStringListModel(parent)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -2376,17 +2379,12 @@ BuddyFilterModel *BuddyFilterModel::instance()
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool BuddyFilterModel::filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const
|
bool BuddyFilterModel::doFilter(dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const
|
||||||
{
|
{
|
||||||
// If there's nothing checked, this should show everythin.
|
// If there's nothing checked, this should show everything
|
||||||
if (!anyChecked) {
|
if (!anyChecked) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
QModelIndex index0 = sourceModel->index(source_row, 0, source_parent);
|
|
||||||
QVariant diveVariant = sourceModel->data(index0, DiveTripModel::DIVE_ROLE);
|
|
||||||
struct dive *d = (struct dive *)diveVariant.value<void *>();
|
|
||||||
|
|
||||||
if (!d) { // It's a trip, only show the ones that have dives to be shown.
|
if (!d) { // It's a trip, only show the ones that have dives to be shown.
|
||||||
for (int i = 0; i < sourceModel->rowCount(index0); i++) {
|
for (int i = 0; i < sourceModel->rowCount(index0); i++) {
|
||||||
if (filterRow(i, index0, sourceModel))
|
if (filterRow(i, index0, sourceModel))
|
||||||
|
@ -2401,12 +2399,7 @@ bool BuddyFilterModel::filterRow(int source_row, const QModelIndex &source_paren
|
||||||
// only show empty buddie dives if the user checked that.
|
// only show empty buddie dives if the user checked that.
|
||||||
if (diveBuddy.isEmpty() && divemaster.isEmpty()) {
|
if (diveBuddy.isEmpty() && divemaster.isEmpty()) {
|
||||||
if (rowCount() > 0)
|
if (rowCount() > 0)
|
||||||
if (checkState[rowCount() - 1]) {
|
return checkState[rowCount() - 1];
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
deselect_dive(get_idx_by_uniq_id(d->id));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -2421,10 +2414,23 @@ bool BuddyFilterModel::filterRow(int source_row, const QModelIndex &source_paren
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
deselect_dive(get_idx_by_uniq_id(d->id));
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool BuddyFilterModel::filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const
|
||||||
|
{
|
||||||
|
// If there's nothing checked, this should show everything
|
||||||
|
if (!anyChecked) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
QModelIndex index0 = sourceModel->index(source_row, 0, source_parent);
|
||||||
|
QVariant diveVariant = sourceModel->data(index0, DiveTripModel::DIVE_ROLE);
|
||||||
|
struct dive *d = (struct dive *)diveVariant.value<void *>();
|
||||||
|
|
||||||
|
return doFilter(d, index0, sourceModel);
|
||||||
|
}
|
||||||
|
|
||||||
Qt::ItemFlags BuddyFilterModel::flags(const QModelIndex &index) const
|
Qt::ItemFlags BuddyFilterModel::flags(const QModelIndex &index) const
|
||||||
{
|
{
|
||||||
return QStringListModel::flags(index) | Qt::ItemIsUserCheckable;
|
return QStringListModel::flags(index) | Qt::ItemIsUserCheckable;
|
||||||
|
@ -2496,18 +2502,12 @@ QVariant LocationFilterModel::data(const QModelIndex &index, int role) const
|
||||||
return QVariant();
|
return QVariant();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool LocationFilterModel::filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const
|
bool LocationFilterModel::doFilter(struct dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const
|
||||||
{
|
{
|
||||||
|
|
||||||
// If there's nothing checked, this should show everythin.
|
|
||||||
if (!anyChecked) {
|
if (!anyChecked) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
QModelIndex index0 = sourceModel->index(source_row, 0, source_parent);
|
|
||||||
QVariant diveVariant = sourceModel->data(index0, DiveTripModel::DIVE_ROLE);
|
|
||||||
struct dive *d = (struct dive *)diveVariant.value<void *>();
|
|
||||||
|
|
||||||
if (!d) { // It's a trip, only show the ones that have dives to be shown.
|
if (!d) { // It's a trip, only show the ones that have dives to be shown.
|
||||||
for (int i = 0; i < sourceModel->rowCount(index0); i++) {
|
for (int i = 0; i < sourceModel->rowCount(index0); i++) {
|
||||||
if (filterRow(i, index0, sourceModel))
|
if (filterRow(i, index0, sourceModel))
|
||||||
|
@ -2518,20 +2518,15 @@ bool LocationFilterModel::filterRow(int source_row, const QModelIndex &source_pa
|
||||||
|
|
||||||
// Checked means 'Show', Unchecked means 'Hide'.
|
// Checked means 'Show', Unchecked means 'Hide'.
|
||||||
QString location(d->location);
|
QString location(d->location);
|
||||||
// only show empty buddie dives if the user checked that.
|
// only show empty location dives if the user checked that.
|
||||||
if (location.isEmpty()) {
|
if (location.isEmpty()) {
|
||||||
if (rowCount() > 0)
|
if (rowCount() > 0)
|
||||||
if (checkState[rowCount() - 1]) {
|
return checkState[rowCount() - 1];
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
deselect_dive(get_idx_by_uniq_id(d->id));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// have at least one buddy
|
// there is a location selected
|
||||||
QStringList locationList = stringList();
|
QStringList locationList = stringList();
|
||||||
if (!locationList.isEmpty()) {
|
if (!locationList.isEmpty()) {
|
||||||
locationList.removeLast(); // remove the "Show Empty Tags";
|
locationList.removeLast(); // remove the "Show Empty Tags";
|
||||||
|
@ -2541,10 +2536,24 @@ bool LocationFilterModel::filterRow(int source_row, const QModelIndex &source_pa
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
deselect_dive(get_idx_by_uniq_id(d->id));
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool LocationFilterModel::filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const
|
||||||
|
{
|
||||||
|
|
||||||
|
// If there's nothing checked, this should show everything
|
||||||
|
if (!anyChecked) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
QModelIndex index0 = sourceModel->index(source_row, 0, source_parent);
|
||||||
|
QVariant diveVariant = sourceModel->data(index0, DiveTripModel::DIVE_ROLE);
|
||||||
|
struct dive *d = (struct dive *)diveVariant.value<void *>();
|
||||||
|
|
||||||
|
return doFilter(d, index0, sourceModel);
|
||||||
|
}
|
||||||
|
|
||||||
Qt::ItemFlags LocationFilterModel::flags(const QModelIndex &index) const
|
Qt::ItemFlags LocationFilterModel::flags(const QModelIndex &index) const
|
||||||
{
|
{
|
||||||
return QStringListModel::flags(index) | Qt::ItemIsUserCheckable;
|
return QStringListModel::flags(index) | Qt::ItemIsUserCheckable;
|
||||||
|
@ -2610,10 +2619,19 @@ bool MultiFilterSortModel::filterAcceptsRow(int source_row, const QModelIndex &s
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
bool shouldShow = true;
|
bool shouldShow = true;
|
||||||
|
QModelIndex index0 = sourceModel()->index(source_row, 0, source_parent);
|
||||||
|
QVariant diveVariant = sourceModel()->data(index0, DiveTripModel::DIVE_ROLE);
|
||||||
|
struct dive *d = (struct dive *)diveVariant.value<void *>();
|
||||||
|
|
||||||
Q_FOREACH (MultiFilterInterface *model, models) {
|
Q_FOREACH (MultiFilterInterface *model, models) {
|
||||||
if (!model->filterRow(source_row, source_parent, sourceModel())) {
|
if (!model->doFilter(d, index0, sourceModel()))
|
||||||
shouldShow = false;
|
shouldShow = false;
|
||||||
}
|
}
|
||||||
|
// if it's a dive, mark it accordingly
|
||||||
|
if (d) {
|
||||||
|
if (d->selected)
|
||||||
|
d->selected = shouldShow;
|
||||||
|
d->hidden_by_filter = !shouldShow;
|
||||||
}
|
}
|
||||||
return shouldShow;
|
return shouldShow;
|
||||||
}
|
}
|
||||||
|
|
|
@ -442,6 +442,7 @@ class MultiFilterInterface {
|
||||||
public:
|
public:
|
||||||
MultiFilterInterface() : checkState(NULL){};
|
MultiFilterInterface() : checkState(NULL){};
|
||||||
virtual bool filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const = 0;
|
virtual bool filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const = 0;
|
||||||
|
virtual bool doFilter(struct dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const = 0;
|
||||||
virtual void clearFilter() = 0;
|
virtual void clearFilter() = 0;
|
||||||
bool *checkState;
|
bool *checkState;
|
||||||
bool anyChecked;
|
bool anyChecked;
|
||||||
|
@ -455,6 +456,7 @@ public:
|
||||||
virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
|
virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
|
||||||
virtual Qt::ItemFlags flags(const QModelIndex &index) const;
|
virtual Qt::ItemFlags flags(const QModelIndex &index) const;
|
||||||
virtual bool filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const;
|
virtual bool filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const;
|
||||||
|
bool doFilter(struct dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const;
|
||||||
void clearFilter();
|
void clearFilter();
|
||||||
public
|
public
|
||||||
slots:
|
slots:
|
||||||
|
@ -472,6 +474,7 @@ public:
|
||||||
virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
|
virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
|
||||||
virtual Qt::ItemFlags flags(const QModelIndex &index) const;
|
virtual Qt::ItemFlags flags(const QModelIndex &index) const;
|
||||||
virtual bool filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const;
|
virtual bool filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const;
|
||||||
|
bool doFilter(struct dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const;
|
||||||
void clearFilter();
|
void clearFilter();
|
||||||
public
|
public
|
||||||
slots:
|
slots:
|
||||||
|
@ -489,6 +492,7 @@ public:
|
||||||
virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
|
virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
|
||||||
virtual Qt::ItemFlags flags(const QModelIndex &index) const;
|
virtual Qt::ItemFlags flags(const QModelIndex &index) const;
|
||||||
virtual bool filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const;
|
virtual bool filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const;
|
||||||
|
bool doFilter(struct dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const;
|
||||||
void clearFilter();
|
void clearFilter();
|
||||||
public
|
public
|
||||||
slots:
|
slots:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue