diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-24 04:13:14 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-24 04:13:14 +0200 |
commit | 843ddeeb854bf86ee9c153dc3f32ae4823dc7a29 (patch) | |
tree | 02c1de7f22542200e4112c4cce7c8ba47b12cbf0 /data/org.gnome.SimpleScan.gschema.xml | |
parent | af30a0bf49491fd5e9542c6563685cd4ebfe1eed (diff) | |
parent | bfca57fb52ab7101f701560a2e6feb3a388ef5bf (diff) |
Merge tag 'upstream/3.21.90'
Upstream version 3.21.90
Diffstat (limited to 'data/org.gnome.SimpleScan.gschema.xml')
-rw-r--r-- | data/org.gnome.SimpleScan.gschema.xml | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/data/org.gnome.SimpleScan.gschema.xml b/data/org.gnome.SimpleScan.gschema.xml new file mode 100644 index 0000000..fb38954 --- /dev/null +++ b/data/org.gnome.SimpleScan.gschema.xml @@ -0,0 +1,70 @@ +<schemalist> + <enum id="org.gnome.SimpleScan.PageSide"> + <value value="1" nick="front"/> + <value value="2" nick="back"/> + <value value="3" nick="both"/> + </enum> + + <schema id="org.gnome.SimpleScan" path="/org/gnome/simple-scan/" gettext-domain="simple-scan"> + <key name="selected-device" type="s"> + <default>''</default> + <summary>Device to scan from</summary> + <description>SANE device to acquire images from.</description> + </key> + <key name="document-type" type="s"> + <default>'photo'</default> + <choices> + <choice value="text"/> + <choice value="photo"/> + </choices> + <summary>Type of document being scanned</summary> + <description>Type of document being scanned. This setting decides on the scan resolution, colors and post-processing.</description> + </key> + <key name="paper-width" type="i"> + <default>0</default> + <summary>Width of paper in tenths of a mm</summary> + <description>The width of the paper in tenths of a mm (or 0 for automatic paper detection).</description> + </key> + <key name="paper-height" type="i"> + <default>0</default> + <summary>Height of paper in tenths of a mm</summary> + <description>The height of the paper in tenths of a mm (or 0 for automatic paper detection).</description> + </key> + <key name="brightness" type="i"> + <default>0</default> + <summary>Brightness of scan</summary> + <description>The brightness adjustment from -100 to 100 (0 being none).</description> + </key> + <key name="contrast" type="i"> + <default>0</default> + <summary>Contrast of scan</summary> + <description>The contrast adjustment from -100 to 100 (0 being none).</description> + </key> + <key name="text-dpi" type="i"> + <default>150</default> + <summary>Resolution for text scans</summary> + <description>The resolution in dots-per-inch to use when scanning text.</description> + </key> + <key name="photo-dpi" type="i"> + <default>300</default> + <summary>Resolution for photo scans</summary> + <description>The resolution in dots-per-inch to use when scanning photos.</description> + </key> + <key name="page-side" enum="org.gnome.SimpleScan.PageSide"> + <default>'both'</default> + <summary>Page side to scan</summary> + <description>The page side to scan.</description> + </key> + <key name="save-directory" type="s"> + <default>''</default> + <summary>Directory to save files to</summary> + <description>The directory to save files to. Defaults to the documents directory if unset.</description> + </key> + <key name="jpeg-quality" type="i"> + <range min="0" max="100"/> + <default>75</default> + <summary>Quality value to use for JPEG compression</summary> + <description>Quality value to use for JPEG compression.</description> + </key> + </schema> +</schemalist> |