2013-12-13 14:30:49 +00:00
|
|
|
#ifndef LANGUAGESELECTIONPAGE_HPP
|
|
|
|
#define LANGUAGESELECTIONPAGE_HPP
|
|
|
|
|
|
|
|
#include <QWizardPage>
|
|
|
|
|
|
|
|
#include "ui_languageselectionpage.h"
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
int nextId() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
MainWizard *mWizard;
|
2013-12-24 22:09:31 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void initializePage();
|
2013-12-13 14:30:49 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LANGUAGESELECTIONPAGE_HPP
|