bitcoin/gui/include/addresstablemodel.h

55 lines
1.5 KiB
C
Raw Normal View History

2011-05-09 11:44:46 -07:00
#ifndef ADDRESSTABLEMODEL_H
#define ADDRESSTABLEMODEL_H
#include <QAbstractTableModel>
2011-06-01 06:50:09 -07:00
#include <QStringList>
class AddressTablePriv;
2011-05-09 11:44:46 -07:00
class AddressTableModel : public QAbstractTableModel
{
Q_OBJECT
public:
explicit AddressTableModel(QObject *parent = 0);
2011-06-01 06:50:09 -07:00
~AddressTableModel();
2011-05-09 11:44:46 -07:00
2011-06-03 06:16:11 -07:00
enum ColumnIndex {
Label = 0, /* User specified label */
Address = 1 /* Bitcoin address */
2011-06-03 06:16:11 -07:00
};
enum {
TypeRole = Qt::UserRole
} RoleIndex;
static const QString Send; /* Send addres */
static const QString Receive; /* Receive address */
2011-06-03 06:16:11 -07:00
/* 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;
2011-06-01 11:08:21 -07:00
QModelIndex index(int row, int column, const QModelIndex & parent) const;
2011-06-03 06:16:11 -07: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 11:08:21 -07:00
2011-06-03 06:16:11 -07:00
/* Update address list from core. Invalidates any indices.
*/
2011-06-01 11:08:21 -07:00
void updateList();
2011-06-01 06:50:09 -07:00
private:
AddressTablePriv *priv;
QStringList columns;
2011-05-09 11:44:46 -07:00
signals:
public slots:
};
#endif // ADDRESSTABLEMODEL_H