feather/src/wizard/PageNetwork.h

34 lines
640 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.
#ifndef FEATHER_WIZARDNETWORK_H
#define FEATHER_WIZARDNETWORK_H
#include <QLabel>
#include <QWizardPage>
#include <QWidget>
#include "appcontext.h"
#include "utils/nodes.h"
namespace Ui {
2021-03-12 18:26:48 +00:00
class PageNetwork;
}
2021-03-12 18:26:48 +00:00
class PageNetwork : public QWizardPage
{
Q_OBJECT
public:
2021-03-12 18:26:48 +00:00
explicit PageNetwork(AppContext *ctx, QWidget *parent = nullptr);
bool validatePage() override;
int nextId() const override;
2021-05-02 18:22:38 +00:00
bool isComplete() const override;
private:
AppContext *m_ctx;
2021-03-12 18:26:48 +00:00
Ui::PageNetwork *ui;
};
#endif //FEATHER_WIZARDNETWORK_H