mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-14 22:02:37 -03:00
b9b58f8f68
b3b6b6f62f
gui: don't disable the sync overlay when wallet is disabled (Ben Carman) Pull request description: Continuation of #13848. When running with `-disablewallet` the sync modal is now available by clicking on the progress bar or `syncing` icon. [Current Image of what the window looks like](https://imgur.com/6LsoT2l) Fixes #13828. ACKs for top commit: jonasschnelli: Tested ACKb3b6b6f62f
Tree-SHA512: 325bc22a0b692bfb8fcc9d84e02dfc506146028b97b3609e23c2c45288c79b8aead1ad2e9b8d692f5f6771b4d2aee63fbe71bfaeaf17d260865da32ab3631e07
51 lines
1.5 KiB
C++
51 lines
1.5 KiB
C++
// Copyright (c) 2016-2018 The Bitcoin Core developers
|
|
// 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>
|
|
|
|
//! The required delta of headers to the estimated number of available headers until we show the IBD progress
|
|
static constexpr int HEADER_HEIGHT_DELTA_SYNC = 24;
|
|
|
|
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);
|
|
~ModalOverlay();
|
|
|
|
public Q_SLOTS:
|
|
void tipUpdate(int count, const QDateTime& blockDate, double nVerificationProgress);
|
|
void setKnownBestHeight(int count, const QDateTime& blockDate);
|
|
|
|
void toggleVisibility();
|
|
// will show or hide the modal layer
|
|
void showHide(bool hide = false, bool userRequested = false);
|
|
void closeClicked();
|
|
bool isLayerVisible() const { return layerIsVisible; }
|
|
|
|
protected:
|
|
bool eventFilter(QObject * obj, QEvent * ev);
|
|
bool event(QEvent* ev);
|
|
|
|
private:
|
|
Ui::ModalOverlay *ui;
|
|
int bestHeaderHeight; //best known height (based on the headers)
|
|
QDateTime bestHeaderDate;
|
|
QVector<QPair<qint64, double> > blockProcessTime;
|
|
bool layerIsVisible;
|
|
bool userClosed;
|
|
void UpdateHeaderSyncLabel();
|
|
};
|
|
|
|
#endif // BITCOIN_QT_MODALOVERLAY_H
|