summaryrefslogtreecommitdiff
path: root/horizonwizard.cc
blob: 1f7229f3366e9795ed8c6fa468a853af8b588b3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "horizonwizard.hh"

#include "welcomepage.hh"
#include "networkingpage.hh"
#include "softwarepage.hh"

HorizonWizard::HorizonWizard(QWidget *parent) : QWizard(parent)
{
        setWindowTitle(tr("Adélie Linux System Installation"));

        setFixedSize(QSize(700, 450));

        setOption(DisabledBackButtonOnLastPage);
        setOption(HaveHelpButton);
        setOption(NoCancelButtonOnLastPage);

        setSizeGripEnabled(false);

        setPage(Page_Welcome, new WelcomePage);
        setPage(Page_Networking, new NetworkingPage);
        setPage(Page_Software, new SoftwarePage);

        selected.insert("adelie-base");
}