blob: ed35c197eea0ab80ab731a204e0df2b742eb89b2 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
* commitpage.cc - Implementation of the UI.Commit page
* horizon-qt5, the Qt 5 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 "commitpage.hh"
#include "datetimepage.hh"
#include "util/keymaps.hh"
#include <algorithm>
#include <QLabel>
#include <QVariant>
#include <QVBoxLayout>
CommitPage::CommitPage(QWidget *parent) : HorizonWizardPage(parent) {
setTitle(tr("Begin Installation"));
loadWatermark("intro");
QLabel *descLabel = new QLabel(tr(
"We have gathered all the information needed to begin installing Adélie Linux to your computer. "
"Choose 'Install' when you are ready to begin the installation procedure."));
descLabel->setWordWrap(true);
choices = new QLabel;
choices->setFrameStyle(QFrame::Panel | QFrame::Sunken);
choices->setTextFormat(Qt::RichText);
choices->setWhatsThis(tr("These are the options you have selected for installation. "
"Review them, and then choose Install to begin the installation process on your computer."));
choices->setWordWrap(true);
QVBoxLayout *layout = new QVBoxLayout;
layout->addWidget(descLabel);
layout->addSpacing(10);
layout->addWidget(choices);
setLayout(layout);
}
void CommitPage::initializePage() {
QString diskString, netString, zoneString, softString;
auto iterator = valid_keymaps.begin();
Q_ASSERT(field("keymap").toUInt() <= valid_keymaps.size());
std::advance(iterator, field("keymap").toUInt());
if(horizonWizard()->auto_part) {
if(horizonWizard()->erase) {
diskString = QString{"Erase and Partition %1"}
.arg(QString::fromStdString(horizonWizard()->chosen_disk));
} else {
diskString = QString{"Install to Free Space on %1"}
.arg(QString::fromStdString(horizonWizard()->chosen_disk));
}
} else {
diskString = "Custom Partitioning";
}
if(horizonWizard()->network &&
horizonWizard()->interfaces.size() > 1) {
QString iface = QString::fromStdString(horizonWizard()->chosen_auto_iface);
netString = tr("Enabled (via %1)").arg(iface);
} else {
netString = horizonWizard()->network ? tr("Enabled") : tr("Disabled");
}
zoneString = dynamic_cast<DateTimePage *>(
horizonWizard()->page(HorizonWizard::Page_DateTime)
)->selectedTimeZone();
switch(horizonWizard()->pkgtype) {
case HorizonWizard::Standard:
softString = tr("Standard");
break;
case HorizonWizard::Mobile:
softString = tr("Mobile");
break;
case HorizonWizard::Compact:
softString = tr("Compact");
break;
case HorizonWizard::TextOnly:
softString = tr("Text-Only");
break;
case HorizonWizard::Custom:
/* XXX TODO maybe show packages selected? too lengthy? */
softString = tr("Custom");
break;
}
choices->setText(tr("<br>"
"<p><b>Disk Layout:</b> %1</p>\n"
"<p><b>Keyboard Layout</b>: %2</p>\n"
"<p><b>Networking</b>: %3</p>\n"
"<p><b>Time Zone</b>: %4</p>\n"
"<p><b>Software Selection</b>: %5</p>\n"
"<p><b>Hostname</b>: %6</p>\n"
"<p><b>Root Passphrase</b>: <i>[saved]</i></p>\n"
"<br>")
.arg(diskString)
.arg(QString::fromStdString(*iterator))
.arg(netString)
.arg(zoneString)
.arg(softString)
.arg(field("hostname").toString()));
}
|