dogecoin/src/qt/clientmodel.h

61 lines
1.3 KiB
C
Raw Normal View History

#ifndef CLIENTMODEL_H
#define CLIENTMODEL_H
#include <QObject>
class OptionsModel;
class AddressTableModel;
2011-06-05 16:03:29 +02:00
class TransactionTableModel;
class CWallet;
QT_BEGIN_NAMESPACE
class QDateTime;
QT_END_NAMESPACE
2011-11-13 13:19:52 +01:00
/** Model for Bitcoin network client. */
class ClientModel : public QObject
{
Q_OBJECT
public:
explicit ClientModel(OptionsModel *optionsModel, QObject *parent = 0);
OptionsModel *getOptionsModel();
int getNumConnections() const;
int getNumBlocks() const;
int getNumBlocksAtStartup();
QDateTime getLastBlockDate() const;
2011-11-13 13:19:52 +01:00
//! Return true if client connected to testnet
bool isTestNet() const;
2011-11-13 13:19:52 +01:00
//! Return true if core is doing initial block download
bool inInitialBlockDownload() const;
2011-11-13 13:19:52 +01:00
//! Return conservative estimate of total number of blocks, or 0 if unknown
int getNumBlocksOfPeers() const;
2011-07-01 17:06:36 +02:00
QString formatFullVersion() const;
private:
OptionsModel *optionsModel;
2011-05-30 20:20:12 +02:00
int cachedNumConnections;
int cachedNumBlocks;
int numBlocksAtStartup;
signals:
void numConnectionsChanged(int count);
void numBlocksChanged(int count);
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);
public slots:
private slots:
void update();
};
#endif // CLIENTMODEL_H