9 #ifndef UI_GUI_STREAMPREFERENCES_H 10 #define UI_GUI_STREAMPREFERENCES_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/QSpacerItem> 20 #include <QtWidgets/QWidget> 27 QGridLayout *gridLayout;
28 QCheckBox *cb_new_tab;
29 QCheckBox *cb_show_history;
30 QSpacerItem *verticalSpacer;
34 if (GUI_StreamPreferences->objectName().isEmpty())
35 GUI_StreamPreferences->setObjectName(QStringLiteral(
"GUI_StreamPreferences"));
36 GUI_StreamPreferences->resize(400, 300);
37 gridLayout =
new QGridLayout(GUI_StreamPreferences);
38 gridLayout->setObjectName(QStringLiteral(
"gridLayout"));
39 cb_new_tab =
new QCheckBox(GUI_StreamPreferences);
40 cb_new_tab->setObjectName(QStringLiteral(
"cb_new_tab"));
42 gridLayout->addWidget(cb_new_tab, 0, 0, 1, 1);
44 cb_show_history =
new QCheckBox(GUI_StreamPreferences);
45 cb_show_history->setObjectName(QStringLiteral(
"cb_show_history"));
47 gridLayout->addWidget(cb_show_history, 1, 0, 1, 1);
49 verticalSpacer =
new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
51 gridLayout->addItem(verticalSpacer, 2, 0, 1, 1);
54 retranslateUi(GUI_StreamPreferences);
56 QMetaObject::connectSlotsByName(GUI_StreamPreferences);
59 void retranslateUi(QWidget *GUI_StreamPreferences)
61 cb_new_tab->setText(QApplication::translate(
"GUI_StreamPreferences",
"Open Streams in new tab", Q_NULLPTR));
62 cb_show_history->setText(QApplication::translate(
"GUI_StreamPreferences",
"Show history", Q_NULLPTR));
63 Q_UNUSED(GUI_StreamPreferences);
74 #endif // UI_GUI_STREAMPREFERENCES_H Definition: ui_GUI_SomaFM.h:208
Definition: ui_GUI_StreamPreferences.h:69
Definition: ui_GUI_StreamPreferences.h:24
Definition: GUI_StreamPreferences.h:30