2014-12-17 01:47:57 +00:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin Core developers
|
2014-12-13 04:09:33 +00:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 15:20:43 +00:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 15:16:40 +00:00
|
|
|
#ifndef BITCOIN_QT_TRANSACTIONTABLEMODEL_H
|
|
|
|
#define BITCOIN_QT_TRANSACTIONTABLEMODEL_H
|
2011-05-08 14:30:10 +00:00
|
|
|
|
2014-07-25 15:43:41 +00:00
|
|
|
#include "bitcoinunits.h"
|
|
|
|
|
2011-05-08 14:30:10 +00:00
|
|
|
#include <QAbstractTableModel>
|
|
|
|
#include <QStringList>
|
|
|
|
|
2011-05-27 06:20:23 +00:00
|
|
|
class TransactionRecord;
|
2013-04-13 05:13:08 +00:00
|
|
|
class TransactionTablePriv;
|
2011-07-02 11:45:59 +00:00
|
|
|
class WalletModel;
|
2011-05-27 06:20:23 +00:00
|
|
|
|
2013-04-13 05:13:08 +00:00
|
|
|
class CWallet;
|
|
|
|
|
2011-11-13 12:19:52 +00:00
|
|
|
/** UI model for the transaction table of a wallet.
|
|
|
|
*/
|
2011-05-08 14:30:10 +00:00
|
|
|
class TransactionTableModel : public QAbstractTableModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-01-23 20:51:02 +00:00
|
|
|
|
2011-05-08 14:30:10 +00:00
|
|
|
public:
|
2011-07-02 11:45:59 +00:00
|
|
|
explicit TransactionTableModel(CWallet* wallet, WalletModel *parent = 0);
|
2011-05-27 06:20:23 +00:00
|
|
|
~TransactionTableModel();
|
2011-05-08 20:23:31 +00:00
|
|
|
|
2011-11-13 12:19:52 +00:00
|
|
|
enum ColumnIndex {
|
2011-05-08 20:23:31 +00:00
|
|
|
Status = 0,
|
2014-08-10 00:26:04 +00:00
|
|
|
Watchonly = 1,
|
|
|
|
Date = 2,
|
|
|
|
Type = 3,
|
|
|
|
ToAddress = 4,
|
|
|
|
Amount = 5
|
2011-11-13 12:19:52 +00:00
|
|
|
};
|
2011-05-08 14:30:10 +00:00
|
|
|
|
2011-11-13 12:19:52 +00:00
|
|
|
/** Roles to get specific information from a transaction row.
|
|
|
|
These are independent of column.
|
|
|
|
*/
|
|
|
|
enum RoleIndex {
|
|
|
|
/** Type of transaction */
|
2011-06-10 13:05:51 +00:00
|
|
|
TypeRole = Qt::UserRole,
|
2011-11-13 12:19:52 +00:00
|
|
|
/** Date and time this transaction was created */
|
2011-06-28 19:41:56 +00:00
|
|
|
DateRole,
|
2014-08-10 00:26:04 +00:00
|
|
|
/** Watch-only boolean */
|
|
|
|
WatchonlyRole,
|
|
|
|
/** Watch-only icon */
|
|
|
|
WatchonlyDecorationRole,
|
2011-11-13 12:19:52 +00:00
|
|
|
/** Long description (HTML format) */
|
2011-06-28 19:41:56 +00:00
|
|
|
LongDescriptionRole,
|
2011-11-13 12:19:52 +00:00
|
|
|
/** Address of transaction */
|
2011-06-28 19:41:56 +00:00
|
|
|
AddressRole,
|
2011-11-13 12:19:52 +00:00
|
|
|
/** Label of address related to transaction */
|
2011-06-28 19:41:56 +00:00
|
|
|
LabelRole,
|
2011-11-13 12:19:52 +00:00
|
|
|
/** Net amount of transaction */
|
2011-08-03 18:52:18 +00:00
|
|
|
AmountRole,
|
2011-11-13 12:19:52 +00:00
|
|
|
/** Unique identifier */
|
2011-07-07 12:27:16 +00:00
|
|
|
TxIDRole,
|
2014-04-24 20:21:45 +00:00
|
|
|
/** Transaction hash */
|
|
|
|
TxHashRole,
|
2011-11-13 12:19:52 +00:00
|
|
|
/** Is transaction confirmed? */
|
2011-07-07 12:27:16 +00:00
|
|
|
ConfirmedRole,
|
2011-11-13 12:19:52 +00:00
|
|
|
/** Formatted amount, without brackets when unconfirmed */
|
2014-02-14 06:59:07 +00:00
|
|
|
FormattedAmountRole,
|
|
|
|
/** Transaction status (TransactionRecord::Status) */
|
|
|
|
StatusRole
|
2011-11-13 12:19:52 +00:00
|
|
|
};
|
2011-05-22 17:32:37 +00:00
|
|
|
|
2011-05-08 14:30:10 +00:00
|
|
|
int rowCount(const QModelIndex &parent) const;
|
|
|
|
int columnCount(const QModelIndex &parent) const;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
2011-06-10 18:49:50 +00:00
|
|
|
QModelIndex index(int row, int column, const QModelIndex & parent = QModelIndex()) const;
|
2014-10-28 18:52:21 +00:00
|
|
|
bool processingQueuedTransactions() { return fProcessingQueuedTransactions; }
|
2013-01-23 20:51:02 +00:00
|
|
|
|
2011-05-08 14:30:10 +00:00
|
|
|
private:
|
2011-06-26 17:23:24 +00:00
|
|
|
CWallet* wallet;
|
2011-07-02 11:45:59 +00:00
|
|
|
WalletModel *walletModel;
|
2011-05-08 14:30:10 +00:00
|
|
|
QStringList columns;
|
2011-06-01 13:33:33 +00:00
|
|
|
TransactionTablePriv *priv;
|
2014-10-28 18:52:21 +00:00
|
|
|
bool fProcessingQueuedTransactions;
|
|
|
|
|
|
|
|
void subscribeToCoreSignals();
|
|
|
|
void unsubscribeFromCoreSignals();
|
2011-05-27 06:20:23 +00:00
|
|
|
|
2011-07-30 15:42:02 +00:00
|
|
|
QString lookupAddress(const std::string &address, bool tooltip) const;
|
|
|
|
QVariant addressColor(const TransactionRecord *wtx) const;
|
2011-08-05 13:35:52 +00:00
|
|
|
QString formatTxStatus(const TransactionRecord *wtx) const;
|
|
|
|
QString formatTxDate(const TransactionRecord *wtx) const;
|
2011-07-31 15:05:34 +00:00
|
|
|
QString formatTxType(const TransactionRecord *wtx) const;
|
|
|
|
QString formatTxToAddress(const TransactionRecord *wtx, bool tooltip) const;
|
2014-07-07 21:27:09 +00:00
|
|
|
QString formatTxAmount(const TransactionRecord *wtx, bool showUnconfirmed=true, BitcoinUnits::SeparatorStyle separators=BitcoinUnits::separatorStandard) const;
|
2011-08-05 13:35:52 +00:00
|
|
|
QString formatTooltip(const TransactionRecord *rec) const;
|
|
|
|
QVariant txStatusDecoration(const TransactionRecord *wtx) const;
|
2014-08-10 00:26:04 +00:00
|
|
|
QVariant txWatchonlyDecoration(const TransactionRecord *wtx) const;
|
2011-07-31 15:05:34 +00:00
|
|
|
QVariant txAddressDecoration(const TransactionRecord *wtx) const;
|
2011-05-28 18:32:19 +00:00
|
|
|
|
2012-05-05 14:07:14 +00:00
|
|
|
public slots:
|
2014-10-28 18:52:21 +00:00
|
|
|
/* New transaction, or transaction changed status */
|
|
|
|
void updateTransaction(const QString &hash, int status, bool showTransaction);
|
2012-05-05 14:07:14 +00:00
|
|
|
void updateConfirmations();
|
2012-06-18 20:48:35 +00:00
|
|
|
void updateDisplayUnit();
|
2014-06-07 06:20:22 +00:00
|
|
|
/** Updates the column title to "Amount (DisplayUnit)" and emits headerDataChanged() signal for table headers to react. */
|
|
|
|
void updateAmountColumnTitle();
|
2014-10-28 18:52:21 +00:00
|
|
|
/* Needed to update fProcessingQueuedTransactions through a QueuedConnection */
|
|
|
|
void setProcessingQueuedTransactions(bool value) { fProcessingQueuedTransactions = value; }
|
2011-06-03 18:48:03 +00:00
|
|
|
|
|
|
|
friend class TransactionTablePriv;
|
2011-05-08 14:30:10 +00:00
|
|
|
};
|
|
|
|
|
2014-11-03 15:16:40 +00:00
|
|
|
#endif // BITCOIN_QT_TRANSACTIONTABLEMODEL_H
|