aboutsummaryrefslogtreecommitdiff
path: root/gui/include/addresstablemodel.h
blob: 81fad6db25d9098de9c4fac354d444d4a695d7cd (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
#ifndef ADDRESSTABLEMODEL_H
#define ADDRESSTABLEMODEL_H

#include <QAbstractTableModel>
#include <QStringList>

class AddressTablePriv;

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

    enum {
        Label = 0,   /* User specified label */
        Address = 1  /* Bitcoin address */
    } ColumnIndex;

    enum {
        TypeRole = Qt::UserRole
    } RoleIndex;

    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;
    QModelIndex index ( int row, int column, const QModelIndex & parent ) const;
private:
    AddressTablePriv *priv;
    QStringList columns;
signals:

public slots:

};

#endif // ADDRESSTABLEMODEL_H