diff options
author | Christian Persch <chpe@gnome.org> | 2010-09-28 22:56:02 +0200 |
---|---|---|
committer | Christian Persch <chpe@gnome.org> | 2010-10-13 14:31:07 +0200 |
commit | 803233cc14c02535a78b0000097d812ff42f7e6e (patch) | |
tree | f35f8f96ab81212b199403f2ad8026e81386998c /gtk/org.gtk.Settings.FileChooser.gschema.xml | |
parent | a2e88f9b808b48f8d7476938bc4dcc76cc77f7ff (diff) | |
download | gtk+-803233cc14c02535a78b0000097d812ff42f7e6e.tar.gz |
Use GSettings for the filechooser settings
Bug #630850.
Diffstat (limited to 'gtk/org.gtk.Settings.FileChooser.gschema.xml')
-rw-r--r-- | gtk/org.gtk.Settings.FileChooser.gschema.xml | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/gtk/org.gtk.Settings.FileChooser.gschema.xml b/gtk/org.gtk.Settings.FileChooser.gschema.xml new file mode 100644 index 0000000000..296d6d3c12 --- /dev/null +++ b/gtk/org.gtk.Settings.FileChooser.gschema.xml @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright © 2010 Christian Persch + + This program is free software; you can redistribute it and/or modify + 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. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +--> +<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> + + <schema id='org.gtk.Settings.FileChooser'> + <key name='location-mode' enum='org.gtk.Settings.FileChooser.LocationMode'> + <default>'path-bar'</default> + </key> + <key name='show-hidden' type='b'> + <default>false</default> + </key> + <key name='expand-folders' type='b'> + <default>false</default> + </key> + <key name='show-size-column' type='b'> + <default>true</default> + </key> + <key name='sort-column' enum='org.gtk.Settings.FileChooser.SortColumn'> + <default>'name'</default> + </key> + <key name='sort-order' enum='org.gtk.Settings.FileChooser.SortOrder'> + <default>'ascending'</default> + </key> + <key name='window-position' type='(ii)'> + <default>(-1, -1)</default> + </key> + <key name='window-size' type='(ii)'> + <default>(-1, -1)</default> + </key> + </schema> + +</schemalist> |