summaryrefslogtreecommitdiff
path: root/ui/qt5/intropage.cc
blob: ab216574c4efad94fdfbd4964be49d5ddad306f7 (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
/*
 * intropage.cc - Implementation of the UI.Intro page
 * horizon-qt5, the Qt 5 user interface for
 * Project Horizon
 *
 * Copyright (c) 2019-2020 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 "intropage.hh"

#include <QLabel>
#ifdef HAS_INSTALL_ENV
#include <QMenu>
#include <QProcess>
#endif  /* HAS_INSTALL_ENV */
#include <QVBoxLayout>

IntroPage::IntroPage(QWidget *parent) : HorizonWizardPage(parent) {
    QLabel *descLabel;
    QVBoxLayout *layout;

    loadWatermark("intro");
    setTitle(tr("Welcome to Adélie Linux"));

#ifndef HAS_INSTALL_ENV
    descLabel = new QLabel(
                tr("<p>Thank you for choosing the reliable, secure, libre Adélie Linux operating environment.  "
                   "This process will take about 10-15 minutes.</p>"
                   "<p>Using this wizard, you will create a basic <code>installfile</code>, which you can use to install Adélie Linux on a computer over the network or using custom installation media.</p>"
                   "<p><strong>IMPORTANT:</strong> You may be allowed to specify an invalid or non-bootable disk layout or network configuration.  "
                   "For best results, run System Installation directly on the computer you wish to run Adélie Linux.</p>"
                   "<p>For more information about the installfile format and syntax, see the <a href=\"https://help.adelielinux.org/html/install/\">Adélie Linux Installation Handbook</a>.</p>"));
    descLabel->setOpenExternalLinks(true);
    descLabel->setTextFormat(Qt::RichText);
#else  /* HAS_INSTALL_ENV */
    QMenu *toolMenu;
    toolButton = new QPushButton(tr("Launch &Tool..."), this);
    toolButton->setWhatsThis(tr("Displays a menu of utilities that you can launch from the Installation Environment."));
    toolMenu = new QMenu("&Tools", toolButton);
    connect(toolMenu->addAction("&Terminal"), &QAction::triggered, [=](void) {
        QProcess *p = new QProcess(this);
        p->start("xterm", {"-fa", "Liberation Mono", "-fs", "12", "-bg", "DarkGreen", "-fg", "White"});
        horizonWizard()->tools.push_back(p);
    });
    connect(toolMenu->addAction("&Partition Editor"), &QAction::triggered, [=](void) {
        QProcess *p = new QProcess(this);
        p->start("sudo", {"/usr/bin/partitionmanager"});
        horizonWizard()->tools.push_back(p);
    });
    connect(toolMenu->addAction("&Web Browser"), &QAction::triggered, [=](void){
        QProcess *p = new QProcess(this);
        p->start("netsurf-gtk3", QStringList());
        horizonWizard()->tools.push_back(p);
    });
    toolButton->setMenu(toolMenu);

    descLabel = new QLabel(
                tr("Thank you for choosing the reliable, secure, libre Adélie Linux operating environment.  "
                   "Installation will take about 15-30 minutes.\n\n"

                   "When you're ready to answer a few questions, choose Continue or press the F8 key.  "
                   "To learn more about the installation procedure, choose Help or press the F1 key at any time.\n\n"

                   "System Installation will not modify any data or settings on your computer until the final step.  "
                   "To exit without modifying your computer, choose Exit or press the F3 key.\n\n"

                   "If you cannot use a mouse, you may press the Tab key to cycle between input fields.  "
                   "The currently selected field will be highlighted."));
#endif  /* !HAS_INSTALL_ENV */
    descLabel->setWordWrap(true);

    layout = new QVBoxLayout;
    layout->addWidget(descLabel);
#ifdef HAS_INSTALL_ENV
    layout->addStretch();
    layout->addWidget(toolButton, 0, Qt::AlignCenter);
#endif  /* HAS_INSTALL_ENV */
    setLayout(layout);
}