Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
ui_dissector_tables_dialog.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'dissector_tables_dialog.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.5.1
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_DISSECTOR_TABLES_DIALOG_H
10 #define UI_DISSECTOR_TABLES_DIALOG_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QDialog>
17 #include <QtWidgets/QDialogButtonBox>
18 #include <QtWidgets/QHBoxLayout>
19 #include <QtWidgets/QHeaderView>
20 #include <QtWidgets/QLabel>
21 #include <QtWidgets/QLineEdit>
22 #include <QtWidgets/QVBoxLayout>
23 #include "widgets/dissector_tables_view.h"
24 
25 QT_BEGIN_NAMESPACE
26 
28 {
29 public:
30  QVBoxLayout *verticalLayout;
31  DissectorTablesTreeView *tableTree;
32  QHBoxLayout *horizontalLayout;
33  QLabel *label;
34  QLineEdit *txtSearchLine;
35  QDialogButtonBox *buttonBox;
36 
37  void setupUi(QDialog *DissectorTablesDialog)
38  {
39  if (DissectorTablesDialog->objectName().isEmpty())
40  DissectorTablesDialog->setObjectName(QStringLiteral("DissectorTablesDialog"));
41  DissectorTablesDialog->resize(400, 300);
42  verticalLayout = new QVBoxLayout(DissectorTablesDialog);
43  verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
44  tableTree = new DissectorTablesTreeView(DissectorTablesDialog);
45  tableTree->setObjectName(QStringLiteral("tableTree"));
46  tableTree->setUniformRowHeights(true);
47 
48  verticalLayout->addWidget(tableTree);
49 
50  horizontalLayout = new QHBoxLayout();
51  horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
52  label = new QLabel(DissectorTablesDialog);
53  label->setObjectName(QStringLiteral("label"));
54 
55  horizontalLayout->addWidget(label);
56 
57  txtSearchLine = new QLineEdit(DissectorTablesDialog);
58  txtSearchLine->setObjectName(QStringLiteral("txtSearchLine"));
59 
60  horizontalLayout->addWidget(txtSearchLine);
61 
62 
63  verticalLayout->addLayout(horizontalLayout);
64 
65  buttonBox = new QDialogButtonBox(DissectorTablesDialog);
66  buttonBox->setObjectName(QStringLiteral("buttonBox"));
67  buttonBox->setOrientation(Qt::Horizontal);
68  buttonBox->setStandardButtons(QDialogButtonBox::Close);
69 
70  verticalLayout->addWidget(buttonBox);
71 
72 
73  retranslateUi(DissectorTablesDialog);
74  QObject::connect(buttonBox, SIGNAL(accepted()), DissectorTablesDialog, SLOT(accept()));
75  QObject::connect(buttonBox, SIGNAL(rejected()), DissectorTablesDialog, SLOT(reject()));
76 
77  QMetaObject::connectSlotsByName(DissectorTablesDialog);
78  } // setupUi
79 
80  void retranslateUi(QDialog *DissectorTablesDialog)
81  {
82  DissectorTablesDialog->setWindowTitle(QApplication::translate("DissectorTablesDialog", "Dialog", 0));
83  label->setText(QApplication::translate("DissectorTablesDialog", "Search:", 0));
84  } // retranslateUi
85 
86 };
87 
88 namespace Ui {
90 } // namespace Ui
91 
92 QT_END_NAMESPACE
93 
94 #endif // UI_DISSECTOR_TABLES_DIALOG_H
Definition: ui_about_dialog.h:291
Definition: ui_dissector_tables_dialog.h:89
Definition: dissector_tables_view.h:17
Definition: dissector_tables_dialog.h:20
Definition: ui_dissector_tables_dialog.h:27