9 #ifndef UI_TRAFFIC_TABLE_DIALOG_H 10 #define UI_TRAFFIC_TABLE_DIALOG_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QAction> 14 #include <QtWidgets/QApplication> 15 #include <QtWidgets/QButtonGroup> 16 #include <QtWidgets/QCheckBox> 17 #include <QtWidgets/QDialog> 18 #include <QtWidgets/QDialogButtonBox> 19 #include <QtWidgets/QHBoxLayout> 20 #include <QtWidgets/QHeaderView> 21 #include <QtWidgets/QPushButton> 22 #include <QtWidgets/QSpacerItem> 23 #include <QtWidgets/QTabWidget> 24 #include <QtWidgets/QVBoxLayout> 31 QVBoxLayout *verticalLayout;
32 QTabWidget *trafficTableTabWidget;
33 QHBoxLayout *horizontalLayout;
34 QCheckBox *nameResolutionCheckBox;
35 QSpacerItem *horizontalSpacer_2;
36 QCheckBox *displayFilterCheckBox;
37 QSpacerItem *horizontalSpacer_3;
38 QCheckBox *absoluteTimeCheckBox;
39 QSpacerItem *horizontalSpacer;
40 QPushButton *enabledTypesPushButton;
41 QDialogButtonBox *buttonBox;
45 if (TrafficTableDialog->objectName().isEmpty())
46 TrafficTableDialog->setObjectName(QStringLiteral(
"TrafficTableDialog"));
47 TrafficTableDialog->resize(680, 475);
48 verticalLayout =
new QVBoxLayout(TrafficTableDialog);
49 verticalLayout->setObjectName(QStringLiteral(
"verticalLayout"));
50 trafficTableTabWidget =
new QTabWidget(TrafficTableDialog);
51 trafficTableTabWidget->setObjectName(QStringLiteral(
"trafficTableTabWidget"));
53 verticalLayout->addWidget(trafficTableTabWidget);
55 horizontalLayout =
new QHBoxLayout();
56 horizontalLayout->setObjectName(QStringLiteral(
"horizontalLayout"));
57 nameResolutionCheckBox =
new QCheckBox(TrafficTableDialog);
58 nameResolutionCheckBox->setObjectName(QStringLiteral(
"nameResolutionCheckBox"));
60 horizontalLayout->addWidget(nameResolutionCheckBox);
62 horizontalSpacer_2 =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
64 horizontalLayout->addItem(horizontalSpacer_2);
66 displayFilterCheckBox =
new QCheckBox(TrafficTableDialog);
67 displayFilterCheckBox->setObjectName(QStringLiteral(
"displayFilterCheckBox"));
69 horizontalLayout->addWidget(displayFilterCheckBox);
71 horizontalSpacer_3 =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
73 horizontalLayout->addItem(horizontalSpacer_3);
75 absoluteTimeCheckBox =
new QCheckBox(TrafficTableDialog);
76 absoluteTimeCheckBox->setObjectName(QStringLiteral(
"absoluteTimeCheckBox"));
78 horizontalLayout->addWidget(absoluteTimeCheckBox);
80 horizontalSpacer =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
82 horizontalLayout->addItem(horizontalSpacer);
84 enabledTypesPushButton =
new QPushButton(TrafficTableDialog);
85 enabledTypesPushButton->setObjectName(QStringLiteral(
"enabledTypesPushButton"));
87 horizontalLayout->addWidget(enabledTypesPushButton);
89 horizontalLayout->setStretch(5, 1);
91 verticalLayout->addLayout(horizontalLayout);
93 buttonBox =
new QDialogButtonBox(TrafficTableDialog);
94 buttonBox->setObjectName(QStringLiteral(
"buttonBox"));
95 buttonBox->setOrientation(Qt::Horizontal);
96 buttonBox->setStandardButtons(QDialogButtonBox::Close|QDialogButtonBox::Help);
98 verticalLayout->addWidget(buttonBox);
101 retranslateUi(TrafficTableDialog);
102 QObject::connect(buttonBox, SIGNAL(accepted()), TrafficTableDialog, SLOT(accept()));
103 QObject::connect(buttonBox, SIGNAL(rejected()), TrafficTableDialog, SLOT(reject()));
105 QMetaObject::connectSlotsByName(TrafficTableDialog);
108 void retranslateUi(QDialog *TrafficTableDialog)
110 #ifndef QT_NO_TOOLTIP 111 nameResolutionCheckBox->setToolTip(QApplication::translate(
"TrafficTableDialog",
"<html><head/><body><p>Show resolved addresses and port names rather than plain values. The corresponding name resolution preference must be enabled.</p></body></html>", 0));
112 #endif // QT_NO_TOOLTIP 113 nameResolutionCheckBox->setText(QApplication::translate(
"TrafficTableDialog",
"Name resolution", 0));
114 #ifndef QT_NO_TOOLTIP 115 displayFilterCheckBox->setToolTip(QApplication::translate(
"TrafficTableDialog",
"<html><head/><body><p>Only show conversations matching the current display filter</p></body></html>", 0));
116 #endif // QT_NO_TOOLTIP 117 displayFilterCheckBox->setText(QApplication::translate(
"TrafficTableDialog",
"Limit to display filter", 0));
118 #ifndef QT_NO_TOOLTIP 119 absoluteTimeCheckBox->setToolTip(QApplication::translate(
"TrafficTableDialog",
"<html><head/><body><p>Show absolute times in the start time column.</p></body></html>", 0));
120 #endif // QT_NO_TOOLTIP 121 absoluteTimeCheckBox->setText(QApplication::translate(
"TrafficTableDialog",
"Absolute start time", 0));
122 #ifndef QT_NO_TOOLTIP 123 enabledTypesPushButton->setToolTip(QApplication::translate(
"TrafficTableDialog",
"<html><head/><body><p>Add and remove conversation types.</p></body></html>", 0));
124 #endif // QT_NO_TOOLTIP 125 Q_UNUSED(TrafficTableDialog);
136 #endif // UI_TRAFFIC_TABLE_DIALOG_H Definition: ui_about_dialog.h:291
Definition: ui_traffic_table_dialog.h:131
Definition: ui_traffic_table_dialog.h:28
Definition: traffic_table_dialog.h:90