OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
languageselectionpage.hpp
Go to the documentation of this file.
1 #ifndef LANGUAGESELECTIONPAGE_HPP
2 #define LANGUAGESELECTIONPAGE_HPP
3 
4 #include <QWizardPage>
5 
6 #include "ui_languageselectionpage.h"
7 
8 namespace Wizard
9 {
10  class MainWizard;
11 
12  class LanguageSelectionPage : public QWizardPage, private Ui::LanguageSelectionPage
13  {
14  Q_OBJECT
15  public:
17 
18  int nextId() const;
19 
20  private:
22 
23  protected:
24  void initializePage();
25  };
26 }
27 
28 #endif // LANGUAGESELECTIONPAGE_HPP
Definition: mainwizard.hpp:18
void initializePage()
Definition: languageselectionpage.cpp:17
MainWizard * mWizard
Definition: languageselectionpage.hpp:21
int nextId() const
Definition: languageselectionpage.cpp:31
Definition: languageselectionpage.hpp:12
LanguageSelectionPage(QWidget *parent)
Definition: languageselectionpage.cpp:7