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

Interface to Bitcoin wallet from Qt view code. More...

#include <walletmodel.h>

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

Classes

struct  SendCoinsReturn
 
class  UnlockContext
 

Public Types

enum  StatusCode {
  OK, InvalidAmount, InvalidAddress, AmountExceedsBalance,
  AmountWithFeeExceedsBalance, DuplicateAddress, TransactionCreationFailed, TransactionCommitFailed,
  Aborted
}
 
enum  EncryptionStatus { Unencrypted, Locked, Unlocked }
 

Public Slots

void updateStatus ()
 
void updateTransaction (const QString &hash, int status)
 
void updateAddressBook (const QString &address, const QString &label, bool isMine, int status)
 
void pollBalanceChanged ()
 

Signals

void balanceChanged (qint64 balance, qint64 unconfirmedBalance, qint64 immatureBalance)
 
void numTransactionsChanged (int count)
 
void encryptionStatusChanged (int status)
 
void requireUnlock ()
 
void message (const QString &title, const QString &message, unsigned int style)
 

Public Member Functions

 WalletModel (CWallet *wallet, OptionsModel *optionsModel, QObject *parent=0)
 
 ~WalletModel ()
 
OptionsModelgetOptionsModel ()
 
AddressTableModelgetAddressTableModel ()
 
TransactionTableModelgetTransactionTableModel ()
 
qint64 getBalance (const CCoinControl *coinControl=NULL) const
 
qint64 getUnconfirmedBalance () const
 
qint64 getImmatureBalance () const
 
int getNumTransactions () const
 
EncryptionStatus getEncryptionStatus () const
 
bool validateAddress (const QString &address)
 
SendCoinsReturn sendCoins (const QList< SendCoinsRecipient > &recipients, const CCoinControl *coinControl=NULL)
 
bool importPrivateKey (QString privKey)
 
bool setWalletEncrypted (bool encrypted, const SecureString &passphrase)
 
bool setWalletLocked (bool locked, const SecureString &passPhrase=SecureString())
 
bool changePassphrase (const SecureString &oldPass, const SecureString &newPass)
 
bool backupWallet (const QString &filename)
 
UnlockContext requestUnlock ()
 
bool getPubKey (const CKeyID &address, CPubKey &vchPubKeyOut) const
 
void getOutputs (const std::vector< COutPoint > &vOutpoints, std::vector< COutput > &vOutputs)
 
void listCoins (std::map< QString, std::vector< COutput > > &mapCoins) const
 
bool isLockedCoin (uint256 hash, unsigned int n) const
 
void lockCoin (COutPoint &output)
 
void unlockCoin (COutPoint &output)
 
void listLockedCoins (std::vector< COutPoint > &vOutpts)
 

Private Member Functions

void subscribeToCoreSignals ()
 
void unsubscribeFromCoreSignals ()
 
void checkBalanceChanged ()
 

Private Attributes

CWalletwallet
 
OptionsModeloptionsModel
 
AddressTableModeladdressTableModel
 
TransactionTableModeltransactionTableModel
 
qint64 cachedBalance
 
qint64 cachedUnconfirmedBalance
 
qint64 cachedImmatureBalance
 
qint64 cachedNumTransactions
 
EncryptionStatus cachedEncryptionStatus
 
int cachedNumBlocks
 
QTimer * pollTimer
 

Detailed Description

Interface to Bitcoin wallet from Qt view code.

Definition at line 36 of file walletmodel.h.

Member Enumeration Documentation

Enumerator
Unencrypted 
Locked 
Unlocked 

Definition at line 57 of file walletmodel.h.

Enumerator
OK 
InvalidAmount 
InvalidAddress 
AmountExceedsBalance 
AmountWithFeeExceedsBalance 
DuplicateAddress 
TransactionCreationFailed 
TransactionCommitFailed 
Aborted 

Definition at line 44 of file walletmodel.h.

Constructor & Destructor Documentation

WalletModel::WalletModel ( CWallet wallet,
OptionsModel optionsModel,
QObject *  parent = 0 
)
explicit

Definition at line 15 of file walletmodel.cpp.

WalletModel::~WalletModel ( )

Definition at line 34 of file walletmodel.cpp.

Member Function Documentation

bool WalletModel::backupWallet ( const QString &  filename)

Definition at line 335 of file walletmodel.cpp.

void WalletModel::balanceChanged ( qint64  balance,
qint64  unconfirmedBalance,
qint64  immatureBalance 
)
signal
bool WalletModel::changePassphrase ( const SecureString oldPass,
const SecureString newPass 
)

Definition at line 324 of file walletmodel.cpp.

void WalletModel::checkBalanceChanged ( )
private

Definition at line 95 of file walletmodel.cpp.

void WalletModel::encryptionStatusChanged ( int  status)
signal
AddressTableModel * WalletModel::getAddressTableModel ( )

Definition at line 270 of file walletmodel.cpp.

qint64 WalletModel::getBalance ( const CCoinControl coinControl = NULL) const

Definition at line 39 of file walletmodel.cpp.

WalletModel::EncryptionStatus WalletModel::getEncryptionStatus ( ) const

Definition at line 280 of file walletmodel.cpp.

qint64 WalletModel::getImmatureBalance ( ) const

Definition at line 60 of file walletmodel.cpp.

int WalletModel::getNumTransactions ( ) const

Definition at line 65 of file walletmodel.cpp.

OptionsModel * WalletModel::getOptionsModel ( )

Definition at line 265 of file walletmodel.cpp.

void WalletModel::getOutputs ( const std::vector< COutPoint > &  vOutpoints,
std::vector< COutput > &  vOutputs 
)

Definition at line 424 of file walletmodel.cpp.

bool WalletModel::getPubKey ( const CKeyID address,
CPubKey vchPubKeyOut 
) const

Definition at line 418 of file walletmodel.cpp.

TransactionTableModel * WalletModel::getTransactionTableModel ( )

Definition at line 275 of file walletmodel.cpp.

qint64 WalletModel::getUnconfirmedBalance ( ) const

Definition at line 55 of file walletmodel.cpp.

bool WalletModel::importPrivateKey ( QString  privKey)

Definition at line 138 of file walletmodel.cpp.

bool WalletModel::isLockedCoin ( uint256  hash,
unsigned int  n 
) const

Definition at line 467 of file walletmodel.cpp.

void WalletModel::listCoins ( std::map< QString, std::vector< COutput > > &  mapCoins) const

Definition at line 435 of file walletmodel.cpp.

void WalletModel::listLockedCoins ( std::vector< COutPoint > &  vOutpts)

Definition at line 482 of file walletmodel.cpp.

void WalletModel::lockCoin ( COutPoint output)

Definition at line 472 of file walletmodel.cpp.

void WalletModel::message ( const QString &  title,
const QString &  message,
unsigned int  style 
)
signal
void WalletModel::numTransactionsChanged ( int  count)
signal
void WalletModel::pollBalanceChanged ( )
slot

Definition at line 85 of file walletmodel.cpp.

WalletModel::UnlockContext WalletModel::requestUnlock ( )

Definition at line 382 of file walletmodel.cpp.

void WalletModel::requireUnlock ( )
signal
WalletModel::SendCoinsReturn WalletModel::sendCoins ( const QList< SendCoinsRecipient > &  recipients,
const CCoinControl coinControl = NULL 
)

Definition at line 160 of file walletmodel.cpp.

bool WalletModel::setWalletEncrypted ( bool  encrypted,
const SecureString passphrase 
)

Definition at line 296 of file walletmodel.cpp.

bool WalletModel::setWalletLocked ( bool  locked,
const SecureString passPhrase = SecureString() 
)

Definition at line 310 of file walletmodel.cpp.

void WalletModel::subscribeToCoreSignals ( )
private

Definition at line 365 of file walletmodel.cpp.

void WalletModel::unlockCoin ( COutPoint output)

Definition at line 477 of file walletmodel.cpp.

void WalletModel::unsubscribeFromCoreSignals ( )
private

Definition at line 373 of file walletmodel.cpp.

void WalletModel::updateAddressBook ( const QString &  address,
const QString &  label,
bool  isMine,
int  status 
)
slot

Definition at line 126 of file walletmodel.cpp.

void WalletModel::updateStatus ( )
slot

Definition at line 77 of file walletmodel.cpp.

void WalletModel::updateTransaction ( const QString &  hash,
int  status 
)
slot

Definition at line 110 of file walletmodel.cpp.

bool WalletModel::validateAddress ( const QString &  address)

Definition at line 132 of file walletmodel.cpp.

Member Data Documentation

AddressTableModel* WalletModel::addressTableModel
private

Definition at line 139 of file walletmodel.h.

qint64 WalletModel::cachedBalance
private

Definition at line 143 of file walletmodel.h.

EncryptionStatus WalletModel::cachedEncryptionStatus
private

Definition at line 147 of file walletmodel.h.

qint64 WalletModel::cachedImmatureBalance
private

Definition at line 145 of file walletmodel.h.

int WalletModel::cachedNumBlocks
private

Definition at line 148 of file walletmodel.h.

qint64 WalletModel::cachedNumTransactions
private

Definition at line 146 of file walletmodel.h.

qint64 WalletModel::cachedUnconfirmedBalance
private

Definition at line 144 of file walletmodel.h.

OptionsModel* WalletModel::optionsModel
private

Definition at line 137 of file walletmodel.h.

QTimer* WalletModel::pollTimer
private

Definition at line 150 of file walletmodel.h.

TransactionTableModel* WalletModel::transactionTableModel
private

Definition at line 140 of file walletmodel.h.

CWallet* WalletModel::wallet
private

Definition at line 133 of file walletmodel.h.


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