mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-23 03:59:29 +00:00
33 lines
678 B
C++
33 lines
678 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
|
|
|
|
#ifndef FEATHER_PAGESETSEEDPASSPHRASE_H
|
|
#define FEATHER_PAGESETSEEDPASSPHRASE_H
|
|
|
|
#include <QWizardPage>
|
|
#include <QWidget>
|
|
|
|
#include "WalletWizard.h"
|
|
|
|
namespace Ui {
|
|
class PageSetSeedPassphrase;
|
|
}
|
|
|
|
class PageSetSeedPassphrase : public QWizardPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PageSetSeedPassphrase(WizardFields *fields, QWidget *parent = nullptr);
|
|
void initializePage() override;
|
|
bool validatePage() override;
|
|
int nextId() const override;
|
|
|
|
private:
|
|
Ui::PageSetSeedPassphrase *ui;
|
|
|
|
WizardFields *m_fields;
|
|
};
|
|
|
|
|
|
#endif //FEATHER_PAGESETSEEDPASSPHRASE_H
|