2020-11-24 13:40:17 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-12-26 19:56:06 +00:00
|
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
2020-11-24 13:40:17 +00:00
|
|
|
|
|
|
|
#ifndef FEATHER_PASSWORDDIALOG_H
|
|
|
|
#define FEATHER_PASSWORDDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class PasswordDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class PasswordDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit PasswordDialog(QWidget *parent, const QString &walletName, bool incorrectPassword);
|
|
|
|
~PasswordDialog() override;
|
|
|
|
|
|
|
|
QString password = "";
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::PasswordDialog *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //FEATHER_PASSWORDDIALOG_H
|