wowlet/src/wizard/viewonlywallet.h

36 lines
650 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_WIZARDVIEWONLY_H
#define WOWLET_WIZARDVIEWONLY_H
#include <QLabel>
#include <QWizardPage>
#include <QWidget>
#include <QTextEdit>
#include <QCompleter>
#include "appcontext.h"
namespace Ui {
class ViewOnlyPage;
}
class ViewOnlyPage : public QWizardPage
{
Q_OBJECT
public:
explicit ViewOnlyPage(AppContext *ctx, QWidget *parent = nullptr);
bool validatePage() override;
int nextId() const override;
void cleanupPage() const;
private:
AppContext *m_ctx;
QLabel *topLabel;
Ui::ViewOnlyPage *ui;
};
#endif