summaryrefslogtreecommitdiff
path: root/welcomepage.cc
blob: 1fee9c54087712a21bc5e8464d5f51090777be3c (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
#include "welcomepage.hh"

#include <QLabel>
#include <QVBoxLayout>

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);
}