aboutsummaryrefslogtreecommitdiff
path: root/src/qt/clientmodel.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2011-06-30 18:05:29 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2011-06-30 18:05:29 +0200
commitef079e183bf1be9f5a61a05018ee4480db86bc45 (patch)
treecc14168e8fff26b5024086ca32c471277a0a6c71 /src/qt/clientmodel.h
parent929eb9dc6cc65d1ff47ff21dcb9fa5974a9278ee (diff)
downloadbitcoin-ef079e183bf1be9f5a61a05018ee4480db86bc45.tar.xz
Split off WalletModel from ClientModel, to be able to support multi-wallets in future
Diffstat (limited to 'src/qt/clientmodel.h')
-rw-r--r--src/qt/clientmodel.h31
1 files changed, 7 insertions, 24 deletions
diff --git a/src/qt/clientmodel.h b/src/qt/clientmodel.h
index 9c23a14a0a..a5028ff3b8 100644
--- a/src/qt/clientmodel.h
+++ b/src/qt/clientmodel.h
@@ -8,52 +8,35 @@ class AddressTableModel;
class TransactionTableModel;
class CWallet;
+// Interface to Bitcoin network client
class ClientModel : public QObject
{
Q_OBJECT
public:
+ // The only reason that this constructor takes a wallet is because
+ // the global client settings are stored in the main wallet.
explicit ClientModel(CWallet *wallet, QObject *parent = 0);
- enum StatusCode
- {
- OK,
- InvalidAmount,
- InvalidAddress,
- AmountExceedsBalance,
- AmountWithFeeExceedsBalance,
- Aborted,
- MiscError
- };
-
OptionsModel *getOptionsModel();
- AddressTableModel *getAddressTableModel();
- TransactionTableModel *getTransactionTableModel();
- qint64 getBalance() const;
int getNumConnections() const;
int getNumBlocks() const;
- int getNumTransactions() const;
- /* Return true if core is doing initial block download */
+ // Return true if core is doing initial block download
bool inInitialBlockDownload() const;
- /* Return conservative estimate of total number of blocks, or 0 if unknown */
+ // Return conservative estimate of total number of blocks, or 0 if unknown
int getTotalBlocksEstimate() const;
- /* Send coins */
- StatusCode sendCoins(const QString &payTo, qint64 payAmount, const QString &addToAddressBookAs=QString());
private:
CWallet *wallet;
OptionsModel *optionsModel;
- AddressTableModel *addressTableModel;
- TransactionTableModel *transactionTableModel;
signals:
- void balanceChanged(qint64 balance);
void numConnectionsChanged(int count);
void numBlocksChanged(int count);
- void numTransactionsChanged(int count);
- /* Asynchronous error notification */
+
+ // Asynchronous error notification
void error(const QString &title, const QString &message);
public slots: