wowlet/src/wizard/network.h

34 lines
621 B
C
Raw Permalink Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2020-12-26 19:56:06 +00:00
// Copyright (c) 2020-2021, The Monero Project.
2021-03-30 09:52:29 +00:00
#ifndef WOWLET_WIZARDNETWORK_H
#define WOWLET_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;
};
2021-03-30 09:52:29 +00:00
#endif //WOWLET_WIZARDNETWORK_H