summaryrefslogblamecommitdiffstats
path: root/src/client/informationdialog/informationdialog.h
blob: f210dd8b7a35aacb53c8803bbdfbdcf934699002 (plain) (tree)
1
2
3
4
5
6
7
8
9

                            
 
                  
 


                  
 

                                        
                
 
        






                                  
       
                                     



      
#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