1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00
OpenMW/apps/wizard/mainwizard.hpp

34 lines
561 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#ifndef MAINWIZARD_HPP
#define MAINWIZARD_HPP
#include <QWizard>
namespace Wizard
{
class MainWizard : public QWizard
{
Q_OBJECT
public:
enum {
Page_Intro,
Page_MethodSelection,
Page_ExistingInstallation,
Page_InstallationTarget,
Page_ComponentSelection,
Page_Installation,
Page_Import,
Page_Conclusion
};
MainWizard(QWidget *parent = 0);
private:
void setupPages();
};
}
#endif // MAINWIZARD_HPP