2014-12-16 22:47:57 -03:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 12:20:43 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#ifndef BITCOIN_QT_ADDRESSTABLEMODEL_H
|
|
|
|
#define BITCOIN_QT_ADDRESSTABLEMODEL_H
|
2011-05-09 14:44:46 -04:00
|
|
|
|
|
|
|
#include <QAbstractTableModel>
|
2011-06-01 09:50:09 -04:00
|
|
|
#include <QStringList>
|
|
|
|
|
|
|
|
class AddressTablePriv;
|
2011-07-16 13:01:05 -04:00
|
|
|
class WalletModel;
|
2011-05-09 14:44:46 -04:00
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
class CWallet;
|
|
|
|
|
2011-11-13 09:19:52 -03:00
|
|
|
/**
|
|
|
|
Qt model of the address book in the core. This allows views to access and modify the address book.
|
|
|
|
*/
|
2011-05-09 14:44:46 -04:00
|
|
|
class AddressTableModel : public QAbstractTableModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-01-23 17:51:02 -03:00
|
|
|
|
2011-05-09 14:44:46 -04:00
|
|
|
public:
|
2011-07-16 13:01:05 -04:00
|
|
|
explicit AddressTableModel(CWallet *wallet, WalletModel *parent = 0);
|
2011-06-01 09:50:09 -04:00
|
|
|
~AddressTableModel();
|
2011-05-09 14:44:46 -04:00
|
|
|
|
2011-06-03 09:16:11 -04:00
|
|
|
enum ColumnIndex {
|
2011-11-13 09:19:52 -03:00
|
|
|
Label = 0, /**< User specified label */
|
|
|
|
Address = 1 /**< Bitcoin address */
|
2011-06-03 09:16:11 -04:00
|
|
|
};
|
2011-05-13 09:58:27 -04:00
|
|
|
|
2011-07-16 13:01:05 -04:00
|
|
|
enum RoleIndex {
|
2011-11-13 09:19:52 -03:00
|
|
|
TypeRole = Qt::UserRole /**< Type of address (#Send or #Receive) */
|
2011-07-16 13:01:05 -04:00
|
|
|
};
|
|
|
|
|
2011-11-13 09:19:52 -03:00
|
|
|
/** Return status of edit/insert operation */
|
2011-07-16 13:01:05 -04:00
|
|
|
enum EditStatus {
|
2013-01-08 04:17:58 -03:00
|
|
|
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 13:01:05 -04:00
|
|
|
};
|
2011-05-22 13:32:37 -04:00
|
|
|
|
2013-01-08 04:17:58 -03:00
|
|
|
static const QString Send; /**< Specifies send address */
|
|
|
|
static const QString Receive; /**< Specifies receive address */
|
2011-05-13 09:58:27 -04:00
|
|
|
|
2011-11-13 09:19:52 -03:00
|
|
|
/** @name Methods overridden from QAbstractTableModel
|
|
|
|
@{*/
|
2011-05-13 09:58:27 -04:00
|
|
|
int rowCount(const QModelIndex &parent) const;
|
|
|
|
int columnCount(const QModelIndex &parent) const;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
2013-01-08 04:17:58 -03:00
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role);
|
2011-05-13 09:58:27 -04:00
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
2013-01-08 04:17:58 -03:00
|
|
|
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 09:19:52 -03:00
|
|
|
/*@}*/
|
2011-06-03 09:16:11 -04:00
|
|
|
|
|
|
|
/* Add an address to the model.
|
2011-06-03 15:03:20 -04:00
|
|
|
Returns the added address on success, and an empty string otherwise.
|
2011-06-03 09:16:11 -04:00
|
|
|
*/
|
2011-07-02 07:45:59 -04:00
|
|
|
QString addRow(const QString &type, const QString &label, const QString &address);
|
2011-06-01 14:08:21 -04:00
|
|
|
|
2011-07-08 16:27:36 -04: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 13:01:05 -04:00
|
|
|
EditStatus getEditStatus() const { return editStatus; }
|
|
|
|
|
2011-06-01 09:50:09 -04:00
|
|
|
private:
|
2011-07-16 13:01:05 -04:00
|
|
|
WalletModel *walletModel;
|
2011-06-26 13:23:24 -04:00
|
|
|
CWallet *wallet;
|
2011-06-01 09:50:09 -04:00
|
|
|
AddressTablePriv *priv;
|
|
|
|
QStringList columns;
|
2011-07-16 13:01:05 -04:00
|
|
|
EditStatus editStatus;
|
2011-06-21 14:34:43 -04:00
|
|
|
|
2012-05-06 16:41:35 -04:00
|
|
|
/** Notify listeners that data changed. */
|
|
|
|
void emitDataChanged(int index);
|
|
|
|
|
2011-05-09 14:44:46 -04:00
|
|
|
public slots:
|
2012-05-05 10:07:14 -04:00
|
|
|
/* Update address list from core.
|
2012-03-24 14:48:18 -03:00
|
|
|
*/
|
2013-08-29 10:19:43 -04:00
|
|
|
void updateEntry(const QString &address, const QString &label, bool isMine, const QString &purpose, int status);
|
2012-05-06 16:41:35 -04:00
|
|
|
|
|
|
|
friend class AddressTablePriv;
|
2011-05-09 14:44:46 -04:00
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_QT_ADDRESSTABLEMODEL_H
|