mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-26 20:35:59 +00:00
19 lines
No EOL
553 B
C++
19 lines
No EOL
553 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020, The Monero Project.
|
|
|
|
#include "CoinsProxyModel.h"
|
|
#include "CoinsModel.h"
|
|
|
|
CoinsProxyModel::CoinsProxyModel(QObject *parent)
|
|
: QSortFilterProxyModel(parent)
|
|
{
|
|
setSortRole(Qt::UserRole);
|
|
}
|
|
|
|
bool CoinsProxyModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const
|
|
{
|
|
QModelIndex spentIndex = sourceModel()->index(sourceRow, CoinsModel::Spent, sourceParent);
|
|
bool isSpent = sourceModel()->data(spentIndex).toBool();
|
|
|
|
return !(!m_showSpent && isSpent);
|
|
} |