Advertisement
Guest User

Untitled

a guest
May 5th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.97 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright © 2010 Christian Persch
  4.  
  5. This library 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 library 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 Lesser 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 library. If not, see <http://www.gnu.org/licenses/>.
  17. -->
  18. <schemalist>
  19.  
  20. <enum id='org.gtk.Settings.FileChooser.LocationMode'>
  21. <value nick='path-bar' value='0'/>
  22. <value nick='filename-entry' value='1'/>
  23. </enum>
  24.  
  25. <enum id='org.gtk.Settings.FileChooser.SortColumn'>
  26. <value nick='name' value='0'/>
  27. <value nick='size' value='1'/>
  28. <value nick='modified' value='2'/>
  29. </enum>
  30.  
  31. <enum id='org.gtk.Settings.FileChooser.SortOrder'>
  32. <value nick='ascending' value='0'/>
  33. <value nick='descending' value='1'/>
  34. </enum>
  35.  
  36. <enum id='org.gtk.Settings.FileChooser.StartupMode'>
  37. <value nick='recent' value='0'/>
  38. <value nick='cwd' value='1'/>
  39. </enum>
  40.  
  41. <schema id='org.gtk.Settings.FileChooser' path='/org/gtk/settings/file-chooser/'>
  42. <key name='last-folder-uri' type='s'>
  43. <default>""</default>
  44. </key>
  45. <key name='location-mode' enum='org.gtk.Settings.FileChooser.LocationMode'>
  46. <default>'path-bar'</default>
  47. <description>
  48. Controls whether the file chooser
  49. shows just a path bar, or a visible entry for the filename as well, for the
  50. benefit of typing-oriented users. The possible values for these modes
  51. are "path-bar" and "filename-entry".
  52. </description>
  53. </key>
  54. <key name='show-hidden' type='b'>
  55. <default>false</default>
  56. <summary>Whether to show hidden files</summary>
  57. <description>
  58. Controls whether the file chooser shows hidden files or not.
  59. </description>
  60. </key>
  61. <key name='expand-folders' type='b'>
  62. <default>false</default>
  63. <description>This key is deprecated; do not use it.</description>
  64. </key>
  65. <key name='show-size-column' type='b'>
  66. <default>true</default>
  67. <description>
  68. Controls whether the file chooser shows a column with file
  69. sizes.
  70. </description>
  71. </key>
  72. <key name='sort-column' enum='org.gtk.Settings.FileChooser.SortColumn'>
  73. <default>'name'</default>
  74. <description>
  75. Can be one of "name", "modified", or "size". It controls
  76. which of the columns in the file chooser is used for sorting
  77. the list of files.
  78. </description>
  79. </key>
  80. <key name='sort-order' enum='org.gtk.Settings.FileChooser.SortOrder'>
  81. <default>'ascending'</default>
  82. <description>
  83. Can be one of the strings "ascending" or "descending".
  84. </description>
  85. </key>
  86. <key name='window-position' type='(ii)'>
  87. <default>(-1, -1)</default>
  88. <description>
  89. Coordinates (x, y) of the upper-left corner of the GtkFileChooserDialog's window.
  90. </description>
  91. </key>
  92. <key name='window-size' type='(ii)'>
  93. <default>(-1, -1)</default>
  94. <description>
  95. Size in pixels (width, height) of the GtkFileChooserDialog's window.
  96. </description>
  97. </key>
  98. <key name='startup-mode' enum='org.gtk.Settings.FileChooser.StartupMode'>
  99. <default>'recent'</default>
  100. <description>
  101. Either "recent" or "cwd"; controls whether the file chooser
  102. starts up showing the list of recently-used files, or the
  103. contents of the current working directory.
  104. </description>
  105. </key>
  106. <key name='sidebar-width' type='i'>
  107. <default>148</default>
  108. <description>
  109. Width in pixels of the file chooser's places sidebar.
  110. </description>
  111. </key>
  112. </schema>
  113.  
  114. </schemalist>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement