mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-03 02:06:18 +00:00
-BEGIN VERIFY SCRIPT- sed --in-place --regexp-extended \ 's;( 20[0-2][0-9])(-20[0-2][0-9])? The Bitcoin Core developers;\1-present The Bitcoin Core developers;g' \ $( git grep -l 'The Bitcoin Core developers' -- ':(exclude)COPYING' ':(exclude)src/ipc/libmultiprocess' ':(exclude)src/minisketch' ) -END VERIFY SCRIPT-
46 lines
1.0 KiB
C++
46 lines
1.0 KiB
C++
// Copyright (c) 2019-present The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_QT_CREATEWALLETDIALOG_H
|
|
#define BITCOIN_QT_CREATEWALLETDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include <memory>
|
|
|
|
namespace interfaces {
|
|
class ExternalSigner;
|
|
} // namespace interfaces
|
|
|
|
class WalletModel;
|
|
|
|
namespace Ui {
|
|
class CreateWalletDialog;
|
|
}
|
|
|
|
/** Dialog for creating wallets
|
|
*/
|
|
class CreateWalletDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CreateWalletDialog(QWidget* parent);
|
|
virtual ~CreateWalletDialog();
|
|
|
|
void setSigners(const std::vector<std::unique_ptr<interfaces::ExternalSigner>>& signers);
|
|
|
|
QString walletName() const;
|
|
bool isEncryptWalletChecked() const;
|
|
bool isDisablePrivateKeysChecked() const;
|
|
bool isMakeBlankWalletChecked() const;
|
|
bool isExternalSignerChecked() const;
|
|
|
|
private:
|
|
Ui::CreateWalletDialog *ui;
|
|
bool m_has_signers = false;
|
|
};
|
|
|
|
#endif // BITCOIN_QT_CREATEWALLETDIALOG_H
|