-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwindows.yaml
508 lines (506 loc) · 17.1 KB
/
windows.yaml
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
# Copyright 2020 Raising the Floor - International
#
# Licensed under the New BSD license. You may not use this file except in
# compliance with this License.
#
# You may obtain a copy of the License at
# https://github.com/GPII/universal/blob/master/LICENSE.txt
#
# The R&D leading to these results received funding from the:
# * Rehabilitation Services Administration, US Dept. of Education under
# grant H421A150006 (APCP)
# * National Institute on Disability, Independent Living, and
# Rehabilitation Research (NIDILRR)
# * Administration for Independent Living & Dept. of Education under grants
# H133E080022 (RERC-IT) and H133E130028/90RE5003-01-00 (UIITA-RERC)
# * European Union's Seventh Framework Programme (FP7/2007-2013) grant
# agreement nos. 289016 (Cloud4all) and 610510 (Prosperity4All)
# * William and Flora Hewlett Foundation
# * Ontario Ministry of Research and Innovation
# * Canadian Foundation for Innovation
# * Adobe Foundation
# * Consumer Electronics Association Foundation
solutions:
-
# Settings related to Microsoft Windows display features
id: com.microsoft.windows.display
settings:
-
# Effectively the display resolution, this setting specifies
# a percentage of the normal resolution.
#
# For example, if the normal resolution for a computer is
# 1920x1080, a value of 2.0 would mean a 200% zoom, which
# corresponds to a resolution of 960x540
name: zoom
type: double
default: 1.0
handler:
type: org.raisingthefloor.morphic.client
-
# High contrast enabled
name: contrast.enabled
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_CoreHighContrast_IsEnabled
value_type: boolean
-
# Color filters enabled
#
# Color filters can make the display grayscale, inverted, or tinted
name: colorfilter.enabled
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_ColorFiltering_IsEnabled
value_type: boolean
-
# Whether the color filters keyboard shortcut is enabled
name: colorfilter.shortcut.enabled
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_ColorFiltering_IsShortcutKeyEnabled
value_type: boolean
-
# The type of color filter to apply when enabled
# 0 - Grayscale
# 1 - Inverted
# 2 - Grayscale inverted
# 3 - Red-green (green weak, deuteranopia)
# 4 - Red-green (red weak, protanopia)
# 5 - Blue-yellow (tritanopia)
name: colorfilter.type
type: integer
default: 1
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_ColorFiltering_FilterType
value_type: integer
# Cursors were only partially implemented to test finalizer functionality
# -
# id: com.microsoft.windows.cursor
# settings:
# -
# name: arrow
# type: string
# default: %SystemRoot%\cursors\aero_arrow.cur
# handler:
# type: com.microsoft.windows.registry
# key_name: HKEY_CURRENT_USER\Control Panel\Cursors
# value_name: Arrow
# value_type: expandString
# finalizer:
# type: com.microsoft.windows.systemParametersInfo
# action: setcursors
# -
# name: wait
# type: string
# default: %SystemRoot%\cursors\aero_busy.ani
# handler:
# type: com.microsoft.windows.registry
# key_name: HKEY_CURRENT_USER\Control Panel\Cursors
# value_name: Wait
# value_type: expandString
# finalizer:
# type: com.microsoft.windows.systemParametersInfo
# action: setcursors
-
# Settings related to Microsoft Windows Magnfier
id: com.microsoft.windows.magnifier
settings:
-
# Turns the magnifier on or off
name: enabled
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Magnifier_IsEnabled
value_type: boolean
-
# The magnification level of the magnifier
# 1 = Docked
# 2 = Full Screen
# 3 = Lens
name: mode
type: integer
default: 2
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: MagnificationMode
value_type: dword
-
# The magnification level of the magnifier
name: magnification
type: integer
default: 200
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: Magnification
value_type: dword
-
# The magnification step size
name: increment
type: integer
default: 100
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: ZoomIncrement
value_type: dword
-
# Smooth edges of text and images
name: smoothing
type: boolean
default: true
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: UseBitmapSmoothing
value_type: dword
-
# The height of the lens
name: lens.height
type: integer
default: 10
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: LensHeight
value_type: dword
-
# The width of the lens
name: lens.width
type: integer
default: 10
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: LensWidth
value_type: dword
-
# Indicates that the magnifier should follow the mouse
name: follow.mouse
type: boolean
default: true
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: FollowMouse
value_type: dword
-
# Indicates that the magnifier should follow the keyboard focus
name: follow.focus
type: boolean
default: true
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: FollowFocus
value_type: dword
-
# Indicates that the magnifier should follow the text input location
name: follow.caret
type: boolean
default: true
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: FollowCaret
value_type: dword
-
# Indicates that the magnifier should follow the screen narrator
name: follow.narrator
type: boolean
default: true
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: FollowNarrator
value_type: dword
-
# Indicates that the magnifier should invert colors inside the
# magnifying glass UI
name: invert
type: boolean
default: false
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: Invert
value_type: dword
-
# Indicates that the magnifier collapse to an icon of a floating
# magnifying glass
name: fade
type: boolean
default: false
handler:
type: com.microsoft.windows.registry
key_name: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifier
value_name: FadeToMagIcon
value_type: dword
-
id: com.microsoft.windows.narrator
settings:
-
# Turn narrator on or off
name: enabled
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsEnabled
value_type: boolean
-
# Indicates the narrator sould follow keyboard focus
name: follow.keyboard
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsFollowKeyboardFocusEnabled
value_type: boolean
-
# Indicates the narrator should follow the mouse cursor
name: follow.pointer
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsFollowMouseEnabled
value_type: boolean
-
# Indicates the narrator should follow the insertion point
name: follow.insertion
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsFollowInsertionEnabled
value_type: boolean
-
# Indicates the narrator should echo typed characters
name: echo.characters
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsEchoCharacterEnabled
value_type: boolean
-
# Indicates the narrator should echo typed words
name: echo.words
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsEchoWordEnabled
value_type: boolean
-
# Narrator announces errors such as 'no next landmark' or 'no next item.'
name: voice-errors
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_AreNarratorErrorsVoiced
value_type: boolean
-
# Make key insertion work on finger lift on touch keyboards
name: fastkey
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsFastKeyEntryEnabled
value_type: boolean
-
# Narrator intonation pauses
name: intonation-pause
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsIntonationPauseEnabled
value_type: boolean
-
# Lock the Narrator key so you don't have to press it with each command
name: lock-key
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsNarratorKeyLocked
value_type: boolean
-
# Enable cursor highlighting with a blue focus box
name: highlight-cursor
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsHighlightCursorEnabled
value_type: boolean
-
# Enable sound playing when you do things like perform a Narrator command or when suggestions are available
name: audio-cues
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsPlayAudioCuesEnabled
value_type: boolean
-
# Narrator’s voice will put more emphasis on formatted text
name: read.intent
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsReadingWithIntentEnabled
value_type: boolean
-
# Enable narrator announcing how to interact with items
name: read.hints
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsReadHintsEnabled
value_type: boolean
-
# Indicates the narrator should read what's under the mouse cursor
name: read.pointer
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsReadMouseEnabled
value_type: boolean
-
# The speed at which text is announced
name: speech.speed
type: integer
default: 10
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_SpeechSpeed
value_type: integer
-
# The speed at which text is announced
name: speech.pitch
type: integer
default: 10
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_SpeechPitch
value_type: integer
-
# The speed at which text is announced
name: speech.volume
type: integer
default: 100
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_SpeechVolume
value_type: integer
-
# Changes the amount of contextual reading for controls and buttons
#
# 0 - No context reading
# 1 - Sounds only
# 2 - Immediate context
# 3 - Immediate context name and type
# 4 - Full context of new control
# 5 - Full context of both the old control and new control
name: context.amount
type: integer
default: 2
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_ContextualReadingAmount
value_type: idPrefixedEnum
-
# Choose whether you want to hear context before or after the current item
#
# 0 - Before
# 1 - After
name: context.order
type: integer
default: 1
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_ContextualReadingOrder
value_type: string
integer_map:
- SystemSettings_Accessibility_Narrator_ContextualReadingOrderBefore
- SystemSettings_Accessibility_Narrator_ContextualReadingOrderAfter
-
# Enable/Disable lowering other sounds while narrator is speaking
name: duck
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsDuckAudioEnabled
value_type: boolean
-
# Allow the shortcut key to start Narrator
name: shortcut.enabled
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsShortcutKeyEnabled
value_type: boolean
-
# Changes the level of detail Narrator provides about text
#
# 0 - Text Only
# 1 - Headers and errors
# 2 - Basic information
# 3 - Other annotations
# 4 - Extended formatting
# 5 - Layout and animation info
name: verbosity
type: integer
default: 1
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_UserVerbosityAmount
value_type: idPrefixedEnum
-
# Use caps lock + E to send additional feedback
name: deatailed-feedback
type: boolean
default: true
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsAlwaysLoggingEnabled
value_type: boolean
-
# Start Narrator after sign-in
name: autostart.after-signin
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsAutoStartEnabled
value_type: boolean
-
# Start Narrator before sign-in
name: autostart.before-signin
type: boolean
default: false
handler:
type: com.microsoft.windows.system
setting_id: SystemSettings_Accessibility_Narrator_IsAutoStartOnLogonDesktopEnabled
value_type: boolean