9 #ifndef UI_GUI_PLAYERPREFERENCES_H 10 #define UI_GUI_PLAYERPREFERENCES_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QApplication> 14 #include <QtWidgets/QCheckBox> 15 #include <QtWidgets/QGridLayout> 16 #include <QtWidgets/QWidget> 23 QGridLayout *gridLayout;
24 QCheckBox *cb_update_notifications;
25 QCheckBox *cb_start_in_tray;
26 QCheckBox *cb_close_to_tray;
27 QCheckBox *cb_show_tray_icon;
35 gridLayout->setObjectName(QStringLiteral(
"gridLayout"));
37 cb_update_notifications->setObjectName(QStringLiteral(
"cb_update_notifications"));
39 gridLayout->addWidget(cb_update_notifications, 4, 0, 1, 1);
42 cb_start_in_tray->setObjectName(QStringLiteral(
"cb_start_in_tray"));
44 gridLayout->addWidget(cb_start_in_tray, 1, 0, 1, 1);
47 cb_close_to_tray->setObjectName(QStringLiteral(
"cb_close_to_tray"));
49 gridLayout->addWidget(cb_close_to_tray, 3, 0, 1, 1);
52 cb_show_tray_icon->setObjectName(QStringLiteral(
"cb_show_tray_icon"));
54 gridLayout->addWidget(cb_show_tray_icon, 0, 0, 1, 1);
64 cb_update_notifications->setText(QApplication::translate(
"GUI_PlayerPreferences",
"Update notifications",
nullptr));
65 cb_start_in_tray->setText(QApplication::translate(
"GUI_PlayerPreferences",
"Start in tray",
nullptr));
66 cb_close_to_tray->setText(QApplication::translate(
"GUI_PlayerPreferences",
"Close to tray",
nullptr));
67 cb_show_tray_icon->setText(QApplication::translate(
"GUI_PlayerPreferences",
"Show system tray icon",
nullptr));
79 #endif // UI_GUI_PLAYERPREFERENCES_H Definition: ui_GUI_PlayerPreferences.h:74
Definition: ui_GUI_SomaFM.h:206
Definition: GUI_PlayerPreferences.h:28
Definition: ui_GUI_PlayerPreferences.h:20