1 // Copyright (c) 2011-2015 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_QT_ASKPASSPHRASEDIALOG_H
6 #define BITCOIN_QT_ASKPASSPHRASEDIALOG_H
13 class AskPassphraseDialog
;
16 /** Multifunctional dialog to ask for passphrases. Used for encryption, unlocking, and changing the passphrase.
18 class AskPassphraseDialog
: public QDialog
24 Encrypt
, /**< Ask passphrase twice and encrypt */
25 Unlock
, /**< Ask passphrase and unlock */
26 ChangePass
, /**< Ask old passphrase + new passphrase twice */
27 Decrypt
/**< Ask passphrase and decrypt wallet */
30 explicit AskPassphraseDialog(Mode mode
, QWidget
*parent
);
31 ~AskPassphraseDialog();
35 void setModel(WalletModel
*model
);
38 Ui::AskPassphraseDialog
*ui
;
45 void secureClearPassFields();
48 bool event(QEvent
*event
);
49 bool eventFilter(QObject
*object
, QEvent
*event
);
52 #endif // BITCOIN_QT_ASKPASSPHRASEDIALOG_H