2013-12-13 14:30:49 +00:00
|
|
|
#ifndef LANGUAGESELECTIONPAGE_HPP
|
|
|
|
#define LANGUAGESELECTIONPAGE_HPP
|
|
|
|
|
2022-10-10 11:41:36 +00:00
|
|
|
#include <QString>
|
|
|
|
#include <QWizard>
|
|
|
|
|
2013-12-13 14:30:49 +00:00
|
|
|
#include "ui_languageselectionpage.h"
|
|
|
|
|
2022-10-10 11:41:36 +00:00
|
|
|
class QObject;
|
|
|
|
class QWidget;
|
|
|
|
|
2013-12-13 14:30:49 +00:00
|
|
|
namespace Wizard
|
|
|
|
{
|
|
|
|
class MainWizard;
|
|
|
|
|
|
|
|
class LanguageSelectionPage : public QWizardPage, private Ui::LanguageSelectionPage
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-04-18 11:17:37 +00:00
|
|
|
LanguageSelectionPage(QWidget* parent);
|
2013-12-13 14:30:49 +00:00
|
|
|
|
2020-10-16 18:18:54 +00:00
|
|
|
int nextId() const override;
|
2013-12-13 14:30:49 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
MainWizard* mWizard;
|
2013-12-24 22:09:31 +00:00
|
|
|
|
|
|
|
protected:
|
2020-10-16 18:18:54 +00:00
|
|
|
void initializePage() override;
|
2013-12-13 14:30:49 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LANGUAGESELECTIONPAGE_HPP
|