__init__.py
65.9 KB
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
#A part of NonVisual Desktop Access (NVDA)
#Copyright (C) 2006-2015 NVDA Contributors
#This file is covered by the GNU General Public License.
#See the file COPYING for more details.
from comtypes import COMError, IServiceProvider, GUID
import ctypes
import os
import re
import itertools
from comInterfaces.tom import ITextDocument
import tones
import languageHandler
import textInfos.offsets
import colors
import time
import displayModel
import IAccessibleHandler
import oleacc
import JABHandler
import winUser
import globalVars
from logHandler import log
import speech
import braille
import api
import config
import controlTypes
from NVDAObjects.window import Window
from NVDAObjects import NVDAObject, NVDAObjectTextInfo, InvalidNVDAObject
import NVDAObjects.JAB
import eventHandler
from NVDAObjects.behaviors import ProgressBar, Dialog, EditableTextWithAutoSelectDetection, FocusableUnfocusableContainer, ToolTip, Notification
def getNVDAObjectFromEvent(hwnd,objectID,childID):
try:
accHandle=IAccessibleHandler.accessibleObjectFromEvent(hwnd,objectID,childID)
except WindowsError:
accHandle=None
if not accHandle:
return None
(pacc,accChildID)=accHandle
obj=IAccessible(IAccessibleObject=pacc,IAccessibleChildID=accChildID,event_windowHandle=hwnd,event_objectID=objectID,event_childID=childID)
return obj
def getNVDAObjectFromPoint(x,y):
accHandle=IAccessibleHandler.accessibleObjectFromPoint(x,y)
if not accHandle:
return None
(pacc,child)=accHandle
obj=IAccessible(IAccessibleObject=pacc,IAccessibleChildID=child)
return obj
FORMAT_OBJECT_ATTRIBS = frozenset({"text-align"})
def normalizeIA2TextFormatField(formatField):
try:
textAlign=formatField.pop("text-align")
except KeyError:
textAlign=None
if textAlign:
formatField["text-align"]=textAlign
try:
fontWeight=formatField.pop("font-weight")
except KeyError:
fontWeight=None
if fontWeight is not None and (fontWeight.lower()=="bold" or (fontWeight.isdigit() and int(fontWeight)>=700)):
formatField["bold"]=True
else:
formatField["bold"]=False
try:
fontStyle=formatField.pop("font-style")
except KeyError:
fontStyle=None
if fontStyle is not None and fontStyle.lower()=="italic":
formatField["italic"]=True
else:
formatField["italic"]=False
try:
invalid=formatField.pop("invalid")
except KeyError:
invalid=None
if invalid and invalid.lower()=="spelling":
formatField["invalid-spelling"]=True
color=formatField.get('color')
if color:
try:
formatField['color']=colors.RGB.fromString(color)
except ValueError:
pass
backgroundColor=formatField.get('background-color')
if backgroundColor:
try:
formatField['background-color']=colors.RGB.fromString(backgroundColor)
except ValueError:
pass
lineStyle=formatField.get("text-underline-style")
lineType=formatField.get("text-underline-type")
if lineStyle or lineType:
formatField["underline"]=lineStyle!="none" and lineType!="none"
lineStyle=formatField.get("text-line-through-style")
lineType=formatField.get("text-line-through-type")
if lineStyle or lineType:
formatField["strikethrough"]=lineStyle!="none" and lineType!="none"
language=formatField.get('language')
if language:
formatField['language']=languageHandler.normalizeLanguage(language)
class IA2TextTextInfo(textInfos.offsets.OffsetsTextInfo):
detectFormattingAfterCursorMaybeSlow=False
def _getOffsetFromPoint(self,x,y):
if self.obj.IAccessibleTextObject.nCharacters>0:
return self.obj.IAccessibleTextObject.OffsetAtPoint(x,y,IAccessibleHandler.IA2_COORDTYPE_SCREEN_RELATIVE)
else:
raise NotImplementedError
def _getPointFromOffset(self,offset):
try:
res=self.obj.IAccessibleTextObject.characterExtents(offset,IAccessibleHandler.IA2_COORDTYPE_SCREEN_RELATIVE)
except COMError:
raise NotImplementedError
point=textInfos.Point(res[0]+(res[2]/2),res[1]+(res[3]/2))
return point
def _get_unit_mouseChunk(self):
return "mouseChunk"
def expand(self,unit):
if unit==self.unit_mouseChunk:
isMouseChunkUnit=True
oldStart=self._startOffset
oldEnd=self._endOffset
unit=super(IA2TextTextInfo,self).unit_mouseChunk
else:
isMouseChunkUnit=False
super(IA2TextTextInfo,self).expand(unit)
if isMouseChunkUnit:
text=self._getTextRange(self._startOffset,self._endOffset)
try:
self._startOffset=text.rindex(u'\ufffc',0,oldStart-self._startOffset)
except ValueError:
pass
try:
self._endOffset=text.index(u'\ufffc',oldEnd-self._startOffset)
except ValueError:
pass
def _getCaretOffset(self):
try:
offset=self.obj.IAccessibleTextObject.caretOffset
except COMError:
log.debugWarning("IAccessibleText::caretOffset failed", exc_info=True)
raise RuntimeError("Retrieving caret offset failed")
if offset<0:
raise RuntimeError("no active caret in this object")
return offset
def _setCaretOffset(self,offset):
self.obj.IAccessibleTextObject.SetCaretOffset(offset)
def _getSelectionOffsets(self):
try:
nSelections=self.obj.IAccessibleTextObject.nSelections
except COMError:
nSelections=0
if nSelections:
(start,end)=self.obj.IAccessibleTextObject.Selection[0]
else:
start=self._getCaretOffset()
end=start
return [min(start,end),max(start,end)]
def _setSelectionOffsets(self,start,end):
for selIndex in xrange(self.obj.IAccessibleTextObject.NSelections):
self.obj.IAccessibleTextObject.RemoveSelection(selIndex)
self.obj.IAccessibleTextObject.AddSelection(start,end)
def _getStoryLength(self):
try:
return self.obj.IAccessibleTextObject.NCharacters
except COMError:
log.debugWarning("IAccessibleText::nCharacters failed",exc_info=True)
return 0
def _getLineCount(self):
return -1
def _getTextRange(self,start,end):
try:
return self.obj.IAccessibleTextObject.text(start,end)
except COMError:
return u""
def _getFormatFieldAndOffsets(self,offset,formatConfig,calculateOffsets=True):
try:
startOffset,endOffset,attribsString=self.obj.IAccessibleTextObject.attributes(offset)
except COMError:
log.debugWarning("could not get attributes",exc_info=True)
return textInfos.FormatField(),(self._startOffset,self._endOffset)
formatField=textInfos.FormatField()
if not attribsString and offset>0:
try:
attribsString=self.obj.IAccessibleTextObject.attributes(offset-1)[2]
except COMError:
pass
if attribsString:
formatField.update(IAccessibleHandler.splitIA2Attribs(attribsString))
objAttribs = self.obj.IA2Attributes
for attr in FORMAT_OBJECT_ATTRIBS:
try:
formatField[attr] = objAttribs[attr]
except KeyError:
pass
normalizeIA2TextFormatField(formatField)
return formatField,(startOffset,endOffset)
def _getCharacterOffsets(self,offset):
try:
if offset>=self.obj.IAccessibleTextObject.nCharacters:
return offset,offset+1
except COMError:
pass
try:
return self.obj.IAccessibleTextObject.TextAtOffset(offset,IAccessibleHandler.IA2_TEXT_BOUNDARY_CHAR)[0:2]
except COMError:
return super(IA2TextTextInfo,self)._getCharacterOffsets(offset)
def _getWordOffsets(self,offset):
try:
if offset>=self.obj.IAccessibleTextObject.nCharacters:
return offset,offset+1
except COMError:
pass
try:
start,end,text=self.obj.IAccessibleTextObject.TextAtOffset(offset,IAccessibleHandler.IA2_TEXT_BOUNDARY_WORD)
except COMError:
return super(IA2TextTextInfo,self)._getWordOffsets(offset)
if start>offset or offset>end:
# HACK: Work around buggy implementations which return a range that does not include offset.
return offset,offset+1
return start,end
def _getLineOffsets(self,offset):
try:
start,end,text=self.obj.IAccessibleTextObject.TextAtOffset(offset,IAccessibleHandler.IA2_TEXT_BOUNDARY_LINE)
return start,end
except COMError:
log.debugWarning("IAccessibleText::textAtOffset failed",exc_info=True)
return offset,offset+1
def _getSentenceOffsets(self,offset):
try:
if offset>=self.obj.IAccessibleTextObject.nCharacters:
return offset,offset+1
except COMError:
pass
try:
start,end,text=self.obj.IAccessibleTextObject.TextAtOffset(offset,IAccessibleHandler.IA2_TEXT_BOUNDARY_SENTENCE)
if start==end:
raise NotImplementedError
return start,end
except COMError:
return super(IA2TextTextInfo,self)._getSentenceOffsets(offset)
def _getParagraphOffsets(self,offset):
try:
if offset>self.obj.IAccessibleTextObject.nCharacters:
return offset,offset+1
except COMError:
pass
try:
start,end,text=self.obj.IAccessibleTextObject.TextAtOffset(offset,IAccessibleHandler.IA2_TEXT_BOUNDARY_PARAGRAPH)
if start>=end:
raise RuntimeError("did not expand to paragraph correctly")
return start,end
except (RuntimeError,COMError):
return super(IA2TextTextInfo,self)._getParagraphOffsets(offset)
def _lineNumFromOffset(self,offset):
return -1
def _iterTextWithEmbeddedObjects(self, withFields, formatConfig=None):
"""Iterate through the text, splitting at embedded object characters.
Where an embedded object character occurs, its offset is provided.
@param withFields: Whether to output control/format fields.
@type withFields: bool
@param formatConfig: Document formatting configuration.
@return: A generator of fields, text strings and numeric offsets of embedded object characters.
"""
if withFields:
items = self.getTextWithFields(formatConfig=formatConfig)
else:
items = [self.text]
offset = self._startOffset
for item in items:
if not isinstance(item, basestring):
# This is a field.
yield item
continue
itemLen = len(item)
# The text consists of smaller chunks of text interspersed with embedded object characters.
chunkStart = 0
while chunkStart < itemLen:
# Find the next embedded object character.
try:
chunkEnd = item.index(u"\uFFFC", chunkStart)
except ValueError:
# This is the last chunk of text.
yield item[chunkStart:]
break
if chunkStart != chunkEnd:
yield item[chunkStart:chunkEnd]
# We've hit an embedded object character, so yield its offset.
yield offset + chunkEnd
chunkStart = chunkEnd + 1
offset += itemLen
class IAccessible(Window):
"""
the NVDAObject for IAccessible
@ivar IAccessibleChildID: the IAccessible object's child ID
@type IAccessibleChildID: int
"""
IAccessibleTableUsesTableCellIndexAttrib=False #: Should the table-cell-index IAccessible2 object attribute be used rather than indexInParent?
IA2UniqueID=None #: The cached IAccessible2::uniqueID if its implemented
@classmethod
def getPossibleAPIClasses(cls,kwargs,relation=None):
from . import MSHTML
yield MSHTML.MSHTML
@classmethod
def kwargsFromSuper(cls,kwargs,relation=None):
acc=None
objID=None
windowHandle=kwargs['windowHandle']
if isinstance(relation,tuple):
acc=IAccessibleHandler.accessibleObjectFromPoint(relation[0],relation[1])
elif relation=="focus":
objID=winUser.OBJID_CLIENT
acc=IAccessibleHandler.accessibleObjectFromEvent(windowHandle,objID,0)
if not acc:
return False
testAccFocus=acc
usedAccFocus=False
# Keep doing accFocus until we can't anymore or until accFocus keeps returning the same object.
while True:
testAccFocus=IAccessibleHandler.accFocus(testAccFocus[0])
# Only set the acc variable if we get something useful using accFocus.
if testAccFocus and testAccFocus!=acc:
acc=testAccFocus
usedAccFocus=True
else:
# We can't go any further.
break
if usedAccFocus:
# We don't know the event parameters for this object.
objID=None
# This object may also be in a different window, so we need to recalculate the window handle.
kwargs['windowHandle']=None
elif relation in ("parent","foreground"):
objID=winUser.OBJID_CLIENT
else:
objID=winUser.OBJID_WINDOW
if not acc and objID is not None:
acc=IAccessibleHandler.accessibleObjectFromEvent(windowHandle,objID,0)
if not acc:
return False
kwargs['IAccessibleObject']=acc[0]
kwargs['IAccessibleChildID']=acc[1]
if objID:
# We know the event parameters, so pass them to the NVDAObject.
kwargs['event_windowHandle']=windowHandle
kwargs['event_objectID']=objID
kwargs['event_childID']=0
return True
def findOverlayClasses(self,clsList):
if self.event_objectID==winUser.OBJID_CLIENT and JABHandler.isJavaWindow(self.windowHandle):
clsList.append(JavaVMRoot)
windowClassName=self.windowClassName
role=self.IAccessibleRole
if self.role in (controlTypes.ROLE_APPLICATION, controlTypes.ROLE_DIALOG) and not self.isFocusable:
# Make unfocusable applications focusable.
# This is particularly useful for ARIA applications.
# We use the NVDAObject role instead of IAccessible role here
# because of higher API classes; e.g. MSHTML.
clsList.insert(0, FocusableUnfocusableContainer)
if hasattr(self, "IAccessibleTextObject"):
if role==oleacc.ROLE_SYSTEM_TEXT or self.IA2States&IAccessibleHandler.IA2_STATE_EDITABLE:
clsList.append(EditableTextWithAutoSelectDetection)
# Use window class name and role to search for a class match in our static map.
keys=[(windowClassName,role),(None,role),(windowClassName,None)]
normalizedWindowClassName=Window.normalizeWindowClassName(windowClassName)
if normalizedWindowClassName!=windowClassName:
keys.insert(1,(normalizedWindowClassName,role))
keys.append((normalizedWindowClassName,None))
for key in keys:
newCls=None
classString=_staticMap.get(key,None)
if classString and classString.find('.')>0:
modString,classString=os.path.splitext(classString)
classString=classString[1:]
mod=__import__(modString,globals(),locals(),[])
newCls=getattr(mod,classString)
elif classString:
newCls=globals()[classString]
if newCls:
clsList.append(newCls)
# Some special cases.
if windowClassName=="Frame Notification Bar" and role==oleacc.ROLE_SYSTEM_CLIENT:
clsList.append(IEFrameNotificationBar)
elif self.event_objectID==winUser.OBJID_CLIENT and self.event_childID==0 and windowClassName in ("_WwN","_WwO") and self.windowControlID==18:
from winword import SpellCheckErrorField
clsList.append(SpellCheckErrorField)
elif windowClassName=="DirectUIHWND" and role==oleacc.ROLE_SYSTEM_TOOLBAR:
parentWindow=winUser.getAncestor(self.windowHandle,winUser.GA_PARENT)
if parentWindow and winUser.getClassName(parentWindow)=="Frame Notification Bar":
clsList.append(IENotificationBar)
if windowClassName.lower().startswith('mscandui'):
import mscandui
mscandui.findExtraOverlayClasses(self,clsList)
elif windowClassName=="GeckoPluginWindow" and self.event_objectID==0 and self.IAccessibleChildID==0:
from mozilla import GeckoPluginWindowRoot
clsList.append(GeckoPluginWindowRoot)
maybeFlash = False
if ((windowClassName in ("MozillaWindowClass", "GeckoPluginWindow") and not isinstance(self.IAccessibleObject, IAccessibleHandler.IAccessible2))
or windowClassName in ("MacromediaFlashPlayerActiveX", "ApolloRuntimeContentWindow", "ShockwaveFlash", "ShockwaveFlashLibrary", "ShockwaveFlashFullScreen", "GeckoFPSandboxChildWindow")):
maybeFlash = True
elif windowClassName == "Internet Explorer_Server" and self.event_objectID > 0:
# #2454: In Windows 8 IE, Flash is exposed in the same HWND as web content.
from .MSHTML import MSHTML
# This is only possibly Flash if it isn't MSHTML.
if not isinstance(self, MSHTML):
maybeFlash = True
if maybeFlash:
# This is possibly a Flash object.
from . import adobeFlash
adobeFlash.findExtraOverlayClasses(self, clsList)
elif windowClassName.startswith('Mozilla'):
from . import mozilla
mozilla.findExtraOverlayClasses(self, clsList)
elif self.event_objectID in (None,winUser.OBJID_CLIENT) and windowClassName.startswith('bosa_sdm'):
if role==oleacc.ROLE_SYSTEM_GRAPHIC and controlTypes.STATE_FOCUSED in self.states:
from .msOffice import SDMSymbols
clsList.append(SDMSymbols)
else:
from .msOffice import SDM
clsList.append(SDM)
elif windowClassName == "DirectUIHWND" and role == oleacc.ROLE_SYSTEM_TEXT:
from NVDAObjects.window import DisplayModelEditableText
clsList.append(DisplayModelEditableText)
elif windowClassName in ("ListBox","ComboLBox") and role == oleacc.ROLE_SYSTEM_LISTITEM:
windowStyle = self.windowStyle
if (windowStyle & winUser.LBS_OWNERDRAWFIXED or windowStyle & winUser.LBS_OWNERDRAWVARIABLE) and not windowStyle & winUser.LBS_HASSTRINGS:
# This is an owner drawn ListBox and text has not been set for the items.
# See http://msdn.microsoft.com/en-us/library/ms971352.aspx#msaa_sa_listbxcntrls
clsList.append(InaccessibleListBoxItem)
elif windowClassName == "ComboBox" and role == oleacc.ROLE_SYSTEM_COMBOBOX:
windowStyle = self.windowStyle
if (windowStyle & winUser.CBS_OWNERDRAWFIXED or windowStyle & winUser.CBS_OWNERDRAWVARIABLE) and not windowStyle & winUser.CBS_HASSTRINGS:
# This is an owner drawn ComboBox and text has not been set for the items.
# See http://msdn.microsoft.com/en-us/library/ms971352.aspx#msaa_sa_listbxcntrls
clsList.append(InaccessibleComboBox)
elif windowClassName == "MsoCommandBar":
from .msOffice import BrokenMsoCommandBar
if BrokenMsoCommandBar.appliesTo(self):
clsList.append(BrokenMsoCommandBar)
if role==oleacc.ROLE_SYSTEM_TOOLBAR:
from .msOffice import MsoCommandBarToolBar
clsList.append(MsoCommandBarToolBar)
if windowClassName.startswith("Internet Explorer_"):
from . import MSHTML
MSHTML.findExtraIAccessibleOverlayClasses(self, clsList)
elif windowClassName == "AVL_AVView":
from . import adobeAcrobat
adobeAcrobat.findExtraOverlayClasses(self, clsList)
elif windowClassName == "WebViewWindowClass":
from . import webKit
webKit.findExtraOverlayClasses(self, clsList)
elif windowClassName.startswith("Chrome_"):
from . import chromium
chromium.findExtraOverlayClasses(self, clsList)
#Support for Windowless richEdit
if not hasattr(IAccessible,"IID_ITextServices"):
try:
IAccessible.IID_ITextServices=ctypes.cast(ctypes.windll.msftedit.IID_ITextServices,ctypes.POINTER(GUID)).contents
except WindowsError:
log.debugWarning("msftedit not available, couldn't retrieve IID_ITextServices")
IAccessible.IID_ITextServices=None
if IAccessible.IID_ITextServices:
try:
pDoc=self.IAccessibleObject.QueryInterface(IServiceProvider).QueryService(IAccessible.IID_ITextServices,ITextDocument)
except COMError:
pDoc=None
if pDoc:
self._ITextDocumentObject=pDoc
self.useITextDocumentSupport=True
self.editAPIVersion=2
from NVDAObjects.window.edit import Edit
clsList.append(Edit)
#Window root IAccessibles
if self.event_childID==0 and self.IAccessibleRole==oleacc.ROLE_SYSTEM_WINDOW:
clsList.append(WindowRoot if self.event_objectID==winUser.OBJID_WINDOW else GenericWindow)
if self.event_objectID==winUser.OBJID_TITLEBAR and self.event_childID==0:
clsList.append(Titlebar)
clsList.append(IAccessible)
if self.event_objectID==winUser.OBJID_CLIENT and self.event_childID==0 and not isinstance(self.IAccessibleObject,IAccessibleHandler.IAccessible2):
# This is the main (client) area of the window, so we can use other classes at the window level.
# #3872: However, don't do this for IAccessible2 because
# IA2 supersedes window level APIs and might conflict with them.
super(IAccessible,self).findOverlayClasses(clsList)
#Generic client IAccessibles with no children should be classed as content and should use displayModel
if clsList[0]==IAccessible and len(clsList)==3 and self.IAccessibleRole==oleacc.ROLE_SYSTEM_CLIENT and self.childCount==0:
clsList.insert(0,ContentGenericClient)
def __init__(self,windowHandle=None,IAccessibleObject=None,IAccessibleChildID=None,event_windowHandle=None,event_objectID=None,event_childID=None):
"""
@param pacc: a pointer to an IAccessible object
@type pacc: ctypes.POINTER(IAccessible)
@param child: A child ID that will be used on all methods of the IAccessible pointer
@type child: int
@param hwnd: the window handle, if known
@type hwnd: int
@param objectID: the objectID for the IAccessible Object, if known
@type objectID: int
"""
self.IAccessibleObject=IAccessibleObject
self.IAccessibleChildID=IAccessibleChildID
# Try every trick in the book to get the window handle if we don't have it.
if not windowHandle and isinstance(IAccessibleObject,IAccessibleHandler.IAccessible2):
windowHandle=self.IA2WindowHandle
#Mozilla Gecko: we can never use a MozillaWindowClass window for Gecko 1.9
tempWindow=windowHandle
while tempWindow and winUser.getClassName(tempWindow)=="MozillaWindowClass":
tempWindow=winUser.getAncestor(tempWindow,winUser.GA_PARENT)
if tempWindow and winUser.getClassName(tempWindow).startswith('Mozilla'):
windowHandle=tempWindow
try:
Identity=IAccessibleHandler.getIAccIdentity(IAccessibleObject,IAccessibleChildID)
except COMError:
Identity=None
if event_windowHandle is None and Identity and 'windowHandle' in Identity:
event_windowHandle=Identity['windowHandle']
if event_objectID is None and Identity and 'objectID' in Identity:
event_objectID=Identity['objectID']
if event_childID is None and Identity and 'childID' in Identity:
event_childID=Identity['childID']
if not windowHandle and event_windowHandle:
windowHandle=event_windowHandle
if not windowHandle:
windowHandle=IAccessibleHandler.windowFromAccessibleObject(IAccessibleObject)
if not windowHandle:
log.debugWarning("Resorting to WindowFromPoint on accLocation")
try:
left,top,width,height = IAccessibleObject.accLocation(0)
windowHandle=winUser.user32.WindowFromPoint(winUser.POINT(left,top))
except COMError, e:
log.debugWarning("accLocation failed: %s" % e)
if not windowHandle:
raise InvalidNVDAObject("Can't get a window handle from IAccessible")
if isinstance(IAccessibleObject,IAccessibleHandler.IAccessible2):
try:
self.IA2UniqueID=IAccessibleObject.uniqueID
except COMError:
log.debugWarning("could not get IAccessible2::uniqueID to use as IA2UniqueID",exc_info=True)
# Set the event params based on our calculated/construction info if we must.
if event_windowHandle is None:
event_windowHandle=windowHandle
if event_objectID is None and isinstance(IAccessibleObject,IAccessibleHandler.IAccessible2):
event_objectID=winUser.OBJID_CLIENT
if event_childID is None:
if self.IA2UniqueID is not None:
event_childID=self.IA2UniqueID
else:
event_childID=IAccessibleChildID
self.event_windowHandle=event_windowHandle
self.event_objectID=event_objectID
self.event_childID=event_childID
super(IAccessible,self).__init__(windowHandle=windowHandle)
try:
self.IAccessibleActionObject=IAccessibleObject.QueryInterface(IAccessibleHandler.IAccessibleAction)
except COMError:
pass
try:
self.IAccessibleTableObject=self.IAccessibleObject.QueryInterface(IAccessibleHandler.IAccessibleTable)
except COMError:
pass
try:
self.IAccessibleTextObject=IAccessibleObject.QueryInterface(IAccessibleHandler.IAccessibleText)
except COMError:
pass
if None not in (event_windowHandle,event_objectID,event_childID):
IAccessibleHandler.liveNVDAObjectTable[(event_windowHandle,event_objectID,event_childID)]=self
def isDuplicateIAccessibleEvent(self,obj):
"""Compaires the object of an event to self to see if the event should be treeted as duplicate."""
#MSAA child elements do not have unique winEvent params as a childID could be reused if an element was deleted etc
if self.IAccessibleChildID>0:
return False
return obj.event_windowHandle==self.event_windowHandle and obj.event_objectID==self.event_objectID and obj.event_childID==self.event_childID
def _get_shouldAllowIAccessibleFocusEvent(self):
"""Determine whether a focus event should be allowed for this object.
Normally, this checks for the focused state to help eliminate redundant or invalid focus events.
However, some implementations do not correctly set the focused state, so this must be overridden.
@return: C{True} if the focus event should be allowed.
@rtype: bool
"""
#this object or one of its ancestors must have state_focused.
testObj = self
while testObj:
if controlTypes.STATE_FOCUSED in testObj.states:
break
parent = testObj.parent
# Cache the parent.
testObj.parent = parent
testObj = parent
else:
return False
return True
def _get_TextInfo(self):
if hasattr(self,'IAccessibleTextObject'):
return IA2TextTextInfo
return super(IAccessible,self).TextInfo
def _isEqual(self,other):
if self.IAccessibleChildID!=other.IAccessibleChildID:
return False
if self.IAccessibleObject==other.IAccessibleObject:
return True
if isinstance(self.IAccessibleObject,IAccessibleHandler.IAccessible2) and isinstance(other.IAccessibleObject,IAccessibleHandler.IAccessible2):
# These are both IAccessible2 objects, so we can test unique ID.
# Unique ID is only guaranteed to be unique within a given window, so we must check window handle as well.
selfIA2Window=self.IA2WindowHandle
selfIA2ID=self.IA2UniqueID
otherIA2Window=other.IA2WindowHandle
otherIA2ID=other.IA2UniqueID
if selfIA2Window!=otherIA2Window:
# The window handles are different, so these are definitely different windows.
return False
# At this point, we know that the window handles are equal.
if selfIA2Window and (selfIA2ID or otherIA2ID):
# The window handles are valid and one of the objects has a valid unique ID.
# Therefore, we can safely determine equality or inequality based on unique ID.
return selfIA2ID==otherIA2ID
if self.event_windowHandle is not None and other.event_windowHandle is not None and self.event_windowHandle!=other.event_windowHandle:
return False
if self.event_objectID is not None and other.event_objectID is not None and self.event_objectID!=other.event_objectID:
return False
if self.event_childID is not None and other.event_childID is not None and self.event_childID!=other.event_childID:
return False
if not super(IAccessible,self)._isEqual(other):
return False
selfIden=self.IAccessibleIdentity
otherIden=other.IAccessibleIdentity
if selfIden!=otherIden:
return False
if self.location!=other.location:
return False
if self.IAccessibleRole!=other.IAccessibleRole:
return False
if self.name!=other.name:
return False
return True
def _get_name(self):
#The edit field in a combo box should not have a label
if self.role==controlTypes.ROLE_EDITABLETEXT:
# Make sure to cache the parents.
parent=self.parent=self.parent
if parent and parent.role==controlTypes.ROLE_WINDOW:
# The parent of the edit field is a window, so try the next ancestor.
parent=self.parent.parent=self.parent.parent
# Only scrap the label on the edit field if the parent combo box has a label.
if parent and parent.role==controlTypes.ROLE_COMBOBOX and parent.name:
return ""
try:
res=self.IAccessibleObject.accName(self.IAccessibleChildID)
except COMError:
res=None
return res if isinstance(res,basestring) and not res.isspace() else None
def _get_value(self):
try:
res=self.IAccessibleObject.accValue(self.IAccessibleChildID)
except COMError:
res=None
return res if isinstance(res,basestring) and not res.isspace() else None
def _get_actionCount(self):
if hasattr(self,'IAccessibleActionObject'):
try:
return self.IAccessibleActionObject.nActions()
except COMError:
return 0
return 1
def getActionName(self,index=None):
if not index:
index=self.defaultActionIndex
if hasattr(self,'IAccessibleActionObject'):
try:
return self.IAccessibleActionObject.name(index)
except COMError:
raise NotImplementedError
elif index==0:
try:
action=self.IAccessibleObject.accDefaultAction(self.IAccessibleChildID)
except COMError:
action=None
if action:
return action
raise NotImplementedError
def doAction(self,index=None):
if not index:
index=self.defaultActionIndex
if hasattr(self,'IAccessibleActionObject'):
try:
self.IAccessibleActionObject.doAction(index)
return
except COMError:
raise NotImplementedError
elif index==0:
try:
if self.IAccessibleObject.accDoDefaultAction(self.IAccessibleChildID)!=0:
raise NotImplementedError
return
except COMError:
raise NotImplementedError
raise NotImplementedError
def _get_IAccessibleIdentity(self):
if not hasattr(self,'_IAccessibleIdentity'):
try:
self._IAccessibleIdentity=IAccessibleHandler.getIAccIdentity(self.IAccessibleObject,self.IAccessibleChildID)
except COMError:
self._IAccessibleIdentity=None
return self._IAccessibleIdentity
def _get_IAccessibleRole(self):
if isinstance(self.IAccessibleObject,IAccessibleHandler.IAccessible2):
try:
role=self.IAccessibleObject.role()
except COMError:
role=0
else:
role=0
if role==0:
try:
role=self.IAccessibleObject.accRole(self.IAccessibleChildID)
except COMError:
role=0
return role
def _get_role(self):
IARole=self.IAccessibleRole
if IARole==oleacc.ROLE_SYSTEM_CLIENT:
superRole=super(IAccessible,self).role
if superRole!=controlTypes.ROLE_WINDOW:
return superRole
if isinstance(IARole,basestring):
IARole=IARole.split(',')[0].lower()
log.debug("IARole: %s"%IARole)
return IAccessibleHandler.IAccessibleRolesToNVDARoles.get(IARole,controlTypes.ROLE_UNKNOWN)
# #2569: Don't cache role,
# as it relies on other properties which might change when overlay classes are applied.
_cache_role = False
def _get_IAccessibleStates(self):
try:
res=self.IAccessibleObject.accState(self.IAccessibleChildID)
except COMError:
return 0
return res if isinstance(res,int) else 0
def _get_states(self):
states=set()
if self.event_objectID in (winUser.OBJID_CLIENT, winUser.OBJID_WINDOW) and self.event_childID == 0:
states.update(super(IAccessible, self).states)
try:
IAccessibleStates=self.IAccessibleStates
except COMError:
log.debugWarning("could not get IAccessible states",exc_info=True)
else:
states.update(IAccessibleHandler.IAccessibleStatesToNVDAStates[x] for x in (y for y in (1<<z for z in xrange(32)) if y&IAccessibleStates) if IAccessibleHandler.IAccessibleStatesToNVDAStates.has_key(x))
if not hasattr(self.IAccessibleObject,'states'):
# Not an IA2 object.
return states
IAccessible2States=self.IA2States
states=states|set(IAccessibleHandler.IAccessible2StatesToNVDAStates[x] for x in (y for y in (1<<z for z in xrange(32)) if y&IAccessible2States) if IAccessibleHandler.IAccessible2StatesToNVDAStates.has_key(x))
try:
IA2Attribs=self.IA2Attributes
except COMError:
log.debugWarning("could not get IAccessible2 attributes",exc_info=True)
IA2Attribs=None
if IA2Attribs:
grabbed = IA2Attribs.get("grabbed")
if grabbed == "false":
states.add(controlTypes.STATE_DRAGGABLE)
elif grabbed == "true":
states.add(controlTypes.STATE_DRAGGING)
if IA2Attribs.get("dropeffect", "none") != "none":
states.add(controlTypes.STATE_DROPTARGET)
sorted = IA2Attribs.get("sort")
if sorted=="ascending":
states.add(controlTypes.STATE_SORTED_ASCENDING)
elif sorted=="descending":
states.add(controlTypes.STATE_SORTED_DESCENDING)
elif sorted=="other":
states.add(controlTypes.STATE_SORTED)
if controlTypes.STATE_HASPOPUP in states and controlTypes.STATE_AUTOCOMPLETE in states:
states.remove(controlTypes.STATE_HASPOPUP)
if controlTypes.STATE_HALFCHECKED in states:
states.discard(controlTypes.STATE_CHECKED)
return states
re_positionInfoEncodedAccDescription=re.compile(r"L(?P<level>\d+)(?:, (?P<indexInGroup>\d+) of (?P<similarItemsInGroup>\d+))?")
def _get_decodedAccDescription(self):
try:
description=self.IAccessibleObject.accDescription(self.IAccessibleChildID)
except COMError:
return None
if not description:
return None
if description.lower().startswith('description:'):
return description[12:].strip()
m=self.re_positionInfoEncodedAccDescription.match(description)
if m:
return m
return description
hasEncodedAccDescription=False #:If true, accDescription contains info such as level, and number of items etc.
def _get_description(self):
if self.hasEncodedAccDescription:
d=self.decodedAccDescription
if isinstance(d,basestring):
return d
else:
return ""
try:
res=self.IAccessibleObject.accDescription(self.IAccessibleChildID)
except COMError:
res=None
return res if isinstance(res,basestring) and not res.isspace() else None
def _get_keyboardShortcut(self):
try:
res=self.IAccessibleObject.accKeyboardShortcut(self.IAccessibleChildID)
except COMError:
res=None
return res if isinstance(res,basestring) and not res.isspace() else None
def _get_childCount(self):
if self.IAccessibleChildID!=0:
return 0
try:
return max(self.IAccessibleObject.accChildCount,0)
except COMError:
return 0
def _get_location(self):
try:
return self.IAccessibleObject.accLocation(self.IAccessibleChildID)
except COMError:
return None
def isPointInObject(self,x,y):
if self.windowHandle and not super(IAccessible,self).isPointInObject(x,y):
return False
res=IAccessibleHandler.accHitTest(self.IAccessibleObject,self.IAccessibleChildID,x,y)
if not res or res[0]!=self.IAccessibleObject or res[1]!=self.IAccessibleChildID:
return False
return True
def _get_labeledBy(self):
try:
(pacc,accChild)=IAccessibleHandler.accNavigate(self.IAccessibleObject,self.IAccessibleChildID,IAccessibleHandler.NAVRELATION_LABELLED_BY)
obj=IAccessible(IAccessibleObject=pacc,IAccessibleChildID=accChild)
return obj
except COMError:
return None
def _get_parent(self):
if self.IAccessibleChildID!=0:
return IAccessible(windowHandle=self.windowHandle,IAccessibleObject=self.IAccessibleObject,IAccessibleChildID=0,event_windowHandle=self.event_windowHandle,event_objectID=self.event_objectID,event_childID=0) or super(IAccessible,self).parent
res=IAccessibleHandler.accParent(self.IAccessibleObject,self.IAccessibleChildID)
if res:
parentObj=IAccessible(IAccessibleObject=res[0],IAccessibleChildID=res[1])
if parentObj:
#Hack around bad MSAA implementations that deliberately skip the window root IAccessible in the ancestry (Skype, iTunes)
if parentObj.windowHandle!=self.windowHandle and self.IAccessibleRole!=oleacc.ROLE_SYSTEM_WINDOW and winUser.getAncestor(self.windowHandle,winUser.GA_PARENT)==parentObj.windowHandle:
windowObj=Window(windowHandle=self.windowHandle)
if windowObj and isinstance(windowObj,IAccessible) and windowObj.IAccessibleRole==oleacc.ROLE_SYSTEM_WINDOW and windowObj.parent==parentObj:
return windowObj
return self.correctAPIForRelation(parentObj,relation="parent") or super(IAccessible,self).parent
return super(IAccessible,self).parent
def _get_next(self):
res=IAccessibleHandler.accNavigate(self.IAccessibleObject,self.IAccessibleChildID,oleacc.NAVDIR_NEXT)
if not res:
return None
if res[0]==self.IAccessibleObject:
#A sanity check for childIDs.
if self.IAccessibleChildID>0 and res[1]>self.IAccessibleChildID:
return IAccessible(windowHandle=self.windowHandle,IAccessibleObject=self.IAccessibleObject,IAccessibleChildID=res[1],event_windowHandle=self.event_windowHandle,event_objectID=self.event_objectID,event_childID=res[1])
else:
return self.correctAPIForRelation(IAccessible(IAccessibleObject=res[0],IAccessibleChildID=res[1]))
def _get_previous(self):
res=IAccessibleHandler.accNavigate(self.IAccessibleObject,self.IAccessibleChildID,oleacc.NAVDIR_PREVIOUS)
if not res:
return None
if res[0]==self.IAccessibleObject:
#A sanity check for childIDs.
if self.IAccessibleChildID>1 and res[1]<self.IAccessibleChildID:
return IAccessible(windowHandle=self.windowHandle,IAccessibleObject=self.IAccessibleObject,IAccessibleChildID=res[1],event_windowHandle=self.event_windowHandle,event_objectID=self.event_objectID,event_childID=res[1])
else:
return self.correctAPIForRelation(IAccessible(IAccessibleObject=res[0],IAccessibleChildID=res[1]))
def _get_firstChild(self):
child=IAccessibleHandler.accNavigate(self.IAccessibleObject,self.IAccessibleChildID,oleacc.NAVDIR_FIRSTCHILD)
if not child and self.IAccessibleChildID==0:
children=IAccessibleHandler.accessibleChildren(self.IAccessibleObject,0,1)
if len(children)>0:
child=children[0]
if child and child[0]==self.IAccessibleObject:
#A sanity check for childIDs.
if self.IAccessibleChildID==0 and child[1]>0:
return IAccessible(windowHandle=self.windowHandle,IAccessibleObject=self.IAccessibleObject,IAccessibleChildID=child[1],event_windowHandle=self.event_windowHandle,event_objectID=self.event_objectID,event_childID=child[1])
elif child:
obj=IAccessible(IAccessibleObject=child[0],IAccessibleChildID=child[1])
if (obj and winUser.isDescendantWindow(self.windowHandle,obj.windowHandle)) or self.windowHandle==winUser.getDesktopWindow():
return self.correctAPIForRelation(obj)
def _get_lastChild(self):
child=IAccessibleHandler.accNavigate(self.IAccessibleObject,self.IAccessibleChildID,oleacc.NAVDIR_LASTCHILD)
if not child and self.IAccessibleChildID==0:
try:
childCount=self.IAccessibleObject.accChildCount
except COMError:
childCount=0
if childCount>0:
children=IAccessibleHandler.accessibleChildren(self.IAccessibleObject,childCount-1,1)
if len(children)>0:
child=children[-1]
if child and child[0]==self.IAccessibleObject:
#A sanity check for childIDs.
if self.IAccessibleChildID==0 and child[1]>0:
return IAccessible(windowHandle=self.windowHandle,IAccessibleObject=self.IAccessibleObject,IAccessibleChildID=child[1],event_windowHandle=self.event_windowHandle,event_objectID=self.event_objectID,event_childID=child[1])
elif child:
obj=IAccessible(IAccessibleObject=child[0],IAccessibleChildID=child[1])
if (obj and winUser.isDescendantWindow(self.windowHandle,obj.windowHandle)) or self.windowHandle==winUser.getDesktopWindow():
return self.correctAPIForRelation(obj)
def _get_children(self):
if self.IAccessibleChildID!=0:
return []
try:
childCount= self.IAccessibleObject.accChildCount
except COMError:
childCount=0
if childCount<=0:
return []
children=[]
for IAccessibleObject,IAccessibleChildID in IAccessibleHandler.accessibleChildren(self.IAccessibleObject,0,childCount):
if IAccessibleObject==self.IAccessibleObject:
children.append(IAccessible(windowHandle=self.windowHandle,IAccessibleObject=self.IAccessibleObject,IAccessibleChildID=IAccessibleChildID,event_windowHandle=self.event_windowHandle,event_objectID=self.event_objectID,event_childID=IAccessibleChildID))
continue
try:
identity=IAccessibleHandler.getIAccIdentity(IAccessibleObject,0)
except COMError:
identity=None
#For Window root IAccessibles, we just want to use the new window handle, but use the best API for that window, rather than IAccessible
#If it does happen to be IAccessible though, we only want the client, not the window root IAccessible
if identity and identity.get('objectID',None)==0 and identity.get('childID',None)==0:
windowHandle=identity.get('windowHandle',None)
if windowHandle:
kwargs=dict(windowHandle=windowHandle)
APIClass=Window.findBestAPIClass(kwargs,relation="parent") #Need a better relation type for this, but parent works ok -- gives the client
children.append(APIClass(**kwargs))
continue
children.append(IAccessible(IAccessibleObject=IAccessibleObject,IAccessibleChildID=IAccessibleChildID))
children=[x for x in children if x and winUser.isDescendantWindow(self.windowHandle,x.windowHandle)]
return children
def getChild(self, index):
if self.IAccessibleChildID != 0:
return None
child = IAccessibleHandler.accChild(self.IAccessibleObject, index + 1)
if not child:
if index < self.childCount:
return super(IAccessible, self).getChild(index)
return None
if child[0] == self.IAccessibleObject:
return IAccessible(windowHandle=self.windowHandle, IAccessibleObject=self.IAccessibleObject, IAccessibleChildID=child[1],
event_windowHandle=self.event_windowHandle, event_objectID=self.event_objectID, event_childID=child[1])
return self.correctAPIForRelation(IAccessible(IAccessibleObject=child[0], IAccessibleChildID=child[1]))
def _get_IA2Attributes(self):
try:
attribs = self.IAccessibleObject.attributes
except COMError as e:
log.debugWarning("IAccessibleObject.attributes COMError %s"%e)
attribs=None
if attribs:
return IAccessibleHandler.splitIA2Attribs(attribs)
return {}
def event_IA2AttributeChange(self):
# We currently only care about changes to the accessible drag and drop attributes, which we map to states, so treat this as a stateChange.
self.event_stateChange()
def _get_rowNumber(self):
table=self.table
if table:
if self.IAccessibleTableUsesTableCellIndexAttrib:
try:
index=self.IA2Attributes['table-cell-index']
except KeyError:
raise NotImplementedError
else:
index=self.IAccessibleObject.indexInParent
index=int(index)
try:
return table.IAccessibleTableObject.rowIndex(index)+1
except COMError:
log.debugWarning("IAccessibleTable::rowIndex failed", exc_info=True)
raise NotImplementedError
def _get_columnNumber(self):
table=self.table
if table:
if self.IAccessibleTableUsesTableCellIndexAttrib:
try:
index=self.IA2Attributes['table-cell-index']
except KeyError:
raise NotImplementedError
else:
index=self.IAccessibleObject.indexInParent
index=int(index)
try:
return table.IAccessibleTableObject.columnIndex(index)+1
except COMError:
log.debugWarning("IAccessibleTable::columnIndex failed", exc_info=True)
raise NotImplementedError
def _get_rowCount(self):
if hasattr(self,'IAccessibleTableObject'):
try:
return self.IAccessibleTableObject.nRows
except COMError:
log.debugWarning("IAccessibleTable::nRows failed", exc_info=True)
raise NotImplementedError
def _get_columnCount(self):
if hasattr(self,'IAccessibleTableObject'):
try:
return self.IAccessibleTableObject.nColumns
except COMError:
log.debugWarning("IAccessibleTable::nColumns failed", exc_info=True)
raise NotImplementedError
def _get__IATableCell(self):
# Permanently cache the result.
try:
self._IATableCell = self.IAccessibleObject.QueryInterface(IAccessibleHandler.IAccessibleTableCell)
except COMError:
self._IATableCell = None
return self._IATableCell
def _tableHeaderTextHelper(self, axis):
cell = self._IATableCell
if not cell:
return None
try:
headers, nHeaders = getattr(cell, axis + "HeaderCells")
except COMError:
return None
if not headers:
return None
try:
ret = []
# Each header must be fetched from the headers array once and only once,
# as it gets released when it gets garbage collected.
for i in xrange(nHeaders):
try:
text = headers[i].QueryInterface(IAccessibleHandler.IAccessible2).accName(0)
except COMError:
continue
if not text:
continue
ret.append(text)
return "\n".join(ret)
finally:
ctypes.windll.ole32.CoTaskMemFree(headers)
def _get_rowHeaderText(self):
return self._tableHeaderTextHelper("row")
def _get_columnHeaderText(self):
return self._tableHeaderTextHelper("column")
def _get_table(self):
if not isinstance(self.IAccessibleObject,IAccessibleHandler.IAccessible2):
return None
table=getattr(self,'_table',None)
if table:
return table
checkAncestors=False
if self.IAccessibleTableUsesTableCellIndexAttrib and "table-cell-index" in self.IA2Attributes:
checkAncestors=True
obj=self.parent
while checkAncestors and obj and not hasattr(obj,'IAccessibleTableObject'):
parent=obj.parent=obj.parent
obj=parent
if not obj or not hasattr(obj,'IAccessibleTableObject'):
return None
self._table=obj
return obj
def _get_tableID(self):
table = self.table
if not table:
return super(IAccessible, self).tableID
return (self.windowHandle, self.table.IA2UniqueID)
def _get_activeChild(self):
if self.IAccessibleChildID==0:
res=IAccessibleHandler.accFocus(self.IAccessibleObject)
if res:
if res[0]==self.IAccessibleObject:
return IAccessible(windowHandle=self.windowHandle,IAccessibleObject=self.IAccessibleObject,IAccessibleChildID=res[1],event_windowHandle=self.event_windowHandle,event_objectID=self.event_objectID,event_childID=res[1])
return IAccessible(IAccessibleObject=res[0],IAccessibleChildID=res[1])
def _get_hasFocus(self):
if (self.IAccessibleStates&oleacc.STATE_SYSTEM_FOCUSED):
return True
else:
return False
def setFocus(self):
try:
self.IAccessibleObject.accSelect(1,self.IAccessibleChildID)
except COMError:
pass
def scrollIntoView(self):
if isinstance(self.IAccessibleObject, IAccessibleHandler.IAccessible2):
try:
self.IAccessibleObject.scrollTo(IAccessibleHandler.IA2_SCROLL_TYPE_ANYWHERE)
except COMError:
log.debugWarning("IAccessible2::scrollTo failed", exc_info=True)
def _get_allowIAccessibleChildIDAndChildCountForPositionInfo(self):
"""if true position info should fall back to using the childID and the parent's accChildCount for position information if there is nothing better available."""
return config.conf["presentation"]["guessObjectPositionInformationWhenUnavailable"]
def _get_positionInfo(self):
if isinstance(self.IAccessibleObject,IAccessibleHandler.IAccessible2):
try:
info={}
info["level"],info["similarItemsInGroup"],info["indexInGroup"]=self.IAccessibleObject.groupPosition
# 0 means not applicable, so remove it.
for key, val in info.items():
if not val:
del info[key]
return info
except COMError:
pass
if self.hasEncodedAccDescription:
d=self.decodedAccDescription
if d and not isinstance(d,basestring):
groupdict=d.groupdict()
return {x:int(y) for x,y in groupdict.iteritems() if y is not None}
if self.allowIAccessibleChildIDAndChildCountForPositionInfo and self.IAccessibleChildID>0:
indexInGroup=self.IAccessibleChildID
parent=self.parent
if parent:
similarItemsInGroup=parent.childCount
return dict(indexInGroup=indexInGroup,similarItemsInGroup=similarItemsInGroup)
return {}
def _get_indexInParent(self):
if isinstance(self.IAccessibleObject, IAccessibleHandler.IAccessible2):
try:
return self.IAccessibleObject.indexInParent
except COMError:
pass
raise NotImplementedError
def _get__IA2Relations(self):
if not isinstance(self.IAccessibleObject, IAccessibleHandler.IAccessible2):
raise NotImplementedError
import ctypes
import comtypes.hresult
try:
size = self.IAccessibleObject.nRelations
except COMError:
raise NotImplementedError
if size <= 0:
return ()
relations = (ctypes.POINTER(IAccessibleHandler.IAccessibleRelation) * size)()
count = ctypes.c_int()
# The client allocated relations array is an [out] parameter instead of [in, out], so we need to use the raw COM method.
res = self.IAccessibleObject._IAccessible2__com__get_relations(size, relations, ctypes.byref(count))
if res != comtypes.hresult.S_OK:
raise NotImplementedError
return list(relations)
def _getIA2RelationFirstTarget(self, relationType):
for relation in self._IA2Relations:
try:
if relation.relationType == relationType:
return IAccessible(IAccessibleObject=IAccessibleHandler.normalizeIAccessible(relation.target(0)), IAccessibleChildID=0)
except COMError:
pass
return None
def _get_flowsTo(self):
return self._getIA2RelationFirstTarget(IAccessibleHandler.IA2_RELATION_FLOWS_TO)
def _get_flowsFrom(self):
return self._getIA2RelationFirstTarget(IAccessibleHandler.IA2_RELATION_FLOWS_FROM)
def event_valueChange(self):
if isinstance(self, EditableTextWithAutoSelectDetection):
self.hasContentChangedSinceLastSelection = True
return
return super(IAccessible, self).event_valueChange()
def event_alert(self):
if self.role != controlTypes.ROLE_ALERT:
# Ignore alert events on objects that aren't alerts.
return
# If the focus is within the alert object, don't report anything for it.
if eventHandler.isPendingEvents("gainFocus"):
# The alert event might be fired before the focus.
api.processPendingEvents()
if self in api.getFocusAncestors():
return
speech.cancelSpeech()
speech.speakObject(self, reason=controlTypes.REASON_FOCUS)
for child in self.recursiveDescendants:
if controlTypes.STATE_FOCUSABLE in child.states:
speech.speakObject(child, reason=controlTypes.REASON_FOCUS)
def event_caret(self):
focus = api.getFocusObject()
if self is not focus and hasattr(self, "IAccessibleTextObject"):
import compoundDocuments
if issubclass(focus.TextInfo, compoundDocuments.CompoundTextInfo) and self in focus:
# This object is part of the focused compound text editor, so notify it.
focus.event_caret()
return
super(IAccessible, self).event_caret()
def _get_groupName(self):
return None
if self.IAccessibleChildID>0:
return None
else:
return super(IAccessible,self)._get_groupName()
def event_selection(self):
return self.event_stateChange()
def event_selectionAdd(self):
return self.event_stateChange()
def event_selectionRemove(self):
return self.event_stateChange()
def event_selectionWithIn(self):
return self.event_stateChange()
def _get_isPresentableFocusAncestor(self):
IARole = self.IAccessibleRole
# This is the root object of a top level window.
# #4300: We check the object and child ids as well because there can be "clients" other than the root.
if IARole == oleacc.ROLE_SYSTEM_CLIENT and self.event_objectID==winUser.OBJID_CLIENT and self.event_childID==0 and self.windowStyle & winUser.WS_SYSMENU:
return True
return super(IAccessible, self).isPresentableFocusAncestor
def _get_devInfo(self):
info = super(IAccessible, self).devInfo
iaObj = self.IAccessibleObject
info.append("IAccessibleObject: %r" % iaObj)
childID = self.IAccessibleChildID
info.append("IAccessibleChildID: %r" % childID)
info.append("IAccessible event parameters: windowHandle=%r, objectID=%r, childID=%r" % (self.event_windowHandle, self.event_objectID, self.event_childID))
formatLong = self._formatLongDevInfoString
try:
ret = formatLong(iaObj.accName(childID))
except Exception as e:
ret = "exception: %s" % e
info.append("IAccessible accName: %s" % ret)
try:
ret = iaObj.accRole(childID)
for name, const in oleacc.__dict__.iteritems():
if not name.startswith("ROLE_"):
continue
if ret == const:
ret = name
break
else:
ret = repr(ret)
except Exception as e:
ret = "exception: %s" % e
info.append("IAccessible accRole: %s" % ret)
try:
temp = iaObj.accState(childID)
ret = ", ".join(
name for name, const in oleacc.__dict__.iteritems()
if name.startswith("STATE_") and temp & const
) + " (%d)" % temp
except Exception as e:
ret = "exception: %s" % e
info.append("IAccessible accState: %s" % ret)
try:
ret = formatLong(iaObj.accDescription(childID))
except Exception as e:
ret = "exception: %s" % e
info.append("IAccessible accDescription: %s" % ret)
try:
ret = formatLong(iaObj.accValue(childID))
except Exception as e:
ret = "exception: %s" % e
info.append("IAccessible accValue: %s" % ret)
if isinstance(iaObj, IAccessibleHandler.IAccessible2):
try:
ret = iaObj.windowHandle
except Exception as e:
ret = "exception: %s" % e
info.append("IAccessible2 windowHandle: %s" % ret)
try:
ret = iaObj.uniqueID
except Exception as e:
ret = "exception: %s" % e
info.append("IAccessible2 uniqueID: %s" % ret)
try:
ret = iaObj.role()
for name, const in itertools.chain(oleacc.__dict__.iteritems(), IAccessibleHandler.__dict__.iteritems()):
if not name.startswith("ROLE_") and not name.startswith("IA2_ROLE_"):
continue
if ret == const:
ret = name
break
else:
ret = repr(ret)
except Exception as e:
ret = "exception: %s" % e
info.append("IAccessible2 role: %s" % ret)
try:
temp = iaObj.states
ret = ", ".join(
name for name, const in IAccessibleHandler.__dict__.iteritems()
if name.startswith("IA2_STATE_") and temp & const
) + " (%d)" % temp
except Exception as e:
ret = "exception: %s" % e
info.append("IAccessible2 states: %s" % ret)
try:
ret = repr(iaObj.attributes)
except Exception as e:
ret = "exception: %s" % e
info.append("IAccessible2 attributes: %s" % ret)
return info
def _get_language(self):
try:
ia2Locale = self.IAccessibleObject.locale
except (AttributeError, COMError):
return None
if ia2Locale.language and ia2Locale.country:
return "%s_%s" % (ia2Locale.language, ia2Locale.country)
elif ia2Locale.language:
return ia2Locale.language
return None
def _get_iaHypertext(self):
ht = self.IAccessibleTextObject.QueryInterface(IAccessibleHandler.IAccessibleHypertext)
self.iaHypertext = ht # Cache forever.
return ht
def _get_IA2WindowHandle(self):
window = None
if isinstance(self.IAccessibleObject, IAccessibleHandler.IAccessible2):
try:
window = self.IAccessibleObject.windowHandle
except COMError as e:
log.debugWarning("IAccessible2::windowHandle failed: %s" % e)
self.IA2WindowHandle = window # Cache forever.
return window
# We forceably cache this forever, so we don't need temporary caching.
# Temporary caching breaks because the cache isn't initialised when this is first called.
_cache_IA2WindowHandle = False
def _get_IA2States(self):
if not isinstance(self.IAccessibleObject, IAccessibleHandler.IAccessible2):
return 0
try:
return self.IAccessibleObject.states
except COMError:
log.debugWarning("could not get IAccessible2 states", exc_info=True)
return IAccessibleHandler.IA2_STATE_DEFUNCT
def __contains__(self, obj):
if not isinstance(obj, IAccessible) or not isinstance(obj.IAccessibleObject, IAccessibleHandler.IAccessible2):
return False
try:
self.IAccessibleObject.accChild(obj.IA2UniqueID)
return True
except COMError:
return False
class ContentGenericClient(IAccessible):
TextInfo=displayModel.DisplayModelTextInfo
presentationType=IAccessible.presType_content
role=controlTypes.ROLE_UNKNOWN
def _get_value(self):
val=self.displayText
truncate=len(val)>200
if truncate:
return u"%s\u2026"%val[:200]
return val
class GenericWindow(IAccessible):
TextInfo=displayModel.DisplayModelTextInfo
isPresentableFocusAncestor=False
class WindowRoot(GenericWindow):
parentUsesSuperOnWindowRootIAccessible=True #: on a window root IAccessible, super should be used instead of accParent
@classmethod
def windowHasExtraIAccessibles(cls,windowHandle):
"""Finds out whether this window has things such as a system menu / titleBar / scroll bars, which would be represented as extra IAccessibles"""
style=winUser.getWindowStyle(windowHandle)
return bool(style&winUser.WS_SYSMENU)
def _get_presentationType(self):
states=self.states
if controlTypes.STATE_INVISIBLE in states or controlTypes.STATE_UNAVAILABLE in states:
return self.presType_unavailable
if not self.windowHasExtraIAccessibles(self.windowHandle):
return self.presType_layout
return self.presType_content
def _get_parent(self):
if self.parentUsesSuperOnWindowRootIAccessible:
return super(IAccessible,self).parent
return super(WindowRoot,self).parent
def _get_next(self):
return super(IAccessible,self).next
def _get_previous(self):
return super(IAccessible,self).previous
def _get_container(self):
#Support for groupbox windows
groupboxObj=IAccessibleHandler.findGroupboxObject(self)
if groupboxObj:
return groupboxObj
return super(WindowRoot,self).container
class ShellDocObjectView(IAccessible):
def event_gainFocus(self):
#Sometimes Shell DocObject View gets focus, when really the document inside it should
#Adobe Reader 9 licence agreement
if eventHandler.isPendingEvents("gainFocus") or self.childCount!=1:
return super(ShellDocObjectView,self).event_gainFocus()
child=self.firstChild
if not child or child.windowClassName!="Internet Explorer_Server" or child.role!=controlTypes.ROLE_PANE:
return super(ShellDocObjectView,self).event_gainFocus()
child=child.firstChild
if not child or child.windowClassName!="Internet Explorer_Server" or child.role!=controlTypes.ROLE_DOCUMENT:
return super(ShellDocObjectView,self).event_gainFocus()
eventHandler.queueEvent("gainFocus",child)
class JavaVMRoot(IAccessible):
def _get_firstChild(self):
jabContext=JABHandler.JABContext(hwnd=self.windowHandle)
return NVDAObjects.JAB.JAB(jabContext=jabContext)
def _get_lastChild(self):
jabContext=JABHandler.JABContext(hwnd=self.windowHandle)
return NVDAObjects.JAB.JAB(jabContext=jabContext)
def _get_children(self):
children=[]
jabContext=JABHandler.JABContext(hwnd=self.windowHandle)
obj=NVDAObjects.JAB.JAB(jabContext=jabContext)
if obj:
children.append(obj)
return children
class NUIDialogClient(Dialog):
role=controlTypes.ROLE_DIALOG
class Groupbox(IAccessible):
def _getNextSkipWindows(self, obj):
res = obj.next
if res:
return res
res = obj.parent
if not res or res.role != controlTypes.ROLE_WINDOW:
return None
res = res.next
if not res or res.role != controlTypes.ROLE_WINDOW:
return None
return res.firstChild
def _get_description(self):
next=self._getNextSkipWindows(self)
if next and next.name==self.name and next.role==controlTypes.ROLE_GRAPHIC:
next=self._getNextSkipWindows(next)
if next and next.role==controlTypes.ROLE_STATICTEXT:
nextNext=self._getNextSkipWindows(next)
if nextNext and nextNext.name!=next.name:
return next.name
return super(Groupbox,self).description
def _get_isPresentableFocusAncestor(self):
# Only fetch this the first time it is requested,
# as it is a bit slow due to the description property
# and the answer shouldn't change anyway.
self.isPresentableFocusAncestor = res = super(Groupbox, self).isPresentableFocusAncestor
return res
class TrayClockWClass(IAccessible):
"""
Based on NVDAObject but the role is changed to clock.
"""
def _get_role(self):
return controlTypes.ROLE_CLOCK
class OutlineItem(IAccessible):
def _get_value(self):
val=super(OutlineItem,self)._get_value()
try:
int(val)
except (ValueError, TypeError):
return val
class List(IAccessible):
def _get_role(self):
return controlTypes.ROLE_LIST
class SysLinkClient(IAccessible):
def reportFocus(self):
pass
def _get_role(self):
if self.childCount==0:
return controlTypes.ROLE_LINK
return super(SysLinkClient,self).role
class SysLink(IAccessible):
def _get_name(self):
#Workaround for #451 - explorer returns incorrect string length, thus it can contain garbage characters
name=super(SysLink,self).name
if name:
#Remove any data after the null character
i=name.find('\0')
if i>=0: name=name[:i]
return name
class TaskList(IAccessible):
isPresentableFocusAncestor = False
def event_gainFocus(self):
# Normally, we don't want to act on this focus event.
if self.childCount == 0:
# However, in Windows 7, the task list gets focus even if alt+tab is pressed with no applications open.
# In this case, we must report the focus so the user knows where the focus has landed.
return super(TaskList, self).event_gainFocus()
class TaskListIcon(IAccessible):
allowIAccessibleChildIDAndChildCountForPositionInfo=True
def _get_role(self):
return controlTypes.ROLE_ICON
def reportFocus(self):
if controlTypes.STATE_INVISIBLE in self.states:
return
super(TaskListIcon,self).reportFocus()
class MenuItem(IAccessible):
def _get_description(self):
name=self.name
description=super(MenuItem,self)._get_description()
if description!=name:
return description
else:
return None
def _get_name(self):
return super(MenuItem,self).name or self.displayText
def event_gainFocus(self):
if eventHandler.isPendingEvents("gainFocus"):
return
super(MenuItem, self).event_gainFocus()
class Taskbar(IAccessible):
name = _("Taskbar")
class Button(IAccessible):
def _get_name(self):
name=super(Button,self).name
if not name or name.isspace():
name=self.displayText
return name
class InaccessibleListBoxItem(IAccessible):
"""
Used for list item IAccessibles in inaccessible owner drawn ListBox controls.
Overrides name to use display model text as MSAA doesn't provide a suitable name (it's usually either empty or contains garbage).
"""
def _get_name(self):
return self.displayText
class InaccessibleComboBox(IAccessible):
"""
Used for inaccessible owner drawn ComboBox controls.
Overrides value to use display model text as MSAA doesn't provide a suitable vale (it's usually either empty or contains garbage).
"""
def _get_value(self):
return self.displayText
class StaticText(IAccessible):
"""Support for owner-drawn staticText controls where accName is empty."""
def _get_name(self):
name=super(StaticText,self).name
if not name or name.isspace():
name=self.displayText
return name
class Titlebar(IAccessible):
"""A class for the standard MSAA titlebar, which shortcuts presentationType to be layout (for performance) and makes the description property empty, as the standard accDescription is rather annoying."""
presentationType=IAccessible.presType_layout
def _get_description(self):
return ""
class ReBarWindow32Client(IAccessible):
"""
The client IAccessible for a ReBarWindow32 window.
Overrides firstChild/lastChild as accNavigate is not implemented, and IEnumVariant (children) gives back some strange buttons beside each child window with no accNavigate.
"""
def _get_firstChild(self):
return super(IAccessible,self).firstChild
def _get_lastChild(self):
return super(IAccessible,self).lastChild
#A class for the listview window class, found sof ar only in the Cygwin Setup program.
#Makes sure its available in simple review mode, and uses display model
class ListviewPane(IAccessible):
presentationType=IAccessible.presType_content
role=controlTypes.ROLE_LIST
TextInfo=displayModel.DisplayModelTextInfo
name=""
class IEFrameNotificationBar(IAccessible):
def event_show(self):
child=self.simpleFirstChild
if isinstance(child,Dialog):
child.event_alert()
#The Internet Explorer notification toolbar should be handled as an alert
class IENotificationBar(Dialog,IAccessible):
name=""
role=controlTypes.ROLE_ALERT
def event_alert(self):
speech.cancelSpeech()
speech.speakObject(self,reason=controlTypes.REASON_FOCUS)
child=self.simpleFirstChild
while child:
if child.role!=controlTypes.ROLE_STATICTEXT:
speech.speakObject(child,reason=controlTypes.REASON_FOCUS)
child=child.simpleNext
###class mappings
_staticMap={
("ReBarWindow32",oleacc.ROLE_SYSTEM_CLIENT):"ReBarWindow32Client",
("Static",oleacc.ROLE_SYSTEM_STATICTEXT):"StaticText",
("msctls_statusbar32",oleacc.ROLE_SYSTEM_STATICTEXT):"StaticText",
(None,oleacc.ROLE_SYSTEM_PUSHBUTTON):"Button",
("tooltips_class32",oleacc.ROLE_SYSTEM_TOOLTIP):"ToolTip",
("tooltips_class32",oleacc.ROLE_SYSTEM_HELPBALLOON):"Notification",
(None,oleacc.ROLE_SYSTEM_DIALOG):"Dialog",
(None,oleacc.ROLE_SYSTEM_ALERT):"Dialog",
(None,oleacc.ROLE_SYSTEM_PROPERTYPAGE):"Dialog",
(None,oleacc.ROLE_SYSTEM_GROUPING):"Groupbox",
("TrayClockWClass",oleacc.ROLE_SYSTEM_CLIENT):"TrayClockWClass",
("TRxRichEdit",oleacc.ROLE_SYSTEM_CLIENT):"delphi.TRxRichEdit",
(None,oleacc.ROLE_SYSTEM_OUTLINEITEM):"OutlineItem",
(None,oleacc.ROLE_SYSTEM_LIST):"List",
(None,oleacc.ROLE_SYSTEM_PROGRESSBAR):"ProgressBar",
("TRichView",oleacc.ROLE_SYSTEM_CLIENT):"delphi.TRichView",
("TRichViewEdit",oleacc.ROLE_SYSTEM_CLIENT):"delphi.TRichViewEdit",
("TTntDrawGrid.UnicodeClass",oleacc.ROLE_SYSTEM_CLIENT):"List",
("SysListView32",oleacc.ROLE_SYSTEM_LIST):"sysListView32.List",
("SysListView32",oleacc.ROLE_SYSTEM_GROUPING):"sysListView32.List",
("SysListView32",oleacc.ROLE_SYSTEM_LISTITEM):"sysListView32.ListItem",
("SysListView32",oleacc.ROLE_SYSTEM_MENUITEM):"sysListView32.ListItemWithoutColumnSupport",
("SysTreeView32",oleacc.ROLE_SYSTEM_OUTLINE):"sysTreeView32.TreeView",
("SysTreeView32",oleacc.ROLE_SYSTEM_OUTLINEITEM):"sysTreeView32.TreeViewItem",
("SysTreeView32",oleacc.ROLE_SYSTEM_MENUITEM):"sysTreeView32.TreeViewItem",
("SysTreeView32",0):"sysTreeView32.BrokenCommctrl5Item",
("ATL:SysListView32",oleacc.ROLE_SYSTEM_LISTITEM):"sysListView32.ListItem",
("TWizardForm",oleacc.ROLE_SYSTEM_CLIENT):"delphi.Form",
("SysLink",oleacc.ROLE_SYSTEM_CLIENT):"SysLinkClient",
("SysLink",oleacc.ROLE_SYSTEM_LINK):"SysLink",
("ATL:4FAE8088",oleacc.ROLE_SYSTEM_LINK):"SysLink",
("#32771",oleacc.ROLE_SYSTEM_LIST):"TaskList",
("TaskSwitcherWnd",oleacc.ROLE_SYSTEM_LIST):"TaskList",
("#32771",oleacc.ROLE_SYSTEM_LISTITEM):"TaskListIcon",
("TaskSwitcherWnd",oleacc.ROLE_SYSTEM_LISTITEM):"TaskListIcon",
("TGroupBox",oleacc.ROLE_SYSTEM_CLIENT):"delphi.TGroupBox",
("TFormOptions",oleacc.ROLE_SYSTEM_CLIENT):"delphi.Form",
("TMessageForm",oleacc.ROLE_SYSTEM_CLIENT):"delphi.Form",
("TFormOptions",oleacc.ROLE_SYSTEM_WINDOW):"delphi.Form",
("TTabSheet",oleacc.ROLE_SYSTEM_CLIENT):"delphi.TabSheet",
("MsiDialogCloseClass",oleacc.ROLE_SYSTEM_CLIENT):"Dialog",
(None,oleacc.ROLE_SYSTEM_MENUITEM):"MenuItem",
("TPTShellList",oleacc.ROLE_SYSTEM_LISTITEM):"sysListView32.ListItem",
("TProgressBar",oleacc.ROLE_SYSTEM_PROGRESSBAR):"ProgressBar",
("AcrobatSDIWindow",oleacc.ROLE_SYSTEM_CLIENT):"adobeAcrobat.AcrobatSDIWindowClient",
("SysMonthCal32",oleacc.ROLE_SYSTEM_CLIENT):"SysMonthCal32.SysMonthCal32",
("hh_kwd_vlist",oleacc.ROLE_SYSTEM_LIST):"hh.KeywordList",
("Scintilla",oleacc.ROLE_SYSTEM_CLIENT):"scintilla.Scintilla",
("TScintilla",oleacc.ROLE_SYSTEM_CLIENT):"scintilla.Scintilla",
("AkelEditW",oleacc.ROLE_SYSTEM_CLIENT):"akelEdit.AkelEdit",
("AkelEditA",oleacc.ROLE_SYSTEM_CLIENT):"akelEdit.AkelEdit",
("MSOUNISTAT",oleacc.ROLE_SYSTEM_CLIENT):"msOffice.MSOUNISTAT",
("QWidget",oleacc.ROLE_SYSTEM_CLIENT):"qt.Client",
("QWidget",oleacc.ROLE_SYSTEM_LIST):"qt.Container",
("Qt5QWindowIcon",oleacc.ROLE_SYSTEM_LIST):"qt.Container",
("QWidget",oleacc.ROLE_SYSTEM_OUTLINE):"qt.Container",
("Qt5QWindowIcon",oleacc.ROLE_SYSTEM_OUTLINE):"qt.Container",
("QWidget",oleacc.ROLE_SYSTEM_MENUBAR):"qt.Container",
("QWidget",oleacc.ROLE_SYSTEM_ROW):"qt.TableRow",
("QWidget",oleacc.ROLE_SYSTEM_CELL):"qt.TableCell",
("QWidget",oleacc.ROLE_SYSTEM_OUTLINEITEM):"qt.TreeViewItem",
("QPopup",oleacc.ROLE_SYSTEM_MENUPOPUP):"qt.Menu",
("QWidget",oleacc.ROLE_SYSTEM_IPADDRESS):"qt.LayeredPane",
("QWidget",oleacc.ROLE_SYSTEM_APPLICATION):"qt.Application",
("Qt5QWindowIcon",oleacc.ROLE_SYSTEM_APPLICATION):"qt.Application",
("Shell_TrayWnd",oleacc.ROLE_SYSTEM_CLIENT):"Taskbar",
("Shell DocObject View",oleacc.ROLE_SYSTEM_CLIENT):"ShellDocObjectView",
("listview",oleacc.ROLE_SYSTEM_CLIENT):"ListviewPane",
("NUIDialog",oleacc.ROLE_SYSTEM_CLIENT):"NUIDialogClient",
("_WwB",oleacc.ROLE_SYSTEM_CLIENT):"winword.ProtectedDocumentPane",
("MsoCommandBar",oleacc.ROLE_SYSTEM_LISTITEM):"msOffice.CommandBarListItem",
}