123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <?xml version="1.0" encoding="UTF-8"?>
- <interface domain="blur-my-shell@aunetx">
- <template class="Overview" parent="AdwPreferencesPage">
- <property name="name">overview</property>
- <property name="title" translatable="yes">Overview</property>
- <property name="icon-name">overview-symbolic</property>
- <child>
- <object class="AdwPreferencesGroup">
- <property name="title" translatable="yes">Background blur</property>
- <property name="description" translatable="yes">Add blur to the overview background, using the wallpaper picture.</property>
- <property name="header-suffix">
- <object class="GtkSwitch" id="overview_blur">
- <property name="valign">center</property>
- </object>
- </property>
- <child>
- <object class="PipelineChooseRow" id="pipeline_choose_row">
- <property name="sensitive" bind-source="overview_blur" bind-property="state" bind-flags="sync-create" />
- </object>
- </child>
- <child>
- <object class="AdwActionRow">
- <property name="title" translatable="yes">Overview components style</property>
- <property name="subtitle" translatable="yes">The semi-transparent style for the dash, search entry/results, and application folders.</property>
- <property name="sensitive" bind-source="overview_blur" bind-property="state" bind-flags="sync-create" />
- <property name="activatable-widget">overview_style_components</property>
- <child>
- <object class="GtkDropDown" id="overview_style_components">
- <property name="valign">center</property>
- <property name="model">overview_style_components_model</property>
- </object>
- </child>
- </object>
- </child>
- </object>
- </child>
- <child>
- <object class="AdwPreferencesGroup">
- <property name="title" translatable="yes">Application folder blur</property>
- <property name="description" translatable="yes">Makes the background of application folder dialogs blurred.</property>
- <property name="header-suffix">
- <object class="GtkSwitch" id="appfolder_blur">
- <property name="valign">center</property>
- </object>
- </property>
- <child>
- <object class="AdwActionRow">
- <property name="title" translatable="yes">Sigma</property>
- <property name="subtitle" translatable="yes">The intensity of the blur.</property>
- <property name="activatable-widget">appfolder_sigma_scale</property>
- <property name="sensitive" bind-source="appfolder_blur" bind-property="state" bind-flags="sync-create" />
- <child>
- <object class="GtkScale" id="appfolder_sigma_scale">
- <property name="valign">center</property>
- <property name="hexpand">true</property>
- <property name="width-request">200px</property>
- <property name="draw-value">true</property>
- <property name="value-pos">right</property>
- <property name="digits">0</property>
- <property name="adjustment">appfolder_sigma</property>
- </object>
- </child>
- </object>
- </child>
- <child>
- <object class="AdwActionRow">
- <property name="title" translatable="yes">Brightness</property>
- <property name="subtitle" translatable="yes">The brightness of the blur effect, a high value might make the text harder to read.</property>
- <property name="activatable-widget">appfolder_brightness_scale</property>
- <property name="sensitive" bind-source="appfolder_blur" bind-property="state" bind-flags="sync-create" />
- <child>
- <object class="GtkScale" id="appfolder_brightness_scale">
- <property name="valign">center</property>
- <property name="hexpand">true</property>
- <property name="width-request">200px</property>
- <property name="draw-value">true</property>
- <property name="value-pos">right</property>
- <property name="digits">2</property>
- <property name="adjustment">appfolder_brightness</property>
- </object>
- </child>
- </object>
- </child>
- <child>
- <object class="AdwActionRow">
- <property name="title" translatable="yes">Application folder dialogs style</property>
- <property name="subtitle" translatable="yes">The semi-transparent style for the application folder dialogs.</property>
- <property name="sensitive" bind-source="appfolder_blur" bind-property="state" bind-flags="sync-create" />
- <property name="activatable-widget">appfolder_style_dialogs</property>
- <child>
- <object class="GtkDropDown" id="appfolder_style_dialogs">
- <property name="valign">center</property>
- <property name="model">appfolder_style_dialogs_model</property>
- </object>
- </child>
- </object>
- </child>
- </object>
- </child>
- </template>
- <object class="GtkStringList" id="overview_style_components_model">
- <items>
- <item translatable="yes">Do not style</item>
- <item translatable="yes">Light</item>
- <item translatable="yes">Dark</item>
- <item translatable="yes">Transparent</item>
- </items>
- </object>
- <object class="GtkAdjustment" id="appfolder_sigma">
- <property name="lower">0</property>
- <property name="upper">100</property>
- <property name="step-increment">1</property>
- </object>
- <object class="GtkAdjustment" id="appfolder_brightness">
- <property name="lower">0.0</property>
- <property name="upper">1.0</property>
- <property name="step-increment">0.01</property>
- </object>
- <object class="GtkStringList" id="appfolder_style_dialogs_model">
- <items>
- <item translatable="yes">Do not style</item>
- <item translatable="yes">Transparent</item>
- <item translatable="yes">Light</item>
- <item translatable="yes">Dark</item>
- </items>
- </object>
- </interface>
|