You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
510 B
C++
29 lines
510 B
C++
#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:
|
|
LanguageSelectionPage(QWidget *parent);
|
|
|
|
int nextId() const;
|
|
|
|
private:
|
|
MainWizard *mWizard;
|
|
|
|
protected:
|
|
void initializePage();
|
|
};
|
|
}
|
|
|
|
#endif // LANGUAGESELECTIONPAGE_HPP
|