Uses AdwPreferencesPage and AdwPreferencesGroup for consistency with the rest of the application. The combo rows now use AdwActionRow so they can be included in the AdwPreferencesGroup without a custom list box.
219 lines
10 KiB
XML
219 lines
10 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<template class="CcUsagePanel" parent="CcPanel">
|
|
<child type="content">
|
|
<object class="AdwPreferencesPage">
|
|
<!-- File History -->
|
|
<child>
|
|
<object class="AdwPreferencesGroup">
|
|
<property name="title" translatable="yes">File History</property>
|
|
<property name="description" translatable="yes">File history keeps a record of files that you have used. This information is shared between applications, and makes it easier to find files that you might want to use.</property>
|
|
<child>
|
|
<object class="AdwActionRow">
|
|
<property name="title" translatable="yes">File H_istory</property>
|
|
<property name="activatable-widget">recently_used_switch</property>
|
|
<property name="use-underline">true</property>
|
|
<child>
|
|
<object class="GtkSwitch" id="recently_used_switch">
|
|
<property name="valign">center</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="AdwActionRow">
|
|
<property name="title" translatable="yes">File _History Duration</property>
|
|
<property name="sensitive" bind-source="retain_history_combo" bind-property="sensitive"/>
|
|
<property name="activatable-widget">retain_history_combo</property>
|
|
<property name="use-underline">true</property>
|
|
<child type="suffix">
|
|
<object class="GtkComboBoxText" id="retain_history_combo">
|
|
<property name="valign">center</property>
|
|
<property name="entry_text_column">0</property>
|
|
<property name="model">retain_history_model</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkBox">
|
|
<property name="hexpand">true</property>
|
|
<property name="halign">end</property>
|
|
<property name="homogeneous">true</property>
|
|
<property name="spacing">12</property>
|
|
<property name="margin-top">12</property>
|
|
<child>
|
|
<object class="GtkButton" id="clear_recent_button">
|
|
<property name="valign">center</property>
|
|
<property name="label" translatable="yes">_Clear History…</property>
|
|
<property name="use_underline">1</property>
|
|
<signal name="clicked" handler="clear_recent" swapped="yes"/>
|
|
<style>
|
|
<class name="destructive-action"/>
|
|
</style>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<!-- Trash & Temporary Files -->
|
|
<child>
|
|
<object class="AdwPreferencesGroup">
|
|
<property name="title" translatable="yes">Trash &amp; Temporary Files</property>
|
|
<property name="description" translatable="yes">Trash and temporary files can sometimes include personal or sensitive information. Automatically deleting them can help to protect privacy.</property>
|
|
<child>
|
|
<object class="AdwActionRow">
|
|
<property name="title" translatable="yes">Automatically Delete _Trash Content</property>
|
|
<property name="activatable-widget">purge_trash_switch</property>
|
|
<property name="use-underline">true</property>
|
|
<child>
|
|
<object class="GtkSwitch" id="purge_trash_switch">
|
|
<property name="valign">center</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="AdwActionRow">
|
|
<property name="title" translatable="yes">Automatically Delete Temporary _Files</property>
|
|
<property name="activatable-widget">purge_temp_switch</property>
|
|
<property name="use-underline">true</property>
|
|
<child>
|
|
<object class="GtkSwitch" id="purge_temp_switch">
|
|
<property name="valign">center</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="AdwActionRow">
|
|
<property name="title" translatable="yes">Automatically Delete _Period</property>
|
|
<property name="activatable_widget">purge_after_combo</property>
|
|
<property name="sensitive" bind-source="purge_after_combo" bind-property="sensitive"/>
|
|
<property name="use-underline">true</property>
|
|
<child type="suffix">
|
|
<object class="GtkComboBoxText" id="purge_after_combo">
|
|
<property name="valign">center</property>
|
|
<property name="entry_text_column">0</property>
|
|
<property name="model">purge_after_model</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkBox">
|
|
<property name="hexpand">true</property>
|
|
<property name="halign">end</property>
|
|
<property name="homogeneous">true</property>
|
|
<property name="margin-top">12</property>
|
|
<property name="spacing">12</property>
|
|
<child>
|
|
<object class="GtkButton" id="purge_trash_button">
|
|
<property name="halign">end</property>
|
|
<property name="valign">center</property>
|
|
<property name="label" translatable="yes">_Empty Trash…</property>
|
|
<property name="use-underline">true</property>
|
|
<style>
|
|
<class name="destructive-action"/>
|
|
</style>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkButton" id="purge_temp_button">
|
|
<property name="halign">end</property>
|
|
<property name="valign">center</property>
|
|
<property name="label" translatable="yes">_Delete Temporary Files…</property>
|
|
<property name="use-underline">true</property>
|
|
<style>
|
|
<class name="destructive-action"/>
|
|
</style>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</template>
|
|
|
|
<object class="GtkListStore" id="purge_after_model">
|
|
<columns>
|
|
<!-- column-name name -->
|
|
<column type="gchararray"/>
|
|
<!-- column-name value -->
|
|
<column type="guint"/>
|
|
</columns>
|
|
<data>
|
|
<row>
|
|
<col id="0" translatable="yes" context="purge_files" comments="Translators: Option for "Purge After" in "Purge Trash & Temporary Files" dialog.">1 hour</col>
|
|
<col id="1">0</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="purge_files" comments="Translators: Option for "Purge After" in "Purge Trash & Temporary Files" dialog.">1 day</col>
|
|
<col id="1">1</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="purge_files" comments="Translators: Option for "Purge After" in "Purge Trash & Temporary Files" dialog.">2 days</col>
|
|
<col id="1">2</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="purge_files" comments="Translators: Option for "Purge After" in "Purge Trash & Temporary Files" dialog.">3 days</col>
|
|
<col id="1">3</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="purge_files" comments="Translators: Option for "Purge After" in "Purge Trash & Temporary Files" dialog.">4 days</col>
|
|
<col id="1">4</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="purge_files" comments="Translators: Option for "Purge After" in "Purge Trash & Temporary Files" dialog.">5 days</col>
|
|
<col id="1">5</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="purge_files" comments="Translators: Option for "Purge After" in "Purge Trash & Temporary Files" dialog.">6 days</col>
|
|
<col id="1">6</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="purge_files" comments="Translators: Option for "Purge After" in "Purge Trash & Temporary Files" dialog.">7 days</col>
|
|
<col id="1">7</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="purge_files" comments="Translators: Option for "Purge After" in "Purge Trash & Temporary Files" dialog.">14 days</col>
|
|
<col id="1">14</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="purge_files" comments="Translators: Option for "Purge After" in "Purge Trash & Temporary Files" dialog.">30 days</col>
|
|
<col id="1">30</col>
|
|
</row>
|
|
</data>
|
|
</object>
|
|
|
|
<object class="GtkListStore" id="retain_history_model">
|
|
<columns>
|
|
<!-- column-name name -->
|
|
<column type="gchararray"/>
|
|
<!-- column-name value -->
|
|
<column type="gint"/>
|
|
</columns>
|
|
<data>
|
|
<row>
|
|
<col id="0" translatable="yes" context="retain_history" comments="Translators: Option for "Retain History" in "Usage & History" dialog.">1 day</col>
|
|
<col id="1">1</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="retain_history" comments="Translators: Option for "Retain History" in "Usage & History" dialog.">7 days</col>
|
|
<col id="1">7</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="retain_history" comments="Translators: Option for "Retain History" in "Usage & History" dialog.">30 days</col>
|
|
<col id="1">30</col>
|
|
</row>
|
|
<row>
|
|
<col id="0" translatable="yes" context="retain_history" comments="Translators: Option for "Retain History" in "Usage & History" dialog.">Forever</col>
|
|
<col id="1">-1</col>
|
|
</row>
|
|
</data>
|
|
</object>
|
|
|
|
</interface>
|