2011-05-22 11:19:43 -04:00
|
|
|
#ifndef CLIENTMODEL_H
|
|
|
|
#define CLIENTMODEL_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2011-06-03 15:03:20 -04:00
|
|
|
|
2011-05-31 16:24:53 -04:00
|
|
|
class OptionsModel;
|
2011-06-03 15:03:20 -04:00
|
|
|
class AddressTableModel;
|
2011-06-05 10:03:29 -04:00
|
|
|
class TransactionTableModel;
|
2011-06-26 13:23:24 -04:00
|
|
|
class CWallet;
|
2011-05-22 11:19:43 -04:00
|
|
|
|
2011-07-08 12:05:10 -04:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QDateTime;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2011-11-13 09:19:52 -03:00
|
|
|
/** Model for Bitcoin network client. */
|
2011-05-22 11:19:43 -04:00
|
|
|
class ClientModel : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2011-07-29 08:36:35 -04:00
|
|
|
explicit ClientModel(OptionsModel *optionsModel, QObject *parent = 0);
|
2011-05-22 11:19:43 -04:00
|
|
|
|
2011-05-31 16:24:53 -04:00
|
|
|
OptionsModel *getOptionsModel();
|
|
|
|
|
2011-06-18 07:13:48 -04:00
|
|
|
int getNumConnections() const;
|
|
|
|
int getNumBlocks() const;
|
2011-09-10 06:43:45 -03:00
|
|
|
int getNumBlocksAtStartup();
|
2011-06-18 07:13:48 -04:00
|
|
|
|
2011-07-08 12:05:10 -04:00
|
|
|
QDateTime getLastBlockDate() const;
|
|
|
|
|
2011-11-13 09:19:52 -03:00
|
|
|
//! Return true if client connected to testnet
|
2011-06-30 13:14:42 -04:00
|
|
|
bool isTestNet() const;
|
2011-11-13 09:19:52 -03:00
|
|
|
//! Return true if core is doing initial block download
|
2011-06-18 07:13:48 -04:00
|
|
|
bool inInitialBlockDownload() const;
|
2011-11-13 09:19:52 -03:00
|
|
|
//! Return conservative estimate of total number of blocks, or 0 if unknown
|
2011-09-11 05:49:30 -03:00
|
|
|
int getNumBlocksOfPeers() const;
|
2011-05-22 11:19:43 -04:00
|
|
|
|
2011-07-01 11:06:36 -04:00
|
|
|
QString formatFullVersion() const;
|
|
|
|
|
2011-05-31 16:24:53 -04:00
|
|
|
private:
|
2011-06-03 15:03:20 -04:00
|
|
|
OptionsModel *optionsModel;
|
2011-05-30 14:20:12 -04:00
|
|
|
|
2011-07-17 08:06:43 -04:00
|
|
|
int cachedNumConnections;
|
|
|
|
int cachedNumBlocks;
|
|
|
|
|
2011-09-10 06:43:45 -03:00
|
|
|
int numBlocksAtStartup;
|
|
|
|
|
2011-05-22 11:19:43 -04:00
|
|
|
signals:
|
|
|
|
void numConnectionsChanged(int count);
|
|
|
|
void numBlocksChanged(int count);
|
2011-06-30 12:05:29 -04:00
|
|
|
|
2011-11-13 09:19:52 -03:00
|
|
|
//! Asynchronous error notification
|
2011-05-30 14:20:12 -04:00
|
|
|
void error(const QString &title, const QString &message);
|
2011-05-22 11:19:43 -04:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void update();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CLIENTMODEL_H
|