summaryrefslogtreecommitdiffstats
path: root/src/client/informationdialog/informationdialog.h
diff options
context:
space:
mode:
authorChristian Klinger2016-09-29 13:39:46 +0200
committerChristian Klinger2016-09-29 13:39:46 +0200
commit3ccce005ff16a1eed262e194402fa27b00c56ec3 (patch)
tree5036c819f5c5f5279cc16ba76c8249b9b9090083 /src/client/informationdialog/informationdialog.h
parent[client] removed some old code regarding settings. (diff)
downloadpvs2-3ccce005ff16a1eed262e194402fa27b00c56ec3.tar.gz
pvs2-3ccce005ff16a1eed262e194402fa27b00c56ec3.tar.xz
pvs2-3ccce005ff16a1eed262e194402fa27b00c56ec3.zip
added an information dialog that displays ip and hostname.
Diffstat (limited to 'src/client/informationdialog/informationdialog.h')
-rw-r--r--src/client/informationdialog/informationdialog.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/client/informationdialog/informationdialog.h b/src/client/informationdialog/informationdialog.h
new file mode 100644
index 0000000..6bbf41c
--- /dev/null
+++ b/src/client/informationdialog/informationdialog.h
@@ -0,0 +1,26 @@
+#ifndef INFORMATION_DIALOG_H
+#define INFORMATION_DIALOG_H
+#include <QDialog>
+#include <QLayout>
+#include <QFormLayout>
+#include <QLabel>
+#include <QDebug>
+#include <QStringList>
+
+
+class InformationDialog : public QDialog {
+
+ private:
+ QLayout* _layout;
+ QFormLayout* _tableLayout;
+ QLabel* _lblTitle;
+ QWidget* _tableWidget;
+
+ void initTable();
+
+ public:
+ InformationDialog();
+
+};
+
+#endif