Pool Video Switch v2
Software video switch for distributed remote display in a lecture environment
informationdialog.h
Go to the documentation of this file.
1 #ifndef INFORMATION_DIALOG_H
2 #define INFORMATION_DIALOG_H
3 
4 #include <QDialog>
5 
6 class QLayout;
7 class QFormLayout;
8 class QLabel;
9 
10 class InformationDialog : public QDialog
11 {
12  Q_OBJECT
13 
14 private:
15  QLayout* _layout;
16  QFormLayout* _tableLayout;
19 
20  void initTable();
21 
22 public:
23  explicit InformationDialog();
24 
25 };
26 
27 #endif
QFormLayout * _tableLayout