blob: f869d2fe4ba7954998572a695fe645db9436544c (
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
|
<?xml version="1.0" encoding="utf-8"?>
<schemalist>
<enum id="name.janouch.fiv.thumbnail-size">
<value nick='Small' value='0'/>
<value nick='Normal' value='1'/>
<value nick='Large' value='2'/>
<value nick='Huge' value='3'/>
</enum>
<schema path="/name/janouch/fiv/" id="name.janouch.fiv">
<key name='native-view-window' type='b'>
<default>true</default>
<summary>Use a native window for the view</summary>
<description>
On X11, using native GdkWindows enables use of 30-bit Visuals
(that is, 10 bits per channel), at the cost of disabling
double buffering.
</description>
</key>
<key name='opengl' type='b'>
<default>false</default>
<summary>Use experimental OpenGL rendering</summary>
<description>
OpenGL within GTK+ is highly problematic--you don't want this.
</description>
</key>
<key name='dark-theme' type='b'>
<default>false</default>
<summary>Use a dark theme variant on start-up</summary>
</key>
<key name='show-browser-sidebar' type='b'>
<default>true</default>
<summary>Show the browser's sidebar</summary>
</key>
<key name='show-browser-toolbar' type='b'>
<default>true</default>
<summary>Show a toolbar in the browser view</summary>
</key>
<key name='show-view-toolbar' type='b'>
<default>true</default>
<summary>Show a toolbar in the image view</summary>
</key>
<key name='thumbnail-size' enum='name.janouch.fiv.thumbnail-size'>
<default>'Normal'</default>
<summary>Thumbnail size to assume on start-up</summary>
</key>
</schema>
</schemalist>
|