summaryrefslogtreecommitdiffstats
path: root/src/client/informationdialog/informationdialog.h
blob: 42aaa7b7afbe3b1235c0446cff7fd48194cd695d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef INFORMATION_DIALOG_H
#define INFORMATION_DIALOG_H
#include <QDialog>
#include <QLayout>
#include <QFormLayout>
#include <QLabel>
#include <QDebug>
#include <QStringList>


class InformationDialog : public QDialog
{
	Q_OBJECT

private:
	QLayout* _layout;
	QFormLayout* _tableLayout;
	QLabel* _lblTitle;
	QWidget* _tableWidget;

	void initTable();

public:
	InformationDialog();

};

#endif