mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
133700160a
Co-Authored-By: tobtoht <thotbot@protonmail.com>
33 lines
619 B
C++
33 lines
619 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020, 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 NetworkPage;
|
|
}
|
|
|
|
class NetworkPage : public QWizardPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit NetworkPage(AppContext *ctx, QWidget *parent = nullptr);
|
|
bool validatePage() override;
|
|
int nextId() const override;
|
|
|
|
private:
|
|
AppContext *m_ctx;
|
|
QLabel *topLabel;
|
|
Ui::NetworkPage *ui;
|
|
};
|
|
|
|
#endif //FEATHER_WIZARDNETWORK_H
|