blob: e0b1792abbb79eaac2a4f9542dd989ef859fdf3e (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<enum id="org.mate.calc.NumberFormat">
<value value="0" nick="automatic"/>
<value value="1" nick="fixed"/>
<value value="2" nick="scientific"/>
<value value="3" 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>'automatic'</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>
<key type="s" name="source-units">
<default>'degree'</default>
<summary>Source units</summary>
<description>Units of the current calculation</description>
</key>
<key type="s" name="target-units">
<default>'radian'</default>
<summary>Target units</summary>
<description>Units to convert the current calculation into</description>
</key>
</schema>
</schemalist>
|