1 import appModuleHandler
2 import NVDAObjects.IAccessible
3 import speech
4
6
8 windowClassName=obj.windowClassName
9 windowControlID=obj.windowControlID
10 if ((windowClassName=="Edit" and windowControlID==403)
11 or (windowClassName=="Static" and windowControlID==150)
12 ):
13 clsList.insert(0, Display)
14
15 -class Display(NVDAObjects.IAccessible.IAccessible):
16
17 shouldAllowIAccessibleFocusEvent=True
18
19 calcCommandChars=['!','=','@','#']
20
21 calcCommandGestures=(
22 "kb:back","kb:escape","kb:enter","kb:numpadEnter",
23 "kb:f2","kb:f3","kb:f4","kb:f5","kb:f6","kb:f7","kb:f8","kb:f9",
24 "kb:l","kb:n","kb:o","kb:p","kb:r","kb:s","kb:t",
25 )
26
32
37
41
45