mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 14:06:27 -05:00
qt, refactor: Cleanup ModalOverlay slots
This commit is contained in:
parent
ca055885c6
commit
e74cd2083d
1 changed files with 4 additions and 3 deletions
|
@ -25,16 +25,17 @@ 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; }
|
||||
|
||||
public Q_SLOTS:
|
||||
void toggleVisibility();
|
||||
void closeClicked();
|
||||
|
||||
protected:
|
||||
bool eventFilter(QObject * obj, QEvent * ev) override;
|
||||
bool event(QEvent* ev) override;
|
||||
|
|
Loading…
Add table
Reference in a new issue