From 3085857acd10ba4976f99273c89864f8ab8c5132 Mon Sep 17 00:00:00 2001 From: "A. Wilcox" Date: Sat, 14 Dec 2019 16:24:21 -0600 Subject: Qt UI: Implement UI.Writeout.Explain --- ui/qt5/writeoutpage.cc | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ui/qt5/writeoutpage.cc b/ui/qt5/writeoutpage.cc index 8ee1a40..37ee3e8 100644 --- a/ui/qt5/writeoutpage.cc +++ b/ui/qt5/writeoutpage.cc @@ -12,7 +12,20 @@ #include "writeoutpage.hh" +#include +#include + WriteoutPage::WriteoutPage(QWidget *parent) : HorizonWizardPage(parent) { setTitle(tr("Save Installation Script")); loadWatermark("intro"); + + QLabel *descLabel = new QLabel(tr("You have provided all the necessary information for System Installation. " + "Choose Save to write your installfile to disk and close System Installation.\n\n" + "For more information on how to use the installation script you've generated, review the Adélie Linux Installation Handbook.\n\n" + "You may also customise the installation script by editing it using a text editor. " + "Review the HorizonScript Reference for more information on available options.")); + descLabel->setWordWrap(true); + QVBoxLayout *layout = new QVBoxLayout; + layout->addWidget(descLabel); + setLayout(layout); } -- cgit v1.2.3-60-g2f50