Finish implementation of address book

This commit is contained in:
Wladimir J. van der Laan
2011-06-03 15:16:11 +02:00
parent dab03e34f5
commit 48208883de
6 changed files with 113 additions and 22 deletions

View File

@@ -13,10 +13,10 @@ public:
explicit AddressTableModel(QObject *parent = 0);
~AddressTableModel();
enum {
enum ColumnIndex {
Label = 0, /* User specified label */
Address = 1 /* Bitcoin address */
} ColumnIndex;
};
enum {
TypeRole = Qt::UserRole
@@ -25,13 +25,22 @@ public:
static const QString Send; /* Send addres */
static const QString Receive; /* Receive address */
/* Overridden methods 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());
/* Add an address to the model.
Returns true on success, false otherwise.
*/
bool addRow(const QString &type, const QString &label, const QString &address);
/* Update address list from core. Invalidates any indices.
*/
void updateList();
private:
AddressTablePriv *priv;

View File

@@ -29,10 +29,13 @@ public:
void setModel(AddressTableModel *model);
void loadRow(int row);
void saveCurrentRow();
private:
Ui::EditAddressDialog *ui;
QDataWidgetMapper *mapper;
Mode mode;
AddressTableModel *model;
};
#endif // EDITADDRESSDIALOG_H