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.
34 lines
561 B
C++
34 lines
561 B
C++
11 years ago
|
#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
|