2010-09-28 20:56:02 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright © 2010 Christian Persch
|
|
|
|
|
2012-02-27 13:01:10 +00:00
|
|
|
This library is free software; you can redistribute it and/or modify
|
2010-09-28 20:56:02 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
2012-02-27 13:01:10 +00:00
|
|
|
This library is distributed in the hope that it will be useful,
|
2010-09-28 20:56:02 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-02-27 13:01:10 +00:00
|
|
|
GNU Lesser General Public License for more details.
|
2010-09-28 20:56:02 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2012-02-27 13:01:10 +00:00
|
|
|
along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2010-09-28 20:56:02 +00:00
|
|
|
-->
|
|
|
|
<schemalist>
|
|
|
|
|
|
|
|
<enum id='org.gtk.Settings.FileChooser.LocationMode'>
|
|
|
|
<value nick='path-bar' value='0'/>
|
|
|
|
<value nick='filename-entry' value='1'/>
|
|
|
|
</enum>
|
|
|
|
|
|
|
|
<enum id='org.gtk.Settings.FileChooser.SortColumn'>
|
|
|
|
<value nick='name' value='0'/>
|
|
|
|
<value nick='size' value='1'/>
|
|
|
|
<value nick='modified' value='2'/>
|
|
|
|
</enum>
|
|
|
|
|
|
|
|
<enum id='org.gtk.Settings.FileChooser.SortOrder'>
|
|
|
|
<value nick='ascending' value='0'/>
|
|
|
|
<value nick='descending' value='1'/>
|
|
|
|
</enum>
|
|
|
|
|
2012-11-21 16:28:26 +00:00
|
|
|
<enum id='org.gtk.Settings.FileChooser.StartupMode'>
|
|
|
|
<value nick='recent' value='0'/>
|
|
|
|
<value nick='cwd' value='1'/>
|
|
|
|
</enum>
|
|
|
|
|
2014-01-24 23:04:51 +00:00
|
|
|
<enum id='org.gtk.Settings.FileChooser.ClockFormat'>
|
|
|
|
<value nick='24h' value='0'/>
|
|
|
|
<value nick='12h' value='1'/>
|
|
|
|
</enum>
|
|
|
|
|
2013-01-21 02:24:28 +00:00
|
|
|
<schema id='org.gtk.Settings.FileChooser' path='/org/gtk/settings/file-chooser/'>
|
2011-04-14 19:14:26 +00:00
|
|
|
<key name='last-folder-uri' type='s'>
|
|
|
|
<default>""</default>
|
|
|
|
</key>
|
2010-09-28 20:56:02 +00:00
|
|
|
<key name='location-mode' enum='org.gtk.Settings.FileChooser.LocationMode'>
|
|
|
|
<default>'path-bar'</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Location mode</summary>
|
2014-01-06 23:15:56 +00:00
|
|
|
<description>
|
2014-05-13 16:37:39 +00:00
|
|
|
Controls whether the file chooser shows just a path bar, or a visible entry
|
|
|
|
for the filename as well, for the benefit of typing-oriented users. The
|
|
|
|
possible values for these modes are "path-bar" and "filename-entry".
|
2014-01-06 23:15:56 +00:00
|
|
|
</description>
|
2010-09-28 20:56:02 +00:00
|
|
|
</key>
|
|
|
|
<key name='show-hidden' type='b'>
|
|
|
|
<default>false</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Show hidden files</summary>
|
2014-01-06 23:15:56 +00:00
|
|
|
<description>
|
|
|
|
Controls whether the file chooser shows hidden files or not.
|
|
|
|
</description>
|
2010-09-28 20:56:02 +00:00
|
|
|
</key>
|
2013-12-03 17:10:29 +00:00
|
|
|
<key type="b" name="sort-directories-first">
|
|
|
|
<default>false</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Show folders first</summary>
|
|
|
|
<description>
|
|
|
|
If set to true, then folders are shown before files in the list.
|
|
|
|
</description>
|
2013-12-03 17:10:29 +00:00
|
|
|
</key>
|
2011-08-02 16:44:52 +00:00
|
|
|
<key name='expand-folders' type='b'>
|
|
|
|
<default>false</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Expand folders</summary>
|
2014-01-06 23:15:56 +00:00
|
|
|
<description>This key is deprecated; do not use it.</description>
|
2011-08-02 16:44:52 +00:00
|
|
|
</key>
|
2010-09-28 20:56:02 +00:00
|
|
|
<key name='show-size-column' type='b'>
|
|
|
|
<default>true</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Show file sizes</summary>
|
2014-01-06 23:15:56 +00:00
|
|
|
<description>
|
2014-05-13 16:37:39 +00:00
|
|
|
Controls whether the file chooser shows a column with file sizes.
|
2014-01-06 23:15:56 +00:00
|
|
|
</description>
|
2010-09-28 20:56:02 +00:00
|
|
|
</key>
|
|
|
|
<key name='sort-column' enum='org.gtk.Settings.FileChooser.SortColumn'>
|
|
|
|
<default>'name'</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Sort column</summary>
|
2014-01-06 23:15:56 +00:00
|
|
|
<description>
|
|
|
|
Can be one of "name", "modified", or "size". It controls
|
|
|
|
which of the columns in the file chooser is used for sorting
|
|
|
|
the list of files.
|
|
|
|
</description>
|
2010-09-28 20:56:02 +00:00
|
|
|
</key>
|
|
|
|
<key name='sort-order' enum='org.gtk.Settings.FileChooser.SortOrder'>
|
|
|
|
<default>'ascending'</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Sort order</summary>
|
2014-01-06 23:15:56 +00:00
|
|
|
<description>
|
|
|
|
Can be one of the strings "ascending" or "descending".
|
|
|
|
</description>
|
2010-09-28 20:56:02 +00:00
|
|
|
</key>
|
|
|
|
<key name='window-position' type='(ii)'>
|
|
|
|
<default>(-1, -1)</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Window position</summary>
|
2014-01-06 23:15:56 +00:00
|
|
|
<description>
|
2014-05-13 16:37:39 +00:00
|
|
|
The (x, y) coordinates of the upper-left corner of the GtkFileChooserDialog's
|
|
|
|
window.
|
2014-01-06 23:15:56 +00:00
|
|
|
</description>
|
2010-09-28 20:56:02 +00:00
|
|
|
</key>
|
|
|
|
<key name='window-size' type='(ii)'>
|
|
|
|
<default>(-1, -1)</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Window size</summary>
|
2014-01-06 23:15:56 +00:00
|
|
|
<description>
|
2014-05-13 16:37:39 +00:00
|
|
|
The size (width, height) of the GtkFileChooserDialog's window, in pixels.
|
2014-01-06 23:15:56 +00:00
|
|
|
</description>
|
2010-09-28 20:56:02 +00:00
|
|
|
</key>
|
2012-11-21 16:28:26 +00:00
|
|
|
<key name='startup-mode' enum='org.gtk.Settings.FileChooser.StartupMode'>
|
|
|
|
<default>'recent'</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Startup mode</summary>
|
2014-01-06 23:15:56 +00:00
|
|
|
<description>
|
|
|
|
Either "recent" or "cwd"; controls whether the file chooser
|
|
|
|
starts up showing the list of recently-used files, or the
|
|
|
|
contents of the current working directory.
|
|
|
|
</description>
|
2012-11-21 16:28:26 +00:00
|
|
|
</key>
|
2012-11-14 12:10:59 +00:00
|
|
|
<key name='sidebar-width' type='i'>
|
|
|
|
<default>148</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Sidebar width</summary>
|
2014-01-06 23:15:56 +00:00
|
|
|
<description>
|
|
|
|
Width in pixels of the file chooser's places sidebar.
|
|
|
|
</description>
|
2012-11-14 12:10:59 +00:00
|
|
|
</key>
|
2014-01-24 23:04:51 +00:00
|
|
|
<key name="clock-format" enum="org.gtk.Settings.FileChooser.ClockFormat">
|
|
|
|
<default>'24h'</default>
|
2014-05-13 16:37:39 +00:00
|
|
|
<summary>Time format</summary>
|
2014-01-24 23:04:51 +00:00
|
|
|
<description>
|
|
|
|
Whether the time is shown in 24h or 12h format.
|
|
|
|
</description>
|
|
|
|
</key>
|
2010-09-28 20:56:02 +00:00
|
|
|
</schema>
|
|
|
|
|
|
|
|
</schemalist>
|