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>
|
|
|
|
|
2011-06-26 19:23:24 +02:00
|
|
|
class CWallet;
|
2011-06-01 15:33:33 +02:00
|
|
|
class TransactionTablePriv;
|
2011-05-27 08:20:23 +02:00
|
|
|
class TransactionRecord;
|
2011-07-02 13:45:59 +02:00
|
|
|
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
|
|
|
|
public:
|
2011-07-02 13:45:59 +02:00
|
|
|
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,
|
2011-06-26 22:47:02 +02:00
|
|
|
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 */
|
2011-06-10 15:05:51 +02:00
|
|
|
TypeRole = Qt::UserRole,
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Date and time this transaction was created */
|
2011-06-28 21:41:56 +02:00
|
|
|
DateRole,
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Long description (HTML format) */
|
2011-06-28 21:41:56 +02:00
|
|
|
LongDescriptionRole,
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Address of transaction */
|
2011-06-28 21:41:56 +02:00
|
|
|
AddressRole,
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Label of address related to transaction */
|
2011-06-28 21:41:56 +02:00
|
|
|
LabelRole,
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Net amount of transaction */
|
2011-08-03 20:52:18 +02:00
|
|
|
AmountRole,
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Unique identifier */
|
2011-07-07 14:27:16 +02:00
|
|
|
TxIDRole,
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Is transaction confirmed? */
|
2011-07-07 14:27:16 +02:00
|
|
|
ConfirmedRole,
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Formatted amount, without brackets when unconfirmed */
|
2011-07-07 14:27:16 +02:00
|
|
|
FormattedAmountRole
|
2011-11-13 13:19:52 +01:00
|
|
|
};
|
2011-05-22 19:32:37 +02: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;
|
2011-06-10 20:49:50 +02:00
|
|
|
QModelIndex index(int row, int column, const QModelIndex & parent = QModelIndex()) const;
|
2011-05-08 16:30:10 +02:00
|
|
|
private:
|
2011-06-26 19:23:24 +02:00
|
|
|
CWallet* wallet;
|
2011-07-02 13:45:59 +02:00
|
|
|
WalletModel *walletModel;
|
2011-05-08 16:30:10 +02:00
|
|
|
QStringList columns;
|
2011-06-01 15:33:33 +02:00
|
|
|
TransactionTablePriv *priv;
|
2011-05-27 08:20:23 +02:00
|
|
|
|
2011-07-30 17:42:02 +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
|
|
|
|
|
|
|
private slots:
|
|
|
|
void update();
|
2011-06-03 20:48:03 +02:00
|
|
|
|
|
|
|
friend class TransactionTablePriv;
|
2011-05-08 16:30:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|