wowlet/src/dialog/passwordchangedialog.h

31 lines
600 B
C
Raw Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2020-12-26 19:56:06 +00:00
// Copyright (c) 2020-2021, The Monero Project.
2021-03-30 10:52:29 +01:00
#ifndef WOWLET_PASSWORDCHANGEDIALOG_H
#define WOWLET_PASSWORDCHANGEDIALOG_H
#include <QDialog>
2020-11-14 09:57:06 +00:00
#include "libwalletqt/Wallet.h"
namespace Ui {
class PasswordChangeDialog;
}
class PasswordChangeDialog : public QDialog
{
Q_OBJECT
public:
2020-11-14 09:57:06 +00:00
explicit PasswordChangeDialog(QWidget *parent, Wallet *wallet);
~PasswordChangeDialog() override;
private:
Ui::PasswordChangeDialog *ui;
2020-11-14 09:57:06 +00:00
Wallet *m_wallet;
void passwordsMatch();
2020-11-14 09:57:06 +00:00
void setPassword();
};
2021-03-30 10:52:29 +01:00
#endif //WOWLET_PASSWORDCHANGEDIALOG_H