dogecoin/src/qt/transactiontablemodel.h

87 lines
2.7 KiB
C
Raw Normal View History

2011-05-08 22:23:31 +02:00
#ifndef TRANSACTIONTABLEMODEL_H
#define TRANSACTIONTABLEMODEL_H
2011-05-08 16:30:10 +02:00
#include <QAbstractTableModel>
#include <QStringList>
class CWallet;
2011-06-01 15:33:33 +02:00
class TransactionTablePriv;
2011-05-27 08:20:23 +02:00
class TransactionRecord;
class WalletModel;
2011-05-27 08:20:23 +02:00
2011-11-13 13:19:52 +01:00
/** UI model for the transaction table of a wallet.
*/
2011-05-08 16:30:10 +02:00
class TransactionTableModel : public QAbstractTableModel
{
Q_OBJECT
2011-05-08 16:30:10 +02:00
public:
explicit TransactionTableModel(CWallet* wallet, WalletModel *parent = 0);
2011-05-27 08:20:23 +02:00
~TransactionTableModel();
2011-05-08 22:23:31 +02:00
2011-11-13 13:19:52 +01:00
enum ColumnIndex {
2011-05-08 22:23:31 +02:00
Status = 0,
Date = 1,
Type = 2,
ToAddress = 3,
Amount = 4
2011-11-13 13:19:52 +01:00
};
2011-05-08 16:30:10 +02:00
2011-11-13 13:19:52 +01:00
/** Roles to get specific information from a transaction row.
These are independent of column.
*/
enum RoleIndex {
/** Type of transaction */
TypeRole = Qt::UserRole,
2011-11-13 13:19:52 +01:00
/** Date and time this transaction was created */
DateRole,
2011-11-13 13:19:52 +01:00
/** Long description (HTML format) */
LongDescriptionRole,
2011-11-13 13:19:52 +01:00
/** Address of transaction */
AddressRole,
2011-11-13 13:19:52 +01:00
/** Label of address related to transaction */
LabelRole,
2011-11-13 13:19:52 +01:00
/** Net amount of transaction */
AmountRole,
2011-11-13 13:19:52 +01:00
/** Unique identifier */
TxIDRole,
2011-11-13 13:19:52 +01:00
/** Is transaction confirmed? */
ConfirmedRole,
2011-11-13 13:19:52 +01:00
/** Formatted amount, without brackets when unconfirmed */
FormattedAmountRole
2011-11-13 13:19:52 +01:00
};
2011-05-08 16:30:10 +02: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;
QModelIndex index(int row, int column, const QModelIndex & parent = QModelIndex()) const;
2011-05-08 16:30:10 +02:00
private:
CWallet* wallet;
WalletModel *walletModel;
2011-05-08 16:30:10 +02:00
QStringList columns;
2011-06-01 15:33:33 +02:00
TransactionTablePriv *priv;
int cachedNumBlocks;
2011-05-27 08:20:23 +02:00
QString lookupAddress(const std::string &address, bool tooltip) const;
QVariant addressColor(const TransactionRecord *wtx) const;
2011-08-05 15:35:52 +02:00
QString formatTxStatus(const TransactionRecord *wtx) const;
QString formatTxDate(const TransactionRecord *wtx) const;
2011-07-31 17:05:34 +02:00
QString formatTxType(const TransactionRecord *wtx) const;
QString formatTxToAddress(const TransactionRecord *wtx, bool tooltip) const;
2011-08-05 15:35:52 +02:00
QString formatTxAmount(const TransactionRecord *wtx, bool showUnconfirmed=true) const;
QString formatTooltip(const TransactionRecord *rec) const;
QVariant txStatusDecoration(const TransactionRecord *wtx) const;
2011-07-31 17:05:34 +02:00
QVariant txAddressDecoration(const TransactionRecord *wtx) const;
2011-05-28 20:32:19 +02:00
public slots:
void updateTransaction(const QString &hash, int status);
void updateConfirmations();
void updateDisplayUnit();
2011-06-03 20:48:03 +02:00
friend class TransactionTablePriv;
2011-05-08 16:30:10 +02:00
};
#endif // TRANSACTIONTABLEMODEL_H