#include "welcomepage.hh" #include #include WelcomePage::WelcomePage(QWidget *parent) : HorizonWizardPage(parent) { QLabel *descLabel; loadWatermark("welcome"); setTitle(tr("Welcome to Adélie Linux")); descLabel = new QLabel( tr("This process will only take about 10-15 minutes of " "your time. After you're done, your computer will " "running the reliable, secure, libre Adélie Linux " "operating system.\n\n" "When you're ready to answer a few questions, get " "started by choosing Next. If you'd like more " "information about the installation procedure, " "choose Help at any time.")); descLabel->setWordWrap(true); QVBoxLayout *layout = new QVBoxLayout; layout->addWidget(descLabel); setLayout(layout); }