Files
thehub/hub-qt/clientmodel.h
T

124 lines
3.6 KiB
C++
Raw Permalink Normal View History

2017-11-09 19:34:51 +01:00
/*
* This file is part of the Flowee project
* Copyright (C) 2011-2015 The Bitcoin Core developers
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2013-11-04 16:20:43 +01:00
2018-01-16 10:47:52 +00:00
#ifndef FLOWEE_QT_CLIENTMODEL_H
#define FLOWEE_QT_CLIENTMODEL_H
2011-05-22 17:19:43 +02:00
#include <QObject>
#include <QDateTime>
class AddressTableModel;
2015-06-20 20:27:03 +02:00
class BanTableModel;
2013-04-13 00:13:08 -05:00
class OptionsModel;
2014-05-23 12:09:59 -05:00
class PeerTableModel;
2011-06-05 16:03:29 +02:00
class TransactionTableModel;
2013-04-13 00:13:08 -05:00
2011-06-26 19:23:24 +02:00
class CWallet;
class CBlockIndex;
2011-05-22 17:19:43 +02:00
QT_BEGIN_NAMESPACE
2012-05-05 16:07:14 +02:00
class QTimer;
QT_END_NAMESPACE
enum BlockSource {
BLOCK_SOURCE_NONE,
BLOCK_SOURCE_REINDEX,
BLOCK_SOURCE_NETWORK
};
enum NumConnections {
CONNECTIONS_NONE = 0,
CONNECTIONS_IN = (1U << 0),
CONNECTIONS_OUT = (1U << 1),
CONNECTIONS_ALL = (CONNECTIONS_IN | CONNECTIONS_OUT),
};
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
2013-01-23 21:51:02 +01:00
2011-05-22 17:19:43 +02:00
public:
explicit ClientModel(OptionsModel *optionsModel, QObject *parent = 0);
2012-05-06 19:40:58 +02:00
~ClientModel();
2011-05-22 17:19:43 +02:00
OptionsModel *getOptionsModel();
2014-05-23 12:09:59 -05:00
PeerTableModel *getPeerTableModel();
2015-06-20 20:27:03 +02:00
BanTableModel *getBanTableModel();
//! Return number of connections, default is in- and outbound (total)
int getNumConnections(unsigned int flags = CONNECTIONS_ALL) const;
int getNumBlocks() const;
2015-11-09 11:45:07 +01:00
//! Return number of transactions in the mempool
long getMempoolSize() const;
//! Return the dynamic memory usage of the mempool
size_t getMempoolDynamicUsage() const;
2013-08-23 02:09:32 +10:00
quint64 getTotalBytesRecv() const;
quint64 getTotalBytesSent() const;
double getVerificationProgress(const CBlockIndex *tip) const;
QDateTime getLastBlockDate() const;
2011-11-13 13:19:52 +01:00
//! Return true if core is doing initial block download
bool inInitialBlockDownload() const;
//! Return true if core is importing blocks
enum BlockSource getBlockSource() const;
2011-12-13 14:00:21 -05: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;
2015-08-06 15:40:50 +02:00
QString formatSubVersion() 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;
QString formatClientStartupTime() const;
2011-07-01 17:06:36 +02:00
private:
OptionsModel *optionsModel;
2014-05-23 12:09:59 -05:00
PeerTableModel *peerTableModel;
2015-06-20 20:27:03 +02:00
BanTableModel *banTableModel;
2011-05-30 20:20:12 +02:00
2012-05-05 16:07:14 +02:00
QTimer *pollTimer;
2012-05-06 19:40:58 +02:00
void subscribeToCoreSignals();
void unsubscribeFromCoreSignals();
2013-01-23 21:51:02 +01:00
2015-07-14 13:59:05 +02:00
Q_SIGNALS:
2011-05-22 17:19:43 +02:00
void numConnectionsChanged(int count);
void numBlocksChanged(int count, const QDateTime& blockDate, double nVerificationProgress);
2015-11-09 11:45:07 +01:00
void mempoolSizeChanged(long count, size_t mempoolSizeInBytes);
2012-10-24 21:47:07 +02:00
void alertsChanged(const QString &warnings);
2013-08-23 02:09:32 +10:00
void bytesChanged(quint64 totalBytesIn, quint64 totalBytesOut);
2013-12-03 09:25:24 +01:00
//! Fired when a message should be reported to the user
void message(const QString &title, const QString &message, unsigned int style);
2011-05-22 17:19:43 +02:00
2014-05-23 18:04:09 +02:00
// Show progress dialog e.g. for verifychain
void showProgress(const QString &title, int nProgress);
2015-07-14 13:59:05 +02:00
public Q_SLOTS:
2012-05-05 16:07:14 +02:00
void updateTimer();
void updateNumConnections(int numConnections);
2016-03-07 19:44:09 +00:00
void updateAlert();
2015-06-20 20:27:03 +02:00
void updateBanlist();
2011-05-22 17:19:43 +02:00
};
2018-01-16 10:47:52 +00:00
#endif