NOISSUE continue reshuffling the codebase
This commit is contained in:
parent
5040231f8d
commit
b258eac215
244 changed files with 516 additions and 768 deletions
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;
|
||||
};
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue