]> Pileus Git - ~andy/gtk/blob - gtk/org.gtk.Settings.FileChooser.gschema.xml
Use GSettings for the filechooser settings
[~andy/gtk] / gtk / org.gtk.Settings.FileChooser.gschema.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   Copyright © 2010 Christian Persch
4
5   This program is free software; you can redistribute it and/or modify
6   it under the terms of the GNU Lesser General Public License as published by
7   the Free Software Foundation; either version 2.1, or (at your option)
8   any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14
15   You should have received a copy of the GNU Lesser General Public License
16   along with this program; if not, write to the Free Software
17   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 -->
19 <schemalist>
20
21   <enum id='org.gtk.Settings.FileChooser.LocationMode'>
22     <value nick='path-bar' value='0'/>
23     <value nick='filename-entry' value='1'/>
24   </enum>
25
26   <enum id='org.gtk.Settings.FileChooser.SortColumn'>
27     <value nick='name' value='0'/>
28     <value nick='size' value='1'/>
29     <value nick='modified' value='2'/>
30   </enum>
31
32   <enum id='org.gtk.Settings.FileChooser.SortOrder'>
33     <value nick='ascending' value='0'/>
34     <value nick='descending' value='1'/>
35   </enum>
36
37   <schema id='org.gtk.Settings.FileChooser'>
38     <key name='location-mode' enum='org.gtk.Settings.FileChooser.LocationMode'>
39       <default>'path-bar'</default>
40     </key>
41     <key name='show-hidden' type='b'>
42       <default>false</default>
43     </key>
44     <key name='expand-folders' type='b'>
45       <default>false</default>
46     </key>
47     <key name='show-size-column' type='b'>
48       <default>true</default>
49     </key>
50     <key name='sort-column' enum='org.gtk.Settings.FileChooser.SortColumn'>
51       <default>'name'</default>
52     </key>
53     <key name='sort-order' enum='org.gtk.Settings.FileChooser.SortOrder'>
54       <default>'ascending'</default>
55     </key>
56     <key name='window-position' type='(ii)'>
57       <default>(-1, -1)</default>
58     </key>
59     <key name='window-size' type='(ii)'>
60       <default>(-1, -1)</default>
61     </key>
62   </schema>
63
64 </schemalist>