wowlet/src/model/CoinsProxyModel.h

29 lines
661 B
C
Raw Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2020-12-26 19:56:06 +00:00
// Copyright (c) 2020-2021, The Monero Project.
2021-03-30 09:52:29 +00:00
#ifndef WOWLET_COINSPROXYMODEL_H
#define WOWLET_COINSPROXYMODEL_H
#include <QSortFilterProxyModel>
#include "libwalletqt/Coins.h"
class CoinsProxyModel : public QSortFilterProxyModel
{
Q_OBJECT
public:
explicit CoinsProxyModel(QObject* parent, Coins *coins);
bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const;
public slots:
void setShowSpent(const bool showSpent){
m_showSpent = showSpent;
invalidateFilter();
}
private:
bool m_showSpent = false;
Coins *m_coins;
};
2021-03-30 09:52:29 +00:00
#endif //WOWLET_COINSPROXYMODEL_H