diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-14 16:24:21 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-14 16:24:21 -0600 |
commit | 3085857acd10ba4976f99273c89864f8ab8c5132 (patch) | |
tree | 93d111cb83e828b79f433614be0b1b984393881f /ui/qt5 | |
parent | 3a0c398b72f463d09bc87e598fbb6889000b6232 (diff) | |
download | horizon-3085857acd10ba4976f99273c89864f8ab8c5132.tar.gz horizon-3085857acd10ba4976f99273c89864f8ab8c5132.tar.bz2 horizon-3085857acd10ba4976f99273c89864f8ab8c5132.tar.xz horizon-3085857acd10ba4976f99273c89864f8ab8c5132.zip |
Qt UI: Implement UI.Writeout.Explain
Diffstat (limited to 'ui/qt5')
-rw-r--r-- | ui/qt5/writeoutpage.cc | 13 |
1 files changed, 13 insertions, 0 deletions
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 <QLabel> +#include <QVBoxLayout> + 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); } |