CuteLogger
Fast and simple logging solution for Qt based applications
ui_networkproducerwidget.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'networkproducerwidget.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.9.4
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_NETWORKPRODUCERWIDGET_H
10 #define UI_NETWORKPRODUCERWIDGET_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QGridLayout>
17 #include <QtWidgets/QHeaderView>
18 #include <QtWidgets/QLabel>
19 #include <QtWidgets/QLineEdit>
20 #include <QtWidgets/QPushButton>
21 #include <QtWidgets/QSpacerItem>
22 #include <QtWidgets/QVBoxLayout>
23 #include <QtWidgets/QWidget>
24 #include "widgets/servicepresetwidget.h"
25 
26 QT_BEGIN_NAMESPACE
27 
28 class Ui_NetworkProducerWidget
29 {
30 public:
31  QVBoxLayout *verticalLayout;
32  QLabel *label_2;
33  ServicePresetWidget *preset;
34  QGridLayout *gridLayout;
35  QLabel *label_6;
36  QLineEdit *urlLineEdit;
37  QPushButton *applyButton;
38  QSpacerItem *verticalSpacer_2;
39 
40  void setupUi(QWidget *NetworkProducerWidget)
41  {
42  if (NetworkProducerWidget->objectName().isEmpty())
43  NetworkProducerWidget->setObjectName(QStringLiteral("NetworkProducerWidget"));
44  NetworkProducerWidget->resize(394, 294);
45  verticalLayout = new QVBoxLayout(NetworkProducerWidget);
46  verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
47  label_2 = new QLabel(NetworkProducerWidget);
48  label_2->setObjectName(QStringLiteral("label_2"));
49  QFont font;
50  font.setBold(true);
51  font.setWeight(75);
52  label_2->setFont(font);
53  label_2->setAlignment(Qt::AlignCenter);
54 
55  verticalLayout->addWidget(label_2);
56 
57  preset = new ServicePresetWidget(NetworkProducerWidget);
58  preset->setObjectName(QStringLiteral("preset"));
59 
60  verticalLayout->addWidget(preset);
61 
62  gridLayout = new QGridLayout();
63  gridLayout->setObjectName(QStringLiteral("gridLayout"));
64  label_6 = new QLabel(NetworkProducerWidget);
65  label_6->setObjectName(QStringLiteral("label_6"));
66  label_6->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
67 
68  gridLayout->addWidget(label_6, 0, 0, 1, 1);
69 
70  urlLineEdit = new QLineEdit(NetworkProducerWidget);
71  urlLineEdit->setObjectName(QStringLiteral("urlLineEdit"));
72 
73  gridLayout->addWidget(urlLineEdit, 0, 2, 1, 1);
74 
75  applyButton = new QPushButton(NetworkProducerWidget);
76  applyButton->setObjectName(QStringLiteral("applyButton"));
77 
78  gridLayout->addWidget(applyButton, 1, 0, 1, 1);
79 
80 
81  verticalLayout->addLayout(gridLayout);
82 
83  verticalSpacer_2 = new QSpacerItem(20, 263, QSizePolicy::Minimum, QSizePolicy::Expanding);
84 
85  verticalLayout->addItem(verticalSpacer_2);
86 
87 #ifndef QT_NO_SHORTCUT
88  label_6->setBuddy(urlLineEdit);
89 #endif // QT_NO_SHORTCUT
90 
91  retranslateUi(NetworkProducerWidget);
92 
93  QMetaObject::connectSlotsByName(NetworkProducerWidget);
94  } // setupUi
95 
96  void retranslateUi(QWidget *NetworkProducerWidget)
97  {
98  NetworkProducerWidget->setWindowTitle(QApplication::translate("NetworkProducerWidget", "Form", Q_NULLPTR));
99  label_2->setText(QApplication::translate("NetworkProducerWidget", "Network Stream", Q_NULLPTR));
100  label_6->setText(QApplication::translate("NetworkProducerWidget", "&URL", Q_NULLPTR));
101  applyButton->setText(QApplication::translate("NetworkProducerWidget", "Apply", Q_NULLPTR));
102  } // retranslateUi
103 
104 };
105 
106 namespace Ui {
107  class NetworkProducerWidget: public Ui_NetworkProducerWidget {};
108 } // namespace Ui
109 
110 QT_END_NAMESPACE
111 
112 #endif // UI_NETWORKPRODUCERWIDGET_H
Definition: addencodepresetdialog.h:24