9 #ifndef UI_EXPORT_PDU_DIALOG_H 10 #define UI_EXPORT_PDU_DIALOG_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QAction> 14 #include <QtWidgets/QApplication> 15 #include <QtWidgets/QButtonGroup> 16 #include <QtWidgets/QComboBox> 17 #include <QtWidgets/QDialog> 18 #include <QtWidgets/QDialogButtonBox> 19 #include <QtWidgets/QHBoxLayout> 20 #include <QtWidgets/QHeaderView> 21 #include <QtWidgets/QLabel> 22 #include <QtWidgets/QWidget> 23 #include "widgets/display_filter_edit.h" 30 QDialogButtonBox *buttonBox;
31 QWidget *layoutWidget;
32 QHBoxLayout *horizontalLayout;
39 if (ExportPDUDialog->objectName().isEmpty())
40 ExportPDUDialog->setObjectName(QStringLiteral(
"ExportPDUDialog"));
41 ExportPDUDialog->resize(393, 158);
42 buttonBox =
new QDialogButtonBox(ExportPDUDialog);
43 buttonBox->setObjectName(QStringLiteral(
"buttonBox"));
44 buttonBox->setGeometry(QRect(30, 100, 341, 32));
45 buttonBox->setOrientation(Qt::Horizontal);
46 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
47 layoutWidget =
new QWidget(ExportPDUDialog);
48 layoutWidget->setObjectName(QStringLiteral(
"layoutWidget"));
49 layoutWidget->setGeometry(QRect(16, 20, 361, 29));
50 horizontalLayout =
new QHBoxLayout(layoutWidget);
51 horizontalLayout->setObjectName(QStringLiteral(
"horizontalLayout"));
52 horizontalLayout->setContentsMargins(0, 0, 0, 0);
53 label =
new QLabel(layoutWidget);
54 label->setObjectName(QStringLiteral(
"label"));
56 horizontalLayout->addWidget(label);
59 displayFilterLineEdit->setObjectName(QStringLiteral(
"displayFilterLineEdit"));
61 horizontalLayout->addWidget(displayFilterLineEdit);
63 comboBox =
new QComboBox(ExportPDUDialog);
64 comboBox->setObjectName(QStringLiteral(
"comboBox"));
65 comboBox->setGeometry(QRect(10, 60, 120, 30));
67 retranslateUi(ExportPDUDialog);
68 QObject::connect(buttonBox, SIGNAL(accepted()), ExportPDUDialog, SLOT(accept()));
69 QObject::connect(buttonBox, SIGNAL(rejected()), ExportPDUDialog, SLOT(reject()));
71 QMetaObject::connectSlotsByName(ExportPDUDialog);
74 void retranslateUi(QDialog *ExportPDUDialog)
76 ExportPDUDialog->setWindowTitle(QApplication::translate(
"ExportPDUDialog",
"Dialog", 0));
77 label->setText(QApplication::translate(
"ExportPDUDialog",
"Display filter:", 0));
88 #endif // UI_EXPORT_PDU_DIALOG_H Definition: ui_about_dialog.h:291
Definition: ui_export_pdu_dialog.h:27
Definition: export_pdu_dialog.h:20
Definition: ui_export_pdu_dialog.h:83
Definition: display_filter_edit.h:26