1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00
OpenMW/apps/wizard/componentselectionpage.hpp
2013-12-24 23:09:31 +01:00

34 lines
592 B
C++

#ifndef COMPONENTSELECTIONPAGE_HPP
#define COMPONENTSELECTIONPAGE_HPP
#include <QWizardPage>
#include "ui_componentselectionpage.h"
namespace Wizard
{
class MainWizard;
class ComponentSelectionPage : public QWizardPage, private Ui::ComponentSelectionPage
{
Q_OBJECT
public:
ComponentSelectionPage(MainWizard *wizard);
int nextId() const;
private slots:
void updateButton(QListWidgetItem *item);
private:
MainWizard *mWizard;
protected:
void initializePage();
};
}
#endif // COMPONENTSELECTIONPAGE_HPP