bitcoin/src/qt/clientmodel.h

64 lines
1.4 KiB
C
Raw Normal View History

#ifndef CLIENTMODEL_H
#define CLIENTMODEL_H
#include <QObject>
class OptionsModel;
class AddressTableModel;
2011-06-05 07:03:29 -07:00
class TransactionTableModel;
class CWallet;
QT_BEGIN_NAMESPACE
class QDateTime;
QT_END_NAMESPACE
2011-11-13 04:19:52 -08: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 04:19:52 -08:00
//! Return true if client connected to testnet
bool isTestNet() const;
2011-11-13 04:19:52 -08:00
//! Return true if core is doing initial block download
bool inInitialBlockDownload() const;
2011-11-13 04:19:52 -08:00
//! Return conservative estimate of total number of blocks, or 0 if unknown
int getNumBlocksOfPeers() const;
2011-12-13 11:00:21 -08:00
//! Return warnings to be displayed in status bar
QString getStatusBarWarnings() const;
2011-07-01 08:06:36 -07:00
QString formatFullVersion() const;
private:
OptionsModel *optionsModel;
2011-05-30 11:20:12 -07:00
int cachedNumConnections;
int cachedNumBlocks;
QString cachedStatusBar;
int numBlocksAtStartup;
signals:
void numConnectionsChanged(int count);
void numBlocksChanged(int count);
2011-11-13 04:19:52 -08:00
//! Asynchronous error notification
2011-05-30 11:20:12 -07:00
void error(const QString &title, const QString &message);
public slots:
private slots:
void update();
};
#endif // CLIENTMODEL_H