dogecoin/src/qt/addresstablemodel.h

63 lines
1.8 KiB
C
Raw Normal View History

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