summaryrefslogtreecommitdiffstats
path: root/src/client/informationdialog/informationdialog.h
blob: 6bbf41c5509dc8af252513b9e120a918a1c971aa (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
#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