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
|
|
|
|
2011-06-03 15:16:11 +02:00
|
|
|
enum ColumnIndex {
|
2011-05-22 19:32:37 +02:00
|
|
|
Label = 0, /* User specified label */
|
|
|
|
Address = 1 /* Bitcoin address */
|
2011-06-03 15:16:11 +02:00
|
|
|
};
|
2011-05-13 15:58:27 +02:00
|
|
|
|
2011-05-22 19:32:37 +02:00
|
|
|
enum {
|
|
|
|
TypeRole = Qt::UserRole
|
|
|
|
} RoleIndex;
|
|
|
|
|
2011-05-13 15:58:27 +02:00
|
|
|
static const QString Send; /* Send addres */
|
|
|
|
static const QString Receive; /* Receive address */
|
|
|
|
|
2011-06-03 15:16:11 +02:00
|
|
|
/* Overridden methods from QAbstractTableModel */
|
2011-05-13 15:58:27 +02:00
|
|
|
int rowCount(const QModelIndex &parent) const;
|
|
|
|
int columnCount(const QModelIndex &parent) const;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
2011-06-02 17:48:45 +02:00
|
|
|
bool setData(const QModelIndex & index, const QVariant & value, int role);
|
2011-05-13 15:58:27 +02:00
|
|
|
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;
|
2011-06-03 15:16:11 +02:00
|
|
|
bool removeRows(int row, int count, const QModelIndex & parent = QModelIndex());
|
|
|
|
|
|
|
|
/* Add an address to the model.
|
|
|
|
Returns true on success, false otherwise.
|
|
|
|
*/
|
|
|
|
bool addRow(const QString &type, const QString &label, const QString &address);
|
2011-06-01 20:08:21 +02:00
|
|
|
|
2011-06-03 15:16:11 +02:00
|
|
|
/* Update address list from core. Invalidates any indices.
|
|
|
|
*/
|
2011-06-01 20:08:21 +02:00
|
|
|
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
|