mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-24 11:35:52 +00:00
38 lines
711 B
C++
38 lines
711 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2022 The Monero Project
|
|
|
|
#ifndef FEATHER_PASSWORD_H
|
|
#define FEATHER_PASSWORD_H
|
|
|
|
#include <QWizardPage>
|
|
#include <QWidget>
|
|
|
|
#include "appcontext.h"
|
|
#include "WalletWizard.h"
|
|
|
|
namespace Ui {
|
|
class PageSetPassword;
|
|
}
|
|
|
|
class PageSetPassword : public QWizardPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PageSetPassword(WizardFields *fields, QWidget *parent = nullptr);
|
|
void initializePage() override;
|
|
bool validatePage() override;
|
|
int nextId() const override;
|
|
bool isComplete() const override;
|
|
|
|
signals:
|
|
void createWallet();
|
|
|
|
private:
|
|
Ui::PageSetPassword *ui;
|
|
|
|
WizardFields *m_fields;
|
|
};
|
|
|
|
|
|
#endif //FEATHER_PASSWORD_H
|