summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorBjörn Hagemeister2014-05-19 16:12:05 +0200
committerBjörn Hagemeister2014-05-19 16:12:05 +0200
commitb0297f2c1d9ebb0479a958a8147047f469150d38 (patch)
treeb49b813510a69868499bba82f63a77edabbc54ad /gui
parentChanging some icons plus adding Button "help" without implementing its function. (diff)
downloadpvs2-b0297f2c1d9ebb0479a958a8147047f469150d38.tar.gz
pvs2-b0297f2c1d9ebb0479a958a8147047f469150d38.tar.xz
pvs2-b0297f2c1d9ebb0479a958a8147047f469150d38.zip
Commiting forgotten icon, plus first changes on help - Button implementation, which is not correctly working right now.
Diffstat (limited to 'gui')
-rw-r--r--gui/server_normal/help.cpp14
-rw-r--r--gui/server_normal/help.h22
-rw-r--r--gui/server_normal/help.ui21
3 files changed, 57 insertions, 0 deletions
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 <QWidget>
+
+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 @@
+<ui version="4.0">
+ <author/>
+ <comment/>
+ <exportmacro/>
+ <class>help</class>
+ <widget class="QWidget" name="help">
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>400</width>
+ <height>300</height>
+ </rect>
+ </property>
+ <property name="windowTitle">
+ <string>Form</string>
+ </property>
+ </widget>
+ <pixmapfunction/>
+ <connections/>
+</ui>