lbrycrd/gui/include/addresstablemodel.h

46 lines
1.1 KiB
C
Raw Normal View History

2011-05-09 20:44:46 +02:00
#ifndef ADDRESSTABLEMODEL_H
#define ADDRESSTABLEMODEL_H
#include <QAbstractTableModel>
2011-06-01 15:50:09 +02:00
#include <QStringList>
class AddressTablePriv;
2011-05-09 20:44:46 +02:00
class AddressTableModel : public QAbstractTableModel
{
Q_OBJECT
public:
explicit AddressTableModel(QObject *parent = 0);
2011-06-01 15:50:09 +02:00
~AddressTableModel();
2011-05-09 20:44:46 +02:00
enum {
Label = 0, /* User specified label */
Address = 1 /* Bitcoin address */
} ColumnIndex;
enum {
TypeRole = Qt::UserRole
} RoleIndex;
static const QString Send; /* Send addres */
static const QString Receive; /* Receive address */
int rowCount(const QModelIndex &parent) const;
int columnCount(const QModelIndex &parent) const;
QVariant data(const QModelIndex &index, int role) const;
bool setData(const QModelIndex & index, const QVariant & value, int role);
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
2011-06-01 20:08:21 +02:00
QModelIndex index(int row, int column, const QModelIndex & parent) const;
void updateList();
2011-06-01 15:50:09 +02:00
private:
AddressTablePriv *priv;
QStringList columns;
2011-05-09 20:44:46 +02:00
signals:
public slots:
};
#endif // ADDRESSTABLEMODEL_H