1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00
OpenMW/apps/wizard/componentselectionpage.hpp

34 lines
592 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#ifndef COMPONENTSELECTIONPAGE_HPP
#define COMPONENTSELECTIONPAGE_HPP
#include <QWizardPage>
#include "ui_componentselectionpage.h"
namespace Wizard
{
class MainWizard;
2013-12-08 20:35:57 +00:00
class ComponentSelectionPage : public QWizardPage, private Ui::ComponentSelectionPage
{
Q_OBJECT
public:
ComponentSelectionPage(MainWizard *wizard);
2013-12-08 20:35:57 +00:00
2013-12-08 21:58:29 +00:00
int nextId() const;
private slots:
void updateButton(QListWidgetItem *item);
private:
MainWizard *mWizard;
protected:
void initializePage();
2013-12-08 20:35:57 +00:00
};
}
#endif // COMPONENTSELECTIONPAGE_HPP