#ifndef HAVOC_ABOUTDIALOG_H #define HAVOC_ABOUTDIALOG_H #include #include class About : public QDialog { private: QGridLayout* gridLayout; QLabel* label; QPushButton* pushButton; QSpacerItem* horizontalSpacer; QTextBrowser* textBrowser; public: QDialog *AboutDialog; void setupUi(); About( QDialog* ); public slots: void onButtonClose(); }; #endif