forked from Public/monero-gui
AddressBook: basic functions
This commit is contained in:
50
src/libwalletqt/AddressBook.h
Normal file
50
src/libwalletqt/AddressBook.h
Normal file
@@ -0,0 +1,50 @@
|
||||
#ifndef ADDRESSBOOK_H
|
||||
#define ADDRESSBOOK_H
|
||||
|
||||
#include <wallet/wallet2_api.h>
|
||||
#include <QObject>
|
||||
#include <QList>
|
||||
#include <QDateTime>
|
||||
|
||||
namespace Bitmonero {
|
||||
class AddressBook;
|
||||
}
|
||||
class AddressBookRow;
|
||||
|
||||
class AddressBook : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_INVOKABLE QList<Bitmonero::AddressBookRow*> getAll(bool update = false) const;
|
||||
Q_INVOKABLE Bitmonero::AddressBookRow * getRow(int index) const;
|
||||
Q_INVOKABLE bool addRow(const QString &address, const QString &payment_id, const QString &description) const;
|
||||
Q_INVOKABLE bool deleteRow(int rowId) const;
|
||||
quint64 count() const;
|
||||
Q_INVOKABLE QString errorString() const;
|
||||
Q_INVOKABLE int errorCode() const;
|
||||
|
||||
enum ErrorCode {
|
||||
Status_Ok,
|
||||
General_Error,
|
||||
Invalid_Address,
|
||||
Invalid_Payment_Id
|
||||
};
|
||||
|
||||
Q_ENUM(ErrorCode);
|
||||
|
||||
|
||||
signals:
|
||||
void refreshStarted() const;
|
||||
void refreshFinished() const;
|
||||
|
||||
|
||||
public slots:
|
||||
|
||||
private:
|
||||
explicit AddressBook(Bitmonero::AddressBook * abImpl, QObject *parent);
|
||||
friend class Wallet;
|
||||
Bitmonero::AddressBook * m_addressBookImpl;
|
||||
mutable QList<Bitmonero::AddressBookRow*> m_rows;
|
||||
};
|
||||
|
||||
#endif // ADDRESSBOOK_H
|
||||
Reference in New Issue
Block a user