Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
Public Types | Public Slots | Signals | Public Member Functions | Static Public Attributes | Private Member Functions | Private Attributes | Friends | List of all members
AddressTableModel Class Reference

Qt model of the address book in the core. More...

#include <addresstablemodel.h>

Inheritance diagram for AddressTableModel:
Inheritance graph
[legend]
Collaboration diagram for AddressTableModel:
Collaboration graph
[legend]

Public Types

enum  ColumnIndex { Label = 0, Address = 1 }
 
enum  RoleIndex { TypeRole = Qt::UserRole }
 
enum  EditStatus {
  OK, NO_CHANGES, INVALID_ADDRESS, DUPLICATE_ADDRESS,
  WALLET_UNLOCK_FAILURE, KEY_GENERATION_FAILURE
}
 Return status of edit/insert operation. More...
 

Public Slots

void updateEntry (const QString &address, const QString &label, bool isMine, int status)
 

Signals

void defaultAddressChanged (const QString &address)
 

Public Member Functions

 AddressTableModel (CWallet *wallet, WalletModel *parent=0)
 
 ~AddressTableModel ()
 
QString addRow (const QString &type, const QString &label, const QString &address)
 
QString labelForAddress (const QString &address) const
 
int lookupAddress (const QString &address) const
 
EditStatus getEditStatus () const
 
Methods overridden 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())
 
Qt::ItemFlags flags (const QModelIndex &index) const
 

Static Public Attributes

static const QString Send = "S"
 Specifies send address. More...
 
static const QString Receive = "R"
 Specifies receive address. More...
 

Private Member Functions

void emitDataChanged (int index)
 Notify listeners that data changed. More...
 

Private Attributes

WalletModelwalletModel
 
CWalletwallet
 
AddressTablePrivpriv
 
QStringList columns
 
EditStatus editStatus
 

Friends

class AddressTablePriv
 

Detailed Description

Qt model of the address book in the core.

This allows views to access and modify the address book.

Definition at line 14 of file addresstablemodel.h.

Member Enumeration Documentation

Enumerator
Label 

User specified label.

Address 

Bitcoin address.

Definition at line 22 of file addresstablemodel.h.

Return status of edit/insert operation.

Enumerator
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.

Definition at line 32 of file addresstablemodel.h.

Enumerator
TypeRole 

Type of address (Send or Receive)

Definition at line 27 of file addresstablemodel.h.

Constructor & Destructor Documentation

AddressTableModel::AddressTableModel ( CWallet wallet,
WalletModel parent = 0 
)
explicit

Definition at line 141 of file addresstablemodel.cpp.

AddressTableModel::~AddressTableModel ( )

Definition at line 149 of file addresstablemodel.cpp.

Member Function Documentation

QString AddressTableModel::addRow ( const QString &  type,
const QString &  label,
const QString &  address 
)

Definition at line 321 of file addresstablemodel.cpp.

int AddressTableModel::columnCount ( const QModelIndex &  parent) const

Definition at line 160 of file addresstablemodel.cpp.

QVariant AddressTableModel::data ( const QModelIndex &  index,
int  role 
) const

Definition at line 166 of file addresstablemodel.cpp.

void AddressTableModel::defaultAddressChanged ( const QString &  address)
signal
void AddressTableModel::emitDataChanged ( int  index)
private

Notify listeners that data changed.

Definition at line 423 of file addresstablemodel.cpp.

Qt::ItemFlags AddressTableModel::flags ( const QModelIndex &  index) const

Definition at line 284 of file addresstablemodel.cpp.

EditStatus AddressTableModel::getEditStatus ( ) const
inline

Definition at line 70 of file addresstablemodel.h.

QVariant AddressTableModel::headerData ( int  section,
Qt::Orientation  orientation,
int  role 
) const

Definition at line 272 of file addresstablemodel.cpp.

QModelIndex AddressTableModel::index ( int  row,
int  column,
const QModelIndex &  parent 
) const

Definition at line 301 of file addresstablemodel.cpp.

QString AddressTableModel::labelForAddress ( const QString &  address) const

Definition at line 395 of file addresstablemodel.cpp.

int AddressTableModel::lookupAddress ( const QString &  address) const

Definition at line 409 of file addresstablemodel.cpp.

bool AddressTableModel::removeRows ( int  row,
int  count,
const QModelIndex &  parent = QModelIndex() 
)

Definition at line 376 of file addresstablemodel.cpp.

int AddressTableModel::rowCount ( const QModelIndex &  parent) const

Definition at line 154 of file addresstablemodel.cpp.

bool AddressTableModel::setData ( const QModelIndex &  index,
const QVariant &  value,
int  role 
)

Definition at line 213 of file addresstablemodel.cpp.

void AddressTableModel::updateEntry ( const QString &  address,
const QString &  label,
bool  isMine,
int  status 
)
slot

Definition at line 315 of file addresstablemodel.cpp.

Friends And Related Function Documentation

friend class AddressTablePriv
friend

Definition at line 90 of file addresstablemodel.h.

Member Data Documentation

QStringList AddressTableModel::columns
private

Definition at line 76 of file addresstablemodel.h.

EditStatus AddressTableModel::editStatus
private

Definition at line 77 of file addresstablemodel.h.

AddressTablePriv* AddressTableModel::priv
private

Definition at line 75 of file addresstablemodel.h.

const QString AddressTableModel::Receive = "R"
static

Specifies receive address.

Definition at line 42 of file addresstablemodel.h.

const QString AddressTableModel::Send = "S"
static

Specifies send address.

Definition at line 41 of file addresstablemodel.h.

CWallet* AddressTableModel::wallet
private

Definition at line 74 of file addresstablemodel.h.

WalletModel* AddressTableModel::walletModel
private

Definition at line 73 of file addresstablemodel.h.


The documentation for this class was generated from the following files: