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 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448
|
unit CocoaGDIObjects;
//todo: Remove MacOSAll unit to prevent Carbon framework linking.
//todo: Remove HIShape usage used in TCocoaRegion.
interface
{$mode objfpc}{$H+}
{$modeswitch objectivec1}
uses
MacOSAll, // for CGContextRef
LCLtype, LCLProc, Graphics, Controls, fpcanvas, ImgList,
CocoaAll, CocoaUtils,
cocoa_extra,
{$ifndef CocoaUseHITheme}
customdrawndrawers, customdrawn_mac,
{$endif}
SysUtils, Classes, Contnrs, Types, Math;
type
TCocoaBitmapAlignment = (
cbaByte, // each line starts at byte boundary.
cbaWord, // each line starts at word (16bit) boundary
cbaDWord, // each line starts at double word (32bit) boundary
cbaQWord, // each line starts at quad word (64bit) boundary
cbaDQWord // each line starts at double quad word (128bit) boundary
);
TCocoaBitmapType = (
cbtMono, // mask or mono bitmap
cbtGray, // grayscale bitmap
cbtRGB, // color bitmap 8-8-8 R-G-B
cbtARGB, // color bitmap with alpha channel first 8-8-8-8 A-R-G-B
cbtRGBA, // color bitmap with alpha channel last 8-8-8-8 R-G-B-A
cbtABGR, // color bitmap with alpha channel first 8-8-8-8 A-B-G-R
cbtBGRA // color bitmap with alpha channel last 8-8-8-8 B-G-R-A
);
const
cbtMask = cbtMono;
type
TCocoaBitmap = class;
TCocoaContext = class;
{ TCocoaGDIObject }
TCocoaGDIObject = class(TObject)
strict private
FRefCount: Integer;
FGlobal: Boolean;
public
constructor Create(AGlobal: Boolean); virtual;
destructor Destroy; override;
class function UpdateRefs(ATarget: TCocoaGDIObject; ASource: TCocoaGDIObject): Boolean; static;
procedure AddRef;
procedure Release;
property Global: Boolean read FGlobal write FGlobal;
property RefCount: Integer read FRefCount;
end;
TCocoaRegionType = (
crt_Error,
crt_Empty,
crt_Rectangle,
crt_Complex);
TCocoaCombine = (
cc_And,
cc_Xor,
cc_Or,
cc_Diff,
cc_Copy);
{ TCocoaRegion }
//todo: Remove HIShape usage. HIShape is legacy
TCocoaRegion = class(TCocoaGDIObject)
strict private
FShape: HIShapeRef;
public
constructor CreateDefault(AGlobal: Boolean = False);
constructor Create(const X1, Y1, X2, Y2: Integer);
constructor Create(Points: PPoint; NumPts: Integer; isAlter: Boolean);
destructor Destroy; override;
procedure Apply(ADC: TCocoaContext);
function GetBounds: TRect;
function GetType: TCocoaRegionType;
function ContainsPoint(const P: TPoint): Boolean;
procedure SetShape(AShape: HIShapeRef);
procedure Clear;
function CombineWith(ARegion: TCocoaRegion; CombineMode: TCocoaCombine): TCocoaRegionType;
procedure Offset(dx, dy: Integer);
function GetShapeCopy: HIShapeRef;
procedure MakeMutable;
public
property Shape: HIShapeRef read FShape write SetShape;
end;
{ TCocoaColorObject }
TCocoaColorObject = class(TCocoaGDIObject)
strict private
FR, FG, FB: Byte;
FA: Boolean; // alpha: True - solid, False - clear
function GetColorRef: TColorRef;
public
constructor Create(const AColor: TColor; ASolid, AGlobal: Boolean); reintroduce;
procedure SetColor(const AColor: TColor; ASolid: Boolean);
procedure GetRGBA(AROP2: Integer; out AR, AG, AB, AA: CGFloat);
function ObtainNSColor: NSColor;
property Red: Byte read FR write FR;
property Green: Byte read FG write FG;
property Blue: Byte read FB write FB;
property Solid: Boolean read FA write FA;
property ColorRef: TColorRef read GetColorRef;
end;
TCocoaPatternColorMode = (cpmBitmap, cpmBrushColor, cpmContextColor);
{ TCocoaBrush }
TCocoaPatternInfo = record
image: CGImageRef;
bgColor: TColorRef;
fgColor: TColorRef;
colorMode: TCocoaPatternColorMode;
end;
PCocoaPatternInfo = ^TCocoaPatternInfo;
TCocoaBrush = class(TCocoaColorObject)
strict private
FCGPattern: CGPatternRef;
FPatternColorMode: TCocoaPatternColorMode;
FBitmap: TCocoaBitmap;
FColor: NSColor;
FFgColor: TColorRef;
private
FImage: CGImageRef;
strict protected
procedure Clear;
procedure CreateCGPattern(ARect: CGRect; IsColored: ShortInt);
procedure SetHatchStyle(AHatch: PtrInt);
procedure SetBitmap(ABitmap: TCocoaBitmap);
procedure SetImage(AImage: NSImage);
procedure SetColor(AColor: NSColor); overload;
public
constructor CreateDefault(const AGlobal: Boolean = False);
constructor Create(const ALogBrush: TLogBrush; const AGlobal: Boolean = False);
constructor Create(const AColor: NSColor; const AGlobal: Boolean = False);
constructor Create(const AColor: TColor; AStyle: TFPBrushStyle; APattern: TBrushPattern;
AGlobal: Boolean = False);
destructor Destroy; override;
procedure Apply(ADC: TCocoaContext; UseROP2: Boolean = True);
procedure ApplyAsPenColor(ADC: TCocoaContext; UseROP2: Boolean = True);
// for brushes created by NCColor
property Color: NSColor read FColor write SetColor;
end;
type
TCocoaStatDashes = record
Len : integer;
Dash : array [0..5] of CGFloat;
end;
PCocoaStatDashes = ^TCocoaStatDashes;
const
CocoaPenDash : array [Boolean] of
array [PS_DASH..PS_DASHDOTDOT] of TCocoaStatDashes = (
// cosmetic = false (geometry)
(
(len: 2; dash: (2,2,0,0,0,0)), // PS_DASH = 1; { ------- }
(len: 2; dash: (0,2,0,0,0,0)), // PS_DOT = 2; { ....... }
(len: 4; dash: (2,2,0,2,0,0)), // PS_DASHDOT = 3; { _._._._ }
(len: 6; dash: (2,2,0,2,0,2)) // PS_DASHDOTDOT = 4; { _.._.._ }
),
// cosmetic = true (windows like cosmetic)
(
(len: 2; dash: (18,6,0,0,0,0)), // PS_DASH = 1; { ------- }
(len: 2; dash: (3,3,0,0,0,0)), // PS_DOT = 2; { ....... }
(len: 4; dash: (9,6,3,6,0,0)), // PS_DASHDOT = 3; { _._._._ }
(len: 6; dash: (9,3,3,3,3,3)) // PS_DASHDOTDOT = 4; { _.._.._ }
)
);
type
TCocoaDashes = array of CGFloat;
{ TCocoaPen }
TCocoaPen = class(TCocoaColorObject)
strict private
FWidth: Integer;
FStyle: LongWord;
FIsExtPen: Boolean;
FIsGeometric: Boolean;
FEndCap: CGLineCap;
FJoinStyle: CGLineJoin;
public
Dashes: TCocoaDashes;
constructor CreateDefault(const AGlobal: Boolean = False);
constructor Create(const ALogPen: TLogPen; const AGlobal: Boolean = False);
constructor Create(dwPenStyle, dwWidth: DWord; const lplb: TLogBrush; dwStyleCount: DWord; lpStyle: PDWord);
constructor Create(const ABrush: TCocoaBrush; const AGlobal: Boolean = False);
constructor Create(const AColor: TColor; AGlobal: Boolean);
constructor Create(const AColor: TColor; AStyle: TFPPenStyle; ACosmetic: Boolean;
AWidth: Integer; AMode: TFPPenMode; AEndCap: TFPPenEndCap;
AJoinStyle: TFPPenJoinStyle; AGlobal: Boolean = False);
procedure Apply(ADC: TCocoaContext; UseROP2: Boolean = True);
property Width: Integer read FWidth;
property Style: LongWord read FStyle;
property IsExtPen: Boolean read FIsExtPen;
property IsGeometric: Boolean read FIsGeometric;
property JoinStyle: CGLineJoin read FJoinStyle;
property CapStyle: CGLineCap read FEndCap;
end;
{ TCocoaFont }
TCocoaFontStyle = set of (cfs_Bold, cfs_Italic, cfs_Underline, cfs_Strikeout);
TCocoaFont = class(TCocoaGDIObject)
strict private
FFont: NSFont;
FName: AnsiString;
FSize: Integer;
FStyle: TCocoaFontStyle;
FAntialiased: Boolean;
FIsSystemFont: Boolean;
FRotationDeg: Single;
public
constructor CreateDefault(AGlobal: Boolean = False);
constructor Create(const ALogFont: TLogFont; AFontName: String; AGlobal: Boolean = False); reintroduce; overload;
constructor Create(const AFont: NSFont; AGlobal: Boolean = False); overload;
constructor Create(const AFont: NSFont; const AExtraStyle: TCocoaFontStyle; AGlobal: Boolean = False); overload;
destructor Destroy; override;
class function CocoaFontWeightToWin32FontWeight(const CocoaFontWeight: Integer): Integer; static;
procedure SetHandle(ANewHandle: NSFont; const AExtraStyle: TCocoaFontStyle = []);
property Antialiased: Boolean read FAntialiased;
property Font: NSFont read FFont;
property Name: String read FName;
property Size: Integer read FSize;
property Style: TCocoaFontStyle read FStyle;
property RotationDeg: Single read FRotationDeg;
end;
{ TCocoaBitmap }
TCocoaBitmap = class(TCocoaGDIObject)
strict private
FData: Pointer;
FOriginalData: PByte; // Exists and is set in case the data needed pre-multiplication
FAlignment: TCocoaBitmapAlignment;
FFreeData: Boolean;
FModified_SinceLastRecreate: Boolean;
FDataSize: Integer;
FBytesPerRow: Integer;
FDepth: Byte;
FBitsPerPixel: Byte;
FWidth: Integer;
FHeight: Integer;
FType: TCocoaBitmapType;
// Cocoa information
FBitsPerSample: NSInteger; // How many bits in each color component
FSamplesPerPixel: NSInteger;// How many color components
FImage: NSImage;
FImagerep: NSBitmapImageRep;
function GetColorSpace: NSString;
function DebugShowData(): string;
public
constructor Create(ABitmap: TCocoaBitmap);
constructor Create(AWidth, AHeight, ADepth, ABitsPerPixel: Integer;
AAlignment: TCocoaBitmapAlignment; AType: TCocoaBitmapType;
AData: Pointer; ACopyData: Boolean = True);
constructor CreateDefault;
destructor Destroy; override;
procedure SetInfo(AWidth, AHeight, ADepth, ABitsPerPixel: Integer;
AAlignment: TCocoaBitmapAlignment; AType: TCocoaBitmapType);
procedure CreateHandle();
procedure FreeHandle();
procedure ReCreateHandle();
procedure ReCreateHandle_IfModified();
procedure SetModified();
function CreateSubImage(const ARect: TRect): CGImageRef;
function CreateMaskImage(const ARect: TRect): CGImageRef;
procedure PreMultiplyAlpha();
function GetNonPreMultipliedData(): PByte;
public
property BitmapType: TCocoaBitmapType read FType;
property BitsPerPixel: Byte read FBitsPerPixel;
property BitsPerSample: NSInteger read FBitsPerSample;
property BytesPerRow: Integer read FBytesPerRow;
property Image: NSImage read FImage;
property ImageRep: NSBitmapImageRep read FImageRep;
property ColorSpace: NSString read GetColorSpace;
property Data: Pointer read FData;
property DataSize: Integer read FDataSize;
property Depth: Byte read FDepth;
property Width: Integer read FWidth;
property Height: Integer read FHeight;
end;
// device context data for SaveDC/RestoreDC
TCocoaDCData = class
public
CurrentFont: TCocoaFont;
CurrentBrush: TCocoaBrush;
CurrentPen: TCocoaPen;
CurrentRegion: TCocoaRegion;
BkColor: TColor;
BkMode: Integer;
BkBrush: TCocoaBrush;
TextColor: TColor;
ROP2: Integer;
PenPos: TPoint;
WindowOfs: TPoint;
ViewportOfs: TPoint;
isClipped: Boolean;
ClipShape: HIShapeRef;
destructor Destroy; override;
end;
{ TCocoaContext }
TCocoaBitmapContext = class;
TCocoaContext = class(TObject)
private
FControl: TWinControl;
FBkBrush: TCocoaBrush;
FBkColor: TColor;
FBkMode: Integer;
FROP2: Integer;
FBrush : TCocoaBrush;
FBackgroundColor: TColor;
FForegroundColor: TColor;
FFont: TCocoaFont;
FPen : TCocoaPen;
FRegion : TCocoaRegion;
// In Cocoa there is no way to enlarge a clip region :(
// see http://stackoverflow.com/questions/18648608/how-can-i-reset-or-clear-the-clipping-mask-associated-with-a-cgcontext
// So before every single clip operation we need to save the DC state
// And before every single clip operator or savedc/restoredc
// we need to restore the dc to clear the clipping region
//
// Also, because of bug 28015 FClipped cannot use ctx.Restore(Save)GraphicsState;
// it will use CGContextRestore(Save)GState(CGContext()); to save/restore DC instead
FClipped: Boolean;
FFlipped: Boolean;
FClipRegion: TCocoaRegion;
FSavedDCList: TFPObjectList;
FPenPos: TPoint;
FSize: TSize;
FViewPortOfs: TPoint;
FWindowOfs: TPoint;
boxview : NSBox; // the view is used to draw Frame3d
function GetFont: TCocoaFont;
function GetTextColor: TColor;
procedure SetBkColor(AValue: TColor);
procedure SetBkMode(AValue: Integer);
procedure SetBrush(const AValue: TCocoaBrush);
procedure SetFont(const AValue: TCocoaFont);
procedure SetPen(const AValue: TCocoaPen);
procedure SetRegion(const AValue: TCocoaRegion);
procedure SetROP2(AValue: Integer);
procedure SetTextColor(AValue: TColor);
procedure UpdateContextOfs(const AWindowOfs, AViewOfs: TPoint);
procedure SetViewPortOfs(AValue: TPoint);
procedure SetWindowOfs(AValue: TPoint);
protected
function SaveDCData: TCocoaDCData; virtual;
procedure RestoreDCData(const AData: TCocoaDCData); virtual;
procedure ApplyTransform(Trans: CGAffineTransform);
procedure ClearClipping;
procedure AttachedBitmap_SetModified(); virtual;
procedure DrawEdgeRect(const r: TRect; flags: Cardinal; LTColor, BRColor: TColor);
public
ctx: NSGraphicsContext;
isControlDC: Boolean; // control DCs should never be freed by ReleaseDC as the control will free it by itself
isDesignDC: Boolean; // this is a special Designer Overlay DC
constructor Create(AGraphicsContext: NSGraphicsContext); virtual;
destructor Destroy; override;
function SaveDC: Integer;
function RestoreDC(ASavedDC: Integer): Boolean;
function InitDraw(width, height: Integer): Boolean;
// drawing functions
procedure DrawFocusRect(ARect: TRect);
procedure InvertRectangle(X1, Y1, X2, Y2: Integer);
procedure MoveTo(X, Y: Integer);
procedure LineTo(X, Y: Integer);
function GetPixel(X,Y:integer): TColor; virtual;
procedure SetPixel(X,Y:integer; AColor:TColor); virtual;
procedure Polygon(const Points: array of TPoint; NumPts: Integer; Winding: boolean);
procedure Polyline(const Points: array of TPoint; NumPts: Integer);
// draws a rectangle by given LCL coordinates.
// always outlines rectangle
// if FillRect is set to true, then fills with either Context brush
// OR with "UseBrush" brush, if provided
// if FillRect is set to false, draws outlines only.
// if "UseBrush" is not provided, uses the current pen
// if "useBrush" is provided, uses the color from the defined brush
procedure Rectangle(X1, Y1, X2, Y2: Integer; FillRect: Boolean; UseBrush: TCocoaBrush);
procedure BackgroundFill(dirtyRect:NSRect);
procedure Ellipse(X1, Y1, X2, Y2: Integer);
procedure TextOut(X, Y: Integer; Options: Longint; Rect: PRect; UTF8Chars: PChar; Count: Integer; CharsDelta: PInteger);
procedure TextOut(X, Y: CGFloat; Options: Longint; Rect: PRect; UTF8Chars: PChar; Count: Integer; CharsDelta: CGFloatPtr);
procedure DrawEdge(var Rect: TRect; edge: Cardinal; grfFlags: Cardinal);
procedure Frame(const R: TRect);
procedure Frame3dClassic(var ARect: TRect; const FrameWidth: integer; const Style: TBevelCut);
procedure Frame3dBox(var ARect: TRect; const FrameWidth: integer; const Style: TBevelCut);
procedure FrameRect(const ARect: TRect; const ABrush: TCocoaBrush);
procedure DrawBitmap(X, Y: Integer; ABitmap: TCocoaBitmap);
function DrawImageRep(dstRect: NSRect; const srcRect: NSRect; ImageRep: NSBitmapImageRep): Boolean;
function StretchDraw(X, Y, Width, Height: Integer; SrcDC: TCocoaBitmapContext;
XSrc, YSrc, SrcWidth, SrcHeight: Integer; Msk: TCocoaBitmap; XMsk,
YMsk: Integer; Rop: DWORD): Boolean;
function GetTextExtentPoint(AStr: PChar; ACount: Integer; var Size: TSize): Boolean;
function GetTextMetrics(var TM: TTextMetric): Boolean;
function CGContext: CGContextRef; virtual;
procedure SetAntialiasing(AValue: Boolean);
function GetLogicalOffset: TPoint;
function GetClipRect: TRect;
function SetClipRegion(AClipRegion: TCocoaRegion; Mode: TCocoaCombine): TCocoaRegionType;
function CopyClipRegion(ADstRegion: TCocoaRegion): TCocoaRegionType;
property Control: TWinControl read FControl write FControl;
property Clipped: Boolean read FClipped;
property Flipped: Boolean read FFlipped;
property PenPos: TPoint read FPenPos write FPenPos;
property ROP2: Integer read FROP2 write SetROP2;
property Size: TSize read FSize;
property WindowOfs: TPoint read FWindowOfs write SetWindowOfs;
property ViewPortOfs: TPoint read FViewPortOfs write SetViewPortOfs;
property BkColor: TColor read FBkColor write SetBkColor;
property BkMode: Integer read FBkMode write SetBkMode;
property BkBrush: TCocoaBrush read FBkBrush;
property TextColor: TColor read GetTextColor write SetTextColor;
// selected GDI objects
property Brush: TCocoaBrush read FBrush write SetBrush;
property Pen: TCocoaPen read FPen write SetPen;
property Font: TCocoaFont read GetFont write SetFont;
property Region: TCocoaRegion read FRegion write SetRegion;
end;
{ TCocoaBitmapContext }
TCocoaBitmapContext = class(TCocoaContext)
private
FBitmap : TCocoaBitmap;
procedure SetBitmap(const AValue: TCocoaBitmap);
protected
procedure AttachedBitmap_SetModified(); override;
public
constructor Create; reintroduce;
destructor Destroy; override;
function GetPixel(X,Y:integer): TColor; override;
property Bitmap: TCocoaBitmap read FBitmap write SetBitmap;
end;
var
DefaultBrush: TCocoaBrush;
DefaultPen: TCocoaPen;
DefaultFont: TCocoaFont;
DefaultBitmap: TCocoaBitmap;
DefaultContext: TCocoaBitmapContext;
ScreenContext: TCocoaContext;
function CheckDC(dc: HDC): TCocoaContext;
function CheckDC(dc: HDC; Str: string): Boolean;
function CheckGDIOBJ(obj: HGDIOBJ): TCocoaGDIObject;
function CheckBitmap(ABitmap: HBITMAP; AStr: string): Boolean;
function AllocMultiResImageFromImageList(lst: TCustomImageList; width, imgIdx: Integer): NSImage;
type
{ LCLNSGraphicsContext }
LCLNSGraphicsContext = objccategory (NSGraphicsContext)
function lclCGContext: CGContextRef; message 'lclCGContext';
end;
implementation
{ LCLNSGraphicsContext }
function LCLNSGraphicsContext.lclCGcontext: CGContextRef;
begin
if NSAppKitVersionNumber >= NSAppKitVersionNumber10_10 then
Result := CGContext
else
Result := CGContextRef(graphicsPort);
end;
//todo: a better check!
function CheckDC(dc: HDC): TCocoaContext;
begin
//Result := TCocoaContext(dc);
if TObject(dc) is TCocoaContext then
Result := TCocoaContext(dc)
else
Result := nil;
end;
function CheckDC(dc: HDC; Str: string): Boolean;
begin
//Result := dc<>0;
Result := (dc <> 0) and (TObject(dc) is TCocoaContext);
end;
function CheckGDIOBJ(obj: HGDIOBJ): TCocoaGDIObject;
begin
//Result := TObject(obj) as TCocoaGDIObject;
if TObject(obj) is TCocoaGDIObject then
Result := TCocoaGDIObject(obj)
else
Result := nil;
end;
function CheckBitmap(ABitmap: HBITMAP; AStr: string): Boolean;
begin
Result := ABitmap <> 0;
end;
function AllocMultiResImageFromImageList(lst: TCustomImageList;
width, imgIdx: Integer): NSImage;
var
bmp : TBitmap;
lstres: TCustomImageListResolution;
w : Integer;
sz : NSSize;
x,y : integer;
img : NSImage;
rep : NSBitmapImageRep;
cb : TCocoaBitmap;
begin
img := nil;
w := lst.WidthForPPI[width, 96];
sz.width := w;
sz.height := lst.HeightForWidth[w];
bmp := TBitmap.Create;
try
for lstres in lst.Resolutions do begin
lstres.GetBitmap(imgIdx, bmp);
if bmp.Handle = 0 then
Continue;
// Bitmap Handle should be nothing but TCocoaBitmap
cb := TCocoaBitmap(bmp.Handle);
// There's NSBitmapImageRep in TCocoaBitmap, but it depends on the availability
// of memory buffer stored with TCocoaBitmap. As soon as TCocoaBitmap is freed
// pixels are not available. For this reason, we're making a copy of the bitmapdata
// allowing Cocoa to allocate its own buffer (by passing nil for planes parameter)
rep := NSBitmapImageRep(NSBitmapImageRep.alloc).initWithBitmapDataPlanes_pixelsWide_pixelsHigh__colorSpaceName_bitmapFormat_bytesPerRow_bitsPerPixel(
nil, // planes, BitmapDataPlanes
Round(cb.ImageRep.size.Width), // width, pixelsWide
Round(cb.ImageRep.size.Height),// height, PixelsHigh
cb.ImageRep.bitsPerSample,// bitsPerSample, bps
cb.ImageRep.samplesPerPixel, // samplesPerPixel, spp
cb.ImageRep.hasAlpha, // hasAlpha
False, // isPlanar
cb.ImageRep.colorSpaceName, // colorSpaceName
cb.ImageRep.bitmapFormat, // bitmapFormat
cb.ImageRep.bytesPerRow, // bytesPerRow
cb.ImageRep.BitsPerPixel //bitsPerPixel
);
System.Move( cb.ImageRep.bitmapData^, rep.bitmapData^, cb.ImageRep.bytesPerRow * Round(cb.ImageRep.size.height));
if img = nil then
img := NSImage(NSImage.alloc).initWithSize( sz );
img.addRepresentation(rep);
rep.release;
end;
finally
bmp.Free;
end;
Result := img;
end;
procedure GetWindowViewTranslate(const AWindowOfs, AViewOfs: TPoint; out dx, dy: Integer); inline;
begin
dx := AViewOfs.x - AWindowOfs.x;
dy := AViewOfs.y - AWindowOfs.y;
end;
function isSamePoint(const p1, p2: TPoint): Boolean; inline;
begin
Result:=(p1.x=p2.x) and (p1.y=p2.y);
end;
{ TCocoaFont }
constructor TCocoaFont.CreateDefault(AGlobal: Boolean = False);
var Pool: NSAutoreleasePool;
begin
Pool := NSAutoreleasePool.alloc.init;
FIsSystemFont := True;
Create(NSFont.systemFontOfSize(0), AGlobal);
Pool.release;
end;
constructor TCocoaFont.Create(const ALogFont: TLogFont; AFontName: String; AGlobal: Boolean);
var
FontName: NSString;
Descriptor: NSFontDescriptor;
Attributes: NSDictionary;
Pool: NSAutoreleasePool;
Win32Weight, LoopCount: Integer;
CocoaWeight: NSInteger;
FTmpFont: NSFont;
IsDefault: Boolean;
begin
inherited Create(AGlobal);
Pool := NSAutoreleasePool.alloc.init;
try
FName := AFontName;
// If we are using a "systemFont" font we need this complex shuffling,
// because otherwise the result is wrong in Mac OS X 10.11, see bug 30300
// Code used for 10.10 or inferior:
// FName := NSStringToString(NSFont.systemFontOfSize(0).familyName);
//
// There's a differnet issue with not using systemFont.
// NSComboBox, if assigned a manually created font have an odd ascending-offset
// (easily seen in Xcode interface builder as well). systemFonts()
// don't have such issue at all. see bug 33626
// the fix below (detecting "default" font and use systemFont()) is a potential
// regression for bug 30300.
//
// There might font properties (i.e. Transform Matrix) to adjust the position of
// the font. But at this time, it's safer to use systemFont() method
IsDefault := IsFontNameDefault(FName);
{if IsDefault then
begin
FTmpFont := NSFont.fontWithName_size(NSFont.systemFontOfSize(0).fontDescriptor.postscriptName, 0);
FName := NSStringToString(FTmpFont.familyName);
end;}
if ALogFont.lfHeight = 0 then
FSize := Round(NSFont.systemFontSize)
else
FSize := Abs(ALogFont.lfHeight); // To-Do: emulate WinAPI difference between negative and absolute height values
// create font attributes
Win32Weight := ALogFont.lfWeight;
FStyle := [];
if ALogFont.lfItalic > 0 then
include(FStyle, cfs_Italic);
if Win32Weight > FW_NORMAL then
include(FStyle, cfs_Bold);
if ALogFont.lfUnderline > 0 then
include(FStyle, cfs_Underline);
if ALogFont.lfStrikeOut > 0 then
include(FStyle, cfs_StrikeOut);
// If this is not a "systemFont" Create the font ourselves
if IsDefault then
begin
if ALogFont.lfPitchAndFamily = FIXED_PITCH then
begin
if NSAppKitVersionNumber >= NSAppKitVersionNumber10_15 then
FFont := NSFont.monospacedSystemFontOfSize_weight(FSize, NSFontWeightRegular)
else
FFont := NSFont.fontWithName_size(NSSTR('Menlo'), FSize);
if cfs_Bold in Style then
FFont := NSFontManager.sharedFontManager.convertFont_toHaveTrait(FFont, NSBoldFontMask);
end
else if cfs_Bold in Style then
FFont := NSFont.boldSystemFontOfSize( FSize )
else
FFont := NSFont.systemFontOfSize( FSize );
end else begin
FontName := NSStringUTF8(FName);
FFont := NSFont.fontWithName_size(FontName, FSize);
FontName.release;
end;
if FFont = nil then
begin
// fallback to system font if not found (at least we can try to apply some of the other traits)
FName := NSStringToString(NSFont.systemFontOfSize(0).familyName);
FontName := NSStringUTF8(FName);
Attributes := NSDictionary.dictionaryWithObjectsAndKeys(
FontName, NSFontFamilyAttribute,
NSNumber.numberWithFloat(FSize), NSFontSizeAttribute,
nil);
FontName.release;
Descriptor := NSFontDescriptor.fontDescriptorWithFontAttributes(Attributes);
FFont := NSFont.fontWithDescriptor_textTransform(Descriptor, nil);
if FFont = nil then
begin
exit;
end;
end;
// we could use NSFontTraitsAttribute to request the desired font style (Bold/Italic)
// but in this case we may get NIL as result. This way is safer.
if cfs_Italic in Style then
FFont := NSFontManager.sharedFontManager.convertFont_toHaveTrait(FFont, NSItalicFontMask);
if not IsDefault then
begin
if cfs_Bold in Style then
FFont := NSFontManager.sharedFontManager.convertFont_toHaveTrait(FFont, NSBoldFontMask);
case ALogFont.lfPitchAndFamily and $F of
FIXED_PITCH, MONO_FONT:
FFont := NSFontManager.sharedFontManager.convertFont_toHaveTrait(FFont, NSFixedPitchFontMask);
end;
end;
if (Win32Weight <> FW_DONTCARE) and (not IsDefault or (Win32Weight <> FW_BOLD)) then
begin
// currently if we request the desired weight by Attributes we may get a nil font
// so we need to get font weight and to convert it to lighter/heavier
LoopCount := 0;
repeat
// protection from endless loop
if LoopCount > 12 then
Break;
CocoaWeight := CocoaFontWeightToWin32FontWeight(NSFontManager.sharedFontManager.weightOfFont(FFont));
if CocoaWeight < Win32Weight then
FFont := NSFontManager.sharedFontManager.convertWeight_ofFont(True, FFont)
else
if CocoaWeight > Win32Weight then
FFont := NSFontManager.sharedFontManager.convertWeight_ofFont(False, FFont);
inc(LoopCount);
until CocoaWeight = Win32Weight;
end;
FFont.retain;
FAntialiased := ALogFont.lfQuality <> NONANTIALIASED_QUALITY;
FRotationDeg := ALogFont.lfEscapement / 10;
finally
Pool.release;
end;
end;
constructor TCocoaFont.Create(const AFont: NSFont; AGlobal: Boolean = False);
begin
Create(AFont, [], AGlobal);
end;
constructor TCocoaFont.Create(const AFont: NSFont; const AExtraStyle: TCocoaFontStyle;
AGlobal: Boolean = False); overload;
begin
inherited Create(AGlobal);
SetHandle(AFont, AExtraStyle);
end;
destructor TCocoaFont.Destroy;
begin
if Assigned(FFont) then
FFont.release;
inherited;
end;
class function TCocoaFont.CocoaFontWeightToWin32FontWeight(const CocoaFontWeight: Integer): Integer; static;
begin
case CocoaFontWeight of
0, 1: Result := FW_THIN;
2: Result := FW_ULTRALIGHT;
3: Result := FW_EXTRALIGHT;
4: Result := FW_LIGHT;
5: Result := FW_NORMAL;
6: Result := FW_MEDIUM;
7, 8: Result := FW_SEMIBOLD;
9: Result := FW_BOLD;
10: Result := FW_EXTRABOLD;
else
Result := FW_HEAVY;
end;
end;
procedure TCocoaFont.SetHandle(ANewHandle: NSFont; const AExtraStyle: TCocoaFontStyle = []);
var
pool: NSAutoreleasePool;
lsymTraits: NSFontSymbolicTraits;
begin
if FFont <> nil then
begin
FFont.release;
end;
Pool := NSAutoreleasePool.alloc.init;
FFont := ANewHandle;
FFont.retain;
FName := NSStringToString(FFont.familyName);
FSize := Round(FFont.pointSize);
FStyle := [];
lsymTraits := FFont.fontDescriptor.symbolicTraits;
if (lsymTraits and NSFontBoldTrait) <> 0 then
Include(FStyle, cfs_Bold);
if (lsymTraits and NSFontItalicTrait) <> 0 then
Include(FStyle, cfs_Italic);
FStyle := FStyle + AExtraStyle;
FAntialiased := True;
Pool.release;
end;
{ TCocoaColorObject }
function TCocoaColorObject.GetColorRef: TColorRef;
begin
Result := TColorRef(RGBToColor(FR, FG, FB));
end;
constructor TCocoaColorObject.Create(const AColor: TColor; ASolid, AGlobal: Boolean);
begin
inherited Create(AGlobal);
SetColor(AColor, ASolid);
end;
procedure TCocoaColorObject.SetColor(const AColor: TColor; ASolid: Boolean);
begin
RedGreenBlue(ColorToRGB(AColor), FR, FG, FB);
FA := ASolid;
end;
procedure TCocoaColorObject.GetRGBA(AROP2: Integer; out AR, AG, AB, AA: CGFloat);
var alpha:single;
begin
if FA then
alpha:=1
else
alpha:=0;
case AROP2 of
R2_BLACK:
begin
AR := 0;
AG := 0;
AB := 0;
AA := alpha;
end;
R2_WHITE:
begin
AR := 1;
AG := 1;
AB := 1;
AA := alpha;
end;
R2_NOP:
begin
AR := 1;
AG := 1;
AB := 1;
AA := 0;
end;
R2_NOT, R2_NOTXORPEN:
begin
AR := 1;
AG := 1;
AB := 1;
AA := alpha;
end;
R2_NOTCOPYPEN:
begin
AR := (255 - FR) / 255;
AG := (255 - FG) / 255;
AB := (255 - FB) / 255;
AA := alpha;
end;
else // copy
begin
AR := FR / 255;
AG := FG / 255;
AB := FB / 255;
AA := alpha;
end;
end;
end;
function TCocoaColorObject.ObtainNSColor: NSColor;
begin
Result := NSColor.colorWithCalibratedRed_green_blue_alpha(FR / 255, FG / 255, FB / 255, Byte(FA));
end;
{------------------------------------------------------------------------------
Method: TCocoaBitmap.Create
Params: AWidth - Bitmap width
AHeight - Bitmap height
ADepth - Significant bits per pixel
ABitsPerPixel - The number of allocated bits per pixel (can be larger than depth)
// AAlignment - Alignment of the data for each row
// ABytesPerRow - The number of bytes between rows
ACopyData - Copy supplied bitmap data (OPTIONAL)
Creates Cocoa bitmap with the specified characteristics
------------------------------------------------------------------------------}
constructor TCocoaBitmap.Create(AWidth, AHeight, ADepth, ABitsPerPixel: Integer;
AAlignment: TCocoaBitmapAlignment; AType: TCocoaBitmapType;
AData: Pointer; ACopyData: Boolean);
type
TColorEntry = packed record
C1, C2, C3, C4: Byte;
end;
PColorEntry = ^TColorEntry;
TColorEntryArray = array[0..MaxInt div SizeOf(TColorEntry) - 1] of TColorEntry;
PColorEntryArray = ^TColorEntryArray;
procedure CopySwappedColorComponents(ASrcData, ADestData: PColorEntryArray; ADataSize: Integer; AType: TCocoaBitmapType);
var
I: Integer;
begin
//switch B and R components
for I := 0 to ADataSize div SizeOf(TColorEntry) - 1 do
begin
case AType of
cbtABGR:
begin
ADestData^[I].C1 := ASrcData^[I].C1;
ADestData^[I].C2 := ASrcData^[I].C4;
ADestData^[I].C3 := ASrcData^[I].C3;
ADestData^[I].C4 := ASrcData^[I].C2;
end;
cbtBGRA:
begin
ADestData^[I].C1 := ASrcData^[I].C3;
ADestData^[I].C2 := ASrcData^[I].C2;
ADestData^[I].C3 := ASrcData^[I].C1;
ADestData^[I].C4 := ASrcData^[I].C4;
end;
end;
end;
end;
begin
inherited Create(False);
{$ifdef VerboseBitmaps}
DebugLn(Format('[TCocoaBitmap.Create] AWidth=%d AHeight=%d ADepth=%d ABitsPerPixel=%d'
+ ' AAlignment=%d AType=%d AData=? ACopyData=%d',
[AWidth, AHeight, ADepth, ABitsPerPixel, Integer(AAlignment), Integer(AType), Integer(ACopyData)]));
{$endif}
SetInfo(AWidth, AHeight, ADepth, ABitsPerPixel, AAlignment, AType);
// Copy the image data, if necessary
if (AData = nil) or ACopyData then
begin
System.GetMem(FData, FDataSize);
FFreeData := True;
if AData <> nil then
begin
if AType in [cbtABGR, cbtBGRA] then
begin
Assert(AWidth * AHeight * SizeOf(TColorEntry) = FDataSize);
CopySwappedColorComponents(AData, FData, FDataSize, AType);
end
else
System.Move(AData^, FData^, FDataSize) // copy data
end
else
FillDWord(FData^, FDataSize shr 2, 0); // clear bitmap
end
else
begin
FData := AData;
FFreeData := False;
end;
CreateHandle();
end;
constructor TCocoaBitmap.CreateDefault;
begin
Create(1, 1, 32, 32, cbaByte, cbtARGB, nil);
end;
destructor TCocoaBitmap.Destroy;
begin
FreeHandle();
if FFreeData then System.FreeMem(FData);
if FOriginalData <> nil then
System.FreeMem(FOriginalData);
inherited Destroy;
end;
procedure TCocoaBitmap.SetInfo(AWidth, AHeight, ADepth,
ABitsPerPixel: Integer; AAlignment: TCocoaBitmapAlignment;
AType: TCocoaBitmapType);
const
ALIGNBITS: array[TCocoaBitmapAlignment] of Integer = (0, 1, 3, 7, $F);
var
M: Integer;
begin
//WriteLn('[TCocoaBitmap.SetInfo] AWidth=', AWidth, ' AHeight=', AHeight,
// ' ADepth=', ADepth, ' ABitsPerPixel=', ABitsPerPixel);
if AWidth < 1 then AWidth := 1;
if AHeight < 1 then AHeight := 1;
FWidth := AWidth;
FHeight := AHeight;
FDepth := ADepth;
FBitsPerPixel := ABitsPerPixel;
FType := AType;
FAlignment := AAlignment;
if (FType in [cbtMono, cbtGray]) and (FDepth=0) then
FDepth := FBitsPerPixel;
FBytesPerRow := ((AWidth * ABitsPerPixel) + 7) shr 3;
M := FBytesPerRow and ALIGNBITS[AAlignment];
if M <> 0 then Inc(FBytesPerRow, ALIGNBITS[AAlignment] + 1 - M);
FDataSize := FBytesPerRow * FHeight;
// Cocoa information
case ABitsPerPixel of
// Strangely, this might appear
0:
begin
FBitsPerSample := 0;
FSamplesPerPixel := 0;
end;
// Mono
1:
begin
FBitsPerSample := 1;
FSamplesPerPixel := 1;
end;
// Gray scale
8:
begin
FBitsPerSample := 8;
FSamplesPerPixel := 1;
end;
// ARGB
32:
begin
FBitsPerSample := 8;
if AType = cbtRGB then
FSamplesPerPixel := 3
else
FSamplesPerPixel := 4;
end;
else
// Other RGB
FBitsPerSample := ABitsPerPixel div 3;
FSamplesPerPixel := 3;
end;
end;
procedure TCocoaBitmap.CreateHandle();
var
HasAlpha: Boolean;
BitmapFormat: NSBitmapFormat;
begin
HasAlpha := FType in [cbtARGB, cbtRGBA, cbtABGR, cbtBGRA];
// Non premultiplied bitmaps can't be used for bitmap context
// So we need to pre-multiply ourselves, but only if we were allowed
// to copy the data, otherwise we might corrupt the original
if FFreeData then
PreMultiplyAlpha();
BitmapFormat := 0;
if FType in [cbtARGB, cbtABGR, cbtRGB] then
BitmapFormat := BitmapFormat or NSAlphaFirstBitmapFormat;
//WriteLn('[TCocoaBitmap.Create] FSamplesPerPixel=', FSamplesPerPixel,
// ' FData=', DebugShowData());
// Create the associated NSImageRep
Assert(FImagerep = nil);
FImagerep := NSBitmapImageRep(NSBitmapImageRep.alloc.initWithBitmapDataPlanes_pixelsWide_pixelsHigh__colorSpaceName_bitmapFormat_bytesPerRow_bitsPerPixel(
@FData, // planes, BitmapDataPlanes
FWidth, // width, pixelsWide
FHeight,// height, PixelsHigh
FBitsPerSample,// bitsPerSample, bps
FSamplesPerPixel, // samplesPerPixel, spp
HasAlpha, // hasAlpha
False, // isPlanar
GetColorSpace, // colorSpaceName
BitmapFormat, // bitmapFormat
FBytesPerRow, // bytesPerRow
FBitsPerPixel //bitsPerPixel
));
// Create the associated NSImage
Assert(FImage = nil);
FImage := NSImage.alloc.initWithSize(NSMakeSize(FWidth, FHeight));
//pool := NSAutoreleasePool.alloc.init;
Image.addRepresentation(Imagerep);
//pool.release;
end;
procedure TCocoaBitmap.FreeHandle;
begin
if FImage <> nil then
begin
FImage.release;
FImage := nil;
end;
if FImageRep <> nil then
begin
FImageRep.release;
FImageRep := nil;
end;
end;
procedure TCocoaBitmap.ReCreateHandle;
begin
FreeHandle();
if (FOriginalData <> nil) and (FData <> nil) then // fix bug 28692
System.Move(FOriginalData^, FData^, FDataSize);
CreateHandle();
end;
procedure TCocoaBitmap.ReCreateHandle_IfModified;
begin
if FModified_SinceLastRecreate then
ReCreateHandle();
FModified_SinceLastRecreate := False;
end;
procedure TCocoaBitmap.SetModified;
begin
if FOriginalData <> nil then
begin
// the original data no longer applies, as imageRep was modified
System.FreeMem(FOriginalData);
FOriginalData:=nil;
end;
FModified_SinceLastRecreate := True;
end;
function TCocoaBitmap.CreateSubImage(const ARect: TRect): CGImageRef;
begin
if ImageRep = nil then
Result := nil
else
Result := CGImageCreateWithImageInRect(MacOSAll.CGImageRef(ImageRep.CGImage), RectToCGRect(ARect));
end;
function TCocoaBitmap.CreateMaskImage(const ARect: TRect): CGImageRef;
var
CGDataProvider: CGDataProviderRef;
Mask: CGImageRef;
begin
CGDataProvider := CGDataProviderCreateWithData(nil, FData, FDataSize, nil);
try
Mask := CGImageMaskCreate(FWidth, FHeight, FBitsPerPixel,
FBitsPerPixel, FBytesPerRow, CGDataProvider, nil, 0);
Result := CGImageCreateWithImageInRect(Mask, RectToCGRect(ARect));
finally
CGDataProviderRelease(CGDataProvider);
CGImageRelease(Mask);
end;
end;
function TCocoaBitmap.GetColorSpace: NSString;
begin
if FType in [cbtMono, cbtGray] then
Result := NSDeviceWhiteColorSpace
else
Result := NSDeviceRGBColorSpace;
end;
// Cocoa cannot create a context unless the image has alpha pre-multiplied
procedure TCocoaBitmap.PreMultiplyAlpha;
var
lByteData: PByte;
i: Integer;
lAlpha, lRed, lGreen, lBlue: Byte;
begin
if not (FType in [cbtARGB, cbtRGBA]) then Exit;
if FData = nil then Exit;
// Keep the original data in a copy, otherwise we cant get access to it
// because pre-multiplying destroys the original value if we had alpha=0
if FOriginalData <> nil then
System.FreeMem(FOriginalData);
System.GetMem(FOriginalData, FDataSize);
System.Move(FData^, FOriginalData^, FDataSize); // copy data
// Pre-Multiply
lByteData := PByte(FData);
i := 0;
while i < FDataSize - 3 do
begin
if FType = cbtARGB then
begin
lAlpha := lByteData[i];
lRed := lByteData[i+1];
lGreen := lByteData[i+2];
lBlue := lByteData[i+3];
lByteData[i+1] := (lRed * lAlpha) div $FF;
lByteData[i+2] := (lGreen * lAlpha) div $FF;
lByteData[i+3] := (lBlue * lAlpha) div $FF;
end
else if FType = cbtRGBA then
begin
lAlpha := lByteData[i+3];
lRed := lByteData[i];
lGreen := lByteData[i+1];
lBlue := lByteData[i+2];
lByteData[i] := (lRed * lAlpha) div $FF;
lByteData[i+1] := (lGreen * lAlpha) div $FF;
lByteData[i+2] := (lBlue * lAlpha) div $FF;
end;
Inc(i, 4);
end;
end;
// The Alpha pre-multiplication will prevent us from obtaining the original image
// raw data for the function RawImage_FromCocoaBitmap,
// so we need to store it
function TCocoaBitmap.GetNonPreMultipliedData(): PByte;
begin
if FOriginalData <> nil then
Result := FOriginalData
else
Result := PByte(FData);
end;
function TCocoaBitmap.DebugShowData: string;
var
i: Integer;
begin
Result := '';
for i := 0 to FDataSize -1 do
begin
Result := Result + IntToHex(PByte(FData)[i], 2);
if i mod 4 = 3 then
Result := Result + ' - '
end;
end;
constructor TCocoaBitmap.Create(ABitmap: TCocoaBitmap);
begin
Create(ABitmap.Width, ABitmap.Height, ABitmap.Depth, ABitmap.FBitsPerPixel,
ABitmap.FAlignment, ABitmap.FType, ABitmap.Data);
end;
{ TCocoaContext }
function TCocoaContext.CGContext: CGContextRef;
begin
Result := CGContextRef(ctx.lclCGContext);
end;
procedure TCocoaContext.SetAntialiasing(AValue: Boolean);
begin
if not AValue then
ctx.setImageInterpolation(NSImageInterpolationNone)
else
ctx.setImageInterpolation(NSImageInterpolationDefault);
ctx.setShouldAntialias(AValue);
end;
function TCocoaContext.GetLogicalOffset: TPoint;
begin
GetWindowViewTranslate(WindowOfs, ViewportOfs, Result.X, Result.Y);
end;
function TCocoaContext.GetClipRect: TRect;
begin
Result := CGRectToRect(CGContextGetClipBoundingBox(CGContext));
end;
function TCocoaContext.SetClipRegion(AClipRegion: TCocoaRegion; Mode: TCocoaCombine): TCocoaRegionType;
begin
ClearClipping;
FClipped := False;
if not Assigned(AClipRegion) then
FClipRegion.Clear
else
begin
CGContextSaveGState(CGContext());
FClipRegion.CombineWith(AClipRegion, Mode);
FClipRegion.Apply(Self);
FClipped := True;
end;
Result := FClipRegion.GetType;
end;
function TCocoaContext.CopyClipRegion(ADstRegion: TCocoaRegion): TCocoaRegionType;
begin
if Assigned(ADstRegion) then
Result := ADstRegion.CombineWith(FClipRegion, cc_Copy)
else
Result := crt_Error;
end;
function TCocoaContext.GetTextColor: TColor;
begin
Result := FForegroundColor;
end;
function TCocoaContext.GetFont: TCocoaFont;
begin
Result := FFont;
end;
procedure TCocoaContext.SetBkColor(AValue: TColor);
begin
AValue := ColorToRGB(AValue);
FBkColor := AValue;
FBkBrush.SetColor(AValue, BkMode = OPAQUE);
end;
procedure TCocoaContext.SetBkMode(AValue: Integer);
begin
if FBkMode <> AValue then
begin
FBkMode := AValue;
FBkBrush.SetColor(FBkColor, FBkMode = OPAQUE);
end;
end;
procedure TCocoaContext.SetBrush(const AValue: TCocoaBrush);
begin
if TCocoaGDIObject.UpdateRefs(FBrush, AValue) then
begin
FBrush := AValue;
if Assigned(FBrush) then FBrush.Apply(Self);
end;
end;
procedure TCocoaContext.SetFont(const AValue: TCocoaFont);
begin
if TCocoaGDIObject.UpdateRefs(FFont, AValue) then begin
FFont := AValue;
end;
end;
procedure TCocoaContext.SetPen(const AValue: TCocoaPen);
begin
if TCocoaGDIObject.UpdateRefs(FPen, AValue) then
begin
FPen := AValue;
if Assigned(FPen) then FPen.Apply(Self);
end;
end;
procedure TCocoaContext.SetRegion(const AValue: TCocoaRegion);
begin
if TCocoaGDIObject.UpdateRefs(FRegion, AValue) then
begin
FRegion := AValue;
if Assigned(FRegion) then FRegion.Apply(Self);
end;
end;
procedure TCocoaContext.SetROP2(AValue: Integer);
begin
if FROP2 <> AValue then
begin
FROP2 := AValue;
Pen.Apply(Self);
Brush.Apply(Self);
end;
end;
procedure TCocoaContext.SetTextColor(AValue: TColor);
begin
FForegroundColor := AValue;
end;
procedure TCocoaContext.UpdateContextOfs(const AWindowOfs, AViewOfs: TPoint);
var
dx, dy: Integer;
begin
if isSamePoint(AWindowOfs, FWindowOfs) and isSamePoint(AViewOfs, FViewPortOfs) then Exit;
GetWindowViewTranslate(FWindowOfs, FViewPortOfs, dx{%H-}, dy{%H-});
CGContextTranslateCTM(CGContext, -dx, -dy);
FWindowOfs := AWindowOfs;
FViewPortOfs := AViewOfs;
GetWindowViewTranslate(FWindowOfs, FViewPortOfs, dx, dy);
CGContextTranslateCTM(CGContext, dx, dy);
end;
procedure TCocoaContext.SetViewPortOfs(AValue: TPoint);
begin
UpdateContextOfs(WindowOfs, AValue);
end;
procedure TCocoaContext.SetWindowOfs(AValue: TPoint);
begin
UpdateContextOfs(AValue, ViewPortOfs);
end;
function TCocoaContext.SaveDCData: TCocoaDCData;
begin
Result := TCocoaDCData.Create;
Result.CurrentFont := Font;
Result.CurrentBrush := FBrush;
Result.CurrentPen := FPen;
Result.CurrentRegion := FRegion;
// Add references for retained state
if Assigned(Result.CurrentFont) then Result.CurrentFont.AddRef;
if Assigned(Result.CurrentBrush) then Result.CurrentBrush.AddRef;
if Assigned(Result.CurrentPen) then Result.CurrentPen.AddRef;
if Assigned(Result.CurrentRegion) then Result.CurrentRegion.AddRef;
Result.BkColor := FBkColor;
Result.BkMode := FBkMode;
Result.BkBrush := FBkBrush;
Result.TextColor := TextColor;
Result.ROP2 := FROP2;
Result.PenPos := FPenPos;
Result.WindowOfs := FWindowOfs;
Result.ViewportOfs := FViewportOfs;
Result.isClipped := FClipped;
Result.ClipShape := FClipRegion.GetShapeCopy;
end;
destructor TCocoaDCData.Destroy;
begin
// Remove references for retained state
if Assigned(CurrentFont) then CurrentFont.Release;
if Assigned(CurrentBrush) then CurrentBrush.Release;
if Assigned(CurrentPen) then CurrentPen.Release;
if Assigned(CurrentRegion) then CurrentRegion.Release;
end;
procedure TCocoaContext.RestoreDCData(const AData: TCocoaDCData);
begin
Font := AData.CurrentFont;
Brush := AData.CurrentBrush;
Pen := AData.CurrentPen;
Region := AData.CurrentRegion;
FBkColor := AData.BkColor;
FBkMode := AData.BkMode;
FBkBrush := AData.BkBrush;
TextColor := AData.TextColor;
FROP2 := AData.ROP2;
FPenPos := AData.PenPos;
FWindowOfs := AData.WindowOfs;
FViewportOfs := AData.ViewportOfs;
FClipped := AData.isClipped;
FClipRegion.Shape := AData.ClipShape;
end;
constructor TCocoaContext.Create(AGraphicsContext: NSGraphicsContext);
begin
inherited Create;
ctx := AGraphicsContext;
if Assigned(ctx) then
ctx.retain;
FBkBrush := TCocoaBrush.CreateDefault;
FBrush := DefaultBrush;
FBrush.AddRef;
FPen := DefaultPen;
FPen.AddRef;
FRegion := TCocoaRegion.CreateDefault;
FClipRegion := FRegion;
FClipRegion.AddRef;
FSavedDCList := nil;
FClipped := False;
FFlipped := False;
end;
destructor TCocoaContext.Destroy;
begin
if Assigned(FBrush) then
FBrush.Release;
if Assigned(FPen) then
FPen.Release;
if Assigned(FRegion) then
FRegion.Release;
FClipRegion.Release;
FSavedDCList.Free;
FBkBrush.Free;
if Assigned(ctx) then begin
if Clipped then
CGContextRestoreGState(CGContext());
if Flipped then
CGContextRestoreGState(CGContext());
ctx.release;
end;
if Assigned(boxview) then boxview.release;
inherited Destroy;
end;
function TCocoaContext.SaveDC: Integer;
begin
ClearClipping;
Result := 0;
if FSavedDCList = nil then
FSavedDCList := TFPObjectList.Create(True);
NSGraphicsContext.classSaveGraphicsState;
//ctx.saveGraphicsState;
Result := FSavedDCList.Add(SaveDCData) + 1;
if FClipped then
begin
CGContextSaveGState(CGContext());
FClipRegion.Apply(Self);
end;
end;
function TCocoaContext.RestoreDC(ASavedDC: Integer): Boolean;
begin
ClearClipping;
Result := False;
if (FSavedDCList = nil) or (ASavedDC <= 0) or (ASavedDC > FSavedDCList.Count) then
Exit;
while FSavedDCList.Count > ASavedDC do
begin
NSGraphicsContext.classRestoreGraphicsState;
RestoreDCData(TCocoaDCData(FSavedDCList.Count - 1));
FSavedDCList.Delete(FSavedDCList.Count - 1);
end;
NSGraphicsContext.classRestoreGraphicsState;
RestoreDCData(TCocoaDCData(FSavedDCList[ASavedDC - 1]));
FSavedDCList.Delete(ASavedDC - 1);
Result := True;
if FSavedDCList.Count = 0 then FreeAndNil(FSavedDCList);
if FClipped then
begin
CGContextSaveGState(CGContext());
FClipRegion.Apply(Self);
end;
end;
function TCocoaContext.InitDraw(width, height:Integer): Boolean;
var
cg: CGContextRef;
begin
cg := CGContext;
Result := Assigned(cg);
if not Result then Exit;
CGContextSaveGState(cg);
FFlipped := True;
FSize.cx := width;
FSize.cy := height;
if NOT ctx.isFlipped then begin
CGContextTranslateCTM(cg, 0, height);
CGContextScaleCTM(cg, 1, -1);
end;
FPenPos.x := 0;
FPenPos.y := 0;
end;
procedure TCocoaContext.InvertRectangle(X1, Y1, X2, Y2: Integer);
begin
// save dest context
{$if FPC_FULLVERSION < 30300}
ctx.instanceSaveGraphicsState;
{$else}
ctx.saveGraphicsState;
{$endif}
try
DefaultBrush.Apply(Self, False);
CGContextSetBlendMode(CGContext, kCGBlendModeDifference);
CGContextFillRect(CGContext, GetCGRectSorted(X1, Y1, X2, Y2));
finally
{$if FPC_FULLVERSION < 30300}
ctx.instanceRestoreGraphicsState;
{$else}
ctx.restoreGraphicsState;
{$endif}
AttachedBitmap_SetModified();
end;
end;
procedure TCocoaContext.MoveTo(X, Y: Integer);
begin
FPenPos.x := X;
FPenPos.y := Y;
end;
procedure TCocoaContext.LineTo(X, Y: Integer);
var
cg: CGContextRef;
deltaX, deltaY, absDeltaX, absDeltaY: Integer;
clipDeltaX, clipDeltaY: Float32;
tx, ty, bx, by: Float32;
begin
cg := CGContext;
if not Assigned(cg) then Exit;
bx := FPenPos.x;
by := FPenPos.y;
deltaX := X-FPenPos.x;
deltaY := Y-FPenPos.y;
if (deltaX=0) and (deltaY=0) then Exit;
absDeltaX := Abs(deltaX);
absDeltaY := Abs(deltaY);
if (absDeltaX<=1) and (absDeltaY<=1) then
begin
// special case for 1-pixel lines
tx := bx + 0.5 * deltaX;
ty := by + 0.5 * deltay;
end
else
begin
// exclude the last pixel from the line
if absDeltaX > absDeltaY then
begin
if deltaX > 0 then clipDeltaX := -0.5 else clipDeltaX := 0.5;
clipDeltaY := clipDeltaX * deltaY / deltaX;
end
else
begin
if deltaY > 0 then clipDeltaY := -0.5 else clipDeltaY := 0.5;
clipDeltaX := clipDeltaY * deltaX / deltaY;
end;
bx := bx + clipDeltaX;
by := by + clipDeltaY;
tx := X + clipDeltaX;
ty := Y + clipDeltaY;
end;
CGContextBeginPath(cg);
CGContextMoveToPoint(cg, bx + 0.5, by + 0.5);
CGContextAddLineToPoint(cg, tx + 0.5, ty + 0.5);
CGContextStrokePath(cg);
FPenPos.x := X;
FPenPos.y := Y;
AttachedBitmap_SetModified();
end;
function TCocoaContext.GetPixel(X,Y:integer): TColor;
begin
Result := 0;
end;
procedure TCocoaContext.SetPixel(X,Y:integer; AColor:TColor);
var
cg: CGContextRef;
fillbrush: TCocoaBrush;
r:CGRect;
begin
cg := CGContext;
if not Assigned(cg) then Exit;
fillbrush:=TCocoaBrush.Create(ColorToNSColor(ColorRef(AColor)));
fillbrush.Apply(self);
r.origin.x:=x;
r.origin.y:=y;
r.size.height:=1;
r.size.width:=1;
CGContextFillRect(cg,r);
fillbrush.Free;
//restore the brush
if Assigned(FBrush) then
FBrush.Apply(Self);
AttachedBitmap_SetModified();
end;
procedure CGContextAddLCLPoints(cg: CGContextRef; const Points: array of TPoint;NumPts:Integer);
var
cp: array of CGPoint;
i: Integer;
begin
SetLength(cp, NumPts);
for i:=0 to NumPts-1 do
begin
cp[i].x:=Points[i].X+0.5;
cp[i].y:=Points[i].Y+0.5;
end;
CGContextAddLines(cg, @cp[0], NumPts);
end;
procedure CGContextAddLCLRect(cg: CGContextRef; x1, y1, x2, y2: Integer; HalfPixel: boolean); overload;
var
r: CGRect;
begin
if HalfPixel then
begin
r.origin.x:=x1+0.5;
r.origin.y:=y1+0.5;
r.size.width:=x2-x1-1;
r.size.height:=y2-y1-1;
end else
begin
r.origin.x:=x1;
r.origin.y:=y1;
r.size.width:=x2-x1;
r.size.height:=y2-y1;
end;
CGContextAddRect(cg, r);
end;
procedure CGContextAddLCLRect(cg: CGContextRef; const R: TRect; HalfPixel: boolean); overload;
begin
CGContextAddLCLRect(cg, r.Left, r.Top, r.Right, r.Bottom, HalfPixel);
end;
procedure TCocoaContext.Polygon(const Points:array of TPoint;NumPts:Integer;
Winding:boolean);
var
cg: CGContextRef;
begin
cg := CGContext;
if not Assigned(cg) or (NumPts<=0) then Exit;
CGContextBeginPath(cg);
CGContextAddLCLPoints(cg, Points, NumPts);
CGContextClosePath(cg);
if Winding then
CGContextDrawPath(cg, kCGPathFillStroke)
else
CGContextDrawPath(cg, kCGPathEOFillStroke);
AttachedBitmap_SetModified();
end;
procedure TCocoaContext.Polyline(const Points: array of TPoint; NumPts: Integer);
var
cg: CGContextRef;
begin
cg := CGContext;
if not Assigned(cg) or (NumPts<=0) then Exit;
CGContextBeginPath(cg);
CGContextAddLCLPoints(cg, Points, NumPts);
CGContextStrokePath(cg);
AttachedBitmap_SetModified();
end;
procedure TCocoaContext.Rectangle(X1, Y1, X2, Y2: Integer; FillRect: Boolean; UseBrush: TCocoaBrush);
var
cg: CGContextRef;
resetPen: Boolean;
begin
if (X1=X2) or (Y1=Y2) then Exit;
cg := CGContext;
if not Assigned(cg) then Exit;
resetPen := false;
CGContextBeginPath(cg);
if FillRect then
begin
CGContextAddLCLRect(cg, X1, Y1, X2, Y2, false);
//using the brush
if Assigned(UseBrush) then
UseBrush.Apply(Self);
CGContextFillPath(cg);
//restore the brush
if Assigned(UseBrush) and Assigned(FBrush) then
FBrush.Apply(Self);
end
else
begin
CGContextAddLCLRect(cg, X1, Y1, X2, Y2, true);
// this is a "special" case, when UseBrush is provided
// but "FillRect" is set to false. Use for FrameRect() function
// (it deserves a redesign)
if Assigned(UseBrush) then
begin
UseBrush.Apply(Self);
UseBrush.ApplyAsPenColor(Self);
resetPen := true;
end;
end;
CGContextStrokePath(cg);
AttachedBitmap_SetModified();
if resetPen and Assigned(fPen) then // pen was modified by brush. Setting it back
fPen.Apply(Self);
end;
procedure TCocoaContext.BackgroundFill(dirtyRect:NSRect);
var
cg: CGContextRef;
begin
cg := CGContext;
if not Assigned(cg) then Exit;
FBkBrush.Apply(Self);
CGContextFillRect(cg,CGRect(dirtyRect));
AttachedBitmap_SetModified();
end;
procedure TCocoaContext.Ellipse(X1, Y1, X2, Y2:Integer);
var
cg: CGContextRef;
r: CGRect;
begin
cg := CGContext;
if not Assigned(cg) then Exit;
r.origin.x:=x1+0.5;
r.origin.y:=y1+0.5;
r.size.width:=x2-x1-1;
r.size.height:=y2-y1-1;
CGContextBeginPath(CGContext);
CGContextAddEllipseInRect(CGContext, R);
CGContextDrawPath(CGContext, kCGPathFillStroke);
AttachedBitmap_SetModified();
end;
procedure TCocoaContext.TextOut(X, Y: Integer; Options: Longint; Rect: PRect; UTF8Chars: PChar; Count: Integer; CharsDelta: PInteger);
var
CharsDeltaFloat: Array of CGFloat;
i: integer;
begin
if CharsDelta <> nil then begin
SetLength(CharsDeltaFloat, Count);
for i := 0 to Count - 1 do
CharsDeltaFloat[i] := CharsDelta[i];
TextOut(X,Y,Options, Rect, UTF8Chars, Count, CGFloatPtr(@CharsDeltaFloat[0]));
end
else
TextOut(X,Y,Options, Rect, UTF8Chars, Count, CGFloatPtr(nil));
end;
procedure TCocoaContext.TextOut(X, Y: CGFloat; Options: Longint; Rect: PRect; UTF8Chars: PChar; Count: Integer; CharsDelta: CGFloatPtr);
const
UnderlineStyle = NSUnderlineStyleSingle or NSUnderlinePatternSolid;
var
cg: CGContextRef;
BrushSolid, FillBg: Boolean;
AttribStr: CFAttributedStringRef;
Str: NSString;
CoreLine: CTLineRef;
Glyphcount, k, i, CurGlyphCount: integer;
Locations: array of NSPoint;
Runs: CFArrayRef;
CurRun: CTRunRef;
RunCount: Integer;
Glyphs: array of CGGlyph;
RunFont: CTFontRef;
Dict: NSMutableDictionary;
YPrime, StrikeH, StrikeW: CGFloat;
lForegroundColor: NSColor;
begin
cg := CGContext();
if not Assigned(cg) then
Exit;
CGContextSaveGState(cg);
CGContextSetTextMatrix(cg, CGAffineTransformIdentity);
if Assigned(Rect) then
begin
// fill background
//debugln(['TCocoaContext.TextOut ',UTF8Chars,' ',dbgs(Rect^)]);
if (Options and ETO_OPAQUE) <> 0 then
begin
BrushSolid := BkBrush.Solid;
BkBrush.Solid := True;
with Rect^ do
Rectangle(Left, Top, Right, Bottom, True, BkBrush);
BkBrush.Solid := BrushSolid;
end;
if ((Options and ETO_CLIPPED) <> 0) and (Count > 0) then
begin
CGContextBeginPath(cg);
CGContextAddRect(cg, RectToCGrect(Rect^));
CGContextClip(cg);
end;
end;
if (Count > 0) then
begin
FillBg := BkMode = OPAQUE;
if FillBg then
FBackgroundColor := BkBrush.ColorRef;
Str := NSStringUTF8(UTF8Chars, Count);
try
lForegroundColor := SysColorToNSColor(SysColorToSysColorIndex(FForegroundColor));
if lForegroundColor = nil then
lForegroundColor := ColorToNSColor(ColorToRGB(FForegroundColor));
Dict := NSMutableDictionary.dictionaryWithObjectsAndKeys(
Font.Font, kCTFontAttributeName,
lForegroundColor, NSForegroundColorAttributeName,
nil);
if FillBg then
Dict.setObject_forKey(ColorToNSColor(FBackgroundColor), NSBackgroundColorAttributeName);
if cfs_Underline in Font.Style then
Dict.setObject_forKey(NSNumber.numberWithInteger(UnderlineStyle), NSUnderlineStyleAttributeName);
AttribStr := CFAttributedStringCreate(kCFAllocatorDefault, CFStringRef(Str), CFDictionaryRef(Dict));
try
CoreLine := CTLineCreateWithAttributedString(CFAttributedStringRef(AttribStr));
try
ctx.setShouldAntialias(Font.Antialiased);
if FFont.RotationDeg <> 0 then
begin
CGContextTranslateCTM(cg, X, Y);
CGContextRotateCTM(cg, -FFont.RotationDeg*Pi/180);
CGContextTranslateCTM(cg, -X, -Y);
end;
CGContextTranslateCTM(cg, 0, FSize.Height);
CGContextScaleCTM(cg, 1, -1);
YPrime := FSize.Height - y - Font.Font.ascender;
CGContextSetTextPosition(cg, x, YPrime);
if CharsDelta = nil then
begin
CTLineDraw(CoreLine, cg);
end
else // CharsDelta <> nil;
begin
CGContextSetFillColorWithColor(cg, lForegroundColor.CGColor);
GlyphCount := CTLineGetGlyphCount(CoreLine);
SetLength(Locations, GlyphCount);
Locations[0].x := 0;
Locations[0].y := 0;
for k := 1 to GlyphCount - 1 do
begin
Locations[k] := Locations[k - 1];
Locations[k].x := Locations[k].x + CharsDelta[k - 1]
end;
Runs := CTLineGetGlyphRuns(CoreLine);
if Runs <> nil then
begin
GlyphCount := 0;
RunCount := CFArrayGetCount(Runs);
for i := 0 to RunCount - 1 do
begin
CurRun := CTRunRef(CFArrayGetValueAtIndex(Runs, i));
CurGlyphCount := CTRunGetGlyphCount(CurRun);
SetLength(Glyphs, CurGlyphCount);
CTRunGetGlyphs(CurRun, CFRangeMake(0,0), @Glyphs[0]);
RunFont := CFDictionaryGetValue(CTRunGetAttributes(CurRun), kCTFontAttributeName);
CTFontDrawGlyphs(runFont, @Glyphs[0], @Locations[GlyphCount], CurGlyphCount, cg);
GlyphCount := GlyphCount + CurGlyphCount;
end;
end
end;
if cfs_Strikeout in FFont.Style then begin
CGContextSetStrokeColorWithColor(cg, lForegroundColor.CGColor);
StrikeH := Font.Font.xHeight / 2;
StrikeW := CTLineGetTypographicBounds(CoreLine, nil, nil, nil);
CGContextMoveToPoint(cg, X, YPrime + StrikeH);
CGContextAddLineToPoint(cg, X + StrikeW, YPrime + StrikeH);
CGContextStrokePath(cg);
end;
finally
CFRelease(CoreLine);
end;
finally
CFRelease(AttribStr);
end;
finally
Str.release;
end;
end;
CGContextRestoreGState(cg);
AttachedBitmap_SetModified();
end;
procedure TCocoaContext.DrawEdgeRect(const r: TRect; flags: Cardinal;
LTColor, BRColor: TColor);
var
fixedRect: TRect;
begin
// in LineTo(), 0.5 will be added to Right/Bottom,
// it will result in exceeding the frame,
// therefore, the frame needs to be shrunk first
// see also: https://gitlab.com/freepascal.org/lazarus/lazarus/-/issues/40571
fixedRect:= r;
if fixedRect.Width>=1 then
dec( fixedRect.Right );
if fixedRect.Height>=1 then
dec( fixedRect.Bottom );
Pen.SetColor(LTColor, true);
Pen.Apply(self);
if flags and BF_LEFT > 0 then
begin
MoveTo(fixedRect.Left, fixedRect.Bottom);
LineTo(fixedRect.Left, fixedRect.Top);
end;
if flags and BF_TOP > 0 then
begin
MoveTo(fixedRect.Left, fixedRect.Top);
LineTo(fixedRect.Right, fixedRect.Top);
end;
Pen.SetColor(BRColor, true);
Pen.Apply(self);
if flags and BF_RIGHT > 0 then
begin
MoveTo(fixedRect.Right, fixedRect.Top);
LineTo(fixedRect.Right, fixedRect.Bottom);
end;
if flags and BF_BOTTOM > 0 then
begin
MoveTo(fixedRect.Right, fixedRect.Bottom);
// there's a missing pixel. Seems like it's accumulating an offset
LineTo(fixedRect.Left-1, fixedRect.Bottom);
end;
end;
procedure TCocoaContext.DrawEdge(var Rect: TRect; edge: Cardinal;
grfFlags: Cardinal);
var
r: TRect;
keepPen : TCocoaPen;
edgePen : TCocoaPen;
keepBrush : TCocoaBrush;
edgeBrush : TCocoaBrush;
const
OutLT = cl3DLight; // the next to hilight
OutBR = cl3DDkShadow; // the darkest (almost black)
InnLT = cl3DHiLight; // the lightest (almost white)
InnBR = cl3DShadow; // darker than light, lighter than dark shadow
begin
keepPen := Pen;
keepBrush := Brush;
try
edgePen := TCocoaPen.Create($FFFFFF, psSolid, false, 1, pmCopy, pecRound, pjsRound);
edgeBrush := TCocoaBrush.Create(NSColor.whiteColor, false);
edgeBrush.Solid := false;
Pen := edgePen;
Brush := edgeBrush;
r := Rect;
if (edge and BDR_OUTER > 0) then
begin
if edge and BDR_RAISEDOUTER > 0 then
DrawEdgeRect(r, grfFlags, OutLT, OutBR)
else
DrawEdgeRect(r, grfFlags, InnBR, InnLT);
InflateRect(r, -1, -1);
end;
if (edge and BDR_INNER > 0) then
begin
if edge and BDR_RAISEDINNER > 0 then
DrawEdgeRect(r, grfFlags, InnLT, InnBR)
else
DrawEdgeRect(r, grfFlags, OutBR, OutLT);
end;
finally
Pen := keepPen;
Brush := keepBrush;
edgeBrush.Free;
edgePen.Free;
end;
end;
procedure TCocoaContext.Frame(const R: TRect);
begin
Rectangle(R.Left, R.Top, R.Right + 1, R.Bottom + 1, False, nil);
AttachedBitmap_SetModified();
end;
procedure TCocoaContext.Frame3dClassic(var ARect: TRect; const FrameWidth: integer;
const Style: TBevelCut);
const
Edge: array[TBevelCut] of Integer =
(
{bvNone } 0,
{bvLowered} BDR_SUNKENOUTER,
{bvRaised } BDR_RAISEDINNER,
{bvSpace } 0
);
var
I: Integer;
begin
for I := 0 to FrameWidth - 1 do
begin
DrawEdge(aRect, Edge[Style], BF_RECT);
InflateRect(aRect,-1,-1);
end;
end;
procedure TCocoaContext.Frame3dBox(var ARect: TRect; const FrameWidth: integer; const Style: TBevelCut);
var
dx,dy: integer;
ns : NSRect;
r : TRect;
yy : double;
begin
if Style = bvNone then Exit;
if (Style = bvRaised) or (Style = bvLowered) then
begin
if not Assigned(boxview) then
begin
boxview := NSBox.alloc.initWithFrame(NSMakeRect(0,0,0,0));
boxview.setTitle(NSString.string_);
boxview.setTitlePosition(NSNoTitle);
end;
dx:=3; // layout<->frame adjustement for the box
dy:=3; // (should be aquired using 10.7 apis)
if Style=bvRaised then
boxview.setBoxType(NSBoxPrimary)
else
boxview.setBoxType(NSBoxSecondary);
r:=ARect;
InflateRect(r, dx, dy);
ns := RectToNSRect(r);
// used for size only, position is ignored
boxview.setFrame(ns);
yy := ns.size.height+ns.origin.y+1;
CGContextTranslateCTM(ctx.lclCGContext, ns.origin.x, yy);
CGContextScaleCTM(ctx.lclCGContext, 1, -1);
boxview.displayRectIgnoringOpacity_inContext(
NSMakeRect(0,0,ns.size.width, ns.size.height)
, ctx);
CGContextScaleCTM(ctx.lclCGContext, 1, -1);
CGContextTranslateCTM(ctx.lclCGContext, -ns.origin.x,-yy);
end;
AttachedBitmap_SetModified();
end;
procedure TCocoaContext.FrameRect(const ARect: TRect; const ABrush: TCocoaBrush);
begin
Rectangle(Arect.Left,ARect.Top,Arect.Right,ARect.Bottom, False, ABrush);
AttachedBitmap_SetModified();
end;
procedure TCocoaContext.ApplyTransform(Trans: CGAffineTransform);
var
T2: CGAffineTransform;
begin
T2 := CGContextGetCTM(CGContext);
// restore old CTM since CTM may changed after the clipping
if CGAffineTransformEqualToTransform(Trans, T2) = 0 then
CGContextTranslateCTM(CGContext, Trans.a * Trans.tx - T2.a * T2.tx,
Trans.d * Trans.ty - T2.d * T2.ty);
end;
procedure TCocoaContext.ClearClipping;
var
Trans: CGAffineTransform;
cgc: CGContextRef;
begin
if FClipped then
begin
cgc := CGContext();
Trans := CGContextGetCTM(cgc);
CGContextRestoreGState(cgc);
ApplyTransform(Trans);
if Assigned(FPen) then FPen.Apply(Self);
if Assigned(FBrush) then FBrush.Apply(Self);
end;
end;
procedure TCocoaContext.AttachedBitmap_SetModified;
begin
end;
function TCocoaContext.DrawImageRep(dstRect: NSRect; const srcRect: NSRect;
ImageRep: NSBitmapImageRep): Boolean;
var
Context: NSGraphicsContext;
begin
NSGraphicsContext.classSaveGraphicsState;
try
// we flip the context on it initialization (see InitDraw) so to draw
// a bitmap correctly we need to create a flipped context and to draw onto it
if not ctx.isFlipped then
Context := NSGraphicsContext.graphicsContextWithGraphicsPort_flipped(ctx.graphicsPort, True)
else
Context := ctx;
NSGraphicsContext.setCurrentContext(Context);
Result := ImageRep.drawInRect_fromRect_operation_fraction_respectFlipped_hints(
dstRect, srcRect, NSCompositeSourceOver, 1.0, True, nil
);
finally
NSGraphicsContext.classRestoreGraphicsState;
end;
AttachedBitmap_SetModified();
end;
function TCocoaContext.StretchDraw(X, Y, Width, Height: Integer;
SrcDC: TCocoaBitmapContext; XSrc, YSrc, SrcWidth, SrcHeight: Integer;
Msk: TCocoaBitmap; XMsk, YMsk: Integer; Rop: DWORD): Boolean;
var
dcBitmap: TCocoaBitmap;
maskImage: CGImageRef = nil;
cgImage: CGImageRef;
imageRep: NSBitmapImageRep;
begin
dcBitmap := SrcDC.Bitmap;
if not Assigned(dcBitmap) then
Exit(False);
// Make sure that bitmap is the most up-to-date
dcBitmap.ReCreateHandle_IfModified(); // Fix for bug 28102
// see https://bugs.freepascal.org/view.php?id=34197
// Bitmap context windowsofs should be used when rendering a bitmap
inc(XSrc, -SrcDC.WindowOfs.X);
inc(YSrc, -SrcDC.WindowOfs.Y);
if NOT SrcDC.ctx.isFlipped then begin
YSrc := dcBitmap.Height - (SrcHeight + YSrc);
end;
imageRep:= dcBitmap.ImageRep;
if (Msk <> nil) and (Msk.Image <> nil) then begin
maskImage := Msk.CreateMaskImage(Bounds(XMsk, YMsk, SrcWidth, SrcHeight));
cgImage:= CGImageCreateWithMask(imageRep.CGImage, maskImage);
imageRep:= NSBitmapImageRep.alloc.initWithCGImage(cgImage);
end;
Result := DrawImageRep( GetNSRect(X, Y, Width, Height),
GetNSRect(XSrc, YSrc, SrcWidth, SrcHeight),
imageRep );
if Assigned(maskImage) then begin
imageRep.release;
CGImageRelease(cgImage);
CGImageRelease(maskImage);
end;
AttachedBitmap_SetModified();
end;
{------------------------------------------------------------------------------
Method: GetTextExtentPoint
Params: Str - Text string
Count - Number of characters in string
Size - The record for the dimensions of the string
Returns: If the function succeeds
Computes the width and height of the specified string of text
------------------------------------------------------------------------------}
function TCocoaContext.GetTextExtentPoint(AStr: PChar; ACount: Integer; var Size: TSize): Boolean;
var
s : NSString;
AttribStr : CFAttributedStringRef;
CoreLine : CTLineRef;
height, width, asc, dsc, lead: CGFloat;
begin
S := NSStringUtf8(AStr, ACount);
Result := Assigned(S);
if not Result then Exit;
AttribStr := CFAttributedStringCreate(kCFAllocatorDefault, CFStringRef(S),
CFDictionaryRef(NSDictionary.dictionaryWithObject_forKey(
Font.Font, id(kCTFontAttributeName))));
Result := Assigned(AttribStr);
if Result then
begin
CoreLine := CTLineCreateWithAttributedString(CFAttributedStringRef(AttribStr));
try
width := CTLineGetTypographicBounds(CoreLine, @asc, @dsc, @lead);
height := asc + abs(dsc) + lead;
Size.cx := Round(width);
Size.cy := Round(height);
finally
CFRelease(CoreLine);
CFRelease(AttribStr);
end;
end;
S.release;
end;
{------------------------------------------------------------------------------
Method: TCocoaContext.GetTextMetrics
Params: TM - The Record for the text metrics
Returns: If the function succeeds
Fills the specified buffer with the metrics for the currently selected font
------------------------------------------------------------------------------}
function TCocoaContext.GetTextMetrics(var TM: TTextMetric): Boolean;
var
lNSFont: NSFont;
AttrStr: CFAttributedStringRef;
CoreLine: CTLineRef;
begin
result := False;
if not Assigned(Font) then
exit;
FillChar(TM, SizeOf(TM), 0);
lNSFont := Font.Font;
TM.tmAscent := Round(lNSFont.ascender);
TM.tmDescent := -Round(lNSFont.descender);
TM.tmHeight := TM.tmAscent + TM.tmDescent;
TM.tmInternalLeading := Round(lNSFont.leading);
TM.tmExternalLeading := 0;
TM.tmMaxCharWidth := Round(lNSFont.maximumAdvancement.width);
AttrStr := CFAttributedStringCreate(kCFAllocatorDefault,
CFSTR('WMTigq[_|^'),
CFDictionaryRef(NSDictionary.dictionaryWithObject_forKey(
Font.Font, id(kCTFontAttributeName))));
try
CoreLine := CTLineCreateWithAttributedString(CFAttributedStringRef(AttrStr));
try
TM.tmAveCharWidth := Round(CTLineGetTypographicBounds(CoreLine, nil, nil, nil) /
CTLineGetGlyphCount(CoreLine));
finally
CFRelease(CoreLine);
end;
finally
CFRelease(AttrStr);
end;
TM.tmOverhang := 0;
TM.tmDigitizedAspectX := 0;
TM.tmDigitizedAspectY := 0;
TM.tmFirstChar := 'a';
TM.tmLastChar := 'z';
TM.tmDefaultChar := 'x';
TM.tmBreakChar := '?';
TM.tmWeight := Font.CocoaFontWeightToWin32FontWeight(NSFontManager.sharedFontManager.weightOfFont(Font.Font));
if cfs_Bold in Font.Style then
TM.tmWeight := Min(FW_BOLD, TM.tmWeight);
if cfs_Italic in Font.Style then
TM.tmItalic := 1;
if cfs_Underline in Font.Style then
TM.tmUnderlined := 1;
if cfs_StrikeOut in Font.Style then
TM.tmStruckOut := 1;
TM.tmPitchAndFamily := TRUETYPE_FONTTYPE;
if Font.Font.isFixedPitch then
TM.tmPitchAndFamily := TM.tmPitchAndFamily or FIXED_PITCH;
// we can take charset from Font.Charset also but leave it to default for now
TM.tmCharSet := DEFAULT_CHARSET;
Result := True;
end;
procedure TCocoaContext.DrawBitmap(X, Y: Integer; ABitmap: TCocoaBitmap);
begin
NSGraphicsContext.classSaveGraphicsState();
NSGraphicsContext.setCurrentContext(ctx);
ABitmap.imagerep.drawAtPoint(NSMakePoint(X, Y));
NSGraphicsContext.classRestoreGraphicsState();
AttachedBitmap_SetModified();
end;
procedure TCocoaContext.DrawFocusRect(ARect: TRect);
var
{$ifdef CocoaUseHITheme}
AOutSet: SInt32;
{$else}
lCanvas: TCanvas;
lDrawer: TCDDrawer;
{$endif}
begin
{$ifdef CocoaUseHITheme}
// LCL thinks that focus cannot be drawn outside focus rects, but carbon do that
// => correct rect
GetThemeMetric(kThemeMetricFocusRectOutset, AOutSet);
InflateRect(ARect, -AOutSet, -AOutSet);
HIThemeDrawFocusRect(RectToCGRect(ARect), True, CGContext, kHIThemeOrientationNormal);
{$else}
lCanvas := TCanvas.Create;
try
lDrawer := GetDrawer(dsMacOSX);
lCanvas.Handle := HDC(Self);
lDrawer.DrawFocusRect(lCanvas, Types.Point(ARect.Left, ARect.Top), Types.Size(ARect));
finally
lCanvas.Handle := 0;
lCanvas.Free;
end;
{$endif}
AttachedBitmap_SetModified();
end;
{ TCocoaBitmapContext }
procedure TCocoaBitmapContext.SetBitmap(const AValue: TCocoaBitmap);
var pool:NSAutoReleasePool;
begin
if Assigned(ctx) then
begin
ctx.release;
ctx := nil;
end;
// ToDo: Should we free the old FBitmap???
FBitmap := AValue;
if FBitmap <> nil then
begin
pool:=NSAutoreleasePool.alloc.init;
ctx := NSGraphicsContext.graphicsContextWithBitmapImageRep(Bitmap.ImageRep);
ctx.retain; // extend life beyond NSAutoreleasePool
InitDraw(Bitmap.Width, Bitmap.Height);
pool.release;
end;
end;
procedure TCocoaBitmapContext.AttachedBitmap_SetModified;
begin
if FBitmap = nil then Exit;
FBitmap.SetModified();
end;
constructor TCocoaBitmapContext.Create;
begin
inherited Create(nil);
FBitmap := DefaultBitmap;
end;
destructor TCocoaBitmapContext.Destroy;
begin
inherited Destroy;
end;
function TCocoaBitmapContext.GetPixel(X,Y:integer): TColor;
var
cg: CGContextRef;
color: NSColor;
R,G, B: Byte;
begin
Result := 0;
cg := CGContext;
if not Assigned(cg) then Exit;
color := FBitmap.Imagerep.colorAtX_Y(X, Y);
R := Round(color.redComponent * $FF);
G := Round(color.greenComponent * $FF);
B := Round(color.blueComponent * $FF);
Result := Graphics.RGBToColor(R, G, B);
end;
{ TCocoaRegion }
{------------------------------------------------------------------------------
Method: TCocoaRegion.Create
Creates a new empty Cocoa region
------------------------------------------------------------------------------}
constructor TCocoaRegion.CreateDefault(AGlobal: Boolean = False);
begin
inherited Create(AGlobal);
FShape := HIShapeCreateEmpty;
end;
{------------------------------------------------------------------------------
Method: TCocoaRegion.Create
Params: X1, Y1, X2, Y2 - Region bounding rectangle
Creates a new rectangular Cocoa region
------------------------------------------------------------------------------}
constructor TCocoaRegion.Create(const X1, Y1, X2, Y2: Integer);
begin
inherited Create(False);
FShape := HIShapeCreateWithRect(GetCGRect(X1, Y1, X2, Y2));
end;
{------------------------------------------------------------------------------
Method: TCocoaRegion.Create
Params: Points - Pointer to array of polygon points
NumPts - Number of points passed
FillMode - Filling mode
Creates a new polygonal Cocoa region from the specified points
------------------------------------------------------------------------------}
constructor TCocoaRegion.Create(Points: PPoint; NumPts: Integer; isAlter: Boolean);
var
Bounds: TRect;
Context: CGContextRef;
W, H: Integer;
Data: Pointer;
PData: PByte;
P: PPoint;
I: Integer;
X, Y, SX: Integer;
LC, C: Byte;
//Line: String;
function GetPolygonBounds: TRect;
var
I: Integer;
begin
P := Points;
Result := Classes.Rect(P^.X, P^.Y, P^.X, P^.Y);
for I := 1 to NumPts - 1 do
begin
Inc(P);
if P^.X < Result.Left then Result.Left := P^.X;
if P^.X > Result.Right then Result.Right := P^.X;
if P^.Y < Result.Top then Result.Top := P^.Y;
if P^.Y > Result.Bottom then Result.Bottom := P^.Y;
end;
end;
procedure AddPart(X1, X2, Y: Integer);
var
R: HIShapeRef;
begin
//DebugLn('AddPart:' + DbgS(X1) + ' - ' + DbgS(X2) + ', ' + DbgS(Y));
R := HIShapeCreateWithRect(GetCGRect(X1, Y, X2, Y + 1));
HIShapeUnion(FShape, R, FShape);
CFRelease(R);
end;
begin
inherited Create(False);
(*
The passed polygon is drawed into grayscale context, the region is constructed
per rows from rectangles of drawed polygon parts.
*)
FShape := HIShapeCreateMutable;
if (NumPts <= 2) or (Points = nil) then Exit;
Bounds := GetPolygonBounds;
W := Bounds.Right - Bounds.Left + 2;
H := Bounds.Bottom - Bounds.Top + 2;
if (W <= 0) or (H <= 0) then Exit;
System.GetMem(Data, W * H);
System.FillChar(Data^, W * H, 0); // clear bitmap context data to black
try
Context := CGBitmapContextCreate(Data, W, H, 8, W, CGColorSpaceCreateDeviceGray,
kCGImageAlphaNone);
try
CGContextSetShouldAntialias(Context, 0); // disable anti-aliasing
CGContextSetGrayFillColor(Context, 1.0, 1.0); // draw white polygon
P := Points;
CGContextBeginPath(Context);
CGContextMoveToPoint(Context, P^.X, P^.Y);
for I := 1 to NumPts - 1 do
begin
Inc(P);
CGContextAddLineToPoint(Context, P^.X, P^.Y);
end;
CGContextClosePath(Context);
if isAlter then
CGContextEOFillPath(Context)
else
CGContextFillPath(Context);
//SetLength(Line, W);
PData := Data;
for Y := 0 to Pred(H) do
begin
LC := 0; // edge is black
for X := 0 to Pred(W) do
begin
C := PData^;
//Line[X + 1] := Chr(Ord('0') + C div 255);
if (C = $FF) and (LC = 0) then
SX := X; // start of painted row part
if (C = 0) and (LC = $FF) then
// end of painted row part (SX, X)
AddPart(SX, X, Pred(H) - Y);
LC := C;
Inc(PData);
end;
//DebugLn(DbgS(Pred(H) - Y) + ':' + Line);
end;
finally
CGContextRelease(Context);
end;
finally
System.FreeMem(Data);
end;
end;
{------------------------------------------------------------------------------
Method: TCocoaRegion.Destroy
Destroys Cocoa region
------------------------------------------------------------------------------}
destructor TCocoaRegion.Destroy;
begin
CFRelease(FShape);
inherited Destroy;
end;
{------------------------------------------------------------------------------
Method: TCocoaRegion.Apply
Params: ADC - Context to apply to
Applies region to the specified context
Note: Clipping region is only reducing
------------------------------------------------------------------------------}
procedure TCocoaRegion.Apply(ADC: TCocoaContext);
var
DeviceShape: HIShapeRef;
begin
if ADC = nil then Exit;
if ADC.CGContext = nil then Exit;
DeviceShape := HIShapeCreateMutableCopy(Shape);
try
with ADC.GetLogicalOffset do
HIShapeOffset(DeviceShape, -X, -Y);
if HIShapeIsEmpty(DeviceShape) or (HIShapeReplacePathInCGContext(DeviceShape, ADC.CGContext) <> noErr) then
Exit;
CGContextClip(ADC.CGContext);
finally
CFRelease(DeviceShape);
end;
end;
{------------------------------------------------------------------------------
Method: TCocoaRegion.GetBounds
Returns: The bounding box of Cocoa region
------------------------------------------------------------------------------}
function TCocoaRegion.GetBounds: TRect;
var
R: HIRect;
begin
if HIShapeGetBounds(FShape, R) = nil then begin
System.FillChar(Result, sizeof(Result), 0);
Exit;
end;
Result := CGRectToRect(R);
end;
{------------------------------------------------------------------------------
Method: TCocoaRegion.GetType
Returns: The type of Cocoa region
------------------------------------------------------------------------------}
function TCocoaRegion.GetType: TCocoaRegionType;
begin
if not Assigned(FShape) or HIShapeIsEmpty(FShape) then
Result := crt_Empty
else if HIShapeIsRectangular(FShape) then
Result := crt_Rectangle
else
Result := crt_Complex;
end;
{------------------------------------------------------------------------------
Method: TCocoaRegion.ContainsPoint
Params: P - Point
Returns: If the specified point lies in Cocoa region
------------------------------------------------------------------------------}
function TCocoaRegion.ContainsPoint(const P: TPoint): Boolean;
var
cp : CGPoint;
begin
cp.x:=P.x+0.5;
cp.y:=P.y+0.5;
Result := HIShapeContainsPoint(FShape, cp);
end;
procedure TCocoaRegion.SetShape(AShape: HIShapeRef);
begin
if Assigned(FShape) then CFRelease(FShape);
FShape := AShape;
end;
procedure TCocoaRegion.Clear;
begin
HIShapeSetEmpty(FShape)
end;
function TCocoaRegion.CombineWith(ARegion: TCocoaRegion; CombineMode: TCocoaCombine): TCocoaRegionType;
var
sh1, sh2: HIShapeRef;
const
MinCoord=-35000;
MaxSize=65000;
begin
if not Assigned(ARegion) then
Result := crt_Error
else
begin
if (CombineMode in [cc_AND, cc_OR, cc_XOR]) and HIShapeIsEmpty(FShape) then
CombineMode := cc_Copy;
case CombineMode of
cc_AND:
begin
Shape := HIShapeCreateIntersection(FShape, ARegion.Shape);
Result := GetType;
end;
cc_XOR:
begin
sh1 := HIShapeCreateUnion(FShape, ARegion.Shape);
sh2 := HIShapeCreateIntersection(FShape, ARegion.Shape);
Shape := HIShapeCreateDifference(sh1, sh2);
CFRelease(sh1);
CFRelease(sh2);
Result := GetType;
end;
cc_OR:
begin
Shape := HIShapeCreateUnion(FShape, ARegion.Shape);
Result := GetType;
end;
cc_DIFF:
begin
if HIShapeIsEmpty(FShape) then
{HIShapeCreateDifference doesn't work properly if original shape is empty}
{to simulate "emptieness" very big shape is created }
Shape := HIShapeCreateWithRect(GetCGRect(MinCoord, MinCoord, MaxSize, MaxSize)); // create clip nothing.
Shape := HIShapeCreateDifference(FShape, ARegion.Shape);
Result := GetType;
end;
cc_COPY:
begin
Shape := HIShapeCreateCopy(ARegion.Shape);
Result := GetType;
end
else
Result := crt_Error;
end;
end;
end;
procedure TCocoaRegion.Offset(dx, dy: Integer);
begin
MakeMutable;
HIShapeOffset(FShape, dx, dy);
end;
function TCocoaRegion.GetShapeCopy: HIShapeRef;
begin
Result := HIShapeCreateCopy(Shape);
end;
procedure TCocoaRegion.MakeMutable;
begin
Shape := HIShapeCreateMutableCopy(Shape);
end;
{ TCocoaPen }
procedure CalcDashes(
const Src: array of CGFloat;
var Dst: array of CGFloat;
out Len: Integer;
mul: CGFloat;
ofs: CGFloat = 0.0 // pixels are "half" offset in Cocoa drawing
);
var
i: Integer;
begin
Len := Min(length(Src), length(Dst));
for i := 0 to Len - 1 do
Dst[i] := Src[i] * mul + ofs;
end;
procedure TCocoaPen.Apply(ADC: TCocoaContext; UseROP2: Boolean = True);
var
AR, AG, AB, AA: CGFloat;
AROP2: Integer;
ADashes: array [0..15] of CGFloat;
ADashLen: Integer;
StatDash: PCocoaStatDashes;
isCosm : Boolean;
WidthMul : array [Boolean] of CGFloat;
begin
if ADC = nil then Exit;
if ADC.CGContext = nil then Exit;
if UseROP2 then
AROP2 := ADC.ROP2
else
AROP2 := R2_COPYPEN;
GetRGBA(AROP2, AR, AG, AB, AA);
case AROP2 of
R2_NOT, R2_NOTXORPEN:
CGContextSetBlendMode(ADC.CGContext, kCGBlendModeDifference);
else
CGContextSetBlendMode(ADC.CGContext, kCGBlendModeNormal)
end;
CGContextSetRGBStrokeColor(ADC.CGContext, AR, AG, AB, AA);
CGContextSetLineWidth(ADC.CGContext, FWidth);
if IsExtPen then
begin
if IsGeometric then
begin
CGContextSetLineCap(ADC.CGContext, FEndCap);
CGContextSetLineJoin(ADC.CGContext, FJoinStyle);
end;
end;
case FStyle of
PS_DASH..PS_DASHDOTDOT:
begin
isCosm := not IsGeometric;
WidthMul[false]:=1.0;
WidthMul[true]:=Width;
StatDash := @CocoaPenDash[isCosm][FStyle];
CalcDashes( Slice(StatDash^.dash, StatDash^.len), ADashes, ADashLen, WidthMul[IsGeometric]);
CGContextSetLineDash(ADC.CGContext, 0, @ADashes[0], ADashLen);
end;
PS_USERSTYLE:
if Length(Dashes) > 0 then
CGContextSetLineDash(ADC.CGContext, 0, @Dashes[0], Length(Dashes))
else
CGContextSetLineDash(ADC.CGContext, 0, nil, 0)
else
CGContextSetLineDash(ADC.CGContext, 0, nil, 0);
end;
end;
constructor TCocoaPen.CreateDefault(const AGlobal: Boolean = False);
begin
inherited Create(clBlack, True, AGlobal);
FStyle := PS_SOLID;
FWidth := 1;
FIsExtPen := False;
Dashes := nil;
end;
constructor TCocoaPen.Create(const ALogPen: TLogPen; const AGlobal: Boolean = False);
begin
case ALogPen.lopnStyle of
PS_SOLID..PS_DASHDOTDOT,
PS_INSIDEFRAME:
begin
inherited Create(ColorToRGB(TColor(ALogPen.lopnColor)), True, AGlobal);
FWidth := Max(1, ALogPen.lopnWidth.x);
end;
else
begin
inherited Create(ColorToRGB(TColor(ALogPen.lopnColor)), False, AGlobal);
FWidth := 1;
end;
end;
FStyle := ALogPen.lopnStyle;
end;
constructor TCocoaPen.Create(dwPenStyle, dwWidth: DWord; const lplb: TLogBrush;
dwStyleCount: DWord; lpStyle: PDWord);
var
i: integer;
begin
case dwPenStyle and PS_STYLE_MASK of
PS_SOLID..PS_DASHDOTDOT,
PS_USERSTYLE:
begin
inherited Create(ColorToRGB(TColor(lplb.lbColor)), True, False);
end;
else
begin
inherited Create(ColorToRGB(TColor(lplb.lbColor)), False, False);
end;
end;
FIsExtPen := True;
FIsGeometric := (dwPenStyle and PS_TYPE_MASK) = PS_GEOMETRIC;
if IsGeometric then
begin
case dwPenStyle and PS_JOIN_MASK of
PS_JOIN_ROUND: FJoinStyle := kCGLineJoinRound;
PS_JOIN_BEVEL: FJoinStyle := kCGLineJoinBevel;
PS_JOIN_MITER: FJoinStyle := kCGLineJoinMiter;
end;
case dwPenStyle and PS_ENDCAP_MASK of
PS_ENDCAP_ROUND: FEndCap := kCGLineCapRound;
PS_ENDCAP_SQUARE: FEndCap := kCGLineCapSquare;
PS_ENDCAP_FLAT: FEndCap := kCGLineCapButt;
end;
FWidth := Max(1, dwWidth);
end
else
FWidth := 1;
if (dwPenStyle and PS_STYLE_MASK) = PS_USERSTYLE then
begin
SetLength(Dashes, dwStyleCount);
for i := 0 to dwStyleCount - 1 do
Dashes[i] := lpStyle[i];
end;
FStyle := dwPenStyle and PS_STYLE_MASK;
end;
constructor TCocoaPen.Create(const ABrush: TCocoaBrush; const AGlobal: Boolean);
begin
inherited Create(ABrush.ColorRef, True, AGlobal);
FStyle := PS_SOLID;
FWidth := 1;
FIsExtPen := False;
Dashes := nil;
end;
constructor TCocoaPen.Create(const AColor: TColor; AGlobal: Boolean);
begin
inherited Create(AColor, True, AGlobal);
FStyle := PS_SOLID;
FWidth := 1;
FIsExtPen := False;
Dashes := nil;
end;
constructor TCocoaPen.Create(const AColor: TColor; AStyle: TFPPenStyle;
ACosmetic: Boolean; AWidth: Integer; AMode: TFPPenMode; AEndCap: TFPPenEndCap;
AJoinStyle: TFPPenJoinStyle; AGlobal: Boolean);
begin
inherited Create(AColor, True, AGlobal);
case AStyle of
psSolid: FStyle := PS_SOLID;
psDash: FStyle := PS_DASH;
psDot: FStyle := PS_DOT;
psDashDot: FStyle := PS_DASHDOT;
psDashDotDot: FStyle := PS_DASHDOTDOT;
psinsideFrame: FStyle := PS_INSIDEFRAME;
psPattern: FStyle := PS_USERSTYLE;
psClear: FStyle := PS_NULL;
end;
if ACosmetic then
begin
FWidth := 1;
FIsGeometric := False;
end
else
begin
FIsGeometric := True;
case AJoinStyle of
pjsRound: FJoinStyle := kCGLineJoinRound;
pjsBevel: FJoinStyle := kCGLineJoinBevel;
pjsMiter: FJoinStyle := kCGLineJoinMiter;
end;
case AEndCap of
pecRound: FEndCap := kCGLineCapRound;
pecSquare: FEndCap := kCGLineCapSquare;
pecFlat: FEndCap := kCGLineCapButt;
end;
FWidth := Max(1, AWidth);
end;
FIsExtPen := False;
Dashes := nil;
end;
{ TCocoaBrush }
procedure DrawBitmapPattern(info: UnivPtr; c: CGContextRef); MWPascal;
var
R: CGRect;
sR, sG, sB: single;
APatternInfoPtr: PCocoaPatternInfo;
begin
APatternInfoPtr := PCocoaPatternInfo(Info);
R:= CGRectMake(0, 0, CGImageGetWidth(APatternInfoPtr^.image),
CGImageGetHeight(APatternInfoPtr^.image));
if APatternInfoPtr^.colorMode = cpmContextColor then
begin
ColorToRGBFloat(APatternInfoPtr^.bgColor, sR, sG, sB);
CGContextSetRGBFillColor(c, sR, sG, sB, 1);
CGContextFillRect(c, R);
ColorToRGBFloat(APatternInfoPtr^.fgColor, sR, sG, sB);
CGContextSetRGBFillColor(c, sR, sG, sB, 1);
end;
CGContextDrawImage(c, R, APatternInfoPtr^.image);
end;
procedure PatternReleaseInfo(info: UnivPtr ); MWPascal;
begin
CGImageRelease(PCocoaPatternInfo(info)^.image);
Freemem(info);
end;
{ TCocoaBrush }
procedure TCocoaBrush.CreateCGPattern(ARect: CGRect; IsColored: ShortInt);
var
APatternInfoPtr: PCocoaPatternInfo;
Callbacks: CGPatternCallbacks;
begin
if FCGPattern <> nil then CGPatternRelease(FCGPattern);
APatternInfoPtr := GetMem(sizeof(TCocoapatternInfo));
APatternInfoPtr^.image := FImage;
CGImageRetain(APatternInfoPtr^.image);
APatternInfoPtr^.bgColor := RGBToColorFloat(Red/255, Green/255, Blue/255);
APatternInfoPtr^.fgColor := FFgColor;
APatternInfoPtr^.colorMode := FPatternColorMode;
FillChar(CallBacks, SizeOf(CallBacks), 0);
Callbacks.drawPattern := @DrawBitmapPattern;
Callbacks.releaseInfo := @PatternReleaseInfo;
FCGPattern := CGPatternCreate(APatternInfoPtr, ARect, CGAffineTransformIdentity,
ARect.size.width, ARect.size.height, kCGPatternTilingConstantSpacing,
IsColored, Callbacks);
end;
procedure TCocoaBrush.SetHatchStyle(AHatch: PtrInt);
const
HATCH_DATA: array[HS_HORIZONTAL..HS_DIAGCROSS] of array[0..7] of Byte =
(
{ HS_HORIZONTAL } ($FF, $FF, $FF, $00, $FF, $FF, $FF, $FF),
{ HS_VERTICAL } ($F7, $F7, $F7, $F7, $F7, $F7, $F7, $F7),
{ HS_FDIAGONAL } ($7F, $BF, $DF, $EF, $F7, $FB, $FD, $FE),
{ HS_BDIAGONAL } ($FE, $FD, $FB, $F7, $EF, $DF, $BF, $7F),
{ HS_CROSS } ($F7, $F7, $F7, $00, $F7, $F7, $F7, $F7),
{ HS_DIAGCROSS } ($7E, $BD, $DB, $E7, $E7, $DB, $BD, $7E)
);
var
CGDataProvider: CGDataProviderRef;
begin
if AHatch in [HS_HORIZONTAL..HS_DIAGCROSS] then
begin
if (FBitmap <> nil) then FBitmap.Release;
FBitmap := TCocoaBitmap.Create(8, 8, 1, 1, cbaByte, cbtMask, @HATCH_DATA[AHatch]);
if FImage <> nil then CGImageRelease(FImage);
CGDataProvider := CGDataProviderCreateWithData(nil, @HATCH_DATA[AHatch], 8, nil);
FImage := CGImageMaskCreate(8, 8, 1, 1, 1, CGDataProvider, nil, 0);
CGDataProviderRelease(CGDataProvider);
FPatternColorMode := cpmBrushColor;
CreateCGPattern(GetCGRect(0 , 0, 8, 8), 0);
end;
end;
procedure TCocoaBrush.SetBitmap(ABitmap: TCocoaBitmap);
var
AWidth, AHeight: Integer;
CGDataProvider: CGDataProviderRef;
begin
AWidth := ABitmap.Width;
AHeight := ABitmap.Height;
if (FBitmap <> nil) then FBitmap.Release;
FBitmap := TCocoaBitmap.Create(ABitmap);
if FImage <> nil then CGImageRelease(FImage);
if FBitmap.BitmapType = cbtMono then
begin
with FBitmap do
begin
CGDataProvider := CGDataProviderCreateWithData(nil, Data, DataSize, nil);
FImage := CGImageMaskCreate(Width, Height, BitsPerSample, BitsPerPixel, BytesPerRow, CGDataProvider, nil, 0);
CGDataProviderRelease(CGDataProvider);
end;
FPatternColorMode := cpmContextColor;
end
else
begin
FImage := CGImageCreateCopy(MacOSAll.CGImageRef( FBitmap.imageRep.CGImageForProposedRect_context_hints(nil, nil, nil)));
FPatternColorMode := cpmBitmap;
end;
CreateCGPattern(GetCGRect(0, 0, AWidth, AHeight), Ord(FPatternColorMode = cpmBitmap));
end;
procedure TCocoaBrush.SetImage(AImage: NSImage);
var
Rect: CGRect;
begin
if FImage <> nil then CGImageRelease(FImage);
FImage := CGImageCreateCopy(MacOSAll.CGImageRef( AImage.CGImageForProposedRect_context_hints(nil, nil, nil)));
FPatternColorMode := cpmBitmap;
Rect.origin.x := 0;
Rect.origin.y := 0;
Rect.size := CGSize(AImage.size);
CreateCGPattern(Rect, 1);
end;
procedure TCocoaBrush.SetColor(AColor: NSColor);
var
RGBColor, PatternColor: NSColor;
begin
Clear;
FColor := AColor;
FColor.retain;
RGBColor := AColor.colorUsingColorSpaceName(NSDeviceRGBColorSpace);
if Assigned(RGBColor) then
SetColor(NSColorToRGB(RGBColor), True)
else
begin
PatternColor := AColor.colorUsingColorSpaceName(NSPatternColorSpace);
if Assigned(PatternColor) then
begin
SetColor(NSColorToColorRef(PatternColor.patternImage.backgroundColor), False);
SetImage(PatternColor.patternImage);
end
else
SetColor(0, True);
end;
end;
constructor TCocoaBrush.CreateDefault(const AGlobal: Boolean = False);
begin
inherited Create(clWhite, True, AGlobal);
FBitmap := nil;
FImage := nil;
FCGPattern := nil;
FColor := nil;
end;
constructor TCocoaBrush.Create(const ALogBrush: TLogBrush; const AGlobal: Boolean = False);
begin
FCGPattern := nil;
FBitmap := nil;
FImage := nil;
FColor := nil;
case ALogBrush.lbStyle of
BS_SOLID:
inherited Create(ColorToRGB(TColor(ALogBrush.lbColor)), True, AGlobal);
BS_HATCHED: // Hatched brush.
begin
inherited Create(ColorToRGB(TColor(ALogBrush.lbColor)), True, AGlobal);
SetHatchStyle(ALogBrush.lbHatch);
end;
BS_DIBPATTERN,
BS_DIBPATTERN8X8,
BS_DIBPATTERNPT,
BS_PATTERN,
BS_PATTERN8X8:
begin
inherited Create(ColorToRGB(TColor(ALogBrush.lbColor)), False, AGlobal);
SetBitmap(TCocoaBitmap(ALogBrush.lbHatch));
end
else
inherited Create(ColorToRGB(TColor(ALogBrush.lbColor)), False, AGlobal);
end;
end;
constructor TCocoaBrush.Create(const AColor: NSColor; const AGlobal: Boolean);
var
RGBColor, PatternColor: NSColor;
begin
FColor := AColor;
FColor.retain;
FCGPattern := nil;
FBitmap := nil;
FImage := nil;
RGBColor := AColor.colorUsingColorSpaceName(NSDeviceRGBColorSpace);
if Assigned(RGBColor) then
inherited Create(NSColorToRGB(RGBColor), True, AGlobal)
else
begin
PatternColor := AColor.colorUsingColorSpaceName(NSPatternColorSpace);
if Assigned(PatternColor) then
begin
inherited Create(NSColorToColorRef(PatternColor.patternImage.backgroundColor), False, AGlobal);
SetImage(PatternColor.patternImage);
end
else
inherited Create(0, True, AGlobal);
end;
end;
constructor TCocoaBrush.Create(const AColor: TColor; AStyle: TFPBrushStyle; APattern: TBrushPattern;
AGlobal: Boolean);
begin
case AStyle of
bsSolid:
begin
inherited Create(AColor, True, AGlobal);
end;
// bsHorizontal, bsVertical, bsFDiagonal,
// bsBDiagonal, bsCross, bsDiagCross,
// bsImage, bsPattern
else // bsClear
inherited Create(AColor, False, AGlobal);
end;
end;
procedure TCocoaBrush.Clear;
begin
if FColor <> nil then
begin
FColor.release;
FColor := nil;
end;
if FCGPattern <> nil then
begin
CGPatternRelease(FCGPattern);
FCGPattern := nil;
end;
if FBitmap <> nil then
begin
FBitmap.Release;
FBitmap := nil;
end;
if FImage <> nil then
begin
CGImageRelease(FImage);
FImage := nil;
end;
end;
destructor TCocoaBrush.Destroy;
begin
Clear;
inherited Destroy;
end;
procedure TCocoaBrush.Apply(ADC: TCocoaContext; UseROP2: Boolean = True);
var
RGBA: array[0..3] of CGFloat;
AROP2: Integer;
APatternSpace: CGColorSpaceRef;
BaseSpace: CGColorSpaceRef;
sR, sG, sB: single;
sz: CGSize;
offset: TPoint;
begin
if ADC = nil then Exit;
if ADC.CGContext = nil then
Exit;
if UseROP2 then
AROP2 := ADC.ROP2
else
AROP2 := R2_COPYPEN;
GetRGBA(AROP2, RGBA[0], RGBA[1], RGBA[2], RGBA[3]);
//if AROP2 <> R2_NOT then
//CGContextSetBlendMode(ADC.CGContext, kCGBlendModeNormal)
//else
//CGContextSetBlendMode(ADC.CGContext, kCGBlendModeDifference);
if Assigned(FCGPattern) then
begin
// Set proper pattern alignment
offset:=ADC.GetLogicalOffset;
with CGPointApplyAffineTransform(CGPointMake(0,0), CGContextGetCTM(ADC.CGContext)) do
begin
sz.width:=x - offset.X;
sz.height:=y + offset.Y;
sz.width:=Round(sz.width) mod CGImageGetWidth(FImage);
sz.height:=Round(sz.height) mod CGImageGetHeight(FImage);
end;
CGContextSetPatternPhase(ADC.CGContext, sz);
case FPatternColorMode of
cpmBitmap:
begin
BaseSpace := nil;
RGBA[0] := 1.0;
end;
cpmBrushColor:
begin
BaseSpace := CGColorSpaceCreateDeviceRGB;
end;
cpmContextColor:
begin
BaseSpace := CGColorSpaceCreateDeviceRGB;
SetColor(ADC.BkColor, True);
FFgColor:=ColorToRGB(ADC.TextColor);
ColorToRGBFloat(FFgColor, sR, sG, sB);
RGBA[0]:=sR;
RGBA[1]:=sG;
RGBA[2]:=sB;
RGBA[3]:=1.0;
end;
end;
APatternSpace := CGColorSpaceCreatePattern(BaseSpace);
CGContextSetFillColorSpace(ADC.CGContext, APatternSpace);
CGColorSpaceRelease(APatternSpace);
if Assigned(BaseSpace) then CGColorSpaceRelease(BaseSpace);
CGContextSetFillPattern(ADC.CGcontext, FCGPattern, @RGBA[0]);
end
else
begin
CGContextSetRGBFillColor(ADC.CGContext, RGBA[0], RGBA[1], RGBA[2], RGBA[3]);
end;
end;
procedure TCocoaBrush.ApplyAsPenColor(ADC: TCocoaContext; UseROP2: Boolean);
var
AR, AG, AB, AA: CGFloat;
AROP2: Integer;
ADashes: array [0..15] of CGFloat;
ADashLen: Integer;
StatDash: PCocoaStatDashes;
isCosm : Boolean;
WidthMul : array [Boolean] of CGFloat;
begin
if ADC = nil then Exit;
if ADC.CGContext = nil then Exit;
if UseROP2 then
AROP2 := ADC.ROP2
else
AROP2 := R2_COPYPEN;
GetRGBA(AROP2, AR, AG, AB, AA);
CGContextSetRGBStrokeColor(ADC.CGContext, AR, AG, AB, AA);
end;
{ TCocoaGDIObject }
constructor TCocoaGDIObject.Create(AGlobal: Boolean);
begin
FRefCount := 1;
FGlobal := AGlobal;
end;
destructor TCocoaGDIObject.Destroy;
begin
if not FGlobal then
begin
Dec(FRefCount);
if FRefCount <> 0 then
begin
//DebugLn('TCocoaGDIObject.Destroy Error - ', dbgsName(self), ' RefCount = ', dbgs(FRefCount));
FRefCount := FRefCount;
end;
end;
end;
class function TCocoaGDIObject.UpdateRefs(ATarget: TCocoaGDIObject; ASource: TCocoaGDIObject): Boolean; static;
begin
result := ASource <> ATarget;
if result then
begin
if Assigned(ASource) then
ASource.AddRef;
if Assigned(ATarget) then
ATarget.Release;
end;
end;
procedure TCocoaGDIObject.AddRef;
begin
if FGlobal then Exit;
inc(FRefCount);
end;
procedure TCocoaGDIObject.Release;
begin
if FGlobal then Exit;
if FRefCount <= 1 then
self.Free // the last reference, so free it using the destructor
else
Dec(FRefCount);
end;
initialization
finalization
end.
|