3ababfc6b508a7f857d7cbe7edeb8e4d94aff9c8
[novacoin.git] / src / qt / addresstablemodel.h
1 #ifndef ADDRESSTABLEMODEL_H
2 #define ADDRESSTABLEMODEL_H
3
4 #include <QAbstractTableModel>
5 #include <QStringList>
6
7 class AddressTablePriv;
8 class CWallet;
9
10 class AddressTableModel : public QAbstractTableModel
11 {
12     Q_OBJECT
13 public:
14     explicit AddressTableModel(CWallet *wallet, QObject *parent = 0);
15     ~AddressTableModel();
16
17     enum ColumnIndex {
18         Label = 0,   /* User specified label */
19         Address = 1  /* Bitcoin address */
20     };
21
22     enum {
23         TypeRole = Qt::UserRole
24     } RoleIndex;
25
26     static const QString Send; /* Send addres */
27     static const QString Receive; /* Receive address */
28
29     /* Overridden methods from QAbstractTableModel */
30     int rowCount(const QModelIndex &parent) const;
31     int columnCount(const QModelIndex &parent) const;
32     QVariant data(const QModelIndex &index, int role) const;
33     bool setData(const QModelIndex & index, const QVariant & value, int role);
34     QVariant headerData(int section, Qt::Orientation orientation, int role) const;
35     QModelIndex index(int row, int column, const QModelIndex & parent) const;
36     bool removeRows(int row, int count, const QModelIndex & parent = QModelIndex());
37
38     /* Add an address to the model.
39        Returns the added address on success, and an empty string otherwise.
40      */
41     QString addRow(const QString &type, const QString &label, const QString &address);
42
43     /* Update address list from core. Invalidates any indices.
44      */
45     void updateList();
46
47 private:
48     CWallet *wallet;
49     AddressTablePriv *priv;
50     QStringList columns;
51
52 signals:
53     void defaultAddressChanged(const QString &address);
54
55 public slots:
56     void update();
57 };
58
59 #endif // ADDRESSTABLEMODEL_H