changeset 192:103daf2d39c0

Added some content and a close button to the help dialog.
author Raimund Renkert <rrenkert@intevation.de>
date Wed, 26 Mar 2014 12:22:09 +0100
parents 246c21b1727f
children 17eb8ad43984
files ui/helpdialog.cpp
diffstat 1 files changed, 16 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ui/helpdialog.cpp	Wed Mar 26 12:21:35 2014 +0100
+++ b/ui/helpdialog.cpp	Wed Mar 26 12:22:09 2014 +0100
@@ -1,5 +1,8 @@
 #include "helpdialog.h"
 #include <QDebug>
+#include <QVBoxLayout>
+#include <QTextEdit>
+#include <QPushButton>
 
 HelpDialog::HelpDialog(QMainWindow *parent) :
     QDialog(parent)
@@ -9,5 +12,17 @@
 
 void HelpDialog::setupGUI()
 {
-    
+    QVBoxLayout *mainLayout = new QVBoxLayout(this);
+    QTextEdit *helpText = new QTextEdit;
+    helpText->setReadOnly(true);
+    helpText->setPlainText(tr("This dialog contains some text to help the user."));
+
+    QHBoxLayout *buttonLayout = new QHBoxLayout;
+    QPushButton *closeButton = new QPushButton(tr("Close"));
+    connect(closeButton, SIGNAL(clicked()), this, SLOT(close()));
+    buttonLayout->insertStretch(0, 10);
+    buttonLayout->addWidget(closeButton);
+
+    mainLayout->addWidget(helpText);
+    mainLayout->addLayout(buttonLayout);
 }

http://wald.intevation.org/projects/trustbridge/