<?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 ofthe name column 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="migrate-directories" type="b">
      <default>true</default>
    </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>