diff options
author | Cozz Lovan <cozzlovan@yahoo.com> | 2014-03-19 00:26:14 +0100 |
---|---|---|
committer | Cozz Lovan <cozzlovan@yahoo.com> | 2014-04-02 03:48:07 +0200 |
commit | 392783697c21a0c4cf3db6b0946d3d44d7fed537 (patch) | |
tree | 9f0808ba972d629af5cae087b57c398bbd015b95 /src/qt/walletview.h | |
parent | 397521d632b4a49e61c8ea2246135f9cc00e57c4 (diff) |
[Qt] rescan progress
Diffstat (limited to 'src/qt/walletview.h')
-rw-r--r-- | src/qt/walletview.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/qt/walletview.h b/src/qt/walletview.h index ecfa06ac5a..9cfa8d6760 100644 --- a/src/qt/walletview.h +++ b/src/qt/walletview.h @@ -18,6 +18,7 @@ class WalletModel; QT_BEGIN_NAMESPACE class QModelIndex; +class QProgressDialog; QT_END_NAMESPACE /* @@ -60,6 +61,8 @@ private: TransactionView *transactionView; + QProgressDialog *progressDialog; + public slots: /** Switch to overview (home) page */ void gotoOverviewPage(); @@ -97,6 +100,9 @@ public slots: /** Re-emit encryption status signal */ void updateEncryptionStatus(); + /** Show progress dialog e.g. for rescan */ + void showProgress(const QString &title, int nProgress); + signals: /** Signal that we want to show the main window */ void showNormalIfMinimized(); |