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-07-08 18:05:10 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QDateTime;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Model for Bitcoin network client. */
|
2011-05-22 17:19:43 +02:00
|
|
|
class ClientModel : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2011-07-29 14:36:35 +02:00
|
|
|
explicit ClientModel(OptionsModel *optionsModel, 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-09-10 11:43:45 +02:00
|
|
|
int getNumBlocksAtStartup();
|
2011-06-18 13:13:48 +02:00
|
|
|
|
2011-07-08 18:05:10 +02:00
|
|
|
QDateTime getLastBlockDate() const;
|
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
//! Return true if client connected to testnet
|
2011-06-30 19:14:42 +02:00
|
|
|
bool isTestNet() const;
|
2011-11-13 13:19:52 +01:00
|
|
|
//! Return true if core is doing initial block download
|
2011-06-18 13:13:48 +02:00
|
|
|
bool inInitialBlockDownload() const;
|
2011-11-13 13:19:52 +01:00
|
|
|
//! Return conservative estimate of total number of blocks, or 0 if unknown
|
2011-09-11 10:49:30 +02:00
|
|
|
int getNumBlocksOfPeers() const;
|
2011-12-13 20:00:21 +01:00
|
|
|
//! Return warnings to be displayed in status bar
|
|
|
|
QString getStatusBarWarnings() 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-03 21:03:20 +02:00
|
|
|
OptionsModel *optionsModel;
|
2011-05-30 20:20:12 +02:00
|
|
|
|
2011-07-17 14:06:43 +02:00
|
|
|
int cachedNumConnections;
|
|
|
|
int cachedNumBlocks;
|
|
|
|
|
2011-09-10 11:43:45 +02:00
|
|
|
int numBlocksAtStartup;
|
|
|
|
|
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
|
|
|
|
2011-11-13 13:19:52 +01: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
|