OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
componentselectionpage.hpp
Go to the documentation of this file.
1 #ifndef COMPONENTSELECTIONPAGE_HPP
2 #define COMPONENTSELECTIONPAGE_HPP
3 
4 #include <QWizardPage>
5 
6 #include "ui_componentselectionpage.h"
7 
8 namespace Wizard
9 {
10  class MainWizard;
11 
12  class ComponentSelectionPage : public QWizardPage, private Ui::ComponentSelectionPage
13  {
14  Q_OBJECT
15  public:
17 
18  int nextId() const;
19  virtual bool validatePage();
20 
21  private slots:
22  void updateButton(QListWidgetItem *item);
23 
24  private:
26 
27  protected:
28  void initializePage();
29 
30  };
31 
32 }
33 
34 #endif // COMPONENTSELECTIONPAGE_HPP
Definition: mainwizard.hpp:18
virtual bool validatePage()
Definition: componentselectionpage.cpp:113
MainWizard * mWizard
Definition: componentselectionpage.hpp:25
void updateButton(QListWidgetItem *item)
Definition: componentselectionpage.cpp:27
ComponentSelectionPage(QWidget *parent)
Definition: componentselectionpage.cpp:10
int nextId() const
Definition: componentselectionpage.cpp:157
void initializePage()
Definition: componentselectionpage.cpp:53
Definition: componentselectionpage.hpp:12