From b0297f2c1d9ebb0479a958a8147047f469150d38 Mon Sep 17 00:00:00 2001 From: Björn Hagemeister Date: Mon, 19 May 2014 16:12:05 +0200 Subject: Commiting forgotten icon, plus first changes on help - Button implementation, which is not correctly working right now. --- gui/server_normal/help.cpp | 14 ++++++++++++++ gui/server_normal/help.h | 22 ++++++++++++++++++++++ gui/server_normal/help.ui | 21 +++++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 gui/server_normal/help.cpp create mode 100644 gui/server_normal/help.h create mode 100644 gui/server_normal/help.ui (limited to 'gui') diff --git a/gui/server_normal/help.cpp b/gui/server_normal/help.cpp new file mode 100644 index 0000000..8242374 --- /dev/null +++ b/gui/server_normal/help.cpp @@ -0,0 +1,14 @@ +#include "help.h" +#include "ui_help.h" + +help::help(QWidget *parent) : + QWidget(parent), + ui(new Ui::help) +{ + ui->setupUi(this); +} + +help::~help() +{ + delete ui; +} diff --git a/gui/server_normal/help.h b/gui/server_normal/help.h new file mode 100644 index 0000000..c26d5d4 --- /dev/null +++ b/gui/server_normal/help.h @@ -0,0 +1,22 @@ +#ifndef HELP_H +#define HELP_H + +#include + +namespace Ui { +class help; +} + +class help : public QWidget +{ + Q_OBJECT + +public: + explicit help(QWidget *parent = 0); + ~help(); + +private: + Ui::help *ui; +}; + +#endif // HELP_H diff --git a/gui/server_normal/help.ui b/gui/server_normal/help.ui new file mode 100644 index 0000000..a7267ee --- /dev/null +++ b/gui/server_normal/help.ui @@ -0,0 +1,21 @@ + + + + + help + + + + 0 + 0 + 400 + 300 + + + + Form + + + + + -- cgit v1.2.3-55-g7522