mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-18 16:54:33 +00:00
29 lines
604 B
C++
29 lines
604 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
|
|
|
|
#ifndef FEATHER_PASSWORDDIALOG_H
|
|
#define FEATHER_PASSWORDDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "components.h"
|
|
|
|
namespace Ui {
|
|
class PasswordDialog;
|
|
}
|
|
|
|
class PasswordDialog : public WindowModalDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PasswordDialog(const QString &walletName, bool incorrectPassword, bool sensitive = false, QWidget *parent = nullptr);
|
|
~PasswordDialog() override;
|
|
|
|
QString password = "";
|
|
|
|
private:
|
|
QScopedPointer<Ui::PasswordDialog> ui;
|
|
};
|
|
|
|
#endif //FEATHER_PASSWORDDIALOG_H
|