-
Notifications
You must be signed in to change notification settings - Fork 2
/
ui_helpdialog.h
73 lines (61 loc) · 3.26 KB
/
ui_helpdialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/********************************************************************************
** Form generated from reading UI file 'helpdialog.ui'
**
** Created by: Qt User Interface Compiler version 5.7.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_HELPDIALOG_H
#define UI_HELPDIALOG_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QDialog>
#include <QtWidgets/QDialogButtonBox>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QTextBrowser>
QT_BEGIN_NAMESPACE
class Ui_HelpDialog
{
public:
QDialogButtonBox *buttonBox;
QTextBrowser *textBrowser;
void setupUi(QDialog *HelpDialog)
{
if (HelpDialog->objectName().isEmpty())
HelpDialog->setObjectName(QStringLiteral("HelpDialog"));
HelpDialog->resize(320, 240);
buttonBox = new QDialogButtonBox(HelpDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox"));
buttonBox->setGeometry(QRect(10, 200, 301, 32));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
textBrowser = new QTextBrowser(HelpDialog);
textBrowser->setObjectName(QStringLiteral("textBrowser"));
textBrowser->setGeometry(QRect(10, 10, 301, 181));
retranslateUi(HelpDialog);
QObject::connect(buttonBox, SIGNAL(accepted()), HelpDialog, SLOT(accept()));
QObject::connect(buttonBox, SIGNAL(rejected()), HelpDialog, SLOT(reject()));
QMetaObject::connectSlotsByName(HelpDialog);
} // setupUi
void retranslateUi(QDialog *HelpDialog)
{
HelpDialog->setWindowTitle(QApplication::translate("HelpDialog", "Help", 0));
textBrowser->setHtml(QApplication::translate("HelpDialog", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Use the following commnds to install wireshark, text2pcap and tshark on Ubuntu.</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">sudo apt-get install wireshark</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">sudo apt-get install tshark</p>\n"
"<"
"p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p></body></html>", 0));
} // retranslateUi
};
namespace Ui {
class HelpDialog: public Ui_HelpDialog {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_HELPDIALOG_H