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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <hintids.hxx>
#include <hints.hxx>
#include <svl/ctloptions.hxx>
#include <sfx2/printer.hxx>
#include <sfx2/sfxuno.hxx>
#include <editeng/langitem.hxx>
#include <editeng/lspcitem.hxx>
#include <editeng/lrspitem.hxx>
#include <editeng/ulspitem.hxx>
#include <editeng/brushitem.hxx>
#include <editeng/pgrditem.hxx>
#include <editeng/rsiditem.hxx>
#include <unotools/configmgr.hxx>
#include <swmodule.hxx>
#include <SwSmartTagMgr.hxx>
#include <doc.hxx>
#include <IDocumentSettingAccess.hxx>
#include <IDocumentDeviceAccess.hxx>
#include <IDocumentFieldsAccess.hxx>
#include <rootfrm.hxx>
#include <pagefrm.hxx>
#include <viewsh.hxx>
#include <pam.hxx>
#include <ndtxt.hxx>
#include <txtatr.hxx>
#include <paratr.hxx>
#include <viewopt.hxx>
#include <dflyobj.hxx>
#include <flyfrm.hxx>
#include <tabfrm.hxx>
#include <frmtool.hxx>
#include <pagedesc.hxx>
#include <tgrditem.hxx>
#include <dbg_lay.hxx>
#include <fmtfld.hxx>
#include <fmtftn.hxx>
#include <txtfld.hxx>
#include <txtftn.hxx>
#include <charatr.hxx>
#include <ftninfo.hxx>
#include <fmtline.hxx>
#include <txtfrm.hxx>
#include <notxtfrm.hxx>
#include <sectfrm.hxx>
#include "itrform2.hxx"
#include "widorp.hxx"
#include "txtcache.hxx"
#include <fntcache.hxx>
#include <SwGrammarMarkUp.hxx>
#include <lineinfo.hxx>
#include <SwPortionHandler.hxx>
#include <dcontact.hxx>
#include <sortedobjs.hxx>
#include <txtflcnt.hxx>
#include <fmtflcnt.hxx>
#include <fmtcntnt.hxx>
#include <numrule.hxx>
#include <swtable.hxx>
#include <fldupde.hxx>
#include <docufld.hxx>
#include <IGrammarContact.hxx>
#include <calbck.hxx>
#include <ftnidx.hxx>
namespace sw {
MergedAttrIterBase::MergedAttrIterBase(SwTextFrame const& rFrame)
: m_pMerged(rFrame.GetMergedPara())
, m_pNode(m_pMerged ? nullptr : rFrame.GetTextNodeFirst())
, m_CurrentExtent(0)
, m_CurrentHint(0)
{
}
SwTextAttr const* MergedAttrIter::NextAttr(SwTextNode const** ppNode)
{
if (m_pMerged)
{
while (m_CurrentExtent < m_pMerged->extents.size())
{
sw::Extent const& rExtent(m_pMerged->extents[m_CurrentExtent]);
if (SwpHints const*const pHints = rExtent.pNode->GetpSwpHints())
{
while (m_CurrentHint < pHints->Count())
{
SwTextAttr const*const pHint(pHints->Get(m_CurrentHint));
if (rExtent.nEnd < pHint->GetStart())
{
break;
}
++m_CurrentHint;
if (rExtent.nStart <= pHint->GetStart())
{
if (ppNode)
{
*ppNode = rExtent.pNode;
}
return pHint;
}
}
}
++m_CurrentExtent;
if (m_CurrentExtent < m_pMerged->extents.size() &&
rExtent.pNode != m_pMerged->extents[m_CurrentExtent].pNode)
{
m_CurrentHint = 0; // reset
}
}
return nullptr;
}
else
{
SwpHints const*const pHints(m_pNode->GetpSwpHints());
if (pHints)
{
while (m_CurrentHint < pHints->Count())
{
SwTextAttr const*const pHint(pHints->Get(m_CurrentHint));
++m_CurrentHint;
if (ppNode)
{
*ppNode = m_pNode;
}
return pHint;
}
}
return nullptr;
}
}
SwTextAttr const* MergedAttrIterByEnd::NextAttr(SwTextNode const** ppNode)
{
if (m_pMerged)
{
while (m_CurrentExtent < m_pMerged->extents.size())
{
sw::Extent const& rExtent(m_pMerged->extents[m_CurrentExtent]);
if (SwpHints const*const pHints = rExtent.pNode->GetpSwpHints())
{
while (m_CurrentHint < pHints->Count())
{
SwTextAttr const*const pHint(
pHints->GetSortedByEnd(m_CurrentHint));
if (rExtent.nEnd <= *pHint->GetAnyEnd())
{
break;
}
++m_CurrentHint;
if (rExtent.nStart < *pHint->GetAnyEnd())
{
if (ppNode)
{
*ppNode = rExtent.pNode;
}
return pHint;
}
}
}
++m_CurrentExtent;
if (m_CurrentExtent < m_pMerged->extents.size() &&
rExtent.pNode != m_pMerged->extents[m_CurrentExtent].pNode)
{
m_CurrentHint = 0; // reset
}
}
return nullptr;
}
else
{
SwpHints const*const pHints(m_pNode->GetpSwpHints());
if (pHints)
{
while (m_CurrentHint < pHints->Count())
{
SwTextAttr const*const pHint(
pHints->GetSortedByEnd(m_CurrentHint));
++m_CurrentHint;
if (ppNode)
{
*ppNode = m_pNode;
}
return pHint;
}
}
return nullptr;
}
}
MergedAttrIterReverse::MergedAttrIterReverse(SwTextFrame const& rFrame)
: MergedAttrIterBase(rFrame)
{
if (m_pMerged)
{
m_CurrentExtent = m_pMerged->extents.size();
SwpHints const*const pHints(0 < m_CurrentExtent
? m_pMerged->extents[m_CurrentExtent-1].pNode->GetpSwpHints()
: nullptr);
m_CurrentHint = pHints ? pHints->Count() : 0;
}
else
{
if (SwpHints const*const pHints = m_pNode->GetpSwpHints())
{
m_CurrentHint = pHints->Count();
}
}
}
SwTextAttr const* MergedAttrIterReverse::PrevAttr(SwTextNode const** ppNode)
{
if (m_pMerged)
{
while (0 < m_CurrentExtent)
{
sw::Extent const& rExtent(m_pMerged->extents[m_CurrentExtent-1]);
if (SwpHints const*const pHints = rExtent.pNode->GetpSwpHints())
{
while (0 < m_CurrentHint)
{
SwTextAttr const*const pHint(pHints->Get(m_CurrentHint - 1));
if (pHint->GetStart() < rExtent.nStart)
{
break;
}
--m_CurrentHint;
if (pHint->GetStart() <= rExtent.nEnd)
{
if (ppNode)
{
*ppNode = rExtent.pNode;
}
return pHint;
}
}
}
--m_CurrentExtent;
if (0 < m_CurrentExtent &&
rExtent.pNode != m_pMerged->extents[m_CurrentExtent-1].pNode)
{
SwpHints const*const pHints(rExtent.pNode->GetpSwpHints());
m_CurrentHint = pHints ? pHints->Count() : 0; // reset
}
}
return nullptr;
}
else
{
SwpHints const*const pHints(m_pNode->GetpSwpHints());
if (pHints)
{
while (0 < m_CurrentHint)
{
SwTextAttr const*const pHint(pHints->Get(m_CurrentHint - 1));
--m_CurrentHint;
if (ppNode)
{
*ppNode = m_pNode;
}
return pHint;
}
}
return nullptr;
}
}
bool FrameContainsNode(SwContentFrame const& rFrame, sal_uLong const nNodeIndex)
{
if (rFrame.IsTextFrame())
{
SwTextFrame const& rTextFrame(static_cast<SwTextFrame const&>(rFrame));
if (sw::MergedPara const*const pMerged = rTextFrame.GetMergedPara())
{
sal_uLong const nFirst(pMerged->pFirstNode->GetIndex());
sal_uLong nLast(nFirst);
// FIXME is this actually the last one? what about delete RL that dels last node until end, what happens to its anchored objs?
if (!pMerged->extents.empty())
{
nLast = pMerged->extents.back().pNode->GetIndex();
}
return (nFirst <= nNodeIndex && nNodeIndex <= nLast);
}
else
{
return rTextFrame.GetTextNodeFirst()->GetIndex() == nNodeIndex;
}
}
else
{
assert(rFrame.IsNoTextFrame());
return static_cast<SwNoTextFrame const&>(rFrame).GetNode()->GetIndex() == nNodeIndex;
}
}
} // namespace sw
/// Switches width and height of the text frame
void SwTextFrame::SwapWidthAndHeight()
{
{
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*this);
if ( ! mbIsSwapped )
{
const long nPrtOfstX = aPrt.Pos().X();
aPrt.Pos().setX( aPrt.Pos().Y() );
if( IsVertLR() )
{
aPrt.Pos().setY( nPrtOfstX );
}
else
{
aPrt.Pos().setY( getFrameArea().Width() - ( nPrtOfstX + aPrt.Width() ) );
}
}
else
{
const long nPrtOfstY = aPrt.Pos().Y();
aPrt.Pos().setY( aPrt.Pos().X() );
if( IsVertLR() )
{
aPrt.Pos().setX( nPrtOfstY );
}
else
{
aPrt.Pos().setX( getFrameArea().Height() - ( nPrtOfstY + aPrt.Height() ) );
}
}
const long nPrtWidth = aPrt.Width();
aPrt.Width( aPrt.Height() );
aPrt.Height( nPrtWidth );
}
{
const long nFrameWidth = getFrameArea().Width();
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*this);
aFrm.Width( aFrm.Height() );
aFrm.Height( nFrameWidth );
}
mbIsSwapped = ! mbIsSwapped;
}
/**
* Calculates the coordinates of a rectangle when switching from
* horizontal to vertical layout.
*/
void SwTextFrame::SwitchHorizontalToVertical( SwRect& rRect ) const
{
// calc offset inside frame
long nOfstX, nOfstY;
if ( IsVertLR() )
{
nOfstX = rRect.Left() - getFrameArea().Left();
nOfstY = rRect.Top() - getFrameArea().Top();
}
else
{
nOfstX = rRect.Left() - getFrameArea().Left();
nOfstY = rRect.Top() + rRect.Height() - getFrameArea().Top();
}
const long nWidth = rRect.Width();
const long nHeight = rRect.Height();
if ( IsVertLR() )
rRect.Left(getFrameArea().Left() + nOfstY);
else
{
if ( mbIsSwapped )
rRect.Left( getFrameArea().Left() + getFrameArea().Height() - nOfstY );
else
// frame is rotated
rRect.Left( getFrameArea().Left() + getFrameArea().Width() - nOfstY );
}
rRect.Top( getFrameArea().Top() + nOfstX );
rRect.Width( nHeight );
rRect.Height( nWidth );
}
/**
* Calculates the coordinates of a point when switching from
* horizontal to vertical layout.
*/
void SwTextFrame::SwitchHorizontalToVertical( Point& rPoint ) const
{
// calc offset inside frame
const long nOfstX = rPoint.X() - getFrameArea().Left();
const long nOfstY = rPoint.Y() - getFrameArea().Top();
if ( IsVertLR() )
rPoint.setX( getFrameArea().Left() + nOfstY );
else
{
if ( mbIsSwapped )
rPoint.setX( getFrameArea().Left() + getFrameArea().Height() - nOfstY );
else
// calc rotated coords
rPoint.setX( getFrameArea().Left() + getFrameArea().Width() - nOfstY );
}
rPoint.setY( getFrameArea().Top() + nOfstX );
}
/**
* Calculates the a limit value when switching from
* horizontal to vertical layout.
*/
long SwTextFrame::SwitchHorizontalToVertical( long nLimit ) const
{
Point aTmp( 0, nLimit );
SwitchHorizontalToVertical( aTmp );
return aTmp.X();
}
/**
* Calculates the coordinates of a rectangle when switching from
* vertical to horizontal layout.
*/
void SwTextFrame::SwitchVerticalToHorizontal( SwRect& rRect ) const
{
long nOfstX;
// calc offset inside frame
if ( IsVertLR() )
nOfstX = rRect.Left() - getFrameArea().Left();
else
{
if ( mbIsSwapped )
nOfstX = getFrameArea().Left() + getFrameArea().Height() - ( rRect.Left() + rRect.Width() );
else
nOfstX = getFrameArea().Left() + getFrameArea().Width() - ( rRect.Left() + rRect.Width() );
}
const long nOfstY = rRect.Top() - getFrameArea().Top();
const long nWidth = rRect.Height();
const long nHeight = rRect.Width();
// calc rotated coords
rRect.Left( getFrameArea().Left() + nOfstY );
rRect.Top( getFrameArea().Top() + nOfstX );
rRect.Width( nWidth );
rRect.Height( nHeight );
}
/**
* Calculates the coordinates of a point when switching from
* vertical to horizontal layout.
*/
void SwTextFrame::SwitchVerticalToHorizontal( Point& rPoint ) const
{
long nOfstX;
// calc offset inside frame
if ( IsVertLR() )
nOfstX = rPoint.X() - getFrameArea().Left();
else
{
if ( mbIsSwapped )
nOfstX = getFrameArea().Left() + getFrameArea().Height() - rPoint.X();
else
nOfstX = getFrameArea().Left() + getFrameArea().Width() - rPoint.X();
}
const long nOfstY = rPoint.Y() - getFrameArea().Top();
// calc rotated coords
rPoint.setX( getFrameArea().Left() + nOfstY );
rPoint.setY( getFrameArea().Top() + nOfstX );
}
/**
* Calculates the a limit value when switching from
* vertical to horizontal layout.
*/
long SwTextFrame::SwitchVerticalToHorizontal( long nLimit ) const
{
Point aTmp( nLimit, 0 );
SwitchVerticalToHorizontal( aTmp );
return aTmp.Y();
}
SwFrameSwapper::SwFrameSwapper( const SwTextFrame* pTextFrame, bool bSwapIfNotSwapped )
: pFrame( pTextFrame ), bUndo( false )
{
if ( pFrame->IsVertical() &&
( ( bSwapIfNotSwapped && ! pFrame->IsSwapped() ) ||
( ! bSwapIfNotSwapped && pFrame->IsSwapped() ) ) )
{
bUndo = true;
const_cast<SwTextFrame*>(pFrame)->SwapWidthAndHeight();
}
}
SwFrameSwapper::~SwFrameSwapper()
{
if ( bUndo )
const_cast<SwTextFrame*>(pFrame)->SwapWidthAndHeight();
}
void SwTextFrame::SwitchLTRtoRTL( SwRect& rRect ) const
{
SwSwapIfNotSwapped swap(const_cast<SwTextFrame *>(this));
long nWidth = rRect.Width();
rRect.Left( 2 * ( getFrameArea().Left() + getFramePrintArea().Left() ) +
getFramePrintArea().Width() - rRect.Right() - 1 );
rRect.Width( nWidth );
}
void SwTextFrame::SwitchLTRtoRTL( Point& rPoint ) const
{
SwSwapIfNotSwapped swap(const_cast<SwTextFrame *>(this));
rPoint.setX( 2 * ( getFrameArea().Left() + getFramePrintArea().Left() ) + getFramePrintArea().Width() - rPoint.X() - 1 );
}
SwLayoutModeModifier::SwLayoutModeModifier( const OutputDevice& rOutp ) :
m_rOut( rOutp ), m_nOldLayoutMode( rOutp.GetLayoutMode() )
{
}
SwLayoutModeModifier::~SwLayoutModeModifier()
{
const_cast<OutputDevice&>(m_rOut).SetLayoutMode( m_nOldLayoutMode );
}
void SwLayoutModeModifier::Modify( bool bChgToRTL )
{
const_cast<OutputDevice&>(m_rOut).SetLayoutMode( bChgToRTL ?
ComplexTextLayoutFlags::BiDiStrong | ComplexTextLayoutFlags::BiDiRtl :
ComplexTextLayoutFlags::BiDiStrong );
}
void SwLayoutModeModifier::SetAuto()
{
const ComplexTextLayoutFlags nNewLayoutMode = m_nOldLayoutMode & ~ComplexTextLayoutFlags::BiDiStrong;
const_cast<OutputDevice&>(m_rOut).SetLayoutMode( nNewLayoutMode );
}
SwDigitModeModifier::SwDigitModeModifier( const OutputDevice& rOutp, LanguageType eCurLang ) :
rOut( rOutp ), nOldLanguageType( rOutp.GetDigitLanguage() )
{
LanguageType eLang = eCurLang;
if (utl::ConfigManager::IsFuzzing())
eLang = LANGUAGE_ENGLISH_US;
else
{
const SvtCTLOptions::TextNumerals nTextNumerals = SW_MOD()->GetCTLOptions().GetCTLTextNumerals();
if ( SvtCTLOptions::NUMERALS_HINDI == nTextNumerals )
eLang = LANGUAGE_ARABIC_SAUDI_ARABIA;
else if ( SvtCTLOptions::NUMERALS_ARABIC == nTextNumerals )
eLang = LANGUAGE_ENGLISH;
else if ( SvtCTLOptions::NUMERALS_SYSTEM == nTextNumerals )
eLang = ::GetAppLanguage();
}
const_cast<OutputDevice&>(rOut).SetDigitLanguage( eLang );
}
SwDigitModeModifier::~SwDigitModeModifier()
{
const_cast<OutputDevice&>(rOut).SetDigitLanguage( nOldLanguageType );
}
void SwTextFrame::Init()
{
OSL_ENSURE( !IsLocked(), "+SwTextFrame::Init: this is locked." );
if( !IsLocked() )
{
ClearPara();
ResetBlinkPor();
// set flags directly to save a ResetPreps call,
// and thereby an unnecessary GetPara call
// don't set bOrphan, bLocked or bWait to false!
// bOrphan = bFlag7 = bFlag8 = false;
}
}
SwTextFrame::SwTextFrame(SwTextNode * const pNode, SwFrame* pSib )
: SwContentFrame( pNode, pSib )
, mnAllLines( 0 )
, mnThisLines( 0 )
, mnFlyAnchorOfst( 0 )
, mnFlyAnchorOfstNoWrap( 0 )
, mnFlyAnchorVertOfstNoWrap( 0 )
, mnFootnoteLine( 0 )
, mnHeightOfLastLine( 0 )
, mnAdditionalFirstLineOffset( 0 )
// note: this may change this->pRegisteredIn to m_pMergedPara->listeners
, m_pMergedPara(CheckParaRedlineMerge(*this, *pNode)) // ensure it is inited
, mnOffset( 0 )
, mnCacheIndex( USHRT_MAX )
, mbLocked( false )
, mbWidow( false )
, mbJustWidow( false )
, mbEmpty( false )
, mbInFootnoteConnect( false )
, mbFootnote( false )
, mbRepaint( false )
, mbHasBlinkPortions( false )
, mbFieldFollow( false )
, mbHasAnimation( false )
, mbIsSwapped( false )
, mbFollowFormatAllowed( true )
{
mnFrameType = SwFrameType::Txt;
}
static void RemoveFootnotesForNode(
SwTextFrame const& rTextFrame, SwTextNode const& rTextNode)
{
const SwFootnoteIdxs &rFootnoteIdxs = rTextNode.GetDoc()->GetFootnoteIdxs();
size_t nPos = 0;
sal_uLong const nIndex = rTextNode.GetIndex();
rFootnoteIdxs.SeekEntry( rTextNode, &nPos );
if (nPos < rFootnoteIdxs.size())
{
while (nPos && &rTextNode == &(rFootnoteIdxs[ nPos ]->GetTextNode()))
--nPos;
if (nPos || &rTextNode != &(rFootnoteIdxs[ nPos ]->GetTextNode()))
++nPos;
}
while (nPos < rFootnoteIdxs.size())
{
SwTextFootnote* pTextFootnote = rFootnoteIdxs[ nPos ];
if (pTextFootnote->GetTextNode().GetIndex() > nIndex)
break;
pTextFootnote->DelFrames( &rTextFrame );
++nPos;
}
}
void SwTextFrame::DestroyImpl()
{
// Remove associated SwParaPortion from s_pTextCache
ClearPara();
assert(!GetDoc().IsInDtor()); // this shouldn't be happening with ViewShell owning layout
if (!GetDoc().IsInDtor() && HasFootnote())
{
if (m_pMergedPara)
{
SwTextNode const* pNode(nullptr);
for (auto const& e : m_pMergedPara->extents)
{
if (e.pNode != pNode)
{
pNode = e.pNode;
// sw_redlinehide: not sure if it's necessary to check
// if the nodes are still alive here, which would require
// accessing WriterMultiListener::m_vDepends
RemoveFootnotesForNode(*this, *pNode);
}
}
}
else
{
SwTextNode *const pNode(static_cast<SwTextNode*>(GetDep()));
if (pNode)
{
RemoveFootnotesForNode(*this, *pNode);
}
}
}
SwContentFrame::DestroyImpl();
}
SwTextFrame::~SwTextFrame()
{
}
namespace sw {
void UpdateMergedParaForInsert(MergedPara & rMerged,
SwTextNode const& rNode, sal_Int32 const nIndex, sal_Int32 const nLen)
{
assert(nIndex <= rNode.Len());
assert(nIndex + nLen <= rNode.Len());
OUStringBuffer text(rMerged.mergedText);
sal_Int32 nTFIndex(0);
bool bInserted(false);
bool bFoundNode(false);
auto itInsert(rMerged.extents.end());
for (auto it = rMerged.extents.begin(); it != rMerged.extents.end(); ++it)
{
if (it->pNode == &rNode)
{
bFoundNode = true;
if (it->nStart <= nIndex && nIndex <= it->nEnd)
{ // note: this can happen only once
text.insert(nTFIndex + (nIndex - it->nStart),
rNode.GetText().copy(nIndex, nLen));
it->nEnd += nLen;
bInserted = true;
}
else if (nIndex < it->nStart)
{
if (itInsert == rMerged.extents.end())
{
itInsert = it;
}
it->nStart += nLen;
it->nEnd += nLen;
}
}
else if (bFoundNode)
{
itInsert = it;
break;
}
nTFIndex += it->nEnd - it->nStart;
}
assert((bFoundNode || rMerged.extents.empty()) && "text node not found - why is it sending hints to us");
if (!bInserted)
{ // must be in a gap
rMerged.extents.emplace(itInsert, const_cast<SwTextNode*>(&rNode), nIndex, nIndex + nLen);
text.insert(nTFIndex, rNode.GetText().copy(nIndex, nLen));
}
rMerged.mergedText = text.makeStringAndClear();
}
// 1. if real delete => correct nStart/nEnd for full nLen
// 2. if rl delete => do not correct nStart/nEnd but just exclude deleted
TextFrameIndex UpdateMergedParaForDelete(MergedPara & rMerged,
bool const isRealDelete,
SwTextNode const& rNode, sal_Int32 nIndex, sal_Int32 const nLen)
{
assert(nIndex <= rNode.Len());
OUStringBuffer text(rMerged.mergedText);
sal_Int32 nTFIndex(0);
sal_Int32 nToDelete(nLen);
sal_Int32 nDeleted(0);
bool bFoundNode(false);
auto it = rMerged.extents.begin();
for (; it != rMerged.extents.end(); )
{
bool bErase(false);
if (it->pNode == &rNode)
{
bFoundNode = true;
if (nIndex + nToDelete <= it->nStart)
{
nToDelete = 0;
if (!isRealDelete)
{
break;
}
it->nStart -= nLen;
it->nEnd -= nLen;
}
else
{
if (nIndex < it->nStart)
{
// do not adjust nIndex into the text frame index space!
nToDelete -= it->nStart - nIndex;
nIndex = it->nStart;
// note: continue with the if check below, no else!
}
if (it->nStart <= nIndex && nIndex < it->nEnd)
{
sal_Int32 const nDeleteHere(nIndex + nToDelete <= it->nEnd
? nToDelete
: it->nEnd - nIndex);
text.remove(nTFIndex + (nIndex - it->nStart), nDeleteHere);
bErase = nDeleteHere == it->nEnd - it->nStart;
if (bErase)
{
assert(it->nStart == nIndex);
it = rMerged.extents.erase(it);
}
else if (isRealDelete)
{ // adjust for deleted text
it->nStart -= (nLen - nToDelete);
it->nEnd -= (nLen - nToDelete + nDeleteHere);
}
else
{ // exclude text marked as deleted
if (nIndex + nDeleteHere == it->nEnd)
{
it->nEnd -= nDeleteHere;
}
else
{
if (nIndex == it->nStart)
{
it->nStart += nDeleteHere;
}
else
{
it->nEnd = nIndex;
it = rMerged.extents.emplace(it+1,
it->pNode, nIndex + nDeleteHere, it->nEnd);
}
assert(nDeleteHere == nToDelete);
}
}
nDeleted += nDeleteHere;
nToDelete -= nDeleteHere;
nIndex += nDeleteHere;
if (!isRealDelete && nToDelete == 0)
{
break;
}
}
}
}
else if (bFoundNode)
{
break;
}
if (!bErase)
{
nTFIndex += it->nEnd - it->nStart;
++it;
}
}
assert(bFoundNode && "text node not found - why is it sending hints to us");
assert(nIndex - nDeleted <= rNode.Len());
// if there's a remaining deletion, it must be in gap at the end of the node
// can't do: might be last one in node was erased assert(nLen == 0 || rMerged.empty() || (it-1)->nEnd <= nIndex);
// TODO in ^ case, rMerged.listener.StopListening() ? and reset pFirst/pProps ...
rMerged.mergedText = text.makeStringAndClear();
return TextFrameIndex(nDeleted);
}
std::pair<SwTextNode*, sal_Int32>
MapViewToModel(MergedPara const& rMerged, TextFrameIndex const i_nIndex)
{
sal_Int32 nIndex(i_nIndex);
sw::Extent const* pExtent(nullptr);
for (auto it = rMerged.extents.begin(); it != rMerged.extents.end(); ++it)
{
pExtent = &*it;
if (nIndex < (pExtent->nEnd - pExtent->nStart))
{
return std::make_pair(pExtent->pNode, pExtent->nStart + nIndex);
}
nIndex = nIndex - (pExtent->nEnd - pExtent->nStart);
}
assert(nIndex == 0 && "view index out of bounds");
return pExtent
? std::make_pair(pExtent->pNode, pExtent->nEnd) //1-past-the-end index
: std::make_pair(rMerged.pFirstNode, sal_Int32(0));
}
TextFrameIndex MapModelToView(MergedPara const& rMerged, SwTextNode const*const pNode, sal_Int32 const nIndex)
{
sal_Int32 nRet(0);
bool bFoundNode(false);
for (auto const& e : rMerged.extents)
{
if (e.pNode == pNode)
{
if (e.nStart <= nIndex && nIndex <= e.nEnd)
{
return TextFrameIndex(nRet + (nIndex - e.nStart));
}
else if (nIndex < e.nStart)
{
// in gap before this extent => map to 0 here TODO???
return TextFrameIndex(nRet);
}
bFoundNode = true;
}
else if (bFoundNode)
{
break;
}
nRet += e.nEnd - e.nStart;
}
if (bFoundNode)
{
// must be in a gap at the end of the node
assert(nIndex <= pNode->Len());
return TextFrameIndex(nRet);
}
else if (rMerged.extents.empty())
{
assert(nIndex <= pNode->Len());
return TextFrameIndex(0);
}
assert(!"text node not found");
return TextFrameIndex(COMPLETE_STRING);
}
} // namespace sw
std::pair<SwTextNode*, sal_Int32>
SwTextFrame::MapViewToModel(TextFrameIndex const nIndex) const
{
//nope assert(GetPara());
sw::MergedPara const*const pMerged(GetMergedPara());
if (pMerged)
{
return sw::MapViewToModel(*pMerged, nIndex);
}
else
{
return std::make_pair(static_cast<SwTextNode*>(const_cast<SwModify*>(
SwFrame::GetDep())), sal_Int32(nIndex));
}
}
SwPosition SwTextFrame::MapViewToModelPos(TextFrameIndex const nIndex) const
{
std::pair<SwTextNode*, sal_Int32> const ret(MapViewToModel(nIndex));
return SwPosition(*ret.first, ret.second);
}
TextFrameIndex SwTextFrame::MapModelToView(SwTextNode const*const pNode, sal_Int32 const nIndex) const
{
//nope assert(GetPara());
sw::MergedPara const*const pMerged(GetMergedPara());
if (pMerged)
{
return sw::MapModelToView(*pMerged, pNode, nIndex);
}
else
{
assert(static_cast<SwTextNode*>(const_cast<SwModify*>(SwFrame::GetDep())) == pNode);
return TextFrameIndex(nIndex);
}
}
TextFrameIndex SwTextFrame::MapModelToViewPos(SwPosition const& rPos) const
{
SwTextNode const*const pNode(rPos.nNode.GetNode().GetTextNode());
sal_Int32 const nIndex(rPos.nContent.GetIndex());
return MapModelToView(pNode, nIndex);
}
const OUString& SwTextFrame::GetText() const
{
//nope assert(GetPara());
sw::MergedPara const*const pMerged(GetMergedPara());
if (pMerged)
return pMerged->mergedText;
else
return static_cast<SwTextNode const*>(SwFrame::GetDep())->GetText();
}
SwTextNode const* SwTextFrame::GetTextNodeForParaProps() const
{
// FIXME can GetPara be 0 ? yes... this is needed in SwContentNotify::SwContentNotify() which is called before any formatting is started
//nope assert(GetPara());
sw::MergedPara const*const pMerged(GetMergedPara());
if (pMerged)
return pMerged->pParaPropsNode;
else
return static_cast<SwTextNode const*>(SwFrame::GetDep());
}
SwTextNode const* SwTextFrame::GetTextNodeFirst() const
{
//nope assert(GetPara());
sw::MergedPara const*const pMerged(GetMergedPara());
if (pMerged)
return pMerged->pFirstNode;
else
return static_cast<SwTextNode const*>(SwFrame::GetDep());
}
SwDoc const& SwTextFrame::GetDoc() const
{
return *GetTextNodeFirst()->GetDoc();
}
LanguageType SwTextFrame::GetLangOfChar(TextFrameIndex const nIndex,
sal_uInt16 const nScript, bool const bNoChar) const
{
// a single character can be mapped uniquely!
std::pair<SwTextNode const*, sal_Int32> const pos(MapViewToModel(nIndex));
return pos.first->GetLang(pos.second, bNoChar ? 0 : 1, nScript);
}
void SwTextFrame::ResetPreps()
{
if ( GetCacheIdx() != USHRT_MAX )
{
SwParaPortion *pPara;
if( nullptr != (pPara = GetPara()) )
pPara->ResetPreps();
}
}
bool SwTextFrame::IsHiddenNow() const
{
SwFrameSwapper aSwapper( this, true );
if( !getFrameArea().Width() && isFrameAreaDefinitionValid() && GetUpper()->isFrameAreaDefinitionValid() ) // invalid when stack overflows (StackHack)!
{
// OSL_FAIL( "SwTextFrame::IsHiddenNow: thin frame" );
return true;
}
bool bHiddenCharsHidePara(false);
bool bHiddenParaField(false);
if (m_pMergedPara)
{
TextFrameIndex nHiddenStart(COMPLETE_STRING);
TextFrameIndex nHiddenEnd(0);
if (auto const pScriptInfo = GetScriptInfo())
{
pScriptInfo->GetBoundsOfHiddenRange(TextFrameIndex(0),
nHiddenStart, nHiddenEnd);
}
else // ParaPortion is created in Format, but this is called earlier
{
SwScriptInfo aInfo;
aInfo.InitScriptInfo(*m_pMergedPara->pFirstNode, m_pMergedPara.get(), IsRightToLeft());
aInfo.GetBoundsOfHiddenRange(TextFrameIndex(0),
nHiddenStart, nHiddenEnd);
}
if (TextFrameIndex(0) == nHiddenStart &&
TextFrameIndex(GetText().getLength()) <= nHiddenEnd)
{
bHiddenCharsHidePara = true;
}
sw::MergedAttrIter iter(*this);
SwTextNode const* pNode(nullptr);
int nNewResultWeight = 0;
for (SwTextAttr const* pHint = iter.NextAttr(&pNode); pHint; pHint = iter.NextAttr(&pNode))
{
if (pHint->Which() == RES_TXTATR_FIELD)
{
// see also SwpHints::CalcHiddenParaField()
const SwFormatField& rField = pHint->GetFormatField();
int nCurWeight = pNode->FieldCanHideParaWeight(rField.GetField()->GetTyp()->Which());
if (nCurWeight > nNewResultWeight)
{
nNewResultWeight = nCurWeight;
bHiddenParaField = pNode->FieldHidesPara(*rField.GetField());
}
else if (nCurWeight == nNewResultWeight && bHiddenParaField)
{
// Currently, for both supported hiding types (HiddenPara, Database), "Don't hide"
// takes precedence - i.e., if there's a "Don't hide" field of that weight, we only
// care about fields of higher weight.
bHiddenParaField = pNode->FieldHidesPara(*rField.GetField());
}
}
}
}
else
{
bHiddenCharsHidePara = static_cast<SwTextNode const*>(SwFrame::GetDep())->HasHiddenCharAttribute( true );
bHiddenParaField = static_cast<SwTextNode const*>(SwFrame::GetDep())->IsHiddenByParaField();
}
const SwViewShell* pVsh = getRootFrame()->GetCurrShell();
if ( pVsh && ( bHiddenCharsHidePara || bHiddenParaField ) )
{
if (
( bHiddenParaField &&
( !pVsh->GetViewOptions()->IsShowHiddenPara() &&
!pVsh->GetViewOptions()->IsFieldName() ) ) ||
( bHiddenCharsHidePara &&
!pVsh->GetViewOptions()->IsShowHiddenChar() ) )
{
return true;
}
}
return false;
}
/// Removes Textfrm's attachments, when it's hidden
void SwTextFrame::HideHidden()
{
OSL_ENSURE( !GetFollow() && IsHiddenNow(),
"HideHidden on visible frame of hidden frame has follow" );
HideFootnotes(GetOfst(), TextFrameIndex(COMPLETE_STRING));
HideAndShowObjects();
// format information is obsolete
ClearPara();
}
void SwTextFrame::HideFootnotes(TextFrameIndex const nStart, TextFrameIndex const nEnd)
{
SwPageFrame *pPage = nullptr;
sw::MergedAttrIter iter(*this);
SwTextNode const* pNode(nullptr);
for (SwTextAttr const* pHt = iter.NextAttr(&pNode); pHt; pHt = iter.NextAttr(&pNode))
{
if (pHt->Which() == RES_TXTATR_FTN)
{
TextFrameIndex const nIdx(MapModelToView(pNode, pHt->GetStart()));
if (nEnd < nIdx)
break;
if (nStart <= nIdx)
{
if (!pPage)
pPage = FindPageFrame();
pPage->RemoveFootnote( this, static_cast<const SwTextFootnote*>(pHt) );
}
}
}
}
/**
* as-character anchored graphics, which are used for a graphic bullet list.
* As long as these graphic bullet list aren't imported, do not hide a
* at-character anchored object, if
* (a) the document is an imported WW8 document -
* checked by checking certain compatibility options -
* (b) the paragraph is the last content in the document and
* (c) the anchor character is an as-character anchored graphic.
*/
bool sw_HideObj( const SwTextFrame& _rFrame,
const RndStdIds _eAnchorType,
SwPosition const& rAnchorPos,
SwAnchoredObject* _pAnchoredObj )
{
bool bRet( true );
if (_eAnchorType == RndStdIds::FLY_AT_CHAR)
{
const IDocumentSettingAccess *const pIDSA = &_rFrame.GetDoc().getIDocumentSettingAccess();
if ( !pIDSA->get(DocumentSettingId::USE_FORMER_TEXT_WRAPPING) &&
!pIDSA->get(DocumentSettingId::OLD_LINE_SPACING) &&
!pIDSA->get(DocumentSettingId::USE_FORMER_OBJECT_POS) &&
pIDSA->get(DocumentSettingId::CONSIDER_WRAP_ON_OBJECT_POSITION) &&
_rFrame.IsInDocBody() && !_rFrame.FindNextCnt() )
{
SwTextNode const& rNode(*rAnchorPos.nNode.GetNode().GetTextNode());
assert(FrameContainsNode(_rFrame, rNode.GetIndex()));
sal_Int32 const nObjAnchorPos(rAnchorPos.nContent.GetIndex());
const sal_Unicode cAnchorChar = nObjAnchorPos < rNode.Len()
? rNode.GetText()[nObjAnchorPos]
: 0;
if (cAnchorChar == CH_TXTATR_BREAKWORD)
{
const SwTextAttr* const pHint(
rNode.GetTextAttrForCharAt(nObjAnchorPos, RES_TXTATR_FLYCNT));
if ( pHint )
{
const SwFrameFormat* pFrameFormat =
static_cast<const SwTextFlyCnt*>(pHint)->GetFlyCnt().GetFrameFormat();
if ( pFrameFormat->Which() == RES_FLYFRMFMT )
{
SwNodeIndex nContentIndex = *(pFrameFormat->GetContent().GetContentIdx());
++nContentIndex;
if ( nContentIndex.GetNode().IsNoTextNode() )
{
bRet = false;
// set needed data structure values for object positioning
SwRectFnSet aRectFnSet(&_rFrame);
SwRect aLastCharRect( _rFrame.getFrameArea() );
aRectFnSet.SetWidth( aLastCharRect, 1 );
_pAnchoredObj->maLastCharRect = aLastCharRect;
_pAnchoredObj->mnLastTopOfLine = aRectFnSet.GetTop(aLastCharRect);
}
}
}
}
}
}
return bRet;
}
/**
* Hide/show objects
*
* Method hides respectively shows objects, which are anchored at paragraph,
* at/as a character of the paragraph, corresponding to the paragraph and
* paragraph portion visibility.
*
* - is called from HideHidden() - should hide objects in hidden paragraphs and
* - from Format_() - should hide/show objects in partly visible paragraphs
*/
void SwTextFrame::HideAndShowObjects()
{
if ( GetDrawObjs() )
{
if ( IsHiddenNow() )
{
// complete paragraph is hidden. Thus, hide all objects
for (SwAnchoredObject* i : *GetDrawObjs())
{
SdrObject* pObj = i->DrawObj();
SwContact* pContact = static_cast<SwContact*>(pObj->GetUserCall());
// under certain conditions
const RndStdIds eAnchorType( pContact->GetAnchorId() );
if ((eAnchorType != RndStdIds::FLY_AT_CHAR) ||
sw_HideObj(*this, eAnchorType, pContact->GetContentAnchor(),
i ))
{
pContact->MoveObjToInvisibleLayer( pObj );
}
}
}
else
{
// paragraph is visible, but can contain hidden text portion.
// first we check if objects are allowed to be hidden:
const SwViewShell* pVsh = getRootFrame()->GetCurrShell();
const bool bShouldBeHidden = !pVsh || !pVsh->GetWin() ||
!pVsh->GetViewOptions()->IsShowHiddenChar();
// Thus, show all objects, which are anchored at paragraph and
// hide/show objects, which are anchored at/as character, according
// to the visibility of the anchor character.
for (SwAnchoredObject* i : *GetDrawObjs())
{
SdrObject* pObj = i->DrawObj();
SwContact* pContact = static_cast<SwContact*>(pObj->GetUserCall());
// Determine anchor type only once
const RndStdIds eAnchorType( pContact->GetAnchorId() );
if (eAnchorType == RndStdIds::FLY_AT_PARA)
{
pContact->MoveObjToVisibleLayer( pObj );
}
else if ((eAnchorType == RndStdIds::FLY_AT_CHAR) ||
(eAnchorType == RndStdIds::FLY_AS_CHAR))
{
sal_Int32 nHiddenStart;
sal_Int32 nHiddenEnd;
const SwPosition& rAnchor = pContact->GetContentAnchor();
SwScriptInfo::GetBoundsOfHiddenRange(
*rAnchor.nNode.GetNode().GetTextNode(),
rAnchor.nContent.GetIndex(), nHiddenStart, nHiddenEnd);
// Under certain conditions
if ( nHiddenStart != COMPLETE_STRING && bShouldBeHidden &&
sw_HideObj(*this, eAnchorType, rAnchor, i))
{
pContact->MoveObjToInvisibleLayer( pObj );
}
else
pContact->MoveObjToVisibleLayer( pObj );
}
else
{
OSL_FAIL( "<SwTextFrame::HideAndShowObjects()> - object not anchored at/inside paragraph!?" );
}
}
}
}
if (IsFollow())
{
SwTextFrame *pMaster = FindMaster();
OSL_ENSURE(pMaster, "SwTextFrame without master");
if (pMaster)
pMaster->HideAndShowObjects();
}
}
/**
* Returns the first possible break point in the current line.
* This method is used in SwTextFrame::Format() to decide whether the previous
* line has to be formatted as well.
* nFound is <= nEndLine.
*/
TextFrameIndex SwTextFrame::FindBrk(const OUString &rText,
const TextFrameIndex nStart,
const TextFrameIndex nEnd)
{
sal_Int32 nFound = sal_Int32(nStart);
const sal_Int32 nEndLine = std::min(sal_Int32(nEnd), rText.getLength() - 1);
// Skip all leading blanks.
while( nFound <= nEndLine && ' ' == rText[nFound] )
{
nFound++;
}
// A tricky situation with the TextAttr-Dummy-character (in this case "$"):
// "Dr.$Meyer" at the beginning of the second line. Typing a blank after that
// doesn't result in the word moving into first line, even though that would work.
// For this reason we don't skip the dummy char.
while( nFound <= nEndLine && ' ' != rText[nFound] )
{
nFound++;
}
return TextFrameIndex(nFound);
}
bool SwTextFrame::IsIdxInside(TextFrameIndex const nPos, TextFrameIndex const nLen) const
{
// Silence over-eager warning emitted at least by GCC trunk towards 6:
#if defined __GNUC__ && !defined __clang__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstrict-overflow"
#endif
if (nLen != TextFrameIndex(COMPLETE_STRING) && GetOfst() > nPos + nLen) // the range preceded us
#if defined __GNUC__ && !defined __clang__
#pragma GCC diagnostic pop
#endif
return false;
if( !GetFollow() ) // the range doesn't precede us,
return true; // nobody follows us.
TextFrameIndex const nMax = GetFollow()->GetOfst();
// either the range overlap or our text has been deleted
// sw_redlinehide: GetText() should be okay here because it has already
// been updated in the INS/DEL hint case
if (nMax > nPos || nMax > TextFrameIndex(GetText().getLength()))
return true;
// changes made in the first line of a follow can modify the master
const SwParaPortion* pPara = GetFollow()->GetPara();
return pPara && ( nPos <= nMax + pPara->GetLen() );
}
inline void SwTextFrame::InvalidateRange(const SwCharRange &aRange, const long nD)
{
if ( IsIdxInside( aRange.Start(), aRange.Len() ) )
InvalidateRange_( aRange, nD );
}
void SwTextFrame::InvalidateRange_( const SwCharRange &aRange, const long nD)
{
if ( !HasPara() )
{ InvalidateSize();
return;
}
SetWidow( false );
SwParaPortion *pPara = GetPara();
bool bInv = false;
if( 0 != nD )
{
// In nDelta the differences between old and new
// linelengths are being added, that's why it's negative
// if chars have been added and positive, if chars have
// deleted
pPara->GetDelta() += nD;
bInv = true;
}
SwCharRange &rReformat = pPara->GetReformat();
if(aRange != rReformat) {
if (TextFrameIndex(COMPLETE_STRING) == rReformat.Len())
rReformat = aRange;
else
rReformat += aRange;
bInv = true;
}
if(bInv)
{
InvalidateSize();
}
}
void SwTextFrame::CalcLineSpace()
{
OSL_ENSURE( ! IsVertical() || ! IsSwapped(),
"SwTextFrame::CalcLineSpace with swapped frame!" );
if( IsLocked() || !HasPara() )
return;
if( GetDrawObjs() ||
GetTextNodeForParaProps()->GetSwAttrSet().GetLRSpace().IsAutoFirst())
{
Init();
return;
}
SwParaPortion *const pPara(GetPara());
assert(pPara);
if (pPara->IsFixLineHeight())
{
Init();
return;
}
Size aNewSize( getFramePrintArea().SSize() );
SwTextFormatInfo aInf( getRootFrame()->GetCurrShell()->GetOut(), this );
SwTextFormatter aLine( this, &aInf );
if( aLine.GetDropLines() )
{
Init();
return;
}
aLine.Top();
aLine.RecalcRealHeight();
aNewSize.setHeight( (aLine.Y() - getFrameArea().Top()) + aLine.GetLineHeight() );
SwTwips nDelta = aNewSize.Height() - getFramePrintArea().Height();
// Underflow with free-flying frames
if( aInf.GetTextFly().IsOn() )
{
SwRect aTmpFrame( getFrameArea() );
if( nDelta < 0 )
aTmpFrame.Height( getFramePrintArea().Height() );
else
aTmpFrame.Height( aNewSize.Height() );
if( aInf.GetTextFly().Relax( aTmpFrame ) )
{
Init();
return;
}
}
if( nDelta )
{
SwTextFrameBreak aBreak( this );
if( GetFollow() || aBreak.IsBreakNow( aLine ) )
{
// if there is a Follow() or if we need to break here, reformat
Init();
}
else
{
// everything is business as usual...
pPara->SetPrepAdjust();
pPara->SetPrep();
}
}
}
static void lcl_SetWrong( SwTextFrame& rFrame, SwTextNode const& rNode,
sal_Int32 const nPos, sal_Int32 const nCnt, bool const bMove)
{
if ( !rFrame.IsFollow() )
{
SwTextNode* pTextNode = const_cast<SwTextNode*>(&rNode);
IGrammarContact* pGrammarContact = getGrammarContact( *pTextNode );
SwGrammarMarkUp* pWrongGrammar = pGrammarContact ?
pGrammarContact->getGrammarCheck( *pTextNode, false ) :
pTextNode->GetGrammarCheck();
bool bGrammarProxy = pWrongGrammar != pTextNode->GetGrammarCheck();
if( bMove )
{
if( pTextNode->GetWrong() )
pTextNode->GetWrong()->Move( nPos, nCnt );
if( pWrongGrammar )
pWrongGrammar->MoveGrammar( nPos, nCnt );
if( bGrammarProxy && pTextNode->GetGrammarCheck() )
pTextNode->GetGrammarCheck()->MoveGrammar( nPos, nCnt );
if( pTextNode->GetSmartTags() )
pTextNode->GetSmartTags()->Move( nPos, nCnt );
}
else
{
if( pTextNode->GetWrong() )
pTextNode->GetWrong()->Invalidate( nPos, nCnt );
if( pWrongGrammar )
pWrongGrammar->Invalidate( nPos, nCnt );
if( pTextNode->GetSmartTags() )
pTextNode->GetSmartTags()->Invalidate( nPos, nCnt );
}
const sal_Int32 nEnd = nPos + (nCnt > 0 ? nCnt : 1 );
if ( !pTextNode->GetWrong() && !pTextNode->IsWrongDirty() )
{
pTextNode->SetWrong( new SwWrongList( WRONGLIST_SPELL ) );
pTextNode->GetWrong()->SetInvalid( nPos, nEnd );
}
if ( !pTextNode->GetSmartTags() && !pTextNode->IsSmartTagDirty() )
{
pTextNode->SetSmartTags( new SwWrongList( WRONGLIST_SMARTTAG ) );
pTextNode->GetSmartTags()->SetInvalid( nPos, nEnd );
}
pTextNode->SetWrongDirty(SwTextNode::WrongState::TODO);
pTextNode->SetGrammarCheckDirty( true );
pTextNode->SetWordCountDirty( true );
pTextNode->SetAutoCompleteWordDirty( true );
pTextNode->SetSmartTagDirty( true );
}
SwRootFrame *pRootFrame = rFrame.getRootFrame();
if (pRootFrame)
{
pRootFrame->SetNeedGrammarCheck( true );
}
SwPageFrame *pPage = rFrame.FindPageFrame();
if( pPage )
{
pPage->InvalidateSpelling();
pPage->InvalidateAutoCompleteWords();
pPage->InvalidateWordCount();
pPage->InvalidateSmartTags();
}
}
static void lcl_SetScriptInval(SwTextFrame& rFrame, TextFrameIndex const nPos)
{
if( rFrame.GetPara() )
rFrame.GetPara()->GetScriptInfo().SetInvalidityA( nPos );
}
static void lcl_ModifyOfst(SwTextFrame* pFrame, TextFrameIndex const nPos, TextFrameIndex const nLen)
{
while( pFrame && pFrame->GetOfst() <= nPos )
pFrame = pFrame->GetFollow();
while( pFrame )
{
if (nLen == TextFrameIndex(COMPLETE_STRING))
pFrame->ManipOfst(TextFrameIndex(pFrame->GetText().getLength()));
else
pFrame->ManipOfst( pFrame->GetOfst() + nLen );
pFrame = pFrame->GetFollow();
}
}
/**
* Related: fdo#56031 filter out attribute changes that don't matter for
* humans/a11y to stop flooding the destination mortal with useless noise
*/
static bool isA11yRelevantAttribute(sal_uInt16 nWhich)
{
return nWhich != RES_CHRATR_RSID;
}
// Note: for now this overrides SwClient::SwClientNotify; the intermediary
// classes still override SwClient::Modify, which should continue to work
// as their implementation of SwClientNotify is SwClient's which calls Modify.
// Therefore we also don't need to call SwClient::SwClientNotify(rModify, rHint)
// because that's all it does, and this implementation calls
// SwContentFrame::Modify() when appropriate.
void SwTextFrame::SwClientNotify(SwModify const& rModify, SfxHint const& rHint)
{
SfxPoolItem const* pOld(nullptr);
SfxPoolItem const* pNew(nullptr);
sw::RedlineDelText const* pRedlineDelText(nullptr);
if (auto const pHint = dynamic_cast<sw::LegacyModifyHint const*>(&rHint))
{
pOld = pHint->m_pOld;
pNew = pHint->m_pNew;
}
else if (auto const pHynt = dynamic_cast<sw::RedlineDelText const*>(&rHint))
{
pRedlineDelText = pHynt;
}
else
{
assert(!"unexpected hint");
}
if (m_pMergedPara)
{
assert(m_pMergedPara->listener.IsListeningTo(&rModify));
}
SwTextNode const& rNode(static_cast<SwTextNode const&>(rModify));
const sal_uInt16 nWhich = pOld ? pOld->Which() : pNew ? pNew->Which() : 0;
// modifications concerning frame attributes are processed by the base class
if( IsInRange( aFrameFormatSetRange, nWhich ) || RES_FMT_CHG == nWhich )
{
if (m_pMergedPara)
{ // ignore item set changes that don't apply
SwTextNode const*const pAttrNode(
(nWhich == RES_PAGEDESC || nWhich == RES_BREAK)
? m_pMergedPara->pFirstNode
: m_pMergedPara->pParaPropsNode);
if (pAttrNode != &rModify)
{
return;
}
}
SwContentFrame::Modify( pOld, pNew );
if( nWhich == RES_FMT_CHG && getRootFrame()->GetCurrShell() )
{
// collection has changed
Prepare();
InvalidatePrt_();
lcl_SetWrong( *this, rNode, 0, COMPLETE_STRING, false );
SetDerivedR2L( false );
CheckDirChange();
// Force complete paint due to existing indents.
SetCompletePaint();
InvalidateLineNum();
}
return;
}
if (m_pMergedPara && m_pMergedPara->pParaPropsNode != &rModify)
{
if (isPARATR(nWhich) || isPARATR_LIST(nWhich)) // FRMATR handled above
{
return; // ignore it
}
}
// while locked ignore all modifications
if( IsLocked() )
return;
// save stack
// warning: one has to ensure that all variables are set
TextFrameIndex nPos;
TextFrameIndex nLen;
bool bSetFieldsDirty = false;
bool bRecalcFootnoteFlag = false;
if (pRedlineDelText)
{
if (m_pMergedPara)
{
sal_Int32 const nNPos = pRedlineDelText->nStart;
sal_Int32 const nNLen = pRedlineDelText->nLen;
nPos = MapModelToView(&rNode, nNPos);
// update merged before doing anything else
nLen = UpdateMergedParaForDelete(*m_pMergedPara, false, rNode, nNPos, nNLen);
const sal_Int32 m = -nNLen;
if (nLen && IsIdxInside(nPos, nLen))
{
InvalidateRange( SwCharRange(nPos, TextFrameIndex(1)), m );
}
lcl_SetWrong( *this, rNode, nNPos, m, true );
if (nLen)
{
lcl_SetScriptInval( *this, nPos );
bSetFieldsDirty = bRecalcFootnoteFlag = true;
if (HasFollow())
lcl_ModifyOfst( this, nPos, nLen );
}
}
}
else switch (nWhich)
{
case RES_LINENUMBER:
{
assert(false); // should have been forwarded to SwContentFrame
InvalidateLineNum();
}
break;
case RES_INS_TXT:
{
sal_Int32 const nNPos = static_cast<const SwInsText*>(pNew)->nPos;
sal_Int32 const nNLen = static_cast<const SwInsText*>(pNew)->nLen;
nPos = MapModelToView(&rNode, nNPos);
nLen = TextFrameIndex(nNLen);
if (m_pMergedPara)
{
UpdateMergedParaForInsert(*m_pMergedPara, rNode, nNPos, nNLen);
}
if( IsIdxInside( nPos, nLen ) )
{
if( !nLen )
{
// Refresh NumPortions even when line is empty!
if( nPos )
InvalidateSize();
else
Prepare();
}
else
InvalidateRange_( SwCharRange( nPos, nLen ), nNLen );
}
lcl_SetWrong( *this, rNode, nNPos, nNLen, true );
lcl_SetScriptInval( *this, nPos );
bSetFieldsDirty = true;
if( HasFollow() )
lcl_ModifyOfst( this, nPos, nLen );
}
break;
case RES_DEL_CHR:
{
sal_Int32 const nNPos = static_cast<const SwDelChr*>(pNew)->nPos;
nPos = MapModelToView(&rNode, nNPos);
if (m_pMergedPara)
{
nLen = UpdateMergedParaForDelete(*m_pMergedPara, true, rNode, nNPos, 1);
}
else
{
nLen = TextFrameIndex(1);
}
lcl_SetWrong( *this, rNode, nNPos, -1, true );
if (nLen)
{
InvalidateRange( SwCharRange(nPos, nLen), -1 );
lcl_SetScriptInval( *this, nPos );
bSetFieldsDirty = bRecalcFootnoteFlag = true;
if (HasFollow())
lcl_ModifyOfst(this, nPos, TextFrameIndex(COMPLETE_STRING));
}
}
break;
case RES_DEL_TXT:
{
sal_Int32 const nNPos = static_cast<const SwDelText*>(pNew)->nStart;
sal_Int32 const nNLen = static_cast<const SwDelText*>(pNew)->nLen;
nPos = MapModelToView(&rNode, nNPos);
if (m_pMergedPara)
{ // update merged before doing anything else
nLen = UpdateMergedParaForDelete(*m_pMergedPara, true, rNode, nNPos, nNLen);
}
else
{
nLen = TextFrameIndex(nNLen);
}
const sal_Int32 m = -nNLen;
if ((!m_pMergedPara || nLen) && IsIdxInside(nPos, nLen))
{
if( !nLen )
InvalidateSize();
else
InvalidateRange( SwCharRange(nPos, TextFrameIndex(1)), m );
}
lcl_SetWrong( *this, rNode, nNPos, m, true );
if (nLen)
{
lcl_SetScriptInval( *this, nPos );
bSetFieldsDirty = bRecalcFootnoteFlag = true;
if (HasFollow())
lcl_ModifyOfst( this, nPos, nLen );
}
}
break;
case RES_UPDATE_ATTR:
{
sal_Int32 const nNPos = static_cast<const SwUpdateAttr*>(pNew)->getStart();
sal_Int32 const nNLen = static_cast<const SwUpdateAttr*>(pNew)->getEnd() - nNPos;
nPos = MapModelToView(&rNode, nNPos);
nLen = MapModelToView(&rNode, nNPos + nNLen) - nPos;
if( IsIdxInside( nPos, nLen ) )
{
// We need to reformat anyways, even if the invalidated
// area is NULL.
// E.g.: empty line, set 14 pt!
// if( !nLen ) nLen = 1;
// FootnoteNumbers need to be formatted
if( !nLen )
nLen = TextFrameIndex(1);
InvalidateRange_( SwCharRange( nPos, nLen) );
const sal_uInt16 nTmp = static_cast<const SwUpdateAttr*>(pNew)->getWhichAttr();
if( ! nTmp || RES_TXTATR_CHARFMT == nTmp || RES_TXTATR_INETFMT == nTmp || RES_TXTATR_AUTOFMT == nTmp ||
RES_FMT_CHG == nTmp || RES_ATTRSET_CHG == nTmp )
{
lcl_SetWrong( *this, rNode, nNPos, nNPos + nNLen, false );
lcl_SetScriptInval( *this, nPos );
}
}
}
break;
case RES_OBJECTDYING:
break;
case RES_PARATR_LINESPACING:
{
CalcLineSpace();
InvalidateSize();
InvalidatePrt_();
if( IsInSct() && !GetPrev() )
{
SwSectionFrame *pSect = FindSctFrame();
if( pSect->ContainsAny() == this )
pSect->InvalidatePrt();
}
// i#11859
// (1) Also invalidate next frame on next page/column.
// (2) Skip empty sections and hidden paragraphs
// Thus, use method <InvalidateNextPrtArea()>
InvalidateNextPrtArea();
SetCompletePaint();
}
break;
case RES_TXTATR_FIELD:
case RES_TXTATR_ANNOTATION:
{
sal_Int32 const nNPos = static_cast<const SwFormatField*>(pNew)->GetTextField()->GetStart();
nPos = MapModelToView(&rNode, nNPos);
if (IsIdxInside(nPos, TextFrameIndex(1)))
{
if( pNew == pOld )
{
// only repaint
// opt: invalidate window?
InvalidatePage();
SetCompletePaint();
}
else
InvalidateRange_(SwCharRange(nPos, TextFrameIndex(1)));
}
bSetFieldsDirty = true;
// ST2
if ( SwSmartTagMgr::Get().IsSmartTagsEnabled() )
lcl_SetWrong( *this, rNode, nNPos, nNPos + 1, false );
}
break;
case RES_TXTATR_FTN :
{
nPos = MapModelToView(&rNode,
static_cast<const SwFormatFootnote*>(pNew)->GetTextFootnote()->GetStart());
if (IsInFootnote() || IsIdxInside(nPos, TextFrameIndex(1)))
Prepare( PREP_FTN, static_cast<const SwFormatFootnote*>(pNew)->GetTextFootnote() );
break;
}
case RES_ATTRSET_CHG:
{
InvalidateLineNum();
const SwAttrSet& rNewSet = *static_cast<const SwAttrSetChg*>(pNew)->GetChgSet();
const SfxPoolItem* pItem = nullptr;
int nClear = 0;
sal_uInt16 nCount = rNewSet.Count();
if( SfxItemState::SET == rNewSet.GetItemState( RES_TXTATR_FTN, false, &pItem ))
{
nPos = MapModelToView(&rNode,
static_cast<const SwFormatFootnote*>(pItem)->GetTextFootnote()->GetStart());
if (IsIdxInside(nPos, TextFrameIndex(1)))
Prepare( PREP_FTN, pNew );
nClear = 0x01;
--nCount;
}
if( SfxItemState::SET == rNewSet.GetItemState( RES_TXTATR_FIELD, false, &pItem ))
{
nPos = MapModelToView(&rNode,
static_cast<const SwFormatField*>(pItem)->GetTextField()->GetStart());
if (IsIdxInside(nPos, TextFrameIndex(1)))
{
const SfxPoolItem* pOldItem = pOld ?
&(static_cast<const SwAttrSetChg*>(pOld)->GetChgSet()->Get(RES_TXTATR_FIELD)) : nullptr;
if( pItem == pOldItem )
{
InvalidatePage();
SetCompletePaint();
}
else
InvalidateRange_(SwCharRange(nPos, TextFrameIndex(1)));
}
nClear |= 0x02;
--nCount;
}
bool bLineSpace = SfxItemState::SET == rNewSet.GetItemState(
RES_PARATR_LINESPACING, false ),
bRegister = SfxItemState::SET == rNewSet.GetItemState(
RES_PARATR_REGISTER, false );
if ( bLineSpace || bRegister )
{
if (!m_pMergedPara || m_pMergedPara->pParaPropsNode == &rModify)
{
Prepare( bRegister ? PREP_REGISTER : PREP_ADJUST_FRM );
CalcLineSpace();
InvalidateSize();
InvalidatePrt_();
// i#11859
// (1) Also invalidate next frame on next page/column.
// (2) Skip empty sections and hidden paragraphs
// Thus, use method <InvalidateNextPrtArea()>
InvalidateNextPrtArea();
SetCompletePaint();
}
nClear |= 0x04;
if ( bLineSpace )
{
--nCount;
if ((!m_pMergedPara || m_pMergedPara->pParaPropsNode == &rModify)
&& IsInSct() && !GetPrev())
{
SwSectionFrame *pSect = FindSctFrame();
if( pSect->ContainsAny() == this )
pSect->InvalidatePrt();
}
}
if ( bRegister )
--nCount;
}
if ( SfxItemState::SET == rNewSet.GetItemState( RES_PARATR_SPLIT,
false ))
{
if (!m_pMergedPara || m_pMergedPara->pParaPropsNode == &rModify)
{
if (GetPrev())
CheckKeep();
Prepare();
InvalidateSize();
}
nClear |= 0x08;
--nCount;
}
if( SfxItemState::SET == rNewSet.GetItemState( RES_BACKGROUND, false)
&& (!m_pMergedPara || m_pMergedPara->pParaPropsNode == &rModify)
&& !IsFollow() && GetDrawObjs() )
{
SwSortedObjs *pObjs = GetDrawObjs();
for ( size_t i = 0; GetDrawObjs() && i < pObjs->size(); ++i )
{
SwAnchoredObject* pAnchoredObj = (*pObjs)[i];
if ( dynamic_cast< const SwFlyFrame *>( pAnchoredObj ) != nullptr )
{
SwFlyFrame *pFly = static_cast<SwFlyFrame*>(pAnchoredObj);
if( !pFly->IsFlyInContentFrame() )
{
const SvxBrushItem &rBack =
pFly->GetAttrSet()->GetBackground();
// #GetTransChg#
// following condition determines, if the fly frame
// "inherites" the background color of text frame.
// This is the case, if fly frame background
// color is "no fill"/"auto fill" and if the fly frame
// has no background graphic.
// Thus, check complete fly frame background
// color and *not* only its transparency value
if ( (rBack.GetColor() == COL_TRANSPARENT) &&
rBack.GetGraphicPos() == GPOS_NONE )
{
pFly->SetCompletePaint();
pFly->InvalidatePage();
}
}
}
}
}
if ( SfxItemState::SET ==
rNewSet.GetItemState( RES_TXTATR_CHARFMT, false ) )
{
lcl_SetWrong( *this, rNode, 0, COMPLETE_STRING, false );
lcl_SetScriptInval( *this, TextFrameIndex(0) );
}
else if ( SfxItemState::SET ==
rNewSet.GetItemState( RES_CHRATR_LANGUAGE, false ) ||
SfxItemState::SET ==
rNewSet.GetItemState( RES_CHRATR_CJK_LANGUAGE, false ) ||
SfxItemState::SET ==
rNewSet.GetItemState( RES_CHRATR_CTL_LANGUAGE, false ) )
lcl_SetWrong( *this, rNode, 0, COMPLETE_STRING, false );
else if ( SfxItemState::SET ==
rNewSet.GetItemState( RES_CHRATR_FONT, false ) ||
SfxItemState::SET ==
rNewSet.GetItemState( RES_CHRATR_CJK_FONT, false ) ||
SfxItemState::SET ==
rNewSet.GetItemState( RES_CHRATR_CTL_FONT, false ) )
lcl_SetScriptInval( *this, TextFrameIndex(0) );
else if ( SfxItemState::SET ==
rNewSet.GetItemState( RES_FRAMEDIR, false )
&& (!m_pMergedPara || m_pMergedPara->pParaPropsNode == &rModify))
{
SetDerivedR2L( false );
CheckDirChange();
// Force complete paint due to existing indents.
SetCompletePaint();
}
if( nCount )
{
if( getRootFrame()->GetCurrShell() )
{
Prepare();
InvalidatePrt_();
}
const bool bMergeModify = (m_pMergedPara &&
(m_pMergedPara->pParaPropsNode != &rModify ||
m_pMergedPara->pFirstNode != &rModify));
const bool bHasOldNew = pOld && pNew;
if ((nClear || bMergeModify) && bHasOldNew)
{
SwAttrSetChg aOldSet( *static_cast<const SwAttrSetChg*>(pOld) );
SwAttrSetChg aNewSet( *static_cast<const SwAttrSetChg*>(pNew) );
if (m_pMergedPara && m_pMergedPara->pParaPropsNode != &rModify)
{
for (sal_uInt16 i = RES_PARATR_BEGIN; i != RES_FRMATR_END; ++i)
{
if (i != RES_BREAK && i != RES_PAGEDESC)
{
aOldSet.ClearItem(i);
aNewSet.ClearItem(i);
}
}
}
if (m_pMergedPara && m_pMergedPara->pFirstNode != &rModify)
{
aOldSet.ClearItem(RES_BREAK);
aNewSet.ClearItem(RES_BREAK);
aOldSet.ClearItem(RES_PAGEDESC);
aNewSet.ClearItem(RES_PAGEDESC);
}
if( 0x01 & nClear )
{
aOldSet.ClearItem( RES_TXTATR_FTN );
aNewSet.ClearItem( RES_TXTATR_FTN );
}
if( 0x02 & nClear )
{
aOldSet.ClearItem( RES_TXTATR_FIELD );
aNewSet.ClearItem( RES_TXTATR_FIELD );
}
if ( 0x04 & nClear )
{
if ( bLineSpace )
{
aOldSet.ClearItem( RES_PARATR_LINESPACING );
aNewSet.ClearItem( RES_PARATR_LINESPACING );
}
if ( bRegister )
{
aOldSet.ClearItem( RES_PARATR_REGISTER );
aNewSet.ClearItem( RES_PARATR_REGISTER );
}
}
if ( 0x08 & nClear )
{
aOldSet.ClearItem( RES_PARATR_SPLIT );
aNewSet.ClearItem( RES_PARATR_SPLIT );
}
SwContentFrame::Modify( &aOldSet, &aNewSet );
}
else
SwContentFrame::Modify( pOld, pNew );
}
if (isA11yRelevantAttribute(nWhich))
{
SwViewShell* pViewSh = getRootFrame() ? getRootFrame()->GetCurrShell() : nullptr;
if ( pViewSh )
{
pViewSh->InvalidateAccessibleParaAttrs( *this );
}
}
}
break;
// Process SwDocPosUpdate
case RES_DOCPOS_UPDATE:
{
if( pOld && pNew )
{
const SwDocPosUpdate *pDocPos = static_cast<const SwDocPosUpdate*>(pOld);
if( pDocPos->nDocPos <= getFrameArea().Top() )
{
const SwFormatField *pField = static_cast<const SwFormatField *>(pNew);
TextFrameIndex const nIndex(MapModelToView(&rNode,
pField->GetTextField()->GetStart()));
InvalidateRange(SwCharRange(nIndex, TextFrameIndex(1)));
}
}
break;
}
case RES_PARATR_SPLIT:
if ( GetPrev() )
CheckKeep();
Prepare();
bSetFieldsDirty = true;
break;
case RES_FRAMEDIR :
assert(false); // should have been forwarded to SwContentFrame
SetDerivedR2L( false );
CheckDirChange();
break;
default:
{
Prepare();
InvalidatePrt_();
if ( !nWhich )
{
// is called by e. g. HiddenPara with 0
SwFrame *pNxt;
if ( nullptr != (pNxt = FindNext()) )
pNxt->InvalidatePrt();
}
}
} // switch
if( bSetFieldsDirty )
GetDoc().getIDocumentFieldsAccess().SetFieldsDirty( true, &rNode, 1 );
if ( bRecalcFootnoteFlag )
CalcFootnoteFlag();
}
bool SwTextFrame::GetInfo( SfxPoolItem &rHint ) const
{
if ( RES_VIRTPAGENUM_INFO == rHint.Which() && IsInDocBody() && ! IsFollow() )
{
SwVirtPageNumInfo &rInfo = static_cast<SwVirtPageNumInfo&>(rHint);
const SwPageFrame *pPage = FindPageFrame();
if ( pPage )
{
if ( pPage == rInfo.GetOrigPage() && !GetPrev() )
{
// this should be the one
// (could only differ temporarily; is that disturbing?)
rInfo.SetInfo( pPage, this );
return false;
}
if ( pPage->GetPhyPageNum() < rInfo.GetOrigPage()->GetPhyPageNum() &&
(!rInfo.GetPage() || pPage->GetPhyPageNum() > rInfo.GetPage()->GetPhyPageNum()))
{
// this could be the one
rInfo.SetInfo( pPage, this );
}
}
}
return true;
}
void SwTextFrame::PrepWidows( const sal_uInt16 nNeed, bool bNotify )
{
OSL_ENSURE(GetFollow() && nNeed, "+SwTextFrame::Prepare: lost all friends");
SwParaPortion *pPara = GetPara();
if ( !pPara )
return;
pPara->SetPrepWidows();
sal_uInt16 nHave = nNeed;
// We yield a few lines and shrink in CalcPreps()
SwSwapIfNotSwapped swap( this );
SwTextSizeInfo aInf( this );
SwTextMargin aLine( this, &aInf );
aLine.Bottom();
TextFrameIndex nTmpLen = aLine.GetCurr()->GetLen();
while( nHave && aLine.PrevLine() )
{
if( nTmpLen )
--nHave;
nTmpLen = aLine.GetCurr()->GetLen();
}
// If it's certain that we can yield lines, the Master needs
// to check the widow rule
if( !nHave )
{
bool bSplit = true;
if( !IsFollow() ) // only a master decides about orphans
{
const WidowsAndOrphans aWidOrp( this );
bSplit = ( aLine.GetLineNr() >= aWidOrp.GetOrphansLines() &&
aLine.GetLineNr() >= aLine.GetDropLines() );
}
if( bSplit )
{
GetFollow()->SetOfst( aLine.GetEnd() );
aLine.TruncLines( true );
if( pPara->IsFollowField() )
GetFollow()->SetFieldFollow( true );
}
}
if ( bNotify )
{
InvalidateSize_();
InvalidatePage();
}
}
static bool lcl_ErgoVadis(SwTextFrame* pFrame, TextFrameIndex & rPos, const PrepareHint ePrep)
{
const SwFootnoteInfo &rFootnoteInfo = pFrame->GetDoc().GetFootnoteInfo();
if( ePrep == PREP_ERGOSUM )
{
if( rFootnoteInfo.aErgoSum.isEmpty() )
return false;
rPos = pFrame->GetOfst();
}
else
{
if( rFootnoteInfo.aQuoVadis.isEmpty() )
return false;
if( pFrame->HasFollow() )
rPos = pFrame->GetFollow()->GetOfst();
else
rPos = TextFrameIndex(pFrame->GetText().getLength());
if( rPos )
--rPos; // our last character
}
return true;
}
// Silence over-eager warning emitted at least by GCC 5.3.1
#if defined __GNUC__ && !defined __clang__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wstrict-overflow"
#endif
bool SwTextFrame::Prepare( const PrepareHint ePrep, const void* pVoid,
bool bNotify )
{
bool bParaPossiblyInvalid = false;
SwFrameSwapper aSwapper( this, false );
if ( IsEmpty() )
{
switch ( ePrep )
{
case PREP_BOSS_CHGD:
SetInvalidVert( true ); // Test
SAL_FALLTHROUGH;
case PREP_WIDOWS_ORPHANS:
case PREP_WIDOWS:
case PREP_FTN_GONE : return bParaPossiblyInvalid;
case PREP_POS_CHGD :
{
// We also need an InvalidateSize for Areas (with and without columns),
// so that we format and bUndersized is set (if needed)
if( IsInFly() || IsInSct() )
{
SwTwips nTmpBottom = GetUpper()->getFrameArea().Top() +
GetUpper()->getFramePrintArea().Bottom();
if( nTmpBottom < getFrameArea().Bottom() )
break;
}
// Are there any free-flying frames on this page?
SwTextFly aTextFly( this );
if( aTextFly.IsOn() )
{
// Does any free-flying frame overlap?
if ( aTextFly.Relax() || IsUndersized() )
break;
}
if (GetTextNodeForParaProps()->GetSwAttrSet().GetRegister().GetValue())
break;
SwTextGridItem const*const pGrid(GetGridItem(FindPageFrame()));
if (pGrid && GetTextNodeForParaProps()->GetSwAttrSet().GetParaGrid().GetValue())
break;
// i#28701 - consider anchored objects
if ( GetDrawObjs() )
break;
return bParaPossiblyInvalid;
}
default:
break;
}
}
if( !HasPara() && PREP_MUST_FIT != ePrep )
{
SetInvalidVert( true ); // Test
OSL_ENSURE( !IsLocked(), "SwTextFrame::Prepare: three of a perfect pair" );
if ( bNotify )
InvalidateSize();
else
InvalidateSize_();
return bParaPossiblyInvalid;
}
// Get object from cache while locking
SwTextLineAccess aAccess( this );
SwParaPortion *pPara = aAccess.GetPara();
switch( ePrep )
{
case PREP_MOVEFTN :
{
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*this);
aFrm.Height(0);
}
{
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*this);
aPrt.Height(0);
}
InvalidatePrt_();
InvalidateSize_();
SAL_FALLTHROUGH;
case PREP_ADJUST_FRM :
pPara->SetPrepAdjust();
if( IsFootnoteNumFrame() != pPara->IsFootnoteNum() ||
IsUndersized() )
{
InvalidateRange(SwCharRange(TextFrameIndex(0), TextFrameIndex(1)), 1);
if( GetOfst() && !IsFollow() )
SetOfst_(TextFrameIndex(0));
}
break;
case PREP_MUST_FIT :
pPara->SetPrepMustFit(true);
SAL_FALLTHROUGH;
case PREP_WIDOWS_ORPHANS :
pPara->SetPrepAdjust();
break;
case PREP_WIDOWS :
// MustFit is stronger than anything else
if( pPara->IsPrepMustFit() )
return bParaPossiblyInvalid;
// see comment in WidowsAndOrphans::FindOrphans and CalcPreps()
PrepWidows( *static_cast<const sal_uInt16 *>(pVoid), bNotify );
break;
case PREP_FTN :
{
SwTextFootnote const *pFootnote = static_cast<SwTextFootnote const *>(pVoid);
if( IsInFootnote() )
{
// Am I the first TextFrame of a footnote?
if( !GetPrev() )
// So we're a TextFrame of the footnote, which has
// to display the footnote number or the ErgoSum text
InvalidateRange(SwCharRange(TextFrameIndex(0), TextFrameIndex(1)), 1);
if( !GetNext() )
{
// We're the last Footnote; we need to update the
// QuoVadis texts now
const SwFootnoteInfo &rFootnoteInfo = GetDoc().GetFootnoteInfo();
if( !pPara->UpdateQuoVadis( rFootnoteInfo.aQuoVadis ) )
{
TextFrameIndex nPos = pPara->GetParLen();
if( nPos )
--nPos;
InvalidateRange( SwCharRange(nPos, TextFrameIndex(1)), 1);
}
}
}
else
{
// We are the TextFrame _with_ the footnote
TextFrameIndex const nPos = MapModelToView(
&pFootnote->GetTextNode(), pFootnote->GetStart());
InvalidateRange(SwCharRange(nPos, TextFrameIndex(1)), 1);
}
break;
}
case PREP_BOSS_CHGD :
{
// Test
{
SetInvalidVert( false );
bool bOld = IsVertical();
SetInvalidVert( true );
if( bOld != IsVertical() )
InvalidateRange(SwCharRange(GetOfst(), TextFrameIndex(COMPLETE_STRING)));
}
if( HasFollow() )
{
TextFrameIndex nNxtOfst = GetFollow()->GetOfst();
if( nNxtOfst )
--nNxtOfst;
InvalidateRange(SwCharRange( nNxtOfst, TextFrameIndex(1)), 1);
}
if( IsInFootnote() )
{
TextFrameIndex nPos;
if( lcl_ErgoVadis( this, nPos, PREP_QUOVADIS ) )
InvalidateRange( SwCharRange( nPos, TextFrameIndex(1)) );
if( lcl_ErgoVadis( this, nPos, PREP_ERGOSUM ) )
InvalidateRange( SwCharRange( nPos, TextFrameIndex(1)) );
}
// If we have a page number field, we must invalidate those spots
SwTextNode const* pNode(nullptr);
sw::MergedAttrIter iter(*this);
TextFrameIndex const nEnd = GetFollow()
? GetFollow()->GetOfst() : TextFrameIndex(COMPLETE_STRING);
for (SwTextAttr const* pHt = iter.NextAttr(&pNode); pHt; pHt = iter.NextAttr(&pNode))
{
TextFrameIndex const nStart(MapModelToView(pNode, pHt->GetStart()));
if (nStart >= GetOfst())
{
if (nStart >= nEnd)
break;
// If we're flowing back and own a Footnote, the Footnote also flows
// with us. So that it doesn't obstruct us, we send ourselves
// a ADJUST_FRM.
// pVoid != 0 means MoveBwd()
const sal_uInt16 nWhich = pHt->Which();
if (RES_TXTATR_FIELD == nWhich ||
(HasFootnote() && pVoid && RES_TXTATR_FTN == nWhich))
InvalidateRange(SwCharRange(nStart, TextFrameIndex(1)), 1);
}
}
// A new boss, a new chance for growing
if( IsUndersized() )
{
InvalidateSize_();
InvalidateRange(SwCharRange(GetOfst(), TextFrameIndex(1)), 1);
}
break;
}
case PREP_POS_CHGD :
{
if ( isFramePrintAreaValid() )
{
SwTextGridItem const*const pGrid(GetGridItem(FindPageFrame()));
if (pGrid && GetTextNodeForParaProps()->GetSwAttrSet().GetParaGrid().GetValue())
InvalidatePrt();
}
// If we don't overlap with anybody:
// did any free-flying frame overlapped _before_ the position change?
bool bFormat = pPara->HasFly();
if( !bFormat )
{
if( IsInFly() )
{
SwTwips nTmpBottom = GetUpper()->getFrameArea().Top() +
GetUpper()->getFramePrintArea().Bottom();
if( nTmpBottom < getFrameArea().Bottom() )
bFormat = true;
}
if( !bFormat )
{
if ( GetDrawObjs() )
{
const size_t nCnt = GetDrawObjs()->size();
for ( size_t i = 0; i < nCnt; ++i )
{
SwAnchoredObject* pAnchoredObj = (*GetDrawObjs())[i];
// i#28701 - consider all
// to-character anchored objects
if ( pAnchoredObj->GetFrameFormat().GetAnchor().GetAnchorId()
== RndStdIds::FLY_AT_CHAR )
{
bFormat = true;
break;
}
}
}
if( !bFormat )
{
// Are there any free-flying frames on this page?
SwTextFly aTextFly( this );
if( aTextFly.IsOn() )
{
// Does any free-flying frame overlap?
bFormat = aTextFly.Relax() || IsUndersized();
}
}
}
}
if( bFormat )
{
if( !IsLocked() )
{
if( pPara->GetRepaint().HasArea() )
SetCompletePaint();
Init();
pPara = nullptr;
InvalidateSize_();
}
}
else
{
if (GetTextNodeForParaProps()->GetSwAttrSet().GetRegister().GetValue())
bParaPossiblyInvalid = Prepare( PREP_REGISTER, nullptr, bNotify );
// The Frames need to be readjusted, which caused by changes
// in position
else if( HasFootnote() )
{
bParaPossiblyInvalid = Prepare( PREP_ADJUST_FRM, nullptr, bNotify );
InvalidateSize_();
}
else
return bParaPossiblyInvalid; // So that there's no SetPrep()
if (bParaPossiblyInvalid)
{
// It's possible that pPara was deleted above; retrieve it again
pPara = aAccess.GetPara();
}
}
break;
}
case PREP_REGISTER:
if (GetTextNodeForParaProps()->GetSwAttrSet().GetRegister().GetValue())
{
pPara->SetPrepAdjust();
CalcLineSpace();
// It's possible that pPara was deleted above; retrieve it again
bParaPossiblyInvalid = true;
pPara = aAccess.GetPara();
InvalidateSize();
InvalidatePrt_();
SwFrame* pNxt;
if ( nullptr != ( pNxt = GetIndNext() ) )
{
pNxt->InvalidatePrt_();
if ( pNxt->IsLayoutFrame() )
pNxt->InvalidatePage();
}
SetCompletePaint();
}
break;
case PREP_FTN_GONE :
{
// If a Follow is calling us, because a footnote is being deleted, our last
// line has to be formatted, so that the first line of the Follow can flow up.
// Which had flowed to the next page to be together with the footnote (this is
// especially true for areas with columns)
OSL_ENSURE( GetFollow(), "PREP_FTN_GONE may only be called by Follow" );
TextFrameIndex nPos = GetFollow()->GetOfst();
if( IsFollow() && GetOfst() == nPos ) // If we don't have a mass of text, we call our
FindMaster()->Prepare( PREP_FTN_GONE ); // Master's Prepare
if( nPos )
--nPos; // The char preceding our Follow
InvalidateRange(SwCharRange(nPos, TextFrameIndex(1)));
return bParaPossiblyInvalid;
}
case PREP_ERGOSUM:
case PREP_QUOVADIS:
{
TextFrameIndex nPos;
if( lcl_ErgoVadis( this, nPos, ePrep ) )
InvalidateRange(SwCharRange(nPos, TextFrameIndex(1)));
}
break;
case PREP_FLY_ATTR_CHG:
{
if( pVoid )
{
TextFrameIndex const nWhere = CalcFlyPos( static_cast<SwFrameFormat const *>(pVoid) );
OSL_ENSURE( TextFrameIndex(COMPLETE_STRING) != nWhere, "Prepare: Why me?" );
InvalidateRange(SwCharRange(nWhere, TextFrameIndex(1)));
return bParaPossiblyInvalid;
}
SAL_FALLTHROUGH; // else: continue with default case block
}
case PREP_CLEAR:
default:
{
if( IsLocked() )
{
if( PREP_FLY_ARRIVE == ePrep || PREP_FLY_LEAVE == ePrep )
{
TextFrameIndex const nLen = (GetFollow()
? GetFollow()->GetOfst()
: TextFrameIndex(COMPLETE_STRING))
- GetOfst();
InvalidateRange( SwCharRange( GetOfst(), nLen ) );
}
}
else
{
if( pPara->GetRepaint().HasArea() )
SetCompletePaint();
Init();
pPara = nullptr;
if( GetOfst() && !IsFollow() )
SetOfst_( TextFrameIndex(0) );
if ( bNotify )
InvalidateSize();
else
InvalidateSize_();
}
return bParaPossiblyInvalid; // no SetPrep() happened
}
}
if( pPara )
{
pPara->SetPrep();
}
return bParaPossiblyInvalid;
}
#if defined __GNUC__ && !defined __clang__
# pragma GCC diagnostic pop
#endif
/**
* Small Helper class:
* Prepares a test format.
* The frame is changed in size and position, its SwParaPortion is moved aside
* and a new one is created.
* To achieve this, run formatting with bTestFormat flag set.
* In the destructor the TextFrame is reset to its original state.
*/
class SwTestFormat
{
SwTextFrame *pFrame;
SwParaPortion *pOldPara;
SwRect aOldFrame, aOldPrt;
public:
SwTestFormat( SwTextFrame* pTextFrame, const SwFrame* pPrv, SwTwips nMaxHeight );
~SwTestFormat();
};
SwTestFormat::SwTestFormat( SwTextFrame* pTextFrame, const SwFrame* pPre, SwTwips nMaxHeight )
: pFrame( pTextFrame )
{
aOldFrame = pFrame->getFrameArea();
aOldPrt = pFrame->getFramePrintArea();
SwRectFnSet aRectFnSet(pFrame);
SwTwips nLower = aRectFnSet.GetBottomMargin(*pFrame);
{
// indeed, here the GetUpper()->getFramePrintArea() gets copied and manipulated
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*pFrame);
aFrm.setSwRect(pFrame->GetUpper()->getFramePrintArea());
aFrm += pFrame->GetUpper()->getFrameArea().Pos();
aRectFnSet.SetHeight( aFrm, nMaxHeight );
if( pFrame->GetPrev() )
{
aRectFnSet.SetPosY(
aFrm,
aRectFnSet.GetBottom(pFrame->GetPrev()->getFrameArea()) - ( aRectFnSet.IsVert() ? nMaxHeight + 1 : 0 ) );
}
}
SwBorderAttrAccess aAccess( SwFrame::GetCache(), pFrame );
const SwBorderAttrs &rAttrs = *aAccess.Get();
{
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*pFrame);
aRectFnSet.SetPosX(aPrt, rAttrs.CalcLeft( pFrame ) );
}
if( pPre )
{
SwTwips nUpper = pFrame->CalcUpperSpace( &rAttrs, pPre );
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*pFrame);
aRectFnSet.SetPosY(aPrt, nUpper );
}
{
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*pFrame);
aRectFnSet.SetHeight( aPrt, std::max( 0L , aRectFnSet.GetHeight(pFrame->getFrameArea()) - aRectFnSet.GetTop(aPrt) - nLower ) );
aRectFnSet.SetWidth( aPrt, aRectFnSet.GetWidth(pFrame->getFrameArea()) - ( rAttrs.CalcLeft( pFrame ) + rAttrs.CalcRight( pFrame ) ) );
}
pOldPara = pFrame->HasPara() ? pFrame->GetPara() : nullptr;
pFrame->SetPara( new SwParaPortion(), false );
OSL_ENSURE( ! pFrame->IsSwapped(), "A frame is swapped before Format_" );
if ( pFrame->IsVertical() )
pFrame->SwapWidthAndHeight();
SwTextFormatInfo aInf( pFrame->getRootFrame()->GetCurrShell()->GetOut(), pFrame, false, true, true );
SwTextFormatter aLine( pFrame, &aInf );
pFrame->Format_( aLine, aInf );
if ( pFrame->IsVertical() )
pFrame->SwapWidthAndHeight();
OSL_ENSURE( ! pFrame->IsSwapped(), "A frame is swapped after Format_" );
}
SwTestFormat::~SwTestFormat()
{
{
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*pFrame);
aFrm.setSwRect(aOldFrame);
}
{
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*pFrame);
aPrt.setSwRect(aOldPrt);
}
pFrame->SetPara( pOldPara );
}
bool SwTextFrame::TestFormat( const SwFrame* pPrv, SwTwips &rMaxHeight, bool &bSplit )
{
PROTOCOL_ENTER( this, PROT::TestFormat, DbgAction::NONE, nullptr )
if( IsLocked() && GetUpper()->getFramePrintArea().Width() <= 0 )
return false;
SwTestFormat aSave( this, pPrv, rMaxHeight );
return SwTextFrame::WouldFit( rMaxHeight, bSplit, true );
}
/**
* We should not and don't need to reformat.
* We assume that we already formatted and that the formatting
* data is still current.
*
* We also assume that the frame width of the Master and Follow
* are the same. That's why we're not calling FindBreak() for
* FindOrphans().
* The required height is coming from nMaxHeight.
*
* @returns true if I can split
*/
bool SwTextFrame::WouldFit( SwTwips &rMaxHeight, bool &bSplit, bool bTst )
{
OSL_ENSURE( ! IsVertical() || ! IsSwapped(),
"SwTextFrame::WouldFit with swapped frame" );
SwRectFnSet aRectFnSet(this);
if( IsLocked() )
return false;
// it can happen that the IdleCollector removed the cached information
if( !IsEmpty() )
GetFormatted();
// i#27801 - correction: 'short cut' for empty paragraph
// can *not* be applied, if test format is in progress. The test format doesn't
// adjust the frame and the printing area - see method <SwTextFrame::Format_(..)>,
// which is called in <SwTextFrame::TestFormat(..)>
if ( IsEmpty() && !bTst )
{
bSplit = false;
SwTwips nHeight = aRectFnSet.IsVert() ? getFramePrintArea().SSize().Width() : getFramePrintArea().SSize().Height();
if( rMaxHeight < nHeight )
return false;
else
{
rMaxHeight -= nHeight;
return true;
}
}
// GetPara can still be 0 in edge cases
// We return true in order to be reformatted on the new Page
OSL_ENSURE( HasPara() || IsHiddenNow(), "WouldFit: GetFormatted() and then !HasPara()" );
if( !HasPara() || ( !aRectFnSet.GetHeight(getFrameArea()) && IsHiddenNow() ) )
return true;
// Because the Orphan flag only exists for a short moment, we also check
// whether the Framesize is set to very huge by CalcPreps, in order to
// force a MoveFwd
if( IsWidow() || ( aRectFnSet.IsVert() ?
( 0 == getFrameArea().Left() ) :
( LONG_MAX - 20000 < getFrameArea().Bottom() ) ) )
{
SetWidow(false);
if ( GetFollow() )
{
// If we've ended up here due to a Widow request by our Follow, we check
// whether there's a Follow with a real height at all.
// Else (e.g. for newly created SctFrames) we ignore the IsWidow() and
// still check if we can find enough room
if( ( ( ! aRectFnSet.IsVert() && LONG_MAX - 20000 >= getFrameArea().Bottom() ) ||
( aRectFnSet.IsVert() && 0 < getFrameArea().Left() ) ) &&
( GetFollow()->IsVertical() ?
!GetFollow()->getFrameArea().Width() :
!GetFollow()->getFrameArea().Height() ) )
{
SwTextFrame* pFoll = GetFollow()->GetFollow();
while( pFoll &&
( pFoll->IsVertical() ?
!pFoll->getFrameArea().Width() :
!pFoll->getFrameArea().Height() ) )
pFoll = pFoll->GetFollow();
if( pFoll )
return false;
}
else
return false;
}
}
SwSwapIfNotSwapped swap( this );
SwTextSizeInfo aInf( this );
SwTextMargin aLine( this, &aInf );
WidowsAndOrphans aFrameBreak( this, rMaxHeight, bSplit );
bool bRet = true;
aLine.Bottom();
// is breaking necessary?
bSplit = !aFrameBreak.IsInside( aLine );
if ( bSplit )
bRet = !aFrameBreak.IsKeepAlways() && aFrameBreak.WouldFit( aLine, rMaxHeight, bTst );
else
{
// we need the total height including the current line
aLine.Top();
do
{
rMaxHeight -= aLine.GetLineHeight();
} while ( aLine.Next() );
}
return bRet;
}
sal_uInt16 SwTextFrame::GetParHeight() const
{
OSL_ENSURE( ! IsVertical() || ! IsSwapped(),
"SwTextFrame::GetParHeight with swapped frame" );
if( !HasPara() )
{ // For non-empty paragraphs this is a special case
// For UnderSized we can simply just ask 1 Twip more
sal_uInt16 nRet = static_cast<sal_uInt16>(getFramePrintArea().SSize().Height());
if( IsUndersized() )
{
if( IsEmpty() || GetText().isEmpty() )
nRet = static_cast<sal_uInt16>(EmptyHeight());
else
++nRet;
}
return nRet;
}
// TODO: Refactor and improve code
const SwLineLayout* pLineLayout = GetPara();
sal_uInt16 nHeight = pLineLayout ? pLineLayout->GetRealHeight() : 0;
// Is this paragraph scrolled? Our height until now is at least
// one line height too low then
if( GetOfst() && !IsFollow() )
nHeight *= 2;
while ( pLineLayout && pLineLayout->GetNext() )
{
pLineLayout = pLineLayout->GetNext();
nHeight = nHeight + pLineLayout->GetRealHeight();
}
return nHeight;
}
/**
* @returns this _always_ in the formatted state!
*/
SwTextFrame* SwTextFrame::GetFormatted( bool bForceQuickFormat )
{
vcl::RenderContext* pRenderContext = getRootFrame()->GetCurrShell()->GetOut();
SwSwapIfSwapped swap( this );
// In case the SwLineLayout was cleared out of the s_pTextCache, recreate it
// Not for empty paragraphs
if( !HasPara() && !(isFrameAreaDefinitionValid() && IsEmpty()) )
{
// Calc() must be called, because frame position can be wrong
const bool bFormat = isFrameAreaSizeValid();
Calc(pRenderContext); // calls Format() if invalid
// If the flags were valid (hence bFormat=true), Calc did nothing,
// so Format() must be called manually in order to recreate
// the SwLineLayout that has been deleted from the
// SwTextFrame::s_pTextCache (hence !HasPara() above).
// Optimization with FormatQuick()
if( bFormat && !FormatQuick( bForceQuickFormat ) )
Format(getRootFrame()->GetCurrShell()->GetOut());
}
return this;
}
SwTwips SwTextFrame::CalcFitToContent()
{
// i#31490
// If we are currently locked, we better return with a
// fairly reasonable value:
if ( IsLocked() )
return getFramePrintArea().Width();
SwParaPortion* pOldPara = GetPara();
SwParaPortion *pDummy = new SwParaPortion();
SetPara( pDummy, false );
const SwPageFrame* pPage = FindPageFrame();
const Point aOldFramePos = getFrameArea().Pos();
const SwTwips nOldFrameWidth = getFrameArea().Width();
const SwTwips nOldPrtWidth = getFramePrintArea().Width();
const SwTwips nPageWidth = GetUpper()->IsVertical() ?
pPage->getFramePrintArea().Height() :
pPage->getFramePrintArea().Width();
{
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*this);
aFrm.Width( nPageWidth );
}
{
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*this);
aPrt.Width( nPageWidth );
}
// i#25422 objects anchored as character in RTL
if ( IsRightToLeft() )
{
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*this);
aFrm.Pos().AdjustX(nOldFrameWidth - nPageWidth );
}
TextFrameLockGuard aLock( this );
SwTextFormatInfo aInf( getRootFrame()->GetCurrShell()->GetOut(), this, false, true, true );
aInf.SetIgnoreFly( true );
SwTextFormatter aLine( this, &aInf );
SwHookOut aHook( aInf );
// i#54031 - assure minimum of MINLAY twips.
const SwTwips nMax = std::max( SwTwips(MINLAY), aLine.CalcFitToContent_() + 1 );
{
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*this);
aFrm.Width( nOldFrameWidth );
// i#25422 objects anchored as character in RTL
if ( IsRightToLeft() )
{
aFrm.Pos() = aOldFramePos;
}
}
{
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*this);
aPrt.Width( nOldPrtWidth );
}
SetPara( pOldPara );
return nMax;
}
/**
* Simulate format for a list item paragraph, whose list level attributes
* are in LABEL_ALIGNMENT mode, in order to determine additional first
* line offset for the real text formatting due to the value of label
* adjustment attribute of the list level.
*/
void SwTextFrame::CalcAdditionalFirstLineOffset()
{
if ( IsLocked() )
return;
// reset additional first line offset
mnAdditionalFirstLineOffset = 0;
const SwTextNode* pTextNode( GetTextNodeForParaProps() );
if ( pTextNode && pTextNode->IsNumbered() && pTextNode->IsCountedInList() &&
pTextNode->GetNumRule() )
{
int nListLevel = pTextNode->GetActualListLevel();
if (nListLevel < 0)
nListLevel = 0;
if (nListLevel >= MAXLEVEL)
nListLevel = MAXLEVEL - 1;
const SwNumFormat& rNumFormat =
pTextNode->GetNumRule()->Get( static_cast<sal_uInt16>(nListLevel) );
if ( rNumFormat.GetPositionAndSpaceMode() == SvxNumberFormat::LABEL_ALIGNMENT )
{
// keep current paragraph portion and apply dummy paragraph portion
SwParaPortion* pOldPara = GetPara();
SwParaPortion *pDummy = new SwParaPortion();
SetPara( pDummy, false );
// lock paragraph
TextFrameLockGuard aLock( this );
// simulate text formatting
SwTextFormatInfo aInf( getRootFrame()->GetCurrShell()->GetOut(), this, false, true, true );
aInf.SetIgnoreFly( true );
SwTextFormatter aLine( this, &aInf );
SwHookOut aHook( aInf );
aLine.CalcFitToContent_();
// determine additional first line offset
const SwLinePortion* pFirstPortion = aLine.GetCurr()->GetFirstPortion();
if ( pFirstPortion->InNumberGrp() && !pFirstPortion->IsFootnoteNumPortion() )
{
SwTwips nNumberPortionWidth( pFirstPortion->Width() );
const SwLinePortion* pPortion = pFirstPortion->GetPortion();
while ( pPortion &&
pPortion->InNumberGrp() && !pPortion->IsFootnoteNumPortion())
{
nNumberPortionWidth += pPortion->Width();
pPortion = pPortion->GetPortion();
}
if ( ( IsRightToLeft() &&
rNumFormat.GetNumAdjust() == SvxAdjust::Left ) ||
( !IsRightToLeft() &&
rNumFormat.GetNumAdjust() == SvxAdjust::Right ) )
{
mnAdditionalFirstLineOffset = -nNumberPortionWidth;
}
else if ( rNumFormat.GetNumAdjust() == SvxAdjust::Center )
{
mnAdditionalFirstLineOffset = -(nNumberPortionWidth/2);
}
}
// restore paragraph portion
SetPara( pOldPara );
}
}
}
/**
* Determine the height of the last line for the calculation of
* the proportional line spacing
*
* Height of last line will be stored in new member
* mnHeightOfLastLine and can be accessed via method
* GetHeightOfLastLine()
*
* @param _bUseFont force the usage of the former algorithm to
* determine the height of the last line, which
* uses the font
*/
void SwTextFrame::CalcHeightOfLastLine( const bool _bUseFont )
{
// i#71281
// Invalidate printing area, if height of last line changes
const SwTwips nOldHeightOfLastLine( mnHeightOfLastLine );
// determine output device
SwViewShell* pVsh = getRootFrame()->GetCurrShell();
OSL_ENSURE( pVsh, "<SwTextFrame::_GetHeightOfLastLineForPropLineSpacing()> - no SwViewShell" );
// i#78921
// There could be no <SwViewShell> instance in the case of loading a binary
// StarOffice file format containing an embedded Writer document.
if ( !pVsh )
{
return;
}
OutputDevice* pOut = pVsh->GetOut();
const IDocumentSettingAccess *const pIDSA = &GetDoc().getIDocumentSettingAccess();
if ( !pVsh->GetViewOptions()->getBrowseMode() ||
pVsh->GetViewOptions()->IsPrtFormat() )
{
pOut = GetDoc().getIDocumentDeviceAccess().getReferenceDevice( true );
}
OSL_ENSURE( pOut, "<SwTextFrame::_GetHeightOfLastLineForPropLineSpacing()> - no OutputDevice" );
if ( !pOut )
{
return;
}
// determine height of last line
if ( _bUseFont || pIDSA->get(DocumentSettingId::OLD_LINE_SPACING ) )
{
// former determination of last line height for proprotional line
// spacing - take height of font set at the paragraph
// FIXME actually ... must the font match across all nodes?
SwFont aFont( &GetTextNodeForParaProps()->GetSwAttrSet(), pIDSA );
// we must ensure that the font is restored correctly on the OutputDevice
// otherwise Last!=Owner could occur
if ( pLastFont )
{
SwFntObj *pOldFont = pLastFont;
pLastFont = nullptr;
aFont.SetFntChg( true );
aFont.ChgPhysFnt( pVsh, *pOut );
mnHeightOfLastLine = aFont.GetHeight( pVsh, *pOut );
assert(pLastFont && "coverity[var_deref_model] - pLastFont should be set in SwSubFont::ChgFnt");
pLastFont->Unlock();
pLastFont = pOldFont;
pLastFont->SetDevFont( pVsh, *pOut );
}
else
{
vcl::Font aOldFont = pOut->GetFont();
aFont.SetFntChg( true );
aFont.ChgPhysFnt( pVsh, *pOut );
mnHeightOfLastLine = aFont.GetHeight( pVsh, *pOut );
assert(pLastFont && "coverity[var_deref_model] - pLastFont should be set in SwSubFont::ChgFnt");
pLastFont->Unlock();
pLastFont = nullptr;
pOut->SetFont( aOldFont );
}
}
else
{
// new determination of last line height - take actually height of last line
// i#89000
// assure same results, if paragraph is undersized
if ( IsUndersized() )
{
mnHeightOfLastLine = 0;
}
else
{
bool bCalcHeightOfLastLine = true;
if ( ( !HasPara() && IsEmpty( ) ) || GetText().isEmpty() )
{
mnHeightOfLastLine = EmptyHeight();
bCalcHeightOfLastLine = false;
}
if ( bCalcHeightOfLastLine )
{
OSL_ENSURE( HasPara(),
"<SwTextFrame::CalcHeightOfLastLine()> - missing paragraph portions." );
const SwLineLayout* pLineLayout = GetPara();
while ( pLineLayout && pLineLayout->GetNext() )
{
// iteration to last line
pLineLayout = pLineLayout->GetNext();
}
if ( pLineLayout )
{
SwTwips nAscent, nDescent, nDummy1, nDummy2;
// i#47162 - suppress consideration of
// fly content portions and the line portion.
pLineLayout->MaxAscentDescent( nAscent, nDescent,
nDummy1, nDummy2,
nullptr, true );
// i#71281
// Suppress wrong invalidation of printing area, if method is
// called recursive.
// Thus, member <mnHeightOfLastLine> is only set directly, if
// no recursive call is needed.
const SwTwips nNewHeightOfLastLine = nAscent + nDescent;
// i#47162 - if last line only contains
// fly content portions, <mnHeightOfLastLine> is zero.
// In this case determine height of last line by the font
if ( nNewHeightOfLastLine == 0 )
{
CalcHeightOfLastLine( true );
}
else
{
mnHeightOfLastLine = nNewHeightOfLastLine;
}
}
}
}
}
// i#71281
// invalidate printing area, if height of last line changes
if ( mnHeightOfLastLine != nOldHeightOfLastLine )
{
InvalidatePrt();
}
}
/**
* Method returns the value of the inter line spacing for a text frame.
* Such a value exists for proportional line spacings ("1,5 Lines",
* "Double", "Proportional" and for leading line spacing ("Leading").
*
* @param _bNoPropLineSpacing (default = false) control whether the
* value of a proportional line spacing is
* returned or not
*/
long SwTextFrame::GetLineSpace( const bool _bNoPropLineSpace ) const
{
long nRet = 0;
const SvxLineSpacingItem &rSpace = GetTextNodeForParaProps()->GetSwAttrSet().GetLineSpacing();
switch( rSpace.GetInterLineSpaceRule() )
{
case SvxInterLineSpaceRule::Prop:
{
if ( _bNoPropLineSpace )
{
break;
}
// i#11860 - adjust spacing implementation for object positioning
// - compatibility to MS Word
nRet = GetHeightOfLastLine();
long nTmp = nRet;
nTmp *= rSpace.GetPropLineSpace();
nTmp /= 100;
nTmp -= nRet;
if ( nTmp > 0 )
nRet = nTmp;
else
nRet = 0;
}
break;
case SvxInterLineSpaceRule::Fix:
{
if ( rSpace.GetInterLineSpace() > 0 )
nRet = rSpace.GetInterLineSpace();
}
break;
default:
break;
}
return nRet;
}
sal_uInt16 SwTextFrame::FirstLineHeight() const
{
if ( !HasPara() )
{
if( IsEmpty() && isFrameAreaDefinitionValid() )
return IsVertical() ? static_cast<sal_uInt16>(getFramePrintArea().Width()) : static_cast<sal_uInt16>(getFramePrintArea().Height());
return USHRT_MAX;
}
const SwParaPortion *pPara = GetPara();
if ( !pPara )
return USHRT_MAX;
return pPara->Height();
}
sal_uInt16 SwTextFrame::GetLineCount(TextFrameIndex const nPos)
{
sal_uInt16 nRet = 0;
SwTextFrame *pFrame = this;
do
{
pFrame->GetFormatted();
if( !pFrame->HasPara() )
break;
SwTextSizeInfo aInf( pFrame );
SwTextMargin aLine( pFrame, &aInf );
if (TextFrameIndex(COMPLETE_STRING) == nPos)
aLine.Bottom();
else
aLine.CharToLine( nPos );
nRet = nRet + aLine.GetLineNr();
pFrame = pFrame->GetFollow();
} while ( pFrame && pFrame->GetOfst() <= nPos );
return nRet;
}
void SwTextFrame::ChgThisLines()
{
// not necessary to format here (GerFormatted etc.), because we have to come from there!
sal_uLong nNew = 0;
const SwLineNumberInfo &rInf = GetDoc().GetLineNumberInfo();
if ( !GetText().isEmpty() && HasPara() )
{
SwTextSizeInfo aInf( this );
SwTextMargin aLine( this, &aInf );
if ( rInf.IsCountBlankLines() )
{
aLine.Bottom();
nNew = static_cast<sal_uLong>(aLine.GetLineNr());
}
else
{
do
{
if( aLine.GetCurr()->HasContent() )
++nNew;
} while ( aLine.NextLine() );
}
}
else if ( rInf.IsCountBlankLines() )
nNew = 1;
if ( nNew != mnThisLines )
{
if (!IsInTab() && GetTextNodeForParaProps()->GetSwAttrSet().GetLineNumber().IsCount())
{
mnAllLines -= mnThisLines;
mnThisLines = nNew;
mnAllLines += mnThisLines;
SwFrame *pNxt = GetNextContentFrame();
while( pNxt && pNxt->IsInTab() )
{
if( nullptr != (pNxt = pNxt->FindTabFrame()) )
pNxt = pNxt->FindNextCnt();
}
if( pNxt )
pNxt->InvalidateLineNum();
// Extend repaint to the bottom.
if ( HasPara() )
{
SwRepaint& rRepaint = GetPara()->GetRepaint();
rRepaint.Bottom( std::max( rRepaint.Bottom(),
getFrameArea().Top()+getFramePrintArea().Bottom()));
}
}
else // Paragraphs which are not counted should not manipulate the AllLines.
mnThisLines = nNew;
}
}
void SwTextFrame::RecalcAllLines()
{
ValidateLineNum();
if ( !IsInTab() )
{
const sal_uLong nOld = GetAllLines();
const SwFormatLineNumber &rLineNum = GetTextNodeForParaProps()->GetSwAttrSet().GetLineNumber();
sal_uLong nNewNum;
const bool bRestart = GetDoc().GetLineNumberInfo().IsRestartEachPage();
if ( !IsFollow() && rLineNum.GetStartValue() && rLineNum.IsCount() )
nNewNum = rLineNum.GetStartValue() - 1;
// If it is a follow or not has not be considered if it is a restart at each page; the
// restart should also take effect at follows.
else if ( bRestart && FindPageFrame()->FindFirstBodyContent() == this )
{
nNewNum = 0;
}
else
{
SwContentFrame *pPrv = GetPrevContentFrame();
while ( pPrv &&
(pPrv->IsInTab() || pPrv->IsInDocBody() != IsInDocBody()) )
pPrv = pPrv->GetPrevContentFrame();
// i#78254 Restart line numbering at page change
// First body content may be in table!
if ( bRestart && pPrv && pPrv->FindPageFrame() != FindPageFrame() )
pPrv = nullptr;
nNewNum = pPrv ? static_cast<SwTextFrame*>(pPrv)->GetAllLines() : 0;
}
if ( rLineNum.IsCount() )
nNewNum += GetThisLines();
if ( nOld != nNewNum )
{
mnAllLines = nNewNum;
SwContentFrame *pNxt = GetNextContentFrame();
while ( pNxt &&
(pNxt->IsInTab() || pNxt->IsInDocBody() != IsInDocBody()) )
pNxt = pNxt->GetNextContentFrame();
if ( pNxt )
{
if ( pNxt->GetUpper() != GetUpper() )
pNxt->InvalidateLineNum();
else
pNxt->InvalidateLineNum_();
}
}
}
}
void SwTextFrame::VisitPortions( SwPortionHandler& rPH ) const
{
const SwParaPortion* pPara = isFrameAreaDefinitionValid() ? GetPara() : nullptr;
if (pPara)
{
if ( IsFollow() )
rPH.Skip( GetOfst() );
const SwLineLayout* pLine = pPara;
while ( pLine )
{
const SwLinePortion* pPor = pLine->GetFirstPortion();
while ( pPor )
{
pPor->HandlePortion( rPH );
pPor = pPor->GetPortion();
}
rPH.LineBreak(pLine->Width());
pLine = pLine->GetNext();
}
}
rPH.Finish();
}
const SwScriptInfo* SwTextFrame::GetScriptInfo() const
{
const SwParaPortion* pPara = GetPara();
return pPara ? &pPara->GetScriptInfo() : nullptr;
}
/**
* Helper function for SwTextFrame::CalcBasePosForFly()
*/
static SwTwips lcl_CalcFlyBasePos( const SwTextFrame& rFrame, SwRect aFlyRect,
SwTextFly const & rTextFly )
{
SwRectFnSet aRectFnSet(&rFrame);
SwTwips nRet = rFrame.IsRightToLeft() ?
aRectFnSet.GetRight(rFrame.getFrameArea()) :
aRectFnSet.GetLeft(rFrame.getFrameArea());
do
{
SwRect aRect = rTextFly.GetFrame( aFlyRect );
if ( 0 != aRectFnSet.GetWidth(aRect) )
{
if ( rFrame.IsRightToLeft() )
{
if ( aRectFnSet.GetRight(aRect) -
aRectFnSet.GetRight(aFlyRect) >= 0 )
{
aRectFnSet.SetRight(
aFlyRect, aRectFnSet.GetLeft(aRect) );
nRet = aRectFnSet.GetLeft(aRect);
}
else
break;
}
else
{
if ( aRectFnSet.GetLeft(aFlyRect) -
aRectFnSet.GetLeft(aRect) >= 0 )
{
aRectFnSet.SetLeft(
aFlyRect, aRectFnSet.GetRight(aRect) + 1 );
nRet = aRectFnSet.GetRight(aRect);
}
else
break;
}
}
else
break;
}
while ( aRectFnSet.GetWidth(aFlyRect) > 0 );
return nRet;
}
void SwTextFrame::CalcBaseOfstForFly()
{
OSL_ENSURE( !IsVertical() || !IsSwapped(),
"SwTextFrame::CalcBasePosForFly with swapped frame!" );
if (!GetDoc().getIDocumentSettingAccess().get(DocumentSettingId::ADD_FLY_OFFSETS))
return;
SwRectFnSet aRectFnSet(this);
SwRect aFlyRect( getFrameArea().Pos() + getFramePrintArea().Pos(), getFramePrintArea().SSize() );
// Get first 'real' line and adjust position and height of line rectangle.
// Correct behaviour if no 'real' line exists
// (empty paragraph with and without a dummy portion)
SwTwips nFlyAnchorVertOfstNoWrap = 0;
{
SwTwips nTop = aRectFnSet.GetTop(aFlyRect);
const SwLineLayout* pLay = GetPara();
SwTwips nLineHeight = 200;
while( pLay && pLay->IsDummy() && pLay->GetNext() )
{
nTop += pLay->Height();
nFlyAnchorVertOfstNoWrap += pLay->Height();
pLay = pLay->GetNext();
}
if ( pLay )
{
nLineHeight = pLay->Height();
}
aRectFnSet.SetTopAndHeight( aFlyRect, nTop, nLineHeight );
}
SwTextFly aTextFly( this );
aTextFly.SetIgnoreCurrentFrame( true );
aTextFly.SetIgnoreContour( true );
// ignore objects in page header|footer for
// text frames not in page header|footer
aTextFly.SetIgnoreObjsInHeaderFooter( true );
SwTwips nRet1 = lcl_CalcFlyBasePos( *this, aFlyRect, aTextFly );
aTextFly.SetIgnoreCurrentFrame( false );
SwTwips nRet2 = lcl_CalcFlyBasePos( *this, aFlyRect, aTextFly );
// make values relative to frame start position
SwTwips nLeft = IsRightToLeft() ?
aRectFnSet.GetRight(getFrameArea()) :
aRectFnSet.GetLeft(getFrameArea());
mnFlyAnchorOfst = nRet1 - nLeft;
mnFlyAnchorOfstNoWrap = nRet2 - nLeft;
if (!GetDoc().getIDocumentSettingAccess().get(DocumentSettingId::ADD_VERTICAL_FLY_OFFSETS))
return;
mnFlyAnchorVertOfstNoWrap = nFlyAnchorVertOfstNoWrap;
}
SwTwips SwTextFrame::GetBaseVertOffsetForFly(bool bIgnoreFlysAnchoredAtThisFrame) const
{
return bIgnoreFlysAnchoredAtThisFrame ? 0 : mnFlyAnchorVertOfstNoWrap;
}
/**
* Repaint all text frames of the given text node
*/
void SwTextFrame::repaintTextFrames( const SwTextNode& rNode )
{
SwIterator<SwTextFrame, SwTextNode, sw::IteratorMode::UnwrapMulti> aIter(rNode);
for( const SwTextFrame *pFrame = aIter.First(); pFrame; pFrame = aIter.Next() )
{
SwRect aRec( pFrame->GetPaintArea() );
const SwRootFrame *pRootFrame = pFrame->getRootFrame();
SwViewShell *pCurShell = pRootFrame ? pRootFrame->GetCurrShell() : nullptr;
if( pCurShell )
pCurShell->InvalidateWindows( aRec );
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|