mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-26 12:26:11 +00:00
33 lines
640 B
C++
33 lines
640 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
|
|
|
#ifndef FEATHER_WIZARDNETWORK_H
|
|
#define FEATHER_WIZARDNETWORK_H
|
|
|
|
#include <QLabel>
|
|
#include <QWizardPage>
|
|
#include <QWidget>
|
|
|
|
#include "appcontext.h"
|
|
#include "utils/nodes.h"
|
|
|
|
namespace Ui {
|
|
class PageNetwork;
|
|
}
|
|
|
|
class PageNetwork : public QWizardPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PageNetwork(AppContext *ctx, QWidget *parent = nullptr);
|
|
bool validatePage() override;
|
|
int nextId() const override;
|
|
bool isComplete() const override;
|
|
|
|
private:
|
|
AppContext *m_ctx;
|
|
Ui::PageNetwork *ui;
|
|
};
|
|
|
|
#endif //FEATHER_WIZARDNETWORK_H
|