Files
pay/WalletHistoryModel.h
T

78 lines
2.6 KiB
C++
Raw Permalink Normal View History

2020-05-24 13:20:03 +02:00
/*
* This file is part of the Flowee project
2021-04-29 15:49:16 +02:00
* Copyright (C) 2020-2021 Tom Zander <tom@flowee.org>
2020-05-24 13:20:03 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef WALLETHSTORYMODEL_H
#define WALLETHSTORYMODEL_H
#include <QAbstractListModel>
class Wallet;
class WalletHistoryModel : public QAbstractListModel
{
Q_OBJECT
2021-11-01 16:30:00 +01:00
Q_PROPERTY(int lastSyncIndicator READ lastSyncIndicator WRITE setLastSyncIndicator RESET resetLastSyncIndicator NOTIFY lastSyncIndicatorChanged)
2020-05-24 13:20:03 +02:00
public:
explicit WalletHistoryModel(Wallet *wallet, QObject *parent = nullptr);
enum {
TxId = Qt::UserRole,
2021-11-01 16:30:00 +01:00
NewTransaction, ///< bool, if this transaction is newer than lastSyncIndicator
2020-05-24 13:20:03 +02:00
MinedHeight, ///< int, height of block this tx was mined at.
2021-04-29 15:49:16 +02:00
MinedDate, ///< A date-time object when the item was mined
2020-12-17 23:12:39 +01:00
FundsIn, ///< value (in sats) of the funds we own being spent
FundsOut, ///< value (in sats) of the outputs created we own
WalletIndex, ///< wallet-internal index for this transaction.
2021-11-16 15:01:02 +01:00
IsCoinbase,
IsCashFusion,
Comment,
2021-10-31 15:19:35 +01:00
// SavedFiatRate, // TODO
2020-05-24 13:20:03 +02:00
};
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
QHash<int, QByteArray> roleNames() const override;
2021-10-31 15:19:35 +01:00
/**
* Return a formatted date for an item in our list.
* @param offset a real number that is between 0.0 and 1.0, indicating the location of the item.
* The value 0.0 is the most recent item.
*/
2021-10-30 18:57:40 +02:00
Q_INVOKABLE QString dateForItem(qreal offset) const;
2021-11-01 16:30:00 +01:00
int lastSyncIndicator() const;
void setLastSyncIndicator(int x);
void resetLastSyncIndicator();
signals:
void lastSyncIndicatorChanged();
2020-05-24 13:20:03 +02:00
private slots:
void appendTransactions(int firstNew, int count);
void transactionConfirmed(int txIndex);
2020-05-24 13:20:03 +02:00
private:
void createMap();
QVector<int> m_rowsProxy;
Wallet *m_wallet;
2021-11-01 16:30:00 +01:00
int m_lastSyncIndicator = 0;
2020-05-24 13:20:03 +02:00
};
#endif