bitcoin/src/qt/addresstablemodel.h

96 lines
3.2 KiB
C
Raw Normal View History

2015-12-13 08:58:29 -08:00
// Copyright (c) 2011-2015 The Bitcoin Core developers
2014-12-12 20:09:33 -08:00
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-11-03 07:16:40 -08:00
#ifndef BITCOIN_QT_ADDRESSTABLEMODEL_H
#define BITCOIN_QT_ADDRESSTABLEMODEL_H
2011-05-09 11:44:46 -07:00
#include <QAbstractTableModel>
2011-06-01 06:50:09 -07:00
#include <QStringList>
class AddressTablePriv;
2011-07-16 10:01:05 -07:00
class WalletModel;
2011-05-09 11:44:46 -07:00
class CWallet;
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
2011-05-09 11:44:46 -07:00
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, /**< Everything ok */
NO_CHANGES, /**< No changes were made during edit operation */
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
};
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;
QModelIndex index(int row, int column, const QModelIndex &parent) const;
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;
/** Notify listeners that data changed. */
void emitDataChanged(int index);
public Q_SLOTS:
/* Update address list from core.
*/
void updateEntry(const QString &address, const QString &label, bool isMine, const QString &purpose, int status);
friend class AddressTablePriv;
2011-05-09 11:44:46 -07:00
};
2014-11-03 07:16:40 -08:00
#endif // BITCOIN_QT_ADDRESSTABLEMODEL_H