mirror of
https://github.com/HavocFramework/Havoc
synced 2026-06-08 11:13:29 +00:00
26 lines
436 B
C++
26 lines
436 B
C++
#ifndef HAVOC_ABOUTDIALOG_H
|
|
#define HAVOC_ABOUTDIALOG_H
|
|
|
|
#include <global.hpp>
|
|
#include <QTextBrowser>
|
|
|
|
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 |