mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-10 07:08:07 +00:00
34fa178243
- Split "Description" column into "Type" and "Address", to make sorting easier (and facilitate filtering in the future) - Merged "credit" and "debit" columns into one "amount" column that can be black (positive) or red (negative)
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
#ifndef TRANSACTIONTABLEMODEL_H
|
|
#define TRANSACTIONTABLEMODEL_H
|
|
|
|
#include <QAbstractTableModel>
|
|
#include <QStringList>
|
|
|
|
class CWallet;
|
|
class TransactionTablePriv;
|
|
class TransactionRecord;
|
|
|
|
class TransactionTableModel : public QAbstractTableModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TransactionTableModel(CWallet* wallet, QObject *parent = 0);
|
|
~TransactionTableModel();
|
|
|
|
enum {
|
|
Status = 0,
|
|
Date = 1,
|
|
Type = 2,
|
|
ToAddress = 3,
|
|
Amount = 4
|
|
} ColumnIndex;
|
|
|
|
enum {
|
|
TypeRole = Qt::UserRole,
|
|
LongDescriptionRole = Qt::UserRole+1
|
|
} RoleIndex;
|
|
|
|
/* TypeRole values */
|
|
static const QString Sent;
|
|
static const QString Received;
|
|
static const QString Other;
|
|
|
|
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;
|
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
QModelIndex index(int row, int column, const QModelIndex & parent = QModelIndex()) const;
|
|
private:
|
|
CWallet* wallet;
|
|
QStringList columns;
|
|
TransactionTablePriv *priv;
|
|
|
|
std::string lookupAddress(const std::string &address) const;
|
|
QVariant formatTxStatus(const TransactionRecord *wtx) const;
|
|
QVariant formatTxDate(const TransactionRecord *wtx) const;
|
|
QVariant formatTxType(const TransactionRecord *wtx) const;
|
|
QVariant formatTxToAddress(const TransactionRecord *wtx) const;
|
|
QVariant formatTxAmount(const TransactionRecord *wtx) const;
|
|
QVariant formatTxDecoration(const TransactionRecord *wtx) const;
|
|
|
|
private slots:
|
|
void update();
|
|
|
|
friend class TransactionTablePriv;
|
|
};
|
|
|
|
#endif
|
|
|