summaryrefslogtreecommitdiff
path: root/data/org.mate.engrampa.gschema.xml.in
blob: c997fd972d98d53f4f96f20aac18e5fefb6a5e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>

  <enum id="org.mate.engrampa.sort-method">
    <value nick="name" value="0"/>
    <value nick="size" value="1"/>
    <value nick="type" value="2"/>
    <value nick="time" value="3"/>
    <value nick="path" value="4"/>
  </enum>

  <enum id="org.mate.engrampa.sort-type">
    <value nick="ascending" value="0"/>
    <value nick="descending" value="1"/>
  </enum>

  <enum id="org.mate.engrampa.list-mode">
    <value nick="all-files" value="0"/>
    <value nick="as-folder" value="1"/>
  </enum>

  <enum id="org.mate.engrampa.compression-level">
    <value nick="very-fast" value="0"/>
    <value nick="fast" value="1"/>
    <value nick="normal" value="2"/>
    <value nick="maximum" value="3"/>
  </enum>

  <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.engrampa" path="/org/mate/engrampa/">
    <child name="listing" schema="org.mate.engrampa.listing"/>
    <child name="ui" schema="org.mate.engrampa.ui"/>
    <child name="general" schema="org.mate.engrampa.general"/>
    <child name="dialogs" schema="org.mate.engrampa.dialogs"/>
  </schema>
  <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.engrampa.listing" path="/org/mate/engrampa/listing/">
    <key name="sort-method" enum="org.mate.engrampa.sort-method">
      <default>'name'</default>
      <summary>How to sort files</summary>
      <description>What criteria must be used to arrange files. Possible values: name, size, type, time, path.</description>
    </key>
    <key name="sort-type" enum="org.mate.engrampa.sort-type">
      <default>'ascending'</default>
      <summary>Sort type</summary>
      <description>Whether to sort in ascending or descending direction. Possible values: ascending, descending.</description>
    </key>
    <key name="list-mode" enum="org.mate.engrampa.list-mode">
      <default>'as-folder'</default>
      <summary>List Mode</summary>
      <description>Whether to view all files in the archive (all_files), or view the archive as a folder (as_folder).</description>
    </key>
    <key name="show-type" type="b">
      <default>true</default>
      <summary>Display type</summary>
      <description>Display the Type column in the main window.</description>
    </key>
    <key name="show-size" type="b">
      <default>true</default>
      <summary>Display size</summary>
      <description>Display the Size column in the main window.</description>
    </key>
    <key name="show-time" type="b">
      <default>true</default>
      <summary>Display time</summary>
      <description>Display the Time column in the main window.</description>
    </key>
    <key name="show-path" type="b">
      <default>true</default>
      <summary>Display path</summary>
      <description>Display the Path column in the main window.</description>
    </key>
    <key name="use-mime-icons" type="b">
      <default>true</default>
      <summary>Use MIME icons</summary>
      <description>if TRUE will display icons depending on the file type (slower), otherwise will use always the same icon for all files (faster).</description>
    </key>
    <key name="name-column-width" type="i">
      <default>250</default>
      <summary>Name column width</summary>
      <description>The default width of the name column in the file list.</description>
    </key>
  </schema>
  <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.engrampa.ui" path="/org/mate/engrampa/ui/">
    <key name="history-len" type="i">
      <default>5</default>
      <summary>Max history length</summary>
      <description>Max number of items in the Open Recents menu.</description>
    </key>
    <key name="window-width" type="i">
      <default>600</default>
    </key>
    <key name="window-height" type="i">
      <default>480</default>
    </key>
    <key name="sidebar-width" type="i">
      <default>200</default>
    </key>
    <key name="view-toolbar" type="b">
      <default>true</default>
      <summary>View toolbar</summary>
      <description>Whether to display the toolbar.</description>
    </key>
    <key name="view-statusbar" type="b">
      <default>true</default>
      <summary>View statusbar</summary>
      <description>Whether to display the statusbar.</description>
    </key>
    <key name="view-folders" type="b">
      <default>false</default>
      <summary>View the folders pane</summary>
      <description>Whether to display the folders pane.</description>
    </key>
  </schema>
  <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.engrampa.general" path="/org/mate/engrampa/general/">
    <key name="editors" type="as">
      <default>[]</default>
      <summary>Editors</summary>
      <description>List of applications entered in the Open file dialog and not associated with the file type.</description>
    </key>
    <key name="compression-level" enum="org.mate.engrampa.compression-level">
      <default>'normal'</default>
      <summary>Compression level</summary>
      <description>Compression level used when adding files to an archive.  Possible values: very_fast, fast, normal, maximum.</description>
    </key>
    <key name="encrypt-header" type="b">
      <default>false</default>
      <summary>Encrypt the archive header</summary>
      <description>Whether to encrypt the archive header.  If the header is encrypted the password will be required to list the archive content as well.</description>
    </key>
    <key name="unar-open-zip" type="b">
      <default>false</default>
      <summary>Adds 'unar' support over .zip archives.</summary>
      <description>It enables the ability to support 'unar' over .zip archives.</description>
    </key>
  </schema>
  <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.engrampa.dialogs" path="/org/mate/engrampa/dialogs/">
    <child name="extract" schema="org.mate.engrampa.dialogs.extract"/>
    <child name="add" schema="org.mate.engrampa.dialogs.add"/>
    <child name="batch-add" schema="org.mate.engrampa.dialogs.batch-add"/>
  </schema>
  <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.engrampa.dialogs.extract" path="/org/mate/engrampa/dialogs/extract/">
    <key name="overwrite" type="b">
      <default>true</default>
      <summary>Overwrite existing files</summary>
    </key>
    <key name="skip-newer" type="b">
      <default>false</default>
      <summary>Do not overwrite newer files</summary>
    </key>
    <key name="recreate-folders" type="b">
      <default>true</default>
      <summary>Recreate the folders stored in the archive</summary>
    </key>
  </schema>
  <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.engrampa.dialogs.add" path="/org/mate/engrampa/dialogs/add/">
    <key name="current-folder" type="s">
      <default>''</default>
    </key>
    <key name="filename" type="s">
      <default>''</default>
    </key>
    <key name="include-files" type="s">
      <default>''</default>
    </key>
    <key name="exclude-files" type="s">
      <default>''</default>
    </key>
    <key name="exclude-folders" type="s">
      <default>''</default>
    </key>
    <key name="update" type="b">
      <default>false</default>
    </key>
    <key name="recursive" type="b">
      <default>true</default>
    </key>
    <key name="no-symlinks" type="b">
      <default>false</default>
    </key>
</schema>
  <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.engrampa.dialogs.batch-add" path="/org/mate/engrampa/dialogs/batch-add/">
    <key name="default-extension" type="s">
      <default>'.tar.gz'</default>
    </key>
    <key name="other-options" type="b">
      <default>false</default>
    </key>
    <key name="volume-size" type="i">
      <default>0</default>
      <summary>Default volume size</summary>
      <description>The default size for volumes.</description>
    </key>
  </schema>
  <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.engrampa.dialogs.last-output" path="/org/mate/engrampa/dialogs/last-output/">
    <key name="width" type="i">
      <default>-1</default>
    </key>
    <key name="height" type="i">
      <default>-1</default>
    </key>
  </schema>
</schemalist>