You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
52 lines
1.4 KiB
#ifndef TRANSACTIONTABLEMODEL_H |
|
#define TRANSACTIONTABLEMODEL_H |
|
|
|
#include <QAbstractTableModel> |
|
#include <QStringList> |
|
|
|
class TransactionTableImpl; |
|
class TransactionRecord; |
|
|
|
class TransactionTableModel : public QAbstractTableModel |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit TransactionTableModel(QObject *parent = 0); |
|
~TransactionTableModel(); |
|
|
|
enum { |
|
Status = 0, |
|
Date = 1, |
|
Description = 2, |
|
Debit = 3, |
|
Credit = 4 |
|
} ColumnIndex; |
|
|
|
enum { |
|
TypeRole = Qt::UserRole |
|
} RoleIndex; |
|
|
|
/* Transaction type */ |
|
static const QString Sent; |
|
static const QString Received; |
|
static const QString Generated; |
|
|
|
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: |
|
QStringList columns; |
|
TransactionTableImpl *impl; |
|
|
|
QVariant formatTxStatus(const TransactionRecord *wtx) const; |
|
QVariant formatTxDate(const TransactionRecord *wtx) const; |
|
QVariant formatTxDescription(const TransactionRecord *wtx) const; |
|
QVariant formatTxDebit(const TransactionRecord *wtx) const; |
|
QVariant formatTxCredit(const TransactionRecord *wtx) const; |
|
}; |
|
|
|
#endif |
|
|
|
|