![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
Interface to Bitcoin wallet from Qt view code. More...
#include <walletmodel.h>
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 () | |
OptionsModel * | getOptionsModel () |
AddressTableModel * | getAddressTableModel () |
TransactionTableModel * | getTransactionTableModel () |
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 | |
CWallet * | wallet |
OptionsModel * | optionsModel |
AddressTableModel * | addressTableModel |
TransactionTableModel * | transactionTableModel |
qint64 | cachedBalance |
qint64 | cachedUnconfirmedBalance |
qint64 | cachedImmatureBalance |
qint64 | cachedNumTransactions |
EncryptionStatus | cachedEncryptionStatus |
int | cachedNumBlocks |
QTimer * | pollTimer |
Interface to Bitcoin wallet from Qt view code.
Definition at line 36 of file walletmodel.h.
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.
|
explicit |
Definition at line 15 of file walletmodel.cpp.
WalletModel::~WalletModel | ( | ) |
Definition at line 34 of file walletmodel.cpp.
bool WalletModel::backupWallet | ( | const QString & | filename | ) |
Definition at line 335 of file walletmodel.cpp.
|
signal |
bool WalletModel::changePassphrase | ( | const SecureString & | oldPass, |
const SecureString & | newPass | ||
) |
Definition at line 324 of file walletmodel.cpp.
|
private |
Definition at line 95 of file walletmodel.cpp.
|
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.
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.
|
signal |
|
signal |
|
slot |
Definition at line 85 of file walletmodel.cpp.
WalletModel::UnlockContext WalletModel::requestUnlock | ( | ) |
Definition at line 382 of file walletmodel.cpp.
|
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.
|
private |
Definition at line 365 of file walletmodel.cpp.
void WalletModel::unlockCoin | ( | COutPoint & | output | ) |
Definition at line 477 of file walletmodel.cpp.
|
private |
Definition at line 373 of file walletmodel.cpp.
|
slot |
Definition at line 126 of file walletmodel.cpp.
|
slot |
Definition at line 77 of file walletmodel.cpp.
|
slot |
Definition at line 110 of file walletmodel.cpp.
bool WalletModel::validateAddress | ( | const QString & | address | ) |
Definition at line 132 of file walletmodel.cpp.
|
private |
Definition at line 139 of file walletmodel.h.
|
private |
Definition at line 143 of file walletmodel.h.
|
private |
Definition at line 147 of file walletmodel.h.
|
private |
Definition at line 145 of file walletmodel.h.
|
private |
Definition at line 148 of file walletmodel.h.
|
private |
Definition at line 146 of file walletmodel.h.
|
private |
Definition at line 144 of file walletmodel.h.
|
private |
Definition at line 137 of file walletmodel.h.
|
private |
Definition at line 150 of file walletmodel.h.
|
private |
Definition at line 140 of file walletmodel.h.
|
private |
Definition at line 133 of file walletmodel.h.