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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
<?xml version="1.0"?>
<compiz>
<plugin name="mag" useBcop="true">
<_short>Magnifier</_short>
<_long>Magnifier box</_long>
<category>Accessibility</category>
<deps>
<relation type="after">
<plugin>composite</plugin>
<plugin>opengl</plugin>
<plugin>mousepoll</plugin>
<plugin>cube</plugin>
<plugin>decor</plugin>
<plugin>imgsvg</plugin>
<plugin>imgpng</plugin>
<plugin>imgjpeg</plugin>
</relation>
<requirement>
<plugin>opengl</plugin>
<plugin>mousepoll</plugin>
</requirement>
</deps>
<options>
<group>
<_short>Bindings</_short>
<option name="initiate" type="key">
<_short>Initiate</_short>
<_long>Zoom In</_long>
<default><Super>m</default>
</option>
<option name="zoom_in_button" type="button">
<_short>Zoom In</_short>
<_long>Zoom In</_long>
<default><Super><Shift>Button4</default>
</option>
<option name="zoom_out_button" type="button">
<_short>Zoom Out</_short>
<_long>Zoom Out</_long>
<default><Super><Shift>Button5</default>
</option>
</group>
<group>
<_short>General</_short>
<option name="mode" type="int">
<_short>Mode</_short>
<_long>Mode.</_long>
<default>0</default>
<min>0</min>
<max>2</max>
<desc>
<value>0</value>
<_name>Simple</_name>
</desc>
<desc>
<value>1</value>
<_name>Image overlay</_name>
</desc>
<desc>
<value>2</value>
<_name>Fisheye</_name>
</desc>
</option>
<option name="zoom_factor" type="float">
<_short>Zoom</_short>
<_long>Zoom factor for keyboard initiated magnifier.</_long>
<default>2.0</default>
<min>1.1</min>
<max>32.0</max>
<precision>0.1</precision>
</option>
<option name="speed" type="float">
<_short>Speed</_short>
<_long>Zoom Speed</_long>
<default>1.5</default>
<min>0.1</min>
<max>50</max>
<precision>0.1</precision>
</option>
<option name="timestep" type="float">
<_short>Timestep</_short>
<_long>Zoom Timestep</_long>
<default>1.2</default>
<min>0.1</min>
<max>50</max>
<precision>0.1</precision>
</option>
<subgroup>
<_short>Simple</_short>
<option name="keep_screen" type="bool">
<_short>Keep fully on screen</_short>
<_long>Keep fully on screen.</_long>
<default>true</default>
</option>
<option name="box_width" type="int">
<_short>Width</_short>
<_long>Box width.</_long>
<default>300</default>
<min>20</min>
<max>1000</max>
</option>
<option name="box_height" type="int">
<_short>Height</_short>
<_long>Box height.</_long>
<default>200</default>
<min>20</min>
<max>1000</max>
</option>
<option name="border" type="int">
<_short>Border width</_short>
<_long>Border widtht.</_long>
<default>2</default>
<min>0</min>
<max>20</max>
</option>
<option name="box_color" type="color">
<_short>Border color</_short>
<_long>Border color</_long>
<default>
<red>0x0</red>
<green>0x0</green>
<blue>0x0</blue>
<alpha>0xffff</alpha>
</default>
</option>
</subgroup>
<subgroup>
<_short>Image overlay</_short>
<option name="overlay" type="string">
<_short>Magnifier image</_short>
<_long>Magnifier image.</_long>
<hints>file;image;</hints>
<default>Gnome/overlay.png</default>
</option>
<option name="mask" type="string">
<_short>Clip mask</_short>
<_long>Clip mask.</_long>
<hints>file;image;</hints>
<default>Gnome/mask.png</default>
</option>
<option name="x_offset" type="int">
<_short>X offset of the cursor</_short>
<_long>X offset of the cursor.</_long>
<default>155</default>
<min>0</min>
<max>1000</max>
</option>
<option name="y_offset" type="int">
<_short>Y offset of the cursor</_short>
<_long>Y offset of the cursor.</_long>
<default>155</default>
<min>0</min>
<max>1000</max>
</option>
</subgroup>
<subgroup>
<_short>Fisheye</_short>
<option name="radius" type="int">
<_short>Radius</_short>
<_long>Radius of the magnification area.</_long>
<default>200</default>
<min>10</min>
<max>1000</max>
</option>
</subgroup>
</group>
</options>
</plugin>
</compiz>
|