wowlet/src/wizard/menu.h

34 lines
670 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 10:52:29 +01:00
#ifndef WOWLET_WIZARDMENU_H
#define WOWLET_WIZARDMENU_H
#include <QLabel>
#include <QWizardPage>
#include <QWidget>
#include "appcontext.h"
namespace Ui {
class MenuPage;
}
class MenuPage : public QWizardPage
{
Q_OBJECT
public:
explicit MenuPage(AppContext *ctx, WalletKeysFilesModel *wallets, QWidget *parent = nullptr);
void initializePage() override;
bool validatePage() override;
int nextId() const override;
private:
AppContext *m_ctx;
WalletKeysFilesModel *m_walletKeysFilesModel;
Ui::MenuPage *ui;
};
2021-03-30 10:52:29 +01:00
#endif //WOWLET_WIZARDMENU_H