aboutsummaryrefslogtreecommitdiff
path: root/src/qt/addresstablemodel.h
blob: d8465853b2d3218b94ee65681462a4221360120e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef ADDRESSTABLEMODEL_H
#define ADDRESSTABLEMODEL_H

#include <QAbstractTableModel>
#include <QStringList>

class AddressTablePriv;
class CWallet;

class AddressTableModel : public QAbstractTableModel
{
    Q_OBJECT
public:
    explicit AddressTableModel(CWallet *wallet, QObject *parent = 0);
    ~AddressTableModel();

    enum ColumnIndex {
        Label = 0,   /* User specified label */
        Address = 1,  /* Bitcoin address */
        IsDefaultAddress = 2 /* Is default address? */
    };

    enum {
        TypeRole = Qt::UserRole
    } RoleIndex;

    static const QString Send; /* Send addres */
    static const QString Receive; /* Receive address */

    /* Overridden methods from QAbstractTableModel */
    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;
    QModelIndex index(int row, int column, const QModelIndex & parent) const;
    bool removeRows(int row, int count, const QModelIndex & parent = QModelIndex());

    /* Add an address to the model.
       Returns the added address on success, and an empty string otherwise.
     */
    QString addRow(const QString &type, const QString &label, const QString &address, bool setAsDefault);

    /* Set and get default address */
    QString getDefaultAddress() const;
    void setDefaultAddress(const QString &defaultAddress);

    /* Update address list from core. Invalidates any indices.
     */
    void updateList();

private:
    CWallet *wallet;
    AddressTablePriv *priv;
    QStringList columns;

signals:
    void defaultAddressChanged(const QString &address);

public slots:
    void update();
};

#endif // ADDRESSTABLEMODEL_H