NOISSUE continue reshuffling the codebase
This commit is contained in:
29
launcher/ui/setupwizard/JavaWizardPage.h
Normal file
29
launcher/ui/setupwizard/JavaWizardPage.h
Normal file
@ -0,0 +1,29 @@
|
||||
#pragma once
|
||||
|
||||
#include "BaseWizardPage.h"
|
||||
|
||||
class JavaSettingsWidget;
|
||||
|
||||
class JavaWizardPage : public BaseWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit JavaWizardPage(QWidget *parent = Q_NULLPTR);
|
||||
|
||||
virtual ~JavaWizardPage()
|
||||
{
|
||||
};
|
||||
|
||||
bool wantsRefreshButton() override;
|
||||
void refresh() override;
|
||||
void initializePage() override;
|
||||
bool validatePage() override;
|
||||
|
||||
protected: /* methods */
|
||||
void setupUi();
|
||||
void retranslate() override;
|
||||
|
||||
private: /* data */
|
||||
JavaSettingsWidget *m_java_widget = nullptr;
|
||||
};
|
||||
|
Reference in New Issue
Block a user