blob: 3114929cb6f0295e46e236c902b62b39f1bb90ae (
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
107
108
109
110
111
112
113
114
115
|
<?xml version="1.0" encoding="UTF-8"?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
<kcfgfile name="kviewerpartrc" />
<group name="GUI" >
<entry key="PageMarks" type="Bool">
<default>true</default>
</entry>
<entry key="WatchFile" type="Bool">
<default>true</default>
</entry>
<entry key="Zoom" type="Double">
<default>1.0</default>
</entry>
<entry key="PaperFormat" type="String">
<default></default>
</entry>
<entry key="Scrollbars" type="Bool">
<default>true</default>
</entry>
<entry key="UseDocumentSpecifiedSize" type="Bool">
<default>true</default>
</entry>
<entry key="ViewMode" type="Enum">
<default>Continuous</default>
<choices>
<choice name="SinglePage" />
<choice name="Continuous" />
<choice name="ContinuousFacing" />
<choice name="Overview" />
</choices>
</entry>
<entry key="FitToPage" type="Enum">
<default>DontFit</default>
<choices>
<choice name="FitToPage" />
<choice name="FitToPageWidth" />
<choice name="FitToPageHeight" />
<choice name="DontFit" />
</choices>
</entry>
<entry key="OverviewModeColumns" type="Int">
<default>4</default>
</entry>
<entry key="OverviewModeRows" type="Int">
<default>2</default>
</entry>
<entry key="ShowThumbnails" type="Bool">
<default>true</default>
</entry>
<entry key="MaxThumbnailWidth" type="Int">
<default>200</default>
</entry>
<entry key="UnderlineLinks" type="Enum">
<default>Enabled</default>
<choices>
<choice name="Enabled" />
<choice name="Disabled" />
<choice name="OnlyOnHover" />
</choices>
<whatsthis>
<qt>
Controls how hyperlinks are underlined:
<ul>
<li><b>UL_Enabled</b>: Always underline links</li>
<li><b>UL_Disabled</b>: Never underline links</li>
<li><b>UL_OnlyOnHover</b>: Underline when the mouse is moved over the link</li>
</ul>
</qt>
</whatsthis>
</entry>
<entry key="GuiLayout" type="IntList" />
<entry key="SideBarItem" type="Int">
<default>1</default>
</entry>
</group>
<group name="Accessibility" >
<entry key="PaperColor" type="Color" >
<default code="true" >Qt::white</default>
</entry>
<entry key="ChangeColors" type="Bool" >
<default>false</default>
</entry>
<entry key="RenderMode" type="Enum" >
<default>Inverted</default>
<choices>
<choice name="Inverted" />
<choice name="Paper" />
<choice name="pad_paper_color" />
<choice name="Recolor" />
<choice name="pad_fg_color" />
<choice name="pad_bg_color" />
<choice name="BlackWhite" />
</choices>
</entry>
<entry key="RecolorForeground" type="Color" >
<default code="true" >0x600000</default>
</entry>
<entry key="RecolorBackground" type="Color" >
<default code="true" >0xF0F0F0</default>
</entry>
<entry key="BWThreshold" type="UInt" >
<default>127</default>
<min>2</min>
<max>253</max>
</entry>
<entry key="BWContrast" type="UInt" >
<default>2</default>
<min>2</min>
<max>6</max>
</entry>
</group>
</kcfg>
|