9 #ifndef UI_GUI_REMOTECONTROL_H 10 #define UI_GUI_REMOTECONTROL_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QAction> 14 #include <QtWidgets/QApplication> 15 #include <QtWidgets/QButtonGroup> 16 #include <QtWidgets/QCheckBox> 17 #include <QtWidgets/QFrame> 18 #include <QtWidgets/QGridLayout> 19 #include <QtWidgets/QHeaderView> 20 #include <QtWidgets/QLabel> 21 #include <QtWidgets/QLineEdit> 22 #include <QtWidgets/QSpinBox> 23 #include <QtWidgets/QWidget> 30 QGridLayout *gridLayout;
31 QCheckBox *cb_activate;
41 if (GUI_RemoteControl->objectName().isEmpty())
42 GUI_RemoteControl->setObjectName(QStringLiteral(
"GUI_RemoteControl"));
43 GUI_RemoteControl->resize(400, 162);
44 gridLayout =
new QGridLayout(GUI_RemoteControl);
45 gridLayout->setSpacing(10);
46 gridLayout->setObjectName(QStringLiteral(
"gridLayout"));
47 cb_activate =
new QCheckBox(GUI_RemoteControl);
48 cb_activate->setObjectName(QStringLiteral(
"cb_activate"));
49 cb_activate->setLayoutDirection(Qt::LeftToRight);
51 gridLayout->addWidget(cb_activate, 0, 1, 1, 1);
53 line_2 =
new QFrame(GUI_RemoteControl);
54 line_2->setObjectName(QStringLiteral(
"line_2"));
55 line_2->setFrameShape(QFrame::HLine);
56 line_2->setFrameShadow(QFrame::Sunken);
58 gridLayout->addWidget(line_2, 2, 0, 1, 2);
60 label =
new QLabel(GUI_RemoteControl);
61 label->setObjectName(QStringLiteral(
"label"));
63 gridLayout->addWidget(label, 1, 0, 1, 1);
65 le_url =
new QLineEdit(GUI_RemoteControl);
66 le_url->setObjectName(QStringLiteral(
"le_url"));
68 gridLayout->addWidget(le_url, 3, 1, 1, 1);
70 label_2 =
new QLabel(GUI_RemoteControl);
71 label_2->setObjectName(QStringLiteral(
"label_2"));
73 gridLayout->addWidget(label_2, 0, 0, 1, 1);
75 lab_url =
new QLabel(GUI_RemoteControl);
76 lab_url->setObjectName(QStringLiteral(
"lab_url"));
78 gridLayout->addWidget(lab_url, 3, 0, 1, 1);
80 sb_port =
new QSpinBox(GUI_RemoteControl);
81 sb_port->setObjectName(QStringLiteral(
"sb_port"));
82 sb_port->setMaximum(65000);
83 sb_port->setValue(54055);
85 gridLayout->addWidget(sb_port, 1, 1, 1, 1);
88 retranslateUi(GUI_RemoteControl);
90 QMetaObject::connectSlotsByName(GUI_RemoteControl);
93 void retranslateUi(QWidget *GUI_RemoteControl)
95 cb_activate->setText(QString());
96 label->setText(QApplication::translate(
"GUI_RemoteControl",
"Port", Q_NULLPTR));
97 label_2->setText(QApplication::translate(
"GUI_RemoteControl",
"Activate", Q_NULLPTR));
98 lab_url->setText(QApplication::translate(
"GUI_RemoteControl",
"Remote control URL", Q_NULLPTR));
99 Q_UNUSED(GUI_RemoteControl);
110 #endif // UI_GUI_REMOTECONTROL_H Definition: GUI_RemoteControl.h:35
Definition: GUI_SomaFM.h:34
Definition: ui_GUI_RemoteControl.h:105
Definition: ui_GUI_RemoteControl.h:27