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-06-26 19:23:24 +02:00
|
|
|
class CWallet;
|
2011-07-16 19:01:05 +02:00
|
|
|
class WalletModel;
|
2011-05-09 20:44:46 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/**
|
|
|
|
Qt model of the address book in the core. This allows views to access and modify the address book.
|
|
|
|
*/
|
2011-05-09 20:44:46 +02:00
|
|
|
class AddressTableModel : public QAbstractTableModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2011-07-16 19:01:05 +02:00
|
|
|
explicit AddressTableModel(CWallet *wallet, WalletModel *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 {
|
2011-11-13 13:19:52 +01:00
|
|
|
Label = 0, /**< User specified label */
|
|
|
|
Address = 1 /**< Bitcoin address */
|
2011-06-03 15:16:11 +02:00
|
|
|
};
|
2011-05-13 15:58:27 +02:00
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
enum RoleIndex {
|
2011-11-13 13:19:52 +01:00
|
|
|
TypeRole = Qt::UserRole /**< Type of address (#Send or #Receive) */
|
2011-07-16 19:01:05 +02:00
|
|
|
};
|
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Return status of edit/insert operation */
|
2011-07-16 19:01:05 +02:00
|
|
|
enum EditStatus {
|
2011-08-24 22:07:26 +02:00
|
|
|
OK,
|
2011-11-13 13:19:52 +01:00
|
|
|
INVALID_ADDRESS, /**< Unparseable address */
|
|
|
|
DUPLICATE_ADDRESS, /**< Address already in address book */
|
|
|
|
WALLET_UNLOCK_FAILURE, /**< Wallet could not be unlocked to create new receiving address */
|
|
|
|
KEY_GENERATION_FAILURE /**< Generating a new public key for a receiving address failed */
|
2011-07-16 19:01:05 +02:00
|
|
|
};
|
2011-05-22 19:32:37 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
static const QString Send; /**< Specifies send address */
|
|
|
|
static const QString Receive; /**< Specifies receive address */
|
2011-05-13 15:58:27 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** @name Methods overridden from QAbstractTableModel
|
|
|
|
@{*/
|
2011-05-13 15:58:27 +02:00
|
|
|
int rowCount(const QModelIndex &parent) const;
|
|
|
|
int columnCount(const QModelIndex &parent) const;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
2011-06-02 17:48:45 +02:00
|
|
|
bool setData(const QModelIndex & index, const QVariant & value, int role);
|
2011-05-13 15:58:27 +02:00
|
|
|
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());
|
2011-07-02 17:31:27 +02:00
|
|
|
Qt::ItemFlags flags(const QModelIndex & index) const;
|
2011-11-13 13:19:52 +01:00
|
|
|
/*@}*/
|
2011-06-03 15:16:11 +02:00
|
|
|
|
|
|
|
/* Add an address to the model.
|
2011-06-03 21:03:20 +02:00
|
|
|
Returns the added address on success, and an empty string otherwise.
|
2011-06-03 15:16:11 +02:00
|
|
|
*/
|
2011-07-02 13:45:59 +02:00
|
|
|
QString addRow(const QString &type, const QString &label, const QString &address);
|
2011-06-01 20:08:21 +02:00
|
|
|
|
2011-07-08 22:27:36 +02:00
|
|
|
/* Look up label for address in address book, if not found return empty string.
|
|
|
|
*/
|
|
|
|
QString labelForAddress(const QString &address) const;
|
|
|
|
|
|
|
|
/* Look up row index of an address in the model.
|
|
|
|
Return -1 if not found.
|
|
|
|
*/
|
|
|
|
int lookupAddress(const QString &address) const;
|
|
|
|
|
2011-07-16 19:01:05 +02:00
|
|
|
EditStatus getEditStatus() const { return editStatus; }
|
|
|
|
|
2011-06-01 15:50:09 +02:00
|
|
|
private:
|
2011-07-16 19:01:05 +02:00
|
|
|
WalletModel *walletModel;
|
2011-06-26 19:23:24 +02:00
|
|
|
CWallet *wallet;
|
2011-06-01 15:50:09 +02:00
|
|
|
AddressTablePriv *priv;
|
|
|
|
QStringList columns;
|
2011-07-16 19:01:05 +02:00
|
|
|
EditStatus editStatus;
|
2011-06-21 20:34:43 +02:00
|
|
|
|
2012-05-06 22:41:35 +02:00
|
|
|
/** Notify listeners that data changed. */
|
|
|
|
void emitDataChanged(int index);
|
|
|
|
|
2011-05-09 20:44:46 +02:00
|
|
|
signals:
|
2011-06-21 20:34:43 +02:00
|
|
|
void defaultAddressChanged(const QString &address);
|
2011-05-09 20:44:46 +02:00
|
|
|
|
|
|
|
public slots:
|
2012-05-05 16:07:14 +02:00
|
|
|
/* Update address list from core.
|
2012-03-24 18:48:18 +01:00
|
|
|
*/
|
2012-05-06 22:41:35 +02:00
|
|
|
void updateEntry(const QString &address, const QString &label, bool isMine, int status);
|
|
|
|
|
|
|
|
friend class AddressTablePriv;
|
2011-05-09 20:44:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ADDRESSTABLEMODEL_H
|