bitcoin/src/qt/modaloverlay.h

58 lines
1.6 KiB
C
Raw Normal View History

// Copyright (c) 2016-2020 The Bitcoin Core developers
2016-07-19 09:51:24 -04: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 <QPropertyAnimation>
2016-07-19 09:51:24 -04:00
#include <QWidget>
//! The required delta of headers to the estimated number of available headers until we show the IBD progress
2017-01-19 16:51:59 -03:00
static constexpr int HEADER_HEIGHT_DELTA_SYNC = 24;
2016-07-19 09:51:24 -04:00
namespace Ui {
class ModalOverlay;
}
/** Modal overlay to display information about the chain-sync state */
class ModalOverlay : public QWidget
{
Q_OBJECT
public:
explicit ModalOverlay(bool enable_wallet, QWidget *parent);
2016-07-19 09:51:24 -04:00
~ModalOverlay();
void tipUpdate(int count, const QDateTime& blockDate, double nVerificationProgress);
void setKnownBestHeight(int count, const QDateTime& blockDate);
2016-07-19 09:51:24 -04:00
// will show or hide the modal layer
void showHide(bool hide = false, bool userRequested = false);
bool isLayerVisible() const { return layerIsVisible; }
2016-07-19 09:51:24 -04:00
public Q_SLOTS:
void toggleVisibility();
void closeClicked();
Q_SIGNALS:
void triggered(bool hidden);
2016-07-19 09:51:24 -04:00
protected:
bool eventFilter(QObject * obj, QEvent * ev) override;
bool event(QEvent* ev) override;
2016-07-19 09:51:24 -04:00
private:
Ui::ModalOverlay *ui;
int bestHeaderHeight; //best known height (based on the headers)
QDateTime bestHeaderDate;
2016-07-19 09:51:24 -04:00
QVector<QPair<qint64, double> > blockProcessTime;
bool layerIsVisible;
bool userClosed;
QPropertyAnimation m_animation;
2019-01-03 18:37:18 -03:00
void UpdateHeaderSyncLabel();
2016-07-19 09:51:24 -04:00
};
#endif // BITCOIN_QT_MODALOVERLAY_H