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
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
|
{
File: HIToolbox/CarbonEventsCore.h
Contains: Carbon Event Manager
Version: HIToolbox-437~1
Copyright: © 1999-2008 by Apple Inc., all rights reserved.
Bugs?: For bug reports, consult the following page on
the World Wide Web:
http://www.freepascal.org/bugs.html
}
{ Pascal Translation: Peter N Lewis, <peter@stairways.com.au>, August 2005 }
{ 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 CarbonEventsCore;
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,CFBase,CGEventTypes,HIGeometry;
{$endc} {not MACOSALLINCLUDE}
{$ifc TARGET_OS_MAC}
{$ALIGN MAC68K}
{======================================================================================}
{ The core data structure of the Carbon Event system }
{======================================================================================}
type
EventRef = ^SInt32; { an opaque type }
EventRefPtr = ^EventRef;
{======================================================================================}
{ EVENT COMMON }
{======================================================================================}
{
* Discussion:
* The following are all errors which can be returned from the
* routines contained in this file.
}
const
{
* This is returned from PostEventToQueue if the event in question is
* already in the queue you are posting it to (or any other queue).
}
eventAlreadyPostedErr = -9860;
{
* You are attempting to modify a target that is currently in use,
* such as when dispatching.
}
eventTargetBusyErr = -9861;
{
* This is obsolete and will be removed.
}
eventClassInvalidErr = -9862;
{
* This is obsolete and will be removed.
}
eventClassIncorrectErr = -9864;
{
* This is what you should return from a kEventClassAccessibility
* event handler when asked to process a directly dispached event
* that would cause your handler proc to not return after more than a
* split-second. This will cause the accessibility engine to defer
* the event until a later time when your handler will be able to
* take all the time it needs without causing timeout problems for
* the assistive application. See kEventClassAccessibility and
* kEventAccessiblePerformNamedAction for more information. You
* should only return this on Mac OS X 10.3 and later; earlier
* versions will treat this like a true failure, which prevents
* assistive applications from getting the functionality they need.
}
eventDeferAccessibilityEventErr = -9865;
{
* Returned from InstallEventHandler if the handler proc you pass is
* already installed for a given event type you are trying to
* register.
}
eventHandlerAlreadyInstalledErr = -9866;
{
* A generic error.
}
eventInternalErr = -9868;
{
* This is obsolete and will be removed.
}
eventKindIncorrectErr = -9869;
{
* The piece of data you are requesting from an event is not present.
}
eventParameterNotFoundErr = -9870;
{
* This is what you should return from an event handler when your
* handler has received an event it doesn't currently want to (or
* isn't able to) handle. If you handle an event, you should return
* noErr from your event handler. Any return value other than
* eventNotHandledErr will cause event handling to stop; the event
* will not be sent to any other event handler, and the return value
* will be provided to the original caller of SendEventToTarget.
}
eventNotHandledErr = -9874;
{
* The event loop has timed out. This can be returned from calls to
* ReceiveNextEvent or RunCurrentEventLoop.
}
eventLoopTimedOutErr = -9875;
{
* The event loop was quit, probably by a call to QuitEventLoop. This
* can be returned from ReceiveNextEvent or RunCurrentEventLoop.
}
eventLoopQuitErr = -9876;
{
* Returned from RemoveEventFromQueue when trying to remove an event
* that's not in any queue.
}
eventNotInQueueErr = -9877;
{
* Returned from RegisterEventHotKey when an attempt is made to
* register a hotkey that is already registered in the current
* process. (Note that it is not an error to register the same hotkey
* in multiple processes.) Also returned if an attempt is made to
* register a hotkey using the kEventHotKeyExclusive option when
* another process has already registered the same hotkey with the
* kEventHotKeyExclusive option.
}
eventHotKeyExistsErr = -9878;
{
* This error code is not currently used.
}
eventHotKeyInvalidErr = -9879;
{
* When returned from an event handler, causes the event dispatcher
* to abandon event dispatching on this target, and pass the event to
* the first handler on the next event target. Any event handlers
* installed beneath the current handler on the current target will
* not receive the event. Although newly documented in Mac OS X 10.3,
* this error code is actually available on Mac OS X 10.0 and
* CarbonLib 1.3 and later.
}
eventPassToNextTargetErr = -9880;
{======================================================================================}
{ EVENT CORE }
{======================================================================================}
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Core Event Parameters }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
const
kEventParamDirectObject = FourCharCode('----'); { type varies depending on event}
kEventParamDragRef = FourCharCode('drag'); { typeDragRef}
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Core Event Types }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
Some Carbon event data types will be retained when added to an EventRef in
Mac OS X 10.2 and later, and released when the EventRef is destroyed.
Retained in 10.2 and later:
typeCFStringRef
typeCFMutableStringRef
typeCFMutableArrayRef
typeCFTypeRef
typeHIAccessibleObjectRef
Retained in 10.3 and later:
typeEventRef
typeCFArrayRef
typeCFDictionaryRef:
typeCFMutableDictionaryRef
Retained in 10.4 and later:
typeHIShapeRef
typeMenuRef
Retained in 10.5 and later:
typeCTFontRef
typeCTGlyphInfoRef
typeCFAttributedStringRef
Note that other data types may be retained in future releases of Mac OS X.
Apple recommends that if you need to know whether a particular data type
(other than the ones documented here) is retained, that you check the retain
count of an instance of that data type before and after adding it to an EventRef.
}
const
typeDragRef = FourCharCode('drag'); { DragRef}
typeCTFontRef = FourCharCode('ctfr'); { CTFontRef}
typeCTGlyphInfoRef = FourCharCode('ctgi'); { CTGlyphInfoRef}
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Event Flags, options }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* EventPriority
*
* Discussion:
* These values define the relative priority of an event, and are
* used when posting events with PostEventToQueue. In general events
* are pulled from the queue in order of first posted to last
* posted. These priorities are a way to alter that when posting
* events. You can post a standard priority event and then a high
* priority event and the high priority event will be pulled from
* the queue first.
}
type
EventPriority = SInt16;
const
{
* Lowest priority. Currently only window update events are posted at
* this priority.
}
kEventPriorityLow = 0;
{
* Normal priority of events. Most events are standard priority.
}
kEventPriorityStandard = 1;
{
* Highest priority.
}
kEventPriorityHigh = 2;
const
kEventLeaveInQueue = false;
kEventRemoveFromQueue = true;
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Event Times }
{ EventTime is in seconds since boot. Use the constants to make life easy. }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
type
EventTime = Float64;
EventTimePtr = ^EventTime;
type
EventTimeout = EventTime;
EventTimeoutPtr = ^EventTimeout;
type
EventTimerInterval = EventTime;
EventTimerIntervalPtr = ^EventTimerInterval;
const
kEventDurationSecond = 1.0;
kEventDurationMillisecond = kEventDurationSecond/1000;
kEventDurationMicrosecond = kEventDurationSecond/1000000;
kEventDurationNanosecond = kEventDurationSecond/1000000000;
kEventDurationMinute = kEventDurationSecond*60;
kEventDurationHour = kEventDurationMinute*60;
kEventDurationDay = kEventDurationHour*24;
kEventDurationNoWait = 0.0;
kEventDurationForever = -1.0;
{ Helpful doodads to convert to and from ticks and event times}
// #define TicksToEventTime( t ) ((EventTime)( (t) / 60.0 ))
// #define EventTimeToTicks( t ) ((UInt32)( ((t) * 60) + 0.5 ))
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ EventTypeSpec structure }
{ This structure is used in many routines to pass a list of event types to a function. }
{ You typically would declare a const array of these types to pass in. }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* EventTypeSpec
*
* Discussion:
* This structure is used to specify an event. Typically, a static
* array of EventTypeSpecs are passed into functions such as
* InstallEventHandler, as well as routines such as
* FlushEventsMatchingListFromQueue.
}
type
EventTypeSpec = record
eventClass: OSType;
eventKind: UInt32;
end;
EventTypeSpecPtr = ^EventTypeSpec;
{A helpful macro for dealing with EventTypeSpecs }
// #define GetEventTypeCount( t ) (sizeof( (t) ) / sizeof( EventTypeSpec ))
type
EventParamName = OSType;
EventParamNamePtr = ^EventParamName;
EventParamType = OSType;
EventParamTypePtr = ^EventParamType;
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ EventLoop }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* EventLoopRef
*
* Discussion:
* An EventLoopRef represents an 'event loop', which is the
* conceptual entity that you 'run' to fetch events from hardware
* and other sources and also fires timers that might be installed
* with InstallEventLoopTimer. The term 'run' is a bit of a
* misnomer, as the event loop's goal is to stay as blocked as
* possible to minimize CPU usage for the current application. The
* event loop is run implicitly thru APIs like ReceiveNextEvent,
* RunApplicationEventLoop, or even WaitNextEvent. It can also be
* run explicitly thru a call to RunCurrentEventLoop. Each
* preemptive thread can have an event loop. Cooperative threads
* share the main thread's event loop.
}
type
EventLoopRef = ^SInt32; { an opaque type }
{
* GetCurrentEventLoop()
*
* Discussion:
* Returns the current event loop for the current thread. If the
* current thread is a cooperative thread, the main event loop is
* returned.
*
* Mac OS X threading:
* Thread safe
*
* Result:
* An event loop reference.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function GetCurrentEventLoop: EventLoopRef; external name '_GetCurrentEventLoop';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* GetMainEventLoop()
*
* Discussion:
* Returns the event loop object for the main application thread.
*
* Mac OS X threading:
* Thread safe
*
* Result:
* An event loop reference.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function GetMainEventLoop: EventLoopRef; external name '_GetMainEventLoop';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* RunCurrentEventLoop()
*
* Discussion:
* This routine 'runs' the event loop, returning only if aborted or
* the timeout specified is reached. The event loop is mostly
* blocked while in this function, occasionally waking up to fire
* timers or pick up events. The typical use of this function is to
* cause the current thread to wait for some operation to complete,
* most likely on another thread of execution.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inTimeout:
* The time to wait until returning (can be kEventDurationForever).
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function RunCurrentEventLoop( inTimeout: EventTimeout ): OSStatus; external name '_RunCurrentEventLoop';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* QuitEventLoop()
*
* Discussion:
* Causes a specific event loop to terminate. Usage of this is
* similar to WakeUpProcess, in that it causes the eventloop
* specified to return immediately (as opposed to timing out).
* Typically this call is used in conjunction with
* RunCurrentEventLoop.
*
* Note that this call is meant to be used while the event loop is
* running; i.e., you would typically call this API from a timer
* callback or some other callback that is invoked by
* RunCurrentEventLoop or ReceiveNextEvent. This API has no effect
* if it is called while you are not inside the event loop.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inEventLoop:
* The event loop to terminate.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function QuitEventLoop( inEventLoop: EventLoopRef ): OSStatus; external name '_QuitEventLoop';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* GetCFRunLoopFromEventLoop()
*
* Discussion:
* Returns the corresponding CFRunLoopRef for the given EventLoop.
* This is not necessarily a one-to-one mapping, hence the need for
* this function. In Carbon, all cooperative threads use the same
* run loop under the covers, so using CFRunLoopGetCurrent might
* yield the wrong result. In general, you would only need to use
* this function if you wished to add your own sources to the run
* loop. If you don't know what I'm talking about, then you probably
* don't need to use this.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inEventLoop:
* The event loop to get the CFRunLoop for.
*
* Result:
* The CFRunLoopRef for inEventLoop.
*
* Availability:
* Mac OS X: in version 10.1 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.1 and later
* Non-Carbon CFM: not available
}
function GetCFRunLoopFromEventLoop( inEventLoop: EventLoopRef ): CFTypeRef; external name '_GetCFRunLoopFromEventLoop';
(* AVAILABLE_MAC_OS_X_VERSION_10_1_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Low-level event fetching }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* ReceiveNextEvent()
*
* Discussion:
* This routine tries to fetch the next event of a specified type.
* If no events in the event queue match, this routine will run the
* current event loop until an event that matches arrives, or the
* timeout expires. Except for timers firing, your application is
* blocked waiting for events to arrive when inside this function.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inNumTypes:
* The number of event types we are waiting for (0 if any event
* should cause this routine to return).
*
* inList:
* The list of event types we are waiting for (pass NULL if any
* event should cause this routine to return).
*
* inTimeout:
* The time to wait (passing kEventDurationForever is preferred).
*
* inPullEvent:
* Pass true for this parameter to actually remove the next
* matching event from the queue.
*
* outEvent:
* The next event that matches the list passed in. If inPullEvent
* is true, the event is owned by you, and you will need to
* release it when done.
*
* Result:
* A result indicating whether an event was received, the timeout
* expired, or the current event loop was quit.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function ReceiveNextEvent( inNumTypes: ItemCount; {const} inList: {variable-size-array} EventTypeSpecPtr; inTimeout: EventTimeout; inPullEvent: Boolean; var outEvent: EventRef ): OSStatus; external name '_ReceiveNextEvent';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Core event lifetime APIs }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* EventAttributes
*
* Summary:
* Attributes of a Carbon event.
}
type
EventAttributes = UInt32;
const
{
* The absence of any attributes.
}
kEventAttributeNone = 0;
{
* Indicates that the event is considered user input; for example, a
* mouse event or keyboard event. Not appropriate for higher-level
* events such as a window update or activate.
}
kEventAttributeUserEvent = 1 shl 0;
{
* This event was not originally targeted to this process, but has
* been provided to this process because someone has installed an
* event handler for this event type on the event monitoring target.
* Events with this attribute are sent directly to the event monitor
* target by the event dispatcher.
}
kEventAttributeMonitored = 1 shl 3;
{
* [Mac]CreateEvent()
*
* Summary:
* Creates a new Carbon event.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inAllocator:
* The CFAllocator to use to allocate the event data. You can pass
* NULL or kCFAllocatorDefault to use the standard allocator.
*
* inClassID:
* The event class for the event.
*
* inKind:
* The event kind for the event.
*
* inWhen:
* The event timestamp to be recorded in the event. You may pass 0
* to indicate the current time.
*
* inAttributes:
* The event attributes. Typically this should be
* kEventAttributeNone.
*
* outEvent:
* On exit, contains the new event.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function CreateEvent( inAllocator: CFAllocatorRef { can be NULL }; inClassID: OSType; inKind: UInt32; inWhen: EventTime; inAttributes: EventAttributes; var outEvent: EventRef ): OSStatus; external name '_CreateEvent';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
function MacCreateEvent__NAMED_CreateEvent( inAllocator: CFAllocatorRef { can be NULL }; inClassID: OSType; inKind: UInt32; inWhen: EventTime; inAttributes: EventAttributes; var outEvent: EventRef ): OSStatus; external name '_MacCreateEvent__NAMED_CreateEvent';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* CopyEvent()
*
* Summary:
* Copies an existing event.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inOther:
* The original event to copy.
*
* Result:
* The newly created event, or NULL if either the input event was
* NULL or the memory for the event could not be allocated. The new
* event is allocated using the same allocator as the original event.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function CopyEvent( inOther: EventRef ): EventRef; external name '_CopyEvent';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* CopyEventAs()
*
* Summary:
* Copies an existing event, allowing you to change the class and
* kind of the event.
*
* Discussion:
* CopyEventAs may be useful during event flow and transformation.
* For example, this API is used when upgrading a raw mouse down to
* a window click event, to ensure that the window click event has
* exactly the same parameters as the original mouse down event.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inAllocator:
* The CFAllocator to use to allocate the event data. You can pass
* NULL or kCFAllocatorDefault to use the standard allocator.
*
* inOther:
* The original event to copy.
*
* inEventClass:
* The new event class for the copy of the event.
*
* inEventKind:
* The new event kind for the copy of the event.
*
* Result:
* The newly created event, or NULL if either the input event was
* NULL or the memory for the event could not be allocated.
*
* Availability:
* Mac OS X: in version 10.3 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.3 and later
* Non-Carbon CFM: not available
}
function CopyEventAs( inAllocator: CFAllocatorRef { can be NULL }; inOther: EventRef; inEventClass: OSType; inEventKind: UInt32 ): EventRef; external name '_CopyEventAs';
(* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
{
* RetainEvent()
*
* Summary:
* Increments the retain count of an event.
*
* Discussion:
* Note that EventRefs are not CoreFoundation types, and therefore
* you cannot use CFRetain on an EventRef; you must use RetainEvent.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inEvent:
* The event to retain.
*
* Result:
* The event that was retained.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function RetainEvent( inEvent: EventRef ): EventRef; external name '_RetainEvent';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* GetEventRetainCount()
*
* Summary:
* Returns the retain count of an event.
*
* Discussion:
* Note that EventRefs are not CoreFoundation types, and therefore
* you cannot use CFGetRetainCount on an EventRef; you must use
* GetEventRetainCount.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inEvent:
* The event whose retain count to return.
*
* Result:
* The event's retain count.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function GetEventRetainCount( inEvent: EventRef ): ItemCount; external name '_GetEventRetainCount';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* ReleaseEvent()
*
* Summary:
* Decrements the retain count of an event. If the retain count
* reaches zero, the event is destroyed.
*
* Discussion:
* Note that EventRefs are not CoreFoundation types, and therefore
* you cannot use CFRelease on an EventRef; you must use
* ReleaseEvent.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inEvent:
* The event to release.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
procedure ReleaseEvent( inEvent: EventRef ); external name '_ReleaseEvent';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* SetEventParameter()
*
* Summary:
* Sets a piece of data for the given event.
*
* Discussion:
* SetEventParameter is thread-safe to the extent of allowing
* multiple threads to each modify a separate event, but it is not
* safe to have multiple threads call SetEventParameter on the same
* event. Multiple threads modifying the same event can cause
* corruption of the event data.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inEvent:
* The event to set the data for.
*
* inName:
* The symbolic name of the parameter.
*
* inType:
* The symbolic type of the parameter.
*
* inSize:
* The size of the parameter data.
*
* inDataPtr:
* The pointer to the parameter data.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function SetEventParameter( inEvent: EventRef; inName: EventParamName; inType: EventParamType; inSize: ByteCount; inDataPtr: {const} UnivPtr ): OSStatus; external name '_SetEventParameter';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* GetEventParameter()
*
* Discussion:
* Gets a piece of data from the given event, if it exists.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inEvent:
* The event to get the parameter from.
*
* inName:
* The symbolic name of the parameter.
*
* inDesiredType:
* The desired type of the parameter. The Carbon Event Manager
* will automatically use AppleEvent coercion handlers to convert
* the data in the event into the desired type, if possible. You
* may also pass typeWildCard to request that the data be returned
* in its original format.
*
* outActualType:
* The actual type of the parameter, or NULL if you are not
* interested in receiving this information.
*
* inBufferSize:
* The size of the output buffer specified by ioBuffer. You may
* pass zero for this parameter and NULL for the outData parameter
* if you don't want the data returned.
*
* outActualSize:
* The actual size of the data, or NULL if you don't want this
* information.
*
* outData:
* The pointer to the buffer which will receive the parameter
* data, or NULL if you don't want the data returned. If you pass
* NULL, you must also pass zero for the inBufferSize parameter.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function GetEventParameter( inEvent: EventRef; inName: EventParamName; inDesiredType: EventParamType; outActualType: EventParamTypePtr { can be NULL }; inBufferSize: ByteCount; outActualSize: ByteCountPtr { can be NULL }; outData: UnivPtr { can be NULL } ): OSStatus; external name '_GetEventParameter';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* RemoveEventParameter()
*
* Summary:
* Removes a piece of data from the given event, if it exists.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inEvent:
* The event to remove the data from.
*
* inName:
* The symbolic name of the parameter.
*
* Result:
* An operating system result code. eventParameterNotFoundErr is
* returned if the specified parameter is not present in the event.
*
* Availability:
* Mac OS X: in version 10.5 and later in Carbon.framework
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function RemoveEventParameter( inEvent: EventRef; inName: EventParamName ): OSStatus; external name '_RemoveEventParameter';
(* AVAILABLE_MAC_OS_X_VERSION_10_5_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Getters for 'base-class' event info }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* GetEventClass()
*
* Discussion:
* Returns the class of the given event, such as mouse, keyboard,
* etc.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inEvent:
* The event in question.
*
* Result:
* The class ID of the event.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function GetEventClass( inEvent: EventRef ): OSType; external name '_GetEventClass';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* GetEventKind()
*
* Discussion:
* Returns the kind of the given event (mousedown, etc.). Event
* kinds overlap between event classes, e.g. kEventMouseDown and
* kEventAppActivated have the same value (1). The combination of
* class and kind is what determines an event signature.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inEvent:
* The event in question.
*
* Result:
* The kind of the event.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function GetEventKind( inEvent: EventRef ): UInt32; external name '_GetEventKind';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* GetEventTime()
*
* Discussion:
* Returns the time the event specified occurred, specified in
* EventTime, which is a floating point number representing seconds
* since the last system startup.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inEvent:
* The event in question.
*
* Result:
* The time the event occurred.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function GetEventTime( inEvent: EventRef ): EventTime; external name '_GetEventTime';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Setters for 'base-class' event info }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* SetEventTime()
*
* Discussion:
* This routine allows you to set the time of a given event, if you
* so desire. In general, you would never use this routine, except
* for those special cases where you reuse an event from time to
* time instead of creating a new event each time.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inEvent:
* The event in question.
*
* inTime:
* The new time.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function SetEventTime( inEvent: EventRef; inTime: EventTime ): OSStatus; external name '_SetEventTime';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ CGEventRef support }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* CreateEventWithCGEvent()
*
* Summary:
* Creates a Carbon event using the contents of a CGEventRef. The
* event class and kind are determined by the type of CGEventRef
* that is passed, and cannot be specified by the caller. The event
* timestamp is copied from the CGEventRef timestamp.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inAllocator:
* The CFAllocator to use to allocate the event data. You can pass
* NULL or kCFAllocatorDefault to use the standard allocator.
*
* inEvent:
* The CGEventRef from which the Carbon event should be created.
* This parameter will be retained by the Carbon event, and
* released when the Carbon event is released.
*
* inAttributes:
* The event attributes. Typically this should be
* kEventAttributeNone.
*
* outEvent:
* On exit, if this function returns noErr, then the new event
* will be written to this location.
*
* Result:
* An operating system result code, including paramErr if the
* CGEventRef is not of a type that can be converted into a Carbon
* event.
*
* Availability:
* Mac OS X: in version 10.5 and later in Carbon.framework
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function CreateEventWithCGEvent( inAllocator: CFAllocatorRef; inEvent: CGEventRef; inAttributes: EventAttributes; var outEvent: EventRef ): OSStatus; external name '_CreateEventWithCGEvent';
(* AVAILABLE_MAC_OS_X_VERSION_10_5_AND_LATER *)
{
* CopyEventCGEvent()
*
* Summary:
* Returns the CGEventRef associated with a Carbon event, or NULL if
* the event has no CGEventRef.
*
* Discussion:
* This API returns the CGEventRef associated with a Carbon event if
* the Carbon event was originally created using a CGEventRef.
* Typically, this only applies to user-input Carbon events such as
* keyboard and mouse events. Carbon events that were created using
* CreateEvent do not have a CGEventRef associated with them; for
* example, kEventWindowUpdate has no CGEventRef. For such events,
* this API returns NULL.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inEvent:
* The Carbon event whose CGEventRef you would like.
*
* Result:
* The CGEventRef associated with the Carbon event, or NULL if the
* event has no CGEventRef. If a CGEventRef is returned, then it has
* been retained by this function, and should be released by the
* caller.
*
* Availability:
* Mac OS X: in version 10.5 and later in Carbon.framework
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function CopyEventCGEvent( inEvent: EventRef ): CGEventRef; external name '_CopyEventCGEvent';
(* AVAILABLE_MAC_OS_X_VERSION_10_5_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Event Queue routines (posting, finding, flushing) }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
type
EventQueueRef = ^SInt32; { an opaque type }
{
* GetCurrentEventQueue()
*
* Discussion:
* Returns the current event queue for the current thread. If the
* current thread is a cooperative thread, the main event queue is
* returned.
*
* Mac OS X threading:
* Thread safe
*
* Result:
* An event queue reference.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function GetCurrentEventQueue: EventQueueRef; external name '_GetCurrentEventQueue';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* GetMainEventQueue()
*
* Discussion:
* Returns the event queue object for the main application thread.
*
*
* GetMainEventQueue is threadsafe in Mac OS X 10.4 and later. On
* earlier versions of Mac OS X, you should call GetMainEventQueue
* once before creating any other threads if those other threads
* will be calling GetMainEventQueue themselves.
*
* Mac OS X threading:
* Thread safe since version 10.4
*
* Result:
* An event queue reference.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function GetMainEventQueue: EventQueueRef; external name '_GetMainEventQueue';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* EventComparatorProcPtr
*
* Discussion:
* Type of a callback function used by queue searches.
*
* Parameters:
*
* inEvent:
* The event to compare.
*
* inCompareData:
* The data used to compare the event.
*
* Result:
* A boolean value indicating whether the event matches (true) or
* not (false).
}
type
EventComparatorProcPtr = function( inEvent: EventRef; inCompareData: UnivPtr ): Boolean;
type
EventComparatorUPP = EventComparatorProcPtr;
{
* NewEventComparatorUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
function NewEventComparatorUPP( userRoutine: EventComparatorProcPtr ): EventComparatorUPP; external name '_NewEventComparatorUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* DisposeEventComparatorUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
procedure DisposeEventComparatorUPP( userUPP: EventComparatorUPP ); external name '_DisposeEventComparatorUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* InvokeEventComparatorUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
function InvokeEventComparatorUPP( inEvent: EventRef; inCompareData: UnivPtr; userUPP: EventComparatorUPP ): Boolean; external name '_InvokeEventComparatorUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* PostEventToQueue()
*
* Discussion:
* Posts an event to the specified queue and increments the event's
* retain count. This automatically wakes up the event loop of the
* thread to which the queue belongs. After posting the event, you
* may release the event, since it is retained by the queue. If the
* event is already contained in any event queue,
* eventAlreadyPostedErr will be returned and the event will not be
* posted.
*
* If the event is posted to the main event queue, then the event
* will be retrieved and dispatched by a subsequent call to the
* event loop by the main thread. If the event is posted to an event
* queue of a non-main thread, then that thread must be running its
* own event loop (calling ReceiveNextEvent and dispatching the
* event) for the event to be removed and dispatched.
*
* If the event uses a standard event class (such as
* kEventClassWindow), then the event dispatcher will send the event
* to an appropriate event target (such as the specified window); if
* the event uses a custom event class, then the event dispatcher
* will send the event to the application target.
*
* For custom event classes, you may specify a destination event
* target other than the application target by adding the
* kEventParamPostTarget event parameter to the event before posting
* it. The parameter should contain the event target to which the
* event should be sent. You may specify custom event target sending
* options by adding the kEventParamPostOptions event parameter to
* the event.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inQueue:
* The event queue to post the event onto.
*
* inEvent:
* The event to post.
*
* inPriority:
* The priority of the event.
*
* Result:
* An operating system result code. eventAlreadyPostedErr is
* returned if the event is already contained in any event queue,
* and in this case the event will not be posted.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function PostEventToQueue( inQueue: EventQueueRef; inEvent: EventRef; inPriority: EventPriority ): OSStatus; external name '_PostEventToQueue';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* FlushEventsMatchingListFromQueue()
*
* Discussion:
* Flushes events matching a specified list of classes and kinds
* from an event queue.
*
* This API may be safely used by any thread to flush the events
* from that thread's event queue. Prior to Mac OS X 10.5, it is
* unsafe to call this API from any thread other than the main
* thread when flushing the main event queue. The main event queue
* may be flushed from any thread in Mac OS X 10.5 and later.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inQueue:
* The event queue to flush events from.
*
* inNumTypes:
* The number of event kinds to flush.
*
* inList:
* The list of event classes and kinds to flush from the queue.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function FlushEventsMatchingListFromQueue( inQueue: EventQueueRef; inNumTypes: ItemCount; {const} inList: {variable-size-array} EventTypeSpecPtr ): OSStatus; external name '_FlushEventsMatchingListFromQueue';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* FlushSpecificEventsFromQueue()
*
* Discussion:
* Flushes events that match a comparator function.
*
* This API may be safely used by any thread to flush the events
* from that thread's event queue. Prior to Mac OS X 10.5, it is
* unsafe to call this API from any thread other than the main
* thread when flushing the main event queue. The main event queue
* may be flushed from any thread in Mac OS X 10.5 and later.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inQueue:
* The event queue to flush events from.
*
* inComparator:
* The comparison function to invoke for each event in the queue.
*
* inCompareData:
* The data you wish to pass to your comparison function.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function FlushSpecificEventsFromQueue( inQueue: EventQueueRef; inComparator: EventComparatorUPP; inCompareData: UnivPtr ): OSStatus; external name '_FlushSpecificEventsFromQueue';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* FlushEventQueue()
*
* Discussion:
* Flushes all events from an event queue.
*
* This API may be safely used by any thread to flush the events
* from that thread's event queue. Prior to Mac OS X 10.5, it is
* unsafe to call this API from any thread other than the main
* thread when flushing the main event queue. The main event queue
* may be flushed from any thread in Mac OS X 10.5 and later.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inQueue:
* The event queue to flush.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function FlushEventQueue( inQueue: EventQueueRef ): OSStatus; external name '_FlushEventQueue';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* FindSpecificEventInQueue()
*
* Discussion:
* Returns the first event that matches a comparator function, or
* NULL if no events match.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inQueue:
* The event queue to search.
*
* inComparator:
* The comparison function to invoke for each event in the queue.
*
* inCompareData:
* The data you wish to pass to your comparison function.
*
* Result:
* An event reference. The event is still in the queue when
* FindSpecificEventInQueue returns; you can remove it from the
* queue with RemoveEventFromQueue. The returned event does not need
* to be released by the caller.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function FindSpecificEventInQueue( inQueue: EventQueueRef; inComparator: EventComparatorUPP; inCompareData: UnivPtr ): EventRef; external name '_FindSpecificEventInQueue';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* GetNumEventsInQueue()
*
* Discussion:
* Returns the number of events in an event queue.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inQueue:
* The event queue to query.
*
* Result:
* The number of items in the queue.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function GetNumEventsInQueue( inQueue: EventQueueRef ): ItemCount; external name '_GetNumEventsInQueue';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* RemoveEventFromQueue()
*
* Discussion:
* Removes the given event from the specified queue and decrements
* the event's retain count. If it was your intention to hold onto
* the event, you must retain the event before removing it from the
* queue.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inQueue:
* The queue to remove the event from.
*
* inEvent:
* The event to remove.
*
* Result:
* An operating system result code. eventNotInQueueErr is returned
* if the event is not actually contained in the specified queue.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function RemoveEventFromQueue( inQueue: EventQueueRef; inEvent: EventRef ): OSStatus; external name '_RemoveEventFromQueue';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* IsEventInQueue()
*
* Discussion:
* Returns true if the specified event is posted to a queue.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inQueue:
* The queue to check.
*
* inEvent:
* The event in question.
*
* Result:
* A boolean value.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function IsEventInQueue( inQueue: EventQueueRef; inEvent: EventRef ): Boolean; external name '_IsEventInQueue';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
const
{
* Currently, the only value you can pass to
* AcquireFirstMatchingEventInQueue in its inOptions parameter.
}
kEventQueueOptionsNone = 0;
{
* AcquireFirstMatchingEventInQueue()
*
* Discussion:
* Returns the first event that matches the list of event classes
* and kinds passed in. This call does not call the event loop, and
* hence no timers will fire nor will any window flushing occur when
* this API is called. New events will be pulled from the window
* server, however. Overall this API should have better performance
* characteristics than the older EventAvail API.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inQueue:
* The queue to check.
*
* inNumTypes:
* The number of event kinds to search for. You may pass zero for
* this parameter if you also pass NULL for inList.
*
* inList:
* The list of event classes and kinds to search for in the queue.
* You may pass NULL for this parameter if you also pass zero for
* inNumTypes. This effectively matches ANY event in the queue,
* and will merely return the first event in the queue.
*
* inOptions:
* Currently, you must pass kEventQueueOptionsNone for this
* parameter.
*
* Result:
* An event reference, or NULL if no events match the list passed.
* The event returned has had its refcount incremented (i.e. it has
* been retained). As a result, you must release this value
* (assuming it's non-NULL). The event is not removed from the queue
* by this API; you should call RemoveEventFromQueue if necessary.
*
* Availability:
* Mac OS X: in version 10.3 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.3 and later
* Non-Carbon CFM: not available
}
function AcquireFirstMatchingEventInQueue( inQueue: EventQueueRef; inNumTypes: ItemCount; {const} inList: {variable-size-array} EventTypeSpecPtr; inOptions: OptionBits ): EventRef; external name '_AcquireFirstMatchingEventInQueue';
(* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ Queue-synchronized event and input device state }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* GetCurrentEvent()
*
* Summary:
* Returns the user input event currently being handled.
*
* Discussion:
* When an event with kEventAttributeUserEvent is dispatched by the
* event dispatcher target, it is recorded internally by the Event
* Manager. At any time during the handling of that event (or of any
* other event which is created and sent during the handling of the
* original event), GetCurrentEvent may be used to retrieve the
* original EventRef.
*
* Mac OS X threading:
* Not thread safe
*
* Result:
* The user input (mouse or keyboard) event currently being handled.
* May be NULL if no event is currently being handled, or if the
* current event was not a user input event. The returned event is
* not retained, and its lifetime should be considered to be no
* longer than the current function; if you need to keep the event
* alive past that time, you should retain it.
*
* Availability:
* Mac OS X: in version 10.2 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later
* Non-Carbon CFM: not available
}
function GetCurrentEvent: EventRef; external name '_GetCurrentEvent';
(* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *)
{
* GetCurrentEventButtonState()
*
* Summary:
* Returns the current queue-synchronized mouse button state on the
* primary input device.
*
* Discussion:
* At any point in the handling of user input, there are two
* different mouse button states: the queue-synchronized state and
* the hardware state. The hardware state reflects the actual
* current state of the mouse attached to the user's machine. The
* queue-synchronized state reflects the state according to the
* events that have been processed at that point by the application.
* These two states may be different if there are unprocessed events
* in the event queue, or if events are being artificially
* introduced into the event queue from an outside source.
* GetCurrentEventButtonState returns the queue-synchronized button
* state. This state is determined by user input events that are
* sent through the event dispatcher target; whenever a user input
* event (mouse or keyboard) is handled by the Carbon event
* dispatcher, its button state is recorded, and that button state
* will be returned by GetCurrentEventButtonState.
*
* The "current event" referenced in the API name is the event most
* recently dispatched through the event dispatcher target, which is
* not necessarily the event that your event handler is handling.
* For example, if a mouse-down event occurs, and you have a handler
* for the kEventWindowHandleContentClick event that is generated
* from the mouse-down, then the button state will be that which was
* attached to the mouse-down. The ContentClick event itself does
* also have MouseButton and MouseChord parameters, which are copied
* from the the mouse-down event, but GetCurrentEventButtonState
* returns the button state from the mouse-down, not from the
* ContentClick event, since it was the mouse-down that was most
* recently dispatched through the event dispatcher. Usually, this
* is the behavior that you want anyways.
*
* Note that events that are not sent through the event dispatcher
* target will not update the current event button state. Also, note
* that events arriving from outside the application, such as an
* AppleEvent or an Accessibility event, also will not update the
* modifiers. If your application modifies its behavior based on
* button state, we recommend that you parameterize your core code
* with the event buttons, and determine the button state based on
* the origin of the behavior request. For a request that originates
* directly from user input, you can use GetCurrentEventButtonState,
* but for a request that originates from an AppleEvent or
* Accessibility event, you would probably use no button state, or
* perhaps just left-button-pressed.
*
* It is generally better to use this API than to use the Button
* function or the GetCurrentButtonState function (which return the
* hardware state). This gives a more consistent user experience
* when the user input queue is being remoted controlled or
* manipulated via non-hardware event sources such as speech or
* AppleEvents; using GetCurrentEventButtonState is also much faster
* than using Button or GetCurrentButtonState.
*
* Note that GetCurrentEventButtonState only returns a valid button
* state if your application is the active application. If your
* application is not active, then user input events are not flowing
* through the event dispatcher and the queue-synchronized state is
* not updated.
*
* Mac OS X threading:
* Not thread safe
*
* Result:
* The queue-synchronized state of the mouse buttons. Bit zero
* indicates the state of the primary button, bit one the state of
* the secondary button, and so on.
*
* Availability:
* Mac OS X: in version 10.2 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later
* Non-Carbon CFM: not available
}
function GetCurrentEventButtonState: UInt32; external name '_GetCurrentEventButtonState';
(* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *)
{
* GetCurrentEventKeyModifiers()
*
* Summary:
* Returns the current queue-synchronized keyboard modifier state.
*
* Discussion:
* At any point in the handling of user input, there are two
* different keyboard modifier states: the queue-synchronized state
* and the hardware state. The hardware state reflects the actual
* current state of the keyboard attached to the user's machine. The
* queue-synchronized state reflects the state according to the
* events that have been processed at that point by the application.
* These two states may be different if there are unprocessed events
* in the event queue, or if events are being artificially
* introduced into the event queue from an outside source.
* GetCurrentEventKeyModifiers returns the queue-synchronized
* modifier state. This state is determined by user input events
* that are sent through the event dispatcher target; whenever a
* user input event (mouse or keyboard) is handled by the Carbon
* event dispatcher, its modifiers are recorded, and those modifiers
* will be returned by GetCurrentEventKeyModifiers.
*
* The "current event" referenced in the API name is the event most
* recently dispatched through the event dispatcher target, which is
* not necessarily the event that your event handler is handling.
* For example, if a mouse-down event occurs, and you have a handler
* for the kEventWindowHandleContentClick event that is generated
* from the mouse-down, then the modifiers will be those that were
* attached to the mouse-down. The ContentClick event itself does
* also have a KeyModifiers parameter, which is copied from the
* mouse-down event, but GetCurrentEventKeyModifiers returns the
* modifiers from the mouse-down, not from the ContentClick event,
* since it was the mouse-down that was most recently dispatched
* through the event dispatcher. Usually, this is the behavior that
* you want anyways.
*
* Note that events that are not sent through the event dispatcher
* target will not update the current event key modifiers. Also,
* note that events arriving from outside the application, such as
* an AppleEvent or an Accessibility event, also will not update the
* modifiers. If your application modifies its behavior based on
* modifier state, we recommend that you parameterize your core code
* with the event modifiers, and determine the modifiers based on
* the origin of the behavior request. For a request that originates
* directly from user input, you can use
* GetCurrentEventKeyModifiers, but for a request that originates
* from an AppleEvent or Accessibility event, you would probably use
* no modifiers.
* BR> It is generally better to use this API than to use the
* GetCurrentKeyModifiers API (which returns the hardware state).
* This gives a more consistent user experience when the user input
* queue is being remoted controlled or manipulated via non-hardware
* event sources such as speech or AppleEvents; using
* GetCurrentEventKeyModifiers is also much faster than using
* EventAvail(0, &eventRecord) or GetCurrentKeyModifiers.
*
* Note that GetCurrentEventKeyModifiers only returns a valid
* modifier state if your application is the active application. If
* your application is not active, then user input events are not
* flowing through the event dispatcher and the queue-synchronized
* state is not updated.
*
* Mac OS X threading:
* Not thread safe
*
* Result:
* The queue-synchronized state of the keyboard modifiers. The
* format of the return value is the same as the modifiers field of
* an EventRecord (but only includes keyboard modifiers and not the
* other modifier flags included in an EventRecord).
*
* Availability:
* Mac OS X: in version 10.2 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later
* Non-Carbon CFM: not available
}
function GetCurrentEventKeyModifiers: UInt32; external name '_GetCurrentEventKeyModifiers';
(* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ Non-synchronized input device state }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* HIGetMousePosition()
*
* Summary:
* Returns the position of the mouse relative to the given object.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inSpace:
* The HICoordinateSpace constant specifying the desired
* coordinate space that the mouse position is to be relative to.
*
* inObject:
* A specific object defining the destination coordinate space
* that the point is to be returned in. You might pass a WindowRef
* or an HIViewRef. If no object is necessary, you must pass NULL.
* See the HICoordinateSpace documentation for details on which
* HICoordinateSpaces require objects.
*
* outPoint:
* A pointer to an HIPoint that will contain the mouse position on
* exit. If any parameter is invalid, this will be returned as the
* zero point.
*
* Result:
* A pointer to the HIPoint passed in outPoint.
*
* Availability:
* Mac OS X: in version 10.5 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.5 and later
* Non-Carbon CFM: not available
}
function HIGetMousePosition( inSpace: HICoordinateSpace; inObject: UnivPtr; var outPoint: HIPoint ): HIPointPtr; external name '_HIGetMousePosition';
(* AVAILABLE_MAC_OS_X_VERSION_10_5_AND_LATER *)
{$ifc not TARGET_CPU_64}
{
* GetGlobalMouse()
*
* Summary:
* Returns the position of the mouse in global coordinates.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* globalMouse:
* On exit, contains the mouse position in global coordinates.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework [32-bit only]
* CarbonLib: in CarbonLib 1.0 and later
* Non-Carbon CFM: in CarbonAccessors.o 1.0 and later
}
procedure GetGlobalMouse( var globalMouse: Point ); external name '_GetGlobalMouse';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{$endc} {not TARGET_CPU_64}
{
* GetCurrentButtonState()
*
* Summary:
* Returns the current hardware mouse button state on the primary
* input device.
*
* Discussion:
* In most cases, you should not use GetCurrentButtonState, but
* should use the GetCurrentEventButtonState function instead.
* GetCurrentEventButtonState is much faster than
* GetCurrentButtonState because it returns the locally cached
* button state; GetCurrentButtonState must get the mouse button
* state from the window server, which is slower. Using
* GetCurrentButtonState also can prevent your application from
* being operated by remote posting of events, since the hardware
* input device is not actually changing state in that case. Most
* commonly, you might need to use GetCurrentButtonState when your
* application is not the active application (as determined by the
* Process Manager function GetFrontProcess). In that case, the
* cached button state returned by GetCurrentEventButtonState is not
* valid because mouse button events are not flowing to your
* application, and you must use GetCurrentButtonState to determine
* the current hardware state.
*
* Mac OS X threading:
* Not thread safe
*
* Result:
* The state of the mouse buttons on the mouse hardware. Bit zero
* indicates the state of the primary button, bit one the state of
* the secondary button, and so on.
*
* Availability:
* Mac OS X: in version 10.2 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later
* Non-Carbon CFM: not available
}
function GetCurrentButtonState: UInt32; external name '_GetCurrentButtonState';
(* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *)
{
* GetCurrentKeyModifiers()
*
* Summary:
* Returns the current hardware keyboard modifier state.
*
* Discussion:
* In most cases, you should not use GetCurrentKeyModifiers, but
* should use the GetCurrentEventKeyModifiers function instead.
* GetCurrentEventKeyModifiers is much faster than
* GetCurrentKeyModifiers because it returns the locally cached
* modifier state; GetCurrentKeyModifiers must get the modifier
* state from the window server, which is slower. Using
* GetCurrentKeyModifiers also can prevent your application from
* being operated by remote posting of events, since the hardware
* input device is not actually changing state in that case. Most
* commonly, you might need to use GetCurrentKeyModifiers when your
* application is not the active application (as determined by the
* Process Manager function GetFrontProcess). In that case, the
* cached modifier state returned by GetCurrentEventKeyModifiers is
* not valid because modifier-changed events are not flowing to your
* application, and you must use GetCurrentKeyModifiers to determine
* the current hardware state.
*
* Mac OS X threading:
* Not thread safe
*
* Result:
* The hardware state of the keyboard modifiers. The format of the
* return value is the same as the modifiers field of an EventRecord
* (but only includes keyboard modifiers and not the other modifier
* flags included in an EventRecord).
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.0 and later
* Non-Carbon CFM: not available
}
function GetCurrentKeyModifiers: UInt32; external name '_GetCurrentKeyModifiers';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Helpful utilities }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* GetCurrentEventTime()
*
* Discussion:
* Returns the current time since last system startup in seconds.
*
* Mac OS X threading:
* Thread safe
*
* Result:
* EventTime.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function GetCurrentEventTime: EventTime; external name '_GetCurrentEventTime';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Timers }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* EventLoopTimerRef
*
* Discussion:
* An EventLoopTimerRef represents what we term a 'timer'. A timer
* is a function that is called either once or at regular intervals.
* It executes at task level and should not be confused with Time
* Manager Tasks or any other interrupt-level callback. This means
* you can call Toolbox routines, allocate memory and draw. When a
* timer 'fires', it calls a callback that you specify when the
* timer is installed. Timers in general have two uses - as a
* timeout mechanism and as a periodic task. An everyday example of
* using a timer for a timeout might be a light that goes out if no
* motion is detected in a room for 5 minutes. For this, you might
* install a timer which will fire in 5 minutes. If motion is
* detected, you would reset the timer fire time and let the clock
* start over. If no motion is detected for the full 5 minutes, the
* timer will fire and you could power off the light. A periodic
* timer is one that fires at regular intervals (say every second or
* so). You might use such a timer to blink the insertion point in
* your editor, etc. One advantage of timers is that you can install
* the timer right from the code that wants the time. For example,
* the standard Toolbox Edit Text control can install a timer to
* blink the cursor when it's active, meaning that IdleControls is a
* no-op for that control and doesn't need to be called. When the
* control is inactive, it removes its timer and doesn't waste CPU
* time in that state. NOTE: Currently, if you do decide to draw
* when your timer is called, be sure to save and restore the
* current port so that calling your timer doesn't inadvertently
* change the port out from under someone.
}
type
EventLoopTimerRef = ^SInt32; { an opaque type }
{
* EventLoopTimerProcPtr
*
* Discussion:
* Called when a timer fires.
*
* Parameters:
*
* inTimer:
* The timer that fired.
*
* inUserData:
* The data passed into InstallEventLoopTimer.
}
type
EventLoopTimerProcPtr = procedure( inTimer: EventLoopTimerRef; inUserData: UnivPtr );
{
* Discussion:
* Event Loop Idle Timer Messages
}
const
{
* The user has gone idle (not touched an input device) for the
* duration specified in your idle timer. This is the first message
* you will receive. Start your engines!
}
kEventLoopIdleTimerStarted = 1;
{
* If you specified an interval on your idle timer, your idle timer
* proc will be called with this message, letting you know it is
* merely firing at the interval specified. You will receive this
* message for the first time at the specified interval after you
* receive kEventLoopIdleTimerStarted. If you did not specify an
* interval, this message is not sent.
}
kEventLoopIdleTimerIdling = 2;
{
* The user is back! Stop everything! This is your cue to stop any
* processing if you need to.
}
kEventLoopIdleTimerStopped = 3;
type
EventLoopIdleTimerMessage = UInt16;
{
* EventLoopIdleTimerProcPtr
*
* Discussion:
* Called when an idle timer fires.
*
* Parameters:
*
* inTimer:
* The timer that fired.
*
* inState:
* The current state of the timer.
*
* inUserData:
* The data passed into InstallEventLoopTimer.
}
type
EventLoopIdleTimerProcPtr = procedure( inTimer: EventLoopTimerRef; inState: EventLoopIdleTimerMessage; inUserData: UnivPtr );
type
EventLoopTimerUPP = EventLoopTimerProcPtr;
type
EventLoopIdleTimerUPP = EventLoopIdleTimerProcPtr;
{
* NewEventLoopTimerUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
function NewEventLoopTimerUPP( userRoutine: EventLoopTimerProcPtr ): EventLoopTimerUPP; external name '_NewEventLoopTimerUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* NewEventLoopIdleTimerUPP()
*
* Availability:
* Mac OS X: in version 10.2 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later
* Non-Carbon CFM: available as macro/inline
}
function NewEventLoopIdleTimerUPP( userRoutine: EventLoopIdleTimerProcPtr ): EventLoopIdleTimerUPP; external name '_NewEventLoopIdleTimerUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *)
{
* DisposeEventLoopTimerUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
procedure DisposeEventLoopTimerUPP( userUPP: EventLoopTimerUPP ); external name '_DisposeEventLoopTimerUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* DisposeEventLoopIdleTimerUPP()
*
* Availability:
* Mac OS X: in version 10.2 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later
* Non-Carbon CFM: available as macro/inline
}
procedure DisposeEventLoopIdleTimerUPP( userUPP: EventLoopIdleTimerUPP ); external name '_DisposeEventLoopIdleTimerUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *)
{
* InvokeEventLoopTimerUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
procedure InvokeEventLoopTimerUPP( inTimer: EventLoopTimerRef; inUserData: UnivPtr; userUPP: EventLoopTimerUPP ); external name '_InvokeEventLoopTimerUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* InvokeEventLoopIdleTimerUPP()
*
* Availability:
* Mac OS X: in version 10.2 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later
* Non-Carbon CFM: available as macro/inline
}
procedure InvokeEventLoopIdleTimerUPP( inTimer: EventLoopTimerRef; inState: EventLoopIdleTimerMessage; inUserData: UnivPtr; userUPP: EventLoopIdleTimerUPP ); external name '_InvokeEventLoopIdleTimerUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *)
{
* InstallEventLoopTimer()
*
* Discussion:
* Installs a timer onto the event loop specified. The timer can
* either fire once or repeatedly at a specified interval depending
* on the parameters passed to this function.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inEventLoop:
* The event loop to add the timer.
*
* inFireDelay:
* The delay before first firing this timer (can be 0, to request
* that the timer be fired as soon as control returns to your
* event loop). In Mac OS X and CarbonLib 1.5 and later, you may
* pass kEventDurationForever to stop the timer from firing at all
* until SetEventLoopTimerNextFireTime is used to start it; in
* earlier CarbonLibs, to achieve the same effect, just pass zero
* and then immediately call SetEventLoopTimerNextFireTime( timer,
* kEventDurationForever ) before returning control to your event
* loop.
*
* inInterval:
* The timer interval (pass 0 for a one-shot timer, which executes
* once but does not repeat). In Mac OS X and CarbonLib 1.5 and
* later, you may also pass kEventDurationForever to create a
* one-shot timer.
*
* inTimerProc:
* The routine to call when the timer fires.
*
* inTimerData:
* Data to pass to the timer proc when called.
*
* outTimer:
* A reference to the newly installed timer.
*
* Result:
* An operating system status code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function InstallEventLoopTimer( inEventLoop: EventLoopRef; inFireDelay: EventTimerInterval; inInterval: EventTimerInterval; inTimerProc: EventLoopTimerUPP; inTimerData: UnivPtr; var outTimer: EventLoopTimerRef ): OSStatus; external name '_InstallEventLoopTimer';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{$ifc not TARGET_CPU_64}
{
* InstallEventLoopIdleTimer()
*
* Discussion:
* Installs a timer onto the event loop specified. Idle timers are
* only called when there is no user activity occuring in the
* application. This means that the user is not actively
* clicking/typing, and is also not in the middle of tracking a
* control, menu, or window. TrackMouseLocation actually disables
* all idle timers automatically for you.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inEventLoop:
* The event loop to add the timer.
*
* inDelay:
* The delay before firing this timer after a user input event has
* come in. For example, if you want to start your timer 2 seconds
* after the user stops typing, etc. you would pass 2.0 into this
* parameter. Each time the user types a key (or whatever), this
* timer is reset. If we are considered to be idle when an idle
* timer is installed, the first time it fires will be inDelay
* seconds from the time it is installed. So if you installed it
* in the middle of control tracking, say, it wouldn't fire until
* the user stopped tracking. But if you installed it at app
* startup and the user hasn't typed/clicked, it would fire in
* inDelay seconds. On Mac OS X 10.3 and earlier, the delay must
* be greater than zero. On Mac OS X 10.4 and later, the delay
* must be greather than or equal to zero. You cannot use
* kEventDurationForever for the delay.
*
* inInterval:
* The timer interval (pass 0 for a one-shot timer, which executes
* once but does not repeat). You may also pass
* kEventDurationForever to create a one-shot timer.
*
* inTimerProc:
* The routine to call when the timer fires.
*
* inTimerData:
* Data to pass to the timer proc when called.
*
* outTimer:
* A reference to the newly installed timer.
*
* Result:
* An operating system status code.
*
* Availability:
* Mac OS X: in version 10.2 and later in Carbon.framework [32-bit only]
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later
* Non-Carbon CFM: not available
}
function InstallEventLoopIdleTimer( inEventLoop: EventLoopRef; inDelay: EventTimerInterval; inInterval: EventTimerInterval; inTimerProc: EventLoopIdleTimerUPP; inTimerData: UnivPtr; var outTimer: EventLoopTimerRef ): OSStatus; external name '_InstallEventLoopIdleTimer';
(* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *)
{$endc} {not TARGET_CPU_64}
{
* RemoveEventLoopTimer()
*
* Discussion:
* Removes a timer that was previously installed by a call to
* InstallEventLoopTimer. You call this function when you are done
* using a timer.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inTimer:
* The timer to remove.
*
* Result:
* An operating system status code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function RemoveEventLoopTimer( inTimer: EventLoopTimerRef ): OSStatus; external name '_RemoveEventLoopTimer';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* SetEventLoopTimerNextFireTime()
*
* Discussion:
* This routine is used to 'reset' a timer. It controls the next
* time the timer fires. This will override any interval you might
* have set. For example, if you have a timer that fires every
* second, and you call this function setting the next time to five
* seconds from now, the timer will sleep for five seconds, then
* fire. It will then resume its one-second interval after that. It
* is as if you removed the timer and reinstalled it with a new
* first-fire delay.
*
* Mac OS X threading:
* Thread safe
*
* Parameters:
*
* inTimer:
* The timer to adjust
*
* inNextFire:
* The interval from the current time to wait until firing the
* timer again. You may pass kEventDurationForever to stop the
* timer from firing at all.
*
* Result:
* An operating system status code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function SetEventLoopTimerNextFireTime( inTimer: EventLoopTimerRef; inNextFire: EventTimerInterval ): OSStatus; external name '_SetEventLoopTimerNextFireTime';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{======================================================================================}
{ EVENT HANDLERS }
{======================================================================================}
type
EventHandlerRef = ^SInt32; { an opaque type }
EventHandlerRefPtr = ^EventHandlerRef;
EventHandlerCallRef = ^SInt32; { an opaque type }
EventHandlerCallRefPtr = ^EventHandlerCallRef;
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ EventHandler specification }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ C++ Methods as Event Handlers }
{ To use a C++ method as an Event Handler callback, it must be declared in its class }
{ as a static method. Otherwise, the implicit "this" parameter will make the function }
{ not match the EventHandlerProcPtr prototype. }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* EventHandlerProcPtr
*
* Discussion:
* Callback for receiving events sent to a target this callback is
* installed on.
*
* Parameters:
*
* inHandlerCallRef:
* A reference to the current handler call chain. This is sent to
* your handler so that you can call CallNextEventHandler if you
* need to.
*
* inEvent:
* The Event.
*
* inUserData:
* The app-specified data you passed in a call to
* InstallEventHandler.
*
* Result:
* An operating system result code. Returning noErr indicates you
* handled the event. Returning eventNotHandledErr indicates you did
* not handle the event and perhaps the toolbox should take other
* action.
}
type
EventHandlerProcPtr = function( inHandlerCallRef: EventHandlerCallRef; inEvent: EventRef; inUserData: UnivPtr ): OSStatus;
type
EventHandlerUPP = EventHandlerProcPtr;
{
* NewEventHandlerUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
function NewEventHandlerUPP( userRoutine: EventHandlerProcPtr ): EventHandlerUPP; external name '_NewEventHandlerUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* DisposeEventHandlerUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
procedure DisposeEventHandlerUPP( userUPP: EventHandlerUPP ); external name '_DisposeEventHandlerUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* InvokeEventHandlerUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
function InvokeEventHandlerUPP( inHandlerCallRef: EventHandlerCallRef; inEvent: EventRef; inUserData: UnivPtr; userUPP: EventHandlerUPP ): OSStatus; external name '_InvokeEventHandlerUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
type
EventTargetRef = ^SInt32; { an opaque type }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Installing Event Handlers }
{ Use these routines to install event handlers for a specific toolbox object. You may }
{ pass zero for inNumTypes and NULL for inList if you need to be in a situation where }
{ you know you will be receiving events, but not exactly which ones at the time you }
{ are installing the handler. Later, your application can call the Add/Remove routines }
{ listed below this section. }
{ You can only install a specific handler once. The combination of inHandler and }
{ inUserData is considered the 'signature' of a handler. Any attempt to install a new }
{ handler with the same proc and user data as an already-installed handler will result }
{ in eventHandlerAlreadyInstalledErr. Installing the same proc and user data on a }
{ different object is legal. }
{ Upon successful completion of this routine, you are returned an EventHandlerRef, }
{ which you can use in various other calls. It is not possible to retrieve any }
{ information from an EventHandlerRef about which object the handler is attached to; }
{ to keep track of the target object of an event handler, use the inUserData paramter }
{ to InstallEventHandler to specify the object. }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* InstallEventHandler()
*
* Discussion:
* Installs an event handler on a specified target. Your handler
* proc will be called with the events you registered with when an
* event of the corresponding type and class are send to the target
* you are installing your handler on.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inTarget:
* The target to register your handler with.
*
* inHandler:
* A pointer to your handler function.
*
* inNumTypes:
* The number of events you are registering for.
*
* inList:
* A pointer to an array of EventTypeSpec entries representing the
* events you are interested in.
*
* inUserData:
* The value passed in this parameter is passed on to your event
* handler proc when it is called.
*
* outRef:
* Receives an EventHandlerRef, which you can use later to remove
* the handler. You can pass null if you don't want the reference
* - when the target is disposed, the handler will be disposed as
* well.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function InstallEventHandler( inTarget: EventTargetRef; inHandler: EventHandlerUPP; inNumTypes: ItemCount; {const} inList: {variable-size-array} EventTypeSpecPtr; inUserData: UnivPtr; outRef: EventHandlerRefPtr { can be NULL } ): OSStatus; external name '_InstallEventHandler';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* RemoveEventHandler()
*
* Summary:
* Removes an event handler from the target it was bound to.
*
* Discussion:
* As of Mac OS X 10.1, it is safe to remove an event handler from
* inside the handler function. This is not safe to do in CarbonLib
* or earlier releases of Mac OS X.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inHandlerRef:
* The handler ref to remove (returned in a call to
* InstallEventHandler). After you call this function, the handler
* ref is considered to be invalid and can no longer be used.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function RemoveEventHandler( inHandlerRef: EventHandlerRef ): OSStatus; external name '_RemoveEventHandler';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{$ifc not TARGET_CPU_64}
{
* InstallStandardEventHandler()
*
* Summary:
* Installs the standard event handler (if any) for an event target.
*
* Discussion:
* All event targets have default handlers installed on them by the
* toolbox to perform certain basic operations common to that type
* of target. Some targets also have standard handlers which are not
* installed by default, but may be requested. A standard handler
* typically provides higher-level behavior for its target. Prior to
* Mac OS X 10.5, only window event targets have a standard
* handler; the window standard event hander may also be installed
* by setting the kWindowStandardHandlerAttribute flag. In Mac OS X
* 10.5 and later, the application and menubar event targets also
* support standard event handlers. Calling
* InstallStandardEventHandler on any other type of target (control,
* menu, etc.) has no effect.
*
* In Mac OS X 10.5 and later, InstallStandardEventHandler records
* the number of installation requests, and
* RemoveStandardEventHandler does not actually remove the standard
* handler until the count has been reduced to zero.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inTarget:
* The target whose standard handler should be installed.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework [32-bit only]
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function InstallStandardEventHandler( inTarget: EventTargetRef ): OSStatus; external name '_InstallStandardEventHandler';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* RemoveStandardEventHandler()
*
* Summary:
* Removes the standard event handler (if any) for an event target.
*
* Discussion:
* InstallStandardEventHandler records the number of installation
* requests, and RemoveStandardEventHandler does not actually remove
* the standard handler until the count has been reduced to zero.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inTarget:
* The target whose standard handler should be removed.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.5 and later in Carbon.framework [32-bit only]
* CarbonLib: not available
* Non-Carbon CFM: not available
}
function RemoveStandardEventHandler( inTarget: EventTargetRef ): OSStatus; external name '_RemoveStandardEventHandler';
(* AVAILABLE_MAC_OS_X_VERSION_10_5_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Adjusting set of event types after a handler is created }
{ After installing a handler with the routine above, you can adjust the event type }
{ list telling the toolbox what events to send to that handler by calling the two }
{ routines below. If you add an event type twice for the same handler, your handler }
{ will only be called once, but it will take two RemoveEventType calls to stop your }
{ handler from being called with that event type. In other words, the install count }
{ for each event type is maintained by the toolbox. This might allow you, for example }
{ to have subclasses of a window object register for types without caring if the base }
{ class has already registered for that type. When the subclass removes its types, it }
{ can successfully do so without affecting the base class's reception of its event }
{ types, yielding eternal bliss. }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{$endc} {not TARGET_CPU_64}
{
* AddEventTypesToHandler()
*
* Discussion:
* Adds additional events to an event handler that has already been
* installed.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inHandlerRef:
* The event handler to add the additional events to.
*
* inNumTypes:
* The number of events to add.
*
* inList:
* A pointer to an array of EventTypeSpec entries.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function AddEventTypesToHandler( inHandlerRef: EventHandlerRef; inNumTypes: ItemCount; {const} inList: {variable-size-array} EventTypeSpecPtr ): OSStatus; external name '_AddEventTypesToHandler';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* RemoveEventTypesFromHandler()
*
* Discussion:
* Removes events from an event handler that has already been
* installed.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inHandlerRef:
* The event handler to remove the events from.
*
* inNumTypes:
* The number of events to remove.
*
* inList:
* A pointer to an array of EventTypeSpec entries.
*
* Result:
* An operating system status code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function RemoveEventTypesFromHandler( inHandlerRef: EventHandlerRef; inNumTypes: ItemCount; {const} inList: {variable-size-array} EventTypeSpecPtr ): OSStatus; external name '_RemoveEventTypesFromHandler';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Explicit Propagation }
{ CallNextEventHandler can be used to call thru to all handlers below the current }
{ handler being called. You pass the EventHandlerCallRef passed to your EventHandler }
{ into this call so that we know how to properly forward the event. The result of }
{ this function should normally be the result of your own handler that you called }
{ this API from. The typical use of this routine would be to allow the toolbox to do }
{ its standard processing and then follow up with some type of embellishment. }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* CallNextEventHandler()
*
* Discussion:
* Calls thru to the event handlers below you in the event handler
* stack of the target to which your handler is bound. You might use
* this to call thru to the default toolbox handling in order to
* post-process the event. You can only call this routine from
* within an event handler.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inCallRef:
* The event handler call ref passed into your event handler.
*
* inEvent:
* The event to pass thru.
*
* Result:
* An operating system result code.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function CallNextEventHandler( inCallRef: EventHandlerCallRef; inEvent: EventRef ): OSStatus; external name '_CallNextEventHandler';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Sending Events }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* Summary:
* Options for the SendEventToEventTargetWithOptions API.
}
const
{
* The event should be sent to the target given only, and should not
* propagate to any other target. CallNextEventHandler, when passed
* an event sent with this option, will only call other event
* handlers installed on the current event target; it will not
* propagate the event to other event targets.
}
kEventTargetDontPropagate = 1 shl 0;
{
* The event is a notification-style event, and should be received by
* all handlers. The result is usually meaningless when sent in this
* manner, though we do maintain the strongest result code while the
* event falls through each handler. This means that if the first
* handler to receive the event returned noErr, and the next returned
* eventNotHandledErr, the result returned would actually be noErr.
* No handler can stop this event from propagating; i.e., the result
* code does not alter event flow.
}
kEventTargetSendToAllHandlers = 1 shl 1;
{
* SendEventToEventTarget()
*
* Discussion:
* Sends an event to the specified event target.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inEvent:
* The event to send.
*
* inTarget:
* The target to send it to.
*
* Result:
* An operating system result code. The result is determined by both
* the SendEventToEventTarget API and also the event handlers that
* receive the event. SendEventToEventTarget will return paramErr if
* the event or the target are invalid, or eventNotHandledErr if the
* event is not wanted by any handler. If the event is received by a
* handler, however, then the result code returned by the API is
* determined by the handler; a handler may return any error code,
* and your code should not make any assumptions about exactly which
* errors will be returned by SendEventToEventTarget.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: not available
}
function SendEventToEventTarget( inEvent: EventRef; inTarget: EventTargetRef ): OSStatus; external name '_SendEventToEventTarget';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *)
{
* SendEventToEventTargetWithOptions()
*
* Discussion:
* Sends an event to the specified event target, optionally
* controlling how the event propagates. See the discussion of the
* event send options above for more detail.
*
* Mac OS X threading:
* Not thread safe
*
* Parameters:
*
* inEvent:
* The event to send.
*
* inTarget:
* The target to send it to.
*
* inOptions:
* The options to modify the send behavior. Passing zero for this
* makes it behave just like SendEventToEventTarget.
*
* Result:
* An operating system result code. The result is determined by both
* the SendEventToEventTargetWithOptions API and also the event
* handlers that receive the event.
* SendEventToEventTargetWithOptions will return paramErr if the
* event or the target are invalid, or eventNotHandledErr if the
* event is not wanted by any handler. If the event is received by a
* handler, however, then the result code returned by the API is
* determined by the handler; a handler may return any error code,
* and your code should not make any assumptions about exactly which
* errors will be returned by SendEventToEventTargetWithOptions.
*
* Availability:
* Mac OS X: in version 10.2 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later
* Non-Carbon CFM: not available
}
function SendEventToEventTargetWithOptions( inEvent: EventRef; inTarget: EventTargetRef; inOptions: OptionBits ): OSStatus; external name '_SendEventToEventTargetWithOptions';
(* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *)
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{ ₯ Secure Event Input }
{ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ}
{
* EnableSecureEventInput()
*
* Summary:
* Enables secure event input mode.
*
* Discussion:
* When secure event input is enabled, keyboard input will only go
* to the application with keyboard focus, and will not be echoed to
* other applications that might be using the event monitor target
* to watch keyboard input. The EditText and EditUnicodeText
* controls automatically enter secure input mode when a password
* control has the focus; if your application implements its own
* password entry, you should enable secure event input while the
* user is entering text.
*
* This API maintains a count of the number of times that it has
* been called. Secure event input is not disabled until
* DisableSecureEventInput has been called the same number of
* times.
*
* Be sure to disable secure event input if your application becomes
* inactive. If your application crashes, secure event input will
* automatically be disabled if no other application has enabled it.
*
* Mac OS X threading:
* Not thread safe
*
* Availability:
* Mac OS X: in version 10.3 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.3 and later
* Non-Carbon CFM: not available
}
function EnableSecureEventInput: OSStatus; external name '_EnableSecureEventInput';
(* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
{
* DisableSecureEventInput()
*
* Summary:
* Disables secure event input mode.
*
* Discussion:
* When secure event input is enabled, keyboard input will only go
* to the application with keyboard focus, and will not be echoed to
* other applications that might be using the event monitor target
* to watch keyboard input. The EditText and EditUnicodeText
* controls automatically enter secure input mode when a password
* control has the focus; if your application implements its own
* password entry, you should enable secure event input while the
* user is entering text.
*
* The EnableSecureEventInput API maintains a count of the number of
* times that it has been called. Secure event input is not disabled
* until this API has been called the same number of times.
*
* Be sure to disable secure event input if your application becomes
* inactive. If your application crashes, secure event input will
* automatically be disabled if no other application has enabled it.
*
* Mac OS X threading:
* Not thread safe
*
* Availability:
* Mac OS X: in version 10.3 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.3 and later
* Non-Carbon CFM: not available
}
function DisableSecureEventInput: OSStatus; external name '_DisableSecureEventInput';
(* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
{
* IsSecureEventInputEnabled()
*
* Summary:
* Indicates whether secure event input is currently enabled.
*
* Discussion:
* This API returns whether secure event input is enabled by any
* process, not just the current process. Secure event input may be
* disabled in the current process but enabled in some other
* process; in that case, this API will return true.
*
* Mac OS X threading:
* Not thread safe
*
* Availability:
* Mac OS X: in version 10.3 and later in Carbon.framework
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.3 and later
* Non-Carbon CFM: not available
}
function IsSecureEventInputEnabled: Boolean; external name '_IsSecureEventInputEnabled';
(* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
{$endc} {TARGET_OS_MAC}
{$ifc not defined MACOSALLINCLUDE or not MACOSALLINCLUDE}
end.
{$endc} {not MACOSALLINCLUDE}
|