Bitcoin Core 29.99.0
P2P Digital Currency
transactiontablemodel.h
Go to the documentation of this file.
1// Copyright (c) 2011-2020 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_QT_TRANSACTIONTABLEMODEL_H
6#define BITCOIN_QT_TRANSACTIONTABLEMODEL_H
7
8#include <qt/bitcoinunits.h>
9
10#include <QAbstractTableModel>
11#include <QStringList>
12
13#include <memory>
14
15namespace interfaces {
16class Handler;
17}
18
19class PlatformStyle;
22class WalletModel;
23
26class TransactionTableModel : public QAbstractTableModel
27{
28 Q_OBJECT
29
30public:
31 explicit TransactionTableModel(const PlatformStyle *platformStyle, WalletModel *parent = nullptr);
33
35 Status = 0,
36 Date = 1,
37 Type = 2,
39 Amount = 4
40 };
41
45 enum RoleIndex {
47 TypeRole = Qt::UserRole,
72 };
73
74 int rowCount(const QModelIndex &parent) const override;
75 int columnCount(const QModelIndex &parent) const override;
76 QVariant data(const QModelIndex &index, int role) const override;
77 QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
78 QModelIndex index(int row, int column, const QModelIndex & parent = QModelIndex()) const override;
80
81private:
83 std::unique_ptr<interfaces::Handler> m_handler_transaction_changed;
84 std::unique_ptr<interfaces::Handler> m_handler_show_progress;
85 QStringList columns;
89
92
93 QString lookupAddress(const std::string &address, bool tooltip) const;
94 QVariant addressColor(const TransactionRecord *wtx) const;
95 QString formatTxStatus(const TransactionRecord *wtx) const;
96 QString formatTxDate(const TransactionRecord *wtx) const;
97 QString formatTxType(const TransactionRecord *wtx) const;
98 QString formatTxToAddress(const TransactionRecord *wtx, bool tooltip) const;
99 QString formatTxAmount(const TransactionRecord *wtx, bool showUnconfirmed=true, BitcoinUnits::SeparatorStyle separators=BitcoinUnits::SeparatorStyle::STANDARD) const;
100 QString formatTooltip(const TransactionRecord *rec) const;
101 QVariant txStatusDecoration(const TransactionRecord *wtx) const;
102 QVariant txAddressDecoration(const TransactionRecord *wtx) const;
103
104public Q_SLOTS:
105 /* New transaction, or transaction changed status */
106 void updateTransaction(const QString &hash, int status, bool showTransaction);
107 void updateConfirmations();
108 void updateDisplayUnit();
111 /* Needed to update fProcessingQueuedTransactions through a QueuedConnection */
113
115};
116
117#endif // BITCOIN_QT_TRANSACTIONTABLEMODEL_H
UI model for a transaction.
UI model for the transaction table of a wallet.
QVariant txStatusDecoration(const TransactionRecord *wtx) const
TransactionTablePriv * priv
QVariant addressColor(const TransactionRecord *wtx) const
RoleIndex
Roles to get specific information from a transaction row.
@ TxPlainTextRole
Whole transaction as plain text.
@ LabelRole
Label of address related to transaction.
@ LongDescriptionRole
Long description (HTML format)
@ TypeRole
Type of transaction.
@ StatusRole
Transaction status (TransactionRecord::Status)
@ DateRole
Date and time this transaction was created.
@ TxHashRole
Transaction hash.
@ TxHexRole
Transaction data, hex-encoded.
@ RawDecorationRole
Unprocessed icon.
@ AddressRole
Address of transaction.
@ AmountRole
Net amount of transaction.
@ ConfirmedRole
Is transaction confirmed?
@ FormattedAmountRole
Formatted amount, without brackets when unconfirmed.
QString formatTooltip(const TransactionRecord *rec) const
QString formatTxAmount(const TransactionRecord *wtx, bool showUnconfirmed=true, BitcoinUnits::SeparatorStyle separators=BitcoinUnits::SeparatorStyle::STANDARD) const
QVariant data(const QModelIndex &index, int role) const override
bool processingQueuedTransactions() const
void updateTransaction(const QString &hash, int status, bool showTransaction)
QString formatTxStatus(const TransactionRecord *wtx) const
void setProcessingQueuedTransactions(bool value)
std::unique_ptr< interfaces::Handler > m_handler_transaction_changed
int columnCount(const QModelIndex &parent) const override
std::unique_ptr< interfaces::Handler > m_handler_show_progress
TransactionTableModel(const PlatformStyle *platformStyle, WalletModel *parent=nullptr)
int rowCount(const QModelIndex &parent) const override
void updateAmountColumnTitle()
Updates the column title to "Amount (DisplayUnit)" and emits headerDataChanged() signal for table hea...
QString formatTxToAddress(const TransactionRecord *wtx, bool tooltip) const
QVariant headerData(int section, Qt::Orientation orientation, int role) const override
const PlatformStyle * platformStyle
QModelIndex index(int row, int column, const QModelIndex &parent=QModelIndex()) const override
QString formatTxType(const TransactionRecord *wtx) const
QString lookupAddress(const std::string &address, bool tooltip) const
QVariant txAddressDecoration(const TransactionRecord *wtx) const
QString formatTxDate(const TransactionRecord *wtx) const
Interface to Bitcoin wallet from Qt view code.
Definition: walletmodel.h:49