Bitcoin ABC 0.30.5
P2P Digital Currency
modaloverlay.h
Go to the documentation of this file.
1// Copyright (c) 2016 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_QT_MODALOVERLAY_H
6#define BITCOIN_QT_MODALOVERLAY_H
7
8#include <QDateTime>
9#include <QPropertyAnimation>
10#include <QWidget>
11
14static constexpr int HEADER_HEIGHT_DELTA_SYNC = 24;
15
16namespace Ui {
17class ModalOverlay;
18}
19
21class ModalOverlay : public QWidget {
22 Q_OBJECT
23
24public:
25 explicit ModalOverlay(bool enable_wallet, QWidget *parent);
27
28 void tipUpdate(int count, const QDateTime &blockDate,
29 double nVerificationProgress);
30 void setKnownBestHeight(int count, const QDateTime &blockDate,
31 bool presync);
32
33 // will show or hide the modal layer
34 void showHide(bool hide = false, bool userRequested = false);
35 bool isLayerVisible() const { return layerIsVisible; }
36
37public Q_SLOTS:
38 void toggleVisibility();
39 void closeClicked();
40
41Q_SIGNALS:
42 void triggered(bool hidden);
43
44protected:
45 bool eventFilter(QObject *obj, QEvent *ev) override;
46 bool event(QEvent *ev) override;
47
48private:
49 Ui::ModalOverlay *ui;
50 int bestHeaderHeight; // best known height (based on the headers)
51 QDateTime bestHeaderDate;
52 QVector<QPair<qint64, double>> blockProcessTime;
55 QPropertyAnimation m_animation;
57 void UpdateHeaderPresyncLabel(int height, const QDateTime &blockDate);
58};
59
60#endif // BITCOIN_QT_MODALOVERLAY_H
Modal overlay to display information about the chain-sync state.
Definition: modaloverlay.h:21
void showHide(bool hide=false, bool userRequested=false)
bool event(QEvent *ev) override
Tracks parent widget changes.
void tipUpdate(int count, const QDateTime &blockDate, double nVerificationProgress)
void UpdateHeaderSyncLabel()
ModalOverlay(bool enable_wallet, QWidget *parent)
void toggleVisibility()
QDateTime bestHeaderDate
Definition: modaloverlay.h:51
bool layerIsVisible
Definition: modaloverlay.h:53
void triggered(bool hidden)
Ui::ModalOverlay * ui
Definition: modaloverlay.h:49
void closeClicked()
bool isLayerVisible() const
Definition: modaloverlay.h:35
void setKnownBestHeight(int count, const QDateTime &blockDate, bool presync)
QVector< QPair< qint64, double > > blockProcessTime
Definition: modaloverlay.h:52
int bestHeaderHeight
Definition: modaloverlay.h:50
bool eventFilter(QObject *obj, QEvent *ev) override
void UpdateHeaderPresyncLabel(int height, const QDateTime &blockDate)
QPropertyAnimation m_animation
Definition: modaloverlay.h:55
static constexpr int HEADER_HEIGHT_DELTA_SYNC
The required delta of headers to the estimated number of available headers until we show the IBD prog...
Definition: modaloverlay.h:14
static int count
Definition: tests.c:31