blob: ab444b5b2e9f135d831e753caa97eec5d6e3ba30 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*
* executorwizard.cc - Implementation of the wizard class
* horizon-run-qt5, the Qt 5 executor user interface for
* Project Horizon
*
* Copyright (c) 2019 Adélie Linux and contributors. All rights reserved.
* This code is licensed under the AGPL 3.0 license, as noted in the
* LICENSE-code file in the root directory of this repository.
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
#include "executorwizard.hh"
#include <QAbstractButton>
#include "executepage.hh"
#include "errorpage.hh"
#include "finishedpage.hh"
ExecutorWizard::ExecutorWizard(QWidget *parent, bool _autom)
: QWizard(parent), automatic(_autom) {
setWindowTitle(tr("Adélie Linux System Installation"));
setFixedSize(QSize(650, 450));
setPage(Page_Execute, new ExecutePage);
setPage(Page_Error, new ErrorPage);
setPage(Page_Finished, new FinishedPage);
setOption(NoBackButtonOnStartPage);
setOption(NoBackButtonOnLastPage);
setOption(NoCancelButtonOnLastPage);
QList<QWizard::WizardButton> buttonLayout;
buttonLayout << Stretch << FinishButton;
setButtonLayout(buttonLayout);
}
/* just plain don't allow rejection (Esc/F3/Cancel) */
void ExecutorWizard::reject() {
return;
}
|