aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoingui.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2011-08-23 20:08:42 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2011-08-23 20:08:42 +0200
commitae8adeb90abb334b8e5712124e62461eca77c12f (patch)
treee35c4b1e07771c8c642bbffa65456ce309461d7e /src/qt/bitcoingui.h
parentadce862c2795142a5f56933584abffdbe3599472 (diff)
downloadbitcoin-ae8adeb90abb334b8e5712124e62461eca77c12f.tar.xz
Wallet encryption part 1: show wallet encryption status
Diffstat (limited to 'src/qt/bitcoingui.h')
-rw-r--r--src/qt/bitcoingui.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h
index 377da72611..4b7131710c 100644
--- a/src/qt/bitcoingui.h
+++ b/src/qt/bitcoingui.h
@@ -57,6 +57,7 @@ private:
AddressBookPage *receiveCoinsPage;
SendCoinsDialog *sendCoinsPage;
+ QLabel *labelEncryptionIcon;
QLabel *labelConnectionsIcon;
QLabel *labelBlocksIcon;
QLabel *progressBarLabel;
@@ -85,6 +86,8 @@ private:
public slots:
void setNumConnections(int count);
void setNumBlocks(int count);
+ void setEncryptionStatus(int status);
+
void error(const QString &title, const QString &message);
/* It is currently not possible to pass a return value to another thread through
BlockingQueuedConnection, so use an indirected pointer.