mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-25 11:55:54 +00:00
32 lines
810 B
C
32 lines
810 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef FEATHER_TRANSACTIONHISTORYPROXYMODEL_H
|
||
|
#define FEATHER_TRANSACTIONHISTORYPROXYMODEL_H
|
||
|
|
||
|
#include "libwalletqt/TransactionHistory.h"
|
||
|
#include "libwalletqt/Wallet.h"
|
||
|
|
||
|
#include <QSortFilterProxyModel>
|
||
|
|
||
|
class TransactionHistoryProxyModel : public QSortFilterProxyModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit TransactionHistoryProxyModel(Wallet *wallet, QObject* parent = nullptr);
|
||
|
bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const;
|
||
|
|
||
|
public slots:
|
||
|
void setSearchFilter(const QString& searchString){
|
||
|
m_searchRegExp.setPattern(searchString);
|
||
|
invalidateFilter();
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
Wallet * m_wallet;
|
||
|
|
||
|
QRegExp m_searchRegExp;
|
||
|
};
|
||
|
|
||
|
#endif //FEATHER_TRANSACTIONHISTORYPROXYMODEL_H
|