summaryrefslogtreecommitdiffstats
path: root/src/server/helpwindow/helpwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/helpwindow/helpwindow.cpp')
-rw-r--r--src/server/helpwindow/helpwindow.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/server/helpwindow/helpwindow.cpp b/src/server/helpwindow/helpwindow.cpp
new file mode 100644
index 0000000..b209080
--- /dev/null
+++ b/src/server/helpwindow/helpwindow.cpp
@@ -0,0 +1,29 @@
+#include "helpwindow.h"
+#include "ui_help.h"
+
+HelpWindow::HelpWindow(QWidget *parent) :
+ QDialog(parent), ui(new Ui::Help)
+{
+ ui->setupUi(this);
+ connect(ui->pushButton, SIGNAL(clicked()), this, SLOT(onButtonCancel()));
+}
+
+HelpWindow::~HelpWindow()
+{
+ delete ui;
+}
+
+/*void HelpWindow::show()
+{
+ this->showNormal();
+}
+*/
+
+/*
+ * Slots
+ */
+
+void HelpWindow::onButtonCancel()
+{
+ this->hide();
+}