2011-05-22 17:19:43 +02:00
|
|
|
#ifndef CLIENTMODEL_H
|
|
|
|
#define CLIENTMODEL_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2011-06-03 21:03:20 +02:00
|
|
|
|
2011-05-31 22:24:53 +02:00
|
|
|
class OptionsModel;
|
2011-06-03 21:03:20 +02:00
|
|
|
class AddressTableModel;
|
2011-06-05 16:03:29 +02:00
|
|
|
class TransactionTableModel;
|
2011-06-26 19:23:24 +02:00
|
|
|
class CWallet;
|
2011-05-22 17:19:43 +02:00
|
|
|
|
2011-06-30 18:05:29 +02:00
|
|
|
// Interface to Bitcoin network client
|
2011-05-22 17:19:43 +02:00
|
|
|
class ClientModel : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2011-06-30 18:05:29 +02:00
|
|
|
// The only reason that this constructor takes a wallet is because
|
|
|
|
// the global client settings are stored in the main wallet.
|
2011-06-26 19:23:24 +02:00
|
|
|
explicit ClientModel(CWallet *wallet, QObject *parent = 0);
|
2011-05-22 17:19:43 +02:00
|
|
|
|
2011-05-31 22:24:53 +02:00
|
|
|
OptionsModel *getOptionsModel();
|
|
|
|
|
2011-06-18 13:13:48 +02:00
|
|
|
int getNumConnections() const;
|
|
|
|
int getNumBlocks() const;
|
|
|
|
|
2011-06-30 19:14:42 +02:00
|
|
|
// Return true if client connected to testnet
|
|
|
|
bool isTestNet() const;
|
2011-06-30 18:05:29 +02:00
|
|
|
// Return true if core is doing initial block download
|
2011-06-18 13:13:48 +02:00
|
|
|
bool inInitialBlockDownload() const;
|
2011-06-30 18:05:29 +02:00
|
|
|
// Return conservative estimate of total number of blocks, or 0 if unknown
|
2011-06-18 21:25:38 +02:00
|
|
|
int getTotalBlocksEstimate() const;
|
2011-05-22 17:19:43 +02:00
|
|
|
|
2011-07-01 17:06:36 +02:00
|
|
|
QString formatFullVersion() const;
|
|
|
|
|
2011-05-31 22:24:53 +02:00
|
|
|
private:
|
2011-06-26 19:23:24 +02:00
|
|
|
CWallet *wallet;
|
|
|
|
|
2011-06-03 21:03:20 +02:00
|
|
|
OptionsModel *optionsModel;
|
2011-05-30 20:20:12 +02:00
|
|
|
|
2011-05-22 17:19:43 +02:00
|
|
|
signals:
|
|
|
|
void numConnectionsChanged(int count);
|
|
|
|
void numBlocksChanged(int count);
|
2011-06-30 18:05:29 +02:00
|
|
|
|
|
|
|
// Asynchronous error notification
|
2011-05-30 20:20:12 +02:00
|
|
|
void error(const QString &title, const QString &message);
|
2011-05-22 17:19:43 +02:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void update();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CLIENTMODEL_H
|