diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:45:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:45:20 +0000 |
commit | ae1c76ff830d146d41e88d6fba724c0a54bce868 (patch) | |
tree | 3c354bec95af07be35fc71a4b738268496f1a1c4 /panels/notifications/cc-app-notifications-dialog.ui | |
parent | Initial commit. (diff) | |
download | gnome-control-center-ae1c76ff830d146d41e88d6fba724c0a54bce868.tar.xz gnome-control-center-ae1c76ff830d146d41e88d6fba724c0a54bce868.zip |
Adding upstream version 1:43.6.upstream/1%43.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | panels/notifications/cc-app-notifications-dialog.ui | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/panels/notifications/cc-app-notifications-dialog.ui b/panels/notifications/cc-app-notifications-dialog.ui new file mode 100644 index 0000000..c697eb1 --- /dev/null +++ b/panels/notifications/cc-app-notifications-dialog.ui @@ -0,0 +1,97 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <template class="CcAppNotificationsDialog" parent="GtkDialog"> + <property name="default-width">550</property> + <property name="default-height">450</property> + <property name="resizable">True</property> + <property name="modal">True</property> + <child> + <object class="AdwPreferencesPage"> + <child> + <object class="AdwPreferencesGroup"> + <child> + <object class="AdwActionRow"> + <property name="use-underline">True</property> + <property name="title" translatable="yes" context="notifications" comments="This is the per application switch for message tray usage.">_Notifications</property> + <property name="activatable-widget">notifications_switch</property> + <child> + <object class="GtkSwitch" id="notifications_switch"> + <property name="valign">center</property> + <property name="active">True</property> + <signal name="notify::active" handler="notifications_switch_state_set_cb" swapped="no"/> + </object> + </child> + </object> + </child> + <child> + <object class="AdwActionRow"> + <property name="use-underline">True</property> + <property name="title" translatable="yes" context="notifications" comments="This is the setting to configure sounds associated with notifications.">Sound _Alerts</property> + <property name="activatable-widget">sound_alerts_switch</property> + <child> + <object class="GtkSwitch" id="sound_alerts_switch"> + <property name="valign">center</property> + <signal name="notify::active" handler="sound_alerts_switch_state_set_cb" swapped="no"/> + </object> + </child> + </object> + </child> + <child> + <object class="AdwActionRow"> + <property name="use-underline">True</property> + <property name="title" translatable="yes" context="notifications">Notification _Popups</property> + <property name="subtitle" translatable="yes">Notifications will continue to appear in the notification list when popups are disabled.</property> + <property name="activatable-widget">notification_banners_switch</property> + <child> + <object class="GtkSwitch" id="notification_banners_switch"> + <property name="valign">center</property> + <signal name="notify::active" handler="notification_banners_switch_state_set_cb" swapped="no"/> + </object> + </child> + </object> + </child> + <child> + <object class="AdwActionRow"> + <property name="use-underline">True</property> + <property name="title" translatable="yes" context="notifications" comments="Popups here refers to message tray notifications in the middle of the screen.">Show Message _Content in Popups</property> + <property name="activatable-widget">notification_banners_content_switch</property> + <child> + <object class="GtkSwitch" id="notification_banners_content_switch"> + <property name="valign">center</property> + <signal name="notify::active" handler="notification_banners_content_switch_state_set_cb" swapped="no"/> + </object> + </child> + </object> + </child> + <child> + <object class="AdwActionRow"> + <property name="use-underline">True</property> + <property name="title" translatable="yes" context="notifications">_Lock Screen Notifications</property> + <property name="activatable-widget">lock_screen_notifications_switch</property> + <child> + <object class="GtkSwitch" id="lock_screen_notifications_switch"> + <property name="valign">center</property> + <signal name="notify::active" handler="lock_screen_notifications_switch_state_set_cb" swapped="no"/> + </object> + </child> + </object> + </child> + <child> + <object class="AdwActionRow"> + <property name="use-underline">True</property> + <property name="title" translatable="yes" context="notifications">Show Message C_ontent on Lock Screen</property> + <property name="activatable-widget">lock_screen_content_switch</property> + <child> + <object class="GtkSwitch" id="lock_screen_content_switch"> + <property name="valign">center</property> + <signal name="notify::active" handler="lock_screen_content_switch_state_set_cb" swapped="no"/> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </template> +</interface> |