summaryrefslogtreecommitdiff
path: root/welcomepage.cc
diff options
context:
space:
mode:
Diffstat (limited to 'welcomepage.cc')
-rw-r--r--welcomepage.cc29
1 files changed, 29 insertions, 0 deletions
diff --git a/welcomepage.cc b/welcomepage.cc
new file mode 100644
index 0000000..c41b7c5
--- /dev/null
+++ b/welcomepage.cc
@@ -0,0 +1,29 @@
+#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);
+}