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 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816
|
/********************************************************************************
* *
* M u l t i - L i n e T e x t W i d g e t *
* *
*********************************************************************************
* Copyright (C) 1998,2022 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/> *
********************************************************************************/
#include "xincs.h"
#include "fxver.h"
#include "fxdefs.h"
#include "fxmath.h"
#include "fxkeys.h"
#include "fxchar.h"
#include "fxascii.h"
#include "fxunicode.h"
#include "FXColors.h"
#include "FXArray.h"
#include "FXHash.h"
#include "FXMutex.h"
#include "FXStream.h"
#include "FXString.h"
#include "FXElement.h"
#include "FXException.h"
#include "FXRex.h"
#include "FXSize.h"
#include "FXPoint.h"
#include "FXRectangle.h"
#include "FXObject.h"
#include "FXStringDictionary.h"
#include "FXSettings.h"
#include "FXRegistry.h"
#include "FXAccelTable.h"
#include "FXFont.h"
#include "FXEvent.h"
#include "FXWindow.h"
#include "FXDCWindow.h"
#include "FXApp.h"
#include "FXGIFIcon.h"
#include "FXScrollBar.h"
#include "FXText.h"
#include "FXComposeContext.h"
#include "icons.h"
/*
Notes:
- Generally, assume the following definitions in terms of how things work:
position Character position in the buffer; should avoid pointing to
places other than the start of a UTF8 character.
indent logical character-index (not byte index) from the start of
a line.
line A newline terminated sequence of characters. A line may be wrapped
to multiple rows on the screen.
row Sequence of characters wrapped at the wrap-margin, therefore not
necessarily ending at a newline
column Logical column from start of the line.
- Line start array is one longer than number of visible lines; therefore,
the length of each visible line is just visrows[i+1]-visrows[i].
- Control characters in the buffer are allowed, and are represented as sequences
like '^L'.
- Wrapped lines contain at least 1 character; this is necessary in order to ensure
the text widget has finite number of rows.
- Viewport definition is established with virtual functions; overloadinging them
in subclasses allows for custom items in subclassed FXText widgets.
+------------------------------------------------+<-- 0
| |
+----+--------------------------------------+----+<-- getVisibleY()
| | | |
| | T e x t | |
| | | |
| | | |
+----+--------------------------------------+----+<-- getVisibleHeight()
| |
+------------------------------------------------+<-- height
^ ^ ^ ^
| | | |
0 | | width
getVisibleX() getVisibleWidth()
- Buffer layout:
Content : A B C . . . . . . . . D E F G
Position : 0 1 2 3 4 5 6 length=7
Addresss : 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 buffersize=7+11-3=15
^ ^
| |
gapstart=3 gapend=11 gaplen=11-3=8
The gap is moved around the buffer so newly added text can be entered into the gap;
when the gap becomes too small, the buffer is resized.
This gapped-buffer technique minimizes the number of resizes of the buffer, and
minimizes the number of block moves.
The tail end of the visrows array will look like:
visrow[0]= 0: "Q R S T U V W \n"
visrow[1]= 8: "X Y Z"
visrow[2]=11: <no text>
visrow[3]=11: <no text> length = 11
The last legal position is length = 11.
- While resizing window, we keep track of a position which should remain visible at the
top of the visible buffer (keeppos). Due to wrapping, the exact value of toppos may
change but its always the case that keeppos is visible.
- When changing text, try keep the top part of the visible buffer stationary, to avoid
jumping text while typing.
- If there is a style table, the style buffer is used as index into the style table,
allowing for up to 255 styles (style index==0 is the default style).
The style member in the FXHiliteStyle struct is used for underlining, strikeouts,
and other effects.
- Italic fonts are bit problematic on border between selected/unselected text
due to kerning.
- Possibly split off buffer management into separate text buffer class (allows for
multiple views).
- Maybe put all keyboard bindings into accelerator table.
- Perhaps change text and style buffer to FXString for further complexity reduction.
- When in overstrike mode and having a selection, entering a character should
replace the selection, not delete the selection and then overstrike the character
after the selection.
- When pasting or dropping whole lines, insert at begin of line instead of at cursor;
question:- how to know we're pasting whole lines?
- Inserting lots of stuff should show cursor.
- For now, right, top, and bottom bars are zero; subclasses may override
and add space for text annotations.
- Possible (minor) improvement to wrap(): don't break after space unless
at least non-space was seen before that space. This will cause a line
to have at least some non-blank characters on it.
*/
#define TOPIC_KEYBOARD 1009
#define TOPIC_TEXT 1012
#define TOPIC_LAYOUT 1013
#define MINSIZE 100 // Minimum gap size
#define MAXSIZE 4000 // Minimum gap size
#define NVISROWS 20 // Initial visible rows
#define MAXTABCOLUMNS 32 // Maximum tab column setting
#define TEXT_MASK (TEXT_FIXEDWRAP|TEXT_WORDWRAP|TEXT_OVERSTRIKE|TEXT_READONLY|TEXT_NO_TABS|TEXT_AUTOINDENT|TEXT_SHOWACTIVE|TEXT_SHOWMATCH)
#define CC(x,in) (((x)=='\t')?tabcolumns-in%tabcolumns:1) // Count Columns
using namespace FX;
/*******************************************************************************/
namespace FX {
// Furnish our own version
extern FXAPI FXint __snprintf(FXchar* string,FXint length,const FXchar* format,...);
// Map
FXDEFMAP(FXText) FXTextMap[]={
FXMAPFUNC(SEL_PAINT,0,FXText::onPaint),
FXMAPFUNC(SEL_MOTION,0,FXText::onMotion),
FXMAPFUNC(SEL_DRAGGED,0,FXText::onDragged),
FXMAPFUNC(SEL_ENTER,0,FXText::onEnter),
FXMAPFUNC(SEL_LEAVE,0,FXText::onLeave),
FXMAPFUNC(SEL_TIMEOUT,FXText::ID_BLINK,FXText::onBlink),
FXMAPFUNC(SEL_TIMEOUT,FXText::ID_FLASH,FXText::onFlash),
FXMAPFUNC(SEL_TIMEOUT,FXText::ID_TIPTIMER,FXText::onTipTimer),
FXMAPFUNC(SEL_TIMEOUT,FXText::ID_AUTOSCROLL,FXText::onAutoScroll),
FXMAPFUNC(SEL_FOCUSIN,0,FXText::onFocusIn),
FXMAPFUNC(SEL_FOCUSOUT,0,FXText::onFocusOut),
FXMAPFUNC(SEL_BEGINDRAG,0,FXText::onBeginDrag),
FXMAPFUNC(SEL_ENDDRAG,0,FXText::onEndDrag),
FXMAPFUNC(SEL_LEFTBUTTONPRESS,0,FXText::onLeftBtnPress),
FXMAPFUNC(SEL_LEFTBUTTONRELEASE,0,FXText::onLeftBtnRelease),
FXMAPFUNC(SEL_MIDDLEBUTTONPRESS,0,FXText::onMiddleBtnPress),
FXMAPFUNC(SEL_MIDDLEBUTTONRELEASE,0,FXText::onMiddleBtnRelease),
FXMAPFUNC(SEL_RIGHTBUTTONPRESS,0,FXText::onRightBtnPress),
FXMAPFUNC(SEL_RIGHTBUTTONRELEASE,0,FXText::onRightBtnRelease),
FXMAPFUNC(SEL_UNGRABBED,0,FXText::onUngrabbed),
FXMAPFUNC(SEL_DND_ENTER,0,FXText::onDNDEnter),
FXMAPFUNC(SEL_DND_LEAVE,0,FXText::onDNDLeave),
FXMAPFUNC(SEL_DND_DROP,0,FXText::onDNDDrop),
FXMAPFUNC(SEL_DND_MOTION,0,FXText::onDNDMotion),
FXMAPFUNC(SEL_DND_REQUEST,0,FXText::onDNDRequest),
FXMAPFUNC(SEL_SELECTION_LOST,0,FXText::onSelectionLost),
FXMAPFUNC(SEL_SELECTION_GAINED,0,FXText::onSelectionGained),
FXMAPFUNC(SEL_SELECTION_REQUEST,0,FXText::onSelectionRequest),
FXMAPFUNC(SEL_CLIPBOARD_LOST,0,FXText::onClipboardLost),
FXMAPFUNC(SEL_CLIPBOARD_GAINED,0,FXText::onClipboardGained),
FXMAPFUNC(SEL_CLIPBOARD_REQUEST,0,FXText::onClipboardRequest),
FXMAPFUNC(SEL_KEYPRESS,0,FXText::onKeyPress),
FXMAPFUNC(SEL_KEYRELEASE,0,FXText::onKeyRelease),
FXMAPFUNC(SEL_QUERY_TIP,0,FXText::onQueryTip),
FXMAPFUNC(SEL_QUERY_HELP,0,FXText::onQueryHelp),
FXMAPFUNC(SEL_IME_START,0,FXText::onIMEStart),
FXMAPFUNC(SEL_UPDATE,FXText::ID_TEXT_ROWS,FXText::onUpdTextRows),
FXMAPFUNC(SEL_UPDATE,FXText::ID_TEXT_SIZE,FXText::onUpdTextSize),
FXMAPFUNC(SEL_UPDATE,FXText::ID_TOGGLE_EDITABLE,FXText::onUpdToggleEditable),
FXMAPFUNC(SEL_UPDATE,FXText::ID_TOGGLE_OVERSTRIKE,FXText::onUpdToggleOverstrike),
FXMAPFUNC(SEL_UPDATE,FXText::ID_CURSOR_POS,FXText::onUpdCursorPos),
FXMAPFUNC(SEL_UPDATE,FXText::ID_CURSOR_ROW,FXText::onUpdCursorRow),
FXMAPFUNC(SEL_UPDATE,FXText::ID_CURSOR_COLUMN,FXText::onUpdCursorColumn),
FXMAPFUNC(SEL_UPDATE,FXText::ID_CUT_SEL,FXText::onUpdHaveEditableSelection),
FXMAPFUNC(SEL_UPDATE,FXText::ID_COPY_SEL,FXText::onUpdHaveSelection),
FXMAPFUNC(SEL_UPDATE,FXText::ID_PASTE_SEL,FXText::onUpdIsEditable),
FXMAPFUNC(SEL_UPDATE,FXText::ID_DELETE_SEL,FXText::onUpdHaveEditableSelection),
FXMAPFUNC(SEL_UPDATE,FXText::ID_CLEAN_INDENT,FXText::onUpdHaveEditableSelection),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_TOP,FXText::onCmdCursorTop),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_BOTTOM,FXText::onCmdCursorBottom),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_HOME,FXText::onCmdCursorHome),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_END,FXText::onCmdCursorEnd),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_UP,FXText::onCmdCursorUp),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_DOWN,FXText::onCmdCursorDown),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_LEFT,FXText::onCmdCursorLeft),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_RIGHT,FXText::onCmdCursorRight),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_PAGEUP,FXText::onCmdCursorPageUp),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_PAGEDOWN,FXText::onCmdCursorPageDown),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_WORD_LEFT,FXText::onCmdCursorWordLeft),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_WORD_RIGHT,FXText::onCmdCursorWordRight),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_TOP,FXText::onCmdCursorShiftTop),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_BOTTOM,FXText::onCmdCursorShiftBottom),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_HOME,FXText::onCmdCursorShiftHome),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_END,FXText::onCmdCursorShiftEnd),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_UP,FXText::onCmdCursorShiftUp),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_DOWN,FXText::onCmdCursorShiftDown),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_LEFT,FXText::onCmdCursorShiftLeft),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_RIGHT,FXText::onCmdCursorShiftRight),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_PAGEUP,FXText::onCmdCursorShiftPageUp),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_PAGEDOWN,FXText::onCmdCursorShiftPageDown),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_WORD_LEFT,FXText::onCmdCursorShiftWordLeft),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_SHIFT_WORD_RIGHT,FXText::onCmdCursorShiftWordRight),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_ALT_UP,FXText::onCmdCursorAltUp),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_ALT_DOWN,FXText::onCmdCursorAltDown),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_ALT_LEFT,FXText::onCmdCursorAltLeft),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_ALT_RIGHT,FXText::onCmdCursorAltRight),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SCROLL_UP,FXText::onCmdScrollUp),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SCROLL_DOWN,FXText::onCmdScrollDown),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SCROLL_TOP,FXText::onCmdScrollTop),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SCROLL_BOTTOM,FXText::onCmdScrollBottom),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SCROLL_CENTER,FXText::onCmdScrollCenter),
FXMAPFUNC(SEL_COMMAND,FXText::ID_INSERT_STRING,FXText::onCmdInsertString),
FXMAPFUNC(SEL_COMMAND,FXText::ID_INSERT_NEWLINE,FXText::onCmdInsertNewline),
FXMAPFUNC(SEL_COMMAND,FXText::ID_INSERT_NEWLINE_ONLY,FXText::onCmdInsertNewlineOnly),
FXMAPFUNC(SEL_COMMAND,FXText::ID_INSERT_NEWLINE_INDENT,FXText::onCmdInsertNewlineIndent),
FXMAPFUNC(SEL_COMMAND,FXText::ID_INSERT_TAB,FXText::onCmdInsertTab),
FXMAPFUNC(SEL_COMMAND,FXText::ID_INSERT_HARDTAB,FXText::onCmdInsertHardTab),
FXMAPFUNC(SEL_COMMAND,FXText::ID_INSERT_SOFTTAB,FXText::onCmdInsertSoftTab),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CUT_SEL,FXText::onCmdCutSel),
FXMAPFUNC(SEL_COMMAND,FXText::ID_COPY_SEL,FXText::onCmdCopySel),
FXMAPFUNC(SEL_COMMAND,FXText::ID_DELETE_SEL,FXText::onCmdDeleteSel),
FXMAPFUNC(SEL_COMMAND,FXText::ID_PASTE_SEL,FXText::onCmdPasteSel),
FXMAPFUNC(SEL_COMMAND,FXText::ID_PASTE_MIDDLE,FXText::onCmdPasteMiddle),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SELECT_CHAR,FXText::onCmdSelectChar),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SELECT_WORD,FXText::onCmdSelectWord),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SELECT_LINE,FXText::onCmdSelectLine),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SELECT_ALL,FXText::onCmdSelectAll),
FXMAPFUNC(SEL_COMMAND,FXText::ID_DESELECT_ALL,FXText::onCmdDeselectAll),
FXMAPFUNC(SEL_COMMAND,FXText::ID_BACKSPACE_CHAR,FXText::onCmdBackspaceChar),
FXMAPFUNC(SEL_COMMAND,FXText::ID_BACKSPACE_WORD,FXText::onCmdBackspaceWord),
FXMAPFUNC(SEL_COMMAND,FXText::ID_BACKSPACE_BOL,FXText::onCmdBackspaceBol),
FXMAPFUNC(SEL_COMMAND,FXText::ID_DELETE_CHAR,FXText::onCmdDeleteChar),
FXMAPFUNC(SEL_COMMAND,FXText::ID_DELETE_WORD,FXText::onCmdDeleteWord),
FXMAPFUNC(SEL_COMMAND,FXText::ID_DELETE_EOL,FXText::onCmdDeleteEol),
FXMAPFUNC(SEL_COMMAND,FXText::ID_DELETE_ALL,FXText::onCmdDeleteAll),
FXMAPFUNC(SEL_COMMAND,FXText::ID_DELETE_LINE,FXText::onCmdDeleteLine),
FXMAPFUNC(SEL_COMMAND,FXText::ID_TOGGLE_EDITABLE,FXText::onCmdToggleEditable),
FXMAPFUNC(SEL_COMMAND,FXText::ID_TOGGLE_OVERSTRIKE,FXText::onCmdToggleOverstrike),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_POS,FXText::onCmdCursorPos),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_ROW,FXText::onCmdCursorRow),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CURSOR_COLUMN,FXText::onCmdCursorColumn),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SETSTRINGVALUE,FXText::onCmdSetStringValue),
FXMAPFUNC(SEL_COMMAND,FXText::ID_GETSTRINGVALUE,FXText::onCmdGetStringValue),
FXMAPFUNC(SEL_COMMAND,FXText::ID_UPPER_CASE,FXText::onCmdChangeCase),
FXMAPFUNC(SEL_COMMAND,FXText::ID_LOWER_CASE,FXText::onCmdChangeCase),
FXMAPFUNC(SEL_COMMAND,FXText::ID_JOIN_LINES,FXText::onCmdJoinLines),
FXMAPFUNC(SEL_COMMAND,FXText::ID_GOTO_MATCHING,FXText::onCmdGotoMatching),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SELECT_MATCHING,FXText::onCmdSelectMatching),
FXMAPFUNCS(SEL_COMMAND,FXText::ID_SELECT_BRACE,FXText::ID_SELECT_ANG,FXText::onCmdSelectEnclosing),
FXMAPFUNCS(SEL_COMMAND,FXText::ID_LEFT_BRACE,FXText::ID_LEFT_ANG,FXText::onCmdBlockBeg),
FXMAPFUNCS(SEL_COMMAND,FXText::ID_RIGHT_BRACE,FXText::ID_RIGHT_ANG,FXText::onCmdBlockEnd),
FXMAPFUNCS(SEL_COMMAND,FXText::ID_SHIFT_LEFT,FXText::ID_SHIFT_TABRIGHT,FXText::onCmdShiftText),
FXMAPFUNC(SEL_COMMAND,FXText::ID_COPY_LINE,FXText::onCmdCopyLine),
FXMAPFUNC(SEL_COMMAND,FXText::ID_MOVE_LINE_UP,FXText::onCmdMoveLineUp),
FXMAPFUNC(SEL_COMMAND,FXText::ID_MOVE_LINE_DOWN,FXText::onCmdMoveLineDown),
FXMAPFUNC(SEL_COMMAND,FXText::ID_CLEAN_INDENT,FXText::onCmdShiftText),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SETHELPSTRING,FXText::onCmdSetHelp),
FXMAPFUNC(SEL_COMMAND,FXText::ID_GETHELPSTRING,FXText::onCmdGetHelp),
FXMAPFUNC(SEL_COMMAND,FXText::ID_SETTIPSTRING,FXText::onCmdSetTip),
FXMAPFUNC(SEL_COMMAND,FXText::ID_GETTIPSTRING,FXText::onCmdGetTip),
};
// Object implementation
FXIMPLEMENT(FXText,FXScrollArea,FXTextMap,ARRAYNUMBER(FXTextMap))
// Delimiters
const FXchar FXText::textDelimiters[]="~.,/\\`'!@#$%^&*()-=+{}|[]\":;<>?";
// Matching things
static const FXchar lefthand[]="{[(<";
static const FXchar righthand[]="}])>";
// Spaces, lots of spaces
static const FXchar spaces[MAXTABCOLUMNS+1]=" ";
/*******************************************************************************/
// For deserialization
FXText::FXText(){
flags|=FLAG_ENABLED|FLAG_DROPTARGET;
buffer=nullptr;
sbuffer=nullptr;
visrows=nullptr;
length=0;
nvisrows=0;
nrows=1;
gapstart=0;
gapend=0;
toppos=0;
toprow=0;
keeppos=0;
select.startpos=0;
select.endpos=-1;
select.startcol=0;
select.endcol=-1;
hilite.startpos=0;
hilite.endpos=-1;
hilite.startcol=0;
hilite.endcol=-1;
anchorpos=0;
anchorrow=0;
anchorcol=0;
anchorvcol=0;
cursorpos=0;
cursorrow=0;
cursorcol=0;
cursorvcol=0;
prefcol=-1;
margintop=0;
marginbottom=0;
marginleft=0;
marginright=0;
wrapwidth=80;
wrapcolumns=80;
tabwidth=8;
tabcolumns=8;
barwidth=0;
barcolumns=0;
font=nullptr;
textColor=0;
selbackColor=0;
seltextColor=0;
hilitebackColor=0;
hilitetextColor=0;
activebackColor=0;
numberColor=0;
cursorColor=0;
barColor=0;
textWidth=0;
textHeight=0;
delimiters=textDelimiters;
vrows=0;
vcols=0;
hilitestyles=nullptr;
blink=FLAG_CARET;
matchtime=0;
grabx=0;
graby=0;
mode=MOUSE_NONE;
modified=false;
}
// Text widget
FXText::FXText(FXComposite *p,FXObject* tgt,FXSelector sel,FXuint opts,FXint x,FXint y,FXint w,FXint h,FXint pl,FXint pr,FXint pt,FXint pb):FXScrollArea(p,opts,x,y,w,h){
flags|=FLAG_ENABLED|FLAG_DROPTARGET;
target=tgt;
message=sel;
callocElms(buffer,MINSIZE);
sbuffer=nullptr;
callocElms(visrows,NVISROWS+1);
length=0;
nrows=1;
nvisrows=NVISROWS;
gapstart=0;
gapend=MINSIZE;
toppos=0;
toprow=0;
keeppos=0;
select.startpos=0;
select.endpos=-1;
select.startcol=0;
select.endcol=-1;
hilite.startpos=0;
hilite.endpos=-1;
hilite.startcol=0;
hilite.endcol=-1;
anchorpos=0;
anchorrow=0;
anchorcol=0;
anchorvcol=0;
cursorpos=0;
cursorrow=0;
cursorcol=0;
cursorvcol=0;
prefcol=-1;
margintop=pt;
marginbottom=pb;
marginleft=pl;
marginright=pr;
wrapwidth=80;
wrapcolumns=80;
tabwidth=8;
tabcolumns=8;
barwidth=0;
barcolumns=0;
font=getApp()->getNormalFont();
hilitestyles=nullptr;
blink=FLAG_CARET;
defaultCursor=getApp()->getDefaultCursor(DEF_TEXT_CURSOR);
dragCursor=getApp()->getDefaultCursor(DEF_TEXT_CURSOR);
textColor=getApp()->getForeColor();
selbackColor=getApp()->getSelbackColor();
seltextColor=getApp()->getSelforeColor();
hilitebackColor=FXRGB(255,128,128);
hilitetextColor=getApp()->getForeColor();
activebackColor=backColor;
numberColor=textColor;
cursorColor=getApp()->getForeColor();
barColor=backColor;
textWidth=0;
textHeight=0;
delimiters=textDelimiters;
vrows=0;
vcols=0;
matchtime=0;
grabx=0;
graby=0;
mode=MOUSE_NONE;
modified=false;
}
// Create window
void FXText::create(){
FXScrollArea::create();
font->create();
tabwidth=tabcolumns*font->getTextWidth(" ",1);
barwidth=barcolumns*font->getTextWidth("8",1);
recalc();
}
// Detach window
void FXText::detach(){
FXScrollArea::detach();
font->detach();
}
// If window can have focus
FXbool FXText::canFocus() const {
return true;
}
// Into focus chain
void FXText::setFocus(){
FXScrollArea::setFocus();
setDefault(true);
flags&=~FLAG_UPDATE;
if(getApp()->hasInputMethod()){
createComposeContext();
getComposeContext()->setFont(font);
getComposeContext()->focusIn();
}
}
// Enable the window
void FXText::enable(){
if(!(flags&FLAG_ENABLED)){
FXScrollArea::enable();
update();
}
}
// Disable the window
void FXText::disable(){
if(flags&FLAG_ENABLED){
FXScrollArea::disable();
update();
}
}
// Out of focus chain
void FXText::killFocus(){
FXScrollArea::killFocus();
setDefault(maybe);
flags|=FLAG_UPDATE;
if(getApp()->hasInputMethod()){
destroyComposeContext();
}
}
// Return true if editable
FXbool FXText::isEditable() const {
return (options&TEXT_READONLY)==0;
}
// Set widget is editable or not
void FXText::setEditable(FXbool edit){
options^=((edit-1)^options)&TEXT_READONLY;
}
// Return true if text is in overstrike mode
FXbool FXText::isOverstrike() const {
return (options&TEXT_OVERSTRIKE)!=0;
}
// Set overstrike mode
void FXText::setOverstrike(FXbool over){
options^=((0-over)^options)&TEXT_OVERSTRIKE;
}
// Check if w is delimiter
FXbool FXText::isdelimiter(FXwchar w) const {
FXchar wcs[5]={'\0','\0','\0','\0','\0'};
if(128<=w){
wc2utf(wcs,w);
return (strstr(delimiters,wcs)!=nullptr);
}
return (strchr(delimiters,w)!=nullptr);
}
/*******************************************************************************/
// Move the gap; gap is never moved inside utf character.
// Afterward, new characters may be inserted at position simply
// by dropping them at the start of the gap, thereby shrinking
// the gap as each character is inserted. No big block moves
// are required until the gap has become too small for the next
// insert operation.
void FXText::movegap(FXint pos){
FXint gaplen=gapend-gapstart;
FXASSERT(0<=pos && pos<=length);
FXASSERT(0<=gapstart && gapstart<=length);
if(gapstart<pos){
moveElms(&buffer[gapstart],&buffer[gapend],pos-gapstart);
if(sbuffer){moveElms(&sbuffer[gapstart],&sbuffer[gapend],pos-gapstart);}
gapend=pos+gaplen;
gapstart=pos;
}
else if(pos<gapstart){
moveElms(&buffer[pos+gaplen],&buffer[pos],gapstart-pos);
if(sbuffer){moveElms(&sbuffer[pos+gaplen],&sbuffer[pos],gapstart-pos);}
gapend=pos+gaplen;
gapstart=pos;
}
}
// Grow or shrink the gap size, keeping gap start at the same position.
void FXText::sizegap(FXint sz){
FXint gaplen=gapend-gapstart;
FXASSERT(0<=sz);
FXASSERT(0<=gapstart && gapstart<=length);
if(sz>gaplen){
if(!resizeElms(buffer,length+sz)){ fxerror("%s::sizegap: out of memory.\n",getClassName()); }
moveElms(&buffer[gapstart+sz],&buffer[gapend],length-gapstart);
if(sbuffer){
if(!resizeElms(sbuffer,length+sz)){ fxerror("%s::sizegap: out of memory.\n",getClassName()); }
moveElms(&sbuffer[gapstart+sz],&sbuffer[gapend],length-gapstart);
}
gapend=gapstart+sz;
}
else if(sz<gaplen){
moveElms(&buffer[gapstart+sz],&buffer[gapend],length-gapstart);
if(!resizeElms(buffer,length+sz)){ fxerror("%s::sizegap: out of memory.\n",getClassName()); }
if(sbuffer){
moveElms(&sbuffer[gapstart+sz],&sbuffer[gapend],length-gapstart);
if(!resizeElms(sbuffer,length+sz)){ fxerror("%s::sizegap: out of memory.\n",getClassName()); }
}
gapend=gapstart+sz;
}
}
/*******************************************************************************/
// Get byte
FXint FXText::getByte(FXint pos) const {
FXASSERT(0<=pos && pos<=length);
return (FXuchar)buffer[pos+((gapend-gapstart)&((~pos+gapstart)>>31))];
}
// Get character, assuming that gap never inside utf8 encoding
FXwchar FXText::getChar(FXint pos) const {
FXASSERT(0<=pos && pos<=length);
const FXuchar* ptr=(FXuchar*)&buffer[pos+((gapend-gapstart)&((~pos+gapstart)>>31))];
FXwchar w=ptr[0];
if(0xC0<=w){ w=(w<<6)^ptr[1]^0x3080;
if(0x800<=w){ w=(w<<6)^ptr[2]^0x20080;
if(0x10000<=w){ w=(w<<6)^ptr[3]^0x400080; }}}
return w;
}
// Get length of wide character at position pos
FXint FXText::getCharLen(FXint pos) const {
FXASSERT(0<=pos && pos<=length);
return lenUTF8(buffer[pos+((gapend-gapstart)&((~pos+gapstart)>>31))]);
}
// Get style
FXint FXText::getStyle(FXint pos) const {
FXASSERT(0<=pos && pos<=length);
return (FXuchar)sbuffer[pos+((gapend-gapstart)&((~pos+gapstart)>>31))];
}
/*******************************************************************************/
// Make a valid position, at the start of a wide character
FXint FXText::validPos(FXint pos) const {
const FXchar* ptr=&buffer[(gapend-gapstart)&((~pos+gapstart)>>31)];
if(pos<=0) return 0;
if(pos>=length) return length;
return (isUTF8(ptr[pos]) || --pos<=0 || isUTF8(ptr[pos]) || --pos<=0 || isUTF8(ptr[pos]) || --pos), pos;
}
// Decrement; a wide character does not cross the gap, so if pos is at
// or below below the gap, we read from the segment below the gap
FXint FXText::dec(FXint pos) const {
const FXchar* ptr=&buffer[(gapend-gapstart)&((gapstart-pos)>>31)];
return (--pos<=0 || isUTF8(ptr[pos]) || --pos<=0 || isUTF8(ptr[pos]) || --pos<=0 || isUTF8(ptr[pos]) || --pos), pos;
}
// Increment; since a wide character does not cross the gap, if we
// start under the gap the last character accessed is below the gap
FXint FXText::inc(FXint pos) const {
const FXchar* ptr=&buffer[(gapend-gapstart)&((~pos+gapstart)>>31)];
return (++pos>=length || isUTF8(ptr[pos]) || ++pos>=length || isUTF8(ptr[pos]) || ++pos>=length || isUTF8(ptr[pos]) || ++pos), pos;
}
/*******************************************************************************/
// Its a little bit more complex than this:
// We need to deal with diacritics, i.e. non-spacing stuff. When wrapping, scan till
// the next starter-character [the one with charCombining(c)==0]. Then measure the
// string from that point on. This means FXFont::getCharWidth() is really quite useless.
// Next, we also have the issue of ligatures [fi, AE] and kerning-pairs [VA].
// With possible kerning pairs, we should really measure stuff from the start of the
// line [but this is *very* expensive!!]. We may want to just back up a few characters;
// perhaps to the start of the word, or just the previous character, if not a space.
// Need to investigate this some more; for now assume Normalization Form C.
// Character width
FXint FXText::charWidth(FXwchar ch,FXint indent) const {
if(' '<=ch) return font->getCharWidth(ch);
if(ch=='\t') return (tabwidth-indent%tabwidth);
return font->getCharWidth('^')+font->getCharWidth(ch|0x40);
}
// Calculate X offset from line start to pos
FXint FXText::xoffset(FXint start,FXint pos) const {
FXint w=0;
FXASSERT(0<=start && start<=pos && pos<=length);
while(start<pos){
w+=charWidth(getChar(start),w);
start+=getCharLen(start);
}
return w;
}
// Start of next wrapped line
// Position returned is start of next line, i.e. after newline
// or after space where line got broken during line wrapping.
FXint FXText::wrap(FXint start) const {
FXint lw,cw,p,s;
FXwchar ch;
FXASSERT(0<=start && start<=length);
lw=0;
p=s=start;
while(p<length){
ch=getChar(p);
if(ch=='\n') return p+1; // Newline always breaks
cw=charWidth(ch,lw);
if(lw+cw>wrapwidth){ // Technically, a tab-before-wrap should be as wide as space!
if(s>start) return s; // We remembered the last space we encountered; break there!
if(p>start) return p; // Got at least one character, so return that
return p+getCharLen(p); // Otherwise, advance one extra character
}
lw+=cw;
p+=getCharLen(p);
if(Unicode::isSpace(ch)) s=p; // Remember potential break point!
}
return length;
}
/*******************************************************************************/
// Find row number from position
// If position falls in visible area, scan visrows for the proper row;
// otherwise, count rows from start of row containing position to the
// first visible line, or from the last visible line to the position.
FXint FXText::rowFromPos(FXint pos) const {
FXint maxrows=Math::imin(nrows-toprow-1,nvisrows);
FXint row=0;
if(pos<visrows[0]){ // Above visible buffer
if(pos<=0) return 0;
return toprow-countRows(rowStart(pos),visrows[0]);
}
if(visrows[maxrows]<=pos){ // Below visible buffer
if(pos>=length) return nrows-1;
return toprow+maxrows+countRows(visrows[maxrows],rowStart(pos));
}
while(row<maxrows && visrows[row+1]<=pos) row++;
FXASSERT(0<=row && row<=nvisrows);
FXASSERT(countRows(visrows[0],rowStart(pos))==row);
return toprow+row;
}
// Find row start position from row number
// If row falls in visible area, we can directly return the row start position;
// otherwise, we scan backward from first visible line, or forward from last
// visible line, checking for start or end of buffer of course.
FXint FXText::posFromRow(FXint row) const {
if(row<toprow){
if(row<0) return 0;
return prevRow(visrows[0],toprow-row);
}
if(row>=toprow+nvisrows){
if(row>=nrows) return length;
return nextRow(visrows[nvisrows-1],row-toprow-nvisrows+1);
}
return visrows[row-toprow];
}
// Determine logical indent of position pos relative to line start.
// Stop at the end of the line (not row).
FXint FXText::columnFromPos(FXint start,FXint pos) const {
FXint column=0; FXuchar c;
FXASSERT(0<=start && pos<=length);
while(start<pos && (c=getByte(start))!='\n'){
column+=CC(c,column);
start+=getCharLen(start);
}
return column;
}
// Determine position of logical indent relative to line start.
// Stop at the end of the line (not row).
FXint FXText::posFromColumn(FXint start,FXint col) const {
FXint column=0; FXuchar c;
FXASSERT(0<=start && start<=length);
while(start<length && (c=getByte(start))!='\n'){
column+=CC(c,column);
if(col<column) break;
start+=getCharLen(start);
}
return start;
}
// Determine logical indent of text on line at start, up to
// given position pos.
FXint FXText::indentOfLine(FXint start,FXint pos) const {
FXint indent=0; FXuchar c;
FXASSERT(0<=start && pos<=length);
while(start<pos && ((c=getByte(start))==' ' || c=='\t')){
indent+=CC(c,indent);
start+=getCharLen(start);
}
return indent;
}
/*******************************************************************************/
// Return position of begin of paragraph
FXint FXText::lineStart(FXint pos) const {
FXASSERT(0<=pos && pos<=length);
while(0<pos && getByte(pos-1)!='\n'){
pos--;
}
FXASSERT(0<=pos && pos<=length);
return pos;
}
// Return position of end of paragraph
FXint FXText::lineEnd(FXint pos) const {
FXASSERT(0<=pos && pos<=length);
while(pos<length && getByte(pos)!='\n'){
pos++;
}
FXASSERT(0<=pos && pos<=length);
return pos;
}
// Return start of next line
FXint FXText::nextLine(FXint pos,FXint nl) const {
FXASSERT(0<=pos && pos<=length);
if(0<nl){
while(pos<length){
if(getByte(pos++)=='\n' && --nl<=0) break;
}
}
FXASSERT(0<=pos && pos<=length);
return pos;
}
// Return start of previous line
FXint FXText::prevLine(FXint pos,FXint nl) const {
FXASSERT(0<=pos && pos<=length);
if(0<nl){
while(0<pos){
if(getByte(pos-1)=='\n' && --nl<0) break;
pos--;
}
}
FXASSERT(0<=pos && pos<=length);
return pos;
}
/*******************************************************************************/
// Return row start
FXint FXText::rowStart(FXint pos) const {
FXint p,t;
FXASSERT(0<=pos && pos<=length);
if(options&TEXT_WORDWRAP){
p=pos;
while(0<pos && getByte(pos-1)!='\n'){ // Find line start first
pos--;
}
while(pos<p && (t=wrap(pos))<=p && t<length){ // Find row containing position, except if last row
pos=t;
}
}
else{
while(0<pos && getByte(pos-1)!='\n'){ // Find line start
pos--;
}
}
FXASSERT(0<=pos && pos<=length);
return pos;
}
// Return row end
FXint FXText::rowEnd(FXint pos) const {
FXint p,t;
FXASSERT(0<=pos && pos<=length);
if(options&TEXT_WORDWRAP){
p=pos;
while(0<pos && getByte(pos-1)!='\n'){ // Find line start first
pos--;
}
while(pos<=p && pos<length){ // Find row past position
pos=wrap(pos);
}
if(p<pos){ // Back off if line broke at space
t=dec(pos);
if(Unicode::isSpace(getChar(t))) pos=t;
}
}
else{
while(pos<length && getByte(pos)!='\n'){ // Hunt for end of line
pos++;
}
}
FXASSERT(0<=pos && pos<=length);
return pos;
}
// Move to next row given start of line
FXint FXText::nextRow(FXint pos,FXint nr) const {
FXint p,t;
FXASSERT(0<=pos && pos<=length);
if(0<nr){
if(options&TEXT_WORDWRAP){
p=pos;
while(0<pos && getByte(pos-1)!='\n'){ // Find line start first
pos--;
}
while(pos<p && (t=wrap(pos))<=p && t<length){ // Find row containing pos
pos=t;
}
while(pos<length){ // Then wrap until nth row after
pos=wrap(pos);
if(--nr<=0) break;
}
}
else{
while(pos<length){ // Hunt for begin of nth next line
if(getByte(pos++)=='\n' && --nr<=0) break;
}
}
}
FXASSERT(0<=pos && pos<=length);
return pos;
}
// Move to previous row given start of line
FXint FXText::prevRow(FXint pos,FXint nr) const {
FXint p,q,t;
FXASSERT(0<=pos && pos<=length);
if(0<nr){
if(options&TEXT_WORDWRAP){
while(0<pos){
p=pos;
while(0<pos && getByte(pos-1)!='\n'){ // Find line start first
pos--;
}
FXASSERT(0<=pos);
q=pos;
while(q<p && (t=wrap(q))<=p && t<length){ // Decrement number of rows to this point
nr--;
q=t;
}
while(nr<0){ // Went too far forward; try again from pos
pos=wrap(pos);
nr++;
}
FXASSERT(0<=nr);
if(nr==0) break;
if(pos==0) break;
pos--; // Skip over newline
nr--; // Which also counts as a row
}
}
else{
while(0<pos){ // Find previous line start
if(getByte(pos-1)=='\n' && --nr<0) break;
pos--;
}
}
}
FXASSERT(0<=pos && pos<=length);
return pos;
}
/*******************************************************************************/
// Find end of previous word
FXint FXText::leftWord(FXint pos) const {
FXwchar ch;
FXASSERT(0<=pos && pos<=length);
if(0<pos){
pos=dec(pos);
ch=getChar(pos);
if(isdelimiter(ch)){
while(0<pos){
ch=getChar(dec(pos));
if(Unicode::isSpace(ch) || !isdelimiter(ch)) return pos;
pos=dec(pos);
}
}
else if(!Unicode::isSpace(ch)){
while(0<pos){
ch=getChar(dec(pos));
if(Unicode::isSpace(ch) || isdelimiter(ch)) return pos;
pos=dec(pos);
}
}
while(0<pos){
ch=getChar(dec(pos));
if(!Unicode::isBlank(ch)) return pos;
pos=dec(pos);
}
}
return pos;
}
// Find begin of next word
FXint FXText::rightWord(FXint pos) const {
FXwchar ch;
FXASSERT(0<=pos && pos<=length);
if(pos<length){
ch=getChar(pos);
pos=inc(pos);
if(isdelimiter(ch)){
while(pos<length){
ch=getChar(pos);
if(Unicode::isSpace(ch) || !isdelimiter(ch)) return pos;
pos=inc(pos);
}
}
else if(!Unicode::isSpace(ch)){
while(pos<length){
ch=getChar(pos);
if(Unicode::isSpace(ch) || isdelimiter(ch)) return pos;
pos=inc(pos);
}
}
while(pos<length){
ch=getChar(pos);
if(!Unicode::isBlank(ch)) return pos;
pos=inc(pos);
}
}
return pos;
}
// Find begin of a word
FXint FXText::wordStart(FXint pos) const {
FXwchar ch;
FXASSERT(0<=pos && pos<=length);
if(0<pos){
ch=(pos<length)?getChar(pos):' ';
if(ch=='\n') return pos;
if(Unicode::isBlank(ch)){
while(0<pos){
ch=getChar(dec(pos));
if(!Unicode::isBlank(ch)) return pos;
pos=dec(pos);
}
}
else if(isdelimiter(ch)){
while(0<pos){
ch=getChar(dec(pos));
if(!isdelimiter(ch)) return pos;
pos=dec(pos);
}
}
else{
while(0<pos){
ch=getChar(dec(pos));
if(isdelimiter(ch) || Unicode::isSpace(ch)) return pos;
pos=dec(pos);
}
}
}
return pos;
}
// Find end of word
FXint FXText::wordEnd(FXint pos) const {
FXwchar ch;
FXASSERT(0<=pos && pos<=length);
if(pos<length){
ch=getChar(pos);
if(ch=='\n') return pos+1;
if(Unicode::isBlank(ch)){
while(pos<length){
ch=getChar(pos);
if(!Unicode::isBlank(ch)) return pos;
pos=inc(pos);
}
}
else if(isdelimiter(ch)){
while(pos<length){
ch=getChar(pos);
if(!isdelimiter(ch)) return pos;
pos=inc(pos);
}
}
else{
while(pos<length){
ch=getChar(pos);
if(isdelimiter(ch) || Unicode::isSpace(ch)) return pos;
pos=inc(pos);
}
}
}
return pos;
}
/*******************************************************************************/
// Count number of columns; start should be on a row start
FXint FXText::countCols(FXint start,FXint end) const {
FXint result=0;
FXint in=0;
FXwchar c;
FXASSERT(0<=start && start<=end && end<=length);
while(start<end){
c=getChar(start);
if(c=='\n'){ start++; result=Math::imax(result,in); in=0; continue; }
if(c=='\t'){ start++; in+=(tabcolumns-in%tabcolumns); continue; }
start+=getCharLen(start);
in++;
}
result=Math::imax(result,in);
return result;
}
// Count number of rows; start and end should be on a row start
FXint FXText::countRows(FXint start,FXint end) const {
FXint result=0;
if(options&TEXT_WORDWRAP){
while(start<end){
start=wrap(start);
result++;
}
}
else{
while(start<end){
if(getByte(start++)=='\n'){
result++;
}
}
}
return result;
}
// Count number of newlines
FXint FXText::countLines(FXint start,FXint end) const {
FXint result=0;
FXASSERT(0<=start && start<=end && end<=length);
while(start<end){
if(getByte(start++)=='\n'){
result++;
}
}
return result;
}
/*******************************************************************************/
// Measure lines; start and end should be on a row start
FXint FXText::measureText(FXint start,FXint end,FXint& wmax,FXint& hmax) const {
FXint result=0;
FXint s=start;
FXint b=start;
FXint w=0;
FXint cw;
FXwchar c;
FXASSERT(0<=start && start<=end && end<=length);
if(options&TEXT_WORDWRAP){
wmax=wrapwidth;
while(start<end){
c=getChar(start);
if(c=='\n'){ // Break at newline
result++;
start++;
s=b=start;
w=0;
continue;
}
cw=charWidth(c,w);
if(w+cw>wrapwidth){ // Break due to wrap
result++;
w=0;
if(s<b){ // Break past last space seen
s=start=b;
continue;
}
if(start==s){ // Always at least one character on each line!
start+=getCharLen(start);
}
s=b=start;
continue;
}
w+=cw;
start+=getCharLen(start);
if(Unicode::isSpace(c)) b=start; // Remember potential break point!
}
}
else{
wmax=0;
while(start<end){
c=getChar(start);
if(c=='\n'){ // Break at newline
wmax=Math::imax(wmax,w);
result++;
start++;
w=0;
continue;
}
w+=charWidth(c,w);
start+=getCharLen(start);
}
wmax=Math::imax(wmax,w);
}
hmax=result*font->getFontHeight();
return result;
}
// Recalculate line starts, by re-wrapping affected
// lines within the visible range of the text buffer.
void FXText::calcVisRows(FXint startline,FXint endline){
FXASSERT(0<nvisrows);
if(startline<1){
visrows[0]=toppos;
startline=1;
}
if(endline>nvisrows){
endline=nvisrows;
}
if(startline<=endline){
FXint pos=visrows[startline-1];
if(options&TEXT_WORDWRAP){
while(startline<=endline && pos<length){
pos=wrap(pos);
FXASSERT(0<=pos && pos<=length);
visrows[startline++]=pos;
}
}
else{
while(startline<=endline && pos<length){
pos=nextLine(pos);
FXASSERT(0<=pos && pos<=length);
visrows[startline++]=pos;
}
}
while(startline<=endline){
visrows[startline++]=length;
}
}
}
// Recompute the text dimensions; this is based on font, margins, wrapping
// and line numbers, so if any of these things change it has to be redone.
void FXText::recompute(){
FXint hh=font->getFontHeight();
FXint botrow,ww1,hh1,ww2,hh2;
// The keep position is where we want to have the top of the buffer be;
// make sure this is still inside the text buffer!
keeppos=FXCLAMP(0,keeppos,length);
// Due to wrapping, toppos which USED to point to a row start may no
// longer do so. We back off till the nearest row start. If we resize
// the window repeatedly, toppos will not wander away indiscriminately.
toppos=rowStart(keeppos);
// Remeasure the text; first, the part above the visible buffer, then
// the rest. This avoids measuring the entire text twice, which is
// quite expensive.
toprow=measureText(0,toppos,ww1,hh1);
FXTRACE((TOPIC_LAYOUT,"measureText(%d,%d,%d,%d) = %d\n",0,toppos,ww1,hh1,toprow));
botrow=measureText(toppos,length,ww2,hh2);
FXTRACE((TOPIC_LAYOUT,"measureText(%d,%d,%d,%d) = %d\n",toppos,length,ww2,hh2,botrow));
// Update text dimensions in terms of pixels and rows; note one extra
// row always added, as there is always at least one row, even though
// it may be empty of any characters.
textWidth=Math::imax(ww1,ww2);
textHeight=hh1+hh2+hh;
nrows=toprow+botrow+1;
// Adjust position, keeping same fractional position. Do this AFTER having
// determined toprow, which may have changed due to wrapping changes.
pos_y=-toprow*hh-(-pos_y%hh);
FXTRACE((TOPIC_LAYOUT,"recompute: textWidth=%d textHeight=%d nrows=%d\n",textWidth,textHeight,nrows));
// All is clean
flags&=~FLAG_RECALC;
}
/*******************************************************************************/
// Determine content width of scroll area
FXint FXText::getContentWidth(){
if(flags&FLAG_RECALC) recompute();
return marginleft+marginright+textWidth;
}
// Determine content height of scroll area
FXint FXText::getContentHeight(){
if(flags&FLAG_RECALC) recompute();
return margintop+marginbottom+textHeight;
}
// Return visible scroll-area x position
FXint FXText::getVisibleX() const {
return barwidth;
}
// Return visible scroll-area y position
FXint FXText::getVisibleY() const {
return 0;
}
// Return visible scroll-area width
FXint FXText::getVisibleWidth() const {
return width-vertical->getWidth()-barwidth;
}
// Return visible scroll-area height
FXint FXText::getVisibleHeight() const {
return height-horizontal->getHeight();
}
// Get default width
FXint FXText::getDefaultWidth(){
return 0<vcols ? marginleft+marginright+vcols*font->getTextWidth("8",1)+barwidth : FXScrollArea::getDefaultWidth()+barwidth;
}
// Get default height
FXint FXText::getDefaultHeight(){
return 0<vrows ? margintop+marginbottom+vrows*font->getFontHeight() : FXScrollArea::getDefaultHeight();
}
/*******************************************************************************/
// Recalculate layout
void FXText::layout(){
FXint fh=font->getFontHeight();
FXint fw=font->getFontWidth();
FXint oww=wrapwidth;
FXint cursorstartpos;
FXint anchorstartpos;
// Compute new wrap width, which is either based on the wrap columns or on the
// width of the window. If a vertical scroll bar MAY be visible, assume it IS
// so we don't get sudden surprises.
// For mono-spaced fonts, wrapwidth is a integral multiple of font width.
if(options&TEXT_FIXEDWRAP){
wrapwidth=wrapcolumns*font->getTextWidth("x",1);
}
else{
wrapwidth=width-barwidth-marginleft-marginright;
if(!(options&VSCROLLER_NEVER)) wrapwidth-=vertical->getDefaultWidth();
if(font->isFontMono()) wrapwidth=fw*(wrapwidth/fw);
}
// If we're wrapping, and wrap width changed, we may need to reflow the text.
if((options&TEXT_WORDWRAP) && (wrapwidth!=oww)) flags|=FLAG_RECALC;
// Adjust scrollbars; if necessary, remeasure reflowed text
// This places the scrollbars, and thus sets the visible area.
placeScrollBars(width-barwidth,height);
// Number of visible lines depends on viewport height
nvisrows=(getVisibleHeight()-margintop-marginbottom+fh+fh-1)/fh;
if(nvisrows<1) nvisrows=1;
// Resize line start array; the plus 1 is to keep track of the start
// of the next line just beyond the last visible one; this ensures
// we know how long the last visible line is.
resizeElms(visrows,nvisrows+1);
// Recompute line start array
calcVisRows(0,nvisrows);
// Scroll bar line/column sizes are based on font; set these now
vertical->setLine(fh);
horizontal->setLine(fw);
// Hopefully, all is still in range
FXASSERT(0<=toprow && toprow<=nrows);
FXASSERT(0<=toppos && toppos<=length);
// Update cursor location parameters
cursorstartpos=rowStart(cursorpos);
cursorrow=rowFromPos(cursorstartpos);
cursorcol=columnFromPos(cursorstartpos,cursorpos);
cursorvcol=cursorcol;
// Update anchor location parameters
anchorstartpos=rowStart(anchorpos);
anchorrow=rowFromPos(anchorstartpos);
anchorcol=columnFromPos(anchorstartpos,anchorpos);
anchorvcol=anchorcol;
// Force repaint
update();
// Done
flags&=~FLAG_DIRTY;
}
// Propagate size change
void FXText::recalc(){
FXScrollArea::recalc();
flags|=FLAG_RECALC;
}
/*******************************************************************************/
// Search forward for match
FXint FXText::matchForward(FXint pos,FXint end,FXwchar l,FXwchar r,FXint level) const {
FXwchar ch;
FXASSERT(0<=end && end<=length);
FXASSERT(0<=pos && pos<=length);
while(pos<end){
ch=getChar(pos);
if(ch==r){
level--;
if(level<=0) return pos;
}
else if(ch==l){
level++;
}
pos=inc(pos);
}
return -1;
}
// Search backward for match
FXint FXText::matchBackward(FXint pos,FXint beg,FXwchar l,FXwchar r,FXint level) const {
FXwchar ch;
FXASSERT(0<=beg && beg<=length);
FXASSERT(0<=pos && pos<=length);
while(beg<=pos){
ch=getChar(pos);
if(ch==l){
level--;
if(level<=0) return pos;
}
else if(ch==r){
level++;
}
pos=dec(pos);
}
return -1;
}
// Search for matching character
FXint FXText::findMatching(FXint pos,FXint beg,FXint end,FXwchar ch,FXint level) const {
FXASSERT(0<=level);
FXASSERT(0<=pos && pos<=length);
switch(ch){
case '{': return matchForward(pos+1,end,'{','}',level);
case '}': return matchBackward(pos-1,beg,'{','}',level);
case '[': return matchForward(pos+1,end,'[',']',level);
case ']': return matchBackward(pos-1,beg,'[',']',level);
case '(': return matchForward(pos+1,end,'(',')',level);
case ')': return matchBackward(pos-1,beg,'(',')',level);
}
return -1;
}
// Flash matching braces or parentheses
// If flashing briefly, highlight only if visible; otherwise, highlight always
void FXText::flashMatching(){
killHighlight();
getApp()->removeTimeout(this,ID_FLASH);
if((options&TEXT_SHOWMATCH) && 0<cursorpos){
FXint beg=(matchtime<forever) ? visrows[0] : 0;
FXint end=(matchtime<forever) ? visrows[nvisrows] : length;
FXint matchpos=findMatching(cursorpos-1,beg,end,getByte(cursorpos-1),1);
if(0<=matchpos){
setHighlight(matchpos,1);
if(0<matchtime && matchtime<forever){
getApp()->addTimeout(this,ID_FLASH,matchtime);
}
}
}
}
/*******************************************************************************/
// Search for text
FXbool FXText::findText(const FXString& string,FXint* beg,FXint* end,FXint start,FXuint flgs,FXint npar){
// Check arguments
if(npar<1 || !beg || !end){ fxerror("%s::findText: bad argument.\n",getClassName()); }
// Tweak parse flags a bit
FXint rexmode=FXRex::Normal;
if(1<npar) rexmode|=FXRex::Capture; // Capturing parentheses
if(flgs&SEARCH_WORDS) rexmode|=FXRex::Words; // Word mode
if(flgs&SEARCH_IGNORECASE) rexmode|=FXRex::IgnoreCase; // Case insensitivity
if(!(flgs&SEARCH_REGEX)) rexmode|=FXRex::Verbatim; // Verbatim match
// Try parse the regex
FXRex rex;
if(rex.parse(string,rexmode)==FXRex::ErrOK){
// Make all characters contiguous in the buffer
movegap(length);
// Search forward
if(flgs&SEARCH_FORWARD){
if(start<=length){
if(rex.search(buffer,length,Math::imax(start,0),length,FXRex::Normal,beg,end,npar)>=0) return true;
}
if((flgs&SEARCH_WRAP) && (start>0)){
if(rex.search(buffer,length,0,Math::imin(start,length),FXRex::Normal,beg,end,npar)>=0) return true;
}
return false;
}
// Search backward
if(flgs&SEARCH_BACKWARD){
if(0<=start){
if(rex.search(buffer,length,Math::imin(start,length),0,FXRex::Normal,beg,end,npar)>=0) return true;
}
if((flgs&SEARCH_WRAP) && (start<length)){
if(rex.search(buffer,length,length,Math::imax(start,0),FXRex::Normal,beg,end,npar)>=0) return true;
}
return false;
}
// Anchored match
return rex.amatch(buffer,length,start,FXRex::Normal,beg,end,npar);
}
return false;
}
/*******************************************************************************/
// Localize position at x,y
FXint FXText::getPosAt(FXint x,FXint y) const {
FXint linebeg,lineend,row,cx=0,cw,p;
FXwchar c;
x=x-pos_x-marginleft-getVisibleX();
y=y-pos_y-margintop-getVisibleY();
row=y/font->getFontHeight();
if(row<toprow){ // Above visible area
if(row<0) return 0; // Before first row
linebeg=prevRow(visrows[0],toprow-row);
lineend=nextRow(linebeg);
}
else if(row>=toprow+nvisrows){ // Below visible area
if(row>=nrows) return length; // Below last row
linebeg=nextRow(visrows[nvisrows-1],row-toprow-nvisrows+1);
lineend=nextRow(linebeg);
}
else{ // Inside visible area
FXASSERT(row-toprow<nvisrows);
linebeg=visrows[row-toprow];
lineend=visrows[row-toprow+1];
}
if(linebeg<lineend){ // Backup past line-break character, space or newline
p=dec(lineend);
if(Unicode::isSpace(getChar(p))) lineend=p;
}
FXASSERT(0<=linebeg);
FXASSERT(linebeg<=lineend);
FXASSERT(lineend<=length);
while(linebeg<lineend){
c=getChar(linebeg);
cw=charWidth(c,cx);
if(x<=(cx+(cw>>1))) return linebeg; // Before middle of character
linebeg+=getCharLen(linebeg);
cx+=cw;
}
return lineend;
}
// Return text position containing x, y coordinate
FXint FXText::getPosContaining(FXint x,FXint y) const {
FXint linebeg,lineend,row,cx=0,cw,p;
FXwchar c;
x=x-pos_x-marginleft-getVisibleX();
y=y-pos_y-margintop-getVisibleY();
row=y/font->getFontHeight();
if(row<toprow){ // Above visible area
if(row<0) return 0; // Before first row
linebeg=prevRow(visrows[0],toprow-row);
lineend=nextRow(linebeg);
}
else if(row>=toprow+nvisrows){ // Below visible area
if(row>=nrows) return length; // Below last row
linebeg=nextRow(visrows[nvisrows-1],row-toprow-nvisrows+1);
lineend=nextRow(linebeg);
}
else{ // Inside visible area
FXASSERT(row-toprow<nvisrows);
linebeg=visrows[row-toprow];
lineend=visrows[row-toprow+1];
}
if(linebeg<lineend){ // Backup past line-break character, space or newline
p=dec(lineend);
if(Unicode::isSpace(getChar(p))) lineend=p;
}
FXASSERT(0<=linebeg);
FXASSERT(linebeg<=lineend);
FXASSERT(lineend<=length);
while(linebeg<lineend){
c=getChar(linebeg);
cw=charWidth(c,cx);
if(x<cx+cw) return linebeg; // Character contains x
linebeg+=getCharLen(linebeg);
cx+=cw;
}
return lineend;
}
// Return closest position and (row,col) of given x,y coordinate.
// Computing the logical column inside of a tab, things can get tricky when
// the font is not a fixed-pitch. Our solution is to stretch spaces to
// subdivide the tab into as many columns as needed, regardless of whether
// the space is a whole multiple of the regular space width.
// Also, control-characters are problematic as they're rendered as ^A,
// thus, take up two columns even for fixed-pitch fonts.
FXint FXText::getRowColumnAt(FXint x,FXint y,FXint& row,FXint& col) const {
FXint spacew=font->getCharWidth(' ');
FXint caretw=font->getCharWidth('^');
FXint linebeg,lineend,cx=0,cw,cc,p;
FXwchar c;
x=x-pos_x-marginleft-getVisibleX();
y=y-pos_y-margintop-getVisibleY();
row=y/font->getFontHeight(); // Row is easy to find
col=0; // Find column later
if(row<toprow){ // Above visible area
linebeg=prevRow(visrows[0],toprow-row);
lineend=nextRow(linebeg);
}
else if(row>=toprow+nvisrows){ // Below visible area
linebeg=nextRow(visrows[nvisrows-1],row-toprow-nvisrows+1);
lineend=nextRow(linebeg);
}
else{ // Inside visible area
FXASSERT(row-toprow<nvisrows);
linebeg=visrows[row-toprow];
lineend=visrows[row-toprow+1];
}
if(linebeg<lineend){ // Backup past line-break character, space or newline
p=dec(lineend);
if(Unicode::isSpace(getChar(p))) lineend=p;
}
FXASSERT(0<=linebeg);
FXASSERT(linebeg<=lineend);
FXASSERT(lineend<=length);
while(linebeg<lineend){
c=getChar(linebeg);
if(' '<=c){ // Normal character
cw=font->getCharWidth(c);
if((cx+(cw>>1))<x){
linebeg+=getCharLen(linebeg); // Advance over utf8 character
col+=1;
cx+=cw;
continue;
}
return linebeg;
}
else if(c=='\t'){ // Tab is really complex
cw=tabwidth-cx%tabwidth;
cc=tabcolumns-col%tabcolumns;
if(cx+cw<=x){ // Advance over entire tab
linebeg+=1;
col+=cc;
cx+=cw;
continue;
}
if(cx<x){ // Calculate column inside tab
col+=(cc*(x-cx)+(cw>>1))/cw;
linebeg+=(x>=cx+(cw>>1)); // Round to nearest position
}
return linebeg;
}
else{ // Control characters
cw=caretw+font->getCharWidth(c|0x40);
if((cx+(cw>>1))<x){
linebeg+=1;
col+=1;
cx+=cw;
continue;
}
return linebeg;
}
}
if(cx<x){ // Calculate column beyond end of line
col+=(x+(spacew>>1)-cx)/spacew;
}
return linebeg;
}
// Calculate X position of pos
FXint FXText::getXOfPos(FXint pos) const {
FXint base=rowStart(pos);
return getVisibleX()+marginleft+pos_x+xoffset(base,pos);
}
// Determine Y from position pos
FXint FXText::getYOfPos(FXint pos) const {
FXint h=font->getFontHeight();
return getVisibleY()+margintop+pos_y+rowFromPos(pos)*h;
}
// Return screen x-coordinate of row and column
FXint FXText::getXOfRowColumn(FXint row,FXint col) const {
FXint spacew=font->getCharWidth(' ');
FXint caretw=font->getCharWidth('^');
FXint linebeg,lineend,tcol=0,twid=0,tadj=0,cx=0,cc=0,cw,p;
FXwchar c;
if(row<toprow){ // Above visible area
linebeg=prevRow(visrows[0],toprow-row);
lineend=nextRow(linebeg);
}
else if(row>=toprow+nvisrows){ // Below visible area
linebeg=nextRow(visrows[nvisrows-1],row-toprow-nvisrows+1);
lineend=nextRow(linebeg);
}
else{ // Inside visible area
linebeg=visrows[row-toprow];
lineend=visrows[row-toprow+1];
}
if(linebeg<lineend){ // Backup past line-break character, space or newline
p=dec(lineend);
if(Unicode::isSpace(getChar(p))) lineend=p;
}
FXASSERT(0<=linebeg);
FXASSERT(linebeg<=lineend);
FXASSERT(lineend<=length);
while(cc<col){
if(linebeg>=lineend){ // Column past end of line
cx+=spacew*(col-cc); // Add left-over columns and we're done
break;
}
c=getChar(linebeg);
if(' '<=c){ // Normal character
cx+=font->getCharWidth(c);
cc+=1;
linebeg+=getCharLen(linebeg); // Advance over utf8 character
continue;
}
if(c!='\t'){ // Control character
cx+=caretw+font->getCharWidth(c|0x40);
cc+=1;
linebeg+=1;
continue;
}
if(tcol==0){ // Tab character
cw=tabwidth-cx%tabwidth;
tcol=tabcolumns-cc%tabcolumns;
twid=cw/tcol;
tadj=cw-twid*tcol;
}
cx+=twid+(tadj>0); // Mete out bits of tab character
tcol-=1;
tadj-=1;
cc+=1;
linebeg+=(tcol==0);
}
return getVisibleX()+marginleft+pos_x+cx;
}
// Return screen y-coordinate of row and column
FXint FXText::getYOfRowColumn(FXint row,FXint) const {
return getVisibleY()+margintop+pos_y+row*font->getFontHeight();
}
/*******************************************************************************/
// Make line containing pos the top visible line
void FXText::setTopLine(FXint pos){
FXint h=font->getFontHeight();
setPosition(pos_x,-rowFromPos(pos)*h);
}
// Get top line
FXint FXText::getTopLine() const {
return visrows[0];
}
// Make line containing pos the bottom visible line
void FXText::setBottomLine(FXint pos){
FXint h=font->getFontHeight();
setPosition(pos_x,getVisibleHeight()-marginbottom-margintop-h-rowFromPos(pos)*h);
}
// Get bottom line
FXint FXText::getBottomLine() const {
return visrows[nvisrows-1];
}
// Center line containing pos to center of the screen
void FXText::setCenterLine(FXint pos){
FXint h=font->getFontHeight();
setPosition(pos_x,((getVisibleHeight()-marginbottom-margintop)/2)-rowFromPos(pos)*h);
}
// Return true if line containing position is fully visible
FXbool FXText::isPosVisible(FXint pos) const {
if(visrows[0]<=pos && pos<=visrows[nvisrows]){
FXint vy=getVisibleY();
FXint vh=getVisibleHeight();
FXint y=getYOfPos(pos);
return vy+margintop<=y && y<=vy+vh-marginbottom-font->getFontHeight();
}
return false;
}
// Force position to become fully visible
void FXText::makePositionVisible(FXint pos){
FXint vx=getVisibleX();
FXint vy=getVisibleY();
FXint vw=getVisibleWidth();
FXint vh=getVisibleHeight();
FXint x=getXOfPos(pos);
FXint y=getYOfPos(pos);
FXint h=font->getFontHeight();
FXint ny=pos_y;
FXint nx=pos_x;
// Check vertical visibility
if(y<vy+margintop){
ny=pos_y+vy+margintop-y;
nx=0;
}
else if(y>vy+vh-marginbottom-h){
ny=pos_y+vy+vh-marginbottom-h-y;
nx=0;
}
// Check horizontal visibility
if(x<vx+marginleft){
nx=pos_x+vx+marginleft-x;
}
else if(x>vx+vw-marginright){
nx=pos_x+vx+vw-marginright-x;
}
// If needed, scroll
if(nx!=pos_x || ny!=pos_y){
setPosition(nx,ny);
}
}
// Move content
void FXText::moveContents(FXint x,FXint y){
FXint delta=-y/font->getFontHeight()-toprow;
FXint vx=getVisibleX();
FXint vy=getVisibleY();
FXint vw=getVisibleWidth();
FXint vh=getVisibleHeight();
FXint dx=x-pos_x;
FXint dy=y-pos_y;
FXint i;
// Erase fragments of cursor overhanging margins
eraseCursorOverhang();
// Scrolled up one or more lines
if(delta<0){
if(toprow+delta<=0){
toppos=0;
toprow=0;
}
else{
toppos=prevRow(toppos,-delta);
toprow=toprow+delta;
}
if(-delta<nvisrows){
for(i=nvisrows; i>=-delta; i--) visrows[i]=visrows[delta+i];
calcVisRows(0,-delta);
}
else{
calcVisRows(0,nvisrows);
}
}
// Scrolled down one or more lines
else if(delta>0){
if(toprow+delta>=nrows-1){
toppos=rowStart(length);
toprow=nrows-1;
}
else{
toppos=nextRow(toppos,delta);
toprow=toprow+delta;
}
if(delta<nvisrows){
for(i=0; i<=nvisrows-delta; i++) visrows[i]=visrows[delta+i];
calcVisRows(nvisrows-delta,nvisrows);
}
else{
calcVisRows(0,nvisrows);
}
}
// This is now the new keep position
keeppos=toppos;
// Hopefully, all is still in range
FXASSERT(0<=toprow && toprow<=nrows);
FXASSERT(0<=toppos && toppos<=length);
// Scroll stuff in the bar only vertically
scroll(0,vy+margintop,vx,vh-margintop-marginbottom,0,dy);
// Scroll the text
scroll(vx+marginleft,vy+margintop,vw-marginleft-marginright,vh-margintop-marginbottom,dx,dy);
pos_x=x;
pos_y=y;
}
/*******************************************************************************/
// Move the cursor
void FXText::setCursorPos(FXint pos,FXbool notify){
pos=validPos(pos);
if(cursorpos!=pos){
if(isEditable()) drawCursor(0);
if(options&TEXT_SHOWACTIVE){ updateRow(cursorrow); }
FXint cursorstartpos=rowStart(pos);
cursorrow=rowFromPos(cursorstartpos);
cursorcol=columnFromPos(cursorstartpos,pos);
cursorvcol=cursorcol;
cursorpos=pos;
prefcol=-1;
if(options&TEXT_SHOWACTIVE){ updateRow(cursorrow); }
if(isEditable()) drawCursor(FLAG_CARET);
if(target && notify){
target->tryHandle(this,FXSEL(SEL_CHANGED,message),(void*)(FXival)cursorpos);
}
}
blink=FLAG_CARET;
}
// Set cursor row, column
void FXText::setCursorRowColumn(FXint row,FXint col,FXbool notify){
row=Math::iclamp(0,row,nrows-1);
col=Math::imax(col,0);
if((row!=cursorrow) || (col!=cursorvcol)){
FXint newstart=posFromRow(row); // Row start of new row
FXint newpos=posFromColumn(newstart,col); // Position of column on that row
setCursorPos(newpos,notify);
cursorvcol=col;
}
}
// Set cursor row
void FXText::setCursorRow(FXint row,FXbool notify){
setCursorRowColumn(row,(0<=prefcol)?prefcol:cursorcol,notify);
}
// Set cursor column
void FXText::setCursorColumn(FXint col,FXbool notify){
setCursorRowColumn(cursorrow,col,notify);
}
// Move cursor
void FXText::moveCursor(FXint pos,FXbool notify){
setCursorPos(pos,notify);
setAnchorPos(pos);
makePositionVisible(cursorpos);
killSelection(notify);
flashMatching();
}
// Move cursor to row and column, and scroll into view
void FXText::moveCursorRowColumn(FXint row,FXint col,FXbool notify){
setCursorRowColumn(row,col,notify);
setAnchorRowColumn(row,col);
makePositionVisible(cursorpos);
killSelection(notify);
flashMatching();
}
// Move cursor and select
void FXText::moveCursorAndSelect(FXint pos,FXuint sel,FXbool notify){
killHighlight();
setCursorPos(pos,notify);
makePositionVisible(cursorpos);
extendSelection(cursorpos,sel,notify);
}
// Move cursor to row and column, and extend the block selection to this point
void FXText::moveCursorRowColumnAndSelect(FXint row,FXint col,FXbool notify){
killHighlight();
setCursorRowColumn(row,col,notify);
makePositionVisible(cursorpos);
extendBlockSelection(row,col,notify);
}
// Set anchor position
void FXText::setAnchorPos(FXint pos){
pos=validPos(pos);
if(anchorpos!=pos){
FXint anchorstartpos=rowStart(pos);
anchorrow=rowFromPos(anchorstartpos);
anchorcol=columnFromPos(anchorstartpos,pos);
anchorpos=pos;
anchorvcol=anchorcol;
}
}
// Set anchor row and column
void FXText::setAnchorRowColumn(FXint row,FXint col){
row=Math::iclamp(0,row,nrows-1);
col=Math::imax(col,0);
if((row!=anchorrow) || (col!=anchorvcol)){
FXint newstart=posFromRow(row); // Row start of new row
FXint newpos=posFromColumn(newstart,col); // Position of column on that row
setAnchorPos(newpos);
anchorvcol=col;
}
}
/*******************************************************************************/
// At position pos, ncdel old characters have been replaced by ncins new ones,
// and nrdel old rows have been replaced with nrins new rows. Recalculate the
// visrows[] array and ancillary buffer positioning information.
void FXText::mutation(FXint pos,FXint ncins,FXint ncdel,FXint nrins,FXint nrdel){
FXint th=font->getFontHeight();
FXint vx=getVisibleX();
FXint vy=getVisibleY();
FXint vw=getVisibleWidth();
FXint vh=getVisibleHeight();
FXint ncdelta=ncins-ncdel;
FXint nrdelta=nrins-nrdel;
FXint line,i,y;
FXTRACE((TOPIC_LAYOUT,"BEFORE: pos=%d ncins=%d ncdel=%d nrins=%d nrdel=%d toppos=%d toprow=%d nrows=%d nvisrows=%d length=%d\n",pos,ncins,ncdel,nrins,nrdel,toppos,toprow,nrows,nvisrows,length));
FXASSERT(0<=ncins && 0<=ncdel);
FXASSERT(0<=nrins && 0<=nrdel);
FXASSERT(0<=pos && pos<=length);
// Changed text begins below first visible line
if(visrows[0]<=pos){
// Changed text begins above last visible line
if(pos<=visrows[nvisrows]){
// Scan to find line containing start of change
for(line=0; line+1<nvisrows && visrows[line+1]<=pos && visrows[line]<visrows[line+1]; line++){ }
FXASSERT(0<=line && line<nvisrows);
// More lines
if(nrdelta>0){
for(i=nvisrows; i>=line+nrins; i--) visrows[i]=visrows[i-nrdelta]+ncdelta;
calcVisRows(line,line+nrins);
y=vy+pos_y+margintop+(toprow+line)*th;
update(vx,y,vw,vh-y); // Repaint bottom part
FXASSERT(0<=visrows[0]);
FXASSERT(visrows[nvisrows]<=length);
}
// Fewer lines
else if(nrdelta<0){
for(i=line+nrdel; i<=nvisrows; i++) visrows[i+nrdelta]=visrows[i]+ncdelta;
calcVisRows(line,line+nrins);
calcVisRows(nvisrows+nrdelta,nvisrows);
y=vy+pos_y+margintop+(toprow+line)*th;
update(vx,y,vw,vh-y); // Repaint bottom part
FXASSERT(0<=visrows[0]);
FXASSERT(visrows[nvisrows]<=length);
}
// Same lines
else{
for(i=line+nrdel; i<=nvisrows; i++) visrows[i]=visrows[i]+ncdelta;
calcVisRows(line,line+nrins);
if(nrins==0){
y=vy+pos_y+margintop+(toprow+line)*th;
update(vx,y,vw,th); // Repaint one line
}
else{
y=vy+pos_y+margintop+(toprow+line)*th;
update(vx,y,vw,nrins*th); // Repaint nrins lines
}
FXASSERT(0<=visrows[0]);
FXASSERT(visrows[nvisrows]<=length);
}
}
}
// Changed text ends above last visible line
else if(pos+ncdel<visrows[nvisrows]){
// Changed text ends below first visible line
if(visrows[0]<pos+ncdel){
// Scan to find line containing end of change
for(line=nvisrows; pos+ncdel<visrows[line]; line--){ }
FXASSERT(0<=line && line<nvisrows);
// Enough text to keep bottom part of buffer
if(line<=toprow+nrdelta){
toprow+=nrdelta;
toppos=prevRow(visrows[line]+ncdelta,line);
keeppos=toppos;
FXASSERT(0<=toprow);
//FXASSERT(nextRow(0,toprow)==toppos);
pos_y-=nrdelta*th;
for(i=line; i<=nvisrows; i++) visrows[i]=visrows[i]+ncdelta;
calcVisRows(0,line);
update(vx,vy,vw,pos_y+margintop+(toprow+line)*th);
if(nrdelta) update(0,vy,vx,vh); // Repaint line numbers
}
// To few lines left, scroll to top of document
else{
toprow=0;
toppos=0;
keeppos=0;
pos_y=0;
calcVisRows(0,nvisrows);
update(); // Repaint all
}
}
// Changed text ends above first visible line
else{
toprow+=nrdelta;
toppos+=ncdelta;
keeppos=toppos;
FXASSERT(0<=toprow);
//FXASSERT(nextRow(0,toprow)==toppos);
for(i=0; i<=nvisrows; i++) visrows[i]+=ncdelta;
FXASSERT(0<=visrows[0]);
FXASSERT(visrows[nvisrows]<=length);
pos_y-=nrdelta*th;
if(nrdelta) update(0,vy,vx,vh); // Repaint only line numbers
}
}
// Changed text begins above first and ends below last visible line
else{
toprow=Math::iclamp(0,toprow,nrows-nvisrows);
toppos=nextRow(0,toprow);
keeppos=toppos;
pos_y=-toprow*th;
calcVisRows(0,nvisrows);
update(); // Repaint all
}
FXTRACE((TOPIC_LAYOUT,"AFTER : pos=%d ncins=%d ncdel=%d nrins=%d nrdel=%d toppos=%d toprow=%d nrows=%d nvisrows=%d length=%d\n",pos,ncins,ncdel,nrins,nrdel,toppos,toprow,nrows,nvisrows,length));
}
// Adjust selection for change in text, if there is a selection
static void adjustSelection(FXTextSelection& sel,FXint pos,FXint ndel,FXint nins){
//#define SELECTION_SNIPPED 1
if(sel.startpos<=sel.endpos){
if(pos+ndel<=sel.startpos){ // No overlap with change, just adjust positions
sel.startpos+=nins-ndel;
sel.endpos+=nins-ndel;
}
else if(pos<=sel.startpos){
if(pos+ndel<=sel.endpos){ // First part of selection inside change
sel.endpos+=nins-ndel;
#ifdef SELECTION_SNIPPED
sel.startpos=pos+nins; // Snip selection
#else
sel.startpos=pos; // Expand selection
#endif
}
else{ // Whole of selection inside change
#ifdef SELECTION_SNIPPED
sel.startpos=0; // Snip selection to empty
sel.endpos=-1;
sel.startcol=0;
sel.endcol=-1;
#else
sel.startpos=pos; // Expand selection to change
sel.endpos=pos+nins;
#endif
}
}
else if(pos<sel.endpos){
if(sel.endpos<=pos+ndel){ // Last part of selection inside change
#ifdef SELECTION_SNIPPED
sel.endpos=pos; // Snip selection
#else
sel.endpos=pos+nins; // Expand selection
#endif
}
else{ // Whole of range inside selection
sel.endpos+=nins-ndel;
}
}
}
}
// Backs up to the begin of the line preceding the line containing pos, or the
// start of the line containing pos if the preceding line terminated in a newline.
FXint FXText::changeBeg(FXint pos) const {
FXint p1,p2,t;
FXASSERT(0<=pos && pos<=length);
p1=p2=lineStart(pos);
if(options&TEXT_WORDWRAP){
while(p2<pos && (t=wrap(p2))<=pos){
p1=p2;
p2=t;
}
}
FXASSERT(0<=p1 && p1<=length);
return p1;
}
// Scan forward to the end of affected area, which is the start of the next
// paragraph; a change can cause the rest of the paragraph to reflow.
FXint FXText::changeEnd(FXint pos) const {
FXASSERT(0<=pos && pos<=length);
while(pos<length){
if(getByte(pos)=='\n') return pos+1;
pos++;
}
return length;
}
// Replace #del characters at pos by #ins characters
void FXText::replace(FXint pos,FXint del,const FXchar *text,FXint ins,FXint style){
FXint nrdel,nrins,ncdel,ncins,wbeg,wend,diff,wdel,hdel,wins,hins,cursorstartpos,anchorstartpos;
FXTRACE((TOPIC_TEXT,"pos=%d del=%d ins=%d\n",pos,del,ins));
// Delta in characters
diff=ins-del;
// Bracket potentially affected character range for wrapping purposes
wbeg=changeBeg(pos);
wend=changeEnd(pos+del);
// Measure stuff before change
nrdel=measureText(wbeg,wend,wdel,hdel);
ncdel=wend-wbeg;
FXTRACE((TOPIC_TEXT,"wbeg=%d wend=%d nrdel=%d ncdel=%d length=%d nrows=%d wdel=%d hdel=%d\n",wbeg,wend,nrdel,ncdel,length,nrows,wdel,hdel));
// Move the gap to current position
movegap(pos);
// Grow the gap if too small
if(diff>(gapend-gapstart)){ sizegap(diff+MINSIZE); }
// Modify the buffer
copyElms(&buffer[pos],text,ins);
if(sbuffer){fillElms(&sbuffer[pos],style,ins);}
gapstart+=ins;
gapend+=del;
length+=diff;
// Shrink the gap if too large
if(MAXSIZE<(gapend-gapstart)){ sizegap(MAXSIZE); }
// Measure stuff after change
nrins=measureText(wbeg,wend+diff,wins,hins);
ncins=wend+diff-wbeg;
// Adjust number of rows now
nrows+=nrins-nrdel;
FXTRACE((TOPIC_TEXT,"wbeg=%d wend+diff=%d nrins=%d ncins=%d length=%d nrows=%d wins=%d hins=%d\n",wbeg,wend+diff,nrins,ncins,length,nrows,wins,hins));
// Update visrows array and other stuff
mutation(wbeg,ncins,ncdel,nrins,nrdel);
// Fix text metrics
textHeight=textHeight+hins-hdel;
textWidth=Math::imax(textWidth,wins);
// Keep anchorpos at same place relative to its surrounding text.
// When inside the changed region, move it to the end of the change.
if(wbeg<=anchorpos){
if(anchorpos<=wend){
if(pos+del<=anchorpos) anchorpos+=diff; // Beyond changed text
else if(pos<=anchorpos) anchorpos=pos+ins; // To end of changed text
FXASSERT(0<=anchorpos && anchorpos<=length);
anchorstartpos=rowStart(anchorpos);
FXASSERT(0<=anchorstartpos && anchorstartpos<=length);
anchorrow=rowFromPos(anchorstartpos);
anchorcol=columnFromPos(anchorstartpos,anchorpos);
anchorvcol=anchorcol;
}
else{
anchorpos+=diff; // Adjust position
anchorrow+=nrins-nrdel; // Adjust row
}
}
// Keep cursorpos at same place relative to its surrounding text.
// When inside the changed region, move it to the end of the change.
if(wbeg<=cursorpos){
if(cursorpos<=wend){
if(pos+del<=cursorpos) cursorpos+=diff; // Beyond changed text
else if(pos<=cursorpos) cursorpos=pos+ins; // To end of changed text
FXASSERT(0<=cursorpos && cursorpos<=length);
cursorstartpos=rowStart(cursorpos);
FXASSERT(0<=cursorstartpos && cursorstartpos<=length);
cursorrow=rowFromPos(cursorstartpos);
cursorcol=columnFromPos(cursorstartpos,cursorpos);
cursorvcol=cursorcol;
}
else{
cursorpos+=diff; // Adjust position
cursorrow+=nrins-nrdel; // Adjust row
}
}
// Hopefully it all still makes sense
FXASSERT(0<=anchorpos && anchorpos<=length);
FXASSERT(0<=cursorpos && cursorpos<=length);
// Fix selection ranges
adjustSelection(select,pos,del,ins);
adjustSelection(hilite,pos,del,ins);
// Reconcile scrollbars
// Must be done AFTER adjusting cursor location
placeScrollBars(width-barwidth,height);
// Forget preferred column
prefcol=-1;
// Text was changed
modified=true;
}
/*******************************************************************************/
// Change the text in the buffer to new text
FXint FXText::setText(const FXchar* text,FXint num,FXbool notify){
return setStyledText(text,num,0,notify);
}
// Change all of the text
FXint FXText::setText(const FXString& text,FXbool notify){
return setStyledText(text.text(),text.length(),0,notify);
}
// Change the text in the buffer to new text
FXint FXText::setStyledText(const FXchar* text,FXint num,FXint style,FXbool notify){
if(num<0){ fxerror("%s::setStyledText: bad argument.\n",getClassName()); }
if(!resizeElms(buffer,num+MINSIZE)){
fxerror("%s::setStyledText: out of memory.\n",getClassName());
}
copyElms(buffer,text,num);
if(sbuffer){
if(!resizeElms(sbuffer,num+MINSIZE)){
fxerror("%s::setStyledText: out of memory.\n",getClassName());
}
fillElms(sbuffer,style,num);
}
gapstart=num;
gapend=gapstart+MINSIZE;
length=num;
toppos=0;
toprow=0;
keeppos=0;
select.startpos=0;
select.endpos=-1;
select.startcol=0;
select.endcol=-1;
hilite.startpos=0;
hilite.endpos=-1;
hilite.startcol=0;
hilite.endcol=-1;
anchorpos=0;
anchorrow=0;
anchorcol=0;
anchorvcol=0;
cursorpos=0;
cursorrow=0;
cursorcol=0;
cursorvcol=0;
prefcol=-1;
pos_x=0;
pos_y=0;
modified=false;
if(notify && target){
FXTextChange textchange={0,0,num,"",text};
target->tryHandle(this,FXSEL(SEL_INSERTED,message),(void*)&textchange);
target->tryHandle(this,FXSEL(SEL_CHANGED,message),(void*)(FXival)cursorpos);
}
recalc();
layout();
update();
return num;
}
// Change all of the text
FXint FXText::setStyledText(const FXString& text,FXint style,FXbool notify){
return setStyledText(text.text(),text.length(),style,notify);
}
/*******************************************************************************/
// Replace text by other text
FXint FXText::replaceText(FXint pos,FXint del,const FXchar *text,FXint ins,FXbool notify){
return replaceStyledText(pos,del,text,ins,0,notify);
}
// Replace text by other text
FXint FXText::replaceText(FXint pos,FXint del,const FXString& text,FXbool notify){
return replaceStyledText(pos,del,text.text(),text.length(),0,notify);
}
// Replace m characters at pos by n characters
FXint FXText::replaceStyledText(FXint pos,FXint del,const FXchar *text,FXint ins,FXint style,FXbool notify){
if(0<=pos && 0<=del && 0<=ins && pos+del<=length && text){
FXString txet=extractText(pos,del);
replace(pos,del,text,ins,style);
if(notify && target){
FXTextChange textchange={pos,del,ins,txet.text(),text};
target->tryHandle(this,FXSEL(SEL_REPLACED,message),(void*)&textchange);
target->tryHandle(this,FXSEL(SEL_CHANGED,message),(void*)(FXival)cursorpos);
}
return ins;
}
return 0;
}
// Replace m characters at pos by n characters
FXint FXText::replaceStyledText(FXint pos,FXint del,const FXString& text,FXint style,FXbool notify){
return replaceStyledText(pos,del,text.text(),text.length(),style,notify);
}
/*******************************************************************************/
// Maximum number of columns in a string
static FXint maxColumns(const FXString& text,FXint tabcols){
FXint result=0,cols=0,p=0; FXuchar c;
while(p<text.length()){
c=text[p++];
if(c=='\n'){ // End of the line; keep track of the longest
result=Math::imax(result,cols);
cols=0;
continue;
}
if(c=='\t'){ // Advance by number of tab columns
cols+=tabcols-cols%tabcols;
continue;
}
cols++;
if(c<0xC0) continue;
p++;
if(c<0xE0) continue;
p++;
if(c<0xF0) continue;
p++;
}
result=Math::imax(result,cols); // In case of unterminated last line
return result;
}
// Copy one utf8 character
static inline void wccopy(FXchar*& dst,const FXchar*& src){
FXuchar c=*dst++=*src++;
if(c>=0xC0){
*dst++=*src++;
if(c>=0xE0){
*dst++=*src++;
if(c>=0xF0){
*dst++=*src++;
}
}
}
}
// Skip one utf8 character
static inline void wcskip(const FXchar*& src){
FXuchar c=*src++;
if(c>=0xC0){
src++;
if(c>=0xE0){
src++;
if(c>=0xF0){
src++;
}
}
}
}
// Copy columns up from col to endcol
static FXint copycols(FXchar*& dst,FXchar* dstend,const FXchar*& src,const FXchar* srcend,FXint ncols=2147483647){
FXint nc=ncols;
while(0<nc && dst<dstend && src<srcend && *src!='\n'){
wccopy(dst,src);
nc--;
}
return ncols-nc;
}
// Skip columns from col to endcol
static FXint skipcols(const FXchar*& src,const FXchar* srcend,FXint ncols=2147483647){
FXint nc=ncols;
while(0<nc && src<srcend && *src!='\n'){
wcskip(src);
nc--;
}
return ncols-nc;
}
// Padd output until endcol
static FXint padcols(FXchar*& dst,FXchar* dstend,FXint ncols=0){
FXint nc=ncols;
while(0<nc && dst<dstend){
*dst++=' ';
nc--;
}
return ncols-nc;
}
// Remove columns startcol up to endcol from src; assume input has been detabbed.
// For each line, copy up to startcol; then skip characters up to endcol,
// and copy the remainder of the line, up to and including newline, if any.
static FXchar* removecolumns(FXchar* dst,FXchar* dstend,const FXchar* src,const FXchar* srcend,FXint startcol,FXint endcol){
while(dst<dstend && src<srcend){
copycols(dst,dstend,src,srcend,startcol); // Copy up to startcol
skipcols(src,srcend,endcol-startcol); // Skip to endcol
copycols(dst,dstend,src,srcend); // Copy to line end
if(dst<dstend && src<srcend && *src=='\n'){ // Copy newline
*dst++=*src++;
}
}
FXASSERT(src<=srcend);
FXASSERT(dst<=dstend);
return dst;
}
// Replicate text at src n times to dst
static FXchar* replicatecolumns(FXchar* dst,FXchar* dstend,const FXchar* src,const FXchar* srcend,FXint nr){
while(0<nr && dst<dstend){
const FXchar *ptr=src;
while(dst<dstend && ptr<srcend && *ptr!='\n'){
wccopy(dst,ptr);
}
if(dst<dstend && --nr>0){
*dst++='\n';
}
}
FXASSERT(dst<=dstend);
return dst;
}
// Extract block of columns of text from input; assume input has been detabbed.
// For each line, scan to startcol, then copy characters up to endcol to the
// destination. If there are fewer than startcol columns on the line, just
// copy a newline to indicate an empty column on that particular line.
static FXchar* extractcolumns(FXchar* dst,FXchar* dstend,const FXchar* src,const FXchar* srcend,FXint startcol,FXint endcol){
while(dst<dstend && src<srcend){
skipcols(src,srcend,startcol); // Skip to startcol
copycols(dst,dstend,src,srcend,endcol-startcol); // Copy up to endcol
skipcols(src,srcend); // Skip to line end
if(dst<dstend && src<srcend && *src=='\n'){ // Copy newline
*dst++=*src++;
}
}
FXASSERT(src<=srcend);
FXASSERT(dst<=dstend);
return dst;
}
// Insert same text at given column on each line.
static FXchar* insertcolumns(FXchar* dst,FXchar* dstend,const FXchar* src,const FXchar* srcend,const FXchar *ins,const FXchar* insend,FXint startcol,FXint inscols){
FXint sc,c;
while(dst<dstend && (src<srcend || ins<insend)){
sc=copycols(dst,dstend,src,srcend,startcol); // Copy to startcol
if(ins<insend && *ins!='\n'){ // Inserted block non-empty
sc+=padcols(dst,dstend,startcol-sc); // Pad up to startcol
sc+=copycols(dst,dstend,ins,insend,inscols); // Copy inserted block, up to inscols
}
if(src<srcend && *src!='\n'){ // Stuff past endcol
padcols(dst,dstend,startcol+inscols-sc); // Pad to startcol+ninscols
copycols(dst,dstend,src,srcend); // Copy the rest
}
c=0;
if(dst<dstend && ins<insend && *ins=='\n'){ // Advance over line end
*dst=*ins++; c=1;
}
if(dst<dstend && src<srcend && *src=='\n'){
*dst=*src++; c=1;
}
dst+=c;
}
FXASSERT(src<=srcend);
FXASSERT(ins<=insend);
FXASSERT(dst<=dstend);
return dst;
}
// Replace block of columns of text with new ones; assume both source text and inserted text has been detabbed.
// Copies up to inscols of new text into the destination column
static FXchar* replacecolumns(FXchar* dst,FXchar* dstend,const FXchar* src,const FXchar* srcend,const FXchar *ins,const FXchar* insend,FXint startcol,FXint endcol,FXint inscols){
FXint sc,c;
while(dst<dstend && (src<srcend || ins<insend)){
sc=copycols(dst,dstend,src,srcend,startcol); // Copy to startcol
skipcols(src,srcend,endcol-startcol); // Skip to endcol
if(ins<insend && *ins!='\n'){ // Inserted block non-empty
sc+=padcols(dst,dstend,startcol-sc); // Pad up to startcol
sc+=copycols(dst,dstend,ins,insend,inscols); // Copy inserted block, up to inscols
}
if(src<srcend && *src!='\n'){ // Stuff past endcol
padcols(dst,dstend,startcol+inscols-sc); // Pad to startcol+ninscols
copycols(dst,dstend,src,srcend); // Copy the rest
}
c=0;
if(dst<dstend && ins<insend && *ins=='\n'){ // Advance over line end
*dst=*ins++; c=1;
}
if(dst<dstend && src<srcend && *src=='\n'){
*dst=*src++; c=1;
}
dst+=c;
}
FXASSERT(src<=srcend);
FXASSERT(ins<=insend);
FXASSERT(dst<=dstend);
return dst;
}
// Count (maximum) columns in text
static FXint countColumns(const FXString& text,FXint tabcols=8){
FXint result=0,indent=0,p=0;
FXuchar c;
while(p<text.length()){
c=text[p++];
if(c=='\t'){
indent+=(tabcols-indent%tabcols);
continue;
}
if(c=='\n'){
result=Math::imax(result,indent);
indent=0;
continue;
}
indent++;
if(c<0xC0) continue;
p++;
if(c<0xE0) continue;
p++;
if(c<0xF0) continue;
p++;
}
return result;
}
// Overstrike text at startcol
static FXString overstrikeColumns(const FXString& src,const FXString& ovr,FXint startcol){
FXString result;
if(result.length(src.length()+ovr.length()+startcol)){
FXint srccol=0,ovrcol=0,skpcol=0,d=0,s=0,o=0;
FXuchar c;
while(s<src.length() && srccol<startcol){
c=result[d++]=src[s++]; srccol++;
if(c<0xC0) continue;
result[d++]=src[s++];
if(c<0xE0) continue;
result[d++]=src[s++];
if(c<0xF0) continue;
result[d++]=src[s++];
}
if(0<ovr.length()){
while(srccol<startcol){
result[d++]=' '; srccol++;
}
while(o<ovr.length()){
c=result[d++]=ovr[o++]; ovrcol++;
if(c<0xC0) continue;
result[d++]=ovr[o++];
if(c<0xE0) continue;
result[d++]=ovr[o++];
if(c<0xF0) continue;
result[d++]=ovr[o++];
}
while(s<src.length() && skpcol<ovrcol){
c=src[s++]; skpcol++;
if(c<0xC0) continue;
s++;
if(c<0xE0) continue;
s++;
if(c<0xF0) continue;
s++;
}
}
while(s<src.length()){
c=result[d++]=src[s++];
if(c<0xC0) continue;
result[d++]=src[s++];
if(c<0xE0) continue;
result[d++]=src[s++];
if(c<0xF0) continue;
result[d++]=src[s++];
}
FXASSERT(d<result.length());
result.length(d);
}
return result;
}
// Insert inscols of text at startcol
static FXString insertColumns(const FXString& src,const FXString& ins,FXint startcol,FXint numcols){
FXString result;
if(result.length(src.length()+ins.length()+startcol+numcols)){
FXint srccol=0,d=0,s=0,i=0;
FXuchar c;
while(s<src.length() && srccol<startcol){
c=result[d++]=src[s++]; srccol++;
if(c<0xC0) continue;
result[d++]=src[s++];
if(c<0xE0) continue;
result[d++]=src[s++];
if(c<0xF0) continue;
result[d++]=src[s++];
}
if(0<ins.length()){
while(srccol<startcol){
result[d++]=' '; srccol++;
}
while(i<ins.length() && srccol<startcol+numcols){
c=result[d++]=ins[i++]; srccol++;
if(c<0xC0) continue;
result[d++]=ins[i++];
if(c<0xE0) continue;
result[d++]=ins[i++];
if(c<0xF0) continue;
result[d++]=ins[i++];
}
}
if(s<src.length()){
while(srccol<startcol+numcols){
result[d++]=' '; srccol++;
}
while(s<src.length()){
c=result[d++]=src[s++];
if(c<0xC0) continue;
result[d++]=src[s++];
if(c<0xE0) continue;
result[d++]=src[s++];
if(c<0xF0) continue;
result[d++]=src[s++];
}
}
FXASSERT(d<result.length());
result.length(d);
}
return result;
}
// Replace columns from text at startcol
static FXString replaceColumns(const FXString& src,const FXString& ins,FXint startcol,FXint endcol,FXint numcols){
FXString result;
if(result.length(src.length()+ins.length()+startcol+numcols)){
FXint srccol=0,inscol=0,d=0,s=0,i=0;
FXuchar c;
while(s<src.length() && srccol<startcol){
c=result[d++]=src[s++];
srccol++;
if(c<0xC0) continue;
result[d++]=src[s++];
if(c<0xE0) continue;
result[d++]=src[s++];
if(c<0xF0) continue;
result[d++]=src[s++];
}
while(s<src.length() && srccol<endcol){
c=src[s++];
srccol++;
if(c<0xC0) continue;
s++;
if(c<0xE0) continue;
s++;
if(c<0xF0) continue;
s++;
}
if(0<ins.length()){
while(srccol<startcol){
result[d++]=' ';
srccol++;
}
while(i<ins.length()){
c=result[d++]=ins[i++];
inscol++;
if(c<0xC0) continue;
result[d++]=ins[i++];
if(c<0xE0) continue;
result[d++]=ins[i++];
if(c<0xF0) continue;
result[d++]=ins[i++];
}
}
if(s<src.length()){
while(inscol<numcols){
result[d++]=' ';
inscol++;
}
while(s<src.length()){
c=result[d++]=src[s++];
if(c<0xC0) continue;
result[d++]=src[s++];
if(c<0xE0) continue;
result[d++]=src[s++];
if(c<0xF0) continue;
result[d++]=src[s++];
}
}
FXASSERT(d<result.length());
result.length(d);
}
return result;
}
// Remove remcols of text at startcol
static FXString removeColumns(const FXString& src,FXint startcol,FXint numcols){
FXString result;
if(result.length(src.length())){
FXint srccol=0,remcol=0,d=0,s=0;
FXuchar c;
while(s<src.length() && srccol<startcol){
c=result[d++]=src[s++]; srccol++;
if(c<0xC0) continue;
result[d++]=src[s++];
if(c<0xE0) continue;
result[d++]=src[s++];
if(c<0xF0) continue;
result[d++]=src[s++];
}
while(s<src.length() && remcol<numcols){
c=src[s++]; remcol++;
if(c<0xC0) continue;
s++;
if(c<0xE0) continue;
s++;
if(c<0xF0) continue;
s++;
}
while(s<src.length()){
c=result[d++]=src[s++];
if(c<0xC0) continue;
result[d++]=src[s++];
if(c<0xE0) continue;
result[d++]=src[s++];
if(c<0xF0) continue;
result[d++]=src[s++];
}
FXASSERT(d<result.length());
result.length(d);
}
return result;
}
// Extract columns of text at startcol
static FXString extractColumns(const FXString& src,FXint startcol,FXint numcols){
FXString result;
if(result.length(src.length())){
FXint srccol=0,dstcol=0,s=0,d=0;
FXuchar c;
while(s<src.length() && srccol<startcol){
c=src[s++]; srccol++;
if(c<0xC0) continue;
s++;
if(c<0xE0) continue;
s++;
if(c<0xF0) continue;
s++;
}
while(s<src.length() && dstcol<numcols){
c=result[d++]=src[s++]; dstcol++;
if(c<0xC0) continue;
result[d++]=src[s++];
if(c<0xE0) continue;
result[d++]=src[s++];
if(c<0xF0) continue;
result[d++]=src[s++];
}
FXASSERT(d<result.length());
result.length(d);
}
return result;
}
// Overstrike columns starting at startcol with new text; assume inputs have been detabbed.
static FXchar* overstrikecolumns(FXchar* dst,FXchar* dstend,const FXchar* src,const FXchar* srcend,const FXchar* ovr,const FXchar* ovrend,FXint startcol){
FXint sc,ec; FXuchar c;
while(dst<dstend && (src<srcend || ovr<ovrend)){
sc=ec=copycols(dst,dstend,src,srcend,startcol); // Copy up to startcol
if(ovr<ovrend && *ovr!='\n'){ // Overstrike block is non-empty
ec+=padcols(dst,dstend,startcol-ec); // Pad up to column where overstrike starts
ec+=copycols(dst,dstend,ovr,ovrend); // Copy new overstruck block
}
if(src<srcend && *src!='\n'){ // More stuff past startcol
sc+=skipcols(src,srcend,ec-sc); // Skip past overstruck text
copycols(dst,dstend,src,srcend); // Copy the rest
}
c=0;
if(dst<dstend && src<srcend && *src=='\n'){ // Advance over line end
*dst=*src++; c=1;
}
if(dst<dstend && ovr<ovrend && *ovr=='\n'){
*dst=*ovr++; c=1;
}
dst+=c;
}
FXASSERT(src<=srcend);
FXASSERT(ovr<=ovrend);
FXASSERT(dst<=dstend);
return dst;
}
/*******************************************************************************/
// Replace block of columns with text
FXint FXText::replaceTextBlock(FXint startpos,FXint endpos,FXint startcol,FXint endcol,const FXchar *text,FXint num,FXbool notify){
return replaceStyledTextBlock(startpos,endpos,startcol,endcol,text,num,0,notify);
}
// Replace block of columns with text
FXint FXText::replaceTextBlock(FXint startpos,FXint endpos,FXint startcol,FXint endcol,const FXString& text,FXbool notify){
return replaceStyledTextBlock(startpos,endpos,startcol,endcol,text.text(),text.length(),0,notify);
}
// Replace block of columns with text
// Calculating the size of the scratch array to assemble the replacing text is a bit
// complicated; it is best understood graphically:
//
// col-0 startcol
// | |
// | | endcol
// | | |
// V v v
// startpos--->X--------------+-+----+-------------+ ^ ^
// | | | | | |
// | A A' | R R' | B | |norgrows |
// | | | | | |
// | | | | | |
// +--------------+ +-------------X v |
// | C | | ^ |
// | | | | |ninsrows
// endpos- - - |- - - - - - - |- - - |- - - - - - -+ |
// | | | |
// | | | |
// +--------------+-+----+ v
//
// <------>
// ninscols
//
// Here A, B are the parts of the original text, A being the part before the selected
// block and B the part after (or inside) the selected block. R is the newly added
// text, which may be more or fewer lines than the selected block. C is any additional
// lines added in case the newly added text includes more lines than the selection.
// Note that A, B, and R may have lines of varying lengths [some lines may have no
// part in section B, for example].
//
// The total amount of allocated space should account for:
//
// 1) Original text (A + B), plus possibly expanded tabs,
// 2) Inserted text (R), plus possibly expanded tabs,
// 3) Extra padding (A') after some lines in (A), up to startcol,
// 4) Padding of empty lines (C), if any, up to startcol,
// 5) Padding of (R), (R') up to startcol+ninscols.
// 6) The block being removed
//
// Some lines in A, B, and R are longer than others. Rather than calculating the exact
// amount of padding needed, its simpler just to over-estimate in a way which is guaranteed
// to be enough; this is done by just addding the whole rectangle; so we just add an extra
// (startcol+ninscols)*max(ninsrows,norgrows) as total padding for A,C, and R.
FXint FXText::replaceStyledTextBlock(FXint startpos,FXint endpos,FXint startcol,FXint endcol,const FXchar *text,FXint num,FXint style,FXbool notify){
if(0<=startpos && startpos<=endpos && endpos<=length && 0<=startcol && startcol<=endcol){
FXString org=FXString::detab(extractText(startpos,endpos-startpos),tabcolumns);
FXString ins=FXString::detab(text,num,tabcolumns);
FXint norgrows=org.contains('\n')+1;
FXint ninsrows=ins.contains('\n')+1;
FXint ninscols=maxColumns(ins,tabcolumns);
FXString rep(' ',org.length()+ins.length()+(startcol+ninscols+1)*Math::imax(ninsrows,norgrows));
FXchar* repend=replacecolumns(rep.text(),rep.text()+rep.length(),org.text(),org.text()+org.length(),ins.text(),ins.text()+ins.length(),startcol,endcol,ninscols);
rep.trunc(repend-rep.text());
if(!(options&TEXT_NO_TABS)){ rep=FXString::entab(rep,tabcolumns); }
return replaceStyledText(startpos,endpos-startpos,rep,style,notify);
}
return 0;
}
// Replace block of columns with text
FXint FXText::replaceStyledTextBlock(FXint startpos,FXint endpos,FXint startcol,FXint endcol,const FXString& text,FXint style,FXbool notify){
return replaceStyledTextBlock(startpos,endpos,startcol,endcol,text.text(),text.length(),style,notify);
}
/*******************************************************************************/
// Overstrike text block
FXint FXText::overstrikeTextBlock(FXint startpos,FXint endpos,FXint startcol,const FXchar *text,FXint num,FXbool notify){
return overstrikeStyledTextBlock(startpos,endpos,startcol,text,num,0,notify);
}
// Overstrike text block
FXint FXText::overstrikeTextBlock(FXint startpos,FXint endpos,FXint startcol,const FXString& text,FXbool notify){
return overstrikeStyledTextBlock(startpos,endpos,startcol,text.text(),text.length(),0,notify);
}
#if 0
// Overstrike styled text block (version only affecting overstruck rows)
FXint FXText::overstrikeStyledTextBlock(FXint startpos,FXint endpos,FXint startcol,const FXchar *text,FXint num,FXint style,FXbool notify){
if(0<=startpos && startpos<=endpos && endpos<=length && 0<=startcol){
FXString ovr=FXString::detab(text,num,tabcolumns);
FXint novrcols=maxColumns(ovr,tabcolumns);
FXint novrrows=ovr.contains('\n')+1;
FXint end=lineEnd(nextLine(startpos,novrrows-1));
FXString org=FXString::detab(extractText(startpos,end-startpos),tabcolumns);
FXString rep(' ',org.length()+ovr.length()+(startcol+novrcols+1)*novrrows);
FXchar* repend=overstrikecolumns(rep.text(),rep.text()+rep.length(),org.text(),org.text()+org.length(),ovr.text(),ovr.text()+ovr.length(),startcol);
rep.trunc(repend-rep.text());
if(!(options&TEXT_NO_TABS)){ rep=FXString::entab(rep,tabcolumns); }
return replaceStyledText(startpos,end-startpos,rep,style,notify);
}
return 0;
}
#endif
// Overstrike styled text block
FXint FXText::overstrikeStyledTextBlock(FXint startpos,FXint endpos,FXint startcol,const FXchar *text,FXint num,FXint style,FXbool notify){
if(0<=startpos && startpos<=endpos && endpos<=length && 0<=startcol){
FXString org=FXString::detab(extractText(startpos,endpos-startpos),tabcolumns);
FXString ovr=FXString::detab(text,num,tabcolumns);
FXint norgrows=org.contains('\n')+1;
FXint novrrows=ovr.contains('\n')+1;
FXint novrcols=maxColumns(ovr,tabcolumns);
FXString rep(' ',org.length()+ovr.length()+(startcol+novrcols+1)*Math::imax(novrrows,norgrows));
FXchar* repend=overstrikecolumns(rep.text(),rep.text()+rep.length(),org.text(),org.text()+org.length(),ovr.text(),ovr.text()+ovr.length(),startcol);
rep.trunc(repend-rep.text());
if(!(options&TEXT_NO_TABS)){ rep=FXString::entab(rep,tabcolumns); }
return replaceStyledText(startpos,endpos-startpos,rep,style,notify);
}
return 0;
}
// Overstrike styled text block
FXint FXText::overstrikeStyledTextBlock(FXint startpos,FXint endpos,FXint startcol,const FXString& text,FXint style,FXbool notify){
return overstrikeStyledTextBlock(startpos,endpos,startcol,text.text(),text.length(),style,notify);
}
/*******************************************************************************/
// Add text at the end
FXint FXText::appendText(const FXchar *text,FXint num,FXbool notify){
return appendStyledText(text,num,0,notify);
}
// Add text at the end
FXint FXText::appendText(const FXString& text,FXbool notify){
return appendStyledText(text.text(),text.length(),0,notify);
}
// Add text at the end
FXint FXText::appendStyledText(const FXchar *text,FXint num,FXint style,FXbool notify){
if(num<0){ fxerror("%s::appendStyledText: bad argument.\n",getClassName()); }
FXint pos=length;
replace(length,0,text,num,style);
if(notify && target){
FXTextChange textchange={pos,0,num,"",text};
target->tryHandle(this,FXSEL(SEL_INSERTED,message),(void*)&textchange);
target->tryHandle(this,FXSEL(SEL_CHANGED,message),(void*)(FXival)cursorpos);
}
return num;
}
// Add text at the end
FXint FXText::appendStyledText(const FXString& text,FXint style,FXbool notify){
return appendStyledText(text.text(),text.length(),style,notify);
}
/*******************************************************************************/
// Insert some text at pos
FXint FXText::insertText(FXint pos,const FXchar *text,FXint num,FXbool notify){
return insertStyledText(pos,text,num,0,notify);
}
// Insert some text at pos
FXint FXText::insertText(FXint pos,const FXString& text,FXbool notify){
return insertStyledText(pos,text.text(),text.length(),0,notify);
}
// Insert some text at pos
FXint FXText::insertStyledText(FXint pos,const FXchar *text,FXint num,FXint style,FXbool notify){
if(0<=pos && pos<=length && 0<=num && text){
replace(pos,0,text,num,style);
if(notify && target){
FXTextChange textchange={pos,0,num,"",text};
target->tryHandle(this,FXSEL(SEL_INSERTED,message),(void*)&textchange);
target->tryHandle(this,FXSEL(SEL_CHANGED,message),(void*)(FXival)cursorpos);
}
return num;
}
return 0;
}
// Insert some text at pos
FXint FXText::insertStyledText(FXint pos,const FXString& text,FXint style,FXbool notify){
return insertStyledText(pos,text.text(),text.length(),style,notify);
}
/*******************************************************************************/
// Insert text columns at startcol in line starting at startpos to endpos
FXint FXText::insertTextBlock(FXint startpos,FXint endpos,FXint startcol,const FXchar *text,FXint num,FXbool notify){
return insertStyledTextBlock(startpos,endpos,startcol,text,num,0,notify);
}
// Insert text columns at startcol in line starting at startpos to endpos
FXint FXText::insertTextBlock(FXint startpos,FXint endpos,FXint startcol,const FXString& text,FXbool notify){
return insertStyledTextBlock(startpos,endpos,startcol,text.text(),text.length(),0,notify);
}
#if 0
// Insert text columns at startcol in line starting at startpos to endpos with given style (version only affecting inserted rows)
FXint FXText::insertStyledTextBlock(FXint startpos,FXint endpos,FXint startcol,const FXchar *text,FXint num,FXint style,FXbool notify){
if(0<=startpos && startpos<=endpos && endpos<=length && 0<=startcol){
FXString ins=FXString::detab(text,num,tabcolumns);
FXint ninscols=maxColumns(ins,tabcolumns);
FXint ninsrows=ins.contains('\n')+1;
FXint end=lineEnd(nextLine(startpos,ninsrows-1));
FXString org=FXString::detab(extractText(startpos,end-startpos),tabcolumns);
FXString rep(' ',org.length()+ins.length()+(startcol+ninscols+1)*ninsrows);
FXchar *repend=insertcolumns(&rep[0],&rep[rep.length()],org.text(),org.text()+org.length(),ins.text(),ins.text()+ins.length(),startcol,ninscols);
rep.trunc(repend-rep.text());
if(!(options&TEXT_NO_TABS)){ rep=FXString::entab(rep,tabcolumns); }
return replaceStyledText(startpos,end-startpos,rep,style,notify);
}
return 0;
}
#endif
// Insert text columns at startcol in line starting at startpos to endpos with given style
FXint FXText::insertStyledTextBlock(FXint startpos,FXint endpos,FXint startcol,const FXchar *text,FXint num,FXint style,FXbool notify){
if(0<=startpos && startpos<=endpos && endpos<=length && 0<=startcol){
FXString org=FXString::detab(extractText(startpos,endpos-startpos),tabcolumns);
FXString ins=FXString::detab(text,num,tabcolumns);
FXint norgrows=org.contains('\n')+1;
FXint ninsrows=ins.contains('\n')+1;
FXint ninscols=maxColumns(ins,tabcolumns);
FXString rep(' ',org.length()+ins.length()+(startcol+ninscols+1)*Math::imax(ninsrows,norgrows));
FXchar *repend=insertcolumns(&rep[0],&rep[rep.length()],org.text(),org.text()+org.length(),ins.text(),ins.text()+ins.length(),startcol,ninscols);
rep.trunc(repend-rep.text());
if(!(options&TEXT_NO_TABS)){ rep=FXString::entab(rep,tabcolumns); }
return replaceStyledText(startpos,endpos-startpos,rep,style,notify);
}
return 0;
}
// Insert text columns at startcol in line starting at startpos to endpos with given style
FXint FXText::insertStyledTextBlock(FXint startpos,FXint endpos,FXint startcol,const FXString& text,FXint style,FXbool notify){
return insertStyledTextBlock(startpos,endpos,startcol,text.text(),text.length(),style,notify);
}
/*******************************************************************************/
// Change style of text range
FXint FXText::changeStyle(FXint pos,FXint num,FXint style){
if(0<=pos && 0<=num && pos+num<=length){
if(sbuffer){
if(pos+num<=gapstart){
fillElms(sbuffer+pos,style,num);
}
else if(gapstart<=pos){
fillElms(sbuffer+pos-gapstart+gapend,style,num);
}
else{
fillElms(sbuffer+pos,style,gapstart-pos);
fillElms(sbuffer+gapend,style,pos+num-gapstart);
}
updateRange(pos,pos+num);
}
return num;
}
return 0;
}
// Change style of text range from style-array
FXint FXText::changeStyle(FXint pos,const FXchar* style,FXint num){
if(0<=pos && 0<=num && pos+num<=length){
if(sbuffer && style){
if(pos+num<=gapstart){
copyElms(sbuffer+pos,style,num);
}
else if(gapstart<=pos){
copyElms(sbuffer+gapend-gapstart+pos,style,num);
}
else{
copyElms(sbuffer+pos,style,gapstart-pos);
copyElms(sbuffer+gapend,style+gapstart-pos,pos+num-gapstart);
}
updateRange(pos,pos+num);
}
return num;
}
return 0;
}
// Change style of text range from style-array
FXint FXText::changeStyle(FXint pos,const FXString& style){
return changeStyle(pos,style.text(),style.length());
}
/*******************************************************************************/
// Remove some text at pos
FXint FXText::removeText(FXint pos,FXint num,FXbool notify){
if(0<=pos && 0<=num && pos+num<=length){
FXString txet=extractText(pos,num);
replace(pos,num,nullptr,0,0);
if(notify && target){
FXTextChange textchange={pos,num,0,txet.text(),""};
target->tryHandle(this,FXSEL(SEL_DELETED,message),(void*)&textchange);
target->tryHandle(this,FXSEL(SEL_CHANGED,message),(void*)(FXival)cursorpos);
}
return num;
}
return 0;
}
// Remove columns startcol to endcol from lines starting at startpos to endpos
FXint FXText::removeTextBlock(FXint startpos,FXint endpos,FXint startcol,FXint endcol,FXbool notify){
if(0<=startpos && startpos<=endpos && endpos<=length && 0<=startcol && startcol<=endcol){
FXString org=FXString::detab(extractText(startpos,endpos-startpos),tabcolumns);
FXString rep(' ',org.length());
FXchar* repend=removecolumns(rep.text(),rep.text()+rep.length(),org.text(),org.text()+org.length(),startcol,endcol);
rep.trunc(repend-rep.text());
if(!(options&TEXT_NO_TABS)){ rep=FXString::entab(rep,tabcolumns); }
return replaceStyledText(startpos,endpos-startpos,rep,0,notify);
}
return 0;
}
/*******************************************************************************/
// Remove all text from the buffer
FXint FXText::clearText(FXbool notify){
return removeText(0,length,notify);
}
/*******************************************************************************/
// Grab range of text
void FXText::extractText(FXchar *text,FXint pos,FXint num) const {
if(0<=pos && 0<=num && pos+num<=length && text){
if(pos+num<=gapstart){
copyElms(text,buffer+pos,num);
}
else if(gapstart<=pos){
copyElms(text,buffer+gapend-gapstart+pos,num);
}
else{
copyElms(text,buffer+pos,gapstart-pos);
copyElms(text+gapstart-pos,buffer+gapend,pos+num-gapstart);
}
}
}
// Return n bytes of contents of text buffer from position pos
FXString FXText::extractText(FXint pos,FXint num) const {
FXString result;
if(0<=pos && 0<=num && pos+num<=length && result.length(num)){
if(pos+num<=gapstart){
copyElms(&result[0],buffer+pos,num);
}
else if(gapstart<=pos){
copyElms(&result[0],buffer+gapend-gapstart+pos,num);
}
else{
copyElms(&result[0],buffer+pos,gapstart-pos);
copyElms(&result[gapstart-pos],buffer+gapend,pos+num-gapstart);
}
}
return result;
}
// Grab range of style
void FXText::extractText(FXString& text,FXint pos,FXint num) const {
if(0<=pos && 0<=num && pos+num<=length && text.length(num)){
if(pos+num<=gapstart){
copyElms(&text[0],buffer+pos,num);
}
else if(gapstart<=pos){
copyElms(&text[0],buffer+gapend-gapstart+pos,num);
}
else{
copyElms(&text[0],buffer+pos,gapstart-pos);
copyElms(&text[gapstart-pos],buffer+gapend,pos+num-gapstart);
}
}
}
// Grab range of style
void FXText::extractStyle(FXchar *style,FXint pos,FXint num) const {
if(0<=pos && 0<=num && pos+num<=length && style && sbuffer){
if(pos+num<=gapstart){
copyElms(style,sbuffer+pos,num);
}
else if(gapstart<=pos){
copyElms(style,sbuffer+gapend-gapstart+pos,num);
}
else{
copyElms(style,sbuffer+pos,gapstart-pos);
copyElms(style+gapstart-pos,sbuffer+gapend,pos+num-gapstart);
}
}
}
// Return n bytes of style info from buffer from position pos
FXString FXText::extractStyle(FXint pos,FXint num) const {
FXString result;
if(0<=pos && 0<=num && pos+num<=length && sbuffer && result.length(num)){
if(pos+num<=gapstart){
copyElms(&result[0],sbuffer+pos,num);
}
else if(gapstart<=pos){
copyElms(&result[0],sbuffer+gapend-gapstart+pos,num);
}
else{
copyElms(&result[0],sbuffer+pos,gapstart-pos);
copyElms(&result[gapstart-pos],sbuffer+gapend,pos+num-gapstart);
}
}
return result;
}
// Grab range of style
void FXText::extractStyle(FXString& style,FXint pos,FXint num) const {
if(0<=pos && 0<=num && pos+num<=length && sbuffer && style.length(num)){
if(pos+num<=gapstart){
copyElms(&style[0],sbuffer+pos,num);
}
else if(gapstart<=pos){
copyElms(&style[0],sbuffer+gapend-gapstart+pos,num);
}
else{
copyElms(&style[0],sbuffer+pos,gapstart-pos);
copyElms(&style[gapstart-pos],sbuffer+gapend,pos+num-gapstart);
}
}
}
// Extract block of columns
void FXText::extractTextBlock(FXString& text,FXint startpos,FXint endpos,FXint startcol,FXint endcol) const {
if(startpos<endpos && startcol<=endcol){
FXString org=FXString::detab(extractText(startpos,endpos-startpos),tabcolumns);
text.length(org.length());
FXchar* textend=extractcolumns(text.text(),text.text()+text.length(),org.text(),org.text()+org.length(),startcol,endcol);
text.trunc(textend-text.text());
if(!(options&TEXT_NO_TABS)){ text=FXString::entab(text,tabcolumns); }
}
else{
text.clear();
}
}
// Extract block of columns
FXString FXText::extractTextBlock(FXint startpos,FXint endpos,FXint startcol,FXint endcol) const {
FXString text;
extractTextBlock(text,startpos,endpos,startcol,endcol);
return text;
}
/*******************************************************************************/
// Retrieve text into buffer
void FXText::getText(FXchar* text,FXint num) const {
extractText(text,0,num);
}
// Retrieve text into buffer
void FXText::getText(FXString& text) const {
extractText(text,0,getLength());
}
// We return a constant copy of the buffer
FXString FXText::getText() const {
return extractText(0,getLength());
}
/*******************************************************************************/
// End of overstruck character range
FXint FXText::overstruck(FXint start,FXint end,const FXchar *text,FXint num){
if(!memchr(text,'\n',num)){
FXint sindent,nindent,oindent,p;
const FXchar *ptr;
FXwchar ch;
// Measure indent at pos
sindent=columnFromPos(lineStart(start),start);
// Measure indent at end of (first line of the) new text
for(ptr=text,nindent=sindent; ptr<text+num; ptr=wcinc(ptr)){
nindent+=CC(*ptr,nindent);
}
// Now figure out how much text to replace
for(p=start,oindent=sindent; p<length; p+=getCharLen(p)){
ch=getChar(p);
if(ch=='\n') break; // Stuff past the newline just gets inserted
oindent+=CC(ch,oindent);
if(oindent>=nindent){ // Replace string fits inside here
if(oindent==nindent) p+=getCharLen(p);
break;
}
}
end=p;
}
return end;
}
/*******************************************************************************/
// Select all text
FXbool FXText::selectAll(FXbool notify){
return setSelection(0,length,notify);
}
// Select range of len characters starting at given position pos
FXbool FXText::setSelection(FXint pos,FXint len,FXbool notify){
FXint spos=validPos(pos);
FXint epos=validPos(pos+len);
if(select.startpos!=spos || select.endpos!=epos || select.startcol<=select.endcol){
FXDragType types[4]={stringType,textType,utf8Type,utf16Type};
FXint what[4];
// Now a range select
if(select.startcol<=select.endcol){
updateRange(select.startpos,select.endpos);
select.startcol=0;
select.endcol=-1;
}
// Update affected areas
if((epos<=select.startpos) || (select.endpos<=spos)){
updateRange(select.startpos,select.endpos);
updateRange(spos,epos);
}
else{
updateRange(select.startpos,spos);
updateRange(select.endpos,epos);
}
// Release selection
if(spos>=epos){
if(hasSelection()) releaseSelection();
if(notify && target){
what[0]=select.startpos;
what[1]=select.endpos-select.startpos;
what[2]=select.startcol;
what[3]=select.endcol-select.startcol;
target->tryHandle(this,FXSEL(SEL_DESELECTED,message),(void*)what);
}
select.startpos=0;
select.startcol=0;
}
// Acquire selection
else{
if(!hasSelection()) acquireSelection(types,ARRAYNUMBER(types));
if(notify && target){
what[0]=select.startpos;
what[1]=select.endpos-select.startpos;
what[2]=select.startcol;
what[3]=select.endcol-select.startcol;
target->tryHandle(this,FXSEL(SEL_SELECTED,message),(void*)what);
}
select.startpos=spos;
select.endpos=epos;
}
return true;
}
return false;
}
// Extend the primary selection from the anchor to the given position
FXbool FXText::extendSelection(FXint pos,FXuint sel,FXbool notify){
FXint p=validPos(pos),ss=0,se=0;
switch(sel){
case SelectChars: // Selecting characters
if(p<=anchorpos){
ss=p;
se=anchorpos;
}
else{
ss=anchorpos;
se=p;
}
break;
case SelectWords: // Selecting words
if(p<=anchorpos){
ss=wordStart(p);
se=wordEnd(anchorpos);
}
else{
ss=wordStart(anchorpos);
se=wordEnd(p);
}
break;
case SelectRows: // Selecting rows
if(p<=anchorpos){
ss=rowStart(p);
se=nextRow(anchorpos);
}
else{
ss=rowStart(anchorpos);
se=nextRow(p);
}
break;
case SelectLines: // Selecting lines
if(p<=anchorpos){
ss=lineStart(p);
se=nextLine(anchorpos);
}
else{
ss=lineStart(anchorpos);
se=nextLine(p);
}
break;
}
return setSelection(ss,se-ss,notify);
}
// Select block of characters within given box
FXbool FXText::setBlockSelection(FXint trow,FXint lcol,FXint brow,FXint rcol,FXbool notify){
FXint spos=lineStart(posFromRow(trow));
FXint epos=lineEnd(posFromRow(brow));
if(select.startpos!=spos || select.endpos!=epos || select.startcol!=lcol || select.endcol!=rcol){
FXDragType types[4]={stringType,textType,utf8Type,utf16Type};
FXint what[4];
// Update affected areas
updateLines(select.startpos,select.endpos);
updateLines(spos,epos);
// Release selection
if(spos>epos || lcol>rcol){
if(hasSelection()) releaseSelection();
if(notify && target){
what[0]=select.startpos;
what[1]=select.endpos-select.startpos;
what[2]=select.startcol;
what[3]=select.endcol-select.startcol;
target->tryHandle(this,FXSEL(SEL_DESELECTED,message),(void*)what);
}
select.startpos=0;
select.endpos=-1;
select.startcol=0;
select.endcol=-1;
}
// Acquire selection
else{
if(!hasSelection()) acquireSelection(types,ARRAYNUMBER(types));
if(notify && target){
what[0]=select.startpos;
what[1]=select.endpos-select.startpos;
what[2]=select.startcol;
what[3]=select.endcol-select.startcol;
target->tryHandle(this,FXSEL(SEL_SELECTED,message),(void*)what);
}
select.startpos=spos;
select.endpos=epos;
select.startcol=lcol;
select.endcol=rcol;
}
FXTRACE((TOPIC_TEXT,"select: startpos=%d endpos=%d startcol=%d endcol=%d\n",select.startpos,select.endpos,select.startcol,select.endcol));
return true;
}
return false;
}
// Extend primary selection from anchor to given row, column
FXbool FXText::extendBlockSelection(FXint row,FXint col,FXbool notify){
FXint trow,brow,lcol,rcol;
FXMINMAX(trow,brow,anchorrow,row);
FXMINMAX(lcol,rcol,anchorvcol,col);
return setBlockSelection(trow,lcol,brow,rcol,notify);
}
// Kill the selection
FXbool FXText::killSelection(FXbool notify){
if(select.startpos<=select.endpos){
FXint what[4];
if(hasSelection()) releaseSelection();
if(notify && target){
what[0]=select.startpos;
what[1]=select.endpos-select.startpos;
what[2]=select.startcol;
what[3]=select.endcol-select.startcol;
target->tryHandle(this,FXSEL(SEL_DESELECTED,message),(void*)what);
}
updateRange(select.startpos,select.endpos);
select.startpos=0;
select.endpos=-1;
select.startcol=0;
select.endcol=-1;
return true;
}
return false;
}
// Position is selected if inside character range AND character range non-empty AND NOT column-selection,
// OR inside character range AND inside column range AND non-empty column-range.
FXbool FXText::isPosSelected(FXint pos,FXint col) const {
return select.startpos<=pos && pos<=select.endpos && ((select.startpos<select.endpos && select.startcol>select.endcol) || (select.startcol<=col && col<=select.endcol && select.startcol<select.endcol));
}
// Position is range-selected if inside character range AND character range non-empty AND NOT column-selection
FXbool FXText::isPosSelected(FXint pos) const {
return select.startpos<=pos && pos<=select.endpos && select.startpos<select.endpos && select.startcol>select.endcol;
}
/*******************************************************************************/
// Get selected text
FXString FXText::getSelectedText() const {
if((select.startcol<select.endcol) && (select.startpos<=select.endpos)){
return extractTextBlock(select.startpos,select.endpos,select.startcol,select.endcol);
}
if((select.startcol>select.endcol) && (select.startpos<select.endpos)){
return extractText(select.startpos,select.endpos-select.startpos);
}
return FXString::null;
}
// Copy selection to clipboard
FXbool FXText::copySelection(){
if(select.startpos<=select.endpos){
FXDragType types[4]={stringType,textType,utf8Type,utf16Type};
if(acquireClipboard(types,ARRAYNUMBER(types))){
clipped=getSelectedText();
return true;
}
}
return false;
}
// Copy selection to clipboard and delete it
FXbool FXText::cutSelection(FXbool notify){
if(copySelection()){
return deleteSelection(notify);
}
return false;
}
// Replace selection by other text
// FIXME Select new text if it replaces the selection
FXbool FXText::replaceSelection(const FXString& text,FXbool notify){
if((select.startcol<select.endcol) && (select.startpos<=select.endpos)){
FXint cols=maxColumns(text,tabcolumns);
FXint ins=replaceTextBlock(select.startpos,select.endpos,select.startcol,select.endcol,text,notify);
FXint pos=posFromColumn(lineStart(select.startpos+ins),select.startcol+cols);
moveCursor(pos,notify);
return true;
}
if((select.startcol>select.endcol) && (select.startpos<select.endpos)){
FXint ins=replaceText(select.startpos,select.endpos-select.startpos,text,notify);
FXint pos=select.startpos+ins;
moveCursor(pos,notify);
return true;
}
return false;
}
// Delete selection
FXbool FXText::deleteSelection(FXbool notify){
if((select.startcol<select.endcol) && (select.startpos<=select.endpos)){
FXint ins=removeTextBlock(select.startpos,select.endpos,select.startcol,select.endcol,notify);
FXint pos=posFromColumn(lineStart(select.startpos+ins),select.startcol);
moveCursor(pos,notify);
return true;
}
if((select.startcol>select.endcol) && (select.startpos<select.endpos)){
removeText(select.startpos,select.endpos-select.startpos,notify);
moveCursor(select.startpos,notify);
return true;
}
return false;
}
// Delete pending selection
FXbool FXText::deletePendingSelection(FXbool notify){
return isPosSelected(cursorpos,cursorvcol) && deleteSelection(notify);
}
// Paste primary ("middle-mouse") selection
FXbool FXText::pasteSelection(FXbool notify){
// Don't paste inside selection
if(!isPosSelected(cursorpos,cursorvcol)){
FXString string;
// Try UTF-8, then UTF-16, then 8859-1
if(getDNDData(FROM_SELECTION,utf8Type,string) || getDNDData(FROM_SELECTION,utf16Type,string) || getDNDData(FROM_SELECTION,stringType,string)){
FXint pos=cursorpos,ins;
// Insert at vertical cursor
if((select.startcol<=select.endcol) && (select.startpos<=select.endpos)){
FXint cols=maxColumns(string,tabcolumns);
if(isOverstrike()){
ins=overstrikeTextBlock(select.startpos,select.endpos,select.startcol,string,notify);
}
else{
ins=insertTextBlock(select.startpos,select.endpos,select.startcol,string,notify);
}
pos=posFromColumn(lineStart(select.startpos+ins),select.startcol+cols);
makePositionVisible(pos);
setCursorPos(pos,notify);
setAnchorPos(pos);
flashMatching();
return true;
}
// Overstrike mode, extent
if(isOverstrike()){ // FIXME should overstrike always be block-mode?
ins=overstruck(pos,pos,string.text(),string.length());
ins=replaceText(pos,ins-pos,string,notify);
makePositionVisible(pos+ins);
setCursorPos(pos+ins,notify);
setAnchorPos(pos+ins);
flashMatching();
return true;
}
// Replace text and move cursor
ins=insertText(pos,string,notify);
makePositionVisible(pos+ins);
setCursorPos(pos+ins,notify);
setAnchorPos(pos+ins);
flashMatching();
return true;
}
}
return false;
}
// Paste clipboard
FXbool FXText::pasteClipboard(FXbool notify){
FXString string;
// Try UTF-8, then UTF-16, then 8859-1
if(getDNDData(FROM_CLIPBOARD,utf8Type,string) || getDNDData(FROM_CLIPBOARD,utf16Type,string) || getDNDData(FROM_CLIPBOARD,stringType,string)){
FXint pos=cursorpos,ins;
// De-DOS
#ifdef WIN32
dosToUnix(string);
#endif
// If there's a selection, replace it
if(replaceSelection(string,notify)){
return true;
}
// Insert at vertical cursor
if((select.startcol<=select.endcol) && (select.startpos<=select.endpos)){
FXint cols=maxColumns(string,tabcolumns);
if(isOverstrike()){
ins=overstrikeTextBlock(select.startpos,select.endpos,select.startcol,string,notify);
}
else{
ins=insertTextBlock(select.startpos,select.endpos,select.startcol,string,notify);
}
pos=posFromColumn(lineStart(select.startpos+ins),select.startcol+cols);
moveCursor(pos,notify);
return true;
}
// Overstrike
if(isOverstrike()){ // FIXME should overstrike always be block-mode?
ins=overstruck(pos,pos,string.text(),string.length());
ins=replaceText(pos,ins-pos,string,notify);
moveCursor(pos+ins,notify);
return true;
}
// Default is to insert at cursor
ins=insertText(pos,string,notify);
moveCursor(pos+ins,notify);
return true;
}
return false;
}
/*******************************************************************************/
// Set highlight
FXbool FXText::setHighlight(FXint pos,FXint len){
FXint spos=validPos(pos);
FXint epos=validPos(pos+len);
if(spos!=hilite.startpos || epos!=hilite.endpos){
if(epos<=hilite.startpos || hilite.endpos<=spos){
updateRange(hilite.startpos,hilite.endpos);
updateRange(spos,epos);
}
else{
updateRange(hilite.startpos,spos);
updateRange(hilite.endpos,epos);
}
hilite.startpos=spos;
hilite.endpos=epos;
hilite.startcol=0;
hilite.endcol=-1;
return true;
}
return false;
}
// Unhighlight the text
FXbool FXText::killHighlight(){
if(hilite.startpos<=hilite.endpos){
updateRange(hilite.startpos,hilite.endpos);
hilite.startpos=0;
hilite.endpos=-1;
hilite.startcol=0;
hilite.endcol=-1;
return true;
}
return false;
}
/*******************************************************************************/
// Draw the cursor
void FXText::drawCursor(FXuint state){
if((state^flags)&FLAG_CARET){
if(xid){
FXDCWindow dc(this);
if(state&FLAG_CARET)
paintCursor(dc);
else
eraseCursor(dc);
}
flags^=FLAG_CARET;
}
}
// Paint cursor glyph
void FXText::paintCursor(FXDCWindow& dc) const {
FXint th,tw,cursorx,cursory;
FXwchar c;
th=font->getFontHeight();
cursory=getVisibleY()+margintop+pos_y+cursorrow*th;
if(getVisibleY()+margintop<cursory+th && cursory<=getVisibleY()+getVisibleHeight()-marginbottom){
FXASSERT(toprow<=cursorrow && cursorrow<toprow+nvisrows);
FXASSERT(0<=visrows[cursorrow-toprow] && visrows[cursorrow-toprow]<=cursorpos && cursorpos<=length);
tw=font->getCharWidth((cursorpos<length) && ((c=getChar(cursorpos))>=' ')?c:' ');
cursorx=getVisibleX()+marginleft+pos_x+xoffset(visrows[cursorrow-toprow],cursorpos)-1;
if(getVisibleX()<=cursorx+tw+2 && cursorx-2<=getVisibleX()+getVisibleWidth()){
dc.setClipRectangle(getVisibleX(),getVisibleY(),getVisibleWidth(),getVisibleHeight());
if(0<dc.getClipWidth() && 0<dc.getClipHeight()){
dc.setForeground(cursorColor);
if(options&TEXT_OVERSTRIKE){
dc.drawRectangle(cursorx,cursory,tw,th-1);
}
else{
dc.fillRectangle(cursorx,cursory,2,th);
dc.fillRectangle(cursorx-2,cursory,6,1);
dc.fillRectangle(cursorx-2,cursory+th-1,6,1);
}
}
}
}
}
// Erase cursor glyph
void FXText::eraseCursor(FXDCWindow& dc) const {
FXint th,tw,cursorx,cursory,cx,cy,ch,cw;
FXwchar c;
th=font->getFontHeight();
cursory=getVisibleY()+margintop+pos_y+cursorrow*th;
if(getVisibleY()+margintop<cursory+th && cursory<=getVisibleY()+getVisibleHeight()-marginbottom){
FXASSERT(toprow<=cursorrow && cursorrow<toprow+nvisrows);
FXASSERT(0<=visrows[cursorrow-toprow] && visrows[cursorrow-toprow]<=cursorpos && cursorpos<=length);
tw=font->getCharWidth((cursorpos<length) && ((c=getChar(cursorpos))>=' ')?c:' ');
cursorx=getVisibleX()+marginleft+pos_x+xoffset(visrows[cursorrow-toprow],cursorpos)-1;
if(getVisibleX()<=cursorx+tw+2 && cursorx-2<=getVisibleX()+getVisibleWidth()){
dc.setClipRectangle(getVisibleX(),getVisibleY(),getVisibleWidth(),getVisibleHeight());
if(0<dc.getClipWidth() && 0<dc.getClipHeight()){
dc.setFont(font);
dc.setForeground(backColor);
dc.fillRectangle(cursorx-2,cursory,tw+4,th);
cx=Math::imax(cursorx-2,getVisibleX()+marginleft);
cy=getVisibleY()+margintop;
cw=Math::imin(cursorx+tw+2,getVisibleX()+getVisibleWidth()-marginright)-cx;
ch=getVisibleHeight()-margintop-marginbottom;
dc.setClipRectangle(cx,cy,cw,ch);
FXASSERT(toprow<=cursorrow && cursorrow<toprow+nvisrows);
drawTextRow(dc,cursorrow);
}
}
}
}
// Erase cursor overhang outside of margins
void FXText::eraseCursorOverhang(){
FXint th,tw,cursorx,cursory;
FXwchar c;
th=font->getFontHeight();
cursory=getVisibleY()+margintop+pos_y+cursorrow*th;
if(getVisibleY()+margintop<cursory+th && cursory<=getVisibleY()+getVisibleHeight()-marginbottom){
FXASSERT(0<=cursorrow-toprow && cursorrow-toprow<nvisrows);
tw=font->getCharWidth((cursorpos<length) && ((c=getChar(cursorpos))>=' ')?c:' ');
cursorx=getVisibleX()+marginleft+pos_x+xoffset(visrows[cursorrow-toprow],cursorpos)-1;
if(getVisibleX()<=cursorx+tw+2 && cursorx-2<=getVisibleX()+getVisibleWidth()){
FXDCWindow dc(this);
if(cursorx-2<=getVisibleX()+marginleft && getVisibleX()<=cursorx+tw+2){
dc.setForeground(backColor);
dc.fillRectangle(getVisibleX(),cursory,marginleft,th);
}
if(getVisibleX()+getVisibleWidth()-marginright<=cursorx+tw+2 && cursorx-2<=getVisibleX()+getVisibleWidth()){
dc.setForeground(backColor);
dc.fillRectangle(getVisibleX()+getVisibleWidth()-marginright,cursory,marginright,th);
}
if(cursory<=getVisibleY()+margintop && getVisibleY()<=cursory+th){
dc.setForeground(backColor);
dc.fillRectangle(cursorx-2,getVisibleY(),tw+4,margintop);
}
if(getVisibleY()+getVisibleHeight()-marginbottom<=cursory+th && cursory<getVisibleY()+getVisibleHeight()){
dc.setForeground(backColor);
dc.fillRectangle(cursorx-2,getVisibleY()+getVisibleHeight()-marginbottom,tw+4,marginbottom);
}
}
}
}
/*******************************************************************************/
// Draw fragment of text in given style
void FXText::drawBufferText(FXDCWindow& dc,FXint x,FXint y,FXint,FXint,FXint pos,FXint n,FXuint style) const {
FXuint index=(style&STYLE_MASK);
FXuint usedstyle=style; // Style flags from style buffer
FXColor color;
FXchar str[2];
color=0;
if(hilitestyles && index){ // Get colors from style table
usedstyle=hilitestyles[index-1].style; // Style flags now from style table
if(style&STYLE_SELECTED) color=hilitestyles[index-1].selectForeColor;
else if(style&STYLE_HILITE) color=hilitestyles[index-1].hiliteForeColor;
if(color==0) color=hilitestyles[index-1].normalForeColor; // Fall back on normal foreground color
}
if(color==0){ // Fall back to default style
if(style&STYLE_SELECTED) color=seltextColor;
else if(style&STYLE_HILITE) color=hilitetextColor;
if(color==0) color=textColor; // Fall back to normal text color
}
dc.setForeground(color);
if(style&STYLE_CONTROL){
y+=font->getFontAscent();
str[0]='^';
while(pos<gapstart && 0<n){
str[1]=buffer[pos]|0x40;
dc.drawText(x,y,str,2);
if(usedstyle&STYLE_BOLD) dc.drawText(x+1,y,str,2);
x+=font->getTextWidth(str,2);
pos++;
n--;
}
while(0<n){
str[1]=buffer[pos-gapstart+gapend]|0x40;
dc.drawText(x,y,str,2);
if(usedstyle&STYLE_BOLD) dc.drawText(x+1,y,str,2);
x+=font->getTextWidth(str,2);
pos++;
n--;
}
}
else{
y+=font->getFontAscent();
if(pos+n<=gapstart){
dc.drawText(x,y,&buffer[pos],n);
if(usedstyle&STYLE_BOLD) dc.drawText(x+1,y,&buffer[pos],n);
}
else if(pos>=gapstart){
dc.drawText(x,y,&buffer[pos-gapstart+gapend],n);
if(usedstyle&STYLE_BOLD) dc.drawText(x+1,y,&buffer[pos-gapstart+gapend],n);
}
else{
dc.drawText(x,y,&buffer[pos],gapstart-pos);
if(usedstyle&STYLE_BOLD) dc.drawText(x+1,y,&buffer[pos],gapstart-pos);
x+=font->getTextWidth(&buffer[pos],gapstart-pos);
dc.drawText(x,y,&buffer[gapend],pos+n-gapstart);
if(usedstyle&STYLE_BOLD) dc.drawText(x+1,y,&buffer[gapend],pos+n-gapstart);
}
}
}
// Fill fragment of background in given style
void FXText::fillBufferRect(FXDCWindow& dc,FXint x,FXint y,FXint w,FXint h,FXuint style) const {
FXuint index=(style&STYLE_MASK);
FXuint usedstyle=style; // Style flags from style buffer
FXColor bgcolor,fgcolor;
bgcolor=fgcolor=0;
if(hilitestyles && index){ // Get colors from style table
usedstyle=hilitestyles[index-1].style; // Style flags now from style table
if(style&STYLE_SELECTED){
bgcolor=hilitestyles[index-1].selectBackColor;
fgcolor=hilitestyles[index-1].selectForeColor;
}
else if(style&STYLE_HILITE){
bgcolor=hilitestyles[index-1].hiliteBackColor;
fgcolor=hilitestyles[index-1].hiliteForeColor;
}
else if(style&STYLE_ACTIVE){
bgcolor=hilitestyles[index-1].activeBackColor;
}
else{
bgcolor=hilitestyles[index-1].normalBackColor;
}
if(fgcolor==0){ // Fall back to normal foreground color
fgcolor=hilitestyles[index-1].normalForeColor;
}
}
if(bgcolor==0){ // Fall back to default background colors
if(style&STYLE_SELECTED) bgcolor=selbackColor;
else if(style&STYLE_HILITE) bgcolor=hilitebackColor;
else if(style&STYLE_ACTIVE) bgcolor=activebackColor;
else bgcolor=backColor;
}
if(fgcolor==0){ // Fall back to default foreground colors
if(style&STYLE_SELECTED) fgcolor=seltextColor;
else if(style&STYLE_HILITE) fgcolor=hilitetextColor;
if(fgcolor==0) fgcolor=textColor; // Fall back to text color
}
dc.setForeground(bgcolor);
dc.fillRectangle(x,y,w,h);
if(style&STYLE_INSERT){ // Vertical insertion point
dc.setForeground(cursorColor); // Use cursor color for now
dc.fillRectangle(x,y,1,h);
}
if(usedstyle&STYLE_UNDERLINE){
dc.setForeground(fgcolor);
dc.fillRectangle(x,y+font->getFontAscent()+1,w,1);
}
if(usedstyle&STYLE_STRIKEOUT){
dc.setForeground(fgcolor);
dc.fillRectangle(x,y+font->getFontAscent()/2,w,1);
}
}
// Obtain text style given line range, row, column, and position
// Note that for block selections, the column may be outside the text, but need
// to be on non-empty lines.
FXuint FXText::styleOf(FXint beg,FXint end,FXint row,FXint col,FXint pos) const {
FXuint style=0;
// Current active line
if((row==cursorrow) && (options&TEXT_SHOWACTIVE)) style|=STYLE_ACTIVE;
// Need non-empty line
if(beg<end){
// Selected range or block
if(select.startpos<=pos){
if(select.startcol>select.endcol){
if(pos<select.endpos) style|=STYLE_SELECTED;
}
else if(pos<=select.endpos){
if(select.startcol<=col && col<select.endcol) style|=STYLE_SELECTED;
if(select.startcol==col && select.endcol==col) style|=STYLE_INSERT;
}
}
// Highlighted range or block
if(hilite.startpos<=pos){
if(hilite.startcol>hilite.endcol){
if(pos<hilite.endpos) style|=STYLE_HILITE;
}
else if(pos<=hilite.endpos){
if(hilite.startcol<=col && col<hilite.endcol) style|=STYLE_HILITE;
}
}
// FIXME draw (soft) vertical line at indent-stops
//if((col%tabcolumns)==0) style|=STYLE_INSERT;
// Inside text
if(pos<end){
// Get character
FXuchar c=getByte(pos);
// Get value from style buffer
if(sbuffer) style|=getStyle(pos);
// Tab or whitespace
if(c=='\t') return style;
if(c==' ') return style;
// Control codes
if(c<' ') style|=STYLE_CONTROL;
// Normal character
style|=STYLE_TEXT;
}
}
return style;
}
// Draw line of text from the buffer, skipping over the parts outside
// of the current clip rectangle.
void FXText::drawTextRow(FXDCWindow& dc,FXint row) const {
FXint spacew=font->getCharWidth(' ');
FXint caretw=font->getCharWidth('^');
FXint th=font->getFontHeight();
FXint tx=getVisibleX()+marginleft+pos_x;
FXint ty=getVisibleY()+margintop+pos_y+row*th;
FXint leftclip=dc.getClipX();
FXint riteclip=dc.getClipX()+dc.getClipWidth();
FXint linebeg=visrows[row-toprow];
FXint lineend=visrows[row-toprow+1];
FXint linebreak=lineend;
FXint tcol=0,twid=0,tadj=0;
FXint cw,cc,pc,cx,px,cp,pp;
FXuint curstyle,newstyle;
FXwchar c;
FXASSERT(toprow<=row && row<toprow+nvisrows);
FXASSERT(0<=linebeg && lineend<=length);
// If last character on a line is newline or space, back off by one
// character position, and interpret all subsequent columns as spaces.
if(linebeg<lineend){
linebreak=dec(lineend);
FXASSERT(linebeg<=linebreak);
if(!Unicode::isSpace(getChar(linebreak))){
linebreak=lineend;
}
}
// Reset running variables
cc=0;
cx=tx;
cp=linebeg;
// Scan forward to get past left edge
do{
px=cx;
pc=cc;
pp=cp;
if(cp>=linebreak){ // Character past end of line
cx+=spacew;
cc+=1;
continue;
}
c=getChar(cp);
if(' '<=c){ // Normal character
cx+=font->getCharWidth(c);
cc+=1;
cp+=getCharLen(cp);
continue;
}
if(c=='\t'){ // Tab character
cx+=tabwidth-(cx-tx)%tabwidth;
cc+=tabcolumns-cc%tabcolumns;
cp+=1;
continue;
}
cx+=caretw+font->getCharWidth(c|0x40); // Control character
cc+=1;
cp+=1;
}
while(cx<leftclip);
// Roll back to just before edge
cx=px;
cc=pc;
cp=pp;
// First style to display
curstyle=styleOf(linebeg,lineend,row,cc,cp);
// Draw segments of uniformly styled text
do{
newstyle=styleOf(linebeg,lineend,row,cc,cp);
if(newstyle!=curstyle){ // Found a style change!
fillBufferRect(dc,px,ty,cx-px,th,curstyle);
if(curstyle&STYLE_TEXT) drawBufferText(dc,px,ty,cx-px,th,pp,cp-pp,curstyle);
curstyle=newstyle;
pp=cp;
pc=cc;
px=cx;
}
if(cp>=linebreak){ // Character past end of line
cx+=spacew;
cc+=1;
continue;
}
c=getChar(cp);
if(' '<=c){ // Normal character
cx+=font->getCharWidth(c);
cc+=1;
cp+=getCharLen(cp);
continue;
}
if(c=='\t'){ // Tab character
if(tcol==0){
cw=tabwidth-(cx-tx)%tabwidth;
tcol=tabcolumns-cc%tabcolumns;
twid=cw/tcol;
tadj=cw-twid*tcol;
}
cx+=twid+(tadj>0); // Mete out columns comprising the tab character
tcol-=1;
tadj-=1;
cc+=1;
cp+=(tcol==0);
continue;
}
cx+=caretw+font->getCharWidth(c|0x40); // Control character
cc+=1;
cp+=1;
}
while(cx<riteclip);
// Draw unfinished fragment
fillBufferRect(dc,px,ty,cx-px,th,curstyle);
if(curstyle&STYLE_TEXT) drawBufferText(dc,px,ty,cx-px,th,pp,cp-pp,curstyle);
}
// Repaint lines of text
// Erase margins, then draw text one line at a time to reduce flicker.
// Only draw if intersection of bar area and dirty rectangle is non-empty
void FXText::drawContents(FXDCWindow& dc) const {
FXint vx=getVisibleX();
FXint vy=getVisibleY();
FXint vw=getVisibleWidth();
FXint vh=getVisibleHeight();
dc.setClipRectangle(vx,vy,vw,vh);
if(0<dc.getClipWidth() && 0<dc.getClipHeight()){
FXint th,row,trow,brow;
dc.setForeground(backColor);
if(dc.getClipY()<=vy+margintop){
dc.fillRectangle(vx,vy,vw,margintop);
}
if(dc.getClipY()+dc.getClipHeight()>=vy+vh-marginbottom){
dc.fillRectangle(vx,vy+vh-marginbottom,vw,marginbottom);
}
if(dc.getClipX()<vx+marginleft){
dc.fillRectangle(vx,vy+margintop,marginleft,vh-margintop-marginbottom);
}
if(dc.getClipX()+dc.getClipWidth()>=vx+vw-marginright){
dc.fillRectangle(vx+vw-marginright,vy+margintop,marginright,vh-margintop-marginbottom);
}
th=font->getFontHeight();
trow=(dc.getClipY()-pos_y-vy-margintop)/th;
brow=(dc.getClipY()+dc.getClipHeight()-pos_y-vy-margintop)/th;
if(trow<=toprow) trow=toprow;
if(brow>=toprow+nvisrows) brow=toprow+nvisrows-1;
dc.setClipRectangle(vx+marginleft,vy+margintop,vw-marginright-marginleft,vh-margintop-marginbottom);
for(row=trow; row<=brow; row++){
drawTextRow(dc,row);
}
}
}
// Repaint line numbers
// Erase and redraw number one at a time, instead of erasing all background
// and then drawing numbers on top; this leads to less flicker.
// Only draw if intersection of bar area and dirty rectangle is non-empty
void FXText::drawNumbers(FXDCWindow& dc) const {
FXint vx=getVisibleX();
FXint vy=getVisibleY();
FXint vh=getVisibleHeight();
dc.setClipRectangle(0,vy,vx,vh);
if(0<dc.getClipWidth() && 0<dc.getClipHeight()){
FXint tw,th,trow,brow,row,n;
FXchar number[20];
dc.setForeground(barColor);
if(dc.getClipY()<=vy+margintop){
dc.fillRectangle(0,vy,vx,margintop);
}
if(dc.getClipY()+dc.getClipHeight()>=vy+vh-marginbottom){
dc.fillRectangle(0,vy+vh-marginbottom,vx,marginbottom);
}
th=font->getFontHeight();
trow=(dc.getClipY()-pos_y-vy-margintop)/th;
brow=(dc.getClipY()+dc.getClipHeight()-pos_y-vy-margintop)/th;
if(trow<=toprow) trow=toprow;
if(brow>=toprow+nvisrows) brow=toprow+nvisrows;
dc.setClipRectangle(0,vy+margintop,vx,vh-margintop-marginbottom);
for(row=trow; row<=brow; row++){
n=__snprintf(number,sizeof(number),"%d",row+1);
tw=font->getTextWidth(number,n);
dc.setForeground(barColor);
dc.fillRectangle(0,pos_y+vy+margintop+row*th,vx,th);
dc.setForeground(numberColor);
dc.drawText(vx-tw,pos_y+vy+margintop+row*th+font->getFontAscent(),number,n);
}
}
}
// Repaint the row
void FXText::updateRow(FXint row) const {
if(toprow<=row && row<=toprow+nvisrows){
update(getVisibleX(),getVisibleY()+margintop+pos_y+row*font->getFontHeight(),getVisibleWidth(),font->getFontHeight());
}
}
// Repaint whole lines
void FXText::updateLines(FXint startpos,FXint endpos) const {
FXint b,e;
FXMINMAX(b,e,startpos,endpos);
if(b<=visrows[nvisrows] && visrows[0]<e){
FXint tr=rowFromPos(FXMAX(b,visrows[0]));
FXint br=rowFromPos(FXMIN(e,visrows[nvisrows-1]));
FXint ty=getVisibleY()+margintop+pos_y+tr*font->getFontHeight();
FXint by=getVisibleY()+margintop+pos_y+br*font->getFontHeight()+font->getFontHeight();
update(getVisibleX(),ty,getVisibleWidth(),by-ty);
}
}
// Repaint minimal range; newline spans to edge of window!
void FXText::updateRange(FXint startpos,FXint endpos) const {
FXint b,e;
FXMINMAX(b,e,startpos,endpos);
if(b<=visrows[nvisrows] && visrows[0]<e){
FXint tr=rowFromPos(FXMAX(b,visrows[0]));
FXint br=rowFromPos(FXMIN(e,visrows[nvisrows-1]));
FXint vx=getVisibleX();
FXint vy=getVisibleY();
FXint vw=getVisibleWidth();
FXint th=font->getFontHeight();
FXint ty=vy+pos_y+margintop+tr*th;
FXint by=vy+pos_y+margintop+br*th+th;
FXint lx=vx;
FXint rx=vx+vw;
if(tr==br){
lx=vx+pos_x+marginleft+xoffset(visrows[tr-toprow],b);
if(e<=(visrows[tr-toprow+1]-1)){
rx=vx+pos_x+marginleft+xoffset(visrows[tr-toprow],e);
}
}
update(lx,ty,rx-lx,by-ty);
}
}
// Draw the text
long FXText::onPaint(FXObject*,FXSelector,void* ptr){
FXDCWindow dc(this,(FXEvent*)ptr);
// Set font
dc.setFont(font);
//dc.setForeground(FXRGB(255,0,0));
//dc.fillRectangle(0,0,width,height);
// Paint text
drawContents(dc);
// Paint line numbers if turned on
if(barwidth){
drawNumbers(dc);
}
// Paint cursor
if(flags&FLAG_CARET){
paintCursor(dc);
}
return 1;
}
/*******************************************************************************/
// Blink the cursor
long FXText::onBlink(FXObject*,FXSelector,void*){
drawCursor(blink);
blink^=FLAG_CARET;
getApp()->addTimeout(this,ID_BLINK,getApp()->getBlinkSpeed());
return 0;
}
// Flash matching brace
long FXText::onFlash(FXObject*,FXSelector,void*){
killHighlight();
return 0;
}
// Start motion timer while in this window
long FXText::onEnter(FXObject* sender,FXSelector sel,void* ptr){
FXScrollArea::onEnter(sender,sel,ptr);
getApp()->addTimeout(this,ID_TIPTIMER,getApp()->getMenuPause());
return 1;
}
// Stop motion timer when leaving window
long FXText::onLeave(FXObject* sender,FXSelector sel,void* ptr){
FXScrollArea::onLeave(sender,sel,ptr);
getApp()->removeTimeout(this,ID_TIPTIMER);
return 1;
}
// Gained focus
long FXText::onFocusIn(FXObject* sender,FXSelector sel,void* ptr){
FXScrollArea::onFocusIn(sender,sel,ptr);
if(isEditable()){
getApp()->addTimeout(this,ID_BLINK,getApp()->getBlinkSpeed());
drawCursor(FLAG_CARET);
}
return 1;
}
// Lost focus
long FXText::onFocusOut(FXObject* sender,FXSelector sel,void* ptr){
FXScrollArea::onFocusOut(sender,sel,ptr);
if(isEditable()){
getApp()->removeTimeout(this,ID_BLINK);
drawCursor(0);
}
flags|=FLAG_UPDATE;
return 1;
}
/*******************************************************************************/
// Update value from a message
long FXText::onCmdSetStringValue(FXObject*,FXSelector,void* ptr){
setText(*((FXString*)ptr));
return 1;
}
// Obtain value from text
long FXText::onCmdGetStringValue(FXObject*,FXSelector,void* ptr){
getText(*((FXString*)ptr));
return 1;
}
/*******************************************************************************/
// Set tip using a message
long FXText::onCmdSetTip(FXObject*,FXSelector,void* ptr){
setTipText(*((FXString*)ptr));
return 1;
}
// Get tip using a message
long FXText::onCmdGetTip(FXObject*,FXSelector,void* ptr){
*((FXString*)ptr)=getTipText();
return 1;
}
// Set help using a message
long FXText::onCmdSetHelp(FXObject*,FXSelector,void* ptr){
setHelpText(*((FXString*)ptr));
return 1;
}
// Get help using a message
long FXText::onCmdGetHelp(FXObject*,FXSelector,void* ptr){
*((FXString*)ptr)=getHelpText();
return 1;
}
// We were asked about tip text
long FXText::onQueryTip(FXObject* sender,FXSelector sel,void* ptr){
if(FXScrollArea::onQueryTip(sender,sel,ptr)) return 1;
if((flags&FLAG_TIP) && !tip.empty()){
sender->handle(this,FXSEL(SEL_COMMAND,ID_SETSTRINGVALUE),(void*)&tip);
return 1;
}
return 0;
}
// We were asked about status text
long FXText::onQueryHelp(FXObject* sender,FXSelector sel,void* ptr){
if(FXScrollArea::onQueryHelp(sender,sel,ptr)) return 1;
if((flags&FLAG_HELP) && !help.empty()){
sender->handle(this,FXSEL(SEL_COMMAND,ID_SETSTRINGVALUE),(void*)&help);
return 1;
}
return 0;
}
// Update somebody who wants to change the text
long FXText::onUpdIsEditable(FXObject* sender,FXSelector,void*){
sender->handle(this,isEditable()?FXSEL(SEL_COMMAND,ID_ENABLE):FXSEL(SEL_COMMAND,ID_DISABLE),nullptr);
return 1;
}
// Update somebody who works on the selection
long FXText::onUpdHaveSelection(FXObject* sender,FXSelector,void*){
FXbool selection=((select.startcol<select.endcol) && (select.startpos<=select.endpos)) || ((select.startcol>select.endcol) && (select.startpos<select.endpos));
sender->handle(this,selection?FXSEL(SEL_COMMAND,ID_ENABLE):FXSEL(SEL_COMMAND,ID_DISABLE),nullptr);
return 1;
}
// Update somebody who works on the selection and change the text
long FXText::onUpdHaveEditableSelection(FXObject* sender,FXSelector,void*){
FXbool selection=((select.startcol<select.endcol) && (select.startpos<=select.endpos)) || ((select.startcol>select.endcol) && (select.startpos<select.endpos));
sender->handle(this,isEditable() && selection?FXSEL(SEL_COMMAND,ID_ENABLE):FXSEL(SEL_COMMAND,ID_DISABLE),nullptr);
return 1;
}
// Start input method editor
long FXText::onIMEStart(FXObject*,FXSelector,void*){
if(isEditable()){
if(getComposeContext()){
FXint th=font->getFontHeight();
FXint cursory=getVisibleY()+margintop+pos_y+(cursorrow*th)+th;
if(getVisibleY()<=cursory+th && cursory<=getVisibleY()+getVisibleHeight()){
FXASSERT(0<=cursorrow-toprow && cursorrow-toprow<nvisrows);
FXint cursorstart=visrows[cursorrow-toprow];
FXint cursorx=getVisibleX()+marginleft+pos_x+xoffset(cursorstart,cursorpos)-1;
getComposeContext()->setSpot(cursorx,cursory);
}
}
return 1;
}
return 0;
}
/*******************************************************************************/
// Start a drag operation
long FXText::onBeginDrag(FXObject* sender,FXSelector sel,void* ptr){
if(!FXScrollArea::onBeginDrag(sender,sel,ptr)){
FXDragType types[4]={stringType,textType,utf8Type,utf16Type};
beginDrag(types,ARRAYNUMBER(types));
setDragCursor(getApp()->getDefaultCursor(DEF_DNDSTOP_CURSOR));
}
return 1;
}
// End drag operation
long FXText::onEndDrag(FXObject* sender,FXSelector sel,void* ptr){
if(!FXScrollArea::onEndDrag(sender,sel,ptr)){
endDrag((didAccept()!=DRAG_REJECT));
setDragCursor(getApp()->getDefaultCursor(DEF_TEXT_CURSOR));
}
return 1;
}
// Dragged stuff around
long FXText::onDragged(FXObject* sender,FXSelector sel,void* ptr){
if(!FXScrollArea::onDragged(sender,sel,ptr)){
FXDragAction action=DRAG_COPY;
if(isEditable()){
if(isDropTarget()) action=DRAG_MOVE;
if(((FXEvent*)ptr)->state&CONTROLMASK) action=DRAG_COPY;
if(((FXEvent*)ptr)->state&SHIFTMASK) action=DRAG_MOVE;
}
handleDrag(((FXEvent*)ptr)->root_x,((FXEvent*)ptr)->root_y,action);
action=didAccept();
switch(action){
case DRAG_MOVE:
setDragCursor(getApp()->getDefaultCursor(DEF_DNDMOVE_CURSOR));
break;
case DRAG_COPY:
setDragCursor(getApp()->getDefaultCursor(DEF_DNDCOPY_CURSOR));
break;
default:
setDragCursor(getApp()->getDefaultCursor(DEF_DNDSTOP_CURSOR));
break;
}
}
return 1;
}
// Handle drag-and-drop enter
long FXText::onDNDEnter(FXObject* sender,FXSelector sel,void* ptr){
FXScrollArea::onDNDEnter(sender,sel,ptr);
if(isEditable()){
drawCursor(FLAG_CARET);
}
return 1;
}
// Handle drag-and-drop leave
long FXText::onDNDLeave(FXObject* sender,FXSelector sel,void* ptr){
FXScrollArea::onDNDLeave(sender,sel,ptr);
stopAutoScroll();
if(isEditable()){
drawCursor(0);
}
return 1;
}
// Handle drag-and-drop motion
long FXText::onDNDMotion(FXObject* sender,FXSelector sel,void* ptr){
FXEvent* event=(FXEvent*)ptr;
// Scroll into view
if(startAutoScroll(event,true)) return 1;
// Handled elsewhere
if(FXScrollArea::onDNDMotion(sender,sel,ptr)) return 1;
// Correct drop type
if(offeredDNDType(FROM_DRAGNDROP,textType) || offeredDNDType(FROM_DRAGNDROP,stringType) || offeredDNDType(FROM_DRAGNDROP,utf8Type) || offeredDNDType(FROM_DRAGNDROP,utf16Type)){
// Is target editable?
if(isEditable()){
FXDragAction action=inquireDNDAction();
// Check for legal DND action
if(action==DRAG_COPY || action==DRAG_MOVE){
FXint pos,row,col;
// Get the suggested drop position
pos=getRowColumnAt(event->win_x,event->win_y,row,col);
// Move cursor to new position
setCursorPos(pos,true);
// We don't accept a drop on the selection
if(!isPosSelected(pos,col)){
acceptDrop(DRAG_ACCEPT);
}
}
}
return 1;
}
// Didn't handle it here
return 0;
}
// Handle drag-and-drop drop
long FXText::onDNDDrop(FXObject* sender,FXSelector sel,void* ptr){
// Stop scrolling
stopAutoScroll();
drawCursor(0);
// Try handling it in base class first
if(FXScrollArea::onDNDDrop(sender,sel,ptr)) return 1;
// Should really not have gotten this if non-editable
if(isEditable()){
FXString string;
FXString junk;
// First, try UTF-8
if(getDNDData(FROM_DRAGNDROP,utf8Type,string)){
if(inquireDNDAction()==DRAG_MOVE){
getDNDData(FROM_DRAGNDROP,deleteType,junk);
}
replaceText(cursorpos,0,string,true);
setCursorPos(cursorpos,true);
return 1;
}
// Next, try UTF-16
if(getDNDData(FROM_DRAGNDROP,utf16Type,string)){
if(inquireDNDAction()==DRAG_MOVE){
getDNDData(FROM_DRAGNDROP,deleteType,junk);
}
replaceText(cursorpos,0,string,true);
setCursorPos(cursorpos,true);
return 1;
}
// Next, try good old Latin-1
if(getDNDData(FROM_DRAGNDROP,textType,string)){
if(inquireDNDAction()==DRAG_MOVE){
getDNDData(FROM_DRAGNDROP,deleteType,junk);
}
replaceText(cursorpos,0,string,true);
setCursorPos(cursorpos,true);
return 1;
}
return 1;
}
return 0;
}
// Service requested DND data
long FXText::onDNDRequest(FXObject* sender,FXSelector sel,void* ptr){
FXEvent *event=(FXEvent*)ptr;
// Perhaps the target wants to supply its own data
if(FXScrollArea::onDNDRequest(sender,sel,ptr)) return 1;
// Recognize the request?
if(event->target==stringType || event->target==textType || event->target==utf8Type || event->target==utf16Type){
FXString string;
// Get selected fragment
string=getSelectedText();
// Return text of the selection as UTF-8
if(event->target==utf8Type){
setDNDData(FROM_DRAGNDROP,event->target,string);
return 1;
}
// Return text of the selection translated to 8859-1
if(event->target==stringType || event->target==textType){
setDNDData(FROM_DRAGNDROP,event->target,string);
return 1;
}
// Return text of the selection translated to UTF-16
if(event->target==utf16Type){
setDNDData(FROM_DRAGNDROP,event->target,string);
return 1;
}
}
// Delete dragged text, if editable
if(event->target==deleteType){
if(isEditable()){
if(select.startcol<=select.endcol){
removeTextBlock(select.startpos,select.endpos,select.startcol,select.endcol,true);
}
else{
removeText(select.startpos,select.endpos-select.startpos,true);
}
}
return 1;
}
return 0;
}
/*******************************************************************************/
// We now really do have the selection
long FXText::onSelectionGained(FXObject* sender,FXSelector sel,void* ptr){
FXScrollArea::onSelectionGained(sender,sel,ptr);
return 1;
}
// We lost the selection somehow
long FXText::onSelectionLost(FXObject* sender,FXSelector sel,void* ptr){
FXScrollArea::onSelectionLost(sender,sel,ptr);
if(target){
FXint what[4];
what[0]=select.startpos;
what[1]=select.endpos-select.startpos;
what[2]=select.startcol;
what[3]=select.endcol-select.startcol;
target->tryHandle(this,FXSEL(SEL_DESELECTED,message),(void*)what);
}
updateRange(select.startpos,select.endpos);
select.startpos=0;
select.endpos=-1;
select.startcol=0;
select.endcol=-1;
return 1;
}
// Somebody wants our selection
long FXText::onSelectionRequest(FXObject* sender,FXSelector sel,void* ptr){
FXEvent *event=(FXEvent*)ptr;
// Perhaps the target wants to supply its own data for the selection
if(FXScrollArea::onSelectionRequest(sender,sel,ptr)) return 1;
// Recognize the request?
if(event->target==stringType || event->target==textType || event->target==utf8Type || event->target==utf16Type){
// Get selected fragment
FXString string=getSelectedText();
// Return text of the selection as UTF-8
if(event->target==utf8Type){
setDNDData(FROM_SELECTION,event->target,string);
return 1;
}
// Return text of the selection translated to 8859-1
if(event->target==stringType || event->target==textType){
setDNDData(FROM_SELECTION,event->target,string);
return 1;
}
// Return text of the selection translated to UTF-16
if(event->target==utf16Type){
setDNDData(FROM_SELECTION,event->target,string);
return 1;
}
}
return 0;
}
/*******************************************************************************/
// We now really do have the selection
long FXText::onClipboardGained(FXObject* sender,FXSelector sel,void* ptr){
FXScrollArea::onClipboardGained(sender,sel,ptr);
return 1;
}
// We lost the selection somehow
long FXText::onClipboardLost(FXObject* sender,FXSelector sel,void* ptr){
FXScrollArea::onClipboardLost(sender,sel,ptr);
clipped.clear();
return 1;
}
// Somebody wants our selection
long FXText::onClipboardRequest(FXObject* sender,FXSelector sel,void* ptr){
FXEvent *event=(FXEvent*)ptr;
FXString string=clipped;
// Try handling it in base class first
if(FXScrollArea::onClipboardRequest(sender,sel,ptr)) return 1;
// Requested data from clipboard
if(event->target==stringType || event->target==textType || event->target==utf8Type || event->target==utf16Type){
// Expand newlines to CRLF on Windows
#ifdef WIN32
unixToDos(string);
#endif
// Return clipped text as as UTF-8
if(event->target==utf8Type){
setDNDData(FROM_CLIPBOARD,event->target,string);
return 1;
}
// Return clipped text translated to 8859-1
if(event->target==stringType || event->target==textType){
setDNDData(FROM_CLIPBOARD,event->target,string);
return 1;
}
// Return text of the selection translated to UTF-16
if(event->target==utf16Type){
setDNDData(FROM_CLIPBOARD,event->target,string);
return 1;
}
}
return 0;
}
/*******************************************************************************/
// Pressed left button
long FXText::onLeftBtnPress(FXObject*,FXSelector,void* ptr){
FXEvent* event=(FXEvent*)ptr;
FXint pos,row,col;
flags&=~FLAG_TIP;
handle(this,FXSEL(SEL_FOCUS_SELF,0),ptr);
if(isEnabled()){
grab();
if(target && target->tryHandle(this,FXSEL(SEL_LEFTBUTTONPRESS,message),ptr)) return 1;
grabx=event->win_x-pos_x;
graby=event->win_y-pos_y;
if(event->click_count==1){
pos=getRowColumnAt(event->win_x,event->win_y,row,col);
if((event->state&CONTROLMASK) && !(options&TEXT_WORDWRAP)){
if(event->state&SHIFTMASK){ // Shift-select block
moveCursorRowColumnAndSelect(row,col,true);
}
else{ // Drag select block
moveCursorRowColumn(row,col,true);
}
mode=MOUSE_BLOCK;
}
else{
if(event->state&SHIFTMASK){ // Shift-select range
moveCursorAndSelect(pos,SelectChars,true);
}
else{ // Drag select range
moveCursor(pos,true);
}
mode=MOUSE_CHARS;
}
}
else if(event->click_count==2){ // Drag select words
pos=getPosContaining(event->win_x,event->win_y);
setAnchorPos(pos);
moveCursorAndSelect(pos,SelectWords,true);
mode=MOUSE_WORDS;
}
else{ // Drag select lines
pos=getPosAt(event->win_x,event->win_y);
moveCursorAndSelect(pos,SelectLines,true);
mode=MOUSE_LINES;
}
flags&=~FLAG_UPDATE;
return 1;
}
return 0;
}
// Released left button
long FXText::onLeftBtnRelease(FXObject*,FXSelector,void* ptr){
if(isEnabled()){
ungrab();
mode=MOUSE_NONE;
stopAutoScroll();
if(target && target->tryHandle(this,FXSEL(SEL_LEFTBUTTONRELEASE,message),ptr)) return 1;
return 1;
}
return 0;
}
// Pressed middle button
long FXText::onMiddleBtnPress(FXObject*,FXSelector,void* ptr){
FXEvent* event=(FXEvent*)ptr;
FXint pos,row,col;
flags&=~FLAG_TIP;
handle(this,FXSEL(SEL_FOCUS_SELF,0),ptr);
if(isEnabled()){
grab();
if(target && target->tryHandle(this,FXSEL(SEL_MIDDLEBUTTONPRESS,message),ptr)) return 1;
pos=getRowColumnAt(event->win_x,event->win_y,row,col);
setCursorPos(pos,true);
setAnchorPos(cursorpos);
if(isPosSelected(cursorpos,col)){
mode=MOUSE_TRYDRAG;
}
flags&=~FLAG_UPDATE;
return 1;
}
return 0;
}
// Released middle button
long FXText::onMiddleBtnRelease(FXObject*,FXSelector,void* ptr){
FXuint md=mode;
if(isEnabled()){
ungrab();
stopAutoScroll();
mode=MOUSE_NONE;
if(target && target->tryHandle(this,FXSEL(SEL_MIDDLEBUTTONRELEASE,message),ptr)) return 1;
if(md==MOUSE_DRAG){
handle(this,FXSEL(SEL_ENDDRAG,0),ptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_PASTE_MIDDLE),nullptr);
}
return 1;
}
return 0;
}
// Pressed right button
long FXText::onRightBtnPress(FXObject*,FXSelector,void* ptr){
FXEvent* event=(FXEvent*)ptr;
flags&=~FLAG_TIP;
handle(this,FXSEL(SEL_FOCUS_SELF,0),ptr);
if(isEnabled()){
grab();
if(target && target->tryHandle(this,FXSEL(SEL_RIGHTBUTTONPRESS,message),ptr)) return 1;
grabx=event->win_x-pos_x;
graby=event->win_y-pos_y;
mode=MOUSE_SCROLL;
flags&=~FLAG_UPDATE;
return 1;
}
return 0;
}
// Released right button
long FXText::onRightBtnRelease(FXObject*,FXSelector,void* ptr){
if(isEnabled()){
ungrab();
mode=MOUSE_NONE;
if(target && target->tryHandle(this,FXSEL(SEL_RIGHTBUTTONRELEASE,message),ptr)) return 1;
return 1;
}
return 0;
}
// Handle real or simulated mouse motion
long FXText::onMotion(FXObject*,FXSelector,void* ptr){
FXEvent* event=(FXEvent*)ptr;
FXint pos,row,col;
flags&=~FLAG_TIP;
getApp()->removeTimeout(this,ID_TIPTIMER);
switch(mode){
case MOUSE_NONE:
getApp()->addTimeout(this,ID_TIPTIMER,getApp()->getMenuPause());
return 1;
case MOUSE_CHARS:
if(startAutoScroll(event,false)) return 1;
if((Math::iabs(event->win_x-grabx-pos_x)>getApp()->getDragDelta())||(Math::iabs(event->win_y-graby-pos_y)>getApp()->getDragDelta())){
killHighlight();
pos=getPosAt(event->win_x,event->win_y);
setCursorPos(pos,true);
extendSelection(cursorpos,SelectChars,true);
}
return 1;
case MOUSE_WORDS:
if(startAutoScroll(event,false)) return 1;
if((Math::iabs(event->win_x-grabx-pos_x)>getApp()->getDragDelta())||(Math::iabs(event->win_y-graby-pos_y)>getApp()->getDragDelta())){
killHighlight();
pos=getPosContaining(event->win_x,event->win_y);
setCursorPos(pos,true);
extendSelection(cursorpos,SelectWords,true);
}
return 1;
case MOUSE_LINES:
if(startAutoScroll(event,false)) return 1;
if((Math::iabs(event->win_x-grabx-pos_x)>getApp()->getDragDelta())||(Math::iabs(event->win_y-graby-pos_y)>getApp()->getDragDelta())){
killHighlight();
pos=getPosAt(event->win_x,event->win_y);
setCursorPos(pos,true);
extendSelection(cursorpos,SelectLines,true);
}
return 1;
case MOUSE_BLOCK:
if(startAutoScroll(event,false)) return 1;
if((Math::iabs(event->win_x-grabx-pos_x)>getApp()->getDragDelta())||(Math::iabs(event->win_y-graby-pos_y)>getApp()->getDragDelta())){
killHighlight();
getRowColumnAt(event->win_x,event->win_y,row,col);
setCursorRowColumn(row,col,true);
extendBlockSelection(row,col,true);
}
return 1;
case MOUSE_SCROLL:
setPosition(event->win_x-grabx,event->win_y-graby);
return 1;
case MOUSE_DRAG:
handle(this,FXSEL(SEL_DRAGGED,0),ptr);
return 1;
case MOUSE_TRYDRAG:
if(event->moved){
mode=MOUSE_NONE;
if(handle(this,FXSEL(SEL_BEGINDRAG,0),ptr)){
mode=MOUSE_DRAG;
}
}
return 1;
}
return 0;
}
// Autoscroll timer fired; autoscrolling hysteresis is based on movement
// relative to the original document position of the click, in case the
// click-position is close to the autoscrolling fudge-border.
long FXText::onAutoScroll(FXObject* sender,FXSelector sel,void* ptr){
FXEvent* event=(FXEvent*)ptr;
FXint pos,row,col;
FXScrollArea::onAutoScroll(sender,sel,ptr);
switch(mode){
case MOUSE_CHARS:
if((Math::iabs(event->win_x-grabx-pos_x)>getApp()->getDragDelta())||(Math::iabs(event->win_y-graby-pos_y)>getApp()->getDragDelta())){
killHighlight();
pos=getPosAt(event->win_x,event->win_y);
extendSelection(pos,SelectChars,true);
setCursorPos(pos,true);
}
return 1;
case MOUSE_WORDS:
if((Math::iabs(event->win_x-grabx-pos_x)>getApp()->getDragDelta())||(Math::iabs(event->win_y-graby-pos_y)>getApp()->getDragDelta())){
killHighlight();
pos=getPosContaining(event->win_x,event->win_y);
extendSelection(pos,SelectWords,true);
setCursorPos(pos,true);
}
return 1;
case MOUSE_LINES:
if((Math::iabs(event->win_x-grabx-pos_x)>getApp()->getDragDelta())||(Math::iabs(event->win_y-graby-pos_y)>getApp()->getDragDelta())){
killHighlight();
pos=getPosAt(event->win_x,event->win_y);
extendSelection(pos,SelectLines,true);
setCursorPos(pos,true);
}
return 1;
case MOUSE_BLOCK:
if((Math::iabs(event->win_x-grabx-pos_x)>getApp()->getDragDelta())||(Math::iabs(event->win_y-graby-pos_y)>getApp()->getDragDelta())){
killHighlight();
getRowColumnAt(event->win_x,event->win_y,row,col);
extendBlockSelection(row,col,true);
setCursorRowColumn(row,col,true);
}
return 1;
}
return 0;
}
// The widget lost the grab for some reason
long FXText::onUngrabbed(FXObject* sender,FXSelector sel,void* ptr){
FXScrollArea::onUngrabbed(sender,sel,ptr);
mode=MOUSE_NONE;
flags|=FLAG_UPDATE;
stopAutoScroll();
return 1;
}
// Mouse hovered a while
long FXText::onTipTimer(FXObject*,FXSelector,void*){
FXTRACE((250,"%s::onTipTimer %p\n",getClassName(),this));
flags|=FLAG_TIP;
return 1;
}
/*******************************************************************************/
// Keyboard press
long FXText::onKeyPress(FXObject*,FXSelector,void* ptr){
flags&=~FLAG_TIP;
if(isEnabled()){
FXEvent* event=(FXEvent*)ptr;
FXTRACE((TOPIC_KEYBOARD,"%s::onKeyPress keysym=0x%04x state=%04x\n",getClassName(),event->code,event->state));
if(target && target->tryHandle(this,FXSEL(SEL_KEYPRESS,message),ptr)) return 1;
flags&=~FLAG_UPDATE;
switch(event->code){
case KEY_Shift_L:
case KEY_Shift_R:
case KEY_Control_L:
case KEY_Control_R:
if(mode==MOUSE_DRAG){handle(this,FXSEL(SEL_DRAGGED,0),ptr);}
return 1;
case KEY_Up:
case KEY_KP_Up:
if(event->state&CONTROLMASK){
handle(this,FXSEL(SEL_COMMAND,ID_SCROLL_UP),nullptr);
}
else if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_UP),nullptr);
}
else if(event->state&ALTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_ALT_UP),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_UP),nullptr);
}
break;
case KEY_Down:
case KEY_KP_Down:
if(event->state&CONTROLMASK){
handle(this,FXSEL(SEL_COMMAND,ID_SCROLL_DOWN),nullptr);
}
else if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_DOWN),nullptr);
}
else if(event->state&ALTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_ALT_DOWN),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_DOWN),nullptr);
}
break;
case KEY_Left:
case KEY_KP_Left:
if(event->state&CONTROLMASK){
if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_WORD_LEFT),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_WORD_LEFT),nullptr);
}
}
else{
if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_LEFT),nullptr);
}
else if(event->state&ALTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_ALT_LEFT),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_LEFT),nullptr);
}
}
break;
case KEY_Right:
case KEY_KP_Right:
if(event->state&CONTROLMASK){
if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_WORD_RIGHT),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_WORD_RIGHT),nullptr);
}
}
else{
if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_RIGHT),nullptr);
}
else if(event->state&ALTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_ALT_RIGHT),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_RIGHT),nullptr);
}
}
break;
case KEY_Home:
case KEY_KP_Home:
if(event->state&CONTROLMASK){
if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_TOP),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_TOP),nullptr);
}
}
else{
if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_HOME),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_HOME),nullptr);
}
}
break;
case KEY_End:
case KEY_KP_End:
if(event->state&CONTROLMASK){
if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_BOTTOM),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_BOTTOM),nullptr);
}
}
else{
if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_END),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_END),nullptr);
}
}
break;
case KEY_Page_Up:
case KEY_KP_Page_Up:
if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_PAGEUP),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_PAGEUP),nullptr);
}
break;
case KEY_Page_Down:
case KEY_KP_Page_Down:
if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_SHIFT_PAGEDOWN),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_CURSOR_PAGEDOWN),nullptr);
}
break;
case KEY_Insert:
case KEY_KP_Insert:
if(event->state&CONTROLMASK){
handle(this,FXSEL(SEL_COMMAND,ID_COPY_SEL),nullptr);
}
else if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_PASTE_SEL),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_TOGGLE_OVERSTRIKE),nullptr);
}
break;
case KEY_Delete:
case KEY_KP_Delete:
if(event->state&CONTROLMASK){
handle(this,FXSEL(SEL_COMMAND,ID_DELETE_WORD),nullptr);
}
else if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_DELETE_EOL),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_DELETE_CHAR),nullptr);
}
break;
case KEY_BackSpace:
if(event->state&CONTROLMASK){
handle(this,FXSEL(SEL_COMMAND,ID_BACKSPACE_WORD),nullptr);
}
else if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_BACKSPACE_BOL),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_BACKSPACE_CHAR),nullptr);
}
break;
case KEY_Return:
case KEY_KP_Enter:
if(event->state&CONTROLMASK){
handle(this,FXSEL(SEL_COMMAND,ID_INSERT_NEWLINE_ONLY),nullptr);
}
else if(event->state&SHIFTMASK){
handle(this,FXSEL(SEL_COMMAND,ID_INSERT_NEWLINE_INDENT),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_INSERT_NEWLINE),nullptr);
}
break;
case KEY_Tab:
case KEY_KP_Tab:
if(event->state&CONTROLMASK){
handle(this,FXSEL(SEL_COMMAND,ID_INSERT_HARDTAB),nullptr);
}
else{
handle(this,FXSEL(SEL_COMMAND,ID_INSERT_TAB),nullptr);
}
break;
case KEY_a:
if(!(event->state&CONTROLMASK)) goto ins;
handle(this,FXSEL(SEL_COMMAND,ID_SELECT_ALL),nullptr);
break;
case KEY_x:
if(!(event->state&CONTROLMASK)) goto ins;
case KEY_F20: // Sun Cut key
handle(this,FXSEL(SEL_COMMAND,ID_CUT_SEL),nullptr);
break;
case KEY_c:
if(!(event->state&CONTROLMASK)) goto ins;
case KEY_F16: // Sun Copy key
handle(this,FXSEL(SEL_COMMAND,ID_COPY_SEL),nullptr);
break;
case KEY_v:
if(!(event->state&CONTROLMASK)) goto ins;
case KEY_F18: // Sun Paste key
handle(this,FXSEL(SEL_COMMAND,ID_PASTE_SEL),nullptr);
break;
case KEY_k:
if(!(event->state&CONTROLMASK)) goto ins;
handle(this,FXSEL(SEL_COMMAND,ID_DELETE_LINE),nullptr);
break;
case KEY_j:
if(!(event->state&CONTROLMASK)) goto ins;
handle(this,FXSEL(SEL_COMMAND,ID_JOIN_LINES),nullptr);
break;
default:
ins: if((event->state&(CONTROLMASK|ALTMASK)) || ((FXuchar)event->text[0]<32)) return 0;
handle(this,FXSEL(SEL_COMMAND,ID_INSERT_STRING),(void*)event->text.text());
break;
}
return 1;
}
return 0;
}
// Keyboard release
long FXText::onKeyRelease(FXObject*,FXSelector,void* ptr){
if(isEnabled()){
FXEvent* event=(FXEvent*)ptr;
FXTRACE((TOPIC_KEYBOARD,"%s::onKeyRelease keysym=0x%04x state=%04x\n",getClassName(),event->code,event->state));
if(target && target->tryHandle(this,FXSEL(SEL_KEYRELEASE,message),ptr)) return 1;
switch(event->code){
case KEY_Shift_L:
case KEY_Shift_R:
case KEY_Control_L:
case KEY_Control_R:
if(mode==MOUSE_DRAG){handle(this,FXSEL(SEL_DRAGGED,0),ptr);}
return 1;
}
}
return 0;
}
/*******************************************************************************/
// Move cursor to top of buffer
long FXText::onCmdCursorTop(FXObject*,FXSelector,void*){
moveCursor(0,true);
return 1;
}
// Move cursor to bottom of buffer
long FXText::onCmdCursorBottom(FXObject*,FXSelector,void*){
moveCursor(length,true);
return 1;
}
// Move cursor to begin of line
long FXText::onCmdCursorHome(FXObject*,FXSelector,void*){
moveCursor(lineStart(cursorpos),true);
return 1;
}
// Move cursor to end of line
long FXText::onCmdCursorEnd(FXObject*,FXSelector,void*){
moveCursor(lineEnd(cursorpos),true);
return 1;
}
// Process cursor right
long FXText::onCmdCursorRight(FXObject*,FXSelector,void*){
moveCursor(cursorpos<length?inc(cursorpos):length,true);
return 1;
}
// Process cursor left
long FXText::onCmdCursorLeft(FXObject*,FXSelector,void*){
moveCursor(0<cursorpos?dec(cursorpos):0,true);
return 1;
}
// Process cursor up
long FXText::onCmdCursorUp(FXObject*,FXSelector,void*){
FXint col=(0<=prefcol) ? prefcol : cursorcol;
moveCursor(posFromColumn(prevRow(cursorpos),col),true);
prefcol=col;
return 1;
}
// Process cursor down
long FXText::onCmdCursorDown(FXObject*,FXSelector,void*){
FXint col=(0<=prefcol) ? prefcol : cursorcol;
moveCursor(posFromColumn(nextRow(cursorpos),col),true);
prefcol=col;
return 1;
}
// Page up
long FXText::onCmdCursorPageUp(FXObject*,FXSelector,void*){
FXint col=(0<=prefcol) ? prefcol : cursorcol;
FXint lines=Math::imax(nvisrows-2,1);
setTopLine(prevRow(toppos,lines));
moveCursor(posFromColumn(prevRow(cursorpos,lines),col),true);
prefcol=col;
return 1;
}
// Page down
long FXText::onCmdCursorPageDown(FXObject*,FXSelector,void*){
FXint col=(0<=prefcol) ? prefcol : cursorcol;
FXint lines=Math::imax(nvisrows-2,1);
setTopLine(nextRow(toppos,lines));
moveCursor(posFromColumn(nextRow(cursorpos,lines),col),true);
prefcol=col;
return 1;
}
// Process cursor word left
long FXText::onCmdCursorWordLeft(FXObject*,FXSelector,void*){
moveCursor(leftWord(cursorpos),true);
return 1;
}
// Process cursor word right
long FXText::onCmdCursorWordRight(FXObject*,FXSelector,void*){
moveCursor(rightWord(cursorpos),true);
return 1;
}
// Process cursor shift+top
long FXText::onCmdCursorShiftTop(FXObject*,FXSelector,void*){
moveCursorAndSelect(0,SelectChars,true);
return 1;
}
// Process cursor shift+bottom
long FXText::onCmdCursorShiftBottom(FXObject*,FXSelector,void*){
moveCursorAndSelect(length,SelectChars,true);
return 1;
}
// Process cursor shift+home
long FXText::onCmdCursorShiftHome(FXObject*,FXSelector,void*){
moveCursorAndSelect(lineStart(cursorpos),SelectChars,true);
return 1;
}
// Process cursor shift+end
long FXText::onCmdCursorShiftEnd(FXObject*,FXSelector,void*){
moveCursorAndSelect(lineEnd(cursorpos),SelectChars,true);
return 1;
}
// Process cursor shift+right
long FXText::onCmdCursorShiftRight(FXObject*,FXSelector,void*){
moveCursorAndSelect(cursorpos<length?inc(cursorpos):length,SelectChars,true);
return 1;
}
// Process cursor shift+left
long FXText::onCmdCursorShiftLeft(FXObject*,FXSelector,void*){
moveCursorAndSelect(0<cursorpos?dec(cursorpos):0,SelectChars,true);
return 1;
}
// Process cursor shift+up
long FXText::onCmdCursorShiftUp(FXObject*,FXSelector,void*){
FXint col=(0<=prefcol) ? prefcol : cursorcol;
moveCursorAndSelect(posFromColumn(prevRow(cursorpos),col),SelectChars,true);
prefcol=col;
return 1;
}
// Process cursor shift+down
long FXText::onCmdCursorShiftDown(FXObject*,FXSelector,void*){
FXint col=(0<=prefcol) ? prefcol : cursorcol;
moveCursorAndSelect(posFromColumn(nextRow(cursorpos),col),SelectChars,true);
prefcol=col;
return 1;
}
// Process cursor shift+page up
long FXText::onCmdCursorShiftPageUp(FXObject*,FXSelector,void*){
FXint col=(0<=prefcol) ? prefcol : cursorcol;
FXint lines=Math::imax(nvisrows-2,1);
setTopLine(prevRow(toppos,lines));
moveCursorAndSelect(posFromColumn(prevRow(cursorpos,lines),col),SelectChars,true);
prefcol=col;
return 1;
}
// Process cursor shift+page down
long FXText::onCmdCursorShiftPageDown(FXObject*,FXSelector,void*){
FXint col=(0<=prefcol) ? prefcol : cursorcol;
FXint lines=Math::imax(nvisrows-2,1);
setTopLine(nextRow(toppos,lines));
moveCursorAndSelect(posFromColumn(nextRow(cursorpos,lines),col),SelectChars,true);
prefcol=col;
return 1;
}
// Process cursor shift+word left
long FXText::onCmdCursorShiftWordLeft(FXObject*,FXSelector,void*){
moveCursorAndSelect(leftWord(cursorpos),SelectChars,true);
return 1;
}
// Process cursor shift+word right
long FXText::onCmdCursorShiftWordRight(FXObject*,FXSelector,void*){
moveCursorAndSelect(rightWord(cursorpos),SelectChars,true);
return 1;
}
// Process cursor alt-up
long FXText::onCmdCursorAltUp(FXObject*,FXSelector,void*){ // FIXME
FXint col=(0<=prefcol) ? prefcol : cursorvcol;
moveCursorRowColumnAndSelect(cursorrow-1,col,true);
prefcol=col;
return 1;
}
// Process cursor alt-down
long FXText::onCmdCursorAltDown(FXObject*,FXSelector,void*){
FXint col=(0<=prefcol) ? prefcol : cursorvcol;
moveCursorRowColumnAndSelect(cursorrow+1,col,true);
prefcol=col;
return 1;
}
// Process cursor alt-left
long FXText::onCmdCursorAltLeft(FXObject*,FXSelector,void*){
moveCursorRowColumnAndSelect(cursorrow,cursorvcol-1,true);
return 1;
}
// Process cursor alt-right
long FXText::onCmdCursorAltRight(FXObject*,FXSelector,void*){
moveCursorRowColumnAndSelect(cursorrow,cursorvcol+1,true);
return 1;
}
// Scroll up one line
long FXText::onCmdScrollUp(FXObject*,FXSelector,void*){
setTopLine(prevRow(toppos));
return 1;
}
// Scroll down one line
long FXText::onCmdScrollDown(FXObject*,FXSelector,void*){
setTopLine(nextRow(toppos));
return 1;
}
// Scroll to move cursor to top of screen
long FXText::onCmdScrollTop(FXObject*,FXSelector,void*){
setTopLine(cursorpos);
return 1;
}
// Scroll to move cursor to bottom of screen
long FXText::onCmdScrollBottom(FXObject*,FXSelector,void*){
setBottomLine(cursorpos);
return 1;
}
// Scroll to move cursor to center of screen
long FXText::onCmdScrollCenter(FXObject*,FXSelector,void*){
setCenterLine(cursorpos);
return 1;
}
// Insert a string as if typed
long FXText::onCmdInsertString(FXObject*,FXSelector,void* ptr){
if(isEditable()){
FXchar* txt=(FXchar*)ptr;
FXint len=strlen(txt);
FXint beg=cursorpos;
FXint end=cursorpos;
FXint rows,ins;
FXString rep;
// Position is selected
if(isPosSelected(cursorpos,cursorvcol)){
beg=select.startpos;
end=select.endpos;
// Block selection
if(select.startcol<select.endcol){
rows=countLines(beg,end);
if(0<len && txt[len-1]=='\n'){ --len; }
for(FXint i=0; i<rows; ++i){
rep.append(txt,len);
rep.append('\n');
}
rep.append(txt,len);
ins=replaceTextBlock(select.startpos,select.endpos,select.startcol,select.endcol,rep,true);
beg=posFromColumn(lineStart(beg+ins),select.startcol)+len;
moveCursor(beg,true);
return 1;
}
// Range selection
if(select.startpos<select.endpos){
ins=replaceText(beg,end-beg,txt,len,true);
moveCursor(beg+ins,true);
return 1;
}
}
// Overstrike
if(isOverstrike()){ // FIXME should overstrike always be block-mode?
ins=overstruck(beg,beg,txt,len);
ins=replaceText(beg,ins-beg,txt,len,true);
moveCursor(beg+ins,true);
return 1;
}
// Default is insert
ins=insertText(beg,txt,len,true);
moveCursor(beg+ins,true);
return 1;
}
getApp()->beep();
return 1;
}
// Insert newline with optional autoindent
long FXText::onCmdInsertNewline(FXObject*,FXSelector,void*){
if(options&TEXT_AUTOINDENT){
return onCmdInsertNewlineIndent(this,FXSEL(SEL_COMMAND,ID_INSERT_NEWLINE_INDENT),nullptr);
}
return onCmdInsertNewlineOnly(this,FXSEL(SEL_COMMAND,ID_INSERT_NEWLINE_ONLY),nullptr);
}
// Insert newline only
long FXText::onCmdInsertNewlineOnly(FXObject*,FXSelector,void*){
return onCmdInsertString(this,FXSEL(SEL_COMMAND,ID_INSERT_STRING),(void*)"\n");
}
// Create indent string
static FXString makeIndentString(FXint indent,FXint tabcols){
FXString result(' ',indent+1);
result[0]='\n';
if(0<tabcols){
FXint i=1;
while(tabcols<=indent){
result[i++]='\t';
indent-=tabcols;
}
while(0<indent){
result[i++]=' ';
indent-=1;
}
result.trunc(i);
}
return result;
}
// Insert newline with optional indent
// If block-selection in effect, delete the block selection; if range-selection in effect,
// replace it with indented empty line; otherwise, append indented empty line.
long FXText::onCmdInsertNewlineIndent(FXObject*,FXSelector,void*){
FXString string("\n");
if(select.startcol>select.endcol){
FXint pos,start,indent;
pos=cursorpos;
if(isPosSelected(cursorpos)){
pos=select.endpos;
}
start=lineStart(pos);
indent=indentOfLine(start,pos); // Indent to up to position, or first non-blank
string=makeIndentString(indent,(options&TEXT_NO_TABS)?0:tabcolumns);
}
return onCmdInsertString(this,FXSEL(SEL_COMMAND,ID_INSERT_STRING),(void*)string.text());
}
// Insert optional soft-tab
long FXText::onCmdInsertTab(FXObject*,FXSelector,void*){
if(options&TEXT_NO_TABS){
return onCmdInsertSoftTab(this,FXSEL(SEL_COMMAND,ID_INSERT_SOFTTAB),nullptr);
}
return onCmdInsertHardTab(this,FXSEL(SEL_COMMAND,ID_INSERT_HARDTAB),nullptr);
}
// Insert hard-tab
long FXText::onCmdInsertHardTab(FXObject*,FXSelector,void*){
return onCmdInsertString(this,FXSEL(SEL_COMMAND,ID_INSERT_STRING),(void*)"\t");
}
// Insert soft-tab
// The number of spaces to insert depends on the indentation level.
// No selection: use indent at the cursor insert-position
// Range-selection: use indent at the start of the selection
// Block-selection: use the start column of the selection
long FXText::onCmdInsertSoftTab(FXObject*,FXSelector,void*){
FXint indent;
if(isPosSelected(cursorpos,cursorvcol)){
if(select.startcol<select.endcol){
indent=select.startcol;
}
else{
indent=columnFromPos(lineStart(select.startpos),select.startpos);
}
}
else{
indent=columnFromPos(lineStart(cursorpos),cursorpos);
}
FXASSERT(0<tabcolumns && tabcolumns<MAXTABCOLUMNS);
return onCmdInsertString(this,FXSEL(SEL_COMMAND,ID_INSERT_STRING),(void*)(spaces+MAXTABCOLUMNS+indent%tabcolumns-tabcolumns));
}
/*******************************************************************************/
// Cut
long FXText::onCmdCutSel(FXObject*,FXSelector,void*){
if(isEditable() && cutSelection(true)) return 1;
getApp()->beep();
return 1;
}
// Copy
long FXText::onCmdCopySel(FXObject*,FXSelector,void*){
copySelection();
return 1;
}
// Paste clipboard
long FXText::onCmdPasteSel(FXObject*,FXSelector,void*){
if(isEditable() && pasteClipboard(true)) return 1;
getApp()->beep();
return 1;
}
// Paste selection
long FXText::onCmdPasteMiddle(FXObject*,FXSelector,void*){
if(isEditable() && pasteSelection(true)) return 1;
getApp()->beep();
return 1;
}
// Delete selection
long FXText::onCmdDeleteSel(FXObject*,FXSelector,void*){
if(isEditable() && deleteSelection(true)) return 1;
getApp()->beep();
return 1;
}
// Select character
long FXText::onCmdSelectChar(FXObject*,FXSelector,void*){
setAnchorPos(cursorpos);
extendSelection(inc(cursorpos),SelectChars,true);
return 1;
}
// Select Word
long FXText::onCmdSelectWord(FXObject*,FXSelector,void*){
setAnchorPos(cursorpos);
extendSelection(cursorpos,SelectWords,true);
return 1;
}
// Select Line
long FXText::onCmdSelectLine(FXObject*,FXSelector,void*){
setAnchorPos(cursorpos);
extendSelection(cursorpos,SelectLines,true);
return 1;
}
// Select text till matching character
long FXText::onCmdSelectMatching(FXObject*,FXSelector,void*){
if(0<cursorpos){
FXchar ch=getByte(cursorpos-1);
FXint pos=findMatching(cursorpos-1,0,length,ch,1);
if(0<=pos){
if(cursorpos<=pos){
setSelection(cursorpos-1,pos-cursorpos+2,true);
setAnchorPos(cursorpos-1);
setCursorPos(pos+1,true);
}
else{
setSelection(pos,cursorpos-pos,true);
setAnchorPos(cursorpos);
setCursorPos(pos+1,true);
}
makePositionVisible(cursorpos);
flashMatching();
return 1;
}
}
getApp()->beep();
return 1;
}
// Select entire enclosing block
long FXText::onCmdSelectEnclosing(FXObject*,FXSelector sel,void*){
FXint what=FXSELID(sel)-ID_SELECT_BRACE;
FXint level=1;
FXint beg,end;
while(1){
beg=matchBackward(cursorpos-1,0,lefthand[what],righthand[what],level);
end=matchForward(cursorpos,length,lefthand[what],righthand[what],level);
if(0<=beg && beg<end){
if(isPosSelected(beg) && isPosSelected(end+1)){ level++; continue; }
setAnchorPos(beg);
extendSelection(end+1,SelectChars,true);
return 1;
}
getApp()->beep();
break;
}
return 1;
}
// Select All
long FXText::onCmdSelectAll(FXObject*,FXSelector,void*){
setAnchorPos(0);
extendSelection(length,SelectChars,true);
return 1;
}
// Deselect All
long FXText::onCmdDeselectAll(FXObject*,FXSelector,void*){
killSelection(true);
return 1;
}
/*******************************************************************************/
// Backspace character
long FXText::onCmdBackspaceChar(FXObject*,FXSelector,void*){
if(isEditable()){
if(deletePendingSelection(true)) return 1;
if(0<cursorpos){
FXint pos=dec(cursorpos);
removeText(pos,cursorpos-pos,true);
moveCursor(pos,true);
return 1;
}
}
getApp()->beep();
return 1;
}
// Backspace word
long FXText::onCmdBackspaceWord(FXObject*,FXSelector,void*){
if(isEditable()){
if(deletePendingSelection(true)) return 1;
FXint pos=leftWord(cursorpos);
if(pos<cursorpos){
removeText(pos,cursorpos-pos,true);
moveCursor(pos,true);
return 1;
}
}
getApp()->beep();
return 1;
}
// Backspace bol
long FXText::onCmdBackspaceBol(FXObject*,FXSelector,void*){
if(isEditable()){
if(deletePendingSelection(true)) return 1;
FXint pos=lineStart(cursorpos);
if(pos<cursorpos){
removeText(pos,cursorpos-pos,true);
moveCursor(pos,true);
return 1;
}
}
getApp()->beep();
return 1;
}
// Delete character
long FXText::onCmdDeleteChar(FXObject*,FXSelector,void*){
if(isEditable()){
if(deletePendingSelection(true)) return 1;
if(cursorpos<length){
FXint pos=inc(cursorpos);
removeText(cursorpos,pos-cursorpos,true);
moveCursor(cursorpos,true);
return 1;
}
}
getApp()->beep();
return 1;
}
// Delete word
long FXText::onCmdDeleteWord(FXObject*,FXSelector,void*){
if(isEditable()){
if(deletePendingSelection(true)) return 1;
FXint pos=rightWord(cursorpos);
if(pos<length){
removeText(cursorpos,pos-cursorpos,true);
moveCursor(cursorpos,true);
return 1;
}
}
getApp()->beep();
return 1;
}
// Delete to end of line
long FXText::onCmdDeleteEol(FXObject*,FXSelector,void*){
if(isEditable()){
if(deletePendingSelection(true)) return 1;
FXint pos=lineEnd(cursorpos);
if(pos<length){
removeText(cursorpos,pos-cursorpos,true);
moveCursor(cursorpos,true);
return 1;
}
}
getApp()->beep();
return 1;
}
// Delete line
long FXText::onCmdDeleteLine(FXObject*,FXSelector,void*){
if(isEditable()){
if(deletePendingSelection(true)) return 1;
FXint beg=lineStart(cursorpos);
FXint end=nextLine(cursorpos);
if(beg<end){
removeText(beg,end-beg,true);
moveCursor(beg,true);
return 1;
}
}
getApp()->beep();
return 1;
}
// Delete all text
long FXText::onCmdDeleteAll(FXObject*,FXSelector,void*){
if(isEditable()){
if(0<length){
removeText(0,length,true);
moveCursor(0,true);
return 1;
}
}
getApp()->beep();
return 1;
}
/*******************************************************************************/
// Shift block of lines from position start up to end by given indent
FXint FXText::shiftText(FXint startpos,FXint endpos,FXint shift,FXbool notify){
if(0<=startpos && startpos<endpos && endpos<=length){
FXString org=extractText(startpos,endpos-startpos);
FXString rep=FXString::tabbify(org,tabcolumns,0,0,shift,!(options&TEXT_NO_TABS));
return replaceStyledText(startpos,endpos-startpos,rep,0,notify);
}
return 0;
}
// Shift selected lines left or right, or clean indent
// Try keep the cursor on same row and (adjusted) column as before
long FXText::onCmdShiftText(FXObject*,FXSelector sel,void*){
if(isEditable()){
FXint startpos,endpos,len;
FXint currow=getCursorRow();
FXint cursta=rowStart(getCursorPos());
FXint curcol=columnFromPos(cursta,getCursorPos());
FXint curind=indentOfLine(cursta,getCursorPos());
FXint indent=0;
FXint newcol;
switch(FXSELID(sel)){
case ID_SHIFT_LEFT: indent=-1; break;
case ID_SHIFT_RIGHT: indent=1; break;
case ID_SHIFT_TABLEFT: indent=-tabcolumns; break;
case ID_SHIFT_TABRIGHT: indent=tabcolumns; break;
}
newcol=curcol-curind+Math::imax(curind+indent,0);
if(select.startpos<=select.endpos){
startpos=lineStart(select.startpos);
endpos=nextLine(select.endpos-1);
}
else{
startpos=lineStart(cursorpos);
endpos=lineEnd(cursorpos);
if(endpos<length) endpos++;
}
len=shiftText(startpos,endpos,indent,true);
setSelection(startpos,len,true);
setAnchorRowColumn(currow,newcol);
setCursorRowColumn(currow,newcol,true);
}
else{
getApp()->beep();
}
return 1;
}
/*******************************************************************************/
// Make selected text upper case
long FXText::onCmdChangeCase(FXObject*,FXSelector sel,void*){
if(isEditable()){
FXint curc=getCursorColumn();
FXint curr=getCursorRow();
if((select.startcol<select.endcol) && (select.startpos<=select.endpos)){
FXString string=extractTextBlock(select.startpos,select.endpos,select.startcol,select.endcol);
if(FXSELID(sel)==ID_UPPER_CASE){string.upper();} else{string.lower();}
replaceTextBlock(select.startpos,select.endpos,select.startcol,select.endcol,string,true);
}
if((select.startcol>select.endcol) && (select.startpos<select.endpos)){
FXString string=extractText(select.startpos,select.endpos-select.startpos);
if(FXSELID(sel)==ID_UPPER_CASE){string.upper();} else{string.lower();}
replaceText(select.startpos,select.endpos-select.startpos,string,true);
}
setAnchorRowColumn(curr,curc);
setCursorRowColumn(curr,curc,true);
return 1;
}
getApp()->beep();
return 1;
}
/*******************************************************************************/
// Copy current line to the line below; leave it selected with cursor at the end
long FXText::onCmdCopyLine(FXObject*,FXSelector,void*){
if(isEditable()){
FXString text;
FXint start,end;
if(select.startpos<=select.endpos){
start=lineStart(select.startpos);
end=lineEnd(select.endpos-1);
}
else{
start=lineStart(cursorpos);
end=lineEnd(cursorpos);
}
text=extractText(start,end-start);
text+='\n';
insertText(start,text,true);
setSelection(start+text.length(),text.length(),true);
setAnchorPos(cursorpos);
makePositionVisible(cursorpos);
return 1;
}
getApp()->beep();
return 1;
}
/*******************************************************************************/
// Move the current line up, if there is a line above it.
// More tricky than it looks; current line may be non-terminated by a newline.
// However, previous line *is* newline terminated by definition.
// Solution is to snip the lines without the newline, and then place the
// newline at the appropriate spot.
long FXText::onCmdMoveLineUp(FXObject*,FXSelector,void*){
if(isEditable()){
FXint curbeg,curend,prvbeg,pos;
if(select.startpos<=select.endpos){
curbeg=lineStart(select.startpos);
curend=lineEnd(select.endpos-1);
}
else{
curbeg=lineStart(cursorpos);
curend=lineEnd(cursorpos);
}
FXASSERT(curbeg<=curend);
prvbeg=prevLine(curbeg);
if(0<curbeg){
FXString text('\0',curend-prvbeg);
pos=prvbeg+cursorpos-curbeg;
extractText(&text[0],curbeg,curend-curbeg);
text[curend-curbeg]='\n';
extractText(&text[curend-curbeg+1],prvbeg,curbeg-prvbeg-1);
replaceText(prvbeg,curend-prvbeg,text,true);
setSelection(prvbeg,curend-curbeg+1,true);
setAnchorPos(prvbeg);
setCursorPos(pos,true);
makePositionVisible(cursorpos);
return 1;
}
}
getApp()->beep();
return 1;
}
// Move current line down, if there is a line below it.
// Similar logic as above; the line to be moved up may be non-terminated by a newline.
// The current line *is* newline terminated, by definition.
// Thus we snip the lines w/o including the newline, and place the missing
// newline at the proper place in the middle.
long FXText::onCmdMoveLineDown(FXObject*,FXSelector,void*){
if(isEditable()){
FXint curbeg,curend,nxtend,pos;
if(select.startpos<=select.endpos){
curbeg=lineStart(select.startpos);
curend=nextLine(select.endpos-1);
}
else{
curbeg=lineStart(cursorpos);
curend=nextLine(cursorpos);
}
nxtend=lineEnd(curend);
if(curend<length){
FXString text('\0',nxtend-curbeg);
pos=nxtend-curend+cursorpos;
extractText(&text[0],curend,nxtend-curend);
text[nxtend-curend]='\n';
extractText(&text[nxtend-curend+1],curbeg,curend-curbeg-1);
replaceText(curbeg,nxtend-curbeg,text,true);
setSelection(curbeg+nxtend-curend+1,curend-curbeg,true);
setAnchorPos(curbeg+nxtend-curend+1);
setCursorPos(pos,true);
makePositionVisible(cursorpos);
return 1;
}
}
getApp()->beep();
return 1;
}
/*******************************************************************************/
// Join lines
long FXText::onCmdJoinLines(FXObject*,FXSelector,void*){
if(isEditable()){
FXint pos=lineEnd(cursorpos);
if(pos<length){
removeText(pos,1,true);
return 1;
}
}
else{
getApp()->beep();
}
return 1;
}
// Goto start of enclosing block
long FXText::onCmdBlockBeg(FXObject*,FXSelector sel,void*){
FXint what=FXSELID(sel)-ID_LEFT_BRACE;
FXint beg=cursorpos-1;
if(0<beg){
if(getByte(beg)==lefthand[what]) beg--;
FXint pos=matchBackward(beg,0,lefthand[what],righthand[what],1);
if(0<=pos){
moveCursor(pos+1,true);
return 1;
}
}
getApp()->beep();
return 1;
}
// Goto end of enclosing block
long FXText::onCmdBlockEnd(FXObject*,FXSelector sel,void*){
FXint what=FXSELID(sel)-ID_RIGHT_BRACE;
FXint start=cursorpos;
if(start<length){
if(getByte(start)==righthand[what]) start++;
FXint pos=matchForward(start,length,lefthand[what],righthand[what],1);
if(0<=pos){
moveCursor(pos,true);
return 1;
}
}
getApp()->beep();
return 1;
}
// Goto matching character
long FXText::onCmdGotoMatching(FXObject*,FXSelector,void*){
if(0<cursorpos){
FXchar ch=getByte(cursorpos-1);
FXint pos=findMatching(cursorpos-1,0,length,ch,1);
if(0<=pos){
moveCursor(pos+1,true);
return 1;
}
}
getApp()->beep();
return 1;
}
// Move cursor to indicated row
long FXText::onCmdCursorPos(FXObject* sender,FXSelector,void*){
FXint pos=cursorpos;
sender->handle(this,FXSEL(SEL_COMMAND,ID_GETINTVALUE),(void*)&pos);
setCursorPos(pos,true);
return 1;
}
// Being asked about current row number
long FXText::onUpdCursorPos(FXObject* sender,FXSelector,void*){
sender->handle(this,FXSEL(SEL_COMMAND,ID_SETINTVALUE),(void*)&cursorpos);
return 1;
}
// Move cursor to indicated row
long FXText::onCmdCursorRow(FXObject* sender,FXSelector,void*){
FXint row=cursorrow+1;
sender->handle(this,FXSEL(SEL_COMMAND,ID_GETINTVALUE),(void*)&row);
setCursorRow(row-1,true);
return 1;
}
// Being asked about current row number
long FXText::onUpdCursorRow(FXObject* sender,FXSelector,void*){
FXint row=cursorrow+1;
sender->handle(this,FXSEL(SEL_COMMAND,ID_SETINTVALUE),(void*)&row);
return 1;
}
// Move cursor to indicated column
long FXText::onCmdCursorColumn(FXObject* sender,FXSelector,void*){
FXint col=cursorcol;
sender->handle(this,FXSEL(SEL_COMMAND,ID_GETINTVALUE),(void*)&col);
setCursorColumn(col,true);
return 1;
}
// Being asked about current column
long FXText::onUpdCursorColumn(FXObject* sender,FXSelector,void*){
sender->handle(this,FXSEL(SEL_COMMAND,FXWindow::ID_SETINTVALUE),(void*)&cursorcol);
return 1;
}
// Editable toggle
long FXText::onCmdToggleEditable(FXObject*,FXSelector,void*){
setEditable(!isEditable());
return 1;
}
// Update editable toggle
long FXText::onUpdToggleEditable(FXObject* sender,FXSelector,void*){
sender->handle(this,isEditable()?FXSEL(SEL_COMMAND,ID_CHECK):FXSEL(SEL_COMMAND,ID_UNCHECK),nullptr);
sender->handle(this,FXSEL(SEL_COMMAND,ID_SHOW),nullptr);
sender->handle(this,FXSEL(SEL_COMMAND,ID_ENABLE),nullptr);
return 1;
}
// Overstrike toggle
long FXText::onCmdToggleOverstrike(FXObject*,FXSelector,void*){
setOverstrike(!isOverstrike());
return 1;
}
// Update overstrike toggle
long FXText::onUpdToggleOverstrike(FXObject* sender,FXSelector,void*){
sender->handle(this,isOverstrike()?FXSEL(SEL_COMMAND,ID_CHECK):FXSEL(SEL_COMMAND,ID_UNCHECK),nullptr);
sender->handle(this,FXSEL(SEL_COMMAND,ID_SHOW),nullptr);
sender->handle(this,FXSEL(SEL_COMMAND,ID_ENABLE),nullptr);
return 1;
}
// Update number of rows
long FXText::onUpdTextRows(FXObject* sender,FXSelector,void*){
sender->handle(this,FXSEL(SEL_COMMAND,ID_SETINTVALUE),(void*)&nrows);
return 1;
}
// Update number of rows
long FXText::onUpdTextSize(FXObject* sender,FXSelector,void*){
sender->handle(this,FXSEL(SEL_COMMAND,ID_SETINTVALUE),(void*)&length);
return 1;
}
/*******************************************************************************/
// Change text style
void FXText::setTextStyle(FXuint style){
FXuint opts=((style^options)&TEXT_MASK)^options;
if(options!=opts){
options=opts;
recalc();
update();
}
}
// Get text style
FXuint FXText::getTextStyle() const {
return (options&TEXT_MASK);
}
// Change the font
void FXText::setFont(FXFont* fnt){
if(!fnt){ fxerror("%s::setFont: NULL font specified.\n",getClassName()); }
if(font!=fnt){
font=fnt;
tabwidth=tabcolumns*font->getTextWidth(" ",1);
barwidth=barcolumns*font->getTextWidth("8",1);
if(getComposeContext()) getComposeContext()->setFont(font);
recalc();
update();
}
}
// Change number of visible rows
void FXText::setVisibleRows(FXint rows){
if(rows<0) rows=0;
if(vrows!=rows){
vrows=rows;
recalc();
}
}
// Change number of visible columns
void FXText::setVisibleColumns(FXint cols){
if(cols<0) cols=0;
if(vcols!=cols){
vcols=cols;
recalc();
}
}
// Change top margin
void FXText::setMarginTop(FXint mt){
if(margintop!=mt){
margintop=mt;
recalc();
update();
}
}
// Change bottom margin
void FXText::setMarginBottom(FXint mb){
if(marginbottom!=mb){
marginbottom=mb;
recalc();
update();
}
}
// Change left margin
void FXText::setMarginLeft(FXint ml){
if(marginleft!=ml){
marginleft=ml;
recalc();
update();
}
}
// Change right margin
void FXText::setMarginRight(FXint mr){
if(marginright!=mr){
marginright=mr;
recalc();
update();
}
}
// Change number of columns used for line numbers
void FXText::setBarColumns(FXint cols){
if(cols<=0) cols=0;
if(cols!=barcolumns){
barcolumns=cols;
barwidth=barcolumns*font->getTextWidth("8",1);
recalc();
update();
}
}
// Set wrap columns
void FXText::setWrapColumns(FXint cols){
if(cols<=0) cols=1;
if(cols!=wrapcolumns){
wrapcolumns=cols;
recalc();
update();
}
}
// Set tab columns
void FXText::setTabColumns(FXint cols){
cols=Math::iclamp(1,cols,MAXTABCOLUMNS);
if(cols!=tabcolumns){
tabcolumns=cols;
tabwidth=tabcolumns*font->getTextWidth(" ",1);
recalc();
update();
}
}
// Set text color
void FXText::setTextColor(FXColor clr){
if(clr!=textColor){
textColor=clr;
update();
}
}
// Set select background color
void FXText::setSelBackColor(FXColor clr){
if(clr!=selbackColor){
selbackColor=clr;
update();
}
}
// Set selected text color
void FXText::setSelTextColor(FXColor clr){
if(clr!=seltextColor){
seltextColor=clr;
update();
}
}
// Change highlighted text color
void FXText::setHiliteTextColor(FXColor clr){
if(clr!=hilitetextColor){
hilitetextColor=clr;
update();
}
}
// Change highlighted background color
void FXText::setHiliteBackColor(FXColor clr){
if(clr!=hilitebackColor){
hilitebackColor=clr;
update();
}
}
// Change active background color
void FXText::setActiveBackColor(FXColor clr){
if(clr!=activebackColor){
activebackColor=clr;
update();
}
}
// Set cursor color
void FXText::setCursorColor(FXColor clr){
if(clr!=cursorColor){
cursorColor=clr;
update();
}
}
// Change line number color
void FXText::setNumberColor(FXColor clr){
if(clr!=numberColor){
numberColor=clr;
update();
}
}
// Change bar color
void FXText::setBarColor(FXColor clr){
if(clr!=barColor){
barColor=clr;
update();
}
}
// Set styled text mode
FXbool FXText::setStyled(FXbool styled){
if(styled && !sbuffer){
if(!callocElms(sbuffer,length+gapend-gapstart)) return false;
update();
}
if(!styled && sbuffer){
freeElms(sbuffer);
update();
}
return true;
}
// Set highlight styles
void FXText::setHiliteStyles(FXHiliteStyle* styles){
hilitestyles=styles;
update();
}
// Save object to stream
void FXText::save(FXStream& store) const {
FXScrollArea::save(store);
store << length;
store.save(buffer,gapstart);
store.save(buffer+gapend,length-gapstart);
store << nvisrows;
store.save(visrows,nvisrows+1);
store << margintop;
store << marginbottom;
store << marginleft;
store << marginright;
store << wrapcolumns;
store << tabcolumns;
store << barcolumns;
store << font;
store << textColor;
store << selbackColor;
store << seltextColor;
store << hilitebackColor;
store << hilitetextColor;
store << activebackColor;
store << numberColor;
store << cursorColor;
store << barColor;
store << vrows;
store << vcols;
store << help;
store << tip;
store << matchtime;
}
// Load object from stream
void FXText::load(FXStream& store){
FXScrollArea::load(store);
store >> length;
allocElms(buffer,length+MINSIZE);
store.load(buffer,length);
gapstart=length;
gapend=length+MINSIZE;
store >> nvisrows;
allocElms(visrows,nvisrows+1);
store.load(visrows,nvisrows+1);
store >> margintop;
store >> marginbottom;
store >> marginleft;
store >> marginright;
store >> wrapcolumns;
store >> tabcolumns;
store >> barcolumns;
store >> font;
store >> textColor;
store >> selbackColor;
store >> seltextColor;
store >> hilitebackColor;
store >> hilitetextColor;
store >> activebackColor;
store >> numberColor;
store >> cursorColor;
store >> barColor;
store >> vrows;
store >> vcols;
store >> help;
store >> tip;
store >> matchtime;
}
// Clean up
FXText::~FXText(){
getApp()->removeTimeout(this,ID_BLINK);
getApp()->removeTimeout(this,ID_FLASH);
getApp()->removeTimeout(this,ID_TIPTIMER);
freeElms(buffer);
freeElms(sbuffer);
freeElms(visrows);
buffer=(FXchar*)-1L;
sbuffer=(FXchar*)-1L;
visrows=(FXint*)-1L;
font=(FXFont*)-1L;
delimiters=(const FXchar*)-1L;
hilitestyles=(FXHiliteStyle*)-1L;
}
}
|