dogecoin/transactiontablemodel.h

38 lines
890 B
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 TransactionTableModel : public QAbstractTableModel
{
Q_OBJECT
public:
2011-05-08 22:23:31 +02:00
explicit TransactionTableModel(QObject *parent = 0);
enum {
Status = 0,
Date = 1,
Description = 2,
Debit = 3,
Credit = 4,
Type = 5
2011-05-08 22:23:31 +02:00
} ColumnIndex;
2011-05-08 16:30:10 +02:00
/* Transaction type */
static const QString Sent;
static const QString Received;
static const QString Generated;
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;
Qt::ItemFlags flags(const QModelIndex &index) const;
private:
QStringList columns;
};
#endif