summaryrefslogtreecommitdiffstats
path: root/src/client/informationdialog/informationdialog.h
blob: f210dd8b7a35aacb53c8803bbdfbdcf934699002 (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
#ifndef INFORMATION_DIALOG_H
#define INFORMATION_DIALOG_H

#include <QDialog>

class QLayout;
class QFormLayout;
class QLabel;

class InformationDialog : public QDialog
{
	Q_OBJECT

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

	void initTable();

public:
	explicit InformationDialog();

};

#endif