Bitcoin Core 28.99.0
P2P Digital Currency
askpassphrasedialog.h
Go to the documentation of this file.
1// Copyright (c) 2011-2020 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.
4
5#ifndef BITCOIN_QT_ASKPASSPHRASEDIALOG_H
6#define BITCOIN_QT_ASKPASSPHRASEDIALOG_H
7
8#include <QDialog>
9
11
12class WalletModel;
13
14namespace Ui {
16}
17
20class AskPassphraseDialog : public QDialog
21{
22 Q_OBJECT
23
24public:
25 enum Mode {
30 };
31
32 explicit AskPassphraseDialog(Mode mode, QWidget *parent, SecureString* passphrase_out = nullptr);
34
35 void accept() override;
36
38
39private:
40 Ui::AskPassphraseDialog *ui;
42 WalletModel* model{nullptr};
43 bool fCapsLock{false};
45
46private Q_SLOTS:
47 void textChanged();
49 void toggleShowPassword(bool);
50
51protected:
52 bool event(QEvent *event) override;
53 bool eventFilter(QObject *object, QEvent *event) override;
54};
55
56#endif // BITCOIN_QT_ASKPASSPHRASEDIALOG_H
Multifunctional dialog to ask for passphrases.
SecureString * m_passphrase_out
AskPassphraseDialog(Mode mode, QWidget *parent, SecureString *passphrase_out=nullptr)
void setModel(WalletModel *model)
bool eventFilter(QObject *object, QEvent *event) override
bool event(QEvent *event) override
@ Unlock
Ask passphrase and unlock.
@ Encrypt
Ask passphrase twice and encrypt.
@ ChangePass
Ask old passphrase + new passphrase twice.
@ UnlockMigration
Ask passphrase for unlocking during migration.
Ui::AskPassphraseDialog * ui
Interface to Bitcoin wallet from Qt view code.
Definition: walletmodel.h:48
std::basic_string< char, std::char_traits< char >, secure_allocator< char > > SecureString
Definition: secure.h:58