bitcoin/src/qt/addresstablemodel.h

87 lines
2.7 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;
class CWallet;
2011-07-16 10:01:05 -07:00
class WalletModel;
2011-05-09 11:44:46 -07:00
2011-11-13 04:19:52 -08:00
/**
Qt model of the address book in the core. This allows views to access and modify the address book.
*/
2011-05-09 11:44:46 -07:00
class AddressTableModel : public QAbstractTableModel
{
Q_OBJECT
public:
2011-07-16 10:01:05 -07:00
explicit AddressTableModel(CWallet *wallet, WalletModel *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 {
2011-11-13 04:19:52 -08:00
Label = 0, /**< User specified label */
Address = 1 /**< Bitcoin address */
2011-06-03 06:16:11 -07:00
};
2011-07-16 10:01:05 -07:00
enum RoleIndex {
2011-11-13 04:19:52 -08:00
TypeRole = Qt::UserRole /**< Type of address (#Send or #Receive) */
2011-07-16 10:01:05 -07:00
};
2011-11-13 04:19:52 -08:00
/** Return status of edit/insert operation */
2011-07-16 10:01:05 -07:00
enum EditStatus {
OK,
2011-11-13 04:19:52 -08: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 10:01:05 -07:00
};
2011-11-13 04:19:52 -08:00
static const QString Send; /**< Specifies send address */
static const QString Receive; /**< Specifies receive address */
2011-11-13 04:19:52 -08:00
/** @name Methods overridden 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());
Qt::ItemFlags flags(const QModelIndex & index) const;
2011-11-13 04:19:52 -08:00
/*@}*/
2011-06-03 06:16:11 -07:00
/* Add an address to the model.
Returns the added address on success, and an empty string otherwise.
2011-06-03 06:16:11 -07:00
*/
QString addRow(const QString &type, const QString &label, const QString &address);
2011-06-01 11:08:21 -07: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 10:01:05 -07:00
EditStatus getEditStatus() const { return editStatus; }
2011-06-01 06:50:09 -07:00
private:
2011-07-16 10:01:05 -07:00
WalletModel *walletModel;
CWallet *wallet;
2011-06-01 06:50:09 -07:00
AddressTablePriv *priv;
QStringList columns;
2011-07-16 10:01:05 -07:00
EditStatus editStatus;
2011-05-09 11:44:46 -07:00
signals:
void defaultAddressChanged(const QString &address);
2011-05-09 11:44:46 -07:00
public slots:
/* Update address list from core.
*/
void updateEntry(const QString &address, const QString &label, int status);
2011-05-09 11:44:46 -07:00
};
#endif // ADDRESSTABLEMODEL_H