9 #ifndef UI_GUI_CONFIGURESTREAMS_H 10 #define UI_GUI_CONFIGURESTREAMS_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QApplication> 14 #include <QtWidgets/QDialog> 15 #include <QtWidgets/QFrame> 16 #include <QtWidgets/QGridLayout> 17 #include <QtWidgets/QHBoxLayout> 18 #include <QtWidgets/QLabel> 19 #include <QtWidgets/QLineEdit> 20 #include <QtWidgets/QPushButton> 21 #include <QtWidgets/QSpacerItem> 28 QGridLayout *gridLayout;
30 QHBoxLayout *horizontalLayout;
31 QSpacerItem *horizontalSpacer;
32 QPushButton *btn_cancel;
48 gridLayout->setObjectName(QStringLiteral(
"gridLayout"));
50 lab_name->setObjectName(QStringLiteral(
"lab_name"));
52 gridLayout->addWidget(lab_name, 2, 0, 1, 1);
54 horizontalLayout =
new QHBoxLayout();
55 horizontalLayout->setObjectName(QStringLiteral(
"horizontalLayout"));
56 horizontalSpacer =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
58 horizontalLayout->addItem(horizontalSpacer);
61 btn_cancel->setObjectName(QStringLiteral(
"btn_cancel"));
62 btn_cancel->setText(QStringLiteral(
"Cancel"));
64 horizontalLayout->addWidget(btn_cancel);
67 btn_ok->setObjectName(QStringLiteral(
"btn_ok"));
68 btn_ok->setText(QStringLiteral(
"OK"));
70 horizontalLayout->addWidget(btn_ok);
73 gridLayout->addLayout(horizontalLayout, 6, 0, 1, 2);
76 le_url->setObjectName(QStringLiteral(
"le_url"));
78 gridLayout->addWidget(le_url, 3, 1, 1, 1);
81 lab_url->setObjectName(QStringLiteral(
"lab_url"));
83 gridLayout->addWidget(lab_url, 3, 0, 1, 1);
86 lab_header->setObjectName(QStringLiteral(
"lab_header"));
90 lab_header->setFont(font);
91 lab_header->setText(QStringLiteral(
"New/Edit"));
93 gridLayout->addWidget(lab_header, 0, 0, 1, 1);
96 line->setObjectName(QStringLiteral(
"line"));
97 line->setFrameShape(QFrame::HLine);
98 line->setFrameShadow(QFrame::Sunken);
100 gridLayout->addWidget(line, 1, 0, 1, 2);
103 le_name->setObjectName(QStringLiteral(
"le_name"));
105 gridLayout->addWidget(le_name, 2, 1, 1, 1);
108 lab_error->setObjectName(QStringLiteral(
"lab_error"));
109 lab_error->setText(QStringLiteral(
"Error"));
111 gridLayout->addWidget(lab_error, 5, 0, 1, 2);
114 line_2->setObjectName(QStringLiteral(
"line_2"));
115 line_2->setFrameShape(QFrame::HLine);
116 line_2->setFrameShadow(QFrame::Sunken);
118 gridLayout->addWidget(line_2, 4, 0, 1, 2);
120 QWidget::setTabOrder(le_name, le_url);
121 QWidget::setTabOrder(le_url, btn_cancel);
122 QWidget::setTabOrder(btn_cancel, btn_ok);
131 lab_name->setText(QApplication::translate(
"GUI_ConfigureStreams",
"Name",
nullptr));
132 lab_url->setText(QApplication::translate(
"GUI_ConfigureStreams",
"Url",
nullptr));
144 #endif // UI_GUI_CONFIGURESTREAMS_H
Definition: ui_GUI_AlternativeCovers.h:315