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/componentselectionpage.hpp

32 lines
620 B
C++

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