Skip to content

Commit c32abd4

Browse files
committed
Merge the installtype, install and locate wizard pages into one page with a QStackedWidget.
1 parent 6da3a41 commit c32abd4

17 files changed

+327
-368
lines changed

installwizard.cpp

+5-13
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
#include "installwizard.h"
33
#include "ui_installwizard.h"
44
#include "installwizard_installtype.h"
5-
#include "installwizard_locate.h"
65
#include "installwizard_copy.h"
76
#include "installwizard_eula.h"
8-
#include "installwizard_install.h"
97
#include "installwizard_patch.h"
108
#include "installwizard_finished.h"
119
#include "settings.h"
@@ -26,17 +24,11 @@ InstallWizard::InstallWizard(QWidget *parent, Settings *settings) :
2624
ui->setupUi(this);
2725
connect(cancelButton, SIGNAL(clicked()), this, SLOT(cancel()));
2826

29-
setPage(Page_InstallType, new InstallWizard_InstallType(this));
30-
31-
#ifdef Q_OS_WIN32
32-
setPage(Page_Locate, new InstallWizard_LocatePage(this, settings));
33-
#endif
34-
35-
setPage(Page_Install, new InstallWizard_Install());
36-
setPage(Page_Eula, new InstallWizard_Eula());
37-
setPage(Page_Copy, new InstallWizard_Copy());
38-
setPage(Page_Patch, new InstallWizard_Patch());
39-
setPage(Page_Finished, new InstallWizard_Finished());
27+
setPage(Page_InstallType, new InstallWizard_InstallType(this, settings));
28+
setPage(Page_Eula, new InstallWizard_Eula(this));
29+
setPage(Page_Copy, new InstallWizard_Copy(this));
30+
setPage(Page_Patch, new InstallWizard_Patch(this));
31+
setPage(Page_Finished, new InstallWizard_Finished(this));
4032
}
4133

4234
InstallWizard::~InstallWizard()

installwizard.h

-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ class InstallWizard : public QWizard
2121
enum
2222
{
2323
Page_InstallType,
24-
Page_Locate,
25-
Page_Install,
2624
Page_Eula,
2725
Page_Copy,
2826
Page_Patch,

installwizard.ui

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<rect>
77
<x>0</x>
88
<y>0</y>
9-
<width>400</width>
10-
<height>300</height>
9+
<width>640</width>
10+
<height>480</height>
1111
</rect>
1212
</property>
1313
<property name="windowTitle">

installwizard_copy.ui

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<rect>
77
<x>0</x>
88
<y>0</y>
9-
<width>400</width>
10-
<height>300</height>
9+
<width>640</width>
10+
<height>480</height>
1111
</rect>
1212
</property>
1313
<property name="windowTitle">

installwizard_eula.ui

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<rect>
77
<x>0</x>
88
<y>0</y>
9-
<width>400</width>
10-
<height>300</height>
9+
<width>640</width>
10+
<height>480</height>
1111
</rect>
1212
</property>
1313
<property name="windowTitle">

installwizard_finished.ui

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<rect>
77
<x>0</x>
88
<y>0</y>
9-
<width>400</width>
10-
<height>300</height>
9+
<width>640</width>
10+
<height>480</height>
1111
</rect>
1212
</property>
1313
<property name="windowTitle">

installwizard_install.cpp

-70
This file was deleted.

installwizard_install.h

-31
This file was deleted.

installwizard_install.ui

-63
This file was deleted.

0 commit comments

Comments
 (0)