blob: 534f73580ef9609d150384ab78f07d1bd447a144 (
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
|
<schemalist gettext-domain="chrysalide">
<schema id="re.chrysalide.framework" path="/re/chrysalide/framework/">
<child schema="re.chrysalide.framework.paths" name="paths"/>
<child schema="re.chrysalide.framework.gui" name="gui"/>
<child schema="re.chrysalide.framework.tiledgrid" name="tiles"/>
<child schema="re.chrysalide.framework.secstorage" name="secstorage"/>
</schema>
<schema id="re.chrysalide.framework.paths" path="/re/chrysalide/framework/paths/">
<key name="tmp-work-dir" type="s">
<default>"/tmp/chrysalide"</default>
<summary>Directory for temporary contents</summary>
<description>
Location of files created as cache and meant to get deleted when unused
</description>
</key>
</schema>
<schema id="re.chrysalide.framework.gui" path="/re/chrysalide/framework/gui/">
<key name="window-width" type="i">
<default>600</default>
</key>
<key name="window-height" type="i">
<default>400</default>
</key>
<key name="window-maximized" type="b">
<default>false</default>
</key>
</schema>
<flags id="re.chrysalide.framework.tiledgrid.LayoutReachOptions">
<value nick="left-top-reach" value="1"/>
<value nick="left-bottom-reach" value="2"/>
<value nick="right-top-reach" value="4"/>
<value nick="right-bottom-reach" value="8"/>
</flags>
<schema id="re.chrysalide.framework.tiledgrid">
<key name="layout" flags="re.chrysalide.framework.tiledgrid.LayoutReachOptions">
<default>["left-top-reach","right-top-reach"]</default>
<summary>Main panel layout</summary>
<description>Layout details describing the border panel locations</description>
</key>
<key name="top-visibility" type="b">
<default>false</default>
<summary>Top panel visibility</summary>
<description>Visbility of the panel located at the top of a tiling grid</description>
</key>
<key name="top-request" type="u">
<default>300</default>
<summary>Top panel height</summary>
<description>Height request for the panel located at the top of a tiling grid</description>
</key>
<key name="left-visibility" type="b">
<default>false</default>
<summary>Left panel visibility</summary>
<description>Visbility of the panel located at the left of a tiling grid</description>
</key>
<key name="left-request" type="u">
<default>300</default>
<summary>Left panel height</summary>
<description>Width request for the panel located at the left of a tiling grid</description>
</key>
<key name="right-visibility" type="b">
<default>false</default>
<summary>Right panel visibility</summary>
<description>Visbility of the panel located at the right of a tiling grid</description>
</key>
<key name="right-request" type="u">
<default>300</default>
<summary>Right panel height</summary>
<description>Width request for the panel located at the right of a tiling grid</description>
</key>
<key name="bottom-visibility" type="b">
<default>false</default>
<summary>Bottom panel visibility</summary>
<description>Visbility of the panel located at the bottom of a tiling grid</description>
</key>
<key name="bottom-request" type="u">
<default>250</default>
<summary>Bottom panel height</summary>
<description>Height request for the panel located at the bottom of a tiling grid</description>
</key>
</schema>
<schema id="re.chrysalide.framework.secstorage" path="/re/chrysalide/framework/secstorage/">
<key name="salt" type="ay">
<default>[]</default>
</key>
<key name="master" type="ay">
<default>[]</default>
</key>
</schema>
</schemalist>
|