shadowproject/shadow

View on GitHub
src/qt/addresstablemodel.h

Summary

Maintainability
Test Coverage
#ifndef ADDRESSTABLEMODEL_H
#define ADDRESSTABLEMODEL_H

#include <QAbstractTableModel>
#include <QStringList>

class AddressTablePriv;
class CWallet;
class WalletModel;

enum EAddressType {
    AT_Unknown = 0, /**< User specified label */
    AT_Normal = 1,  /**< Bitcoin address */
    AT_Stealth = 2,  /**< Stealth address */
    AT_BIP32 = 3, /**< BIP32 address */
    AT_Group = 4, /**< BIP32 address */
};

/**
   Qt model of the address book in the core. This allows views to access and modify the address book.
 */
class AddressTableModel : public QAbstractTableModel
{
    Q_OBJECT
public:
    explicit AddressTableModel(CWallet *wallet, WalletModel *parent = 0);
    ~AddressTableModel();
    
    enum ColumnIndex {
        Label = 0,   /**< User specified label */
        Address = 1,  /**< Bitcoin address */
        Pubkey = 2,  /**< Bitcoin public key */
        AddressType = 3,  /**< Address type */
        Type = 4  /**< Address type for */
    };

    enum RoleIndex {
        TypeRole = Qt::UserRole, /**< Type of address (#Send or #Receive) */
        AddressTypeRole,
    };

    /** Return status of edit/insert operation */
    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 */
    };

    static const QString Send;      /**< Specifies send address */
    static const QString Receive;   /**< Specifies receive address */

    /** @name Methods overridden from QAbstractTableModel
        @{*/
    int rowCount(const QModelIndex &parent = QModelIndex()) 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 = QModelIndex()) const;
    bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex());
    Qt::ItemFlags flags(const QModelIndex &index) const;
    /*@}*/

    /* Add an address to the model.
       Returns the added address on success, and an empty string otherwise.
     */
    QString addRow(const QString &type, const QString &label, const QString &address, int addressType);

    /* Look up label for address in address book, if not found return empty string.
     */
    QString labelForAddress(const QString &address) const;

    /* Look up pubkey for address in address book, if not found return empty string.
     */
    QString pubkeyForAddress(const QString &address, const bool lookup=true) const;

    /* Derive address for pubkey, if invalid return empty string.
     */
    QString addressForPubkey(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;

    EditStatus getEditStatus() const { return editStatus; }

private:
    WalletModel *walletModel;
    CWallet *wallet;
    AddressTablePriv *priv;
    QStringList columns;
    EditStatus editStatus;

    /** Notify listeners that data changed. */
    void emitDataChanged(int row);

signals:
    void defaultAddressChanged(const QString &address);

public slots:
    /* Update address list from core.
     */
    void updateEntry(const QString &address, const QString &label, bool isMine, int status);
    /* Set wallet encryption status
     */
    void setEncryptionStatus(int status);

    friend class AddressTablePriv;
};

#endif // ADDRESSTABLEMODEL_H