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
|
/*
* networkifacepage.cc - Implementation of the UI.Network.ChooseIface 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 "networkifacepage.hh"
#include "horizonwizard.hh"
#include "netdhcppage.hh"
#include <algorithm>
#include <QDebug>
#include <QLabel>
#include <QListView>
#include <QVBoxLayout>
NetworkIfacePage::NetworkIfacePage(QWidget *parent) :
HorizonWizardPage(parent) {
loadWatermark("network");
setTitle(tr("Multiple Network Interfaces Detected"));
ifaceList = new QListWidget(this);
connect(ifaceList, &QListWidget::currentRowChanged, [=](int row) {
emit completeChanged();
if(row == -1) return;
auto iterator = horizonWizard()->interfaces.begin();
std::advance(iterator, row);
horizonWizard()->chosen_auto_iface = iterator->first;
});
ifaceList->setGridSize(QSize(160, 128));
ifaceList->setIconSize(QSize(96, 96));
ifaceList->setViewMode(QListView::IconMode);
ifaceList->setWhatsThis(tr("A list of network interfaces present in your computer. Select the interface you wish to use for installation."));
}
void NetworkIfacePage::initializePage() {
QLabel *descLabel;
QVBoxLayout *layout;
descLabel = new QLabel(tr(
"Your computer has more than one network interface device. Select the one you wish to use during installation."));
descLabel->setWordWrap(true);
for(auto &iface : horizonWizard()->interfaces) {
QIcon ifaceIcon;
QString ifaceDevName = QString::fromStdString(iface.first);
QString ifaceName;
switch(iface.second.type) {
case HorizonWizard::Wireless:
ifaceIcon = QIcon::fromTheme("network-wireless");
ifaceName = tr("Wi-Fi (%1)").arg(ifaceDevName);
break;
case HorizonWizard::Ethernet:
ifaceIcon = QIcon::fromTheme("network-wired");
ifaceName = tr("Ethernet (%1)").arg(ifaceDevName);
break;
case HorizonWizard::Bonded:
ifaceIcon = QIcon::fromTheme("network-card");
ifaceName = tr("Bond (%1)").arg(ifaceDevName);
break;
case HorizonWizard::Unknown:
ifaceIcon = QIcon::fromTheme("network-card");
ifaceName = ifaceDevName;
break;
}
QListWidgetItem *item = new QListWidgetItem(ifaceIcon, ifaceName,
ifaceList);
item->setToolTip(iface.second.mac);
}
layout = new QVBoxLayout;
layout->addWidget(descLabel);
layout->addWidget(ifaceList);
setLayout(layout);
}
bool NetworkIfacePage::isComplete() const {
return ifaceList->currentRow() != -1;
}
int NetworkIfacePage::nextId() const {
if(ifaceList->currentRow() < 0) return HorizonWizard::Page_Network_Iface;
auto iterator = horizonWizard()->interfaces.begin();
std::advance(iterator, ifaceList->currentRow());
switch(iterator->second.type) {
case HorizonWizard::Wireless:
return HorizonWizard::Page_Network_Wireless;
default:
return HorizonWizard::Page_Network_DHCP;
}
}
bool NetworkIfacePage::validatePage() {
/* What a hack!
*
* Independent Pages means the DHCP page is never cleaned, even when Back
* is chosen. So, we have to do it from here. */
horizonWizard()->removePage(HorizonWizard::Page_Network_DHCP);
horizonWizard()->setPage(HorizonWizard::Page_Network_DHCP, new NetDHCPPage);
return true;
}
|