1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 03:54:40 +00:00
OpenMW/apps/wizard/installationpage.hpp
2013-12-25 18:52:34 +01:00

40 lines
669 B
C++

#ifndef INSTALLATIONPAGE_HPP
#define INSTALLATIONPAGE_HPP
#include <QWizardPage>
#include "ui_installationpage.h"
namespace Wizard
{
class MainWizard;
class InstallationPage : public QWizardPage, private Ui::InstallationPage
{
Q_OBJECT
public:
InstallationPage(MainWizard *wizard);
int nextId() const;
virtual bool isComplete() const;
private:
MainWizard *mWizard;
bool mFinished;
void setupSettings();
void startInstallation();
private slots:
void installationFinished();
protected:
void initializePage();
};
}
#endif // INSTALLATIONPAGE_HPP