pollymc/application/setupwizard/LanguageWizardPage.h

32 lines
570 B
C
Raw Normal View History

2017-01-05 08:35:08 +05:30
#pragma once
#include "BaseWizardPage.h"
class QVBoxLayout;
class QListView;
class LanguageWizardPage : public BaseWizardPage
{
Q_OBJECT
2017-01-05 08:35:08 +05:30
public:
explicit LanguageWizardPage(QWidget *parent = Q_NULLPTR);
virtual ~LanguageWizardPage();
bool wantsRefreshButton() override;
void refresh() override;
bool validatePage() override;
protected:
void retranslate() override;
protected slots:
void languageRowChanged(const QModelIndex &current, const QModelIndex &previous);
private:
QVBoxLayout *verticalLayout = nullptr;
QListView *languageView = nullptr;
};