9 #ifndef UI_GUI_STREAMRECORDER_H 10 #define UI_GUI_STREAMRECORDER_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QAction> 14 #include <QtWidgets/QApplication> 15 #include <QtWidgets/QButtonGroup> 16 #include <QtWidgets/QCheckBox> 17 #include <QtWidgets/QGridLayout> 18 #include <QtWidgets/QHeaderView> 19 #include <QtWidgets/QLabel> 20 #include <QtWidgets/QLineEdit> 21 #include <QtWidgets/QPushButton> 22 #include <QtWidgets/QWidget> 29 QGridLayout *gridLayout;
31 QCheckBox *cb_create_session_path;
34 QCheckBox *cb_activate;
35 QPushButton *btn_path;
38 QCheckBox *cb_auto_rec;
43 if (GUI_StreamRecorder->objectName().isEmpty())
44 GUI_StreamRecorder->setObjectName(QStringLiteral(
"GUI_StreamRecorder"));
45 GUI_StreamRecorder->resize(443, 165);
46 QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
47 sizePolicy.setHorizontalStretch(0);
48 sizePolicy.setVerticalStretch(0);
49 sizePolicy.setHeightForWidth(GUI_StreamRecorder->sizePolicy().hasHeightForWidth());
50 GUI_StreamRecorder->setSizePolicy(sizePolicy);
51 gridLayout =
new QGridLayout(GUI_StreamRecorder);
52 gridLayout->setSpacing(10);
53 gridLayout->setObjectName(QStringLiteral(
"gridLayout"));
54 label =
new QLabel(GUI_StreamRecorder);
55 label->setObjectName(QStringLiteral(
"label"));
57 gridLayout->addWidget(label, 0, 0, 1, 1);
59 cb_create_session_path =
new QCheckBox(GUI_StreamRecorder);
60 cb_create_session_path->setObjectName(QStringLiteral(
"cb_create_session_path"));
61 cb_create_session_path->setEnabled(
true);
62 cb_create_session_path->setFocusPolicy(Qt::StrongFocus);
63 cb_create_session_path->setLayoutDirection(Qt::LeftToRight);
65 gridLayout->addWidget(cb_create_session_path, 2, 1, 1, 1);
67 le_path =
new QLineEdit(GUI_StreamRecorder);
68 le_path->setObjectName(QStringLiteral(
"le_path"));
69 QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Fixed);
70 sizePolicy1.setHorizontalStretch(0);
71 sizePolicy1.setVerticalStretch(0);
72 sizePolicy1.setHeightForWidth(le_path->sizePolicy().hasHeightForWidth());
73 le_path->setSizePolicy(sizePolicy1);
74 le_path->setReadOnly(
false);
76 gridLayout->addWidget(le_path, 3, 1, 1, 1);
78 label_4 =
new QLabel(GUI_StreamRecorder);
79 label_4->setObjectName(QStringLiteral(
"label_4"));
81 gridLayout->addWidget(label_4, 2, 0, 1, 1);
83 cb_activate =
new QCheckBox(GUI_StreamRecorder);
84 cb_activate->setObjectName(QStringLiteral(
"cb_activate"));
85 cb_activate->setFocusPolicy(Qt::StrongFocus);
87 gridLayout->addWidget(cb_activate, 0, 1, 1, 1);
89 btn_path =
new QPushButton(GUI_StreamRecorder);
90 btn_path->setObjectName(QStringLiteral(
"btn_path"));
91 btn_path->setMaximumSize(QSize(30, 30));
92 btn_path->setLayoutDirection(Qt::LeftToRight);
93 btn_path->setText(QStringLiteral(
"..."));
95 gridLayout->addWidget(btn_path, 3, 2, 1, 1);
97 label_2 =
new QLabel(GUI_StreamRecorder);
98 label_2->setObjectName(QStringLiteral(
"label_2"));
100 gridLayout->addWidget(label_2, 3, 0, 1, 1);
102 label_3 =
new QLabel(GUI_StreamRecorder);
103 label_3->setObjectName(QStringLiteral(
"label_3"));
105 gridLayout->addWidget(label_3, 1, 0, 1, 1);
107 cb_auto_rec =
new QCheckBox(GUI_StreamRecorder);
108 cb_auto_rec->setObjectName(QStringLiteral(
"cb_auto_rec"));
110 gridLayout->addWidget(cb_auto_rec, 1, 1, 1, 1);
112 lab_warning =
new QLabel(GUI_StreamRecorder);
113 lab_warning->setObjectName(QStringLiteral(
"lab_warning"));
115 gridLayout->addWidget(lab_warning, 4, 0, 1, 3);
118 retranslateUi(GUI_StreamRecorder);
120 QMetaObject::connectSlotsByName(GUI_StreamRecorder);
123 void retranslateUi(QWidget *GUI_StreamRecorder)
125 label->setText(QApplication::translate(
"GUI_StreamRecorder",
"Activate", Q_NULLPTR));
126 cb_create_session_path->setText(QString());
127 label_4->setText(QApplication::translate(
"GUI_StreamRecorder",
"Create session folder", Q_NULLPTR));
128 cb_activate->setText(QString());
129 label_2->setText(QApplication::translate(
"GUI_StreamRecorder",
"Target path:", Q_NULLPTR));
130 label_3->setText(QApplication::translate(
"GUI_StreamRecorder",
"Automatic recording", Q_NULLPTR));
131 cb_auto_rec->setText(QString());
132 lab_warning->setText(QString());
133 Q_UNUSED(GUI_StreamRecorder);
144 #endif // UI_GUI_STREAMRECORDER_H Definition: ui_GUI_StreamRecorder.h:26
Definition: ui_GUI_SomaFM.h:216
Definition: GUI_StreamRecorder.h:32
Definition: ui_GUI_StreamRecorder.h:139