2018-07-27 00:36:45 +02:00
|
|
|
// Copyright (c) 2011-2018 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 16:20:43 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_QT_ADDRESSTABLEMODEL_H
|
|
|
|
#define BITCOIN_QT_ADDRESSTABLEMODEL_H
|
2011-05-09 20:44:46 +02:00
|
|
|
|
|
|
|
#include <QAbstractTableModel>
|
2011-06-01 15:50:09 +02:00
|
|
|
#include <QStringList>
|
|
|
|
|
2018-02-11 03:06:35 +01:00
|
|
|
enum class OutputType;
|
2018-01-16 21:11:40 +01:00
|
|
|
|
2011-06-01 15:50:09 +02:00
|
|
|
class AddressTablePriv;
|
2011-07-16 19:01:05 +02:00
|
|
|
class WalletModel;
|
2011-05-09 20:44:46 +02:00
|
|
|
|
2018-04-07 09:42:02 +02:00
|
|
|
namespace interfaces {
|
2017-04-18 19:01:23 +02:00
|
|
|
class Wallet;
|
|
|
|
}
|
2013-04-13 07:13:08 +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
|
2013-01-23 21:51:02 +01:00
|
|
|
|
2011-05-09 20:44:46 +02:00
|
|
|
public:
|
2018-07-30 12:37:09 +02:00
|
|
|
explicit AddressTableModel(WalletModel *parent = nullptr);
|
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 {
|
2013-01-08 08:17:58 +01: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 19:01:05 +02:00
|
|
|
};
|
2011-05-22 19:32:37 +02:00
|
|
|
|
2013-01-08 08:17:58 +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;
|
2013-01-08 08:17:58 +01: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;
|
2013-01-08 08:17:58 +01: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 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
|
|
|
*/
|
2018-01-16 21:11:40 +01:00
|
|
|
QString addRow(const QString &type, const QString &label, const QString &address, const OutputType address_type);
|
2011-06-01 20:08:21 +02:00
|
|
|
|
2018-04-10 22:27:40 +02:00
|
|
|
/** Look up label for address in address book, if not found return empty string. */
|
2011-07-08 22:27:36 +02:00
|
|
|
QString labelForAddress(const QString &address) const;
|
|
|
|
|
2018-04-10 22:27:40 +02:00
|
|
|
/** Look up purpose for address in address book, if not found return empty string. */
|
|
|
|
QString purposeForAddress(const QString &address) const;
|
|
|
|
|
2011-07-08 22:27:36 +02:00
|
|
|
/* 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; }
|
|
|
|
|
2018-02-11 03:06:35 +01:00
|
|
|
OutputType GetDefaultAddressType() const;
|
|
|
|
|
2011-06-01 15:50:09 +02:00
|
|
|
private:
|
2018-05-02 13:56:20 +02:00
|
|
|
WalletModel* const walletModel;
|
2018-04-10 01:23:24 +02:00
|
|
|
AddressTablePriv *priv = nullptr;
|
2011-06-01 15:50:09 +02:00
|
|
|
QStringList columns;
|
2018-04-10 01:08:02 +02:00
|
|
|
EditStatus editStatus = OK;
|
2011-06-21 20:34:43 +02:00
|
|
|
|
2018-04-10 22:27:40 +02:00
|
|
|
/** Look up address book data given an address string. */
|
|
|
|
bool getAddressData(const QString &address, std::string* name, std::string* purpose) const;
|
|
|
|
|
2012-05-06 22:41:35 +02:00
|
|
|
/** Notify listeners that data changed. */
|
|
|
|
void emitDataChanged(int index);
|
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
public Q_SLOTS:
|
2012-05-05 16:07:14 +02:00
|
|
|
/* Update address list from core.
|
2012-03-24 18:48:18 +01:00
|
|
|
*/
|
2013-08-29 16:19:43 +02:00
|
|
|
void updateEntry(const QString &address, const QString &label, bool isMine, const QString &purpose, int status);
|
2012-05-06 22:41:35 +02:00
|
|
|
|
|
|
|
friend class AddressTablePriv;
|
2011-05-09 20:44:46 +02:00
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_QT_ADDRESSTABLEMODEL_H
|