NOISSUE feature complete setup wizard
This commit is contained in:
33
application/setupwizard/LanguageWizardPage.h
Normal file
33
application/setupwizard/LanguageWizardPage.h
Normal file
@ -0,0 +1,33 @@
|
||||
#pragma once
|
||||
|
||||
#include "BaseWizardPage.h"
|
||||
|
||||
class QVBoxLayout;
|
||||
class QListView;
|
||||
|
||||
class LanguageWizardPage : public BaseWizardPage
|
||||
{
|
||||
Q_OBJECT;
|
||||
public:
|
||||
explicit LanguageWizardPage(QWidget *parent = Q_NULLPTR);
|
||||
|
||||
virtual ~LanguageWizardPage();
|
||||
|
||||
bool wantsRefreshButton() override;
|
||||
|
||||
void refresh() override;
|
||||
|
||||
bool validatePage() override;
|
||||
|
||||
static bool isRequired();
|
||||
|
||||
protected:
|
||||
void retranslate() override;
|
||||
|
||||
protected slots:
|
||||
void languageRowChanged(const QModelIndex ¤t, const QModelIndex &previous);
|
||||
|
||||
private:
|
||||
QVBoxLayout *verticalLayout = nullptr;
|
||||
QListView *languageView = nullptr;
|
||||
};
|
Reference in New Issue
Block a user