summaryrefslogblamecommitdiff
path: root/welcomepage.cc
blob: c41b7c579d74cbed2ca7bac93c6668e542f395bc (plain) (tree)




























                                                                            
#include "welcomepage.hh"

#include <QLabel>
#include <QVBoxLayout>

WelcomePage::WelcomePage(QWidget *parent) : QWizardPage(parent)
{
        QLabel *descLabel;

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

        setPixmap(QWizard::WatermarkPixmap,
                  QPixmap(":/wizard_pixmaps/resources/welcome-low.png"));
        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);
}