#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); }