improve address book, add less conspicious toolbar icon

This commit is contained in:
Wladimir J. van der Laan
2011-05-13 15:58:27 +02:00
parent 871f9979c6
commit b8e302eb53
15 changed files with 311 additions and 17 deletions

View File

@@ -9,6 +9,20 @@ class AddressTableModel : public QAbstractTableModel
public:
explicit AddressTableModel(QObject *parent = 0);
enum {
Label = 0, /* User specified label */
Address = 1, /* Bitcoin address */
Type = 2 /* Send/Receive, used for filter */
} ColumnIndex;
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;
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
Qt::ItemFlags flags(const QModelIndex &index) const;
signals:
public slots: