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

#include "welcomepage.hh"
#include "networkingpage.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);
}