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.
openmw/apps/wizard/languageselectionpage.hpp

33 lines
574 B
C++

#ifndef LANGUAGESELECTIONPAGE_HPP
#define LANGUAGESELECTIONPAGE_HPP
#include <QString>
#include <QWizard>
#include "ui_languageselectionpage.h"
class QObject;
class QWidget;
namespace Wizard
{
class MainWizard;
class LanguageSelectionPage : public QWizardPage, private Ui::LanguageSelectionPage
{
Q_OBJECT
public:
LanguageSelectionPage(QWidget* parent);
int nextId() const override;
private:
MainWizard* mWizard;
protected:
void initializePage() override;
};
}
#endif // LANGUAGESELECTIONPAGE_HPP