2011-05-09 14:44:46 -04:00
|
|
|
#ifndef ADDRESSTABLEMODEL_H
|
|
|
|
#define ADDRESSTABLEMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractTableModel>
|
2011-06-01 09:50:09 -04:00
|
|
|
#include <QStringList>
|
|
|
|
|
|
|
|
class AddressTablePriv;
|
2011-05-09 14:44:46 -04:00
|
|
|
|
|
|
|
class AddressTableModel : public QAbstractTableModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit AddressTableModel(QObject *parent = 0);
|
2011-06-01 09:50:09 -04:00
|
|
|
~AddressTableModel();
|
2011-05-09 14:44:46 -04:00
|
|
|
|
2011-05-13 09:58:27 -04:00
|
|
|
enum {
|
2011-05-22 13:32:37 -04:00
|
|
|
Label = 0, /* User specified label */
|
|
|
|
Address = 1 /* Bitcoin address */
|
2011-05-13 09:58:27 -04:00
|
|
|
} ColumnIndex;
|
|
|
|
|
2011-05-22 13:32:37 -04:00
|
|
|
enum {
|
|
|
|
TypeRole = Qt::UserRole
|
|
|
|
} RoleIndex;
|
|
|
|
|
2011-05-13 09:58:27 -04:00
|
|
|
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;
|
2011-06-02 11:48:45 -04:00
|
|
|
bool setData(const QModelIndex & index, const QVariant & value, int role);
|
2011-05-13 09:58:27 -04:00
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
2011-06-01 14:08:21 -04:00
|
|
|
QModelIndex index(int row, int column, const QModelIndex & parent) const;
|
|
|
|
|
|
|
|
void updateList();
|
2011-06-01 09:50:09 -04:00
|
|
|
private:
|
|
|
|
AddressTablePriv *priv;
|
|
|
|
QStringList columns;
|
2011-05-09 14:44:46 -04:00
|
|
|
signals:
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ADDRESSTABLEMODEL_H
|