mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-25 03:45:53 +00:00
29 lines
572 B
C++
29 lines
572 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020-2021, 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, QWidget *parent = nullptr);
|
|
~PasswordDialog() override;
|
|
|
|
QString password = "";
|
|
|
|
private:
|
|
QScopedPointer<Ui::PasswordDialog> ui;
|
|
};
|
|
|
|
#endif //FEATHER_PASSWORDDIALOG_H
|