#ifndef INFORMATION_DIALOG_H #define INFORMATION_DIALOG_H #include #include #include #include #include #include class InformationDialog : public QDialog { Q_OBJECT private: QLayout* _layout; QFormLayout* _tableLayout; QLabel* _lblTitle; QWidget* _tableWidget; void initTable(); public: InformationDialog(); }; #endif