bitcoin/src/qt/clientmodel.h

67 lines
1.5 KiB
C
Raw Normal View History

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