diff options
Diffstat (limited to '')
-rw-r--r-- | panels/universal-access/cc-visual-alerts-dialog.ui | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/panels/universal-access/cc-visual-alerts-dialog.ui b/panels/universal-access/cc-visual-alerts-dialog.ui new file mode 100644 index 0000000..a162190 --- /dev/null +++ b/panels/universal-access/cc-visual-alerts-dialog.ui @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <!-- interface-requires gtk+ 3.0 --> + <template class="CcVisualAlertsDialog" parent="GtkDialog"> + <property name="title" translatable="yes">Visual Alerts</property> + <property name="resizable">False</property> + <property name="modal">True</property> + <property name="use_header_bar">1</property> + <child internal-child="headerbar"> + <object class="GtkHeaderBar"> + <property name="show_title_buttons">True</property> + <child> + <object class="GtkButton" id="test_button"> + <property name="label" translatable="yes">_Test flash</property> + <property name="use_underline">True</property> + <property name="valign">center</property> + <style> + <class name="text-button"/> + </style> + </object> + </child> + </object> + </child> + <child> + <object class="GtkBox"> + <property name="margin_start">12</property> + <property name="margin_end">12</property> + <property name="margin_top">12</property> + <property name="margin_bottom">12</property> + <property name="orientation">vertical</property> + <property name="spacing">2</property> + <child> + <object class="GtkLabel"> + <property name="margin_start">12</property> + <property name="margin_end">6</property> + <property name="margin_top">6</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">Use a visual indication when an alert sound occurs.</property> + <property name="wrap">True</property> + </object> + </child> + <child> + <object class="GtkGrid"> + <property name="margin_start">12</property> + <property name="margin_end">6</property> + <property name="margin_top">12</property> + <property name="margin_bottom">12</property> + <property name="row_spacing">12</property> + <property name="column_spacing">6</property> + <child> + <object class="GtkLabel"> + <property name="hexpand">True</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">_Visual Alerts</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">enable_switch</property> + <layout> + <property name="column">0</property> + <property name="row">0</property> + </layout> + </object> + </child> + <child> + <object class="GtkSwitch" id="enable_switch"> + <property name="halign">end</property> + <layout> + <property name="column">1</property> + <property name="row">0</property> + </layout> + </object> + </child> + <child> + <object class="GtkCheckButton" id="screen_radio"> + <property name="label" translatable="yes">Flash the entire _screen</property> + <property name="group">window_radio</property> + <property name="use_underline">True</property> + <layout> + <property name="column">0</property> + <property name="row">2</property> + <property name="column-span">2</property> + </layout> + </object> + </child> + <child> + <object class="GtkCheckButton" id="window_radio"> + <property name="label" translatable="yes">Flash the entire _window</property> + <property name="active">True</property> + <property name="use_underline">True</property> + <layout> + <property name="column">0</property> + <property name="row">1</property> + <property name="column-span">2</property> + </layout> + </object> + </child> + </object> + </child> + </object> + </child> + </template> +</interface> |