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 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582
|
{-------------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
the specific language governing rights and limitations under the License.
Alternatively, the contents of this file may be used under the terms of the
GNU General Public License Version 2 or later (the "GPL"), in which case
the provisions of the GPL are applicable instead of those above.
If you wish to allow use of your version of this file only under the terms
of the GPL and not to allow others to use your version of this file
under the MPL, indicate your decision by deleting the provisions above and
replace them with the notice and other provisions required by the GPL.
If you do not delete the provisions above, a recipient may use your version
of this file under either the MPL or the GPL.
-------------------------------------------------------------------------------}
(* Naming Conventions:
Byte = Logical: Refers to the location any TextToken has in the String.
In Utf8String some TextToken can have more than one byte
Char = Physical: Refers to the (x-)location on the screen matrix.
Some TextToken (like tab) can spawn multiply char locations
*)
unit SynEditPointClasses;
{$I synedit.inc}
{off $DEFINE SynCaretDebug}
interface
uses
{$IFDEF windows}
windows,
{$ENDIF}
Classes, SysUtils,
// LCL
Controls, LCLProc, LCLType, LCLIntf, ExtCtrls, Graphics, Forms,
{$IFDEF SYN_MBCSSUPPORT}
Imm,
{$ENDIF}
// LazUtils
LazMethodList,
// SynEdit
LazSynEditText, SynEditTypes, SynEditMiscProcs;
type
TInvalidateLines = procedure(FirstLine, LastLine: integer) of Object;
TLinesCountChanged = procedure(FirstLine, Count: integer) of Object;
TMaxLeftCharFunc = function: Integer of object;
{ TSynEditPointBase }
TSynEditPointBase = class
private
function GetLocked: Boolean;
protected
FLines: TSynEditStrings;
FOnChangeList: TMethodList;
FLockCount: Integer;
procedure SetLines(const AValue: TSynEditStrings); virtual;
procedure DoLock; virtual;
Procedure DoUnlock; virtual;
public
constructor Create;
constructor Create(Lines: TSynEditStrings);
destructor Destroy; override;
procedure AddChangeHandler(AHandler: TNotifyEvent);
procedure RemoveChangeHandler(AHandler: TNotifyEvent);
procedure Lock;
Procedure Unlock;
property Lines: TSynEditStrings read FLines write SetLines;
property Locked: Boolean read GetLocked;
end;
TSynEditBaseCaret = class;
TSynEditCaret = class;
TSynBlockPersistMode = (
sbpDefault,
sbpWeak, // selstart/end are treated as outside the block
sbpStrong // selstart/end are treated as inside the block
);
TSynBeforeSetSelTextEvent = procedure(Sender: TObject; AMode: TSynSelectionMode; ANewText: PChar) of object;
{ TSynBeforeSetSelTextList }
TSynBeforeSetSelTextList = Class(TMethodList)
public
procedure CallBeforeSetSelTextHandlers(Sender: TObject; AMode: TSynSelectionMode; ANewText: PChar);
end;
{ TSynEditSelection }
TSynEditSelection = class(TSynEditPointBase)
private
FFoldedView: TObject;
FOnBeforeSetSelText: TSynBeforeSetSelTextList;
FAutoExtend: Boolean;
FCaret: TSynEditCaret;
FHide: Boolean;
FInternalCaret: TSynEditBaseCaret;
FInvalidateLinesMethod: TInvalidateLines;
FEnabled: Boolean;
FHookedLines: Boolean;
FIsSettingText: Boolean;
FForceSingleLineSelected: Boolean;
FActiveSelectionMode: TSynSelectionMode;
FSelectionMode: TSynSelectionMode;
FStartLinePos: Integer; // 1 based
FStartBytePos: Integer; // 1 based
FAltStartLinePos, FAltStartBytePos: Integer; // 1 based // Alternate, for min selection
FEndLinePos: Integer; // 1 based
FEndBytePos: Integer; // 1 based
FPersistent: Boolean;
FPersistentLock, FWeakPersistentIdx, FStrongPersistentIdx: Integer;
FIgnoreNextCaretMove: Boolean;
(* On any modification, remember the position of the caret.
If it gets moved from there to either end of the block, this should be ignored
This happens, if Block and caret are adjusted directly
*)
FLastCarePos: TPoint;
FStickyAutoExtend: Boolean;
function AdjustBytePosToCharacterStart(Line: integer; BytePos: integer): integer;
function GetFirstLineBytePos: TPoint;
function GetLastLineBytePos: TPoint;
function GetLastLineHasSelection: Boolean;
procedure SetAutoExtend(AValue: Boolean);
procedure SetCaret(const AValue: TSynEditCaret);
procedure SetEnabled(const Value : Boolean);
procedure SetActiveSelectionMode(const Value: TSynSelectionMode);
procedure SetForceSingleLineSelected(AValue: Boolean);
procedure SetHide(const AValue: Boolean);
procedure SetPersistent(const AValue: Boolean);
procedure SetSelectionMode (const AValue: TSynSelectionMode);
function GetStartLineBytePos: TPoint;
procedure ConstrainStartLineBytePos(var Value: TPoint);
procedure SetStartLineBytePos(Value: TPoint);
procedure AdjustStartLineBytePos(Value: TPoint);
function GetEndLineBytePos: TPoint;
procedure SetEndLineBytePos(Value: TPoint);
function GetSelText: string;
procedure SetSelText(const Value: string);
procedure DoCaretChanged(Sender: TObject);
procedure AdjustAfterTrimming; // TODO: Move into TrimView?
protected
procedure DoLock; override;
procedure DoUnlock; override;
Procedure LineChanged(Sender: TSynEditStrings; AIndex, ACount : Integer);
procedure DoLinesEdited(Sender: TSynEditStrings; aLinePos, aBytePos, aCount,
aLineBrkCnt: Integer; aText: String);
public
constructor Create(ALines: TSynEditStrings; aActOnLineChanges: Boolean);
destructor Destroy; override;
procedure AssignFrom(Src: TSynEditSelection);
procedure SetSelTextPrimitive(PasteMode: TSynSelectionMode; Value: PChar; AReplace: Boolean = False);
function SelAvail: Boolean;
function SelCanContinue(ACaret: TSynEditCaret): Boolean;
function IsBackwardSel: Boolean; // SelStart < SelEnd ?
procedure BeginMinimumSelection; // current selection will be minimum while follow caret (autoExtend) // until next setSelStart or end of follow
procedure SortSelectionPoints;
procedure IgnoreNextCaretMove;
// Mode can NOT be changed in nested calls
procedure IncPersistentLock(AMode: TSynBlockPersistMode = sbpDefault); // Weak: Do not extend (but rather move) block, if at start/end
procedure DecPersistentLock;
procedure Clear;
procedure AddBeforeSetSelTextHandler(AHandler: TSynBeforeSetSelTextEvent);
procedure RemoveBeforeSetSelTextHandler(AHandler: TSynBeforeSetSelTextEvent);
property Enabled: Boolean read FEnabled write SetEnabled;
property ForceSingleLineSelected: Boolean read FForceSingleLineSelected write SetForceSingleLineSelected;
property ActiveSelectionMode: TSynSelectionMode
read FActiveSelectionMode write SetActiveSelectionMode;
property SelectionMode: TSynSelectionMode
read FSelectionMode write SetSelectionMode;
property SelText: String read GetSelText write SetSelText;
// Start and End positions are in the order they where defined
// This may mean Startpos is behind EndPos in the text
property StartLineBytePos: TPoint
read GetStartLineBytePos write SetStartLineBytePos;
property StartLineBytePosAdjusted: TPoint
write AdjustStartLineBytePos;
property EndLineBytePos: TPoint
read GetEndLineBytePos write SetEndLineBytePos;
property StartLinePos: Integer read FStartLinePos;
property EndLinePos: Integer read FEndLinePos;
property StartBytePos: Integer read FStartBytePos;
property EndBytePos: Integer read FEndBytePos;
// First and Last Pos are ordered according to the text flow (LTR)
property FirstLineBytePos: TPoint read GetFirstLineBytePos;
property LastLineBytePos: TPoint read GetLastLineBytePos;
property LastLineHasSelection: Boolean read GetLastLineHasSelection;
property InvalidateLinesMethod : TInvalidateLines write FInvalidateLinesMethod;
property Caret: TSynEditCaret read FCaret write SetCaret;
property Persistent: Boolean read FPersistent write SetPersistent;
// automatically Start/Extend selection if caret moves
// (depends if caret was at block border or not)
property AutoExtend: Boolean read FAutoExtend write SetAutoExtend;
property StickyAutoExtend: Boolean read FStickyAutoExtend write FStickyAutoExtend;
property Hide: Boolean read FHide write SetHide;
property FoldedView: TObject read FFoldedView write FFoldedView; experimental; // until FoldedView becomes a TSynEditStrings
end;
{ TSynEditCaret }
TSynEditCaretFlag = (
scCharPosValid, scBytePosValid
);
TSynEditCaretFlags = set of TSynEditCaretFlag;
TSynEditCaretUpdateFlag = (
scuForceSet, // Change even if equal to old
scuChangedX, scuChangedY, //
scuNoInvalidate // Keep the Char/Byte ValidFlags
);
TSynEditCaretUpdateFlags = set of TSynEditCaretUpdateFlag;
{ TSynEditBaseCaret
No Checks at all.
Caller MUST ensure at least not to set x to invalid pos (middle of char) (incl update x, after SetLine)
}
TSynEditBaseCaret = class(TSynEditPointBase)
private
FFlags: TSynEditCaretFlags;
FLinePos: Integer; // 1 based
FCharPos: Integer; // 1 based
FBytePos, FBytePosOffset: Integer; // 1 based
function GetBytePos: Integer;
function GetBytePosOffset: Integer;
function GetCharPos: Integer;
function GetFullLogicalPos: TLogCaretPoint;
function GetLineBytePos: TPoint;
function GetLineCharPos: TPoint;
procedure SetBytePos(AValue: Integer);
procedure SetBytePosOffset(AValue: Integer);
procedure SetCharPos(AValue: Integer);
procedure SetFullLogicalPos(AValue: TLogCaretPoint);
procedure SetLineBytePos(AValue: TPoint);
procedure SetLineCharPos(AValue: TPoint);
procedure SetLinePos(AValue: Integer);
function GetLineText: string;
procedure SetLineText(AValue: string);
protected
procedure ValidateBytePos;
procedure ValidateCharPos;
procedure InternalSetLineCharPos(NewLine, NewCharPos: Integer;
UpdFlags: TSynEditCaretUpdateFlags); virtual;
procedure InternalSetLineByterPos(NewLine, NewBytePos, NewByteOffs: Integer;
UpdFlags: TSynEditCaretUpdateFlags); virtual;
public
constructor Create;
procedure AssignFrom(Src: TSynEditBaseCaret);
procedure Invalidate; // force to 1,1
procedure InvalidateBytePos; // 1,1 IF no validCharPos
procedure InvalidateCharPos;
function IsAtLineChar(aPoint: TPoint): Boolean;
function IsAtLineByte(aPoint: TPoint; aByteOffset: Integer = -1): Boolean;
function IsAtPos(aCaret: TSynEditCaret): Boolean;
property LinePos: Integer read FLinePos write SetLinePos;
property CharPos: Integer read GetCharPos write SetCharPos;
property LineCharPos: TPoint read GetLineCharPos write SetLineCharPos;
property BytePos: Integer read GetBytePos write SetBytePos;
property BytePosOffset: Integer read GetBytePosOffset write SetBytePosOffset;
property LineBytePos: TPoint read GetLineBytePos write SetLineBytePos;
property FullLogicalPos: TLogCaretPoint read GetFullLogicalPos write SetFullLogicalPos;
property LineText: string read GetLineText write SetLineText;
end;
{ TSynEditCaret }
TSynEditCaret = class(TSynEditBaseCaret)
private
FLinesEditedRegistered: Boolean;
FAllowPastEOL: Boolean;
FAutoMoveOnEdit: Integer;
FForcePastEOL: Integer;
FForceAdjustToNextChar: Integer;
FKeepCaretX: Boolean;
FLastCharPos: Integer; // used by KeepCaretX
FOldLinePos: Integer; // 1 based
FOldCharPos: Integer; // 1 based
FAdjustToNextChar: Boolean;
FMaxLeftChar: TMaxLeftCharFunc;
FChangeOnTouch: Boolean;
FSkipTabs: Boolean;
FTouched: Boolean;
procedure AdjustToChar;
function GetMaxLeftPastEOL: Integer;
function GetOldLineCharPos: TPoint;
function GetOldLineBytePos: TPoint;
function GetOldFullLogicalPos: TLogCaretPoint;
procedure SetAllowPastEOL(const AValue: Boolean);
procedure SetSkipTabs(const AValue: Boolean);
procedure SetKeepCaretX(const AValue: Boolean);
procedure RegisterLinesEditedHandler;
protected
procedure InternalSetLineCharPos(NewLine, NewCharPos: Integer;
UpdFlags: TSynEditCaretUpdateFlags); override;
procedure InternalSetLineByterPos(NewLine, NewBytePos, NewByteOffs: Integer;
UpdFlags: TSynEditCaretUpdateFlags); override;
procedure DoLock; override;
Procedure DoUnlock; override;
procedure SetLines(const AValue: TSynEditStrings); override;
procedure DoLinesEdited(Sender: TSynEditStrings; aLinePos, aBytePos, aCount,
aLineBrkCnt: Integer; aText: String);
public
constructor Create;
destructor Destroy; override;
procedure AssignFrom(Src: TSynEditBaseCaret);
procedure IncForcePastEOL;
procedure DecForcePastEOL;
procedure IncForceAdjustToNextChar;
procedure DecForceAdjustToNextChar;
procedure IncAutoMoveOnEdit;
procedure DecAutoMoveOnEdit;
procedure ChangeOnTouch;
procedure Touch(aChangeOnTouch: Boolean = False);
function WasAtLineChar(aPoint: TPoint): Boolean;
function WasAtLineByte(aPoint: TPoint): Boolean;
function MoveHoriz(ACount: Integer): Boolean; // Logical // False, if past EOL (not mowed)/BOl
property OldLinePos: Integer read FOldLinePos;
property OldCharPos: Integer read FOldCharPos;
property OldLineCharPos: TPoint read GetOldLineCharPos;
property OldLineBytePos: TPoint read GetOldLineBytePos;
property OldFullLogicalPos: TLogCaretPoint read GetOldFullLogicalPos;
property AdjustToNextChar: Boolean read FAdjustToNextChar write FAdjustToNextChar; deprecated;
property SkipTabs: Boolean read FSkipTabs write SetSkipTabs;
property AllowPastEOL: Boolean read FAllowPastEOL write SetAllowPastEOL;
property KeepCaretX: Boolean read FKeepCaretX write SetKeepCaretX;
property KeepCaretXPos: Integer read FLastCharPos write FLastCharPos;
property MaxLeftChar: TMaxLeftCharFunc read FMaxLeftChar write FMaxLeftChar;
end;
TSynCaretType = (ctVerticalLine, ctHorizontalLine, ctHalfBlock, ctBlock, ctCostum);
TSynCaretLockFlags = set of (sclfUpdateDisplay, sclfUpdateDisplayType);
{ TSynEditScreenCaretTimer
Allow sync between carets which use an internal painter
}
TSynEditScreenCaretTimer = class
private
FDisplayCycle: Boolean;
FTimerEnabled: Boolean;
FTimer: TTimer;
FTimerList: TMethodList;
FAfterPaintList: TMethodList;
FLocCount: Integer;
FLocFlags: set of (lfTimer, lfRestart);
procedure DoTimer(Sender: TObject);
procedure DoAfterPaint(Data: PtrInt);
function GetInterval: Integer;
procedure SetInterval(AValue: Integer);
public
constructor Create;
destructor Destroy; override;
procedure AddAfterPaintHandler(AHandler: TNotifyEvent); // called once
procedure AddHandler(AHandler: TNotifyEvent);
procedure RemoveHandler(AHandler: TNotifyEvent);
procedure RemoveHandler(AHandlerOwner: TObject);
procedure IncLock;
procedure DecLock;
procedure AfterPaintEvent;
procedure ResetInterval;
procedure RestartCycle;
property DisplayCycle: Boolean read FDisplayCycle;
property Interval: Integer read GetInterval write SetInterval;
end;
TSynEditScreenCaret = class;
{ TSynEditScreenCaretPainter }
TSynEditScreenCaretPainter = class
private
FLeft, FTop, FHeight, FWidth: Integer;
FCreated, FShowing: Boolean;
FInPaint, FInScroll: Boolean;
FPaintClip: TRect;
FScrollX, FScrollY: Integer;
FScrollRect, FScrollClip: TRect;
function GetHandle: HWND;
function GetHandleAllocated: Boolean;
protected
FHandleOwner: TWinControl;
FOwner: TSynEditScreenCaret;
FNeedPositionConfirmed: boolean;
procedure Init; virtual;
property Handle: HWND read GetHandle;
property HandleAllocated: Boolean read GetHandleAllocated;
procedure BeginScroll(dx, dy: Integer; const rcScroll, rcClip: TRect); virtual;
procedure FinishScroll(dx, dy: Integer; const rcScroll, rcClip: TRect; Success: Boolean); virtual;
procedure BeginPaint(rcClip: TRect); virtual;
procedure FinishPaint(rcClip: TRect); virtual;
public
constructor Create(AHandleOwner: TWinControl; AOwner: TSynEditScreenCaret);
function CreateCaret(w, h: Integer): Boolean; virtual;
function DestroyCaret: Boolean; virtual;
function HideCaret: Boolean; virtual;
function ShowCaret: Boolean; virtual;
function SetCaretPosEx(x, y: Integer): Boolean; virtual;
property Left: Integer read FLeft;
property Top: Integer read FTop;
property Width: Integer read FWidth;
property Height: Integer read FHeight;
property Created: Boolean read FCreated;
property Showing: Boolean read FShowing;
property InPaint: Boolean read FInPaint;
property InScroll: Boolean read FInScroll;
property NeedPositionConfirmed: boolean read FNeedPositionConfirmed;
end;
TSynEditScreenCaretPainterClass = class of TSynEditScreenCaretPainter;
{ TSynEditScreenCaretPainterSystem }
TSynEditScreenCaretPainterSystem = class(TSynEditScreenCaretPainter)
protected
//procedure BeginScroll(dx, dy: Integer; const rcScroll, rcClip: TRect); override;
procedure FinishScroll(dx, dy: Integer; const rcScroll, rcClip: TRect; Success: Boolean); override;
procedure BeginPaint(rcClip: TRect); override;
//procedure FinishPaint(rcClip: TRect); override; // unhide, currently done by editor
public
function CreateCaret(w, h: Integer): Boolean; override;
function DestroyCaret: Boolean; override;
function HideCaret: Boolean; override;
function ShowCaret: Boolean; override;
function SetCaretPosEx(x, y: Integer): Boolean; override;
end;
{ TSynEditScreenCaretPainterInternal }
TSynEditScreenCaretPainterInternal = class(TSynEditScreenCaretPainter)
private type
TIsInRectState = (irInside, irPartInside, irOutside);
TPainterState = (psAfterPaintAdded, psCleanOld, psRemoveTimer);
TPainterStates = set of TPainterState;
private
FColor: TColor;
FForcePaintEvents: Boolean;
FIsDrawn: Boolean;
FSavePen: TPen;
FOldX, FOldY, FOldW, FOldH: Integer;
FState: TPainterStates;
FCanPaint: Boolean;
procedure DoTimer(Sender: TObject);
procedure DoPaint(ACanvas: TCanvas; X, Y, H, W: Integer);
procedure Paint;
procedure Invalidate;
procedure AddAfterPaint(AStates: TPainterStates = []);
procedure DoAfterPaint(Sender: TObject);
procedure ExecAfterPaint;
function CurrentCanvas: TCanvas;
procedure SetColor(AValue: TColor);
function IsInRect(ARect: TRect): TIsInRectState;
function IsInRect(ARect: TRect; X, Y, W, H: Integer): TIsInRectState;
protected
procedure Init; override;
procedure BeginScroll(dx, dy: Integer; const rcScroll, rcClip: TRect); override;
procedure FinishScroll(dx, dy: Integer; const rcScroll, rcClip: TRect; Success: Boolean); override;
procedure BeginPaint(rcClip: TRect); override;
procedure FinishPaint(rcClip: TRect); override;
public
destructor Destroy; override;
function CreateCaret(w, h: Integer): Boolean; override;
function DestroyCaret: Boolean; override;
function HideCaret: Boolean; override;
function ShowCaret: Boolean; override;
function SetCaretPosEx(x, y: Integer): Boolean; override;
property Color: TColor read FColor write SetColor;
property ForcePaintEvents: Boolean read FForcePaintEvents write FForcePaintEvents;
end;
// relative dimensions in percent from 0 to 1024 (=100%)
TSynCustomCaretSizeFlag = (ccsRelativeLeft, ccsRelativeTop, ccsRelativeWidth, ccsRelativeHeight);
TSynCustomCaretSizeFlags = set of TSynCustomCaretSizeFlag;
{ TSynEditScreenCaret }
TSynEditScreenCaret = class
private
FCharHeight: Integer;
FCharWidth: Integer;
FClipRight: Integer;
FClipBottom: Integer;
FClipLeft: Integer;
FClipTop: Integer;
FDisplayPos: TPoint;
FDisplayType: TSynCaretType;
FExtraLinePixel, FExtraLineChars: Integer;
FOnExtraLineCharsChanged: TNotifyEvent;
FVisible: Boolean;
FHandleOwner: TWinControl;
FCaretPainter: TSynEditScreenCaretPainter;
FPaintTimer: TSynEditScreenCaretTimer;
FPaintTimerOwned: Boolean;
function GetHandle: HWND;
function GetHandleAllocated: Boolean;
procedure SetCharHeight(const AValue: Integer);
procedure SetCharWidth(const AValue: Integer);
procedure SetClipRight(const AValue: Integer);
procedure SetDisplayPos(const AValue: TPoint);
procedure SetDisplayType(const AType: TSynCaretType);
procedure SetVisible(const AValue: Boolean);
private
FClipExtraPixel: Integer;
{$IFDeF SynCaretDebug}
FDebugShowCount: Integer;
{$ENDIF}
FPixelWidth, FPixelHeight: Integer;
FOffsetX, FOffsetY: Integer;
FCustomPixelWidth, FCustomPixelHeight: Array [TSynCaretType] of Integer;
FCustomOffsetX, FCustomOffsetY: Array [TSynCaretType] of Integer;
FCustomFlags: Array [TSynCaretType] of TSynCustomCaretSizeFlags;
FLockCount: Integer;
FLockFlags: TSynCaretLockFlags;
function GetHasPaintTimer: Boolean;
function GetPaintTimer: TSynEditScreenCaretTimer;
procedure SetClipBottom(const AValue: Integer);
procedure SetClipExtraPixel(AValue: Integer);
procedure SetClipLeft(const AValue: Integer);
procedure SetClipRect(const AValue: TRect);
procedure SetClipTop(const AValue: Integer);
procedure CalcExtraLineChars;
procedure SetPaintTimer(AValue: TSynEditScreenCaretTimer);
procedure UpdateDisplayType;
procedure UpdateDisplay;
procedure ShowCaret;
procedure HideCaret;
property HandleAllocated: Boolean read GetHandleAllocated;
protected
property Handle: HWND read GetHandle;
public
constructor Create(AHandleOwner: TWinControl);
constructor Create(AHandleOwner: TWinControl; APainterClass: TSynEditScreenCaretPainterClass);
procedure ChangePainter(APainterClass: TSynEditScreenCaretPainterClass);
destructor Destroy; override;
procedure BeginScroll(dx, dy: Integer; const rcScroll, rcClip: TRect);
procedure FinishScroll(dx, dy: Integer; const rcScroll, rcClip: TRect; Success: Boolean);
procedure BeginPaint(rcClip: TRect);
procedure FinishPaint(rcClip: TRect);
procedure Lock;
procedure UnLock;
procedure AfterPaintEvent; // next async
procedure Hide; // Keep visible = true
procedure DestroyCaret(SkipHide: boolean = False);
procedure ResetCaretTypeSizes;
procedure SetCaretTypeSize(AType: TSynCaretType; AWidth, AHeight, AXOffs, AYOffs: Integer;
AFlags: TSynCustomCaretSizeFlags = []);
property HandleOwner: TWinControl read FHandleOwner;
property PaintTimer: TSynEditScreenCaretTimer read GetPaintTimer write SetPaintTimer;
property HasPaintTimer: Boolean read GetHasPaintTimer;
property Painter: TSynEditScreenCaretPainter read FCaretPainter;
property CharWidth: Integer read FCharWidth write SetCharWidth;
property CharHeight: Integer read FCharHeight write SetCharHeight;
property ClipLeft: Integer read FClipLeft write SetClipLeft;
property ClipRight: Integer read FClipRight write SetClipRight; // First pixel outside the allowed area
property ClipTop: Integer read FClipTop write SetClipTop;
property ClipRect: TRect write SetClipRect;
property ClipBottom: Integer read FClipBottom write SetClipBottom;
property ClipExtraPixel: Integer read FClipExtraPixel write SetClipExtraPixel; // Amount of pixels, after the last full char (half visible char width)
property Visible: Boolean read FVisible write SetVisible;
property DisplayType: TSynCaretType read FDisplayType write SetDisplayType;
property DisplayPos: TPoint read FDisplayPos write SetDisplayPos;
property ExtraLineChars: Integer read FExtraLineChars; // Extend the longest line by x chars
property OnExtraLineCharsChanged: TNotifyEvent
read FOnExtraLineCharsChanged write FOnExtraLineCharsChanged;
end;
implementation
uses
SynEditFoldedView;
{ TSynBeforeSetSelTextList }
procedure TSynBeforeSetSelTextList.CallBeforeSetSelTextHandlers(Sender: TObject;
AMode: TSynSelectionMode; ANewText: PChar);
var
i: Integer;
begin
i:=Count;
while NextDownIndex(i) do
TSynBeforeSetSelTextEvent(Items[i])(Sender, AMode, ANewText);
end;
{ TSynEditBaseCaret }
function TSynEditBaseCaret.GetBytePos: Integer;
begin
ValidateBytePos;
Result := FBytePos;
end;
function TSynEditBaseCaret.GetBytePosOffset: Integer;
begin
ValidateBytePos;
Result := FBytePosOffset;
end;
function TSynEditBaseCaret.GetCharPos: Integer;
begin
ValidateCharPos;
Result := FCharPos;
end;
function TSynEditBaseCaret.GetFullLogicalPos: TLogCaretPoint;
begin
ValidateBytePos;
Result.Y := FLinePos;
Result.X := FBytePos;
Result.Offs := FBytePosOffset;
end;
function TSynEditBaseCaret.GetLineBytePos: TPoint;
begin
ValidateBytePos;
Result := Point(FBytePos, FLinePos);
end;
function TSynEditBaseCaret.GetLineCharPos: TPoint;
begin
ValidateCharPos;
Result := Point(FCharPos, FLinePos);
end;
procedure TSynEditBaseCaret.SetBytePos(AValue: Integer);
begin
InternalSetLineByterPos(FLinePos, AValue, 0, [scuChangedX]);
end;
procedure TSynEditBaseCaret.SetBytePosOffset(AValue: Integer);
begin
ValidateBytePos;
InternalSetLineByterPos(FLinePos, FBytePos, AValue, [scuChangedX]);
end;
procedure TSynEditBaseCaret.SetCharPos(AValue: Integer);
begin
InternalSetLineCharPos(FLinePos, AValue, [scuChangedX]);
end;
procedure TSynEditBaseCaret.SetFullLogicalPos(AValue: TLogCaretPoint);
begin
InternalSetLineByterPos(AValue.y, AValue.x, AValue.Offs, [scuChangedX, scuChangedY]);
end;
procedure TSynEditBaseCaret.SetLineBytePos(AValue: TPoint);
begin
InternalSetLineByterPos(AValue.y, AValue.x, 0, [scuChangedX, scuChangedY]);
end;
procedure TSynEditBaseCaret.SetLineCharPos(AValue: TPoint);
begin
InternalSetLineCharPos(AValue.y, AValue.X, [scuChangedX, scuChangedY]);
end;
procedure TSynEditBaseCaret.SetLinePos(AValue: Integer);
begin
// TODO: may temporary lead to invalid x bytepos. Must be adjusted *before* calculating char
//if scBytePosValid in FFlags then
// InternalSetLineByterPos(AValue, FBytePos, FBytePosOffset, [scuChangedY])
//else
ValidateCharPos;
InternalSetLineCharPos(AValue, FCharPos, [scuChangedY]);
end;
function TSynEditBaseCaret.GetLineText: string;
begin
if (LinePos >= 1) and (LinePos <= FLines.Count) then
Result := FLines[LinePos - 1]
else
Result := '';
end;
procedure TSynEditBaseCaret.SetLineText(AValue: string);
begin
if (LinePos >= 1) and (LinePos <= Max(1, FLines.Count)) then
FLines[LinePos - 1] := AValue;
end;
procedure TSynEditBaseCaret.ValidateBytePos;
begin
if scBytePosValid in FFlags then
exit;
assert(scCharPosValid in FFlags, 'ValidateBytePos: no charpos set');
Include(FFlags, scBytePosValid);
FBytePos := FLines.LogPhysConvertor.PhysicalToLogical(FLinePos-1, FCharPos, FBytePosOffset);
end;
procedure TSynEditBaseCaret.ValidateCharPos;
begin
if scCharPosValid in FFlags then
exit;
assert(scBytePosValid in FFlags, 'ValidateCharPos: no bytepos set');
Include(FFlags, scCharPosValid);
FCharPos := FLines.LogPhysConvertor.LogicalToPhysical(FLinePos-1, FBytePos, FBytePosOffset);
end;
procedure TSynEditBaseCaret.InternalSetLineCharPos(NewLine, NewCharPos: Integer;
UpdFlags: TSynEditCaretUpdateFlags);
begin
if (fCharPos = NewCharPos) and (fLinePos = NewLine) and
(scCharPosValid in FFlags) and not (scuForceSet in UpdFlags)
then
exit;
if not (scuNoInvalidate in UpdFlags) then
Exclude(FFlags, scBytePosValid);
Include(FFlags, scCharPosValid);
if NewLine < 1 then begin
NewLine := 1;
Exclude(FFlags, scBytePosValid);
end;
if NewCharPos < 1 then begin
NewCharPos := 1;
Exclude(FFlags, scBytePosValid);
end;
FCharPos := NewCharPos;
FLinePos := NewLine;
end;
procedure TSynEditBaseCaret.InternalSetLineByterPos(NewLine, NewBytePos, NewByteOffs: Integer;
UpdFlags: TSynEditCaretUpdateFlags);
begin
if (FBytePos = NewBytePos) and (FBytePosOffset = NewByteOffs) and
(FLinePos = NewLine) and (scBytePosValid in FFlags) and not (scuForceSet in UpdFlags)
then
exit;
if not (scuNoInvalidate in UpdFlags) then
Exclude(FFlags, scCharPosValid);
Include(FFlags, scBytePosValid);
if NewLine < 1 then begin
NewLine := 1;
Exclude(FFlags, scCharPosValid);
end;
if NewBytePos < 1 then begin
NewBytePos := 1;
Exclude(FFlags, scCharPosValid);
end;
FBytePos := NewBytePos;
FBytePosOffset := NewByteOffs;
FLinePos := NewLine;
end;
constructor TSynEditBaseCaret.Create;
begin
inherited Create;
fLinePos := 1;
fCharPos := 1;
FBytePos := 1;
FBytePosOffset := 0;
FFlags := [scCharPosValid, scBytePosValid];
end;
procedure TSynEditBaseCaret.AssignFrom(Src: TSynEditBaseCaret);
begin
FLinePos := Src.FLinePos;
FCharPos := Src.FCharPos;
FBytePos := Src.FBytePos;
FBytePosOffset := Src.FBytePosOffset;
FFlags := Src.FFlags;
SetLines(Src.FLines);
end;
procedure TSynEditBaseCaret.Invalidate;
begin
FLinePos := 1;
FCharPos := 1;
FBytePos := 1;
FFlags := [];
end;
procedure TSynEditBaseCaret.InvalidateBytePos;
begin
if not (scCharPosValid in FFlags) then
Invalidate
else
Exclude(FFlags, scBytePosValid);
end;
procedure TSynEditBaseCaret.InvalidateCharPos;
begin
if not (scBytePosValid in FFlags) then
Invalidate
else
Exclude(FFlags, scCharPosValid);
end;
function TSynEditBaseCaret.IsAtLineChar(aPoint: TPoint): Boolean;
begin
ValidateCharPos;
Result := (FLinePos = aPoint.y) and (FCharPos = aPoint.x);
end;
function TSynEditBaseCaret.IsAtLineByte(aPoint: TPoint; aByteOffset: Integer): Boolean;
begin
ValidateBytePos;
Result := (FLinePos = aPoint.y) and (BytePos = aPoint.x) and
( (aByteOffset < 0) or (FBytePosOffset = aByteOffset) );
end;
function TSynEditBaseCaret.IsAtPos(aCaret: TSynEditCaret): Boolean;
begin
if (scBytePosValid in FFlags) or (scBytePosValid in aCaret.FFlags) then
Result := IsAtLineByte(aCaret.LineBytePos, aCaret.BytePosOffset)
else
Result := IsAtLineChar(aCaret.LineCharPos);
end;
{ TSynEditPointBase }
function TSynEditPointBase.GetLocked: Boolean;
begin
Result := FLockCount > 0;
end;
procedure TSynEditPointBase.SetLines(const AValue: TSynEditStrings);
begin
FLines := AValue;
end;
procedure TSynEditPointBase.DoLock;
begin
end;
procedure TSynEditPointBase.DoUnlock;
begin
end;
constructor TSynEditPointBase.Create;
begin
FOnChangeList := TMethodList.Create;
end;
constructor TSynEditPointBase.Create(Lines : TSynEditStrings);
begin
Create;
FLines := Lines;
end;
destructor TSynEditPointBase.Destroy;
begin
FreeAndNil(FOnChangeList);
inherited Destroy;
end;
procedure TSynEditPointBase.AddChangeHandler(AHandler : TNotifyEvent);
begin
FOnChangeList.Add(TMethod(AHandler));
end;
procedure TSynEditPointBase.RemoveChangeHandler(AHandler : TNotifyEvent);
begin
FOnChangeList.Remove(TMethod(AHandler));
end;
procedure TSynEditPointBase.Lock;
begin
if FLockCount = 0 then
DoLock;
inc(FLockCount);
end;
procedure TSynEditPointBase.Unlock;
begin
dec(FLockCount);
if FLockCount = 0 then
DoUnLock;
end;
{ TSynEditCaret }
constructor TSynEditCaret.Create;
begin
inherited Create;
FMaxLeftChar := nil;
FAllowPastEOL := True;
FForcePastEOL := 0;
FAutoMoveOnEdit := 0;
if FLines <> nil then
FLines.AddEditHandler(@DoLinesEdited);
end;
destructor TSynEditCaret.Destroy;
begin
if FLines <> nil then
FLines.RemoveEditHandler(@DoLinesEdited);
inherited Destroy;
end;
procedure TSynEditCaret.AssignFrom(Src: TSynEditBaseCaret);
begin
FOldCharPos := FCharPos;
FOldLinePos := FLinePos;
inherited AssignFrom(Src);
if Src is TSynEditCaret then begin
FMaxLeftChar := TSynEditCaret(Src).FMaxLeftChar;
FAllowPastEOL := TSynEditCaret(Src).FAllowPastEOL;
FKeepCaretX := TSynEditCaret(Src).FKeepCaretX;
FLastCharPos := TSynEditCaret(Src).FLastCharPos;
end
else begin
AdjustToChar;
FLastCharPos := FCharPos;
end;
end;
procedure TSynEditCaret.DoLock;
begin
FTouched := False;
ValidateCharPos;
//ValidateBytePos;
FOldCharPos := FCharPos;
FOldLinePos := FLinePos;
end;
procedure TSynEditCaret.DoUnlock;
begin
if not FChangeOnTouch then
FTouched := False;
FChangeOnTouch := False;
ValidateCharPos;
//ValidateBytePos;
if (FOldCharPos <> FCharPos) or (FOldLinePos <> FLinePos) or FTouched then
fOnChangeList.CallNotifyEvents(self);
// All notifications called, reset oldpos
FTouched := False;
FOldCharPos := FCharPos;
FOldLinePos := FLinePos;
end;
procedure TSynEditCaret.SetLines(const AValue: TSynEditStrings);
begin
if FLines = AValue then exit;
// Do not check flag. It will be cleared in Assign
if (FLines <> nil) then
FLines.RemoveEditHandler(@DoLinesEdited);
FLinesEditedRegistered := False;
inherited SetLines(AValue);
if FAutoMoveOnEdit > 0 then
RegisterLinesEditedHandler;
end;
procedure TSynEditCaret.RegisterLinesEditedHandler;
begin
if FLinesEditedRegistered or (FLines = nil) then
exit;
FLinesEditedRegistered := True;
FLines.AddEditHandler(@DoLinesEdited);
end;
procedure TSynEditCaret.DoLinesEdited(Sender: TSynEditStrings; aLinePos, aBytePos, aCount,
aLineBrkCnt: Integer; aText: String);
// Todo: refactor / this is a copy from selection
function AdjustPoint(aPoint: Tpoint): TPoint; inline;
begin
Result := aPoint;
if aLineBrkCnt < 0 then begin
(* Lines Deleted *)
if aPoint.y > aLinePos then begin
Result.y := Max(aLinePos, Result.y + aLineBrkCnt);
if Result.y = aLinePos then
Result.x := Result.x + aBytePos - 1;
end;
end
else
if aLineBrkCnt > 0 then begin
(* Lines Inserted *)
if (aPoint.y = aLinePos) and (aPoint.x >= aBytePos) then begin
Result.x := Result.x - aBytePos + 1;
Result.y := Result.y + aLineBrkCnt;
end;
if aPoint.y > aLinePos then begin
Result.y := Result.y + aLineBrkCnt;
end;
end
else
if aCount <> 0 then begin
(* Chars Insert/Deleted *)
if (aPoint.y = aLinePos) and (aPoint.x >= aBytePos) then
Result.x := Max(aBytePos, Result.x + aCount);
end;
end;
var
p: TPoint;
begin
if (FAutoMoveOnEdit > 0) and
( (aLineBrkCnt <> 0) or (aLinePos = FLinePos) )
then begin
IncForcePastEOL;
ValidateBytePos;
p := AdjustPoint(Point(FBytePos, FLinePos));
InternalSetLineByterPos(p.y, p.x, FBytePosOffset, [scuChangedX, scuChangedY, scuForceSet]);
DecForcePastEOL;
end;
end;
procedure TSynEditCaret.AdjustToChar;
var
CharWidthsArr: TPhysicalCharWidths;
CharWidths: PPhysicalCharWidth;
i, LogLen: Integer;
ScreenPos: Integer;
LogPos: Integer;
L: String;
begin
ValidateCharPos;
L := LineText;
if FLines.LogPhysConvertor.CurrentLine = FLinePos then begin
CharWidths := FLines.LogPhysConvertor.CurrentWidths;
LogLen := FLines.LogPhysConvertor.CurrentWidthsCount;
end
else begin
CharWidthsArr := FLines.GetPhysicalCharWidths(Pchar(L), length(L), FLinePos-1);
LogLen := Length(CharWidthsArr);
if LogLen > 0 then
CharWidths := @CharWidthsArr[0]
else
CharWidths := Nil;
end;
ScreenPos := 1;
LogPos := 0;
while LogPos < LogLen do begin
if ScreenPos = FCharPos then exit;
if ScreenPos + (CharWidths[LogPos] and PCWMask) > FCharPos then begin
if (L[LogPos+1] = #9) and (not FSkipTabs) then exit;
i := FCharPos;
if FAdjustToNextChar or (FForceAdjustToNextChar > 0) then
FCharPos := ScreenPos + (CharWidths[LogPos] and PCWMask)
else
FCharPos := ScreenPos;
if FCharPos <> i then
Exclude(FFlags, scBytePosValid);
exit;
end;
ScreenPos := ScreenPos + (CharWidths[LogPos] and PCWMask);
inc(LogPos);
end;
end;
function TSynEditCaret.GetMaxLeftPastEOL: Integer;
begin
if FMaxLeftChar <> nil then
Result := FMaxLeftChar()
else
Result := MaxInt;
end;
procedure TSynEditCaret.InternalSetLineCharPos(NewLine, NewCharPos: Integer;
UpdFlags: TSynEditCaretUpdateFlags);
var
LogEolPos, MaxPhysX, NewLogCharPos, Offs: Integer;
L: String;
begin
if not (scuChangedX in UpdFlags) and FKeepCaretX then
NewCharPos := FLastCharPos;
Lock;
FTouched := True;
try
if (fCharPos = NewCharPos) and (fLinePos = NewLine) and
(scCharPosValid in FFlags) and not (scuForceSet in UpdFlags)
then begin
// Lines may have changed, so the other pos can be invalid
if not (scuNoInvalidate in UpdFlags) then
Exclude(FFlags, scBytePosValid);
exit;
end;
if NewLine > FLines.Count then begin
NewLine := FLines.Count;
Exclude(UpdFlags, scuNoInvalidate);
end;
if NewLine < 1 then begin // Only allowed, if Lines.Count = 0
NewLine := 1;
if (NewCharPos > 1) and (FAllowPastEOL or (FForcePastEOL > 0))
then MaxPhysX := GetMaxLeftPastEOL
else MaxPhysX := 1;
if NewCharPos > MaxPhysX then
NewCharPos := MaxPhysX;
NewLogCharPos := NewCharPos;
Offs := 0;
Exclude(UpdFlags, scuNoInvalidate);
end else begin
if FAdjustToNextChar or (FForceAdjustToNextChar > 0) then
NewLogCharPos := Lines.LogPhysConvertor.PhysicalToLogical(NewLine-1, NewCharPos, Offs, cspDefault, [lpfAdjustToNextChar])
else
NewLogCharPos := Lines.LogPhysConvertor.PhysicalToLogical(NewLine-1, NewCharPos, Offs, cspDefault, [lpfAdjustToCharBegin]);
Offs := Lines.LogPhysConvertor.UnAdjustedPhysToLogColOffs;
L := Lines[NewLine - 1];
if (Offs > 0) and (not FSkipTabs) and (L[NewLogCharPos] = #9) then begin
// get the unadjusted result
NewLogCharPos := Lines.LogPhysConvertor.UnAdjustedPhysToLogResult
end
else begin
// get adjusted Result
NewCharPos := Lines.LogPhysConvertor.AdjustedPhysToLogOrigin;
Offs := 0;
end;
LogEolPos := length(L)+1;
if NewLogCharPos > LogEolPos then begin
if FAllowPastEOL or (FForcePastEOL > 0) then begin
MaxPhysX := GetMaxLeftPastEOL;
if NewCharPos > MaxPhysX then begin
NewLogCharPos := NewLogCharPos - (NewCharPos - MaxPhysX);
NewCharPos := MaxPhysX;
Exclude(UpdFlags, scuNoInvalidate);
end;
end
else begin
NewCharPos := NewCharPos - (NewLogCharPos - LogEolPos);
NewLogCharPos := LogEolPos;
Exclude(UpdFlags, scuNoInvalidate);
end;
end;
end;
if NewCharPos < 1 then begin
NewCharPos := 1;
Exclude(UpdFlags, scuNoInvalidate);
end;
inherited InternalSetLineCharPos(NewLine, NewCharPos, UpdFlags);
inherited InternalSetLineByterPos(NewLine, NewLogCharPos, Offs, [scuNoInvalidate, scuChangedX]);
if (scuChangedX in UpdFlags) or (not FKeepCaretX) then
FLastCharPos := FCharPos;
finally
Unlock;
end;
end;
procedure TSynEditCaret.InternalSetLineByterPos(NewLine, NewBytePos, NewByteOffs: Integer;
UpdFlags: TSynEditCaretUpdateFlags);
var
MaxPhysX, NewCharPos, LogEolPos: Integer;
L: String;
begin
if not (scuChangedX in UpdFlags) and FKeepCaretX then begin
Exclude(UpdFlags, scuNoInvalidate);
InternalSetLineCharPos(NewLine, FLastCharPos, UpdFlags);
exit;
end;
Lock;
FTouched := True;
try
if (FBytePos = NewBytePos) and (FBytePosOffset = NewByteOffs) and
(FLinePos = NewLine) and (scBytePosValid in FFlags) and not (scuForceSet in UpdFlags)
then begin
// Lines may have changed, so the other pos can be invalid
if not (scuNoInvalidate in UpdFlags) then
Exclude(FFlags, scCharPosValid);
exit;
end;
if NewLine > FLines.Count then begin
NewLine := FLines.Count;
Exclude(UpdFlags, scuNoInvalidate);
end;
if NewLine < 1 then begin // Only allowed, if Lines.Count = 0
L := '';
NewLine := 1;
LogEolPos := 1;
if (NewBytePos > 1) and (FAllowPastEOL or (FForcePastEOL > 0))
then MaxPhysX := GetMaxLeftPastEOL
else MaxPhysX := 1;
if NewBytePos > MaxPhysX then
NewBytePos := MaxPhysX;
NewByteOffs := 0;
NewCharPos := NewBytePos;
Exclude(UpdFlags, scuNoInvalidate);
end else begin
L := Lines[NewLine - 1];
LogEolPos := length(L)+1;
if (NewBytePos > LogEolPos) then begin
if not(FAllowPastEOL or (FForcePastEOL > 0)) then
NewBytePos := LogEolPos;
NewByteOffs := 0;
end
else
if (NewByteOffs > 0) and ( (FSkipTabs) or (L[NewBytePos] <> #9) ) then
NewByteOffs := 0;
if FAdjustToNextChar or (FForceAdjustToNextChar > 0) then
NewCharPos := Lines.LogPhysConvertor.LogicalToPhysical(NewLine-1, NewBytePos, NewByteOffs, cslDefault, [lpfAdjustToNextChar])
else
NewCharPos := Lines.LogPhysConvertor.LogicalToPhysical(NewLine-1, NewBytePos, NewByteOffs, cslDefault, [lpfAdjustToCharBegin]);
NewBytePos := Lines.LogPhysConvertor.AdjustedLogToPhysOrigin;
if (NewBytePos > LogEolPos) then begin
MaxPhysX := GetMaxLeftPastEOL;
if NewCharPos > MaxPhysX then begin
NewBytePos := NewBytePos - (NewCharPos - MaxPhysX);
NewCharPos := MaxPhysX;
Exclude(UpdFlags, scuNoInvalidate);
end;
end;
end;
if NewBytePos < 1 then begin
NewBytePos := 1;
Exclude(UpdFlags, scuNoInvalidate);
end;
inherited InternalSetLineByterPos(NewLine, NewBytePos, NewByteOffs, UpdFlags);
inherited InternalSetLineCharPos(NewLine, NewCharPos, [scuNoInvalidate, scuChangedX]);
if (scuChangedX in UpdFlags) and FKeepCaretX then
FLastCharPos := FCharPos;
finally
Unlock;
end;
end;
function TSynEditCaret.GetOldLineCharPos: TPoint;
begin
Result := Point(FOldCharPos, FOldLinePos);
end;
function TSynEditCaret.GetOldLineBytePos: TPoint;
begin
Result := FLines.PhysicalToLogicalPos(OldLineCharPos);
end;
function TSynEditCaret.GetOldFullLogicalPos: TLogCaretPoint;
begin
Result.Y := FOldLinePos;
Result.X := FLines.LogPhysConvertor.PhysicalToLogical(ToIdx(FOldLinePos), FOldCharPos, Result.Offs);
end;
procedure TSynEditCaret.SetAllowPastEOL(const AValue: Boolean);
begin
if FAllowPastEOL = AValue then exit;
FAllowPastEOL := AValue;
if not FAllowPastEOL then begin
// TODO: this would set x=LastX
//if scBytePosValid in FFlags then
// InternalSetLineByterPos(FLinePos, FBytePos, FBytePosOffset, [scuForceSet]); // NO scuChangedX => FLastCharPos is kept
//else
ValidateCharPos;
InternalSetLineCharPos(FLinePos, FCharPos, [scuForceSet]); // NO scuChangedX => FLastCharPos is kept
end;
end;
procedure TSynEditCaret.SetKeepCaretX(const AValue: Boolean);
begin
if FKeepCaretX = AValue then exit;
FKeepCaretX := AValue;
if FKeepCaretX then begin
ValidateCharPos;
FLastCharPos := FCharPos;
end;
end;
procedure TSynEditCaret.SetSkipTabs(const AValue: Boolean);
begin
if FSkipTabs = AValue then exit;
FSkipTabs := AValue;
if FSkipTabs then begin
Lock;
AdjustToChar;
Unlock;
end;
end;
procedure TSynEditCaret.IncForcePastEOL;
begin
inc(FForcePastEOL);
end;
procedure TSynEditCaret.DecForcePastEOL;
begin
dec(FForcePastEOL);
end;
procedure TSynEditCaret.IncForceAdjustToNextChar;
begin
Inc(FForceAdjustToNextChar);
end;
procedure TSynEditCaret.DecForceAdjustToNextChar;
begin
Dec(FForceAdjustToNextChar);
end;
procedure TSynEditCaret.IncAutoMoveOnEdit;
begin
if FAutoMoveOnEdit = 0 then begin
RegisterLinesEditedHandler;
ValidateBytePos;
end;
inc(FAutoMoveOnEdit);
end;
procedure TSynEditCaret.DecAutoMoveOnEdit;
begin
dec(FAutoMoveOnEdit);
end;
procedure TSynEditCaret.ChangeOnTouch;
begin
FChangeOnTouch := True;
if not Locked then
FTouched := False;
end;
procedure TSynEditCaret.Touch(aChangeOnTouch: Boolean);
begin
if aChangeOnTouch then
ChangeOnTouch;
FTouched := True;
end;
function TSynEditCaret.WasAtLineChar(aPoint: TPoint): Boolean;
begin
Result := (FOldLinePos = aPoint.y) and (FOldCharPos = aPoint.x);
end;
function TSynEditCaret.WasAtLineByte(aPoint: TPoint): Boolean;
begin
Result := (FOldLinePos = aPoint.y) and
(FLines.PhysicalToLogicalPos(Point(FOldCharPos, FOldLinePos)).X = aPoint.x);
end;
function TSynEditCaret.MoveHoriz(ACount: Integer): Boolean;
var
L: String;
CharWidths: TPhysicalCharWidths;
GotCharWidths: Boolean;
MaxOffs: Integer;
p: Integer;
NC: Boolean;
NF: Integer;
function GetMaxOffs(AlogPos: Integer): Integer;
begin
if not GotCharWidths then
CharWidths := FLines.GetPhysicalCharWidths(Pchar(L), length(L), FLinePos-1);
GotCharWidths := True;
Result := CharWidths[AlogPos-1];
end;
begin
GotCharWidths := False;
L := LineText;
ValidateBytePos;
If ACount > 0 then begin
if (FBytePos <= length(L)) and (L[FBytePos] = #9) and (not FSkipTabs) then
MaxOffs := GetMaxOffs(FBytePos) - 1
else
MaxOffs := 0;
while ACount > 0 do begin
if FBytePosOffset < MaxOffs then
inc(FBytePosOffset)
else begin
if (FBytePos > length(L)) and not (FAllowPastEOL or (FForcePastEOL > 0)) then
break;
FBytePos := FLines.LogicPosAddChars(L, FBytePos, 1, True);
FBytePosOffset := 0;
if (FBytePos <= length(L)) and (L[FBytePos] = #9) and (not FSkipTabs) then
MaxOffs := GetMaxOffs(FBytePos) - 1
else
MaxOffs := 0;
end;
dec(ACount);
end;
Result := ACount = 0;
p := FBytePos;
IncForceAdjustToNextChar;
InternalSetLineByterPos(FLinePos, FBytePos, FBytePosOffset, [scuChangedX, scuForceSet]);
DecForceAdjustToNextChar;
if p > FBytePos then
Result := False; // MaxLeftChar
end
else begin
while ACount < 0 do begin
if FBytePosOffset > 0 then
dec(FBytePosOffset)
else begin
if FBytePos = 1 then
break;
FBytePos := FLines.LogicPosAddChars(L, FBytePos, -1, True);
if (FBytePos <= length(L)) and (L[FBytePos] = #9) and (not FSkipTabs) then
FBytePosOffset := GetMaxOffs(FBytePos) - 1
else
FBytePosOffset := 0;
end;
inc(ACount);
end;
Result := ACount = 0;
NC := FAdjustToNextChar;
NF := FForceAdjustToNextChar;
FAdjustToNextChar := False;
FForceAdjustToNextChar := 0;
InternalSetLineByterPos(FLinePos, FBytePos, FBytePosOffset, [scuChangedX, scuForceSet]);
FAdjustToNextChar := NC;
FForceAdjustToNextChar := NF;
end;
end;
{ TSynEditSelection }
constructor TSynEditSelection.Create(ALines : TSynEditStrings; aActOnLineChanges: Boolean);
begin
Inherited Create(ALines);
FOnBeforeSetSelText := TSynBeforeSetSelTextList.Create;
FInternalCaret := TSynEditBaseCaret.Create;
FInternalCaret.Lines := FLines;
FActiveSelectionMode := smNormal;
FStartLinePos := 1;
FStartBytePos := 1;
FAltStartLinePos := -1;
FAltStartBytePos := -1;
FEndLinePos := 1;
FEndBytePos := 1;
FEnabled := True;
FHookedLines := aActOnLineChanges;
FIsSettingText := False;
if FHookedLines then begin
FLines.AddEditHandler(@DoLinesEdited);
FLines.AddChangeHandler(senrLineChange, @LineChanged);
end;
end;
destructor TSynEditSelection.Destroy;
begin
FreeAndNil(FOnBeforeSetSelText);
FreeAndNil(FInternalCaret);
if FHookedLines then begin
FLines.RemoveEditHandler(@DoLinesEdited);
FLines.RemoveChangeHandler(senrLineChange, @LineChanged);
end;
inherited Destroy;
end;
procedure TSynEditSelection.AssignFrom(Src: TSynEditSelection);
begin
//FEnabled := src.FEnabled;
FHide := src.FHide;
FActiveSelectionMode := src.FActiveSelectionMode;
FSelectionMode := src.FSelectionMode;
FStartLinePos := src.FStartLinePos; // 1 based
FStartBytePos := src.FStartBytePos; // 1 based
FEndLinePos := src.FEndLinePos; // 1 based
FEndBytePos := src.FEndBytePos; // 1 based
FPersistent := src.FPersistent;
end;
procedure TSynEditSelection.AdjustAfterTrimming;
begin
if FStartBytePos > Length(FLines[FStartLinePos-1]) + 1 then
FStartBytePos := Length(FLines[FStartLinePos-1]) + 1;
if FEndBytePos > Length(FLines[FEndLinePos-1]) + 1 then
FEndBytePos := Length(FLines[FEndLinePos-1]) + 1;
// Todo: Call ChangeNotification
end;
procedure TSynEditSelection.DoLock;
begin
inherited DoLock;
FLastCarePos := Point(-1, -1);
end;
procedure TSynEditSelection.DoUnlock;
begin
inherited DoUnlock;
FLastCarePos := Point(-1, -1);
end;
function TSynEditSelection.GetSelText : string;
function CopyPadded(const S: string; Index, Count: integer): string;
var
SrcLen: Integer;
DstLen: integer;
P: PChar;
begin
SrcLen := Length(S);
DstLen := Index + Count;
if SrcLen >= DstLen then
Result := Copy(S, Index, Count)
else begin
SetLength(Result, DstLen);
P := PChar(Result);
StrPCopy(P, Copy(S, Index, Count));
Inc(P, SrcLen);
FillChar(P^, DstLen - Srclen, $20);
end;
end;
procedure CopyAndForward(const S: string; Index, Count: Integer; var P: PChar);
var
pSrc: PChar;
SrcLen: Integer;
DstLen: Integer;
begin
SrcLen := Length(S);
if (Index <= SrcLen) and (Count > 0) then begin
Dec(Index);
pSrc := PChar(Pointer(S)) + Index;
DstLen := Min(SrcLen - Index, Count);
Move(pSrc^, P^, DstLen);
Inc(P, DstLen);
P^ := #0;
end;
end;
procedure CopyPaddedAndForward(const S: string; Index, Count: Integer;
var P: PChar);
var
OldP: PChar;
Len: Integer;
begin
OldP := P;
CopyAndForward(S, Index, Count, P);
Len := Count - (P - OldP);
FillChar(P^, Len, #$20);
Inc(P, Len);
end;
var
First, Last, TotalLen: Integer;
ColFrom, ColTo: Integer;
I: Integer;
P: PChar;
C1, C2: Integer;
Col, Len: array of Integer;
begin
Result := '';
if SelAvail then
begin
if IsBackwardSel then begin
ColFrom := FEndBytePos;
First := FEndLinePos - 1;
ColTo := FStartBytePos;
Last := FStartLinePos - 1;
end else begin
ColFrom := FStartBytePos;
First := FStartLinePos - 1;
ColTo := FEndBytePos;
Last := FEndLinePos - 1;
end;
TotalLen := 0;
case ActiveSelectionMode of
smNormal:
if (First = Last) then begin
Result := Copy(FLines[First], ColFrom, ColTo - ColFrom);
I := (ColTo - ColFrom) - length(Result);
if I > 0 then
Result := Result + StringOfChar(' ', I);
end else begin
// step1: calculate total length of result string
TotalLen := Max(0, Length(FLines[First]) - ColFrom + 1);
for i := First + 1 to Last - 1 do
Inc(TotalLen, Length(FLines[i]));
Inc(TotalLen, ColTo - 1);
Inc(TotalLen, Length(sLineBreak) * (Last - First));
// step2: build up result string
SetLength(Result, TotalLen);
P := PChar(Pointer(Result));
CopyAndForward(FLines[First], ColFrom, MaxInt, P);
CopyAndForward(sLineBreak, 1, MaxInt, P);
for i := First + 1 to Last - 1 do begin
CopyAndForward(FLines[i], 1, MaxInt, P);
CopyAndForward(sLineBreak, 1, MaxInt, P);
end;
CopyPaddedAndForward(FLines[Last], 1, ColTo - 1, P);
end;
smColumn:
begin
// Calculate the byte positions for each line
SetLength(Col, Last - First + 1);
SetLength(Len, Last - First + 1);
FInternalCaret.Invalidate;
FInternalCaret.LineBytePos := FirstLineBytePos;
C1 := FInternalCaret.CharPos;
FInternalCaret.LineBytePos := LastLineBytePos;
C2 := FInternalCaret.CharPos;
if C1 > C2 then
SwapInt(C1, C2);
TotalLen := 0;
for i := First to Last do begin
FInternalCaret.LineCharPos := Point(C1, i + 1);
Col[i - First] := FInternalCaret.BytePos;
FInternalCaret.LineCharPos := Point(C2, i + 1);
Len[i - First] := Max(0, FInternalCaret.BytePos - Col[i - First]);
Inc(TotalLen, Len[i - First]);
end;
Inc(TotalLen, Length(LineEnding) * (Last - First));
// build up result string
SetLength(Result, TotalLen);
P := PChar(Pointer(Result));
for i := First to Last do begin
CopyPaddedAndForward(FLines[i], Col[i-First], Len[i-First], P);
if i < Last then
CopyAndForward(LineEnding, 1, MaxInt, P);
end;
end;
smLine:
begin
// If block selection includes LastLine,
// line break code(s) of the last line will not be added.
// step1: calclate total length of result string
for i := First to Last do
Inc(TotalLen, Length(FLines[i]) + Length(LineEnding));
if Last = FLines.Count - 1 then
Dec(TotalLen, Length(LineEnding));
// step2: build up result string
SetLength(Result, TotalLen);
P := PChar(Pointer(Result));
for i := First to Last - 1 do begin
CopyAndForward(FLines[i], 1, MaxInt, P);
CopyAndForward(LineEnding, 1, MaxInt, P);
end;
CopyAndForward(FLines[Last], 1, MaxInt, P);
if Last < FLines.Count - 1 then
CopyAndForward(LineEnding, 1, MaxInt, P);
end;
end;
end;
end;
procedure TSynEditSelection.SetSelText(const Value : string);
begin
SetSelTextPrimitive(FActiveSelectionMode, PChar(Value));
end;
procedure TSynEditSelection.DoCaretChanged(Sender: TObject);
procedure SwapAltStart;
var
x, y: Integer;
begin
if FAltStartLinePos < FStartLinePos then
FInvalidateLinesMethod(FAltStartLinePos, FStartLinePos)
else
FInvalidateLinesMethod(FStartLinePos, FAltStartLinePos);
y := FAltStartLinePos;
x := FAltStartBytePos;
FAltStartLinePos := FStartLinePos;
FAltStartBytePos := FStartBytePos;
FStartLinePos := y;
FStartBytePos := x;
end;
procedure FixMinimumSelection;
begin
if FAltStartLinePos < 0 then exit;
case ComparePoints(Point(FAltStartBytePos, FAltStartLinePos), StartLineBytePos) of
-1: begin // alt is before start
if ComparePoints(StartLineBytePos, EndLineBytePos) <= 0 then
SwapAltStart;
end;
1: begin // start is before alt
if ComparePoints(StartLineBytePos, EndLineBytePos) >= 0 then
SwapAltStart;
end;
end;
end;
var
f: Boolean;
begin
// FIgnoreNextCaretMove => caret skip selection
if FIgnoreNextCaretMove then begin
FIgnoreNextCaretMove := False;
FLastCarePos := Point(-1, -1);
exit;
end;
if (FCaret.IsAtLineByte(StartLineBytePos) or
FCaret.IsAtLineByte(EndLineBytePos)) and
FCaret.WasAtLineChar(FLastCarePos)
then
exit;
FLastCarePos := Point(-1, -1);
if FAutoExtend or FStickyAutoExtend then begin
f := FStickyAutoExtend;
if (not FHide) and (FCaret.WasAtLineByte(EndLineBytePos)) then begin
SetEndLineBytePos(FCaret.LineBytePos);
FixMinimumSelection;
end
else
if (not FHide) and (FCaret.WasAtLineByte(StartLineBytePos)) then begin
AdjustStartLineBytePos(FCaret.LineBytePos);
FAltStartLinePos := -1;
FAltStartBytePos := -1;
end
else begin
StartLineBytePos := FCaret.OldLineBytePos;
EndLineBytePos := FCaret.LineBytePos;
if Persistent and IsBackwardSel then
SortSelectionPoints;
end;
FStickyAutoExtend := f;
exit;
end;
if FPersistent or (FPersistentLock > 0) then
exit;
StartLineBytePos := FCaret.LineBytePos;
end;
procedure TSynEditSelection.LineChanged(Sender: TSynEditStrings; AIndex, ACount: Integer);
var
i, i2: Integer;
begin
if (FCaret <> nil) and (not FCaret.AllowPastEOL) and (not FIsSettingText) then begin
i := ToPos(AIndex);
i2 := i + ACount - 1;
//AdjustAfterTrimming;
if (FStartLinePos >= i) and (FStartLinePos <= i2) then
if FStartBytePos > Length(FLines[FStartLinePos-1]) + 1 then
FStartBytePos := Length(FLines[FStartLinePos-1]) + 1;
if (FEndLinePos >= i) and (FEndLinePos <= i2) then
if FEndBytePos > Length(FLines[FEndLinePos-1]) + 1 then
FEndBytePos := Length(FLines[FEndLinePos-1]) + 1;
end;
end;
procedure TSynEditSelection.DoLinesEdited(Sender: TSynEditStrings; aLinePos, aBytePos, aCount,
aLineBrkCnt: Integer; aText: String);
function AdjustPoint(aPoint: Tpoint; AIsStart: Boolean): TPoint; inline;
begin
Result := aPoint;
if aLineBrkCnt < 0 then begin
(* Lines Deleted *)
if aPoint.y > aLinePos then begin
Result.y := Max(aLinePos, Result.y + aLineBrkCnt);
if Result.y = aLinePos then
Result.x := Result.x + aBytePos - 1;
end;
end
else
if aLineBrkCnt > 0 then begin
(* Lines Inserted *)
if (aPoint.y = aLinePos) and (aPoint.x >= aBytePos) then begin
Result.x := Result.x - aBytePos + 1;
Result.y := Result.y + aLineBrkCnt;
end;
if aPoint.y > aLinePos then begin
Result.y := Result.y + aLineBrkCnt;
end;
end
else
if aCount <> 0 then begin
(* Chars Insert/Deleted *)
if (aPoint.y = aLinePos) then begin
if (FWeakPersistentIdx > 0) and (FWeakPersistentIdx > FStrongPersistentIdx) then begin
if (AIsStart and (aPoint.x >= aBytePos)) or
(not AIsStart and (aPoint.x > aBytePos))
then
Result.x := Max(aBytePos, Result.x + aCount);
end
else
if (FStrongPersistentIdx > 0) then begin
if (AIsStart and (aPoint.x > aBytePos)) or
(not AIsStart and (aPoint.x >= aBytePos))
then
Result.x := Max(aBytePos, Result.x + aCount);
end
else begin
if (aPoint.x >= aBytePos) then
Result.x := Max(aBytePos, Result.x + aCount);
end;
end;
end;
end;
begin
if FIsSettingText then exit;
if FPersistent or (FPersistentLock > 0) or
((FCaret <> nil) and (not FCaret.Locked))
then begin
if FActiveSelectionMode <> smColumn then begin // TODO: adjust ypos, height in smColumn mode
AdjustStartLineBytePos(AdjustPoint(StartLineBytePos, True));
EndLineBytePos := AdjustPoint(EndLineBytePos, False);
end;
// Todo: Change Lines in smColumn
end
else begin
// Change the Selection, if change was made by owning SynEdit (Caret.Locked)
// (InternalSelection has no Caret)
if (FCaret <> nil) and (FCaret.Locked) then
StartLineBytePos := FCaret.LineBytePos;
end;
end;
procedure TSynEditSelection.SetSelTextPrimitive(PasteMode : TSynSelectionMode;
Value : PChar; AReplace: Boolean = False);
var
BB, BE: TPoint;
procedure DeleteSelection;
var
y, l, r, xb, xe: Integer;
Str: string;
Start, P: PChar;
//LogCaretXY: TPoint;
begin
case ActiveSelectionMode of
smNormal, smLine:
begin
if FLines.Count > 0 then begin
if AReplace and (Value <> nil) then begin
// AReplace = True
while Value^ <> #0 do begin
Start := PChar(Value);
P := GetEOL(Start);
Value := P;
if Value^ = #13 then Inc(Value);
if Value^ = #10 then Inc(Value);
SetString(Str, Start, P - Start);
if BE.y > BB.y then begin
// FLines.EditDelete(BB.x, BB.Y, 1+Length(FLines[BB.y-1]) - BB.x);
//// if Str <> '' then
// FLines.EditInsert(BB.x, BB.Y, Str);
FLines.EditReplace(BB.x, BB.Y, 1+Length(FLines[BB.y-1]) - BB.x, Str);
if (PasteMode = smLine) or (Value > P) then begin
inc(BB.y);
BB.x := 1;
end
else
BB.X := BB.X + length(Str);
end
else begin
// BE will be block-.nd, also used by SynEdit to set caret
if (ActiveSelectionMode = smLine) or (Value > P) then begin
FLines.EditReplace(BB.x, BB.Y, BE.x - BB.x, Str);
FLines.EditLineBreak(BB.x+length(Str), BB.Y);
//FLines.EditDelete(BB.x, BB.Y, BE.x - BB.x);
//FLines.EditLineBreak(BB.x, BB.Y);
//FLines.EditInsert(BB.x, BB.Y, Str);
inc(BE.y);
BE.x := 1;
end
else begin
//FLines.EditDelete(BB.x, BB.Y, BE.x - BB.x);
// if Str <> '' then
//FLines.EditInsert(BB.x, BB.Y, Str);
FLines.EditReplace(BB.x, BB.Y, BE.x - BB.x, Str);
BE.X := BB.X + length(Str);
end;
BB := BE; // end of selection
end;
if (BB.Y = BE.Y) and (BB.X = BE.X) then begin
FInternalCaret.LineBytePos := BB;
exit;
end;
end;
end;
// AReplace = False
if BE.Y > BB.Y + 1 then begin
FLines.EditLinesDelete(BB.Y + 1, BE.Y - BB.Y - 1);
BE.Y := BB.Y + 1;
end;
if BE.Y > BB.Y then begin
l := length(FLines[BB.Y - 1]);
BE.X := BE.X + Max(l, BB.X - 1);
FLines.EditLineJoin(BB.Y, StringOfChar(' ', Max(0, BB.X - (l+1))));
BE.Y := BB.Y;
end;
if BE.X <> BB.X then
FLines.EditDelete(BB.X, BB.Y, BE.X - BB.X);
end;
FInternalCaret.LineBytePos := BB;
end;
smColumn:
begin
// AReplace has no effect
FInternalCaret.LineBytePos := BB;
l := FInternalCaret.CharPos;
FInternalCaret.LineBytePos := BE;
r := FInternalCaret.CharPos;
// swap l, r if needed
if l > r then
SwapInt(l, r);
for y := BB.Y to BE.Y do begin
FInternalCaret.LineCharPos := Point(l, y);
xb := FInternalCaret.BytePos;
FInternalCaret.LineCharPos := Point(r, y);
// xe := Min(FInternalCaret.BytePos, 1 + length(FInternalCaret.LineText));
xe := FInternalCaret.BytePos;
if xe > xb then
FLines.EditDelete(xb, y, xe - xb);
end;
FInternalCaret.LineCharPos := Point(l, BB.Y);
BB := FInternalCaret.LineBytePos;
// Column deletion never removes a line entirely,
// so no (vertical) mark updating is needed here.
end;
end;
end;
procedure InsertText;
function CountLines(p: PChar): integer;
begin
Result := 0;
while p^ <> #0 do begin
if p^ = #13 then
Inc(p);
if p^ = #10 then
Inc(p);
Inc(Result);
p := GetEOL(p);
end;
end;
function InsertNormal: Integer;
var
Str: string;
Start: PChar;
P: PChar;
LogCaretXY: TPoint;
begin
Result := 0;
LogCaretXY := FInternalCaret.LineBytePos;
Start := PChar(Value);
P := GetEOL(Start);
if P^ = #0 then begin
FLines.EditInsert(LogCaretXY.X, LogCaretXY.Y, Value);
FInternalCaret.BytePos := FInternalCaret.BytePos + Length(Value);
end else begin
FLines.EditLineBreak(LogCaretXY.X, LogCaretXY.Y);
if (P <> Start) or (LogCaretXY.X > 1 + length(FLines[ToIdx(LogCaretXY.Y)])) then begin
SetString(Str, Value, P - Start);
FLines.EditInsert(LogCaretXY.X, LogCaretXY.Y, Str);
end
else
Str := '';
Result := CountLines(P);
if Result > 1 then
FLines.EditLinesInsert(LogCaretXY.Y + 1, Result - 1);
while P^ <> #0 do begin
if P^ = #13 then
Inc(P);
if P^ = #10 then
Inc(P);
LogCaretXY.Y := LogCaretXY.Y + 1;
Start := P;
P := GetEOL(Start);
if P <> Start then begin
SetString(Str, Start, P - Start);
FLines.EditInsert(1, LogCaretXY.Y, Str);
end
else
Str := '';
end;
FInternalCaret.LinePos := LogCaretXY.Y;
FInternalCaret.BytePos := 1 + Length(Str);
end;
end;
function InsertColumn: Integer;
var
Str: string;
Start: PChar;
P: PChar;
begin
// Insert string at current position
Result := 0;
Start := PChar(Value);
repeat
P := GetEOL(Start);
if P <> Start then begin
SetLength(Str, P - Start);
Move(Start^, Str[1], P - Start);
FLines.EditInsert(FInternalCaret.BytePos, FInternalCaret.LinePos, Str);
end;
if p^ in [#10,#13] then begin
if (p[1] in [#10,#13]) and (p[1]<>p^) then
inc(p,2)
else
Inc(P);
if FInternalCaret.LinePos = FLines.Count then
FLines.EditLinesInsert(FInternalCaret.LinePos + 1, 1);
// No need to inc result => adding at EOF
FInternalCaret.LinePos := FInternalCaret.LinePos + 1;
end;
Start := P;
until P^ = #0;
FInternalCaret.BytePos:= FInternalCaret.BytePos + Length(Str);
end;
function InsertLine: Integer;
var
Start: PChar;
P: PChar;
Str: string;
begin
Result := 0;
FInternalCaret.CharPos := 1;
// Insert string before current line
Start := PChar(Value);
repeat
P := GetEOL(Start);
if P <> Start then begin
SetLength(Str, P - Start);
Move(Start^, Str[1], P - Start);
end else
Str := '';
if (P^ = #0) then begin // Not a full line?
FLines.EditInsert(1, FInternalCaret.LinePos, Str);
FInternalCaret.BytePos := 1 + Length(Str);
end else begin
FLines.EditLinesInsert(FInternalCaret.LinePos, 1, Str);
FInternalCaret.LinePos := FInternalCaret.LinePos + 1;
Inc(Result);
if P^ = #13 then
Inc(P);
if P^ = #10 then
Inc(P);
Start := P;
end;
until P^ = #0;
end;
begin
if Value = '' then
Exit;
if FLines.Count = 0 then
FLines.Add('');
// Using a TStringList to do this would be easier, but if we're dealing
// with a large block of text, it would be very inefficient. Consider:
// Assign Value parameter to TStringList.Text: that parses through it and
// creates a copy of the string for each line it finds. That copy is passed
// to the Add method, which in turn creates a copy. Then, when you actually
// use an item in the list, that creates a copy to return to you. That's
// 3 copies of every string vs. our one copy below. I'd prefer no copies,
// but we aren't set up to work with PChars that well.
case PasteMode of
smNormal:
InsertNormal;
smColumn:
InsertColumn;
smLine:
InsertLine;
end;
end;
begin
FOnBeforeSetSelText.CallBeforeSetSelTextHandlers(Self, PasteMode, Value);
FIsSettingText := True;
FStickyAutoExtend := False;
FLines.BeginUpdate; // Todo: can we get here, without paintlock?
try
// BB is lower than BE
BB := FirstLineBytePos;
BE := LastLineBytePos;
FInternalCaret.Invalidate;
if SelAvail then begin
if FActiveSelectionMode = smLine then begin
BB.X := 1;
if BE.Y = FLines.Count then begin
// Keep the (CrLf of) last line, since no Line exists to replace it
BE.x := 1 + length(FLines[BE.Y - 1]);
end else begin
inc(BE.Y);
BE.x := 1;
end;
end;
DeleteSelection;
StartLineBytePos := BB; // deletes selection // calls selection changed
// Need to update caret (syncro edit follows on every edit)
if FCaret <> nil then
FCaret.LineCharPos := FInternalCaret.LineCharPos; // must equal BB
end
else
if FCaret <> nil then
StartLineBytePos := FCaret.LineBytePos;
FInternalCaret.LineBytePos := StartLineBytePos;
if (Value <> nil) and (Value[0] <> #0) then begin
InsertText;
StartLineBytePos := FInternalCaret.LineBytePos; // reset selection
end;
if FCaret <> nil then
FCaret.LineCharPos := FInternalCaret.LineCharPos;
finally
FLines.EndUpdate;
FIsSettingText := False;
end;
end;
function TSynEditSelection.GetStartLineBytePos : TPoint;
begin
Result.y := FStartLinePos;
Result.x := FStartBytePos;
end;
procedure TSynEditSelection.SetEnabled(const Value : Boolean);
begin
if FEnabled = Value then exit;
FEnabled := Value;
if not Enabled then SetStartLineBytePos(StartLineBytePos);
end;
procedure TSynEditSelection.ConstrainStartLineBytePos(var Value: TPoint);
begin
Value.y := MinMax(Value.y, 1, fLines.Count);
if (FCaret = nil) or FCaret.AllowPastEOL then
Value.x := Max(Value.x, 1)
else
Value.x := MinMax(Value.x, 1, length(Lines[Value.y - 1])+1);
if (ActiveSelectionMode = smNormal) then begin
if (Value.y >= 1) and (Value.y <= FLines.Count) then
Value.x := AdjustBytePosToCharacterStart(Value.y,Value.x)
else
Value.x := 1;
end;
end;
procedure TSynEditSelection.SetStartLineBytePos(Value : TPoint);
// logical position (byte)
var
nInval1, nInval2: integer;
WasAvail: boolean;
begin
FStickyAutoExtend := False;
FAltStartLinePos := -1;
FAltStartBytePos := -1;
WasAvail := SelAvail;
ConstrainStartLineBytePos(Value);
if WasAvail then begin
if FStartLinePos < FEndLinePos then begin
nInval1 := Min(Value.Y, FStartLinePos);
nInval2 := Max(Value.Y, FEndLinePos);
end else begin
nInval1 := Min(Value.Y, FEndLinePos);
nInval2 := Max(Value.Y, FStartLinePos);
end;
FInvalidateLinesMethod(nInval1, nInval2);
end;
FActiveSelectionMode := FSelectionMode;
FForceSingleLineSelected := False;
FHide := False;
FStartLinePos := Value.Y;
FStartBytePos := Value.X;
FEndLinePos := Value.Y;
FEndBytePos := Value.X;
if FCaret <> nil then
FLastCarePos := Point(FCaret.OldCharPos, FCaret.OldLinePos);
if WasAvail then
fOnChangeList.CallNotifyEvents(self);
end;
procedure TSynEditSelection.AdjustStartLineBytePos(Value: TPoint);
begin
if FEnabled then begin
ConstrainStartLineBytePos(Value);
if (Value.X <> FStartBytePos) or (Value.Y <> FStartLinePos) then begin
if (ActiveSelectionMode = smColumn) and (Value.X <> FStartBytePos) then
FInvalidateLinesMethod(Min(FStartLinePos, Min(FEndLinePos, Value.Y)),
Max(FStartLinePos, Max(FEndLinePos, Value.Y)))
else
if (ActiveSelectionMode <> smColumn) or (FStartBytePos <> FEndBytePos) then
FInvalidateLinesMethod(FStartLinePos, Value.Y);
FStartLinePos := Value.Y;
FStartBytePos := Value.X;
if FCaret <> nil then
FLastCarePos := Point(FCaret.OldCharPos, FCaret.OldLinePos);
FOnChangeList.CallNotifyEvents(self);
end;
end;
end;
function TSynEditSelection.GetEndLineBytePos : TPoint;
begin
Result.y := FEndLinePos;
Result.x := FEndBytePos;
end;
procedure TSynEditSelection.SetEndLineBytePos(Value : TPoint);
{$IFDEF SYN_MBCSSUPPORT}
var
s: string;
{$ENDIF}
begin
if FEnabled then begin
FStickyAutoExtend := False;
Value.y := MinMax(Value.y, 1, fLines.Count);
// ensure folded block at bottom line is in selection
if (ActiveSelectionMode = smLine) and (FFoldedView <> nil) and
(FAutoExtend or FStickyAutoExtend)
then begin
if ( (FStartLinePos > Value.y) or
( (FStartLinePos = Value.y) and (FStartBytePos > Value.x) )
) and
(not SelAvail)
then
FStartLinePos := TSynEditFoldedView(FFoldedView).TextPosAddLines(FStartLinePos, 1) - 1
else
if (Value.y < fLines.Count) then
Value.y := TSynEditFoldedView(FFoldedView).TextPosAddLines(Value.y, 1) - 1;
end;
if (FCaret = nil) or FCaret.AllowPastEOL then
Value.x := Max(Value.x, 1)
else
Value.x := MinMax(Value.x, 1, length(Lines[Value.y - 1])+1);
if (ActiveSelectionMode = smNormal) then
if (Value.y >= 1) and (Value.y <= fLines.Count) then
Value.x := AdjustBytePosToCharacterStart(Value.y,Value.x)
else
Value.x := 1;
if (Value.X <> FEndBytePos) or (Value.Y <> FEndLinePos) then begin
{$IFDEF SYN_MBCSSUPPORT}
if Value.Y <= fLines.Count then begin
s := fLines[Value.Y - 1];
if (Length(s) >= Value.X) and (mbTrailByte = ByteType(s, Value.X)) then
Dec(Value.X);
end;
{$ENDIF}
if (Value.X <> FEndBytePos) or (Value.Y <> FEndLinePos) then begin
if (ActiveSelectionMode = smColumn) and (Value.X <> FEndBytePos) then
FInvalidateLinesMethod(Min(FStartLinePos, Min(FEndLinePos, Value.Y)),
Max(FStartLinePos, Max(FEndLinePos, Value.Y)))
else
if (ActiveSelectionMode <> smColumn) or (FStartBytePos <> FEndBytePos) then
FInvalidateLinesMethod(FEndLinePos, Value.Y);
FEndLinePos := Value.Y;
FEndBytePos := Value.X;
if FCaret <> nil then
FLastCarePos := Point(FCaret.OldCharPos, FCaret.OldLinePos);
FOnChangeList.CallNotifyEvents(self);
end;
end;
end;
end;
procedure TSynEditSelection.SetSelectionMode(const AValue: TSynSelectionMode);
begin
FSelectionMode := AValue;
SetActiveSelectionMode(AValue);
fOnChangeList.CallNotifyEvents(self);
end;
procedure TSynEditSelection.SetActiveSelectionMode(const Value: TSynSelectionMode);
begin
FStickyAutoExtend := False;
if FActiveSelectionMode <> Value then begin
FActiveSelectionMode := Value;
if SelAvail then
FInvalidateLinesMethod(-1, -1);
FOnChangeList.CallNotifyEvents(self);
end;
end;
procedure TSynEditSelection.SetForceSingleLineSelected(AValue: Boolean);
var
WasAvail: Boolean;
begin
if FForceSingleLineSelected = AValue then Exit;
WasAvail := SelAvail;
FForceSingleLineSelected := AValue;
if WasAvail <> SelAvail then begin
// ensure folded block at bottom line is in selection
// only when selection is new (WasAvail = False)
if SelAvail and (FAutoExtend or FStickyAutoExtend) then begin
if IsBackwardSel then
FStartLinePos := TSynEditFoldedView(FFoldedView).TextPosAddLines(FStartLinePos, 1) - 1
else
FEndLinePos := TSynEditFoldedView(FFoldedView).TextPosAddLines(FEndLinePos, 1) - 1;
end;
FInvalidateLinesMethod(Min(FStartLinePos, FEndLinePos),
Max(FStartLinePos, FEndLinePos) );
fOnChangeList.CallNotifyEvents(self);
end;
end;
procedure TSynEditSelection.SetHide(const AValue: Boolean);
begin
if FHide = AValue then exit;
FHide := AValue;
FInvalidateLinesMethod(Min(FStartLinePos, FEndLinePos),
Max(FStartLinePos, FEndLinePos) );
FOnChangeList.CallNotifyEvents(self);
end;
procedure TSynEditSelection.SetPersistent(const AValue: Boolean);
begin
if FPersistent = AValue then exit;
FPersistent := AValue;
if (not FPersistent) and (FCaret <> nil) and
not ( FCaret.IsAtLineByte(StartLineBytePos) or
FCaret.IsAtLineByte(EndLineBytePos) )
then
Clear;
end;
// Only needed if the Selection is set from External
function TSynEditSelection.AdjustBytePosToCharacterStart(Line : integer; BytePos : integer) : integer;
begin
Result := BytePos;
if Result < 1 then
Result := 1
else if (Line >= 1) and (Line <= FLines.Count) then begin
Result := FLines.LogicPosAdjustToChar(FLines[Line-1], Result, False);
end;
if Result <> BytePos then debugln(['Selection needed byte adjustment Line=', Line, ' BytePos=', BytePos, ' Result=', Result]);
end;
function TSynEditSelection.GetFirstLineBytePos: TPoint;
begin
if IsBackwardSel then
Result := EndLineBytePos
else
Result := StartLineBytePos;
end;
function TSynEditSelection.GetLastLineBytePos: TPoint;
begin
if IsBackwardSel then
Result := StartLineBytePos
else
Result := EndLineBytePos;
end;
function TSynEditSelection.GetLastLineHasSelection: Boolean;
begin
Result := (LastLineBytePos.x > 1) or ((FActiveSelectionMode = smLine) and FForceSingleLineSelected);
end;
procedure TSynEditSelection.SetAutoExtend(AValue: Boolean);
begin
if FAutoExtend = AValue then Exit;
FAutoExtend := AValue;
end;
procedure TSynEditSelection.SetCaret(const AValue: TSynEditCaret);
begin
if FCaret = AValue then exit;
if FCaret <> nil then
Caret.RemoveChangeHandler(@DoCaretChanged);
FCaret := AValue;
if FCaret <> nil then
Caret.AddChangeHandler(@DoCaretChanged);
end;
function TSynEditSelection.SelAvail : Boolean;
begin
if FHide then exit(False);
if (FActiveSelectionMode = smColumn) then begin
Result := (FStartBytePos <> FEndBytePos) and (FStartLinePos = FEndLinePos);
if (not Result) and (FStartLinePos <> FEndLinePos) then begin
// Todo: Cache values, but we need notification, if ines are modified (even only by change of tabwidth...)
Result := Lines.LogicalToPhysicalPos(StartLineBytePos).X <>
Lines.LogicalToPhysicalPos(EndLineBytePos).X;
end;
end
else
Result := (FStartBytePos <> FEndBytePos) or (FStartLinePos <> FEndLinePos)
or ( (FActiveSelectionMode = smLine) and FForceSingleLineSelected);
end;
function TSynEditSelection.SelCanContinue(ACaret: TSynEditCaret): Boolean;
begin
if SelAvail then exit(True);
Result := (not FHide) and
(FActiveSelectionMode = smColumn) and (FEndLinePos = ACaret.LinePos) and
(FEndBytePos = ACaret.BytePos);
end;
function TSynEditSelection.IsBackwardSel: Boolean;
begin
Result := (FStartLinePos > FEndLinePos)
or ((FStartLinePos = FEndLinePos) and (FStartBytePos > FEndBytePos));
end;
procedure TSynEditSelection.BeginMinimumSelection;
begin
if SelAvail then begin
FAltStartLinePos := FEndLinePos;
FAltStartBytePos := FEndBytePos;
end
else begin
FAltStartLinePos := -1;
FAltStartBytePos := -1;
end;
end;
procedure TSynEditSelection.SortSelectionPoints;
begin
if IsBackwardSel then begin
SwapInt(FStartLinePos, FEndLinePos);
SwapInt(FStartBytePos, FEndBytePos);
end;
end;
procedure TSynEditSelection.IgnoreNextCaretMove;
begin
FIgnoreNextCaretMove := True;
end;
procedure TSynEditSelection.IncPersistentLock(AMode: TSynBlockPersistMode);
begin
inc(FPersistentLock);
if (sbpWeak = AMode) and (FWeakPersistentIdx = 0) then
FWeakPersistentIdx := FPersistentLock;
if (sbpStrong = AMode) and (FStrongPersistentIdx = 0) then
FStrongPersistentIdx := FPersistentLock;
end;
procedure TSynEditSelection.DecPersistentLock;
begin
dec(FPersistentLock);
if FWeakPersistentIdx > FPersistentLock then
FWeakPersistentIdx := 0;
if FStrongPersistentIdx > FPersistentLock then
FStrongPersistentIdx := 0;
if (FPersistentLock = 0) and (FCaret <> nil) and FCaret.Locked then
FLastCarePos := Point(FCaret.OldCharPos, FCaret.OldLinePos);
end;
procedure TSynEditSelection.Clear;
begin
if Caret <> nil then
StartLineBytePos := Caret.LineBytePos
else
StartLineBytePos := StartLineBytePos;
end;
procedure TSynEditSelection.AddBeforeSetSelTextHandler(AHandler: TSynBeforeSetSelTextEvent);
begin
FOnBeforeSetSelText.Add(TMethod(AHandler));
end;
procedure TSynEditSelection.RemoveBeforeSetSelTextHandler(AHandler: TSynBeforeSetSelTextEvent);
begin
FOnBeforeSetSelText.Remove(TMethod(AHandler));
end;
{ TSynEditScreenCaretTimer }
procedure TSynEditScreenCaretTimer.DoAfterPaint(Data: PtrInt);
begin
FAfterPaintList.CallNotifyEvents(Self);
while FAfterPaintList.Count > 0 do
FAfterPaintList.Delete(FAfterPaintList.Count - 1);
end;
function TSynEditScreenCaretTimer.GetInterval: Integer;
begin
Result := FTimer.Interval;
end;
procedure TSynEditScreenCaretTimer.SetInterval(AValue: Integer);
begin
if AValue = FTimer.Interval then
exit;
if (AValue = 0) then begin
FTimer.Enabled := False;
FDisplayCycle := True;
FTimer.Interval := 0;
end
else begin
FTimer.Interval := AValue;
FTimer.Enabled := FTimerEnabled;
end;
if FTimerEnabled then
RestartCycle;
end;
procedure TSynEditScreenCaretTimer.DoTimer(Sender: TObject);
begin
if FLocCount > 0 then begin
include(FLocFlags, lfTimer);
exit;
end;
FDisplayCycle := not FDisplayCycle;
FTimerList.CallNotifyEvents(Self);
end;
constructor TSynEditScreenCaretTimer.Create;
begin
FTimerList := TMethodList.Create;
FAfterPaintList := TMethodList.Create;
FTimer := TTimer.Create(nil);
FTimer.Enabled := False;
FTimerEnabled := False;
ResetInterval;
FTimer.OnTimer := @DoTimer;
end;
destructor TSynEditScreenCaretTimer.Destroy;
begin
Application.RemoveAsyncCalls(Self);
FreeAndNil(FTimer);
FreeAndNil(FTimerList);
FreeAndNil(FAfterPaintList);
inherited Destroy;
end;
procedure TSynEditScreenCaretTimer.AddAfterPaintHandler(AHandler: TNotifyEvent);
begin
if FAfterPaintList.Count = 0 then
Application.QueueAsyncCall(@DoAfterPaint, 0);
FAfterPaintList.Add(TMethod(AHandler));
end;
procedure TSynEditScreenCaretTimer.AddHandler(AHandler: TNotifyEvent);
begin
FTimerList.Add(TMethod(AHandler));
if not FTimer.Enabled then
RestartCycle;
end;
procedure TSynEditScreenCaretTimer.RemoveHandler(AHandler: TNotifyEvent);
begin
FTimerList.Remove(TMethod(AHandler));
if FTimerList.Count = 0 then begin
FTimer.Enabled := False;
FTimerEnabled := False;
end;
end;
procedure TSynEditScreenCaretTimer.RemoveHandler(AHandlerOwner: TObject);
begin
FTimerList.RemoveAllMethodsOfObject(AHandlerOwner);
FAfterPaintList.RemoveAllMethodsOfObject(AHandlerOwner);
if FTimerList.Count = 0 then begin
FTimer.Enabled := False;
FTimerEnabled := False;
end;
end;
procedure TSynEditScreenCaretTimer.IncLock;
begin
inc(FLocCount);
end;
procedure TSynEditScreenCaretTimer.DecLock;
begin
if FLocCount > 0 then
dec(FLocCount);
if FLocCount > 0 then
exit;
if lfRestart in FLocFlags then
RestartCycle
else;
if lfTimer in FLocFlags then
DoTimer(nil);
FLocFlags := [];
end;
procedure TSynEditScreenCaretTimer.AfterPaintEvent;
begin
Application.RemoveAsyncCalls(Self);
DoAfterPaint(0);
end;
procedure TSynEditScreenCaretTimer.ResetInterval;
{$IFDEF windows}
var
i: windows.UINT;
{$ENDIF}
begin
{$IFDEF windows}
i := GetCaretBlinkTime;
if (i = high(i)) then i := 0;
Interval := i;
{$ELSE}
Interval := 500;
{$ENDIF}
end;
procedure TSynEditScreenCaretTimer.RestartCycle;
begin
if FLocCount > 0 then begin
include(FLocFlags, lfRestart);
exit;
end;
if FTimer.Interval = 0 then begin
FTimerList.CallNotifyEvents(Self);
exit;
end;
if FTimerList.Count = 0 then exit;
FTimer.Enabled := False;
FTimerEnabled := False;
FDisplayCycle := False;
DoTimer(nil);
FTimer.Enabled := True;
FTimerEnabled := True;
end;
{ TSynEditScreenCaretPainter }
function TSynEditScreenCaretPainter.GetHandle: HWND;
begin
Result := FHandleOwner.Handle;
end;
function TSynEditScreenCaretPainter.GetHandleAllocated: Boolean;
begin
Result := FHandleOwner.HandleAllocated;
end;
procedure TSynEditScreenCaretPainter.Init;
begin
//
end;
constructor TSynEditScreenCaretPainter.Create(AHandleOwner: TWinControl;
AOwner: TSynEditScreenCaret);
begin
FLeft := -1;
FTop := -1;
inherited Create;
FHandleOwner := AHandleOwner;
FOwner := AOwner;
Init;
end;
function TSynEditScreenCaretPainter.CreateCaret(w, h: Integer): Boolean;
begin
FLeft := -1;
FTop := -1;
FWidth := w;
FHeight := h;
FCreated := True;
FShowing := False;
Result := True;
end;
function TSynEditScreenCaretPainter.DestroyCaret: Boolean;
begin
FCreated := False;
FShowing := False;
Result := True;
end;
function TSynEditScreenCaretPainter.HideCaret: Boolean;
begin
FShowing := False;
Result := True;
end;
function TSynEditScreenCaretPainter.ShowCaret: Boolean;
begin
FShowing := True;
Result := True;
end;
function TSynEditScreenCaretPainter.SetCaretPosEx(x, y: Integer): Boolean;
begin
FLeft := x;
FTop := y;
FNeedPositionConfirmed := False;
Result := True;
end;
procedure TSynEditScreenCaretPainter.BeginScroll(dx, dy: Integer; const rcScroll,
rcClip: TRect);
begin
FInScroll := True;
FScrollX := dx;
FScrollY := dy;
FScrollRect := rcScroll;
FScrollClip := rcClip;
end;
procedure TSynEditScreenCaretPainter.FinishScroll(dx, dy: Integer; const rcScroll,
rcClip: TRect; Success: Boolean);
begin
FInScroll := False;
end;
procedure TSynEditScreenCaretPainter.BeginPaint(rcClip: TRect);
begin
FInPaint := True;
FPaintClip := rcClip;
end;
procedure TSynEditScreenCaretPainter.FinishPaint(rcClip: TRect);
begin
FInPaint := False;
end;
{ TSynEditScreenCaretPainterSystem }
procedure TSynEditScreenCaretPainterSystem.FinishScroll(dx, dy: Integer; const rcScroll,
rcClip: TRect; Success: Boolean);
begin
inherited FinishScroll(dx, dy, rcScroll, rcClip, Success);
if Success then
inherited SetCaretPosEx(-1, -1);
FNeedPositionConfirmed := True;
end;
procedure TSynEditScreenCaretPainterSystem.BeginPaint(rcClip: TRect);
begin
inherited BeginPaint(rcClip);
if Showing then
if not HideCaret then
DestroyCaret; // only if was Showing
end;
function TSynEditScreenCaretPainterSystem.CreateCaret(w, h: Integer): Boolean;
begin
// do not create caret during paint / Issue 0021924
Result := HandleAllocated and not InPaint;
if not Result then
exit;
inherited CreateCaret(w, h);
inherited SetCaretPosEx(-1, -1);
Result := LCLIntf.CreateCaret(Handle, 0, w, h);
SetCaretRespondToFocus(Handle, False); // Only for GTK
if not Result then inherited DestroyCaret;
end;
function TSynEditScreenCaretPainterSystem.DestroyCaret: Boolean;
begin
Result := inherited DestroyCaret;
if HandleAllocated then
Result := LCLIntf.DestroyCaret(Handle);
end;
function TSynEditScreenCaretPainterSystem.HideCaret: Boolean;
begin
inherited HideCaret;
if HandleAllocated then
Result := LCLIntf.HideCaret(Handle)
else
Result := False;
end;
function TSynEditScreenCaretPainterSystem.ShowCaret: Boolean;
begin
Result := HandleAllocated;
if not Result then
exit;
inherited ShowCaret;
Result := LCLIntf.ShowCaret(Handle);
end;
function TSynEditScreenCaretPainterSystem.SetCaretPosEx(x, y: Integer): Boolean;
begin
Result := HandleAllocated;
if not Result then
exit;
inherited SetCaretPosEx(x, y);
Result := LCLIntf.SetCaretPosEx(Handle, x, y);
end;
{ TSynEditScreenCaretPainterInternal }
procedure TSynEditScreenCaretPainterInternal.DoTimer(Sender: TObject);
begin
assert(not((not Showing) and FIsDrawn), 'TSynEditScreenCaretPainterInternal.DoTimer: not((not Showing) and FIsDrawn)');
if (FState <> []) then
ExecAfterPaint;
if (not Showing) or NeedPositionConfirmed then exit;
if FIsDrawn <> FOwner.PaintTimer.DisplayCycle then
Paint;
end;
procedure TSynEditScreenCaretPainterInternal.DoPaint(ACanvas: TCanvas; X, Y, H, W: Integer);
var
l: Integer;
am: TAntialiasingMode;
begin
if ForcePaintEvents and (not FInPaint) then begin
Invalidate;
exit;
end;
am := ACanvas.AntialiasingMode;
FSavePen.Assign(ACanvas.Pen);
l := X + W div 2;
ACanvas.MoveTo(l, Y);
ACanvas.Pen.Mode := pmNotXOR;
ACanvas.Pen.Style := psSolid;
ACanvas.Pen.Color := FColor;
ACanvas.AntialiasingMode := amOff;
ACanvas.pen.EndCap := pecFlat;
ACanvas.pen.Width := Width;
ACanvas.LineTo(l, Y+H);
ACanvas.Pen.Assign(FSavePen);
ACanvas.AntialiasingMode := am;
end;
procedure TSynEditScreenCaretPainterInternal.Paint;
begin
if not HandleAllocated then begin
FIsDrawn := False;
exit;
end;
if FInPaint or FInScroll then begin
if FCanPaint then
FIsDrawn := not FIsDrawn; //change the state, that is applied at the end of paint
exit;
end;
if (FState <> []) then
ExecAfterPaint;
FIsDrawn := not FIsDrawn;
DoPaint(CurrentCanvas, FLeft, FTop, FHeight, FWidth);
end;
procedure TSynEditScreenCaretPainterInternal.Invalidate;
var
r: TRect;
begin
r.Left := Left;
r.Top := Top;
r.Right := Left+Width+1;
r.Bottom := Top+Height+1;
InvalidateRect(Handle, @r, False);
end;
procedure TSynEditScreenCaretPainterInternal.AddAfterPaint(AStates: TPainterStates);
begin
if not(psAfterPaintAdded in FState) then
FOwner.PaintTimer.AddAfterPaintHandler(@DoAfterPaint);
FState := FState + [psAfterPaintAdded] + AStates;
end;
procedure TSynEditScreenCaretPainterInternal.DoAfterPaint(Sender: TObject);
begin
Exclude(FState, psAfterPaintAdded);
DoTimer(nil);
end;
procedure TSynEditScreenCaretPainterInternal.ExecAfterPaint;
begin
if FInPaint or FInScroll then
exit;
if (psCleanOld in FState) then begin
DoPaint(CurrentCanvas, FOldX, FOldY, FOldH, FOldW);
Exclude(FState, psCleanOld);
end;
if (psRemoveTimer in FState) and not(FInPaint or FInScroll) then begin
FOwner.PaintTimer.RemoveHandler(@DoTimer);
Exclude(FState, psRemoveTimer);
end;
end;
function TSynEditScreenCaretPainterInternal.CurrentCanvas: TCanvas;
begin
Result := TCustomControl(FHandleOwner).Canvas;
end;
procedure TSynEditScreenCaretPainterInternal.SetColor(AValue: TColor);
var
d: Boolean;
begin
if FColor = AValue then Exit;
d := FIsDrawn;
if FIsDrawn then Paint;
FColor := AValue;
if d then Paint;
end;
function TSynEditScreenCaretPainterInternal.IsInRect(ARect: TRect): TIsInRectState;
begin
Result := IsInRect(ARect, Left, Top, Width, Height);
end;
function TSynEditScreenCaretPainterInternal.IsInRect(ARect: TRect; X, Y, W,
H: Integer): TIsInRectState;
begin
if (Y >= ARect.Bottom) or (X >= ARect.Right) or (Y+H < ARect.Top) or (X+W < ARect.Left)
then
Result := irOutside
else
if (Y >= ARect.Top) and (X >= ARect.Left) and (Y+H < ARect.Bottom) and (X+W < ARect.Right)
then
Result := irInside
else
Result := irPartInside;
end;
procedure TSynEditScreenCaretPainterInternal.Init;
begin
{$IFDEF LCLWin32}
FForcePaintEvents := False;
{$ELSE}
FForcePaintEvents := True;
{$ENDIF}
FSavePen := TPen.Create;
FColor := clBlack;
FOldY := -1;
FCanPaint := True;
inherited Init;
end;
procedure TSynEditScreenCaretPainterInternal.BeginScroll(dx, dy: Integer; const rcScroll,
rcClip: TRect);
{$IFDEF SynCaretNoHideInSroll}
var
rs: TIsInRectState;
{$ENDIF}
begin
assert(not((FInPaint or FInScroll)), 'TSynEditScreenCaretPainterInternal.BeginScroll: not((FInPaint or FInScroll))');
if (FState <> []) then
ExecAfterPaint;
{$IFnDEF SynCaretNoHideInSroll}
if not ((IsInRect(rcClip) = irOutside) and (IsInRect(rcScroll) = irOutside)) then begin
HideCaret;
inherited SetCaretPosEx(-1,-1);
end;
{$ELSE}
rs := IsInRect(rcScroll);
if not( ((IsInRect(rcClip) = irOutside) and (rs = irOutside)) or
((IsInRect(rcClip, Left+dx, Top+dy, Width, Height) = irInside) and (rs = irInside))
)
then begin
HideCaret;
inherited SetCaretPosEx(-1,-1);
end;
{$ENDIF}
FCanPaint := False;
inherited BeginScroll(dx, dy, rcScroll, rcClip);
end;
procedure TSynEditScreenCaretPainterInternal.FinishScroll(dx, dy: Integer; const rcScroll,
rcClip: TRect; Success: Boolean);
begin
assert(FInScroll, 'TSynEditScreenCaretPainterInternal.FinishScroll: FInScroll');
assert((FState-[psAfterPaintAdded]) = [], 'TSynEditScreenCaretPainterInternal.FinishScroll: FState = []');
inherited FinishScroll(dx, dy, rcScroll, rcClip, Success);
FCanPaint := True;
{$IFDEF SynCaretNoHideInSroll}
if Success and ((IsInRect(rcClip) = irInside) or (IsInRect(rcScroll) = irInside)) then begin
inherited SetCaretPosEx(Left+dx, Top+dy);
FNeedPositionConfirmed := True;
end;
{$ENDIF}
end;
procedure TSynEditScreenCaretPainterInternal.BeginPaint(rcClip: TRect);
begin
assert(not (FInPaint or FInScroll), 'TSynEditScreenCaretPainterInternal.BeginPaint: not (FInPaint or FInScroll)');
FCanPaint := IsInRect(rcClip)= irInside;
if (psCleanOld in FState) and not FCanPaint then begin
if IsInRect(rcClip, FOldX, FOldY, FOldW, FOldH) <> irInside then begin
debugln(['TSynEditScreenCaretPainterInternal.BeginPaint Invalidate for psCleanOld']);
Invalidate;
end;
Exclude(FState, psCleanOld);
end;
if not(psCleanOld in FState) then begin
FOldX := Left;
FOldY := Top;
FOldW := Width;
FOldH := Height;
end;
inherited BeginPaint(rcClip);
end;
procedure TSynEditScreenCaretPainterInternal.FinishPaint(rcClip: TRect);
begin
assert(FInPaint, 'TSynEditScreenCaretPainterInternal.FinishPaint: FInPaint');
assert(FCanPaint = (IsInRect(rcClip)= irInside), 'TSynEditScreenCaretPainterInternal.FinishPaint: FCanPaint = (IsInRect(rcClip)= irInside)');
assert(FCanPaint = (IsInRect(FPaintClip)= irInside), 'TSynEditScreenCaretPainterInternal.FinishPaint: FCanPaint = (IsInRect(rcClip)= irInside)');
// partly restore IF irPartInside;
// Better recalc size to remainder outside cliprect
if (psCleanOld in FState) and (not ForcePaintEvents) then
DoPaint(CurrentCanvas, FOldX, FOldY, FOldH, FOldW);
// if changes where made, then FIsDrawn is alvays false
if FIsDrawn then
DoPaint(CurrentCanvas, FLeft, FTop, FHeight, FWidth); // restore any part that is in the cliprect
inherited FinishPaint(rcClip);
FCanPaint := True;
end;
destructor TSynEditScreenCaretPainterInternal.Destroy;
begin
assert(not(FInPaint or FInScroll), 'TSynEditScreenCaretPainterInternal.Destroy: not(FInPaint or FInScroll)');
if FOwner.HasPaintTimer then
FOwner.PaintTimer.RemoveHandler(Self);
HideCaret;
FreeAndNil(FSavePen);
inherited Destroy;
end;
function TSynEditScreenCaretPainterInternal.CreateCaret(w, h: Integer): Boolean;
begin
DestroyCaret;
Result := inherited CreateCaret(w, h);
if InPaint then // InScroll ??
FCanPaint := IsInRect(FPaintClip) = irInside;
Result := True;
end;
function TSynEditScreenCaretPainterInternal.DestroyCaret: Boolean;
begin
HideCaret;
inherited DestroyCaret;
Result := True;
end;
function TSynEditScreenCaretPainterInternal.HideCaret: Boolean;
begin
inherited HideCaret;
if (not FCanPaint) and FIsDrawn then begin
AddAfterPaint([psCleanOld, psRemoveTimer]);
FIsDrawn := False;
exit(True);
end;
FOwner.PaintTimer.RemoveHandler(@DoTimer);
if FIsDrawn then Paint;
assert(not FIsDrawn, 'TSynEditScreenCaretPainterInternal.HideCaret: not FIsDrawn');
Result := True;
end;
function TSynEditScreenCaretPainterInternal.ShowCaret: Boolean;
begin
if Showing then exit(True);
inherited ShowCaret;
Exclude(FState, psRemoveTimer);
// Exclude(FState, psCleanOld); // only if not moved
FOwner.PaintTimer.RemoveHandler(@DoTimer);
FOwner.PaintTimer.AddHandler(@DoTimer);
FOwner.PaintTimer.RestartCycle;
Result := True;
end;
function TSynEditScreenCaretPainterInternal.SetCaretPosEx(x, y: Integer): Boolean;
var
d: Boolean;
begin
if (not FCanPaint) and FIsDrawn then begin
AddAfterPaint([psCleanOld]);
FIsDrawn := False;
end;
d := FIsDrawn;
if d then Paint;
inherited SetCaretPosEx(x, y);
if InPaint then // InScroll ??
FCanPaint := IsInRect(FPaintClip) = irInside;
if d then Paint;
// else aftecpaint needs show
FOwner.PaintTimer.RestartCycle; // if not d ??
Result := True;
end;
{ TSynEditScreenCaret }
constructor TSynEditScreenCaret.Create(AHandleOwner: TWinControl);
begin
Create(AHandleOwner, TSynEditScreenCaretPainterSystem);
//Create(AHandleOwner, TSynEditScreenCaretPainterInternal);
end;
constructor TSynEditScreenCaret.Create(AHandleOwner: TWinControl;
APainterClass: TSynEditScreenCaretPainterClass);
begin
inherited Create;
FCaretPainter := APainterClass.Create(AHandleOwner, Self);
FLockCount := -1;
ResetCaretTypeSizes;
FHandleOwner := AHandleOwner;
FVisible := False;
FClipExtraPixel := 0;
FLockCount := 0;
end;
procedure TSynEditScreenCaret.ChangePainter(APainterClass: TSynEditScreenCaretPainterClass);
begin
DestroyCaret(True);
FreeAndNil(FCaretPainter);
FCaretPainter := APainterClass.Create(FHandleOwner, Self);
UpdateDisplay;
end;
destructor TSynEditScreenCaret.Destroy;
begin
DestroyCaret;
FreeAndNil(FCaretPainter);
if FPaintTimerOwned then
FreeAndNil(FPaintTimer);
inherited Destroy;
end;
procedure TSynEditScreenCaret.BeginScroll(dx, dy: Integer; const rcScroll, rcClip: TRect);
begin
Painter.BeginScroll(dx, dy, rcScroll, rcClip);
end;
procedure TSynEditScreenCaret.FinishScroll(dx, dy: Integer; const rcScroll, rcClip: TRect;
Success: Boolean);
begin
Painter.FinishScroll(dx, dy, rcScroll, rcClip, Success);
end;
procedure TSynEditScreenCaret.BeginPaint(rcClip: TRect);
begin
Painter.BeginPaint(rcClip);
end;
procedure TSynEditScreenCaret.FinishPaint(rcClip: TRect);
begin
Painter.FinishPaint(rcClip);
end;
procedure TSynEditScreenCaret.Hide;
begin
HideCaret;
end;
procedure TSynEditScreenCaret.DestroyCaret(SkipHide: boolean = False);
begin
if Painter.Created then begin
{$IFDeF SynCaretDebug}
debugln(['SynEditCaret DestroyCaret for HandleOwner=',FHandleOwner, ' DebugShowCount=', FDebugShowCount, ' FVisible=', FVisible, ' FCurrentVisible=', Painter.Showing]);
{$ENDIF}
FCaretPainter.DestroyCaret;
end;
if not SkipHide then
FVisible := False;
end;
procedure TSynEditScreenCaret.Lock;
begin
inc(FLockCount);
if FPaintTimer <> nil then
FPaintTimer.IncLock;
end;
procedure TSynEditScreenCaret.UnLock;
begin
dec(FLockCount);
if (FLockCount=0) then begin
if (sclfUpdateDisplayType in FLockFlags) then UpdateDisplayType;
if (sclfUpdateDisplay in FLockFlags) then UpdateDisplay;
end;
if FPaintTimer <> nil then
FPaintTimer.DecLock;
end;
procedure TSynEditScreenCaret.AfterPaintEvent;
begin
if FPaintTimer <> nil then
FPaintTimer.AfterPaintEvent;
end;
procedure TSynEditScreenCaret.ResetCaretTypeSizes;
var
i: TSynCaretType;
begin
for i := low(TSynCaretType) to high(TSynCaretType) do begin
FCustomPixelWidth[i] := 0;
end;
if FLockCount >= 0 then UpdateDisplayType;
end;
procedure TSynEditScreenCaret.SetCaretTypeSize(AType: TSynCaretType; AWidth, AHeight, AXOffs,
AYOffs: Integer; AFlags: TSynCustomCaretSizeFlags);
begin
FCustomPixelWidth[AType] := AWidth;
FCustomPixelHeight[AType] := AHeight;
FCustomOffsetX[AType] := AXOffs;
FCustomOffsetY[AType] := AYOffs;
FCustomFlags[AType] := AFlags;
if FDisplayType = AType then UpdateDisplayType;
end;
procedure TSynEditScreenCaret.SetClipRight(const AValue: Integer);
begin
if FClipRight = AValue then exit;
FClipRight := AValue;
UpdateDisplay;
end;
procedure TSynEditScreenCaret.SetCharHeight(const AValue: Integer);
begin
if FCharHeight = AValue then exit;
FCharHeight := AValue;
UpdateDisplayType;
end;
function TSynEditScreenCaret.GetHandle: HWND;
begin
Result :=FHandleOwner.Handle;
end;
function TSynEditScreenCaret.GetHandleAllocated: Boolean;
begin
Result :=FHandleOwner.HandleAllocated;
end;
procedure TSynEditScreenCaret.SetCharWidth(const AValue: Integer);
begin
if FCharWidth = AValue then exit;
FCharWidth := AValue;
UpdateDisplayType;
end;
procedure TSynEditScreenCaret.SetDisplayPos(const AValue: TPoint);
begin
if (FDisplayPos.x = AValue.x) and (FDisplayPos.y = AValue.y) and
(FVisible = Painter.Showing) and (not Painter.NeedPositionConfirmed)
then
exit;
FDisplayPos := AValue;
UpdateDisplay;
end;
procedure TSynEditScreenCaret.SetDisplayType(const AType: TSynCaretType);
begin
if FDisplayType = AType then exit;
FDisplayType := AType;
UpdateDisplayType;
end;
procedure TSynEditScreenCaret.SetVisible(const AValue: Boolean);
begin
if FVisible = AValue then exit;
FVisible := AValue;
UpdateDisplay;
end;
procedure TSynEditScreenCaret.UpdateDisplayType;
begin
if FLockCount > 0 then begin
Include(FLockFlags, sclfUpdateDisplayType);
exit;
end;
Exclude(FLockFlags, sclfUpdateDisplayType);
case FDisplayType of
ctVerticalLine, ctCostum:
begin
FPixelWidth := 2;
FPixelHeight := FCharHeight - 2;
FOffsetX := -1;
FOffsetY := 1;
FExtraLinePixel := 1;
end;
ctBlock:
begin
FPixelWidth := FCharWidth;
FPixelHeight := FCharHeight - 2;
FOffsetX := 0;
FOffsetY := 1;
FExtraLinePixel := FCharWidth;
end;
ctHalfBlock:
begin
FPixelWidth := FCharWidth;
FPixelHeight := (FCharHeight - 2) div 2;
FOffsetX := 0;
FOffsetY := FPixelHeight + 1;
FExtraLinePixel := FCharWidth;
end;
ctHorizontalLine:
begin
FPixelWidth := FCharWidth;
FPixelHeight := 2;
FOffsetX := 0;
FOffsetY := FCharHeight - 1;
FExtraLinePixel := FCharWidth;
end;
end;
if (FCustomPixelWidth[FDisplayType] <> 0) then begin
if ccsRelativeWidth in FCustomFlags[FDisplayType]
then FPixelWidth := FCharWidth * FCustomPixelWidth[FDisplayType] div 1024
else FPixelWidth := FCustomPixelWidth[FDisplayType];
if ccsRelativeLeft in FCustomFlags[FDisplayType]
then FOffsetX := FCharWidth * FCustomOffsetX[FDisplayType] div 1024
else FOffsetX := FCustomOffsetX[FDisplayType];
FExtraLinePixel := Max(0, FPixelWidth + FOffsetX);
end;
if (FCustomPixelHeight[FDisplayType] <> 0) then begin
if ccsRelativeHeight in FCustomFlags[FDisplayType]
then FPixelHeight := FCharHeight * FCustomPixelHeight[FDisplayType] div 1024
else FPixelHeight := FCustomPixelHeight[FDisplayType];
if ccsRelativeTop in FCustomFlags[FDisplayType]
then FOffsetY := FCharHeight * FCustomOffsetY[FDisplayType] div 1024
else FOffsetY := FCustomOffsetY[FDisplayType];
end;
CalcExtraLineChars;
DestroyCaret(True);
UpdateDisplay;
end;
procedure TSynEditScreenCaret.SetClipBottom(const AValue: Integer);
begin
if FClipBottom = AValue then exit;
FClipBottom := AValue;
UpdateDisplay;
end;
function TSynEditScreenCaret.GetPaintTimer: TSynEditScreenCaretTimer;
begin
if FPaintTimer = nil then begin
FPaintTimer := TSynEditScreenCaretTimer.Create;
FPaintTimerOwned := True;
FPaintTimer.FLocCount := FLockCount;
end;
Result := FPaintTimer;
end;
function TSynEditScreenCaret.GetHasPaintTimer: Boolean;
begin
Result := FPaintTimer <> nil;
end;
procedure TSynEditScreenCaret.SetClipExtraPixel(AValue: Integer);
begin
if FClipExtraPixel = AValue then Exit;
{$IFDeF SynCaretDebug}
debugln(['SynEditCaret ClipRect for HandleOwner=',FHandleOwner, ' ExtraPixel=', dbgs(AValue)]);
debugln(['TSynEditScreenCaret.SetClipExtraPixel ',FHandleOwner,' Focus=',FindControl(GetFocus)]);
{$ENDIF}
FClipExtraPixel := AValue;
CalcExtraLineChars;
UpdateDisplay;
end;
procedure TSynEditScreenCaret.SetClipLeft(const AValue: Integer);
begin
if FClipLeft = AValue then exit;
FClipLeft := AValue;
UpdateDisplay;
end;
procedure TSynEditScreenCaret.SetClipRect(const AValue: TRect);
begin
if (FClipLeft = AValue.Left) and (FClipRight = AValue.Right) and
(FClipTop = AValue.Top) and (FClipBottom = AValue.Bottom)
then
exit;
{$IFDeF SynCaretDebug}
debugln(['SynEditCaret ClipRect for HandleOwner=',FHandleOwner, ' Rect=', dbgs(AValue)]);
{$ENDIF}
FClipLeft := AValue.Left;
FClipRight := AValue.Right;
FClipTop := AValue.Top;
FClipBottom := AValue.Bottom;
UpdateDisplay;
end;
procedure TSynEditScreenCaret.SetClipTop(const AValue: Integer);
begin
if FClipTop = AValue then exit;
FClipTop := AValue;
UpdateDisplay;
end;
procedure TSynEditScreenCaret.CalcExtraLineChars;
var
OldExtraChars: Integer;
begin
if FCharWidth = 0 then exit;
OldExtraChars := FExtraLineChars;
FExtraLineChars := Max(0, FExtraLinePixel - FClipExtraPixel + FCharWidth - 1)
div FCharWidth;
if (FExtraLineChars <> OldExtraChars) and assigned(FOnExtraLineCharsChanged) then
FOnExtraLineCharsChanged(Self);
end;
procedure TSynEditScreenCaret.SetPaintTimer(AValue: TSynEditScreenCaretTimer);
begin
assert(FPaintTimer = nil, 'TSynEditScreenCaret.SetPaintTimer: FPaintTimer = nil');
if FPaintTimer = nil then
FPaintTimer := AValue;
end;
procedure TSynEditScreenCaret.UpdateDisplay;
begin
if FLockCount > 0 then begin
Include(FLockFlags, sclfUpdateDisplay);
exit;
end;
Exclude(FLockFlags, sclfUpdateDisplay);
if FVisible then
ShowCaret
else
HideCaret;
end;
procedure TSynEditScreenCaret.ShowCaret;
var
x, y, w, h: Integer;
begin
if not HandleAllocated then
exit;
x := FDisplayPos.x + FOffsetX;
y := FDisplayPos.y + FOffsetY;
w := FPixelWidth;
h := FPixelHeight;
if x + w >= FClipRight then
w := FClipRight - x - 1;
if x < FClipLeft then begin
w := w - (FClipLeft - w);
x := FClipLeft;
end;
if y + h >= FClipBottom then
h := FClipBottom - y - 1;
if y < FClipTop then begin
h := h - (FClipTop - y);
y := FClipTop;
end;
if (w <= 0) or (h < 0) or
(x < FClipLeft) or (x >= FClipRight) or
(y < FClipTop) or (y >= FClipBottom)
then begin
HideCaret;
exit;
end;
if (not Painter.Created) or (FCaretPainter.Width <> w) or (FCaretPainter.Height <> h) then begin
{$IFDeF SynCaretDebug}
debugln(['SynEditCaret CreateCaret for HandleOwner=',FHandleOwner, ' DebugShowCount=', FDebugShowCount, ' Width=', w, ' pref-width=', FPixelWidth, ' Height=', FPixelHeight, ' FCurrentCreated=',Painter.Created, ' FCurrentVisible=',Painter.Showing]);
FDebugShowCount := 0;
{$ENDIF}
// // Create caret includes destroy
FCaretPainter.CreateCaret(w, h);
end;
if (x <> Painter.Left) or (y <> Painter.Top) or (Painter.NeedPositionConfirmed) then begin
{$IFDeF SynCaretDebug}
debugln(['SynEditCaret SetPos for HandleOwner=',FHandleOwner, ' x=', x, ' y=',y]);
{$ENDIF}
FCaretPainter.SetCaretPosEx(x, y);
end;
if (not Painter.Showing) then begin
{$IFDeF SynCaretDebug}
debugln(['SynEditCaret ShowCaret for HandleOwner=',FHandleOwner, ' FDebugShowCount=',FDebugShowCount, ' FVisible=', FVisible, ' FCurrentVisible=', Painter.Showing]);
inc(FDebugShowCount);
{$ENDIF}
if not FCaretPainter.ShowCaret then begin
{$IFDeF SynCaretDebug}
debugln(['SynEditCaret ShowCaret FAILED for HandleOwner=',FHandleOwner, ' FDebugShowCount=',FDebugShowCount]);
{$ENDIF}
DestroyCaret(True);
end;
end;
end;
procedure TSynEditScreenCaret.HideCaret;
begin
if not HandleAllocated then
exit;
if not Painter.Created then exit;
if Painter.Showing then begin
{$IFDeF SynCaretDebug}
debugln(['SynEditCaret HideCaret for HandleOwner=',FHandleOwner, ' FDebugShowCount=',FDebugShowCount, ' FVisible=', FVisible, ' FCurrentVisible=', Painter.Showing]);
dec(FDebugShowCount);
{$ENDIF}
if FCaretPainter.HideCaret then
else begin
{$IFDeF SynCaretDebug}
debugln(['SynEditCaret HideCaret FAILED for HandleOwner=',FHandleOwner, ' FDebugShowCount=',FDebugShowCount]);
{$ENDIF}
DestroyCaret(True);
end;
end;
end;
end.
|