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;
|
2012-05-05 16:07:14 +02:00
|
|
|
class QTimer;
|
2011-07-08 18:05:10 +02:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2012-10-21 21:23:13 +02:00
|
|
|
enum BlockSource {
|
|
|
|
BLOCK_SOURCE_NONE,
|
|
|
|
BLOCK_SOURCE_NETWORK,
|
|
|
|
BLOCK_SOURCE_DISK,
|
|
|
|
BLOCK_SOURCE_REINDEX
|
|
|
|
};
|
|
|
|
|
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);
|
2012-05-06 19:40:58 +02:00
|
|
|
~ClientModel();
|
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;
|
2012-09-13 14:33:52 +02:00
|
|
|
//! Return true if core is importing blocks
|
2012-10-21 21:23:13 +02:00
|
|
|
enum BlockSource getBlockSource() 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;
|
2012-04-07 02:06:53 +02:00
|
|
|
QString formatBuildDate() const;
|
2012-10-24 21:47:07 +02:00
|
|
|
bool isReleaseVersion() const;
|
2012-04-09 21:07:25 +02:00
|
|
|
QString clientName() const;
|
2012-05-21 23:05:54 +02:00
|
|
|
QString formatClientStartupTime() const;
|
2011-07-01 17:06:36 +02:00
|
|
|
|
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 cachedNumBlocks;
|
2012-05-05 16:07:14 +02:00
|
|
|
int cachedNumBlocksOfPeers;
|
2011-07-17 14:06:43 +02:00
|
|
|
|
2011-09-10 11:43:45 +02:00
|
|
|
int numBlocksAtStartup;
|
|
|
|
|
2012-05-05 16:07:14 +02:00
|
|
|
QTimer *pollTimer;
|
|
|
|
|
2012-05-06 19:40:58 +02:00
|
|
|
void subscribeToCoreSignals();
|
|
|
|
void unsubscribeFromCoreSignals();
|
2011-05-22 17:19:43 +02:00
|
|
|
signals:
|
|
|
|
void numConnectionsChanged(int count);
|
2012-05-05 16:07:14 +02:00
|
|
|
void numBlocksChanged(int count, int countOfPeers);
|
2012-10-24 21:47:07 +02:00
|
|
|
void alertsChanged(const QString &warnings);
|
2011-06-30 18:05:29 +02:00
|
|
|
|
2012-11-05 08:04:21 +01:00
|
|
|
//! Asynchronous message notification
|
2012-12-03 13:24:42 +01:00
|
|
|
void message(const QString &title, const QString &message, unsigned int style);
|
2011-05-22 17:19:43 +02:00
|
|
|
|
|
|
|
public slots:
|
2012-05-05 16:07:14 +02:00
|
|
|
void updateTimer();
|
|
|
|
void updateNumConnections(int numConnections);
|
|
|
|
void updateAlert(const QString &hash, int status);
|
2011-05-22 17:19:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CLIENTMODEL_H
|