mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:19:55 +00:00
28 lines
510 B
C++
28 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
|