9 #ifndef UI_INTERFACE_TOOLBAR_H 10 #define UI_INTERFACE_TOOLBAR_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QAction> 14 #include <QtWidgets/QApplication> 15 #include <QtWidgets/QButtonGroup> 16 #include <QtWidgets/QComboBox> 17 #include <QtWidgets/QFrame> 18 #include <QtWidgets/QHBoxLayout> 19 #include <QtWidgets/QHeaderView> 20 #include <QtWidgets/QLabel> 21 #include <QtWidgets/QSpacerItem> 28 QHBoxLayout *horizontalLayout;
29 QLabel *interfacesLabel;
30 QComboBox *interfacesComboBox;
31 QHBoxLayout *leftLayout;
32 QSpacerItem *horizontalSpacer;
33 QHBoxLayout *rightLayout;
37 if (InterfaceToolbar->objectName().isEmpty())
38 InterfaceToolbar->setObjectName(QStringLiteral(
"InterfaceToolbar"));
39 InterfaceToolbar->resize(600, 32);
40 InterfaceToolbar->setFrameShape(QFrame::NoFrame);
41 InterfaceToolbar->setFrameShadow(QFrame::Plain);
42 horizontalLayout =
new QHBoxLayout(InterfaceToolbar);
43 horizontalLayout->setObjectName(QStringLiteral(
"horizontalLayout"));
44 horizontalLayout->setContentsMargins(-1, 0, -1, 0);
45 interfacesLabel =
new QLabel(InterfaceToolbar);
46 interfacesLabel->setObjectName(QStringLiteral(
"interfacesLabel"));
48 horizontalLayout->addWidget(interfacesLabel);
50 interfacesComboBox =
new QComboBox(InterfaceToolbar);
51 interfacesComboBox->setObjectName(QStringLiteral(
"interfacesComboBox"));
52 interfacesComboBox->setSizeAdjustPolicy(QComboBox::AdjustToContents);
54 horizontalLayout->addWidget(interfacesComboBox);
56 leftLayout =
new QHBoxLayout();
57 leftLayout->setObjectName(QStringLiteral(
"leftLayout"));
59 horizontalLayout->addLayout(leftLayout);
61 horizontalSpacer =
new QSpacerItem(40, 5, QSizePolicy::Expanding, QSizePolicy::Minimum);
63 horizontalLayout->addItem(horizontalSpacer);
65 rightLayout =
new QHBoxLayout();
66 rightLayout->setObjectName(QStringLiteral(
"rightLayout"));
68 horizontalLayout->addLayout(rightLayout);
71 retranslateUi(InterfaceToolbar);
73 QMetaObject::connectSlotsByName(InterfaceToolbar);
76 void retranslateUi(QFrame *InterfaceToolbar)
78 InterfaceToolbar->setWindowTitle(QApplication::translate(
"InterfaceToolbar",
"Frame", 0));
80 interfacesLabel->setToolTip(QApplication::translate(
"InterfaceToolbar",
"Select interface", 0));
81 #endif // QT_NO_TOOLTIP 82 interfacesLabel->setText(QApplication::translate(
"InterfaceToolbar",
"Interface", 0));
84 interfacesComboBox->setToolTip(QApplication::translate(
"InterfaceToolbar",
"Select interface", 0));
85 #endif // QT_NO_TOOLTIP 96 #endif // UI_INTERFACE_TOOLBAR_H
Definition: ui_about_dialog.h:291