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
|
{
* AXAttributeConstants.h
* HIServices
*
* Created by John Louch on Wed Feb 25 2004.
* Copyright (c) 2004, 2006 Apple Computer, Inc. All rights reserved.
*
}
{ Pascal Translation: Gale R Paeper, <gpaeper@empirenet.com>, 2006 }
{ Pascal Translation Updated: Jonas Maebe, <jonas@freepascal.org>, October 2009 }
{
Modified for use with Free Pascal
Version 308
Please report any bugs to <gpc@microbizz.nl>
}
{$ifc not defined MACOSALLINCLUDE or not MACOSALLINCLUDE}
{$mode macpas}
{$packenum 1}
{$macro on}
{$inline on}
{$calling mwpascal}
unit AXAttributeConstants;
interface
{$setc UNIVERSAL_INTERFACES_VERSION := $0400}
{$setc GAP_INTERFACES_VERSION := $0308}
{$ifc not defined USE_CFSTR_CONSTANT_MACROS}
{$setc USE_CFSTR_CONSTANT_MACROS := TRUE}
{$endc}
{$ifc defined CPUPOWERPC and defined CPUI386}
{$error Conflicting initial definitions for CPUPOWERPC and CPUI386}
{$endc}
{$ifc defined FPC_BIG_ENDIAN and defined FPC_LITTLE_ENDIAN}
{$error Conflicting initial definitions for FPC_BIG_ENDIAN and FPC_LITTLE_ENDIAN}
{$endc}
{$ifc not defined __ppc__ and defined CPUPOWERPC32}
{$setc __ppc__ := 1}
{$elsec}
{$setc __ppc__ := 0}
{$endc}
{$ifc not defined __ppc64__ and defined CPUPOWERPC64}
{$setc __ppc64__ := 1}
{$elsec}
{$setc __ppc64__ := 0}
{$endc}
{$ifc not defined __i386__ and defined CPUI386}
{$setc __i386__ := 1}
{$elsec}
{$setc __i386__ := 0}
{$endc}
{$ifc not defined __x86_64__ and defined CPUX86_64}
{$setc __x86_64__ := 1}
{$elsec}
{$setc __x86_64__ := 0}
{$endc}
{$ifc not defined __arm__ and defined CPUARM}
{$setc __arm__ := 1}
{$elsec}
{$setc __arm__ := 0}
{$endc}
{$ifc defined cpu64}
{$setc __LP64__ := 1}
{$elsec}
{$setc __LP64__ := 0}
{$endc}
{$ifc defined __ppc__ and __ppc__ and defined __i386__ and __i386__}
{$error Conflicting definitions for __ppc__ and __i386__}
{$endc}
{$ifc defined __ppc__ and __ppc__}
{$setc TARGET_CPU_PPC := TRUE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := FALSE}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elifc defined __ppc64__ and __ppc64__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := TRUE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := FALSE}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elifc defined __i386__ and __i386__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := TRUE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := FALSE}
{$ifc defined(iphonesim)}
{$setc TARGET_OS_MAC := FALSE}
{$setc TARGET_OS_IPHONE := TRUE}
{$setc TARGET_IPHONE_SIMULATOR := TRUE}
{$elsec}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$endc}
{$elifc defined __x86_64__ and __x86_64__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := TRUE}
{$setc TARGET_CPU_ARM := FALSE}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elifc defined __arm__ and __arm__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := TRUE}
{ will require compiler define when/if other Apple devices with ARM cpus ship }
{$setc TARGET_OS_MAC := FALSE}
{$setc TARGET_OS_IPHONE := TRUE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elsec}
{$error __ppc__ nor __ppc64__ nor __i386__ nor __x86_64__ nor __arm__ is defined.}
{$endc}
{$ifc defined __LP64__ and __LP64__ }
{$setc TARGET_CPU_64 := TRUE}
{$elsec}
{$setc TARGET_CPU_64 := FALSE}
{$endc}
{$ifc defined FPC_BIG_ENDIAN}
{$setc TARGET_RT_BIG_ENDIAN := TRUE}
{$setc TARGET_RT_LITTLE_ENDIAN := FALSE}
{$elifc defined FPC_LITTLE_ENDIAN}
{$setc TARGET_RT_BIG_ENDIAN := FALSE}
{$setc TARGET_RT_LITTLE_ENDIAN := TRUE}
{$elsec}
{$error Neither FPC_BIG_ENDIAN nor FPC_LITTLE_ENDIAN are defined.}
{$endc}
{$setc ACCESSOR_CALLS_ARE_FUNCTIONS := TRUE}
{$setc CALL_NOT_IN_CARBON := FALSE}
{$setc OLDROUTINENAMES := FALSE}
{$setc OPAQUE_TOOLBOX_STRUCTS := TRUE}
{$setc OPAQUE_UPP_TYPES := TRUE}
{$setc OTCARBONAPPLICATION := TRUE}
{$setc OTKERNEL := FALSE}
{$setc PM_USE_SESSION_APIS := TRUE}
{$setc TARGET_API_MAC_CARBON := TRUE}
{$setc TARGET_API_MAC_OS8 := FALSE}
{$setc TARGET_API_MAC_OSX := TRUE}
{$setc TARGET_CARBON := TRUE}
{$setc TARGET_CPU_68K := FALSE}
{$setc TARGET_CPU_MIPS := FALSE}
{$setc TARGET_CPU_SPARC := FALSE}
{$setc TARGET_OS_UNIX := FALSE}
{$setc TARGET_OS_WIN32 := FALSE}
{$setc TARGET_RT_MAC_68881 := FALSE}
{$setc TARGET_RT_MAC_CFM := FALSE}
{$setc TARGET_RT_MAC_MACHO := TRUE}
{$setc TYPED_FUNCTION_POINTERS := TRUE}
{$setc TYPE_BOOL := FALSE}
{$setc TYPE_EXTENDED := FALSE}
{$setc TYPE_LONGLONG := TRUE}
uses MacTypes;
{$endc} {not MACOSALLINCLUDE}
{$ifc TARGET_OS_MAC}
{$ALIGN POWER}
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ Attributes }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
Quick reference:
// informational attributes
kAXRoleAttribute
kAXSubroleAttribute
kAXRoleDescriptionAttribute
kAXTitleAttribute
kAXDescriptionAttribute
kAXHelpAttribute
// hierarchy or relationship attributes
kAXParentAttribute
kAXChildrenAttribute
kAXSelectedChildrenAttribute
kAXVisibleChildrenAttribute
kAXWindowAttribute
kAXTopLevelUIElementAttribute
kAXTitleUIElementAttribute
kAXServesAsTitleForUIElementsAttribute
kAXLinkedUIElementsAttribute
// visual state attributes
kAXEnabledAttribute
kAXFocusedAttribute
kAXPositionAttribute
kAXSizeAttribute
// value attributes
kAXValueAttribute
kAXValueDescriptionAttribute
kAXMinValueAttribute
kAXMaxValueAttribute
kAXValueIncrementAttribute
kAXValueWrapsAttribute
kAXAllowedValuesAttribute
// text-specific attributes
kAXSelectedTextAttribute
kAXSelectedTextRangeAttribute
kAXSelectedTextRangesAttribute
kAXVisibleCharacterRangeAttribute
kAXNumberOfCharactersAttribute
kAXSharedTextUIElementsAttribute
kAXSharedCharacterRangeAttribute
// window, sheet, or drawer-specific attributes
kAXMainAttribute
kAXMinimizedAttribute
kAXCloseButtonAttribute
kAXZoomButtonAttribute
kAXMinimizeButtonAttribute
kAXToolbarButtonAttribute
kAXProxyAttribute
kAXGrowAreaAttribute
kAXModalAttribute
kAXDefaultButtonAttribute
kAXCancelButtonAttribute
// menu or menu item-specific attributes
kAXMenuItemCmdCharAttribute
kAXMenuItemCmdVirtualKeyAttribute
kAXMenuItemCmdGlyphAttribute
kAXMenuItemCmdModifiersAttribute
kAXMenuItemMarkCharAttribute
kAXMenuItemPrimaryUIElementAttribute
// application element-specific attributes
kAXMenuBarAttribute
kAXWindowsAttribute
kAXFrontmostAttribute
kAXHiddenAttribute
kAXMainWindowAttribute
kAXFocusedWindowAttribute
kAXFocusedUIElementAttribute
// date/time-specific attributes
kAXHourFieldAttribute
kAXMinuteFieldAttribute
kAXSecondFieldAttribute
kAXAMPMFieldAttribute
kAXDayFieldAttribute
kAXMonthFieldAttribute
kAXYearFieldAttribute
// table, outline, or browser-specific attributes
kAXRowsAttribute
kAXVisibleRowsAttribute
kAXSelectedRowsAttribute
kAXColumnsAttribute
kAXVisibleColumnsAttribute
kAXSelectedColumnsAttribute
kAXSortDirectionAttribute
kAXColumnHeaderUIElementsAttribute
kAXIndexAttribute
kAXDisclosingAttribute
kAXDisclosedRowsAttribute
kAXDisclosedByRowAttribute
// matte-specific attributes
kAXMatteHoleAttribute
kAXMatteContentUIElementAttribute
// ruler-specific attributes
kAXMarkerUIElementsAttribute
kAXUnitsAttribute
kAXUnitDescriptionAttribute
kAXMarkerTypeAttribute
kAXMarkerTypeDescriptionAttribute
// miscellaneous or role-specific attributes
kAXHorizontalScrollBarAttribute
kAXVerticalScrollBarAttribute
kAXOrientationAttribute
kAXHeaderAttribute
kAXEditedAttribute
kAXTabsAttribute
kAXOverflowButtonAttribute
kAXFilenameAttribute
kAXExpandedAttribute
kAXSelectedAttribute
kAXSplittersAttribute
kAXContentsAttribute
kAXNextContentsAttribute
kAXPreviousContentsAttribute
kAXDocumentAttribute
kAXIncrementorAttribute
kAXDecrementButtonAttribute
kAXIncrementButtonAttribute
kAXColumnTitleAttribute
kAXURLAttribute
kAXLabelUIElementsAttribute
kAXLabelValueAttribute
kAXShownMenuUIElementAttribute
kAXIsApplicationRunningAttribute
kAXFocusedApplicationAttribute
}
{
kAXRoleAttribute
Identifies the basic type of an element.
Value: A CFStringRef of one of the role strings defined in this header, or a new
role string of your own invention. The string should not be localized, and it does
not need to be human-readable. Instead of inventing new role strings, see if a
custom element can be identified by an existing role string and a new subrole. See
kAXSubroleAttribute.
Writable? No.
Required for all elements. Even in the worst case scenario where an element cannot
figure out what its basic type is, it can still supply the value kAXUnknownRole.
Carbon Accessorization Notes: If your HIObjectClass or Carbon Event handler provides
the kAXRoleAttribute, it must also provide the kAXRoleDescriptionAttribute.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXRoleAttribute CFSTRP('AXRole')}
{$endc}
{
kAXSubroleAttribute
More specifically identifies the type of an element beyond the basic type provided
by kAXRoleAttribute.
Value: A CFStringRef of one of the subrole strings defined in this header, or a new
subrole string of your own invention. The string should not be localized, and it does
not need to be human-readable.
Writable? No.
Required only when an element's kAXRoleAttribute alone doesn't provide an assistive
application with enough information to convey the meaning of this element to the user.
An example element that offers the kAXSubroleAttribute is a window's close box. Its
kAXRoleAttribute value is kAXButtonRole and its kAXSubroleAttribute is
kAXCloseButtonSubrole. It is of role kAXButtonRole because it offers no additional
actions or attributes above and beyond what other kAXButtonRole elements provide; it
was given a subrole in order to allow an assistive app to communicate the close box's
semantic difference to the user.
Carbon Accessorization Notes: If your HIObjectClass or Carbon Event handler provides
the kAXSubroleAttribute, it must also provide the kAXRoleDescriptionAttribute.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSubroleAttribute CFSTRP('AXSubrole')}
{$endc}
{
kAXRoleDescriptionAttribute
A localized, human-readable string that an assistive application can present to the user
as an explanation of an element's basic type or purpose. Examples would be "push button"
or "secure text field". The string's language should match the language of the app that
the element lives within. The string should be all lower-case and contain no punctuation.
Two elements with the same kAXRoleAttribute and kAXSubroleAttribute should have the
same kAXRoleDescriptionAttribute.
Value: A localized, human-readable CFStringRef.
Writable? No.
Required for all elements. Even in the worst case scenario where an element cannot
figure out what its basic type is, it can still supply the value "unknown".
Carbon Accessorization Notes: The HIObjectClass or Carbon Event handler that provides
the AXRole and/or AXSubrole for an element is the one that must also handle the
AXRoleDescription attribute. If an HIObjectClass or Carbon Event handler does not
provide either the AXRole or AXSubrole, it must not provide the AXRoleDescription.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXRoleDescriptionAttribute CFSTRP('AXRoleDescription')}
{$endc}
{
kAXHelpAttribute
A localized, human-readable CFStringRef that offers help content for an element.
This is often the same information that would be provided in a help tag for the element.
Value: A localized, human-readable CFStringRef.
Writable? No.
Recommended for any element that has help data available.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXHelpAttribute CFSTRP('AXHelp')}
{$endc}
{
kAXTitleAttribute
The localized, human-readable string that is displayed as part of the element's
normal visual interface. For example, a OK button's kAXTitleElement is the string
"OK", and a menu item's kAXTitleElement is the text of the menu item.
Value: A localized, human-readable CFStringRef.
Writable? No.
Required if the element draws a string as part of its normal visual interface.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXTitleAttribute CFSTRP('AXTitle')}
{$endc}
{
kAXValueAttribute
A catch-all attribute that represents a user modifiable setting of an element. For
example, the contents of an editable text field, the position of a scroll bar thumb,
and whether a check box is checked are all communicated by the kAXValueAttribute of
their respective elements.
Value: Varies, but will always be the same type for a given kind of element. Each
role that offers kAXValueAttribute will specify the type of data that will be used
for its value.
Writable? Generally yes. However, it does not need to be writable if some other form
of direct manipulation is more appropriate for causing a value change. For example,
a kAXScrollBar's kAXValueAttribute is writable because it allows an efficient way
for the user to get to a specific position in the element being scrolled. By
contrast, a kAXCheckBox's kAXValueAttribute is not settable because underlying
functionality of the check box widget relies on it being clicked on; therefore, it
changes its own kAXValueAttribute appropriately in response to the kAXPressAction.
Required for many user manipulatable elements, or those whose value state conveys
important information.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXValueAttribute CFSTRP('AXValue')}
{$endc}
{
kAXValueDescriptionAttribute
Used to supplement kAXValueAttribute. This attribute returns a string description that best
describes the current value stored in kAXValueAttribute. This is useful for things like
slider where the numeric value in kAXValueAttribute does not always convey enough information
about the adjustment made on the slider. As an example, a color slider that adjusts thru various
colors cannot be well-described by the numeric value in existing AXValueAttribute. This is where
the kAXValueDescriptionAttribute comes in handy. In this example, the developer can provide the
color information using this attribute.
Value: A localized, human-readable CFStringRef.
Writable? No.
Recommended for elements that support kAXValueAttribute.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXValueDescriptionAttribute CFSTRP('AXValueDescription')}
{$endc}
{
kAXMinValueAttribute
Only used in conjunction with kAXValueAttribute and kAXMaxValueAttribute, this
attribute represents the minimum value that an element can display. This is useful
for things like sliders and scroll bars, where the user needs to have an understanding
of how much the kAXValueAttribute can vary.
Value: Same data type as the element's kAXValueAttribute.
Writable? No.
Required for many user maniipulatable elements. See kAXValueAttribute for more
details.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMinValueAttribute CFSTRP('AXMinValue')}
{$endc}
{
kAXMaxValueAttribute
Only used in conjunction with kAXValueAttribute and kAXMinValueAttribute, this
attribute represents the maximum value that an element can display. This is useful
for things like sliders and scroll bars, where the user needs to have an understanding
of how much the kAXValueAttribute can vary.
Value: Same data type as the element's kAXValueAttribute.
Writable? No.
Required for many user maniipulatable elements. See kAXValueAttribute for more
details.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMaxValueAttribute CFSTRP('AXMaxValue')}
{$endc}
{
kAXValueIncrementAttribute
Only used in conjunction with kAXValueAttribute, this attribute represents the amount
a value will change in one action on the given element. In particular, it is used on
elements of role kAXIncrementorRole in order to give the user an idea of how much its
value will change with a single click on the up or down arrow.
Value: Same data type as the element's kAXValueAttribute.
Writable? No.
Recommended for kAXIncrementorRole and other similar elements.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXValueIncrementAttribute CFSTRP('AXValueIncrement')}
{$endc}
{
kAXAllowedValuesAttribute
An array of the allowed values for a slider or other widget that displays
a large value range, but which can only be set to a small subset of values
within that range.
Value: A CFArrayRef of whatever type the element uses for its kAXValueAttribute.
Writable? No.
Recommended for sliders or other elements that can only be set to a small
set of values.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXAllowedValuesAttribute CFSTRP('AXAllowedValues')}
{$endc}
{
kAXPlaceholderValueAttribute
The value of placeholder text as found in a text field.
Value: A CFStringRef.
Writable? No.
Recommended for text fields and other elements that have a placeholder value.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXPlaceholderValueAttribute CFSTRP('AXPlaceholderValue')}
{$endc}
{
kAXEnabledAttribute
Indicates whether the element can be interacted with by the user. For example,
a disabled push button's kAXEnabledAttribute will be false.
Value: A CFBooleanRef. True means enabled, false means disabled.
Writable? No.
Required for all views, menus, and menu items. Not required for windows.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXEnabledAttribute CFSTRP('AXEnabled')}
{$endc}
{
kAXFocusedAttribute
Indicates whether the element is the current keyboard focus. It should be writable
for any element that can accept keyboard focus, though you can only set the value
of kAXFocusedAttribute to true. You cannot unfocus an element by setting the value
to false. Only one element in a window's entire accessibility hierarchy should be
marked as focused.
Value: A CFBooleanRef. True means focused, false means not focused.
Writable? Yes, for any focusable element. No in all other cases.
Required for any focusable element. Not required for other elements, though it is
often offered for non-focusable elements in a read-only fashion.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXFocusedAttribute CFSTRP('AXFocused')}
{$endc}
{
kAXParentAttribute
Indicates the element's container element in the visual element hierarchy. A push
button's kAXParentElement might be a window element or a group. A sheet's
kAXParentElement will be a window element. A window's kAXParentElement will be the
application element. A menu item's kAXParentElement will be a menu element.
Value: An AXUIElementRef.
Writable? No.
Required for every element except the application. Everything else in the visual
element hierarchy must have a parent.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXParentAttribute CFSTRP('AXParent')}
{$endc}
{
kAXChildrenAttribute
Indicates the sub elements of a given element in the visual element hierarchy. A tab
group's kAXChildrenAttribute is an array of tab radio button elements. A window's
kAXChildrenAttribute is an array of the first-order views elements within the window.
A menu's kAXChildrenAttribute is an array of the menu item elements.
A given element may only be in the child array of one other element. If an element is
in the child array of some other element, the element's kAXParentAttribute must be
the other element.
Value: A CFArrayRef of AXUIElementRefs.
Writable? No.
Required for elements that contain sub elements.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXChildrenAttribute CFSTRP('AXChildren')}
{$endc}
{
kAXSelectedChildrenAttribute
Indicates the selected sub elements of a given element in the visual element hierarchy.
This is a the subset of the element's kAXChildrenAttribute that are selected. This is
commonly used in lists so an assistive app can know which list item are selected.
Value: A CFArrayRef of AXUIElementRefs.
Writable? Only if there is no other way to manipulate the set of selected elements via
accessibilty attributes or actions. Even if other ways exist, this attribute can be
writable as a convenience to assistive applications and their users. If
kAXSelectedChildrenAttribute is writable, a write request with a value of an empty
array should deselect all selected children.
Required for elements that contain selectable sub elements.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSelectedChildrenAttribute CFSTRP('AXSelectedChildren')}
{$endc}
{
kAXVisibleChildrenAttribute
Indicates the visible sub elements of a given element in the visual element hierarchy.
This is a the subset of the element's kAXChildrenAttribute that a sighted user can
see on the screen. In a list element, kAXVisibleChildrenAttribute would be an array
of child elements that are currently scrolled into view.
Value: A CFArrayRef of AXUIElementRefs.
Writable? No.
Recommended for elements whose child elements can be occluded or scrolled out of view.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXVisibleChildrenAttribute CFSTRP('AXVisibleChildren')}
{$endc}
{
kAXWindowAttribute
A short cut for traversing an element's parent hierarchy until an element of role
kAXWindowRole is found. Note that the value for kAXWindowAttribute should not be
an element of role kAXSheetRole or kAXDrawerRole; instead, the value should be the
element of kAXWindowRole that the sheet or drawer is attached to.
Value: an AXUIElementRef of role kAXWindowRole.
Writable? No.
Required for any element that has an element of role kAXWindowRole somewhere
in its parent chain.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXWindowAttribute CFSTRP('AXWindow')}
{$endc}
{
kAXTopLevelUIElementAttribute
This is very much like the kAXWindowAttribute, except that the value of this
attribute can be an element with role kAXSheetRole or kAXDrawerRole. It is
a short cut for traversing an element's parent hierarchy until an element of
role kAXWindowRole, kAXSheetRole, or kAXDrawerRole is found.
Value: An AXUIElementRef of role kAXWindowRole, kAXSheetRole, or kAXDrawerRole.
Writable? No.
Required for any element that has an appropriate element somewhere in its
parent chain.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXTopLevelUIElementAttribute CFSTRP('AXTopLevelUIElement')}
{$endc}
{
kAXPositionAttribute
The global screen position of the top-left corner of an element.
Value: An AXValueRef with type kAXValueCGPointType. 0,0 is the top-left
corner of the screen that displays the menu bar. The value of the horizontal
axis increases to the right. The value of the vertical axis increases
downward. Units are pixels.
Writable? Generally no. However, some elements that can be moved by the user
through direct manipulation (like windows) should offer a writable position
attribute.
Required for all elements that are visible on the screen, which is virtually
all elements.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXPositionAttribute CFSTRP('AXPosition')}
{$endc}
{
kAXSizeAttribute
The vertical and horizontal dimensions of the element.
Value: An AXValueRef with type kAXValueCGSizeType. Units are pixels.
Writable? Generally no. However, some elements that can be resized by the user
through direct manipulation (like windows) should offer a writable size attribute.
Required for all elements that are visible on the screen, which is virtually
all elements.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSizeAttribute CFSTRP('AXSize')}
{$endc}
{
kAXOrientationAttribute
An indication of whether an element is drawn and/or interacted with in a
vertical or horizontal manner. Elements such as scroll bars and sliders offer
the kAXOrientationAttribute.
Value: kAXHorizontalOrientationValue, kAXVerticalOrientationValue, or rarely
kAXUnknownOrientationValue.
Writable? No.
Required for scroll bars, sliders, or other elements whose semantic or
associative meaning changes based on their orientation.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXOrientationAttribute CFSTRP('AXOrientation')}
{$endc}
{
kAXDescriptionAttribute
A localized, human-readable string that indicates an element's purpose in a way
that is slightly more specific than the kAXRoleDescriptionAttribute, but which
is less wordy than the kAXHelpAttribute. Typically, the description should be
an adjective or short phrase that describes the element's usage. For example,
the description of a slider in a font panel might be "font size". The string
should be all lower-case and contain no punctuation.
Value: A localized, human-readable CFStringRef.
Writable? No.
Recommended for all elements because it gives the user a concise indication of
an element's purpose.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXDescriptionAttribute CFSTRP('AXDescription')}
{$endc}
// old name
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXDescription CFSTRP('AXDescription')}
{$endc}
{
kAXSelectedTextAttribute
The selected text of an editable text element.
Value: A CFStringRef with the currently selected text of the element.
Writable? No.
Required for all editable text elements.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSelectedTextAttribute CFSTRP('AXSelectedText')}
{$endc}
{
kAXSelectedTextRangeAttribute
The range of characters (not bytes) that defines the current selection of an
editable text element.
Value: An AXValueRef of type kAXValueCFRange.
Writable? Yes.
Required for all editable text elements.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSelectedTextRangeAttribute CFSTRP('AXSelectedTextRange')}
{$endc}
{
kAXSelectedTextRangesAttribute
An array of noncontiguous ranges of characters (not bytes) that defines the current selections of an
editable text element.
Value: A CFArrayRef of kAXValueCFRanges.
Writable? Yes.
Recommended for text elements that support noncontiguous selections.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSelectedTextRangesAttribute CFSTRP('AXSelectedTextRanges')}
{$endc}
{
kAXVisibleCharacterRangeAttribute
The range of characters (not bytes) that are scrolled into view in the editable
text element.
Value: An AXValueRef of type kAXValueCFRange.
Writable? No.
Required for elements of role kAXTextAreaRole. Not required for any other
elements, including those of role kAXTextFieldRole.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXVisibleCharacterRangeAttribute CFSTRP('AXVisibleCharacterRange')}
{$endc}
{
kAXNumberOfCharactersAttribute
The total number of characters (not bytes) in an editable text element.
Value: CFNumberRef
Writable? No.
Required for editable text elements.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXNumberOfCharactersAttribute CFSTRP('AXNumberOfCharacters')}
{$endc}
{
kAXSharedTextUIElementsAttribute
Value: CFArrayRef of AXUIElementRefs
Writable? No.
Optional?
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSharedTextUIElementsAttribute CFSTRP('AXSharedTextUIElements')}
{$endc}
{
kAXSharedCharacterRangeAttribute
Value: AXValueRef of type kAXValueCFRangeType
Writable? No.
Optional?
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSharedCharacterRangeAttribute CFSTRP('AXSharedCharacterRange')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXInsertionPointLineNumberAttribute CFSTRP('AXInsertionPointLineNumber')}
{$endc}
{
kAXMainAttribute
Whether a window is the main document window of an application. For an active
app, the main window is the single active document window. For an inactive app,
the main window is the single document window which would be active if the app
were active. Main does not necessarily imply that the window has key focus.
Value: A CFBooleanRef. True means the window is main. False means it is not.
Writable? Yes.
Required for all window elements.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMainAttribute CFSTRP('AXMain')}
{$endc}
{
kAXMinimizedAttribute
Whether a window is currently minimized to the dock.
Value: A CFBooleanRef. True means minimized.
Writable? Yes.
Required for all window elements that can be minimized.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMinimizedAttribute CFSTRP('AXMinimized')}
{$endc}
{
kAXCloseButtonAttribute
A convenience attribute so assistive apps can quickly access a window's close
button element.
Value: An AXUIElementRef of the window's close button element.
Writable? No.
Required for all window elements that have a close button.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXCloseButtonAttribute CFSTRP('AXCloseButton')}
{$endc}
{
kAXZoomButtonAttribute
A convenience attribute so assistive apps can quickly access a window's zoom
button element.
Value: An AXUIElementRef of the window's zoom button element.
Writable? No.
Required for all window elements that have a zoom button.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXZoomButtonAttribute CFSTRP('AXZoomButton')}
{$endc}
{
kAXMinimizeButtonAttribute
A convenience attribute so assistive apps can quickly access a window's minimize
button element.
Value: An AXUIElementRef of the window's minimize button element.
Writable? No.
Required for all window elements that have a minimize button.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMinimizeButtonAttribute CFSTRP('AXMinimizeButton')}
{$endc}
{
kAXToolbarButtonAttribute
A convenience attribute so assistive apps can quickly access a window's toolbar
button element.
Value: An AXUIElementRef of the window's toolbar button element.
Writable? No.
Required for all window elements that have a toolbar button.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXToolbarButtonAttribute CFSTRP('AXToolbarButton')}
{$endc}
{
kAXProxyAttribute
A convenience attribute so assistive apps can quickly access a window's document
proxy element.
Value: An AXUIElementRef of the window's document proxy element.
Writable? No.
Required for all window elements that have a document proxy.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXProxyAttribute CFSTRP('AXProxy')}
{$endc}
{
kAXGrowAreaAttribute
A convenience attribute so assistive apps can quickly access a window's grow
area element.
Value: An AXUIElementRef of the window's grow area element.
Writable? No.
Required for all window elements that have a grow area.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXGrowAreaAttribute CFSTRP('AXGrowArea')}
{$endc}
{
kAXModalAttribute
Whether a window is modal.
Value: A CFBooleanRef. True means the window is modal.
Writable? No.
Required for all window elements.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXModalAttribute CFSTRP('AXModal')}
{$endc}
{
kAXDefaultButtonAttribute
A convenience attribute so assistive apps can quickly access a window's default
button element, if any.
Value: An AXUIElementRef of the window's default button element.
Writable? No.
Required for all window elements that have a default button.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXDefaultButtonAttribute CFSTRP('AXDefaultButton')}
{$endc}
{
kAXCancelButtonAttribute
A convenience attribute so assistive apps can quickly access a window's cancel
button element, if any.
Value: An AXUIElementRef of the window's cancel button element.
Writable? No.
Required for all window elements that have a cancel button.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXCancelButtonAttribute CFSTRP('AXCancelButton')}
{$endc}
// menu-specific attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMenuItemCmdCharAttribute CFSTRP('AXMenuItemCmdChar')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMenuItemCmdVirtualKeyAttribute CFSTRP('AXMenuItemCmdVirtualKey')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMenuItemCmdGlyphAttribute CFSTRP('AXMenuItemCmdGlyph')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMenuItemCmdModifiersAttribute CFSTRP('AXMenuItemCmdModifiers')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMenuItemMarkCharAttribute CFSTRP('AXMenuItemMarkChar')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMenuItemPrimaryUIElementAttribute CFSTRP('AXMenuItemPrimaryUIElement')}
{$endc}
// application-specific attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMenuBarAttribute CFSTRP('AXMenuBar')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXWindowsAttribute CFSTRP('AXWindows')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXFrontmostAttribute CFSTRP('AXFrontmost')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXHiddenAttribute CFSTRP('AXHidden')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMainWindowAttribute CFSTRP('AXMainWindow')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXFocusedWindowAttribute CFSTRP('AXFocusedWindow')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXFocusedUIElementAttribute CFSTRP('AXFocusedUIElement')}
{$endc}
{
kAXHeaderAttribute
A convenience attribute whose value is an element that is a header for another
element. For example, an outline element has a header attribute whose value is
a element of role AXGroup that contains the header buttons for each column.
Used for things like tables, outlines, columns, etc.
Value: An AXUIElementRef whose role varies.
Writable? No.
Recommended for elements that have header elements contained within them that an
assistive application might want convenient access to.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXHeaderAttribute CFSTRP('AXHeader')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXEditedAttribute CFSTRP('AXEdited')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXValueWrapsAttribute CFSTRP('AXValueWraps')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXTabsAttribute CFSTRP('AXTabs')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXTitleUIElementAttribute CFSTRP('AXTitleUIElement')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXHorizontalScrollBarAttribute CFSTRP('AXHorizontalScrollBar')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXVerticalScrollBarAttribute CFSTRP('AXVerticalScrollBar')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXOverflowButtonAttribute CFSTRP('AXOverflowButton')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXFilenameAttribute CFSTRP('AXFilename')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXExpandedAttribute CFSTRP('AXExpanded')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSelectedAttribute CFSTRP('AXSelected')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSplittersAttribute CFSTRP('AXSplitters')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXNextContentsAttribute CFSTRP('AXNextContents')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXDocumentAttribute CFSTRP('AXDocument')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXDecrementButtonAttribute CFSTRP('AXDecrementButton')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXIncrementButtonAttribute CFSTRP('AXIncrementButton')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXPreviousContentsAttribute CFSTRP('AXPreviousContents')}
{$endc}
{
kAXContentsAttribute
A convenience attribute so assistive apps can find interesting child elements
of a given element, while at the same time avoiding non-interesting child
elements. For example, the contents of a scroll area are the children that get
scrolled, and not the horizontal and/or vertical scroll bars. The contents of
a tab group does not include the tabs themselves.
Value: A CFArrayRef of AXUIElementRefs.
Writable? No.
Recommended for elements that have children that act upon or are separate from
other children.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXContentsAttribute CFSTRP('AXContents')}
{$endc}
{
kAXIncrementorAttribute
Convenience attribute that yields the incrementor of a time field or date
field element.
Value: A AXUIElementRef of role kAXIncrementorRole.
Writable? No.
Required for time field and date field elements that display an incrementor.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXIncrementorAttribute CFSTRP('AXIncrementor')}
{$endc}
{
kAXHourFieldAttribute
Convenience attribute that yields the hour field of a time field element.
Value: A AXUIElementRef of role kAXTextFieldRole that is used to edit the
hours in a time field element.
Writable? No.
Required for time field elements that display hours.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXHourFieldAttribute CFSTRP('AXHourField')}
{$endc}
{
kAXMinuteFieldAttribute
Convenience attribute that yields the minute field of a time field element.
Value: A AXUIElementRef of role kAXTextFieldRole that is used to edit the
minutes in a time field element.
Writable? No.
Required for time field elements that display minutes.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMinuteFieldAttribute CFSTRP('AXMinuteField')}
{$endc}
{
kAXSecondFieldAttribute
Convenience attribute that yields the seconds field of a time field element.
Value: A AXUIElementRef of role kAXTextFieldRole that is used to edit the
seconds in a time field element.
Writable? No.
Required for time field elements that display seconds.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSecondFieldAttribute CFSTRP('AXSecondField')}
{$endc}
{
kAXAMPMFieldAttribute
Convenience attribute that yields the AM/PM field of a time field element.
Value: A AXUIElementRef of role kAXTextFieldRole that is used to edit the
AM/PM setting in a time field element.
Writable? No.
Required for time field elements that displays an AM/PM setting.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXAMPMFieldAttribute CFSTRP('AXAMPMField')}
{$endc}
{
kAXDayFieldAttribute
Convenience attribute that yields the day field of a date field element.
Value: A AXUIElementRef of role kAXTextFieldRole that is used to edit the
day in a date field element.
Writable? No.
Required for date field elements that display days.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXDayFieldAttribute CFSTRP('AXDayField')}
{$endc}
{
kAXMonthFieldAttribute
Convenience attribute that yields the month field of a date field element.
Value: A AXUIElementRef of role kAXTextFieldRole that is used to edit the
month in a date field element.
Writable? No.
Required for date field elements that display months.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMonthFieldAttribute CFSTRP('AXMonthField')}
{$endc}
{
kAXYearFieldAttribute
Convenience attribute that yields the year field of a date field element.
Value: A AXUIElementRef of role kAXTextFieldRole that is used to edit the
year in a date field element.
Writable? No.
Required for date field elements that display years.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXYearFieldAttribute CFSTRP('AXYearField')}
{$endc}
{
kAXColumnTitleAttribute
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXColumnTitleAttribute CFSTRP('AXColumnTitles')}
{$endc}
{
kAXURLAttribute
Value: A CFURLRef.
Writable? No.
Required for elements that represent a disk or network item.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXURLAttribute CFSTRP('AXURL')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXLabelUIElementsAttribute CFSTRP('AXLabelUIElements')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXLabelValueAttribute CFSTRP('AXLabelValue')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXShownMenuUIElementAttribute CFSTRP('AXShownMenuUIElement')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXServesAsTitleForUIElementsAttribute CFSTRP('AXServesAsTitleForUIElements')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXLinkedUIElementsAttribute CFSTRP('AXLinkedUIElements')}
{$endc}
// table/outline view attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXRowsAttribute CFSTRP('AXRows')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXVisibleRowsAttribute CFSTRP('AXVisibleRows')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSelectedRowsAttribute CFSTRP('AXSelectedRows')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXColumnsAttribute CFSTRP('AXColumns')}
{$endc}
{
kAXVisibleColumnsAttribute
Indicates the visible column sub-elements of a kAXBrowserRole element.
This is the subset of a browser's kAXColumnsAttribute where each column in the
array is one that is currently scrolled into view within the browser. It does
not include any columns that are currently scrolled out of view.
Value: A CFArrayRef of AXUIElementRefs representing the columns of a browser.
The columns will be grandchild elements of the browser, and will generally be
of role kAXScrollArea.
Writable? No.
Required for all browser elements.
}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXVisibleColumnsAttribute CFSTRP('AXVisibleColumns')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSelectedColumnsAttribute CFSTRP('AXSelectedColumns')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSortDirectionAttribute CFSTRP('AXSortDirection')}
{$endc}
// row/column attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXIndexAttribute CFSTRP('AXIndex')}
{$endc}
// outline attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXDisclosingAttribute CFSTRP('AXDisclosing')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXDisclosedRowsAttribute CFSTRP('AXDisclosedRows')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXDisclosedByRowAttribute CFSTRP('AXDisclosedByRow')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXDisclosureLevelAttribute CFSTRP('AXDisclosureLevel')}
{$endc}
// matte attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMatteHoleAttribute CFSTRP('AXMatteHole')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMatteContentUIElementAttribute CFSTRP('AXMatteContentUIElement')}
{$endc}
// ruler attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMarkerUIElementsAttribute CFSTRP('AXMarkerUIElements')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXUnitsAttribute CFSTRP('AXUnits')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXUnitDescriptionAttribute CFSTRP('AXUnitDescription')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMarkerTypeAttribute CFSTRP('AXMarkerType')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXMarkerTypeDescriptionAttribute CFSTRP('AXMarkerTypeDescription')}
{$endc}
// Dock attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXIsApplicationRunningAttribute CFSTRP('AXIsApplicationRunning')}
{$endc}
// search field attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSearchButtonAttribute CFSTRP('AXSearchButton')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXClearButtonAttribute CFSTRP('AXClearButton')}
{$endc}
// system-wide attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXFocusedApplicationAttribute CFSTRP('AXFocusedApplication')}
{$endc}
// grid attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXRowCountAttribute CFSTRP('AXRowCount')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXColumnCountAttribute CFSTRP('AXColumnCount')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXOrderedByRowAttribute CFSTRP('AXOrderedByRow')}
{$endc}
// level indicator attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXWarningValueAttribute CFSTRP('AXWarningValue')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXCriticalValueAttribute CFSTRP('AXCriticalValue')}
{$endc}
// cell-based table attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXSelectedCellsAttribute CFSTRP('AXSelectedCells')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXVisibleCellsAttribute CFSTRP('AXVisibleCells')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXRowHeaderUIElementsAttribute CFSTRP('AXRowHeaderUIElements')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXColumnHeaderUIElementsAttribute CFSTRP('AXColumnHeaderUIElements')}
{$endc}
// cell attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXRowIndexRangeAttribute CFSTRP('AXRowIndexRange')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXColumnIndexRangeAttribute CFSTRP('AXColumnIndexRange')}
{$endc}
// layout area attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXHorizontalUnitsAttribute CFSTRP('AXHorizontalUnits')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXVerticalUnitsAttribute CFSTRP('AXVerticalUnits')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXHorizontalUnitDescriptionAttribute CFSTRP('AXHorizontalUnitDescription')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXVerticalUnitDescriptionAttribute CFSTRP('AXVerticalUnitDescription')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXHandlesAttribute CFSTRP('AXHandles')}
{$endc}
// obsolete/unknown attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXTextAttribute CFSTRP('AXText')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXVisibleTextAttribute CFSTRP('AXVisibleText')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXIsEditableAttribute CFSTRP('AXIsEditable')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXColumnTitlesAttribute CFSTRP('AXColumnTitles')}
{$endc}
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ Parameterized Attributes }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
// Text Suite Parameterized Attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXLineForIndexParameterizedAttribute CFSTRP('AXLineForIndex')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXRangeForLineParameterizedAttribute CFSTRP('AXRangeForLine')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXStringForRangeParameterizedAttribute CFSTRP('AXStringForRange')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXRangeForPositionParameterizedAttribute CFSTRP('AXRangeForPosition')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXRangeForIndexParameterizedAttribute CFSTRP('AXRangeForIndex')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXBoundsForRangeParameterizedAttribute CFSTRP('AXBoundsForRange')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXRTFForRangeParameterizedAttribute CFSTRP('AXRTFForRange')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXAttributedStringForRangeParameterizedAttribute CFSTRP('AXAttributedStringForRange')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXStyleRangeForIndexParameterizedAttribute CFSTRP('AXStyleRangeForIndex')}
{$endc}
// cell-based table parameterized attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXCellForColumnAndRowParameterizedAttribute CFSTRP('AXCellForColumnAndRow')}
{$endc}
// layout area parameterized attributes
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXLayoutPointForScreenPointParameterizedAttribute CFSTRP('AXLayoutPointForScreenPoint')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXLayoutSizeForScreenSizeParameterizedAttribute CFSTRP('AXLayoutSizeForScreenSize')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXScreenPointForLayoutPointParameterizedAttribute CFSTRP('AXScreenPointForLayoutPoint')}
{$endc}
{$ifc USE_CFSTR_CONSTANT_MACROS}
{$definec kAXScreenSizeForLayoutSizeParameterizedAttribute CFSTRP('AXScreenSizeForLayoutSize')}
{$endc}
{$endc} {TARGET_OS_MAC}
{$ifc not defined MACOSALLINCLUDE or not MACOSALLINCLUDE}
end.
{$endc} {not MACOSALLINCLUDE}
|