summaryrefslogtreecommitdiff
path: root/data/org.mate.calc.gschema.xml.in
diff options
context:
space:
mode:
authorBrent Hull <[email protected]>2012-11-18 20:06:28 -0500
committerBrent Hull <[email protected]>2012-11-18 20:06:28 -0500
commitdb9135a42865a737bd6bc7477a9aea4b31941ab1 (patch)
treeea3db8621842ac2a8ca154a2363db33933449acf /data/org.mate.calc.gschema.xml.in
parent481c6b7f08148ae07ff95de83b938b0b99ea23f4 (diff)
downloadmate-calc-db9135a42865a737bd6bc7477a9aea4b31941ab1.tar.bz2
mate-calc-db9135a42865a737bd6bc7477a9aea4b31941ab1.tar.xz
Use org.mate.calc as schema id
Diffstat (limited to 'data/org.mate.calc.gschema.xml.in')
-rw-r--r--data/org.mate.calc.gschema.xml.in75
1 files changed, 75 insertions, 0 deletions
diff --git a/data/org.mate.calc.gschema.xml.in b/data/org.mate.calc.gschema.xml.in
new file mode 100644
index 0000000..4f0f79b
--- /dev/null
+++ b/data/org.mate.calc.gschema.xml.in
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<schemalist>
+ <enum id="org.mate.calc.NumberFormat">
+ <value value="0" nick="fixed"/>
+ <value value="1" nick="scientific"/>
+ <value value="2" nick="engineering"/>
+ </enum>
+ <enum id="org.mate.calc.ButtonMode">
+ <value value="0" nick="basic"/>
+ <value value="1" nick="advanced"/>
+ <value value="2" nick="financial"/>
+ <value value="3" nick="programming"/>
+ </enum>
+ <enum id="org.mate.calc.AngleUnit">
+ <value value="0" nick="radians"/>
+ <value value="1" nick="degrees"/>
+ <value value="2" nick="gradians"/>
+ </enum>
+
+ <schema path="/org/mate/calc/" id="org.mate.calc" gettext-domain="mate-calc">
+ <key type="i" name="accuracy">
+ <default>9</default>
+ <range min="0" max="9"/>
+ <_summary>Accuracy value</_summary>
+ <_description>The number of digits displayed after the numeric point</_description>
+ </key>
+ <key type="i" name="word-size">
+ <default>64</default>
+ <range min="8" max="64"/>
+ <_summary>Word size</_summary>
+ <_description>The size of the words used in bitwise operations</_description>
+ </key>
+ <key type="i" name="base">
+ <default>10</default>
+ <range min="2" max="16"/>
+ <_summary>Numeric Base</_summary>
+ <_description>The numeric base</_description>
+ </key>
+ <key type="b" name="show-thousands">
+ <default>false</default>
+ <_summary>Show Thousands Separators</_summary>
+ <_description>Indicates whether thousands separators are shown in large numbers.</_description>
+ </key>
+ <key type="b" name="show-zeroes">
+ <default>false</default>
+ <_summary>Show Trailing Zeroes</_summary>
+ <_description>Indicates whether any trailing zeroes after the numeric point should be shown in the display value.</_description>
+ </key>
+ <key name="number-format" enum="org.mate.calc.NumberFormat">
+ <default>'fixed'</default>
+ <_summary>Number format</_summary>
+ <_description>The format to display numbers in</_description>
+ </key>
+ <key name="angle-units" enum="org.mate.calc.AngleUnit">
+ <default>'degrees'</default>
+ <_summary>Angle units</_summary>
+ <_description>The angle units to use</_description>
+ </key>
+ <key name="button-mode" enum="org.mate.calc.ButtonMode">
+ <default>'basic'</default>
+ <_summary>Button mode</_summary>
+ <_description>The button mode</_description>
+ </key>
+ <key type="s" name="source-currency">
+ <default>''</default>
+ <_summary>Source currency</_summary>
+ <_description>Currency of the current calculation</_description>
+ </key>
+ <key type="s" name="target-currency">
+ <default>''</default>
+ <_summary>Target currency</_summary>
+ <_description>Currency to convert the current calculation into</_description>
+ </key>
+ </schema>
+</schemalist>