mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 14:49:56 +00:00
33 lines
561 B
C++
33 lines
561 B
C++
#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
|