summaryrefslogtreecommitdiff
path: root/ui/qt5/firmwarepage.cc
blob: 12273e5aaa620e369fb32b6ef69e29c7467b9e5b (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
/*
 * firmwarepage.cc - Implementation of the UI.Firmware 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 "firmwarepage.hh"

#include <QLabel>
#include <QVariant>
#include <QVBoxLayout>

FirmwarePage::FirmwarePage(QWidget *parent) : HorizonWizardPage(parent) {
    setTitle(tr("Load Firmware"));
    loadWatermark("intro");

    QLabel *descLabel = new QLabel(tr(
        "Your computer may use hardware drivers which require proprietary, closed-source firmware in order to provide functionality.\n\n"
        "Most Wi-Fi network adaptors and 3D graphics cards require proprietary firmware.  "
        "However, proprietary firmware cannot be audited for security or reliability issues due to its closed-source nature.\n\n"
        "Do you want to load firmware on this computer?"));
    descLabel->setWordWrap(true);

    noButton = new QRadioButton(tr("&No, do not load firmware on this computer."));
    noButton->setWhatsThis(tr("Selecting this option will not install proprietary firmware on this computer."));
    yesButton = new QRadioButton(tr("&Yes, load firmware on this computer."));
    yesButton->setWhatsThis(tr("Selecting this option will install proprietary firmware on this computer."));
    yesButton->setChecked(true);
    firmwareChoice = new QButtonGroup;
    firmwareChoice->addButton(noButton);
    firmwareChoice->addButton(yesButton);

    QVBoxLayout *layout = new QVBoxLayout;
    layout->addWidget(descLabel);
    layout->addStretch();
    layout->addWidget(noButton);
    layout->addWidget(yesButton);
    layout->addStretch();

    connect(firmwareChoice, QOverload<QAbstractButton *>::of(&QButtonGroup::buttonClicked),
            [=](QAbstractButton *button) {
        if(button == yesButton) horizonWizard()->firmware = true;
        else horizonWizard()->firmware = false;
    });

    setLayout(layout);
}