2016-09-24 05:46:08 +02:00
|
|
|
// Copyright (c) 2016 The Bitcoin Core developers
|
2016-07-19 15:51:24 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_QT_MODALOVERLAY_H
|
|
|
|
#define BITCOIN_QT_MODALOVERLAY_H
|
|
|
|
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2017-01-03 15:09:57 +01:00
|
|
|
//! The required delta of headers to the estimated number of available headers until we show the IBD progress
|
2017-01-19 20:51:59 +01:00
|
|
|
static constexpr int HEADER_HEIGHT_DELTA_SYNC = 24;
|
2017-01-03 15:09:57 +01:00
|
|
|
|
2016-07-19 15:51:24 +02:00
|
|
|
namespace Ui {
|
|
|
|
class ModalOverlay;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Modal overlay to display information about the chain-sync state */
|
|
|
|
class ModalOverlay : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ModalOverlay(QWidget *parent);
|
|
|
|
~ModalOverlay();
|
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
void tipUpdate(int count, const QDateTime& blockDate, double nVerificationProgress);
|
2016-09-13 16:36:24 +02:00
|
|
|
void setKnownBestHeight(int count, const QDateTime& blockDate);
|
2016-07-19 15:51:24 +02:00
|
|
|
|
2016-12-05 09:26:43 +01:00
|
|
|
void toggleVisibility();
|
2016-07-19 15:51:24 +02:00
|
|
|
// will show or hide the modal layer
|
|
|
|
void showHide(bool hide = false, bool userRequested = false);
|
|
|
|
void closeClicked();
|
2017-03-09 13:34:54 +01:00
|
|
|
bool isLayerVisible() const { return layerIsVisible; }
|
2016-07-19 15:51:24 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
bool eventFilter(QObject * obj, QEvent * ev);
|
|
|
|
bool event(QEvent* ev);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::ModalOverlay *ui;
|
2016-09-26 18:58:51 +02:00
|
|
|
int bestHeaderHeight; //best known height (based on the headers)
|
|
|
|
QDateTime bestHeaderDate;
|
2016-07-19 15:51:24 +02:00
|
|
|
QVector<QPair<qint64, double> > blockProcessTime;
|
|
|
|
bool layerIsVisible;
|
|
|
|
bool userClosed;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BITCOIN_QT_MODALOVERLAY_H
|