X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Fqt%2Fbitcoingui.h;fp=src%2Fqt%2Fbitcoingui.h;h=b4dd7500b24ee51f5629981f168230f317b158ec;hp=c67e887c0f7c838fd7181457d7953cb9eb373b2d;hb=5411280b44a6c211ec7ce15919068a92ff2d9f51;hpb=8ed1f8522b08e8b9811c9c16284a9967d62fb07f diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index c67e887..b4dd750 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -87,6 +87,8 @@ private: QAction *exportAction; QAction *encryptWalletAction; QAction *backupWalletAction; + QAction *dumpWalletAction; + QAction *importWalletAction; QAction *changePassphraseAction; QAction *aboutQtAction; QAction *openRPCConsoleAction; @@ -120,6 +122,8 @@ public slots: /** Notify the user of an error in the network or transaction handling code. */ void error(const QString &title, const QString &message, bool modal); + void message(const QString &title, const QString &message, unsigned int style, const QString &detail=QString()); + /** Asks the user whether to pay the transaction fee or to cancel the transaction. It is currently not possible to pass a return value to another thread through BlockingQueuedConnection, so an indirected pointer is used. @@ -166,6 +170,10 @@ private slots: /** Backup the wallet */ void backupWallet(); /** Change encrypted wallet passphrase */ + + void dumpWallet(); + void importWallet(); + void changePassphrase(); /** Ask for passphrase to unlock wallet temporarily */ void unlockWallet();