1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251
|
/* -*- 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 <memory>
#include <hintids.hxx>
#include <comphelper/flagguard.hxx>
#include <vcl/svapp.hxx>
#include <editeng/boxitem.hxx>
#include <editeng/brushitem.hxx>
#include <editeng/adjustitem.hxx>
#include <editeng/fhgtitem.hxx>
#include <editeng/ulspitem.hxx>
#include <editeng/lrspitem.hxx>
#include <editeng/formatbreakitem.hxx>
#include <editeng/spltitem.hxx>
#include <unotools/configmgr.hxx>
#include <svtools/htmltokn.h>
#include <svtools/htmlkywd.hxx>
#include <svl/numformat.hxx>
#include <svl/urihelper.hxx>
#include <svx/sdrobjectuser.hxx>
#include <sal/log.hxx>
#include <osl/diagnose.h>
#include <dcontact.hxx>
#include <fmtornt.hxx>
#include <frmfmt.hxx>
#include <fmtfsize.hxx>
#include <fmtsrnd.hxx>
#include <fmtpdsc.hxx>
#include <fmtcntnt.hxx>
#include <fmtanchr.hxx>
#include <fmtlsplt.hxx>
#include <frmatr.hxx>
#include <pam.hxx>
#include <doc.hxx>
#include <IDocumentLayoutAccess.hxx>
#include <IDocumentMarkAccess.hxx>
#include <ndtxt.hxx>
#include <shellio.hxx>
#include <poolfmt.hxx>
#include <swtable.hxx>
#include <cellatr.hxx>
#include <htmltbl.hxx>
#include <swtblfmt.hxx>
#include "htmlnum.hxx"
#include "swhtml.hxx"
#include "swcss1.hxx"
#include <txtftn.hxx>
#include <itabenum.hxx>
#include <tblafmt.hxx>
#include <SwStyleNameMapper.hxx>
#include <frameformats.hxx>
#define NETSCAPE_DFLT_BORDER 1
#define NETSCAPE_DFLT_CELLSPACING 2
using ::editeng::SvxBorderLine;
using namespace ::com::sun::star;
HTMLOptionEnum<sal_Int16> const aHTMLTableVAlignTable[] =
{
{ OOO_STRING_SVTOOLS_HTML_VA_top, text::VertOrientation::NONE },
{ OOO_STRING_SVTOOLS_HTML_VA_middle, text::VertOrientation::CENTER },
{ OOO_STRING_SVTOOLS_HTML_VA_bottom, text::VertOrientation::BOTTOM },
{ nullptr, 0 }
};
// table tags options
namespace {
struct HTMLTableOptions
{
sal_uInt16 nCols;
sal_uInt16 nWidth;
sal_uInt16 nHeight;
sal_uInt16 nCellPadding;
sal_uInt16 nCellSpacing;
sal_uInt16 nBorder;
sal_uInt16 nHSpace;
sal_uInt16 nVSpace;
SvxAdjust eAdjust;
sal_Int16 eVertOri;
HTMLTableFrame eFrame;
HTMLTableRules eRules;
bool bPercentWidth : 1;
bool bTableAdjust : 1;
bool bBGColor : 1;
Color aBorderColor;
Color aBGColor;
OUString aBGImage, aStyle, aId, aClass, aDir;
HTMLTableOptions( const HTMLOptions& rOptions, SvxAdjust eParentAdjust );
};
class HTMLTableContext
{
SwHTMLNumRuleInfo m_aNumRuleInfo; // Numbering valid before the table
SwTableNode *m_pTableNd; // table node
SwFrameFormat *m_pFrameFormat; // the Fly frame::Frame, containing the table
std::unique_ptr<SwPosition> m_pPos; // position behind the table
size_t m_nContextStAttrMin;
size_t m_nContextStMin;
bool m_bRestartPRE : 1;
bool m_bRestartXMP : 1;
bool m_bRestartListing : 1;
HTMLTableContext(const HTMLTableContext&) = delete;
HTMLTableContext& operator=(const HTMLTableContext&) = delete;
public:
std::shared_ptr<HTMLAttrTable> m_xAttrTab; // attributes
HTMLTableContext( SwPosition *pPs, size_t nCntxtStMin,
size_t nCntxtStAttrMin ) :
m_pTableNd( nullptr ),
m_pFrameFormat( nullptr ),
m_pPos( pPs ),
m_nContextStAttrMin( nCntxtStAttrMin ),
m_nContextStMin( nCntxtStMin ),
m_bRestartPRE( false ),
m_bRestartXMP( false ),
m_bRestartListing( false ),
m_xAttrTab(std::make_shared<HTMLAttrTable>())
{
memset(m_xAttrTab.get(), 0, sizeof(HTMLAttrTable));
}
void SetNumInfo( const SwHTMLNumRuleInfo& rInf ) { m_aNumRuleInfo.Set(rInf); }
const SwHTMLNumRuleInfo& GetNumInfo() const { return m_aNumRuleInfo; };
void SavePREListingXMP( SwHTMLParser& rParser );
void RestorePREListingXMP( SwHTMLParser& rParser );
SwPosition *GetPos() const { return m_pPos.get(); }
void SetTableNode( SwTableNode *pNd ) { m_pTableNd = pNd; }
SwTableNode *GetTableNode() const { return m_pTableNd; }
void SetFrameFormat( SwFrameFormat *pFormat ) { m_pFrameFormat = pFormat; }
SwFrameFormat *GetFrameFormat() const { return m_pFrameFormat; }
size_t GetContextStMin() const { return m_nContextStMin; }
size_t GetContextStAttrMin() const { return m_nContextStAttrMin; }
};
}
// Cell content is a linked list with SwStartNodes and
// HTMLTables.
class HTMLTableCnts
{
std::unique_ptr<HTMLTableCnts> m_pNext; // next content
// Only one of the next two pointers must be set!
const SwStartNode *m_pStartNode; // a paragraph
std::shared_ptr<HTMLTable> m_xTable; // a table
std::shared_ptr<SwHTMLTableLayoutCnts> m_xLayoutInfo;
bool m_bNoBreak;
void InitCtor();
public:
explicit HTMLTableCnts(const SwStartNode* pStNd);
explicit HTMLTableCnts(const std::shared_ptr<HTMLTable>& rTab);
~HTMLTableCnts(); // only allowed in ~HTMLTableCell
// Determine SwStartNode and HTMLTable respectively
const SwStartNode *GetStartNode() const { return m_pStartNode; }
const std::shared_ptr<HTMLTable>& GetTable() const { return m_xTable; }
std::shared_ptr<HTMLTable>& GetTable() { return m_xTable; }
// Add a new node at the end of the list
void Add( std::unique_ptr<HTMLTableCnts> pNewCnts );
// Determine next node
const HTMLTableCnts *Next() const { return m_pNext.get(); }
HTMLTableCnts *Next() { return m_pNext.get(); }
inline void SetTableBox( SwTableBox *pBox );
void SetNoBreak() { m_bNoBreak = true; }
const std::shared_ptr<SwHTMLTableLayoutCnts>& CreateLayoutInfo();
};
namespace {
// Cell of a HTML table
class HTMLTableCell
{
std::shared_ptr<HTMLTableCnts> m_xContents; // cell content
std::shared_ptr<SvxBrushItem> m_xBGBrush; // cell background
std::shared_ptr<SvxBoxItem> m_xBoxItem;
double m_nValue;
sal_uInt32 m_nNumFormat;
sal_uInt16 m_nRowSpan; // cell ROWSPAN
sal_uInt16 m_nColSpan; // cell COLSPAN
sal_uInt16 m_nWidth; // cell WIDTH
sal_Int16 m_eVertOrient; // vertical alignment of the cell
bool m_bProtected : 1; // cell must not filled
bool m_bRelWidth : 1; // nWidth is given in %
bool m_bHasNumFormat : 1;
bool m_bHasValue : 1;
bool m_bNoWrap : 1;
bool mbCovered : 1;
public:
HTMLTableCell(); // new cells always empty
// Fill a not empty cell
void Set( std::shared_ptr<HTMLTableCnts> const& rCnts, sal_uInt16 nRSpan, sal_uInt16 nCSpan,
sal_Int16 eVertOri, std::shared_ptr<SvxBrushItem> const& rBGBrush,
std::shared_ptr<SvxBoxItem> const& rBoxItem,
bool bHasNumFormat, sal_uInt32 nNumFormat,
bool bHasValue, double nValue, bool bNoWrap, bool bCovered );
// Protect an empty 1x1 cell
void SetProtected();
// Set/Get cell content
void SetContents(std::shared_ptr<HTMLTableCnts> const& rCnts) { m_xContents = rCnts; }
const std::shared_ptr<HTMLTableCnts>& GetContents() const { return m_xContents; }
// Set/Get cell ROWSPAN/COLSPAN
void SetRowSpan( sal_uInt16 nRSpan ) { m_nRowSpan = nRSpan; }
sal_uInt16 GetRowSpan() const { return m_nRowSpan; }
void SetColSpan( sal_uInt16 nCSpan ) { m_nColSpan = nCSpan; }
sal_uInt16 GetColSpan() const { return m_nColSpan; }
inline void SetWidth( sal_uInt16 nWidth, bool bRelWidth );
const std::shared_ptr<SvxBrushItem>& GetBGBrush() const { return m_xBGBrush; }
const std::shared_ptr<SvxBoxItem>& GetBoxItem() const { return m_xBoxItem; }
inline bool GetNumFormat( sal_uInt32& rNumFormat ) const;
inline bool GetValue( double& rValue ) const;
sal_Int16 GetVertOri() const { return m_eVertOrient; }
// Is the cell filled or protected ?
bool IsUsed() const { return m_xContents || m_bProtected; }
std::unique_ptr<SwHTMLTableLayoutCell> CreateLayoutInfo();
bool IsCovered() const { return mbCovered; }
};
}
namespace {
// Row of a HTML table
class HTMLTableRow
{
std::vector<HTMLTableCell> m_aCells; ///< cells of the row
std::unique_ptr<SvxBrushItem> m_xBGBrush; // background of cell from STYLE
SvxAdjust m_eAdjust;
sal_uInt16 m_nHeight; // options of <TR>/<TD>
sal_uInt16 m_nEmptyRows; // number of empty rows are following
sal_Int16 m_eVertOri;
bool m_bIsEndOfGroup : 1;
bool m_bBottomBorder : 1; // Is there a line after the row?
public:
explicit HTMLTableRow( sal_uInt16 nCells ); // cells of the row are empty
void SetBottomBorder(bool bIn) { m_bBottomBorder = bIn; }
bool GetBottomBorder() const { return m_bBottomBorder; }
inline void SetHeight( sal_uInt16 nHeight );
sal_uInt16 GetHeight() const { return m_nHeight; }
const HTMLTableCell& GetCell(sal_uInt16 nCell) const;
HTMLTableCell& GetCell(sal_uInt16 nCell)
{
return const_cast<HTMLTableCell&>(const_cast<const HTMLTableRow&>(*this).GetCell(nCell));
}
void SetAdjust( SvxAdjust eAdj ) { m_eAdjust = eAdj; }
SvxAdjust GetAdjust() const { return m_eAdjust; }
void SetVertOri( sal_Int16 eV) { m_eVertOri = eV; }
sal_Int16 GetVertOri() const { return m_eVertOri; }
void SetBGBrush(std::unique_ptr<SvxBrushItem>& rBrush ) { m_xBGBrush = std::move(rBrush); }
const std::unique_ptr<SvxBrushItem>& GetBGBrush() const { return m_xBGBrush; }
void SetEndOfGroup() { m_bIsEndOfGroup = true; }
bool IsEndOfGroup() const { return m_bIsEndOfGroup; }
void IncEmptyRows() { m_nEmptyRows++; }
sal_uInt16 GetEmptyRows() const { return m_nEmptyRows; }
// Expand row by adding empty cells
void Expand( sal_uInt16 nCells, bool bOneCell=false );
// Shrink row by deleting empty cells
void Shrink( sal_uInt16 nCells );
};
// Column of a HTML table
class HTMLTableColumn
{
bool m_bIsEndOfGroup;
sal_uInt16 m_nWidth; // options of <COL>
bool m_bRelWidth;
SvxAdjust m_eAdjust;
sal_Int16 m_eVertOri;
SwFrameFormat *m_aFrameFormats[6];
static inline sal_uInt16 GetFrameFormatIdx( bool bBorderLine,
sal_Int16 eVertOri );
public:
bool m_bLeftBorder; // is there a line before the column
HTMLTableColumn();
inline void SetWidth( sal_uInt16 nWidth, bool bRelWidth);
void SetAdjust( SvxAdjust eAdj ) { m_eAdjust = eAdj; }
SvxAdjust GetAdjust() const { return m_eAdjust; }
void SetVertOri( sal_Int16 eV) { m_eVertOri = eV; }
sal_Int16 GetVertOri() const { return m_eVertOri; }
void SetEndOfGroup() { m_bIsEndOfGroup = true; }
bool IsEndOfGroup() const { return m_bIsEndOfGroup; }
inline void SetFrameFormat( SwFrameFormat *pFormat, bool bBorderLine,
sal_Int16 eVertOri );
inline SwFrameFormat *GetFrameFormat( bool bBorderLine,
sal_Int16 eVertOri ) const;
std::unique_ptr<SwHTMLTableLayoutColumn> CreateLayoutInfo();
};
}
// HTML table
typedef std::vector<SdrObject *> SdrObjects;
class HTMLTable : public sdr::ObjectUser
{
OUString m_aId;
OUString m_aStyle;
OUString m_aClass;
OUString m_aDir;
std::optional<SdrObjects> m_xResizeDrawObjects;// SDR objects
std::optional<std::vector<sal_uInt16>> m_xDrawObjectPercentWidths; // column of draw object and its rel. width
std::vector<HTMLTableRow> m_aRows; ///< table rows
std::vector<HTMLTableColumn> m_aColumns; ///< table columns
sal_uInt16 m_nRows; // number of rows
sal_uInt16 m_nCols; // number of columns
sal_uInt16 m_nFilledColumns; // number of filled columns
sal_uInt16 m_nCurrentRow; // current Row
sal_uInt16 m_nCurrentColumn; // current Column
sal_uInt16 m_nLeftMargin; // Space to the left margin (from paragraph edge)
sal_uInt16 m_nRightMargin; // Space to the right margin (from paragraph edge)
sal_uInt16 m_nCellPadding; // Space from border to Text
sal_uInt16 m_nCellSpacing; // Space between two cells
sal_uInt16 m_nHSpace;
sal_uInt16 m_nVSpace;
sal_uInt16 m_nBoxes; // number of boxes in the table
const SwStartNode *m_pPrevStartNode; // the Table-Node or the Start-Node of the section before
const SwTable *m_pSwTable; // SW-Table (only on Top-Level)
public:
std::unique_ptr<SwTableBox> m_xBox1; // TableBox, generated when the Top-Level-Table was build
private:
SwTableBoxFormat *m_pBoxFormat; // frame::Frame-Format from SwTableBox
SwTableLineFormat *m_pLineFormat; // frame::Frame-Format from SwTableLine
SwTableLineFormat *m_pLineFrameFormatNoHeight;
std::unique_ptr<SvxBrushItem> m_xBackgroundBrush; // background of the table
std::unique_ptr<SvxBrushItem> m_xInheritedBackgroundBrush; // "inherited" background of the table
const SwStartNode *m_pCaptionStartNode; // Start-Node of the table-caption
//lines for the border
SvxBorderLine m_aTopBorderLine;
SvxBorderLine m_aBottomBorderLine;
SvxBorderLine m_aLeftBorderLine;
SvxBorderLine m_aRightBorderLine;
SvxBorderLine m_aBorderLine;
SvxBorderLine m_aInheritedLeftBorderLine;
SvxBorderLine m_aInheritedRightBorderLine;
bool m_bTopBorder; // is there a line on the top of the table
bool m_bRightBorder; // is there a line on the top right of the table
bool m_bTopAllowed; // is it allowed to set the border?
bool m_bRightAllowed;
bool m_bFillerTopBorder; // gets the left/right filler-cell a border on the
bool m_bFillerBottomBorder; // top or in the bottom
bool m_bInheritedLeftBorder;
bool m_bInheritedRightBorder;
bool m_bBordersSet; // the border is set already
bool m_bForceFrame;
bool m_bTableAdjustOfTag; // comes nTableAdjust from <TABLE>?
sal_uInt32 m_nHeadlineRepeat; // repeating rows
bool m_bIsParentHead;
bool m_bHasParentSection;
bool m_bHasToFly;
bool m_bFixedCols;
bool m_bColSpec; // where there COL(GROUP)-elements?
bool m_bPercentWidth; // width is declared in %
SwHTMLParser *m_pParser; // the current parser
std::unique_ptr<HTMLTableCnts> m_xParentContents;
std::unique_ptr<HTMLTableContext> m_pContext; // the context of the table
std::shared_ptr<SwHTMLTableLayout> m_xLayoutInfo;
// the following parameters are from the <TABLE>-Tag
sal_uInt16 m_nWidth; // width of the table
sal_uInt16 m_nHeight; // absolute height of the table
SvxAdjust m_eTableAdjust; // drawing::Alignment of the table
sal_Int16 m_eVertOrientation; // Default vertical direction of the cells
sal_uInt16 m_nBorder; // width of the external border
HTMLTableFrame m_eFrame; // frame around the table
HTMLTableRules m_eRules; // frame in the table
bool m_bTopCaption; // Caption of the table
void InitCtor(const HTMLTableOptions& rOptions);
// Correction of the Row-Spans for all cells above the chosen cell and the cell itself for the indicated content. The chosen cell gets the Row-Span 1
void FixRowSpan( sal_uInt16 nRow, sal_uInt16 nCol, const HTMLTableCnts *pCnts );
// Protects the chosen cell and the cells among
void ProtectRowSpan( sal_uInt16 nRow, sal_uInt16 nCol, sal_uInt16 nRowSpan );
// Looking for the SwStartNodes of the box ahead
// If nRow==nCell==USHRT_MAX, return the last Start-Node of the table.
const SwStartNode* GetPrevBoxStartNode( sal_uInt16 nRow, sal_uInt16 nCell ) const;
sal_uInt16 GetTopCellSpace( sal_uInt16 nRow ) const;
sal_uInt16 GetBottomCellSpace( sal_uInt16 nRow, sal_uInt16 nRowSpan ) const;
// Conforming of the frame::Frame-Format of the box
void FixFrameFormat( SwTableBox *pBox, sal_uInt16 nRow, sal_uInt16 nCol,
sal_uInt16 nRowSpan, sal_uInt16 nColSpan,
bool bFirstPara=true, bool bLastPara=true ) const;
// Create a table with the content (lines/boxes)
void MakeTable_( SwTableBox *pUpper );
// Generate a new SwTableBox, which contains a SwStartNode
SwTableBox *NewTableBox( const SwStartNode *pStNd,
SwTableLine *pUpper ) const;
// Generate a SwTableLine from the cells of the rectangle
// (nTopRow/nLeftCol) inclusive to (nBottomRow/nRightRow) exclusive
SwTableLine *MakeTableLine( SwTableBox *pUpper,
sal_uInt16 nTopRow, sal_uInt16 nLeftCol,
sal_uInt16 nBottomRow, sal_uInt16 nRightCol );
// Generate a SwTableBox from the content of the cell
SwTableBox *MakeTableBox( SwTableLine *pUpper,
HTMLTableCnts *pCnts,
sal_uInt16 nTopRow, sal_uInt16 nLeftCol,
sal_uInt16 nBootomRow, sal_uInt16 nRightCol );
// Autolayout-Algorithm
// Setting the border with the help of guidelines of the Parent-Table
void InheritBorders( const HTMLTable *pParent,
sal_uInt16 nRow, sal_uInt16 nCol,
sal_uInt16 nRowSpan,
bool bFirstPara, bool bLastPara );
// Inherit the left and the right border of the surrounding table
void InheritVertBorders( const HTMLTable *pParent,
sal_uInt16 nCol, sal_uInt16 nColSpan );
// Set the border with the help of the information from the user
void SetBorders();
// is the border already set?
bool BordersSet() const { return m_bBordersSet; }
const std::unique_ptr<SvxBrushItem>& GetBGBrush() const { return m_xBackgroundBrush; }
const std::unique_ptr<SvxBrushItem>& GetInhBGBrush() const { return m_xInheritedBackgroundBrush; }
sal_uInt16 GetBorderWidth( const SvxBorderLine& rBLine,
bool bWithDistance=false ) const;
virtual void ObjectInDestruction(const SdrObject& rObject) override;
public:
bool m_bFirstCell; // is there a cell created already?
HTMLTable(SwHTMLParser* pPars,
bool bParHead, bool bHasParentSec,
bool bHasToFly,
const HTMLTableOptions& rOptions);
virtual ~HTMLTable();
// Identifying of a cell
const HTMLTableCell& GetCell(sal_uInt16 nRow, sal_uInt16 nCell) const;
HTMLTableCell& GetCell(sal_uInt16 nRow, sal_uInt16 nCell)
{
return const_cast<HTMLTableCell&>(const_cast<const HTMLTable&>(*this).GetCell(nRow, nCell));
}
// set/determine caption
inline void SetCaption( const SwStartNode *pStNd, bool bTop );
const SwStartNode *GetCaptionStartNode() const { return m_pCaptionStartNode; }
bool IsTopCaption() const { return m_bTopCaption; }
SvxAdjust GetTableAdjust( bool bAny ) const
{
return (m_bTableAdjustOfTag || bAny) ? m_eTableAdjust : SvxAdjust::End;
}
sal_uInt16 GetHSpace() const { return m_nHSpace; }
sal_uInt16 GetVSpace() const { return m_nVSpace; }
// get inherited drawing::Alignment of rows and column
SvxAdjust GetInheritedAdjust() const;
sal_Int16 GetInheritedVertOri() const;
// Insert a cell on the current position
void InsertCell( std::shared_ptr<HTMLTableCnts> const& rCnts, sal_uInt16 nRowSpan, sal_uInt16 nColSpan,
sal_uInt16 nWidth, bool bRelWidth, sal_uInt16 nHeight,
sal_Int16 eVertOri, std::shared_ptr<SvxBrushItem> const& rBGBrushItem,
std::shared_ptr<SvxBoxItem> const& rBoxItem,
bool bHasNumFormat, sal_uInt32 nNumFormat,
bool bHasValue, double nValue, bool bNoWrap );
// announce the start/end of a new row
void OpenRow(SvxAdjust eAdjust, sal_Int16 eVertOri, std::unique_ptr<SvxBrushItem>& rBGBrush);
void CloseRow( bool bEmpty );
// announce the end of a new section
inline void CloseSection( bool bHead );
// announce the end of a column-group
inline void CloseColGroup( sal_uInt16 nSpan, sal_uInt16 nWidth, bool bRelWidth,
SvxAdjust eAdjust, sal_Int16 eVertOri );
// insert a new column
void InsertCol( sal_uInt16 nSpan, sal_uInt16 nWidth, bool bRelWidth,
SvxAdjust eAdjust, sal_Int16 eVertOri );
// End a table definition (needs to be called for every table)
void CloseTable();
// Construct a SwTable (including child tables)
void MakeTable( SwTableBox *pUpper, sal_uInt16 nAbsAvail,
sal_uInt16 nRelAvail=0, sal_uInt16 nAbsLeftSpace=0,
sal_uInt16 nAbsRightSpace=0, sal_uInt16 nInhAbsSpace=0 );
bool IsNewDoc() const { return m_pParser->IsNewDoc(); }
void SetHasParentSection( bool bSet ) { m_bHasParentSection = bSet; }
bool HasParentSection() const { return m_bHasParentSection; }
void SetParentContents(std::unique_ptr<HTMLTableCnts> pCnts) { m_xParentContents = std::move(pCnts); }
std::unique_ptr<HTMLTableCnts>& GetParentContents() { return m_xParentContents; }
void MakeParentContents();
bool HasToFly() const { return m_bHasToFly; }
void SetTable( const SwStartNode *pStNd, std::unique_ptr<HTMLTableContext> pCntxt,
sal_uInt16 nLeft, sal_uInt16 nRight,
const SwTable *pSwTab=nullptr, bool bFrcFrame=false );
HTMLTableContext *GetContext() const { return m_pContext.get(); }
const std::shared_ptr<SwHTMLTableLayout>& CreateLayoutInfo();
bool HasColTags() const { return m_bColSpec; }
sal_uInt16 IncGrfsThatResize() { return m_pSwTable ? const_cast<SwTable *>(m_pSwTable)->IncGrfsThatResize() : 0; }
void RegisterDrawObject( SdrObject *pObj, sal_uInt8 nPercentWidth );
const SwTable *GetSwTable() const { return m_pSwTable; }
void SetBGBrush(const SvxBrushItem& rBrush) { m_xBackgroundBrush.reset(new SvxBrushItem(rBrush)); }
const OUString& GetId() const { return m_aId; }
const OUString& GetClass() const { return m_aClass; }
const OUString& GetStyle() const { return m_aStyle; }
const OUString& GetDirection() const { return m_aDir; }
void IncBoxCount() { m_nBoxes++; }
bool IsOverflowing() const { return m_nBoxes > 64000; }
};
void HTMLTableCnts::InitCtor()
{
m_pNext = nullptr;
m_xLayoutInfo.reset();
m_bNoBreak = false;
}
HTMLTableCnts::HTMLTableCnts(const SwStartNode* pStNd)
: m_pStartNode(pStNd)
{
InitCtor();
}
HTMLTableCnts::HTMLTableCnts(const std::shared_ptr<HTMLTable>& rTab)
: m_pStartNode(nullptr)
, m_xTable(rTab)
{
InitCtor();
}
HTMLTableCnts::~HTMLTableCnts()
{
m_xTable.reset(); // we don't need the tables anymore
m_pNext.reset();
}
void HTMLTableCnts::Add( std::unique_ptr<HTMLTableCnts> pNewCnts )
{
HTMLTableCnts *pCnts = this;
while( pCnts->m_pNext )
pCnts = pCnts->m_pNext.get();
pCnts->m_pNext = std::move(pNewCnts);
}
inline void HTMLTableCnts::SetTableBox( SwTableBox *pBox )
{
OSL_ENSURE(m_xLayoutInfo, "There is no layout info");
if (m_xLayoutInfo)
m_xLayoutInfo->SetTableBox(pBox);
}
const std::shared_ptr<SwHTMLTableLayoutCnts>& HTMLTableCnts::CreateLayoutInfo()
{
if (!m_xLayoutInfo)
{
std::shared_ptr<SwHTMLTableLayoutCnts> xNextInfo;
if (m_pNext)
xNextInfo = m_pNext->CreateLayoutInfo();
std::shared_ptr<SwHTMLTableLayout> xTableInfo;
if (m_xTable)
xTableInfo = m_xTable->CreateLayoutInfo();
m_xLayoutInfo = std::make_shared<SwHTMLTableLayoutCnts>(m_pStartNode, xTableInfo, m_bNoBreak, xNextInfo);
}
return m_xLayoutInfo;
}
HTMLTableCell::HTMLTableCell():
m_nValue(0),
m_nNumFormat(0),
m_nRowSpan(1),
m_nColSpan(1),
m_nWidth( 0 ),
m_eVertOrient( text::VertOrientation::NONE ),
m_bProtected(false),
m_bRelWidth( false ),
m_bHasNumFormat(false),
m_bHasValue(false),
m_bNoWrap(false),
mbCovered(false)
{}
void HTMLTableCell::Set( std::shared_ptr<HTMLTableCnts> const& rCnts, sal_uInt16 nRSpan, sal_uInt16 nCSpan,
sal_Int16 eVert, std::shared_ptr<SvxBrushItem> const& rBrush,
std::shared_ptr<SvxBoxItem> const& rBoxItem,
bool bHasNF, sal_uInt32 nNF, bool bHasV, double nVal,
bool bNWrap, bool bCovered )
{
m_xContents = rCnts;
m_nRowSpan = nRSpan;
m_nColSpan = nCSpan;
m_bProtected = false;
m_eVertOrient = eVert;
m_xBGBrush = rBrush;
m_xBoxItem = rBoxItem;
m_bHasNumFormat = bHasNF;
m_bHasValue = bHasV;
m_nNumFormat = nNF;
m_nValue = nVal;
m_bNoWrap = bNWrap;
mbCovered = bCovered;
}
inline void HTMLTableCell::SetWidth( sal_uInt16 nWdth, bool bRelWdth )
{
m_nWidth = nWdth;
m_bRelWidth = bRelWdth;
}
void HTMLTableCell::SetProtected()
{
// The content of this cell doesn't have to be anchored anywhere else,
// since they're not gonna be deleted
m_xContents.reset();
// Copy background color
if (m_xBGBrush)
m_xBGBrush = std::make_shared<SvxBrushItem>(*m_xBGBrush);
m_nRowSpan = 1;
m_nColSpan = 1;
m_bProtected = true;
}
inline bool HTMLTableCell::GetNumFormat( sal_uInt32& rNumFormat ) const
{
rNumFormat = m_nNumFormat;
return m_bHasNumFormat;
}
inline bool HTMLTableCell::GetValue( double& rValue ) const
{
rValue = m_nValue;
return m_bHasValue;
}
std::unique_ptr<SwHTMLTableLayoutCell> HTMLTableCell::CreateLayoutInfo()
{
std::shared_ptr<SwHTMLTableLayoutCnts> xCntInfo;
if (m_xContents)
xCntInfo = m_xContents->CreateLayoutInfo();
return std::unique_ptr<SwHTMLTableLayoutCell>(new SwHTMLTableLayoutCell(xCntInfo, m_nRowSpan, m_nColSpan, m_nWidth,
m_bRelWidth, m_bNoWrap));
}
HTMLTableRow::HTMLTableRow(sal_uInt16 const nCells)
: m_aCells(nCells)
, m_eAdjust(SvxAdjust::End)
, m_nHeight(0)
, m_nEmptyRows(0)
, m_eVertOri(text::VertOrientation::TOP)
, m_bIsEndOfGroup(false)
, m_bBottomBorder(false)
{
assert(nCells == m_aCells.size() &&
"wrong Cell count in new HTML table row");
}
inline void HTMLTableRow::SetHeight( sal_uInt16 nHght )
{
if( nHght > m_nHeight )
m_nHeight = nHght;
}
const HTMLTableCell& HTMLTableRow::GetCell(sal_uInt16 nCell) const
{
OSL_ENSURE( nCell < m_aCells.size(),
"invalid cell index in HTML table row" );
return m_aCells.at(nCell);
}
void HTMLTableRow::Expand( sal_uInt16 nCells, bool bOneCell )
{
// This row will be filled with a single cell if bOneCell is set.
// This will only work for rows that don't allow adding cells!
sal_uInt16 nColSpan = nCells - m_aCells.size();
for (sal_uInt16 i = m_aCells.size(); i < nCells; ++i)
{
m_aCells.emplace_back();
if (bOneCell)
m_aCells.back().SetColSpan(nColSpan);
--nColSpan;
}
OSL_ENSURE(nCells == m_aCells.size(),
"wrong Cell count in expanded HTML table row");
}
void HTMLTableRow::Shrink( sal_uInt16 nCells )
{
OSL_ENSURE(nCells < m_aCells.size(), "number of cells too large");
#if OSL_DEBUG_LEVEL > 0
sal_uInt16 const nEnd = m_aCells.size();
#endif
// The colspan of empty cells at the end has to be fixed to the new
// number of cells.
sal_uInt16 i=nCells;
while( i )
{
HTMLTableCell& rCell = m_aCells[--i];
if (!rCell.GetContents())
{
#if OSL_DEBUG_LEVEL > 0
OSL_ENSURE( rCell.GetColSpan() == nEnd - i,
"invalid col span for empty cell at row end" );
#endif
rCell.SetColSpan( nCells-i);
}
else
break;
}
#if OSL_DEBUG_LEVEL > 0
for( i=nCells; i<nEnd; i++ )
{
HTMLTableCell& rCell = m_aCells[i];
OSL_ENSURE( rCell.GetRowSpan() == 1,
"RowSpan of to be deleted cell is wrong" );
OSL_ENSURE( rCell.GetColSpan() == nEnd - i,
"ColSpan of to be deleted cell is wrong" );
OSL_ENSURE( !rCell.GetContents(), "To be deleted cell has content" );
}
#endif
m_aCells.erase(m_aCells.begin() + nCells, m_aCells.end());
}
HTMLTableColumn::HTMLTableColumn():
m_bIsEndOfGroup(false),
m_nWidth(0), m_bRelWidth(false),
m_eAdjust(SvxAdjust::End), m_eVertOri(text::VertOrientation::TOP),
m_bLeftBorder(false)
{
for(SwFrameFormat* & rp : m_aFrameFormats)
rp = nullptr;
}
inline void HTMLTableColumn::SetWidth( sal_uInt16 nWdth, bool bRelWdth )
{
if( m_bRelWidth==bRelWdth )
{
if( nWdth > m_nWidth )
m_nWidth = nWdth;
}
else
m_nWidth = nWdth;
m_bRelWidth = bRelWdth;
}
inline std::unique_ptr<SwHTMLTableLayoutColumn> HTMLTableColumn::CreateLayoutInfo()
{
return std::unique_ptr<SwHTMLTableLayoutColumn>(new SwHTMLTableLayoutColumn( m_nWidth, m_bRelWidth, m_bLeftBorder ));
}
inline sal_uInt16 HTMLTableColumn::GetFrameFormatIdx( bool bBorderLine,
sal_Int16 eVertOrient )
{
OSL_ENSURE( text::VertOrientation::TOP != eVertOrient, "Top is not allowed" );
sal_uInt16 n = bBorderLine ? 3 : 0;
switch( eVertOrient )
{
case text::VertOrientation::CENTER: n+=1; break;
case text::VertOrientation::BOTTOM: n+=2; break;
default:
;
}
return n;
}
inline void HTMLTableColumn::SetFrameFormat( SwFrameFormat *pFormat, bool bBorderLine,
sal_Int16 eVertOrient )
{
m_aFrameFormats[GetFrameFormatIdx(bBorderLine,eVertOrient)] = pFormat;
}
inline SwFrameFormat *HTMLTableColumn::GetFrameFormat( bool bBorderLine,
sal_Int16 eVertOrient ) const
{
return m_aFrameFormats[GetFrameFormatIdx(bBorderLine,eVertOrient)];
}
void HTMLTable::InitCtor(const HTMLTableOptions& rOptions)
{
m_nRows = 0;
m_nCurrentRow = 0; m_nCurrentColumn = 0;
m_pBoxFormat = nullptr; m_pLineFormat = nullptr;
m_pLineFrameFormatNoHeight = nullptr;
m_xInheritedBackgroundBrush.reset();
m_pPrevStartNode = nullptr;
m_pSwTable = nullptr;
m_bTopBorder = false; m_bRightBorder = false;
m_bTopAllowed = true; m_bRightAllowed = true;
m_bFillerTopBorder = false; m_bFillerBottomBorder = false;
m_bInheritedLeftBorder = false; m_bInheritedRightBorder = false;
m_bBordersSet = false;
m_bForceFrame = false;
m_nHeadlineRepeat = 0;
m_nLeftMargin = 0;
m_nRightMargin = 0;
const Color& rBorderColor = rOptions.aBorderColor;
tools::Long nBorderOpt = static_cast<tools::Long>(rOptions.nBorder);
tools::Long nPWidth = nBorderOpt==USHRT_MAX ? NETSCAPE_DFLT_BORDER
: nBorderOpt;
tools::Long nPHeight = nBorderOpt==USHRT_MAX ? 0 : nBorderOpt;
SvxCSS1Parser::PixelToTwip( nPWidth, nPHeight );
// nBorder tells the width of the border as it's used in the width calculation of NetScape
// If pOption->nBorder == USHRT_MAX, there wasn't a BORDER option given
// Nonetheless, a 1 pixel wide border will be used for width calculation
m_nBorder = o3tl::narrowing<sal_uInt16>(nPWidth);
if( nBorderOpt==USHRT_MAX )
nPWidth = 0;
if ( rOptions.nCellSpacing != 0 )
{
m_aTopBorderLine.SetBorderLineStyle(SvxBorderLineStyle::DOUBLE);
}
m_aTopBorderLine.SetWidth( nPHeight );
m_aTopBorderLine.SetColor( rBorderColor );
m_aBottomBorderLine = m_aTopBorderLine;
if( nPWidth == nPHeight )
{
m_aLeftBorderLine = m_aTopBorderLine;
}
else
{
if ( rOptions.nCellSpacing != 0 )
{
m_aLeftBorderLine.SetBorderLineStyle(SvxBorderLineStyle::DOUBLE);
}
m_aLeftBorderLine.SetWidth( nPWidth );
m_aLeftBorderLine.SetColor( rBorderColor );
}
m_aRightBorderLine = m_aLeftBorderLine;
if( rOptions.nCellSpacing != 0 )
m_aBorderLine.SetBorderLineStyle(SvxBorderLineStyle::DOUBLE);
m_aBorderLine.SetWidth(SvxBorderLineWidth::Hairline);
m_aBorderLine.SetColor( rBorderColor );
if( m_nCellPadding )
{
if( m_nCellPadding==USHRT_MAX )
m_nCellPadding = MIN_BORDER_DIST; // default
else
{
m_nCellPadding = SwHTMLParser::ToTwips( m_nCellPadding );
if( m_nCellPadding<MIN_BORDER_DIST )
m_nCellPadding = MIN_BORDER_DIST;
}
}
if( m_nCellSpacing )
{
if( m_nCellSpacing==USHRT_MAX )
m_nCellSpacing = NETSCAPE_DFLT_CELLSPACING;
m_nCellSpacing = SwHTMLParser::ToTwips( m_nCellSpacing );
}
nPWidth = rOptions.nHSpace;
nPHeight = rOptions.nVSpace;
SvxCSS1Parser::PixelToTwip( nPWidth, nPHeight );
m_nHSpace = o3tl::narrowing<sal_uInt16>(nPWidth);
m_nVSpace = o3tl::narrowing<sal_uInt16>(nPHeight);
m_bColSpec = false;
m_xBackgroundBrush.reset(m_pParser->CreateBrushItem(
rOptions.bBGColor ? &(rOptions.aBGColor) : nullptr,
rOptions.aBGImage, OUString(), OUString(), OUString()));
m_pContext = nullptr;
m_xParentContents.reset();
m_aId = rOptions.aId;
m_aClass = rOptions.aClass;
m_aStyle = rOptions.aStyle;
m_aDir = rOptions.aDir;
}
HTMLTable::HTMLTable(SwHTMLParser* pPars,
bool bParHead,
bool bHasParentSec, bool bHasToFlw,
const HTMLTableOptions& rOptions) :
m_aColumns(rOptions.nCols),
m_nCols(rOptions.nCols),
m_nFilledColumns( 0 ),
m_nCellPadding(rOptions.nCellPadding),
m_nCellSpacing(rOptions.nCellSpacing),
m_nBoxes( 1 ),
m_pCaptionStartNode( nullptr ),
m_bTableAdjustOfTag( rOptions.bTableAdjust ),
m_bIsParentHead( bParHead ),
m_bHasParentSection( bHasParentSec ),
m_bHasToFly( bHasToFlw ),
m_bFixedCols( rOptions.nCols>0 ),
m_bPercentWidth( rOptions.bPercentWidth ),
m_pParser( pPars ),
m_nWidth( rOptions.nWidth ),
m_nHeight( rOptions.nHeight ),
m_eTableAdjust( rOptions.eAdjust ),
m_eVertOrientation( rOptions.eVertOri ),
m_eFrame( rOptions.eFrame ),
m_eRules( rOptions.eRules ),
m_bTopCaption( false ),
m_bFirstCell(true)
{
InitCtor(rOptions);
m_pParser->RegisterHTMLTable(this);
}
void SwHTMLParser::DeregisterHTMLTable(HTMLTable* pOld)
{
if (pOld->m_xBox1)
m_aOrphanedTableBoxes.emplace_back(std::move(pOld->m_xBox1));
m_aTables.erase(std::remove(m_aTables.begin(), m_aTables.end(), pOld));
}
SwDoc* SwHTMLParser::GetDoc() const
{
return m_xDoc.get();
}
bool SwHTMLParser::IsReqIF() const
{
return m_bReqIF;
}
// if any m_xResizeDrawObjects members are deleted during parse, remove them
// from m_xResizeDrawObjects and m_xDrawObjectPercentWidths
void HTMLTable::ObjectInDestruction(const SdrObject& rObject)
{
auto it = std::find(m_xResizeDrawObjects->begin(), m_xResizeDrawObjects->end(), &rObject);
assert(it != m_xResizeDrawObjects->end());
auto nIndex = std::distance(m_xResizeDrawObjects->begin(), it);
m_xResizeDrawObjects->erase(it);
auto otherit = m_xDrawObjectPercentWidths->begin() + nIndex * 3;
m_xDrawObjectPercentWidths->erase(otherit, otherit + 3);
}
HTMLTable::~HTMLTable()
{
m_pParser->DeregisterHTMLTable(this);
if (m_xResizeDrawObjects)
{
size_t nCount = m_xResizeDrawObjects->size();
for (size_t i = 0; i < nCount; ++i)
{
SdrObject *pObj = (*m_xResizeDrawObjects)[i];
pObj->RemoveObjectUser(*this);
}
m_xResizeDrawObjects.reset();
}
m_xDrawObjectPercentWidths.reset();
m_pContext.reset();
// pLayoutInfo has either already been deleted or is now owned by SwTable
}
const std::shared_ptr<SwHTMLTableLayout>& HTMLTable::CreateLayoutInfo()
{
sal_uInt16 nW = m_bPercentWidth ? m_nWidth : SwHTMLParser::ToTwips( m_nWidth );
sal_uInt16 nBorderWidth = GetBorderWidth( m_aBorderLine, true );
sal_uInt16 nLeftBorderWidth =
m_aColumns[0].m_bLeftBorder ? GetBorderWidth(m_aLeftBorderLine, true) : 0;
sal_uInt16 nRightBorderWidth =
m_bRightBorder ? GetBorderWidth( m_aRightBorderLine, true ) : 0;
m_xLayoutInfo = std::make_shared<SwHTMLTableLayout>(
m_pSwTable,
m_nRows, m_nCols, m_bFixedCols, m_bColSpec,
nW, m_bPercentWidth, m_nBorder, m_nCellPadding,
m_nCellSpacing, m_eTableAdjust,
m_nLeftMargin, m_nRightMargin,
nBorderWidth, nLeftBorderWidth, nRightBorderWidth);
bool bExportable = true;
sal_uInt16 i;
for( i=0; i<m_nRows; i++ )
{
HTMLTableRow& rRow = m_aRows[i];
for( sal_uInt16 j=0; j<m_nCols; j++ )
{
m_xLayoutInfo->SetCell(rRow.GetCell(j).CreateLayoutInfo(), i, j);
SwHTMLTableLayoutCell* pLayoutCell = m_xLayoutInfo->GetCell(i, j );
if( bExportable )
{
const std::shared_ptr<SwHTMLTableLayoutCnts>& rLayoutCnts =
pLayoutCell->GetContents();
bExportable = !rLayoutCnts ||
(rLayoutCnts->GetStartNode() && !rLayoutCnts->GetNext());
}
}
}
m_xLayoutInfo->SetExportable( bExportable );
for( i=0; i<m_nCols; i++ )
m_xLayoutInfo->SetColumn(m_aColumns[i].CreateLayoutInfo(), i);
return m_xLayoutInfo;
}
inline void HTMLTable::SetCaption( const SwStartNode *pStNd, bool bTop )
{
m_pCaptionStartNode = pStNd;
m_bTopCaption = bTop;
}
void HTMLTable::FixRowSpan( sal_uInt16 nRow, sal_uInt16 nCol,
const HTMLTableCnts *pCnts )
{
sal_uInt16 nRowSpan=1;
while (true)
{
HTMLTableCell& rCell = GetCell(nRow, nCol);
if (rCell.GetContents().get() != pCnts)
break;
rCell.SetRowSpan(nRowSpan);
if (m_xLayoutInfo)
m_xLayoutInfo->GetCell(nRow,nCol)->SetRowSpan(nRowSpan);
if( !nRow ) break;
nRowSpan++; nRow--;
}
}
void HTMLTable::ProtectRowSpan( sal_uInt16 nRow, sal_uInt16 nCol, sal_uInt16 nRowSpan )
{
for( sal_uInt16 i=0; i<nRowSpan; i++ )
{
GetCell(nRow+i,nCol).SetProtected();
if (m_xLayoutInfo)
m_xLayoutInfo->GetCell(nRow+i,nCol)->SetProtected();
}
}
// Search the SwStartNode of the last used predecessor box
const SwStartNode* HTMLTable::GetPrevBoxStartNode( sal_uInt16 nRow, sal_uInt16 nCol ) const
{
const HTMLTableCnts *pPrevCnts = nullptr;
if( 0==nRow )
{
// always the predecessor cell
if( nCol>0 )
pPrevCnts = GetCell(0, nCol - 1).GetContents().get();
else
return m_pPrevStartNode;
}
else if( USHRT_MAX==nRow && USHRT_MAX==nCol )
// contents of preceding cell
pPrevCnts = GetCell(m_nRows - 1, m_nCols - 1).GetContents().get();
else
{
sal_uInt16 i;
const HTMLTableRow& rPrevRow = m_aRows[nRow-1];
// maybe a cell in the current row
i = nCol;
while( i )
{
i--;
if( 1 == rPrevRow.GetCell(i).GetRowSpan() )
{
pPrevCnts = GetCell(nRow, i).GetContents().get();
break;
}
}
// otherwise the last filled cell of the row before
if( !pPrevCnts )
{
i = m_nCols;
while( !pPrevCnts && i )
{
i--;
pPrevCnts = rPrevRow.GetCell(i).GetContents().get();
}
}
}
OSL_ENSURE( pPrevCnts, "No previous filled cell found" );
if( !pPrevCnts )
{
pPrevCnts = GetCell(0, 0).GetContents().get();
if( !pPrevCnts )
return m_pPrevStartNode;
}
while( pPrevCnts->Next() )
pPrevCnts = pPrevCnts->Next();
const SwStartNode* pRet = pPrevCnts->GetStartNode();
if (pRet)
return pRet;
HTMLTable* pTable = pPrevCnts->GetTable().get();
if (!pTable)
return nullptr;
return pTable->GetPrevBoxStartNode(USHRT_MAX, USHRT_MAX);
}
sal_uInt16 HTMLTable::GetTopCellSpace( sal_uInt16 nRow ) const
{
sal_uInt16 nSpace = m_nCellPadding;
if( nRow == 0 )
{
nSpace += m_nBorder + m_nCellSpacing;
}
return nSpace;
}
sal_uInt16 HTMLTable::GetBottomCellSpace( sal_uInt16 nRow, sal_uInt16 nRowSpan ) const
{
sal_uInt16 nSpace = m_nCellSpacing + m_nCellPadding;
if( nRow+nRowSpan == m_nRows )
{
nSpace = nSpace + m_nBorder;
}
return nSpace;
}
void HTMLTable::FixFrameFormat( SwTableBox *pBox,
sal_uInt16 nRow, sal_uInt16 nCol,
sal_uInt16 nRowSpan, sal_uInt16 nColSpan,
bool bFirstPara, bool bLastPara ) const
{
SwFrameFormat *pFrameFormat = nullptr; // frame::Frame format
sal_Int16 eVOri = text::VertOrientation::NONE;
const SvxBrushItem *pBGBrushItem = nullptr; // background
std::shared_ptr<SvxBoxItem> pBoxItem;
bool bTopLine = false, bBottomLine = false, bLastBottomLine = false;
bool bReUsable = false; // Format reusable?
sal_uInt16 nEmptyRows = 0;
bool bHasNumFormat = false;
bool bHasValue = false;
sal_uInt32 nNumFormat = 0;
double nValue = 0.0;
const HTMLTableColumn& rColumn = m_aColumns[nCol];
if( pBox->GetSttNd() )
{
// Determine background color/graphic
const HTMLTableCell& rCell = GetCell(nRow, nCol);
pBoxItem = rCell.GetBoxItem();
pBGBrushItem = rCell.GetBGBrush().get();
if( !pBGBrushItem )
{
// If a cell spans multiple rows, a background to that row should be copied to the cell.
if (nRowSpan > 1)
{
pBGBrushItem = m_aRows[nRow].GetBGBrush().get();
}
}
bTopLine = 0==nRow && m_bTopBorder && bFirstPara;
if (m_aRows[nRow+nRowSpan-1].GetBottomBorder() && bLastPara)
{
nEmptyRows = m_aRows[nRow+nRowSpan-1].GetEmptyRows();
if( nRow+nRowSpan == m_nRows )
bLastBottomLine = true;
else
bBottomLine = true;
}
eVOri = rCell.GetVertOri();
bHasNumFormat = rCell.GetNumFormat( nNumFormat );
if( bHasNumFormat )
bHasValue = rCell.GetValue( nValue );
if( nColSpan==1 && !bTopLine && !bLastBottomLine && !nEmptyRows &&
!pBGBrushItem && !bHasNumFormat && !pBoxItem)
{
pFrameFormat = rColumn.GetFrameFormat( bBottomLine, eVOri );
bReUsable = !pFrameFormat;
}
}
if( !pFrameFormat )
{
pFrameFormat = pBox->ClaimFrameFormat();
// calculate width of the box
SwTwips nFrameWidth = static_cast<SwTwips>(m_xLayoutInfo->GetColumn(nCol)
->GetRelColWidth());
for( sal_uInt16 i=1; i<nColSpan; i++ )
nFrameWidth += static_cast<SwTwips>(m_xLayoutInfo->GetColumn(nCol+i)
->GetRelColWidth());
// Only set the border on edit boxes.
// On setting the upper and lower border, keep in mind if
// it's the first or the last paragraph of the cell
if( pBox->GetSttNd() )
{
bool bSet = (m_nCellPadding > 0);
SvxBoxItem aBoxItem( RES_BOX );
tools::Long nInnerFrameWidth = nFrameWidth;
if( bTopLine )
{
aBoxItem.SetLine( &m_aTopBorderLine, SvxBoxItemLine::TOP );
bSet = true;
}
if( bLastBottomLine )
{
aBoxItem.SetLine( &m_aBottomBorderLine, SvxBoxItemLine::BOTTOM );
bSet = true;
}
else if( bBottomLine )
{
if( nEmptyRows && !m_aBorderLine.GetInWidth() )
{
// For now, empty rows can only be emulated by thick lines, if it's a single line
SvxBorderLine aThickBorderLine( m_aBorderLine );
sal_uInt16 nBorderWidth = m_aBorderLine.GetOutWidth();
nBorderWidth *= (nEmptyRows + 1);
aThickBorderLine.SetBorderLineStyle(SvxBorderLineStyle::SOLID);
aThickBorderLine.SetWidth( nBorderWidth );
aBoxItem.SetLine( &aThickBorderLine, SvxBoxItemLine::BOTTOM );
}
else
{
aBoxItem.SetLine( &m_aBorderLine, SvxBoxItemLine::BOTTOM );
}
bSet = true;
}
if (m_aColumns[nCol].m_bLeftBorder)
{
const SvxBorderLine& rBorderLine =
0==nCol ? m_aLeftBorderLine : m_aBorderLine;
aBoxItem.SetLine( &rBorderLine, SvxBoxItemLine::LEFT );
nInnerFrameWidth -= GetBorderWidth( rBorderLine );
bSet = true;
}
if( m_bRightBorder )
{
aBoxItem.SetLine( &m_aRightBorderLine, SvxBoxItemLine::RIGHT );
nInnerFrameWidth -= GetBorderWidth( m_aRightBorderLine );
bSet = true;
}
if (pBoxItem)
{
pFrameFormat->SetFormatAttr( *pBoxItem );
}
else if (bSet)
{
// BorderDist is not part of a cell with fixed width
sal_uInt16 nBDist = static_cast< sal_uInt16 >(
(2*m_nCellPadding <= nInnerFrameWidth) ? m_nCellPadding
: (nInnerFrameWidth / 2) );
// We only set the item if there's a border or a border distance
// If the latter is missing, there's gonna be a border and we'll have to set the distance
aBoxItem.SetAllDistances(nBDist ? nBDist : MIN_BORDER_DIST);
pFrameFormat->SetFormatAttr( aBoxItem );
}
else
pFrameFormat->ResetFormatAttr( RES_BOX );
if( pBGBrushItem )
{
pFrameFormat->SetFormatAttr( *pBGBrushItem );
}
else
pFrameFormat->ResetFormatAttr( RES_BACKGROUND );
// Only set format if there's a value or the box is empty
if( bHasNumFormat && (bHasValue || pBox->IsEmpty()) )
{
bool bLock = pFrameFormat->GetDoc()->GetNumberFormatter()
->IsTextFormat( nNumFormat );
SfxItemSetFixed<RES_BOXATR_FORMAT, RES_BOXATR_VALUE>
aItemSet( *pFrameFormat->GetAttrSet().GetPool() );
SvxAdjust eAdjust = SvxAdjust::End;
SwContentNode *pCNd = nullptr;
if( !bLock )
{
const SwStartNode *pSttNd = pBox->GetSttNd();
pCNd = pSttNd->GetNodes()[pSttNd->GetIndex()+1]
->GetContentNode();
const SvxAdjustItem *pItem;
if( pCNd && pCNd->HasSwAttrSet() &&
(pItem = pCNd->GetpSwAttrSet()->GetItemIfSet(
RES_PARATR_ADJUST, false )) )
{
eAdjust = pItem->GetAdjust();
}
}
aItemSet.Put( SwTableBoxNumFormat(nNumFormat) );
if( bHasValue )
aItemSet.Put( SwTableBoxValue(nValue) );
if( bLock )
pFrameFormat->LockModify();
pFrameFormat->SetFormatAttr( aItemSet );
if( bLock )
pFrameFormat->UnlockModify();
else if( pCNd && SvxAdjust::End != eAdjust )
{
SvxAdjustItem aAdjItem( eAdjust, RES_PARATR_ADJUST );
pCNd->SetAttr( aAdjItem );
}
}
else
pFrameFormat->ResetFormatAttr( RES_BOXATR_FORMAT );
OSL_ENSURE( eVOri != text::VertOrientation::TOP, "text::VertOrientation::TOP is not allowed!" );
if( text::VertOrientation::NONE != eVOri )
{
pFrameFormat->SetFormatAttr( SwFormatVertOrient( 0, eVOri ) );
}
else
pFrameFormat->ResetFormatAttr( RES_VERT_ORIENT );
if( bReUsable )
const_cast<HTMLTableColumn&>(rColumn).SetFrameFormat(pFrameFormat, bBottomLine, eVOri);
}
else
{
pFrameFormat->ResetFormatAttr( RES_BOX );
pFrameFormat->ResetFormatAttr( RES_BACKGROUND );
pFrameFormat->ResetFormatAttr( RES_VERT_ORIENT );
pFrameFormat->ResetFormatAttr( RES_BOXATR_FORMAT );
}
if (m_pParser->IsReqIF())
{
// ReqIF case, cells would have no formatting. Apply the default
// table autoformat on them, so imported and UI-created tables look
// the same.
SwTableAutoFormatTable& rTable = m_pParser->GetDoc()->GetTableStyles();
SwTableAutoFormat* pTableFormat = rTable.FindAutoFormat(
SwStyleNameMapper::GetUIName(RES_POOLTABLESTYLE_DEFAULT, OUString()));
if (pTableFormat)
{
sal_uInt8 nPos = SwTableAutoFormat::CountPos(nCol, m_nCols, nRow, m_nRows);
pTableFormat->UpdateToSet(nPos, m_nRows==1, m_nCols==1,
const_cast<SfxItemSet&>(static_cast<SfxItemSet const&>(
pFrameFormat->GetAttrSet())),
SwTableAutoFormatUpdateFlags::Box,
pFrameFormat->GetDoc()->GetNumberFormatter());
}
}
}
else
{
OSL_ENSURE( pBox->GetSttNd() ||
SfxItemState::SET!=pFrameFormat->GetAttrSet().GetItemState(
RES_VERT_ORIENT, false ),
"Box without content has vertical orientation" );
pBox->ChgFrameFormat( static_cast<SwTableBoxFormat*>(pFrameFormat) );
}
}
SwTableBox *HTMLTable::NewTableBox( const SwStartNode *pStNd,
SwTableLine *pUpper ) const
{
SwTableBox *pBox;
if (m_xBox1 && m_xBox1->GetSttNd() == pStNd)
{
// If the StartNode is the StartNode of the initially created box, we take that box
pBox = const_cast<HTMLTable*>(this)->m_xBox1.release();
pBox->SetUpper(pUpper);
}
else
pBox = new SwTableBox( m_pBoxFormat, *pStNd, pUpper );
return pBox;
}
static void ResetLineFrameFormatAttrs( SwFrameFormat *pFrameFormat )
{
pFrameFormat->ResetFormatAttr( RES_FRM_SIZE );
pFrameFormat->ResetFormatAttr( RES_BACKGROUND );
OSL_ENSURE( SfxItemState::SET!=pFrameFormat->GetAttrSet().GetItemState(
RES_VERT_ORIENT, false ),
"Cell has vertical orientation" );
}
// !!! could be simplified
SwTableLine *HTMLTable::MakeTableLine( SwTableBox *pUpper,
sal_uInt16 nTopRow, sal_uInt16 nLeftCol,
sal_uInt16 nBottomRow, sal_uInt16 nRightCol )
{
SwTableLine *pLine;
if (!pUpper && 0 == nTopRow)
pLine = (m_pSwTable->GetTabLines())[0];
else
pLine = new SwTableLine( m_pLineFrameFormatNoHeight ? m_pLineFrameFormatNoHeight
: m_pLineFormat,
0, pUpper );
const HTMLTableRow& rTopRow = m_aRows[nTopRow];
sal_uInt16 nRowHeight = rTopRow.GetHeight();
const SvxBrushItem *pBGBrushItem = nullptr;
if (nTopRow > 0 || nBottomRow < m_nRows)
{
// It doesn't make sense to set a color on a line,
// if it's the outermost and simultaneously sole line of a table in a table
pBGBrushItem = rTopRow.GetBGBrush().get();
}
if( nTopRow==nBottomRow-1 && (nRowHeight || pBGBrushItem) )
{
SwTableLineFormat *pFrameFormat = static_cast<SwTableLineFormat*>(pLine->ClaimFrameFormat());
ResetLineFrameFormatAttrs( pFrameFormat );
if( nRowHeight )
{
// set table height. Since it's a minimum height it can be calculated like in Netscape,
// so without considering the actual border width
nRowHeight += GetTopCellSpace( nTopRow ) +
GetBottomCellSpace( nTopRow, 1 );
pFrameFormat->SetFormatAttr( SwFormatFrameSize( SwFrameSize::Minimum, 0, nRowHeight ) );
}
if( pBGBrushItem )
{
pFrameFormat->SetFormatAttr( *pBGBrushItem );
}
}
else if( !m_pLineFrameFormatNoHeight )
{
// else, we'll have to remove the height from the attribute and remember the format
m_pLineFrameFormatNoHeight = static_cast<SwTableLineFormat*>(pLine->ClaimFrameFormat());
ResetLineFrameFormatAttrs( m_pLineFrameFormatNoHeight );
}
SwTableBoxes& rBoxes = pLine->GetTabBoxes();
sal_uInt16 nStartCol = nLeftCol;
while( nStartCol<nRightCol )
{
sal_uInt16 nCol = nStartCol;
sal_uInt16 nSplitCol = nRightCol;
bool bSplitted = false;
while( !bSplitted )
{
OSL_ENSURE( nCol < nRightCol, "Gone too far" );
HTMLTableCell& rCell = GetCell(nTopRow,nCol);
const bool bSplit = 1 == rCell.GetColSpan();
OSL_ENSURE((nCol != nRightCol-1) || bSplit, "Split-Flag wrong");
if( bSplit )
{
SwTableBox* pBox = nullptr;
HTMLTableCell& rCell2 = GetCell(nTopRow, nStartCol);
if (rCell2.GetColSpan() == (nCol+1-nStartCol))
{
// The HTML tables represent a box. So we need to split behind that box
nSplitCol = nCol + 1;
sal_Int32 nBoxRowSpan = rCell2.GetRowSpan();
if (!rCell2.GetContents() || rCell2.IsCovered())
{
if (rCell2.IsCovered())
nBoxRowSpan = -1 * nBoxRowSpan;
const SwStartNode* pPrevStartNd =
GetPrevBoxStartNode( nTopRow, nStartCol );
auto xCnts = std::make_shared<HTMLTableCnts>(
m_pParser->InsertTableSection(pPrevStartNd));
const std::shared_ptr<SwHTMLTableLayoutCnts> xCntsLayoutInfo =
xCnts->CreateLayoutInfo();
rCell2.SetContents(xCnts);
SwHTMLTableLayoutCell *pCurrCell = m_xLayoutInfo->GetCell(nTopRow, nStartCol);
pCurrCell->SetContents(xCntsLayoutInfo);
if( nBoxRowSpan < 0 )
pCurrCell->SetRowSpan( 0 );
// check COLSPAN if needed
for( sal_uInt16 j=nStartCol+1; j<nSplitCol; j++ )
{
GetCell(nTopRow, j).SetContents(xCnts);
m_xLayoutInfo->GetCell(nTopRow, j)
->SetContents(xCntsLayoutInfo);
}
}
pBox = MakeTableBox(pLine, rCell2.GetContents().get(),
nTopRow, nStartCol,
nBottomRow, nSplitCol);
if (1 != nBoxRowSpan && pBox)
pBox->setRowSpan( nBoxRowSpan );
bSplitted = true;
}
OSL_ENSURE( pBox, "Colspan trouble" );
if( pBox )
rBoxes.push_back( pBox );
}
nCol++;
}
nStartCol = nSplitCol;
}
return pLine;
}
SwTableBox *HTMLTable::MakeTableBox( SwTableLine *pUpper,
HTMLTableCnts *pCnts,
sal_uInt16 nTopRow, sal_uInt16 nLeftCol,
sal_uInt16 nBottomRow, sal_uInt16 nRightCol )
{
SwTableBox *pBox;
sal_uInt16 nColSpan = nRightCol - nLeftCol;
sal_uInt16 nRowSpan = nBottomRow - nTopRow;
if( !pCnts->Next() )
{
// just one content section
if( pCnts->GetStartNode() )
{
// ... that's not a table
pBox = NewTableBox( pCnts->GetStartNode(), pUpper );
pCnts->SetTableBox( pBox );
}
else if (HTMLTable* pTable = pCnts->GetTable().get())
{
pTable->InheritVertBorders( this, nLeftCol,
nRightCol-nLeftCol );
// ... that's a table. We'll build a new box and put the rows of the table
// in the rows of the box
pBox = new SwTableBox( m_pBoxFormat, 0, pUpper );
sal_uInt16 nAbs, nRel;
m_xLayoutInfo->GetAvail( nLeftCol, nColSpan, nAbs, nRel );
sal_uInt16 nLSpace = m_xLayoutInfo->GetLeftCellSpace( nLeftCol, nColSpan );
sal_uInt16 nRSpace = m_xLayoutInfo->GetRightCellSpace( nLeftCol, nColSpan );
sal_uInt16 nInhSpace = m_xLayoutInfo->GetInhCellSpace( nLeftCol, nColSpan );
pCnts->GetTable()->MakeTable( pBox, nAbs, nRel, nLSpace, nRSpace,
nInhSpace );
}
else
{
return nullptr;
}
}
else
{
// multiple content sections: we'll build a box with rows
pBox = new SwTableBox( m_pBoxFormat, 0, pUpper );
SwTableLines& rLines = pBox->GetTabLines();
bool bFirstPara = true;
while( pCnts )
{
if( pCnts->GetStartNode() )
{
// normal paragraphs are gonna be boxes in a row
SwTableLine *pLine =
new SwTableLine( m_pLineFrameFormatNoHeight ? m_pLineFrameFormatNoHeight
: m_pLineFormat, 0, pBox );
if( !m_pLineFrameFormatNoHeight )
{
// If there's no line format without height yet, we can use that one
m_pLineFrameFormatNoHeight = static_cast<SwTableLineFormat*>(pLine->ClaimFrameFormat());
ResetLineFrameFormatAttrs( m_pLineFrameFormatNoHeight );
}
SwTableBox* pCntBox = NewTableBox( pCnts->GetStartNode(),
pLine );
pCnts->SetTableBox( pCntBox );
FixFrameFormat( pCntBox, nTopRow, nLeftCol, nRowSpan, nColSpan,
bFirstPara, nullptr==pCnts->Next() );
pLine->GetTabBoxes().push_back( pCntBox );
rLines.push_back( pLine );
}
else
{
pCnts->GetTable()->InheritVertBorders( this, nLeftCol,
nRightCol-nLeftCol );
// Tables are entered directly
sal_uInt16 nAbs, nRel;
m_xLayoutInfo->GetAvail( nLeftCol, nColSpan, nAbs, nRel );
sal_uInt16 nLSpace = m_xLayoutInfo->GetLeftCellSpace( nLeftCol,
nColSpan );
sal_uInt16 nRSpace = m_xLayoutInfo->GetRightCellSpace( nLeftCol,
nColSpan );
sal_uInt16 nInhSpace = m_xLayoutInfo->GetInhCellSpace( nLeftCol, nColSpan );
pCnts->GetTable()->MakeTable( pBox, nAbs, nRel, nLSpace,
nRSpace, nInhSpace );
}
pCnts = pCnts->Next();
bFirstPara = false;
}
}
FixFrameFormat( pBox, nTopRow, nLeftCol, nRowSpan, nColSpan );
return pBox;
}
void HTMLTable::InheritBorders( const HTMLTable *pParent,
sal_uInt16 nRow, sal_uInt16 nCol,
sal_uInt16 nRowSpan,
bool bFirstPara, bool bLastPara )
{
OSL_ENSURE( m_nRows>0 && m_nCols>0 && m_nCurrentRow==m_nRows,
"Was CloseTable not called?" );
// The child table needs a border, if the surrounding cell has a margin on that side.
// The upper/lower border is only set if the table is the first/last paragraph in that cell
// It can't be determined if a border for that table is needed or possible for the left or right side,
// since that's depending on if filler cells are gonna be added. We'll only collect info for now
if( 0==nRow && pParent->m_bTopBorder && bFirstPara )
{
m_bTopBorder = true;
m_bFillerTopBorder = true; // fillers get a border too
m_aTopBorderLine = pParent->m_aTopBorderLine;
}
if (pParent->m_aRows[nRow+nRowSpan-1].GetBottomBorder() && bLastPara)
{
m_aRows[m_nRows-1].SetBottomBorder(true);
m_bFillerBottomBorder = true; // fillers get a border too
m_aBottomBorderLine =
nRow+nRowSpan==pParent->m_nRows ? pParent->m_aBottomBorderLine
: pParent->m_aBorderLine;
}
// The child table mustn't get an upper or lower border, if that's already done by the surrounding table
// It can get an upper border if the table is not the first paragraph in that cell
m_bTopAllowed = ( !bFirstPara || (pParent->m_bTopAllowed &&
(0==nRow || !pParent->m_aRows[nRow-1].GetBottomBorder())) );
// The child table has to inherit the color of the cell it's contained in, if it doesn't have one
const SvxBrushItem *pInhBG = pParent->GetCell(nRow, nCol).GetBGBrush().get();
if( !pInhBG && pParent != this &&
pParent->GetCell(nRow,nCol).GetRowSpan() == pParent->m_nRows )
{
// the whole surrounding table is a table in a table and consists only of a single line
// that's gonna be GC-ed (correctly). That's why the background of that line is copied.
pInhBG = pParent->m_aRows[nRow].GetBGBrush().get();
if( !pInhBG )
pInhBG = pParent->GetBGBrush().get();
if( !pInhBG )
pInhBG = pParent->GetInhBGBrush().get();
}
if( pInhBG )
m_xInheritedBackgroundBrush.reset(new SvxBrushItem(*pInhBG));
}
void HTMLTable::InheritVertBorders( const HTMLTable *pParent,
sal_uInt16 nCol, sal_uInt16 nColSpan )
{
sal_uInt16 nInhLeftBorderWidth = 0;
sal_uInt16 nInhRightBorderWidth = 0;
if( nCol+nColSpan==pParent->m_nCols && pParent->m_bRightBorder )
{
m_bInheritedRightBorder = true; // just remember for now
m_aInheritedRightBorderLine = pParent->m_aRightBorderLine;
nInhRightBorderWidth =
GetBorderWidth( m_aInheritedRightBorderLine, true ) + MIN_BORDER_DIST;
}
if (pParent->m_aColumns[nCol].m_bLeftBorder)
{
m_bInheritedLeftBorder = true; // just remember for now
m_aInheritedLeftBorderLine = 0==nCol ? pParent->m_aLeftBorderLine
: pParent->m_aBorderLine;
nInhLeftBorderWidth =
GetBorderWidth( m_aInheritedLeftBorderLine, true ) + MIN_BORDER_DIST;
}
if( !m_bInheritedLeftBorder && (m_bFillerTopBorder || m_bFillerBottomBorder) )
nInhLeftBorderWidth = 2 * MIN_BORDER_DIST;
if( !m_bInheritedRightBorder && (m_bFillerTopBorder || m_bFillerBottomBorder) )
nInhRightBorderWidth = 2 * MIN_BORDER_DIST;
m_xLayoutInfo->SetInhBorderWidths( nInhLeftBorderWidth,
nInhRightBorderWidth );
m_bRightAllowed = ( pParent->m_bRightAllowed &&
(nCol+nColSpan==pParent->m_nCols ||
!pParent->m_aColumns[nCol+nColSpan].m_bLeftBorder) );
}
void HTMLTable::SetBorders()
{
sal_uInt16 i;
for( i=1; i<m_nCols; i++ )
if( HTMLTableRules::All==m_eRules || HTMLTableRules::Cols==m_eRules ||
((HTMLTableRules::Rows==m_eRules || HTMLTableRules::Groups==m_eRules) &&
m_aColumns[i-1].IsEndOfGroup()))
{
m_aColumns[i].m_bLeftBorder = true;
}
for( i=0; i<m_nRows-1; i++ )
if( HTMLTableRules::All==m_eRules || HTMLTableRules::Rows==m_eRules ||
((HTMLTableRules::Cols==m_eRules || HTMLTableRules::Groups==m_eRules) &&
m_aRows[i].IsEndOfGroup()))
{
m_aRows[i].SetBottomBorder(true);
}
if( m_bTopAllowed && (HTMLTableFrame::Above==m_eFrame || HTMLTableFrame::HSides==m_eFrame ||
HTMLTableFrame::Box==m_eFrame) )
m_bTopBorder = true;
if( HTMLTableFrame::Below==m_eFrame || HTMLTableFrame::HSides==m_eFrame ||
HTMLTableFrame::Box==m_eFrame )
{
m_aRows[m_nRows-1].SetBottomBorder(true);
}
if( HTMLTableFrame::RHS==m_eFrame || HTMLTableFrame::VSides==m_eFrame ||
HTMLTableFrame::Box==m_eFrame )
m_bRightBorder = true;
if( HTMLTableFrame::LHS==m_eFrame || HTMLTableFrame::VSides==m_eFrame || HTMLTableFrame::Box==m_eFrame )
{
m_aColumns[0].m_bLeftBorder = true;
}
for( i=0; i<m_nRows; i++ )
{
HTMLTableRow& rRow = m_aRows[i];
for (sal_uInt16 j=0; j<m_nCols; ++j)
{
HTMLTableCell& rCell = rRow.GetCell(j);
if (rCell.GetContents())
{
HTMLTableCnts *pCnts = rCell.GetContents().get();
bool bFirstPara = true;
while( pCnts )
{
HTMLTable *pTable = pCnts->GetTable().get();
if( pTable && !pTable->BordersSet() )
{
pTable->InheritBorders(this, i, j,
rCell.GetRowSpan(),
bFirstPara,
nullptr==pCnts->Next());
pTable->SetBorders();
}
bFirstPara = false;
pCnts = pCnts->Next();
}
}
}
}
m_bBordersSet = true;
}
sal_uInt16 HTMLTable::GetBorderWidth( const SvxBorderLine& rBLine,
bool bWithDistance ) const
{
sal_uInt16 nBorderWidth = rBLine.GetWidth();
if( bWithDistance )
{
if( m_nCellPadding )
nBorderWidth = nBorderWidth + m_nCellPadding;
else if( nBorderWidth )
nBorderWidth = nBorderWidth + MIN_BORDER_DIST;
}
return nBorderWidth;
}
const HTMLTableCell& HTMLTable::GetCell(sal_uInt16 nRow, sal_uInt16 nCell) const
{
OSL_ENSURE(nRow < m_aRows.size(), "invalid row index in HTML table");
return m_aRows[nRow].GetCell(nCell);
}
SvxAdjust HTMLTable::GetInheritedAdjust() const
{
SvxAdjust eAdjust = (m_nCurrentColumn<m_nCols ? m_aColumns[m_nCurrentColumn].GetAdjust()
: SvxAdjust::End );
if( SvxAdjust::End==eAdjust )
eAdjust = m_aRows[m_nCurrentRow].GetAdjust();
return eAdjust;
}
sal_Int16 HTMLTable::GetInheritedVertOri() const
{
// text::VertOrientation::TOP is default!
sal_Int16 eVOri = m_aRows[m_nCurrentRow].GetVertOri();
if( text::VertOrientation::TOP==eVOri && m_nCurrentColumn<m_nCols )
eVOri = m_aColumns[m_nCurrentColumn].GetVertOri();
if( text::VertOrientation::TOP==eVOri )
eVOri = m_eVertOrientation;
OSL_ENSURE( m_eVertOrientation != text::VertOrientation::TOP, "text::VertOrientation::TOP is not allowed!" );
return eVOri;
}
void HTMLTable::InsertCell( std::shared_ptr<HTMLTableCnts> const& rCnts,
sal_uInt16 nRowSpan, sal_uInt16 nColSpan,
sal_uInt16 nCellWidth, bool bRelWidth, sal_uInt16 nCellHeight,
sal_Int16 eVertOrient, std::shared_ptr<SvxBrushItem> const& rBGBrushItem,
std::shared_ptr<SvxBoxItem> const& rBoxItem,
bool bHasNumFormat, sal_uInt32 nNumFormat,
bool bHasValue, double nValue, bool bNoWrap )
{
if( !nRowSpan || static_cast<sal_uInt32>(m_nCurrentRow) + nRowSpan > USHRT_MAX )
nRowSpan = 1;
if( !nColSpan || static_cast<sal_uInt32>(m_nCurrentColumn) + nColSpan > USHRT_MAX )
nColSpan = 1;
sal_uInt16 nColsReq = m_nCurrentColumn + nColSpan;
sal_uInt16 nRowsReq = m_nCurrentRow + nRowSpan;
sal_uInt16 i, j;
// if we need more columns than we currently have, we need to add cells for all rows
if( m_nCols < nColsReq )
{
m_aColumns.resize(nColsReq);
for( i=0; i<m_nRows; i++ )
m_aRows[i].Expand( nColsReq, i<m_nCurrentRow );
m_nCols = nColsReq;
OSL_ENSURE(m_aColumns.size() == m_nCols,
"wrong number of columns after expanding");
}
if( nColsReq > m_nFilledColumns )
m_nFilledColumns = nColsReq;
// if we need more rows than we currently have, we need to add cells
if( m_nRows < nRowsReq )
{
for( i=m_nRows; i<nRowsReq; i++ )
m_aRows.emplace_back(m_nCols);
m_nRows = nRowsReq;
OSL_ENSURE(m_nRows == m_aRows.size(), "wrong number of rows in Insert");
}
// Check if we have an overlap and could remove that
sal_uInt16 nSpanedCols = 0;
if( m_nCurrentRow>0 )
{
HTMLTableRow& rCurRow = m_aRows[m_nCurrentRow];
for( i=m_nCurrentColumn; i<nColsReq; i++ )
{
HTMLTableCell& rCell = rCurRow.GetCell(i);
if (rCell.GetContents())
{
// A cell from a row further above overlaps this one.
// Content and colors are coming from that cell and can be overwritten
// or deleted (content) or copied (color) by ProtectRowSpan
nSpanedCols = i + rCell.GetColSpan();
FixRowSpan( m_nCurrentRow-1, i, rCell.GetContents().get() );
if (rCell.GetRowSpan() > nRowSpan)
ProtectRowSpan( nRowsReq, i,
rCell.GetRowSpan()-nRowSpan );
}
}
for( i=nColsReq; i<nSpanedCols; i++ )
{
// These contents are anchored in the row above in any case
HTMLTableCell& rCell = rCurRow.GetCell(i);
FixRowSpan( m_nCurrentRow-1, i, rCell.GetContents().get() );
ProtectRowSpan( m_nCurrentRow, i, rCell.GetRowSpan() );
}
}
// Fill the cells
for( i=nColSpan; i>0; i-- )
{
for( j=nRowSpan; j>0; j-- )
{
const bool bCovered = i != nColSpan || j != nRowSpan;
GetCell( nRowsReq-j, nColsReq-i )
.Set( rCnts, j, i, eVertOrient, rBGBrushItem, rBoxItem,
bHasNumFormat, nNumFormat, bHasValue, nValue, bNoWrap, bCovered );
}
}
Size aTwipSz( bRelWidth ? 0 : nCellWidth, nCellHeight );
if( (aTwipSz.Width() || aTwipSz.Height()) && Application::GetDefaultDevice() )
{
aTwipSz = Application::GetDefaultDevice()
->PixelToLogic( aTwipSz, MapMode( MapUnit::MapTwip ) );
}
// Only set width on the first cell!
if( nCellWidth )
{
sal_uInt16 nTmp = bRelWidth ? nCellWidth : o3tl::narrowing<sal_uInt16>(aTwipSz.Width());
GetCell( m_nCurrentRow, m_nCurrentColumn ).SetWidth( nTmp, bRelWidth );
}
// Remember height
if( nCellHeight && 1==nRowSpan )
{
m_aRows[m_nCurrentRow].SetHeight(o3tl::narrowing<sal_uInt16>(aTwipSz.Height()));
}
// Set the column counter behind the new cells
m_nCurrentColumn = nColsReq;
if( nSpanedCols > m_nCurrentColumn )
m_nCurrentColumn = nSpanedCols;
// and search for the next free cell
while( m_nCurrentColumn<m_nCols && GetCell(m_nCurrentRow,m_nCurrentColumn).IsUsed() )
m_nCurrentColumn++;
}
inline void HTMLTable::CloseSection( bool bHead )
{
// Close the preceding sections if there's already a row
OSL_ENSURE( m_nCurrentRow<=m_nRows, "invalid current row" );
if( m_nCurrentRow>0 && m_nCurrentRow<=m_nRows )
m_aRows[m_nCurrentRow-1].SetEndOfGroup();
if( bHead )
m_nHeadlineRepeat = m_nCurrentRow;
}
void HTMLTable::OpenRow(SvxAdjust eAdjust, sal_Int16 eVertOrient,
std::unique_ptr<SvxBrushItem>& rBGBrushItem)
{
sal_uInt16 nRowsReq = m_nCurrentRow+1;
// create the next row if it's not there already
if( m_nRows<nRowsReq )
{
for( sal_uInt16 i=m_nRows; i<nRowsReq; i++ )
m_aRows.emplace_back(m_nCols);
m_nRows = nRowsReq;
OSL_ENSURE( m_nRows == m_aRows.size(),
"Row number in OpenRow is wrong" );
}
HTMLTableRow& rCurRow = m_aRows[m_nCurrentRow];
rCurRow.SetAdjust(eAdjust);
rCurRow.SetVertOri(eVertOrient);
if (rBGBrushItem)
m_aRows[m_nCurrentRow].SetBGBrush(rBGBrushItem);
// reset the column counter
m_nCurrentColumn=0;
// and search for the next free cell
while( m_nCurrentColumn<m_nCols && GetCell(m_nCurrentRow,m_nCurrentColumn).IsUsed() )
m_nCurrentColumn++;
}
void HTMLTable::CloseRow( bool bEmpty )
{
OSL_ENSURE( m_nCurrentRow<m_nRows, "current row after table end" );
// empty cells just get a slightly thicker lower border!
if( bEmpty )
{
if( m_nCurrentRow > 0 )
m_aRows[m_nCurrentRow-1].IncEmptyRows();
return;
}
HTMLTableRow& rRow = m_aRows[m_nCurrentRow];
// modify the COLSPAN of all empty cells at the row end in a way, that they're forming a single cell
// that can be done here (and not earlier) since there's no more cells in that row
sal_uInt16 i=m_nCols;
while( i )
{
HTMLTableCell& rCell = rRow.GetCell(--i);
if (!rCell.GetContents())
{
sal_uInt16 nColSpan = m_nCols-i;
if( nColSpan > 1 )
rCell.SetColSpan(nColSpan);
}
else
break;
}
m_nCurrentRow++;
}
inline void HTMLTable::CloseColGroup( sal_uInt16 nSpan, sal_uInt16 _nWidth,
bool bRelWidth, SvxAdjust eAdjust,
sal_Int16 eVertOrient )
{
if( nSpan )
InsertCol( nSpan, _nWidth, bRelWidth, eAdjust, eVertOrient );
OSL_ENSURE( m_nCurrentColumn<=m_nCols, "invalid column" );
if( m_nCurrentColumn>0 && m_nCurrentColumn<=m_nCols )
m_aColumns[m_nCurrentColumn-1].SetEndOfGroup();
}
void HTMLTable::InsertCol( sal_uInt16 nSpan, sal_uInt16 nColWidth, bool bRelWidth,
SvxAdjust eAdjust, sal_Int16 eVertOrient )
{
// #i35143# - no columns, if rows already exist.
if ( m_nRows > 0 )
return;
sal_uInt16 i;
if( !nSpan )
nSpan = 1;
sal_uInt16 nColsReq = m_nCurrentColumn + nSpan;
if( m_nCols < nColsReq )
{
m_aColumns.resize(nColsReq);
m_nCols = nColsReq;
}
Size aTwipSz( bRelWidth ? 0 : nColWidth, 0 );
if( aTwipSz.Width() && Application::GetDefaultDevice() )
{
aTwipSz = Application::GetDefaultDevice()
->PixelToLogic( aTwipSz, MapMode( MapUnit::MapTwip ) );
}
for( i=m_nCurrentColumn; i<nColsReq; i++ )
{
HTMLTableColumn& rCol = m_aColumns[i];
sal_uInt16 nTmp = bRelWidth ? nColWidth : o3tl::narrowing<sal_uInt16>(aTwipSz.Width());
rCol.SetWidth( nTmp, bRelWidth );
rCol.SetAdjust( eAdjust );
rCol.SetVertOri( eVertOrient );
}
m_bColSpec = true;
m_nCurrentColumn = nColsReq;
}
void HTMLTable::CloseTable()
{
sal_uInt16 i;
// The number of table rows is only dependent on the <TR> elements (i.e. nCurRow).
// Rows that are spanned via ROWSPAN behind nCurRow need to be deleted
// and we need to adjust the ROWSPAN in the rows above
if( m_nRows>m_nCurrentRow )
{
HTMLTableRow& rPrevRow = m_aRows[m_nCurrentRow-1];
for( i=0; i<m_nCols; i++ )
{
HTMLTableCell& rCell = rPrevRow.GetCell(i);
if (rCell.GetRowSpan() > 1)
{
FixRowSpan(m_nCurrentRow-1, i, rCell.GetContents().get());
ProtectRowSpan(m_nCurrentRow, i, m_aRows[m_nCurrentRow].GetCell(i).GetRowSpan());
}
}
for( i=m_nRows-1; i>=m_nCurrentRow; i-- )
m_aRows.erase(m_aRows.begin() + i);
m_nRows = m_nCurrentRow;
}
// if the table has no column, we need to add one
if( 0==m_nCols )
{
m_aColumns.resize(1);
for( i=0; i<m_nRows; i++ )
m_aRows[i].Expand(1);
m_nCols = 1;
m_nFilledColumns = 1;
}
// if the table has no row, we need to add one
if( 0==m_nRows )
{
m_aRows.emplace_back(m_nCols);
m_nRows = 1;
m_nCurrentRow = 1;
}
if( m_nFilledColumns < m_nCols )
{
m_aColumns.erase(m_aColumns.begin() + m_nFilledColumns, m_aColumns.begin() + m_nCols);
for( i=0; i<m_nRows; i++ )
m_aRows[i].Shrink( m_nFilledColumns );
m_nCols = m_nFilledColumns;
}
}
void HTMLTable::MakeTable_( SwTableBox *pBox )
{
SwTableLines& rLines = (pBox ? pBox->GetTabLines()
: const_cast<SwTable *>(m_pSwTable)->GetTabLines() );
for( sal_uInt16 i=0; i<m_nRows; i++ )
{
SwTableLine *pLine = MakeTableLine( pBox, i, 0, i+1, m_nCols );
if( pBox || i > 0 )
rLines.push_back( pLine );
}
}
/* How are tables aligned?
first row: without paragraph indents
second row: with paragraph indents
ALIGN= LEFT RIGHT CENTER -
-------------------------------------------------------------------------
xxx for tables with WIDTH=nn% the percentage value is important:
xxx nn = 100 text::HoriOrientation::FULL text::HoriOrientation::FULL text::HoriOrientation::FULL text::HoriOrientation::FULL %
xxx text::HoriOrientation::NONE text::HoriOrientation::NONE text::HoriOrientation::NONE % text::HoriOrientation::NONE %
xxx nn < 100 frame F frame F text::HoriOrientation::CENTER % text::HoriOrientation::LEFT %
xxx frame F frame F text::HoriOrientation::CENTER % text::HoriOrientation::NONE %
for tables with WIDTH=nn% the percentage value is important:
nn = 100 text::HoriOrientation::LEFT text::HoriOrientation::RIGHT text::HoriOrientation::CENTER % text::HoriOrientation::LEFT %
text::HoriOrientation::LEFT_AND text::HoriOrientation::RIGHT text::HoriOrientation::CENTER % text::HoriOrientation::LEFT_AND %
nn < 100 frame F frame F text::HoriOrientation::CENTER % text::HoriOrientation::LEFT %
frame F frame F text::HoriOrientation::CENTER % text::HoriOrientation::NONE %
otherwise the calculated width w
w = avail* text::HoriOrientation::LEFT text::HoriOrientation::RIGHT text::HoriOrientation::CENTER text::HoriOrientation::LEFT
HORI_LEDT_AND text::HoriOrientation::RIGHT text::HoriOrientation::CENTER text::HoriOrientation::LEFT_AND
w < avail frame L frame L text::HoriOrientation::CENTER text::HoriOrientation::LEFT
frame L frame L text::HoriOrientation::CENTER text::HoriOrientation::NONE
xxx *) if for the table no size was specified, always
xxx text::HoriOrientation::FULL is taken
*/
void HTMLTable::MakeTable( SwTableBox *pBox, sal_uInt16 nAbsAvail,
sal_uInt16 nRelAvail, sal_uInt16 nAbsLeftSpace,
sal_uInt16 nAbsRightSpace, sal_uInt16 nInhAbsSpace )
{
OSL_ENSURE( m_nRows>0 && m_nCols>0 && m_nCurrentRow==m_nRows,
"Was CloseTable not called?" );
OSL_ENSURE(m_xLayoutInfo == nullptr, "Table already has layout info");
// Calculate borders of the table and all contained tables
SetBorders();
// Step 1: needed layout structures are created (including tables in tables)
CreateLayoutInfo();
if (!utl::ConfigManager::IsFuzzing()) // skip slow path for fuzzing
{
// Step 2: the minimal and maximal column width is calculated
// (including tables in tables). Since we don't have boxes yet,
// we'll work on the start nodes
m_xLayoutInfo->AutoLayoutPass1();
// Step 3: the actual column widths of this table are calculated (not tables in tables)
// We need this now to decide if we need filler cells
// (Pass1 was needed because of this as well)
m_xLayoutInfo->AutoLayoutPass2( nAbsAvail, nRelAvail, nAbsLeftSpace,
nAbsRightSpace, nInhAbsSpace );
}
// Set adjustment for the top table
sal_Int16 eHoriOri;
if (m_bForceFrame)
{
// The table should go in a text frame and it's narrower than the
// available space and not 100% wide. So it gets a border
eHoriOri = m_bPercentWidth ? text::HoriOrientation::FULL : text::HoriOrientation::LEFT;
}
else switch (m_eTableAdjust)
{
// The table either fits the page but shouldn't get a text frame,
// or it's wider than the page so it doesn't need a text frame
case SvxAdjust::Right:
// Don't be considerate of the right margin in right-adjusted tables
eHoriOri = text::HoriOrientation::RIGHT;
break;
case SvxAdjust::Center:
// Centred tables are not considerate of margins
eHoriOri = text::HoriOrientation::CENTER;
break;
case SvxAdjust::Left:
default:
// left-adjusted tables are only considerate of the left margin
eHoriOri = m_nLeftMargin ? text::HoriOrientation::LEFT_AND_WIDTH : text::HoriOrientation::LEFT;
break;
}
if (!m_pSwTable)
{
SAL_WARN("sw.html", "no table");
return;
}
// get the table format and adapt it
SwFrameFormat *pFrameFormat = m_pSwTable->GetFrameFormat();
pFrameFormat->SetFormatAttr( SwFormatHoriOrient(0, eHoriOri) );
if (text::HoriOrientation::LEFT_AND_WIDTH == eHoriOri)
{
OSL_ENSURE( m_nLeftMargin || m_nRightMargin,
"There are still leftovers from relative margins" );
// The right margin will be ignored anyway.
SvxLRSpaceItem aLRItem( m_pSwTable->GetFrameFormat()->GetLRSpace() );
aLRItem.SetLeft( m_nLeftMargin );
aLRItem.SetRight( m_nRightMargin );
pFrameFormat->SetFormatAttr( aLRItem );
}
if (m_bPercentWidth && text::HoriOrientation::FULL != eHoriOri)
{
pFrameFormat->LockModify();
SwFormatFrameSize aFrameSize( pFrameFormat->GetFrameSize() );
aFrameSize.SetWidthPercent( static_cast<sal_uInt8>(m_nWidth) );
pFrameFormat->SetFormatAttr( aFrameSize );
pFrameFormat->UnlockModify();
}
// get the default line and box format
// remember the first box and unlist it from the first row
SwTableLine *pLine1 = (m_pSwTable->GetTabLines())[0];
m_xBox1.reset((pLine1->GetTabBoxes())[0]);
pLine1->GetTabBoxes().erase(pLine1->GetTabBoxes().begin());
m_pLineFormat = static_cast<SwTableLineFormat*>(pLine1->GetFrameFormat());
m_pBoxFormat = static_cast<SwTableBoxFormat*>(m_xBox1->GetFrameFormat());
MakeTable_( pBox );
// Finally, we'll do a garbage collection for the top level table
if( 1==m_nRows && m_nHeight && 1==m_pSwTable->GetTabLines().size() )
{
// Set height of a one-row table as the minimum width of the row
// Was originally a fixed height, but that made problems
// and is not Netscape 4.0 compliant
m_nHeight = SwHTMLParser::ToTwips( m_nHeight );
if( m_nHeight < MINLAY )
m_nHeight = MINLAY;
(m_pSwTable->GetTabLines())[0]->ClaimFrameFormat();
(m_pSwTable->GetTabLines())[0]->GetFrameFormat()
->SetFormatAttr( SwFormatFrameSize( SwFrameSize::Minimum, 0, m_nHeight ) );
}
if( GetBGBrush() )
m_pSwTable->GetFrameFormat()->SetFormatAttr( *GetBGBrush() );
const_cast<SwTable *>(m_pSwTable)->SetRowsToRepeat( static_cast< sal_uInt16 >(m_nHeadlineRepeat) );
const_cast<SwTable *>(m_pSwTable)->GCLines();
bool bIsInFlyFrame = m_pContext && m_pContext->GetFrameFormat();
if( bIsInFlyFrame && !m_nWidth )
{
SvxAdjust eAdjust = GetTableAdjust(false);
if (eAdjust != SvxAdjust::Left &&
eAdjust != SvxAdjust::Right)
{
// If a table with a width attribute isn't flowed around left or right
// we'll stack it with a border of 100% width, so its size will
// be adapted. That text frame mustn't be modified
OSL_ENSURE( HasToFly(), "Why is the table in a frame?" );
sal_uInt32 nMin = m_xLayoutInfo->GetMin();
if( nMin > USHRT_MAX )
nMin = USHRT_MAX;
SwFormatFrameSize aFlyFrameSize( SwFrameSize::Variable, static_cast<SwTwips>(nMin), MINLAY );
aFlyFrameSize.SetWidthPercent( 100 );
m_pContext->GetFrameFormat()->SetFormatAttr( aFlyFrameSize );
bIsInFlyFrame = false;
}
else
{
// left or right adjusted table without width mustn't be adjusted in width
// as they would only shrink but never grow
m_xLayoutInfo->SetMustNotRecalc( true );
if( m_pContext->GetFrameFormat()->GetAnchor().GetContentAnchor()
->nNode.GetNode().FindTableNode() )
{
sal_uInt32 nMax = m_xLayoutInfo->GetMax();
if( nMax > USHRT_MAX )
nMax = USHRT_MAX;
SwFormatFrameSize aFlyFrameSize( SwFrameSize::Variable, static_cast<SwTwips>(nMax), MINLAY );
m_pContext->GetFrameFormat()->SetFormatAttr( aFlyFrameSize );
bIsInFlyFrame = false;
}
else
{
m_xLayoutInfo->SetMustNotResize( true );
}
}
}
m_xLayoutInfo->SetMayBeInFlyFrame( bIsInFlyFrame );
// Only tables with relative width or without width should be modified
m_xLayoutInfo->SetMustResize( m_bPercentWidth || !m_nWidth );
if (!pLine1->GetTabBoxes().empty())
m_xLayoutInfo->SetWidths();
else
SAL_WARN("sw.html", "no table box");
const_cast<SwTable *>(m_pSwTable)->SetHTMLTableLayout(m_xLayoutInfo);
if( !m_xResizeDrawObjects )
return;
sal_uInt16 nCount = m_xResizeDrawObjects->size();
for( sal_uInt16 i=0; i<nCount; i++ )
{
SdrObject *pObj = (*m_xResizeDrawObjects)[i];
sal_uInt16 nRow = (*m_xDrawObjectPercentWidths)[3*i];
sal_uInt16 nCol = (*m_xDrawObjectPercentWidths)[3*i+1];
sal_uInt8 nPercentWidth = static_cast<sal_uInt8>((*m_xDrawObjectPercentWidths)[3*i+2]);
SwHTMLTableLayoutCell *pLayoutCell =
m_xLayoutInfo->GetCell( nRow, nCol );
sal_uInt16 nColSpan = pLayoutCell->GetColSpan();
sal_uInt16 nWidth2, nDummy;
m_xLayoutInfo->GetAvail( nCol, nColSpan, nWidth2, nDummy );
nWidth2 = static_cast< sal_uInt16 >((static_cast<tools::Long>(m_nWidth) * nPercentWidth) / 100);
SwHTMLParser::ResizeDrawObject( pObj, nWidth2 );
}
}
void HTMLTable::SetTable( const SwStartNode *pStNd, std::unique_ptr<HTMLTableContext> pCntxt,
sal_uInt16 nLeft, sal_uInt16 nRight,
const SwTable *pSwTab, bool bFrcFrame )
{
m_pPrevStartNode = pStNd;
m_pSwTable = pSwTab;
m_pContext = std::move(pCntxt);
m_nLeftMargin = nLeft;
m_nRightMargin = nRight;
m_bForceFrame = bFrcFrame;
}
void HTMLTable::RegisterDrawObject( SdrObject *pObj, sal_uInt8 nPercentWidth )
{
if( !m_xResizeDrawObjects )
m_xResizeDrawObjects.emplace();
m_xResizeDrawObjects->push_back( pObj );
pObj->AddObjectUser(*this);
if( !m_xDrawObjectPercentWidths )
m_xDrawObjectPercentWidths.emplace();
m_xDrawObjectPercentWidths->push_back( m_nCurrentRow );
m_xDrawObjectPercentWidths->push_back( m_nCurrentColumn );
m_xDrawObjectPercentWidths->push_back( o3tl::narrowing<sal_uInt16>(nPercentWidth) );
}
void HTMLTable::MakeParentContents()
{
if( !GetContext() && !HasParentSection() )
{
SetParentContents(
m_pParser->InsertTableContents( m_bIsParentHead ) );
SetHasParentSection( true );
}
}
void HTMLTableContext::SavePREListingXMP( SwHTMLParser& rParser )
{
m_bRestartPRE = rParser.IsReadPRE();
m_bRestartXMP = rParser.IsReadXMP();
m_bRestartListing = rParser.IsReadListing();
rParser.FinishPREListingXMP();
}
void HTMLTableContext::RestorePREListingXMP( SwHTMLParser& rParser )
{
rParser.FinishPREListingXMP();
if( m_bRestartPRE )
rParser.StartPRE();
if( m_bRestartXMP )
rParser.StartXMP();
if( m_bRestartListing )
rParser.StartListing();
}
const SwStartNode *SwHTMLParser::InsertTableSection
( const SwStartNode *pPrevStNd )
{
OSL_ENSURE( pPrevStNd, "Start-Node is NULL" );
m_pCSS1Parser->SetTDTagStyles();
SwTextFormatColl *pColl = m_pCSS1Parser->GetTextCollFromPool( RES_POOLCOLL_TABLE );
const SwStartNode *pStNd;
if (m_xTable->m_bFirstCell )
{
SwNode *const pNd = & m_pPam->GetPoint()->nNode.GetNode();
pNd->GetTextNode()->ChgFormatColl( pColl );
pStNd = pNd->FindTableBoxStartNode();
m_xTable->m_bFirstCell = false;
}
else if (pPrevStNd)
{
const SwNode* pNd;
if( pPrevStNd->IsTableNode() )
pNd = pPrevStNd;
else
pNd = pPrevStNd->EndOfSectionNode();
SwNodeIndex nIdx( *pNd, 1 );
pStNd = m_xDoc->GetNodes().MakeTextSection( nIdx, SwTableBoxStartNode,
pColl );
m_xTable->IncBoxCount();
}
else
{
eState = SvParserState::Error;
return nullptr;
}
//Added defaults to CJK and CTL
SwContentNode *pCNd = m_xDoc->GetNodes()[pStNd->GetIndex()+1] ->GetContentNode();
SvxFontHeightItem aFontHeight( 40, 100, RES_CHRATR_FONTSIZE );
pCNd->SetAttr( aFontHeight );
SvxFontHeightItem aFontHeightCJK( 40, 100, RES_CHRATR_CJK_FONTSIZE );
pCNd->SetAttr( aFontHeightCJK );
SvxFontHeightItem aFontHeightCTL( 40, 100, RES_CHRATR_CTL_FONTSIZE );
pCNd->SetAttr( aFontHeightCTL );
return pStNd;
}
const SwStartNode *SwHTMLParser::InsertTableSection( sal_uInt16 nPoolId )
{
switch( nPoolId )
{
case RES_POOLCOLL_TABLE_HDLN:
m_pCSS1Parser->SetTHTagStyles();
break;
case RES_POOLCOLL_TABLE:
m_pCSS1Parser->SetTDTagStyles();
break;
}
SwTextFormatColl *pColl = m_pCSS1Parser->GetTextCollFromPool( nPoolId );
SwNode *const pNd = & m_pPam->GetPoint()->nNode.GetNode();
const SwStartNode *pStNd;
if (m_xTable->m_bFirstCell)
{
SwTextNode* pTextNd = pNd->GetTextNode();
if (!pTextNd)
{
eState = SvParserState::Error;
return nullptr;
}
pTextNd->ChgFormatColl(pColl);
m_xTable->m_bFirstCell = false;
pStNd = pNd->FindTableBoxStartNode();
}
else
{
SwTableNode *pTableNd = pNd->FindTableNode();
if (!pTableNd)
{
eState = SvParserState::Error;
return nullptr;
}
if( pTableNd->GetTable().GetHTMLTableLayout() )
{ // if there is already a HTMTableLayout, this table is already finished
// and we have to look for the right table in the environment
SwTableNode *pOutTable = pTableNd;
do {
pTableNd = pOutTable;
pOutTable = pOutTable->StartOfSectionNode()->FindTableNode();
} while( pOutTable && pTableNd->GetTable().GetHTMLTableLayout() );
}
SwNodeIndex aIdx( *pTableNd->EndOfSectionNode() );
pStNd = m_xDoc->GetNodes().MakeTextSection( aIdx, SwTableBoxStartNode,
pColl );
m_pPam->GetPoint()->nNode = pStNd->GetIndex() + 1;
SwTextNode *pTextNd = m_pPam->GetPoint()->nNode.GetNode().GetTextNode();
m_pPam->GetPoint()->nContent.Assign( pTextNd, 0 );
m_xTable->IncBoxCount();
}
if (!pStNd)
{
eState = SvParserState::Error;
}
return pStNd;
}
SwStartNode *SwHTMLParser::InsertTempTableCaptionSection()
{
SwTextFormatColl *pColl = m_pCSS1Parser->GetTextCollFromPool( RES_POOLCOLL_TEXT );
SwNodeIndex& rIdx = m_pPam->GetPoint()->nNode;
rIdx = m_xDoc->GetNodes().GetEndOfExtras();
SwStartNode *pStNd = m_xDoc->GetNodes().MakeTextSection( rIdx,
SwNormalStartNode, pColl );
rIdx = pStNd->GetIndex() + 1;
m_pPam->GetPoint()->nContent.Assign( rIdx.GetNode().GetTextNode(), 0 );
return pStNd;
}
sal_Int32 SwHTMLParser::StripTrailingLF()
{
sal_Int32 nStripped = 0;
if (IsReqIF())
{
// One <br> is exactly one line-break in the ReqIF case.
return nStripped;
}
const sal_Int32 nLen = m_pPam->GetPoint()->nContent.GetIndex();
if( nLen )
{
SwTextNode* pTextNd = m_pPam->GetPoint()->nNode.GetNode().GetTextNode();
// careful, when comments aren't ignored!!!
if( pTextNd )
{
sal_Int32 nPos = nLen;
sal_Int32 nLFCount = 0;
while (nPos && ('\x0a' == pTextNd->GetText()[--nPos]))
nLFCount++;
if( nLFCount )
{
if( nLFCount > 2 )
{
// On Netscape, a paragraph end matches 2 LFs
// (1 is just a newline, 2 creates a blank line)
// We already have this space with the lower paragraph gap
// If there's a paragraph after the <BR>, we take the maximum
// of the gap that results from the <BR> and <P>
// That's why we need to delete 2 respectively all if less than 2
nLFCount = 2;
}
nPos = nLen - nLFCount;
SwIndex nIdx( pTextNd, nPos );
pTextNd->EraseText( nIdx, nLFCount );
nStripped = nLFCount;
}
}
}
return nStripped;
}
SvxBrushItem* SwHTMLParser::CreateBrushItem( const Color *pColor,
const OUString& rImageURL,
const OUString& rStyle,
const OUString& rId,
const OUString& rClass )
{
SvxBrushItem *pBrushItem = nullptr;
if( !rStyle.isEmpty() || !rId.isEmpty() || !rClass.isEmpty() )
{
SfxItemSetFixed<RES_BACKGROUND, RES_BACKGROUND> aItemSet( m_xDoc->GetAttrPool() );
SvxCSS1PropertyInfo aPropInfo;
if( !rClass.isEmpty() )
{
OUString aClass( rClass );
SwCSS1Parser::GetScriptFromClass( aClass );
const SvxCSS1MapEntry *pClass = m_pCSS1Parser->GetClass( aClass );
if( pClass )
aItemSet.Put( pClass->GetItemSet() );
}
if( !rId.isEmpty() )
{
const SvxCSS1MapEntry *pId = m_pCSS1Parser->GetId( rId );
if( pId )
aItemSet.Put( pId->GetItemSet() );
}
m_pCSS1Parser->ParseStyleOption( rStyle, aItemSet, aPropInfo );
if( const SvxBrushItem *pItem = aItemSet.GetItemIfSet( RES_BACKGROUND, false ) )
{
pBrushItem = new SvxBrushItem( *pItem );
}
}
if( !pBrushItem && (pColor || !rImageURL.isEmpty()) )
{
pBrushItem = new SvxBrushItem(RES_BACKGROUND);
if( pColor )
pBrushItem->SetColor(*pColor);
if( !rImageURL.isEmpty() )
{
pBrushItem->SetGraphicLink( URIHelper::SmartRel2Abs( INetURLObject(m_sBaseURL), rImageURL, Link<OUString *, bool>(), false) );
pBrushItem->SetGraphicPos( GPOS_TILED );
}
}
return pBrushItem;
}
class SectionSaveStruct : public SwPendingData
{
sal_uInt16 m_nBaseFontStMinSave, m_nFontStMinSave, m_nFontStHeadStartSave;
sal_uInt16 m_nDefListDeepSave;
size_t m_nContextStMinSave;
size_t m_nContextStAttrMinSave;
public:
std::shared_ptr<HTMLTable> m_xTable;
explicit SectionSaveStruct( SwHTMLParser& rParser );
#if OSL_DEBUG_LEVEL > 0
size_t GetContextStAttrMin() const { return m_nContextStAttrMinSave; }
#endif
void Restore( SwHTMLParser& rParser );
};
SectionSaveStruct::SectionSaveStruct( SwHTMLParser& rParser ) :
m_nBaseFontStMinSave(rParser.m_nBaseFontStMin),
m_nFontStMinSave(rParser.m_nFontStMin),
m_nFontStHeadStartSave(rParser.m_nFontStHeadStart),
m_nDefListDeepSave(rParser.m_nDefListDeep),
m_nContextStMinSave(rParser.m_nContextStMin),
m_nContextStAttrMinSave(rParser.m_nContextStAttrMin)
{
// Freeze font stacks
rParser.m_nBaseFontStMin = rParser.m_aBaseFontStack.size();
rParser.m_nFontStMin = rParser.m_aFontStack.size();
// Freeze context stack
rParser.m_nContextStMin = rParser.m_aContexts.size();
rParser.m_nContextStAttrMin = rParser.m_nContextStMin;
// And remember a few counters
rParser.m_nDefListDeep = 0;
}
void SectionSaveStruct::Restore( SwHTMLParser& rParser )
{
// Unfreeze font stacks
sal_uInt16 nMin = rParser.m_nBaseFontStMin;
if( rParser.m_aBaseFontStack.size() > nMin )
rParser.m_aBaseFontStack.erase( rParser.m_aBaseFontStack.begin() + nMin,
rParser.m_aBaseFontStack.end() );
rParser.m_nBaseFontStMin = m_nBaseFontStMinSave;
nMin = rParser.m_nFontStMin;
if( rParser.m_aFontStack.size() > nMin )
rParser.m_aFontStack.erase( rParser.m_aFontStack.begin() + nMin,
rParser.m_aFontStack.end() );
rParser.m_nFontStMin = m_nFontStMinSave;
rParser.m_nFontStHeadStart = m_nFontStHeadStartSave;
OSL_ENSURE( rParser.m_aContexts.size() == rParser.m_nContextStMin &&
rParser.m_aContexts.size() == rParser.m_nContextStAttrMin,
"The Context Stack was not cleaned up" );
rParser.m_nContextStMin = m_nContextStMinSave;
rParser.m_nContextStAttrMin = m_nContextStAttrMinSave;
// Reconstruct a few counters
rParser.m_nDefListDeep = m_nDefListDeepSave;
// Reset a few flags
rParser.m_bNoParSpace = false;
rParser.m_nOpenParaToken = HtmlTokenId::NONE;
rParser.m_aParaAttrs.clear();
}
class CellSaveStruct : public SectionSaveStruct
{
OUString m_aStyle, m_aId, m_aClass;
OUString m_aBGImage;
Color m_aBGColor;
std::shared_ptr<SvxBoxItem> m_xBoxItem;
std::shared_ptr<HTMLTableCnts> m_xCnts; // List of all contents
HTMLTableCnts* m_pCurrCnts; // current content or 0
std::unique_ptr<SwNodeIndex> m_pNoBreakEndNodeIndex; // Paragraph index of a <NOBR>
double m_nValue;
sal_uInt32 m_nNumFormat;
sal_uInt16 m_nRowSpan, m_nColSpan, m_nWidth, m_nHeight;
sal_Int32 m_nNoBreakEndContentPos; // Character index of a <NOBR>
sal_Int16 m_eVertOri;
bool m_bHead : 1;
bool m_bPercentWidth : 1;
bool m_bHasNumFormat : 1;
bool m_bHasValue : 1;
bool m_bBGColor : 1;
bool m_bNoWrap : 1; // NOWRAP option
bool m_bNoBreak : 1; // NOBREAK tag
public:
CellSaveStruct( SwHTMLParser& rParser, HTMLTable const *pCurTable, bool bHd,
bool bReadOpt );
void AddContents( std::unique_ptr<HTMLTableCnts> pNewCnts );
bool HasFirstContents() const { return bool(m_xCnts); }
void ClearIsInSection() { m_pCurrCnts = nullptr; }
bool IsInSection() const { return m_pCurrCnts!=nullptr; }
void InsertCell( SwHTMLParser& rParser, HTMLTable *pCurTable );
bool IsHeaderCell() const { return m_bHead; }
void StartNoBreak( const SwPosition& rPos );
void EndNoBreak( const SwPosition& rPos );
void CheckNoBreak( const SwPosition& rPos );
};
CellSaveStruct::CellSaveStruct( SwHTMLParser& rParser, HTMLTable const *pCurTable,
bool bHd, bool bReadOpt ) :
SectionSaveStruct( rParser ),
m_pCurrCnts( nullptr ),
m_nValue( 0.0 ),
m_nNumFormat( 0 ),
m_nRowSpan( 1 ),
m_nColSpan( 1 ),
m_nWidth( 0 ),
m_nHeight( 0 ),
m_nNoBreakEndContentPos( 0 ),
m_eVertOri( pCurTable->GetInheritedVertOri() ),
m_bHead( bHd ),
m_bPercentWidth( false ),
m_bHasNumFormat( false ),
m_bHasValue( false ),
m_bBGColor( false ),
m_bNoWrap( false ),
m_bNoBreak( false )
{
OUString aNumFormat, aValue, aDir, aLang;
SvxAdjust eAdjust( pCurTable->GetInheritedAdjust() );
if( bReadOpt )
{
const HTMLOptions& rOptions = rParser.GetOptions();
for (size_t i = rOptions.size(); i; )
{
const HTMLOption& rOption = rOptions[--i];
switch( rOption.GetToken() )
{
case HtmlOptionId::ID:
m_aId = rOption.GetString();
break;
case HtmlOptionId::COLSPAN:
m_nColSpan = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
if (m_nColSpan > 256)
{
SAL_INFO("sw.html", "ignoring huge COLSPAN " << m_nColSpan);
m_nColSpan = 1;
}
break;
case HtmlOptionId::ROWSPAN:
m_nRowSpan = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
if (m_nRowSpan > 8192 || (m_nRowSpan > 256 && utl::ConfigManager::IsFuzzing()))
{
SAL_INFO("sw.html", "ignoring huge ROWSPAN " << m_nRowSpan);
m_nRowSpan = 1;
}
break;
case HtmlOptionId::ALIGN:
eAdjust = rOption.GetEnum( aHTMLPAlignTable, eAdjust );
break;
case HtmlOptionId::VALIGN:
m_eVertOri = rOption.GetEnum( aHTMLTableVAlignTable, m_eVertOri );
break;
case HtmlOptionId::WIDTH:
m_nWidth = o3tl::narrowing<sal_uInt16>(rOption.GetNumber()); // Just for Netscape
m_bPercentWidth = (rOption.GetString().indexOf('%') != -1);
if( m_bPercentWidth && m_nWidth>100 )
m_nWidth = 100;
break;
case HtmlOptionId::HEIGHT:
m_nHeight = o3tl::narrowing<sal_uInt16>(rOption.GetNumber()); // Just for Netscape
if( rOption.GetString().indexOf('%') != -1)
m_nHeight = 0; // don't consider % attributes
break;
case HtmlOptionId::BGCOLOR:
// Ignore empty BGCOLOR on <TABLE>, <TR> and <TD>/<TH> like Netscape
// *really* not on other tags
if( !rOption.GetString().isEmpty() )
{
rOption.GetColor( m_aBGColor );
m_bBGColor = true;
}
break;
case HtmlOptionId::BACKGROUND:
m_aBGImage = rOption.GetString();
break;
case HtmlOptionId::STYLE:
m_aStyle = rOption.GetString();
break;
case HtmlOptionId::CLASS:
m_aClass = rOption.GetString();
break;
case HtmlOptionId::LANG:
aLang = rOption.GetString();
break;
case HtmlOptionId::DIR:
aDir = rOption.GetString();
break;
case HtmlOptionId::SDNUM:
aNumFormat = rOption.GetString();
m_bHasNumFormat = true;
break;
case HtmlOptionId::SDVAL:
m_bHasValue = true;
aValue = rOption.GetString();
break;
case HtmlOptionId::NOWRAP:
m_bNoWrap = true;
break;
default: break;
}
}
if( !m_aId.isEmpty() )
rParser.InsertBookmark( m_aId );
}
if( m_bHasNumFormat )
{
LanguageType eLang;
m_nValue = SfxHTMLParser::GetTableDataOptionsValNum(
m_nNumFormat, eLang, aValue, aNumFormat,
*rParser.m_xDoc->GetNumberFormatter() );
}
// Create a new context but don't anchor the drawing::Alignment attribute there,
// since there's no section yet
HtmlTokenId nToken;
sal_uInt16 nColl;
if( m_bHead )
{
nToken = HtmlTokenId::TABLEHEADER_ON;
nColl = RES_POOLCOLL_TABLE_HDLN;
}
else
{
nToken = HtmlTokenId::TABLEDATA_ON;
nColl = RES_POOLCOLL_TABLE;
}
std::unique_ptr<HTMLAttrContext> xCntxt(new HTMLAttrContext(nToken, nColl, OUString(), true));
if( SvxAdjust::End != eAdjust )
rParser.InsertAttr(&rParser.m_xAttrTab->pAdjust, SvxAdjustItem(eAdjust, RES_PARATR_ADJUST),
xCntxt.get());
if( SwHTMLParser::HasStyleOptions( m_aStyle, m_aId, m_aClass, &aLang, &aDir ) )
{
SfxItemSet aItemSet( rParser.m_xDoc->GetAttrPool(),
rParser.m_pCSS1Parser->GetWhichMap() );
SvxCSS1PropertyInfo aPropInfo;
if( rParser.ParseStyleOptions( m_aStyle, m_aId, m_aClass, aItemSet,
aPropInfo, &aLang, &aDir ) )
{
if (SvxBoxItem const* pItem = aItemSet.GetItemIfSet(RES_BOX, false))
{ // fdo#41796: steal box item to set it in FixFrameFormat later!
m_xBoxItem.reset(pItem->Clone());
aItemSet.ClearItem(RES_BOX);
}
rParser.InsertAttrs(aItemSet, aPropInfo, xCntxt.get());
}
}
rParser.SplitPREListingXMP(xCntxt.get());
rParser.PushContext(xCntxt);
}
void CellSaveStruct::AddContents( std::unique_ptr<HTMLTableCnts> pNewCnts )
{
m_pCurrCnts = pNewCnts.get();
if (m_xCnts)
m_xCnts->Add( std::move(pNewCnts) );
else
m_xCnts = std::move(pNewCnts);
}
void CellSaveStruct::InsertCell( SwHTMLParser& rParser,
HTMLTable *pCurTable )
{
#if OSL_DEBUG_LEVEL > 0
// The attributes need to have been removed when tidying up the context stack,
// Otherwise something's wrong. Let's check that...
// MIB 8.1.98: When attributes were opened outside of a cell,
// they're still in the attribute table and will only be deleted at the end
// through the CleanContext calls in BuildTable. We don't check that there
// so that we get no assert [violations, by translator]
// We can see this on nContextStAttrMin: the remembered value of nContextStAttrMinSave
// is the value that nContextStAttrMin had at the start of the table. And the
// current value of nContextStAttrMin corresponds to the number of contexts
// we found at the start of the cell. If the values differ, contexts
// were created and we don't check anything.
if( rParser.m_nContextStAttrMin == GetContextStAttrMin() )
{
HTMLAttr** pTable = reinterpret_cast<HTMLAttr**>(rParser.m_xAttrTab.get());
for( auto nCnt = sizeof( HTMLAttrTable ) / sizeof( HTMLAttr* );
nCnt--; ++pTable )
{
OSL_ENSURE( !*pTable, "The attribute table isn't empty" );
}
}
#endif
// we need to add the cell on the current position
std::shared_ptr<SvxBrushItem> xBrushItem(
rParser.CreateBrushItem(m_bBGColor ? &m_aBGColor : nullptr, m_aBGImage,
m_aStyle, m_aId, m_aClass));
pCurTable->InsertCell( m_xCnts, m_nRowSpan, m_nColSpan, m_nWidth,
m_bPercentWidth, m_nHeight, m_eVertOri, xBrushItem, m_xBoxItem,
m_bHasNumFormat, m_nNumFormat, m_bHasValue, m_nValue,
m_bNoWrap );
Restore( rParser );
}
void CellSaveStruct::StartNoBreak( const SwPosition& rPos )
{
if( !m_xCnts ||
(!rPos.nContent.GetIndex() && m_pCurrCnts == m_xCnts.get() &&
m_xCnts->GetStartNode() &&
m_xCnts->GetStartNode()->GetIndex() + 1 ==
rPos.nNode.GetIndex()) )
{
m_bNoBreak = true;
}
}
void CellSaveStruct::EndNoBreak( const SwPosition& rPos )
{
if( m_bNoBreak )
{
m_pNoBreakEndNodeIndex.reset( new SwNodeIndex( rPos.nNode ) );
m_nNoBreakEndContentPos = rPos.nContent.GetIndex();
m_bNoBreak = false;
}
}
void CellSaveStruct::CheckNoBreak( const SwPosition& rPos )
{
if (!(m_xCnts && m_pCurrCnts == m_xCnts.get()))
return;
if( m_bNoBreak )
{
// <NOBR> wasn't closed
m_xCnts->SetNoBreak();
}
else if( m_pNoBreakEndNodeIndex &&
m_pNoBreakEndNodeIndex->GetIndex() == rPos.nNode.GetIndex() )
{
if( m_nNoBreakEndContentPos == rPos.nContent.GetIndex() )
{
// <NOBR> was closed immediately before the cell end
m_xCnts->SetNoBreak();
}
else if( m_nNoBreakEndContentPos + 1 == rPos.nContent.GetIndex() )
{
SwTextNode const*const pTextNd(rPos.nNode.GetNode().GetTextNode());
if( pTextNd )
{
sal_Unicode const cLast =
pTextNd->GetText()[m_nNoBreakEndContentPos];
if( ' '==cLast || '\x0a'==cLast )
{
// There's just a blank or a newline between the <NOBR> and the cell end
m_xCnts->SetNoBreak();
}
}
}
}
}
std::unique_ptr<HTMLTableCnts> SwHTMLParser::InsertTableContents(
bool bHead )
{
// create a new section, the PaM is gonna be there
const SwStartNode *pStNd =
InsertTableSection( static_cast< sal_uInt16 >(bHead ? RES_POOLCOLL_TABLE_HDLN
: RES_POOLCOLL_TABLE) );
if( GetNumInfo().GetNumRule() )
{
// Set the first paragraph to non-enumerated
sal_uInt8 nLvl = GetNumInfo().GetLevel();
SetNodeNum( nLvl );
}
// Reset attributation start
const SwNodeIndex& rSttPara = m_pPam->GetPoint()->nNode;
sal_Int32 nSttCnt = m_pPam->GetPoint()->nContent.GetIndex();
HTMLAttr** pHTMLAttributes = reinterpret_cast<HTMLAttr**>(m_xAttrTab.get());
for (sal_uInt16 nCnt = sizeof(HTMLAttrTable) / sizeof(HTMLAttr*); nCnt--; ++pHTMLAttributes)
{
HTMLAttr *pAttr = *pHTMLAttributes;
while( pAttr )
{
OSL_ENSURE( !pAttr->GetPrev(), "Attribute has previous list" );
pAttr->m_nStartPara = rSttPara;
pAttr->m_nEndPara = rSttPara;
pAttr->m_nStartContent = nSttCnt;
pAttr->m_nEndContent = nSttCnt;
pAttr = pAttr->GetNext();
}
}
return std::make_unique<HTMLTableCnts>( pStNd );
}
sal_uInt16 SwHTMLParser::IncGrfsThatResizeTable()
{
return m_xTable ? m_xTable->IncGrfsThatResize() : 0;
}
void SwHTMLParser::RegisterDrawObjectToTable( HTMLTable *pCurTable,
SdrObject *pObj, sal_uInt8 nPercentWidth )
{
pCurTable->RegisterDrawObject( pObj, nPercentWidth );
}
void SwHTMLParser::BuildTableCell( HTMLTable *pCurTable, bool bReadOptions,
bool bHead )
{
if( !IsParserWorking() && m_vPendingStack.empty() )
return;
::comphelper::FlagRestorationGuard g(m_isInTableStructure, false);
std::unique_ptr<CellSaveStruct> xSaveStruct;
HtmlTokenId nToken = HtmlTokenId::NONE;
bool bPending = false;
if( !m_vPendingStack.empty() )
{
xSaveStruct.reset(static_cast<CellSaveStruct*>(m_vPendingStack.back().pData.release()));
m_vPendingStack.pop_back();
nToken = !m_vPendingStack.empty() ? m_vPendingStack.back().nToken : GetSaveToken();
bPending = SvParserState::Error == eState && !m_vPendingStack.empty();
SaveState( nToken );
}
else
{
// <TH> resp. <TD> were already read
if (m_xTable->IsOverflowing())
{
SaveState( HtmlTokenId::NONE );
return;
}
if( !pCurTable->GetContext() )
{
bool bTopTable = m_xTable.get() == pCurTable;
// the table has no content yet, this means the actual table needs
// to be created first
SfxItemSetFixed<
RES_PARATR_SPLIT, RES_PARATR_SPLIT,
RES_PAGEDESC, RES_PAGEDESC,
RES_BREAK, RES_BREAK,
RES_BACKGROUND, RES_BACKGROUND,
RES_KEEP, RES_KEEP,
RES_LAYOUT_SPLIT, RES_LAYOUT_SPLIT,
RES_FRAMEDIR, RES_FRAMEDIR
> aItemSet( m_xDoc->GetAttrPool() );
SvxCSS1PropertyInfo aPropInfo;
bool bStyleParsed = ParseStyleOptions( pCurTable->GetStyle(),
pCurTable->GetId(),
pCurTable->GetClass(),
aItemSet, aPropInfo,
nullptr, &pCurTable->GetDirection() );
if( bStyleParsed )
{
if( const SvxBrushItem* pItem = aItemSet.GetItemIfSet(
RES_BACKGROUND, false ) )
{
pCurTable->SetBGBrush( *pItem );
aItemSet.ClearItem( RES_BACKGROUND );
}
if( const SvxFormatSplitItem* pSplitItem = aItemSet.GetItemIfSet(
RES_PARATR_SPLIT, false ) )
{
aItemSet.Put(
SwFormatLayoutSplit( pSplitItem->GetValue() ) );
aItemSet.ClearItem( RES_PARATR_SPLIT );
}
}
sal_uInt16 nLeftSpace = 0;
sal_uInt16 nRightSpace = 0;
short nIndent;
GetMarginsFromContextWithNumberBullet( nLeftSpace, nRightSpace, nIndent );
// save the current position we'll get back to some time
SwPosition *pSavePos = nullptr;
bool bForceFrame = false;
bool bAppended = false;
bool bParentLFStripped = false;
if( bTopTable )
{
SvxAdjust eTableAdjust = m_xTable->GetTableAdjust(false);
// If the table is left or right adjusted or should be in a text frame,
// it'll get one
bForceFrame = eTableAdjust == SvxAdjust::Left ||
eTableAdjust == SvxAdjust::Right ||
pCurTable->HasToFly();
// The table either shouldn't get in a text frame and isn't in one
// (it gets simulated through cells),
// or there's already content at that position
OSL_ENSURE( !bForceFrame || pCurTable->HasParentSection(),
"table in frame has no parent!" );
bool bAppend = false;
if( bForceFrame )
{
// If the table gets in a border, we only need to open a new
//paragraph if the paragraph has text frames that don't fly
bAppend = HasCurrentParaFlys(true);
}
else
{
// Otherwise, we need to open a new paragraph if the paragraph
// is empty or contains text frames or bookmarks
bAppend =
m_pPam->GetPoint()->nContent.GetIndex() ||
HasCurrentParaFlys() ||
HasCurrentParaBookmarks();
}
if( bAppend )
{
if( !m_pPam->GetPoint()->nContent.GetIndex() )
{
//Set default to CJK and CTL
m_xDoc->SetTextFormatColl( *m_pPam,
m_pCSS1Parser->GetTextCollFromPool(RES_POOLCOLL_STANDARD) );
SvxFontHeightItem aFontHeight( 40, 100, RES_CHRATR_FONTSIZE );
HTMLAttr* pTmp =
new HTMLAttr( *m_pPam->GetPoint(), aFontHeight, nullptr, std::shared_ptr<HTMLAttrTable>() );
m_aSetAttrTab.push_back( pTmp );
SvxFontHeightItem aFontHeightCJK( 40, 100, RES_CHRATR_CJK_FONTSIZE );
pTmp =
new HTMLAttr( *m_pPam->GetPoint(), aFontHeightCJK, nullptr, std::shared_ptr<HTMLAttrTable>() );
m_aSetAttrTab.push_back( pTmp );
SvxFontHeightItem aFontHeightCTL( 40, 100, RES_CHRATR_CTL_FONTSIZE );
pTmp =
new HTMLAttr( *m_pPam->GetPoint(), aFontHeightCTL, nullptr, std::shared_ptr<HTMLAttrTable>() );
m_aSetAttrTab.push_back( pTmp );
pTmp = new HTMLAttr( *m_pPam->GetPoint(),
SvxULSpaceItem( 0, 0, RES_UL_SPACE ), nullptr, std::shared_ptr<HTMLAttrTable>() );
m_aSetAttrTab.push_front( pTmp ); // Position 0, since
// something can be set by
// the table end before
}
AppendTextNode( AM_NOSPACE );
bAppended = true;
}
else if( !m_aParaAttrs.empty() )
{
if( !bForceFrame )
{
// The paragraph will be moved right behind the table.
// That's why we remove all hard attributes of that paragraph
for(HTMLAttr* i : m_aParaAttrs)
i->Invalidate();
}
m_aParaAttrs.clear();
}
pSavePos = new SwPosition( *m_pPam->GetPoint() );
}
else if( pCurTable->HasParentSection() )
{
bParentLFStripped = StripTrailingLF() > 0;
// Close paragraph resp. headers
m_nOpenParaToken = HtmlTokenId::NONE;
m_nFontStHeadStart = m_nFontStMin;
// The hard attributes on that paragraph are never gonna be invalid anymore
m_aParaAttrs.clear();
}
// create a table context
std::unique_ptr<HTMLTableContext> pTCntxt(
new HTMLTableContext( pSavePos, m_nContextStMin,
m_nContextStAttrMin ) );
// end all open attributes and open them again behind the table
std::optional<std::deque<std::unique_ptr<HTMLAttr>>> pPostIts;
if( !bForceFrame && (bTopTable || pCurTable->HasParentSection()) )
{
SplitAttrTab(pTCntxt->m_xAttrTab, bTopTable);
// If we reuse an already existing paragraph, we can't add
// PostIts since the paragraph gets behind that table.
// They're gonna be moved into the first paragraph of the table
// If we have tables in tables, we also can't add PostIts to a
// still empty paragraph, since it's not gonna be deleted that way
if( (bTopTable && !bAppended) ||
(!bTopTable && !bParentLFStripped &&
!m_pPam->GetPoint()->nContent.GetIndex()) )
pPostIts.emplace();
SetAttr( bTopTable, bTopTable, pPostIts ? &*pPostIts : nullptr );
}
else
{
SaveAttrTab(pTCntxt->m_xAttrTab);
if( bTopTable && !bAppended )
{
pPostIts.emplace();
SetAttr( true, true, &*pPostIts );
}
}
m_bNoParSpace = false;
// Save current numbering and turn it off
pTCntxt->SetNumInfo( GetNumInfo() );
GetNumInfo().Clear();
pTCntxt->SavePREListingXMP( *this );
if( bTopTable )
{
if( bForceFrame )
{
// the table should be put in a text frame
SfxItemSetFixed<RES_FRMATR_BEGIN, RES_FRMATR_END-1>
aFrameSet( m_xDoc->GetAttrPool() );
if( !pCurTable->IsNewDoc() )
Reader::ResetFrameFormatAttrs( aFrameSet );
css::text::WrapTextMode eSurround = css::text::WrapTextMode_NONE;
sal_Int16 eHori;
switch( pCurTable->GetTableAdjust(true) )
{
case SvxAdjust::Right:
eHori = text::HoriOrientation::RIGHT;
eSurround = css::text::WrapTextMode_LEFT;
break;
case SvxAdjust::Center:
eHori = text::HoriOrientation::CENTER;
break;
case SvxAdjust::Left:
eSurround = css::text::WrapTextMode_RIGHT;
[[fallthrough]];
default:
eHori = text::HoriOrientation::LEFT;
break;
}
SetAnchorAndAdjustment( text::VertOrientation::NONE, eHori, aFrameSet,
true );
aFrameSet.Put( SwFormatSurround(eSurround) );
constexpr tools::Long constTwips_100mm = o3tl::convert(tools::Long(100), o3tl::Length::mm, o3tl::Length::twip);
SwFormatFrameSize aFrameSize( SwFrameSize::Variable, constTwips_100mm, MINLAY );
aFrameSize.SetWidthPercent( 100 );
aFrameSet.Put( aFrameSize );
sal_uInt16 nSpace = pCurTable->GetHSpace();
if( nSpace )
aFrameSet.Put( SvxLRSpaceItem(nSpace,nSpace, 0, 0, RES_LR_SPACE) );
nSpace = pCurTable->GetVSpace();
if( nSpace )
aFrameSet.Put( SvxULSpaceItem(nSpace,nSpace, RES_UL_SPACE) );
RndStdIds eAnchorId = aFrameSet.
Get( RES_ANCHOR ).
GetAnchorId();
SwFrameFormat *pFrameFormat = m_xDoc->MakeFlySection(
eAnchorId, m_pPam->GetPoint(), &aFrameSet );
pTCntxt->SetFrameFormat( pFrameFormat );
const SwFormatContent& rFlyContent = pFrameFormat->GetContent();
m_pPam->GetPoint()->nNode = *rFlyContent.GetContentIdx();
SwContentNode *pCNd =
m_xDoc->GetNodes().GoNext( &(m_pPam->GetPoint()->nNode) );
m_pPam->GetPoint()->nContent.Assign( pCNd, 0 );
}
// create a SwTable with a box and set the PaM to the content of
// the box section (the adjustment parameter is a dummy for now
// and will be corrected later)
OSL_ENSURE( !m_pPam->GetPoint()->nContent.GetIndex(),
"The paragraph after the table is not empty!" );
const SwTable* pSwTable = m_xDoc->InsertTable(
SwInsertTableOptions( SwInsertTableFlags::HeadlineNoBorder, 1 ),
*m_pPam->GetPoint(), 1, 1, text::HoriOrientation::LEFT );
SwFrameFormat *pFrameFormat = pSwTable ? pSwTable->GetFrameFormat() : nullptr;
if( bForceFrame )
{
SwNodeIndex aDstIdx( m_pPam->GetPoint()->nNode );
m_pPam->Move( fnMoveBackward );
m_xDoc->GetNodes().Delete( aDstIdx );
}
else
{
if (bStyleParsed && pFrameFormat)
{
m_pCSS1Parser->SetFormatBreak( aItemSet, aPropInfo );
pFrameFormat->SetFormatAttr( aItemSet );
}
m_pPam->Move( fnMoveBackward );
}
SwNode const*const pNd = & m_pPam->GetPoint()->nNode.GetNode();
SwTextNode *const pOldTextNd = (!bAppended && !bForceFrame) ?
pSavePos->nNode.GetNode().GetTextNode() : nullptr;
if (pFrameFormat && pOldTextNd)
{
const SwFormatPageDesc* pPageDescItem = pOldTextNd->GetSwAttrSet()
.GetItemIfSet( RES_PAGEDESC, false );
if( pPageDescItem && pPageDescItem->GetPageDesc() )
{
pFrameFormat->SetFormatAttr( *pPageDescItem );
pOldTextNd->ResetAttr( RES_PAGEDESC );
}
if( const SvxFormatBreakItem* pBreakItem = pOldTextNd->GetSwAttrSet()
.GetItemIfSet( RES_BREAK ) )
{
switch( pBreakItem->GetBreak() )
{
case SvxBreak::PageBefore:
case SvxBreak::PageAfter:
case SvxBreak::PageBoth:
pFrameFormat->SetFormatAttr( *pBreakItem );
pOldTextNd->ResetAttr( RES_BREAK );
break;
default:
break;
}
}
}
if( !bAppended && pPostIts )
{
// set still-existing PostIts to the first paragraph of the table
InsertAttrs( std::move(*pPostIts) );
pPostIts.reset();
}
pTCntxt->SetTableNode( const_cast<SwTableNode *>(pNd->FindTableNode()) );
auto pTableNode = pTCntxt->GetTableNode();
pCurTable->SetTable( pTableNode, std::move(pTCntxt),
nLeftSpace, nRightSpace,
pSwTable, bForceFrame );
OSL_ENSURE( !pPostIts, "unused PostIts" );
}
else
{
// still open sections need to be deleted
if( EndSections( bParentLFStripped ) )
bParentLFStripped = false;
if( pCurTable->HasParentSection() )
{
// after that, we remove a possibly redundant empty paragraph,
// but only if it was empty before we stripped the LFs
if( !bParentLFStripped )
StripTrailingPara();
if( pPostIts )
{
// move still existing PostIts to the end of the current paragraph
InsertAttrs( std::move(*pPostIts) );
pPostIts.reset();
}
}
SwNode const*const pNd = & m_pPam->GetPoint()->nNode.GetNode();
const SwStartNode *pStNd = (m_xTable->m_bFirstCell ? pNd->FindTableNode()
: pNd->FindTableBoxStartNode() );
pCurTable->SetTable( pStNd, std::move(pTCntxt), nLeftSpace, nRightSpace );
}
// Freeze the context stack, since there could be attributes set
// outside of cells. Can't happen earlier, since there may be
// searches in the stack
m_nContextStMin = m_aContexts.size();
m_nContextStAttrMin = m_nContextStMin;
}
xSaveStruct.reset(new CellSaveStruct(*this, pCurTable, bHead, bReadOptions));
// If the first GetNextToken() doesn't succeed (pending input), must re-read from the beginning.
SaveState( HtmlTokenId::NONE );
}
if( nToken == HtmlTokenId::NONE )
nToken = GetNextToken(); // Token after <TABLE>
bool bDone = false;
while( (IsParserWorking() && !bDone) || bPending )
{
SaveState( nToken );
nToken = FilterToken( nToken );
OSL_ENSURE( !m_vPendingStack.empty() || !m_bCallNextToken || xSaveStruct->IsInSection(),
"Where is the section??" );
if( m_vPendingStack.empty() && m_bCallNextToken && xSaveStruct->IsInSection() )
{
// Call NextToken directly (e.g. ignore the content of floating frames or applets)
NextToken( nToken );
}
else switch( nToken )
{
case HtmlTokenId::TABLEHEADER_ON:
case HtmlTokenId::TABLEDATA_ON:
case HtmlTokenId::TABLEROW_ON:
case HtmlTokenId::TABLEROW_OFF:
case HtmlTokenId::THEAD_ON:
case HtmlTokenId::THEAD_OFF:
case HtmlTokenId::TFOOT_ON:
case HtmlTokenId::TFOOT_OFF:
case HtmlTokenId::TBODY_ON:
case HtmlTokenId::TBODY_OFF:
case HtmlTokenId::TABLE_OFF:
SkipToken();
[[fallthrough]];
case HtmlTokenId::TABLEHEADER_OFF:
case HtmlTokenId::TABLEDATA_OFF:
bDone = true;
break;
case HtmlTokenId::TABLE_ON:
{
bool bHasToFly = false;
SvxAdjust eTabAdjust = SvxAdjust::End;
if( m_vPendingStack.empty() )
{
// only if we create a new table, but not if we're still
// reading in the table after a Pending
xSaveStruct->m_xTable = m_xTable;
// HACK: create a section for a table that goes in a text frame
if( !xSaveStruct->IsInSection() )
{
// The loop needs to be forward, since the
// first option always wins
bool bNeedsSection = false;
const HTMLOptions& rHTMLOptions = GetOptions();
for (const auto & rOption : rHTMLOptions)
{
if( HtmlOptionId::ALIGN==rOption.GetToken() )
{
SvxAdjust eAdjust = rOption.GetEnum( aHTMLPAlignTable, SvxAdjust::End );
bNeedsSection = SvxAdjust::Left == eAdjust ||
SvxAdjust::Right == eAdjust;
break;
}
}
if( bNeedsSection )
{
xSaveStruct->AddContents(
InsertTableContents(bHead ) );
}
}
else
{
// If Flys are anchored in the current paragraph,
// the table needs to get in a text frame
bHasToFly = HasCurrentParaFlys(false,true);
}
// There could be a section in the cell
eTabAdjust = m_xAttrTab->pAdjust
? static_cast<const SvxAdjustItem&>(m_xAttrTab->pAdjust->GetItem()).
GetAdjust()
: SvxAdjust::End;
}
std::shared_ptr<HTMLTable> xSubTable = BuildTable(eTabAdjust,
bHead,
xSaveStruct->IsInSection(),
bHasToFly);
if( SvParserState::Pending != GetStatus() )
{
// Only if the table is really complete
if (xSubTable)
{
OSL_ENSURE( xSubTable->GetTableAdjust(false)!= SvxAdjust::Left &&
xSubTable->GetTableAdjust(false)!= SvxAdjust::Right,
"left or right aligned tables belong in frames" );
auto& rParentContents = xSubTable->GetParentContents();
if (rParentContents)
{
OSL_ENSURE( !xSaveStruct->IsInSection(),
"Where is the section" );
// If there's no table coming, we have a section
xSaveStruct->AddContents(std::move(rParentContents));
}
const SwStartNode *pCapStNd =
xSubTable->GetCaptionStartNode();
if (xSubTable->GetContext())
{
OSL_ENSURE( !xSubTable->GetContext()->GetFrameFormat(),
"table in frame" );
if( pCapStNd && xSubTable->IsTopCaption() )
{
xSaveStruct->AddContents(
std::make_unique<HTMLTableCnts>(pCapStNd) );
}
xSaveStruct->AddContents(
std::make_unique<HTMLTableCnts>(xSubTable) );
if( pCapStNd && !xSubTable->IsTopCaption() )
{
xSaveStruct->AddContents(
std::make_unique<HTMLTableCnts>(pCapStNd) );
}
// We don't have a section anymore
xSaveStruct->ClearIsInSection();
}
else if( pCapStNd )
{
// Since we can't delete this section (it might
// belong to the first box), we'll add it
xSaveStruct->AddContents(
std::make_unique<HTMLTableCnts>(pCapStNd) );
// We don't have a section anymore
xSaveStruct->ClearIsInSection();
}
}
m_xTable = xSaveStruct->m_xTable;
}
}
break;
case HtmlTokenId::NOBR_ON:
// HACK for MS: Is the <NOBR> at the start of the cell?
xSaveStruct->StartNoBreak( *m_pPam->GetPoint() );
break;
case HtmlTokenId::NOBR_OFF:
xSaveStruct->EndNoBreak( *m_pPam->GetPoint() );
break;
case HtmlTokenId::COMMENT:
// Spaces are not gonna be deleted with comment fields,
// and we don't want a new cell for a comment
NextToken( nToken );
break;
case HtmlTokenId::MARQUEE_ON:
if( !xSaveStruct->IsInSection() )
{
// create a new section, the PaM is gonna be there
xSaveStruct->AddContents(
InsertTableContents( bHead ) );
}
m_bCallNextToken = true;
NewMarquee( pCurTable );
break;
case HtmlTokenId::TEXTTOKEN:
// Don't add a section for an empty string
if( !xSaveStruct->IsInSection() && 1==aToken.getLength() &&
' '==aToken[0] )
break;
[[fallthrough]];
default:
if( !xSaveStruct->IsInSection() )
{
// add a new section, the PaM's gonna be there
xSaveStruct->AddContents(
InsertTableContents( bHead ) );
}
if( IsParserWorking() || bPending )
NextToken( nToken );
break;
}
OSL_ENSURE( !bPending || m_vPendingStack.empty(),
"SwHTMLParser::BuildTableCell: There is a PendStack again" );
bPending = false;
if( IsParserWorking() )
SaveState( HtmlTokenId::NONE );
if( !bDone )
nToken = GetNextToken();
}
if( SvParserState::Pending == GetStatus() )
{
m_vPendingStack.emplace_back( bHead ? HtmlTokenId::TABLEHEADER_ON
: HtmlTokenId::TABLEDATA_ON );
m_vPendingStack.back().pData = std::move(xSaveStruct);
return;
}
// If the content of the cell was empty, we need to create an empty content
// We also create an empty content if the cell ended with a table and had no
// COL tags. Otherwise, it was probably exported by us and we don't
// want to have an additional paragraph
if( !xSaveStruct->HasFirstContents() ||
(!xSaveStruct->IsInSection() && !pCurTable->HasColTags()) )
{
OSL_ENSURE( xSaveStruct->HasFirstContents() ||
!xSaveStruct->IsInSection(),
"Section or not, that is the question here" );
const SwStartNode *pStNd =
InsertTableSection( static_cast< sal_uInt16 >(xSaveStruct->IsHeaderCell()
? RES_POOLCOLL_TABLE_HDLN
: RES_POOLCOLL_TABLE ));
if (!pStNd)
eState = SvParserState::Error;
else
{
const SwEndNode *pEndNd = pStNd->EndOfSectionNode();
SwContentNode *pCNd = m_xDoc->GetNodes()[pEndNd->GetIndex()-1] ->GetContentNode();
if (!pCNd)
eState = SvParserState::Error;
else
{
//Added defaults to CJK and CTL
SvxFontHeightItem aFontHeight( 40, 100, RES_CHRATR_FONTSIZE );
pCNd->SetAttr( aFontHeight );
SvxFontHeightItem aFontHeightCJK( 40, 100, RES_CHRATR_CJK_FONTSIZE );
pCNd->SetAttr( aFontHeightCJK );
SvxFontHeightItem aFontHeightCTL( 40, 100, RES_CHRATR_CTL_FONTSIZE );
pCNd->SetAttr( aFontHeightCTL );
}
}
xSaveStruct->AddContents( std::make_unique<HTMLTableCnts>(pStNd) );
xSaveStruct->ClearIsInSection();
}
if( xSaveStruct->IsInSection() )
{
xSaveStruct->CheckNoBreak( *m_pPam->GetPoint() );
// End all open contexts. We'll take AttrMin because nContextStMin might
// have been modified. Since it's gonna be restored by EndContext, it's okay
while( m_aContexts.size() > m_nContextStAttrMin+1 )
{
std::unique_ptr<HTMLAttrContext> xCntxt(PopContext());
EndContext(xCntxt.get());
}
// Remove LFs at the paragraph end
if (StripTrailingLF() == 0 && !m_pPam->GetPoint()->nContent.GetIndex())
{
HTMLTableContext* pTableContext = m_xTable ? m_xTable->GetContext() : nullptr;
SwPosition* pSavedPos = pTableContext ? pTableContext->GetPos() : nullptr;
const bool bDeleteSafe = !pSavedPos || pSavedPos->nNode != m_pPam->GetPoint()->nNode;
if (bDeleteSafe)
StripTrailingPara();
}
// If there was an adjustment set for the cell, we need to close it
std::unique_ptr<HTMLAttrContext> xCntxt(PopContext());
if (xCntxt)
EndContext(xCntxt.get());
}
else
{
// Close all still open contexts
while( m_aContexts.size() > m_nContextStAttrMin )
{
std::unique_ptr<HTMLAttrContext> xCntxt(PopContext());
if (!xCntxt)
break;
ClearContext(xCntxt.get());
}
}
// end an enumeration
GetNumInfo().Clear();
SetAttr( false );
xSaveStruct->InsertCell( *this, pCurTable );
// we're probably before a <TH>, <TD>, <TR> or </TABLE>
xSaveStruct.reset();
}
namespace {
class RowSaveStruct : public SwPendingData
{
public:
SvxAdjust eAdjust;
sal_Int16 eVertOri;
bool bHasCells;
RowSaveStruct() :
eAdjust( SvxAdjust::End ), eVertOri( text::VertOrientation::TOP ), bHasCells( false )
{}
};
}
void SwHTMLParser::BuildTableRow( HTMLTable *pCurTable, bool bReadOptions,
SvxAdjust eGrpAdjust,
sal_Int16 eGrpVertOri )
{
// <TR> was already read
if( !IsParserWorking() && m_vPendingStack.empty() )
return;
HtmlTokenId nToken = HtmlTokenId::NONE;
std::unique_ptr<RowSaveStruct> xSaveStruct;
bool bPending = false;
if( !m_vPendingStack.empty() )
{
xSaveStruct.reset(static_cast<RowSaveStruct*>(m_vPendingStack.back().pData.release()));
m_vPendingStack.pop_back();
nToken = !m_vPendingStack.empty() ? m_vPendingStack.back().nToken : GetSaveToken();
bPending = SvParserState::Error == eState && !m_vPendingStack.empty();
SaveState( nToken );
}
else
{
SvxAdjust eAdjust = eGrpAdjust;
sal_Int16 eVertOri = eGrpVertOri;
Color aBGColor;
OUString aBGImage, aStyle, aId, aClass;
bool bBGColor = false;
xSaveStruct.reset(new RowSaveStruct);
if( bReadOptions )
{
const HTMLOptions& rHTMLOptions = GetOptions();
for (size_t i = rHTMLOptions.size(); i; )
{
const HTMLOption& rOption = rHTMLOptions[--i];
switch( rOption.GetToken() )
{
case HtmlOptionId::ID:
aId = rOption.GetString();
break;
case HtmlOptionId::ALIGN:
eAdjust = rOption.GetEnum( aHTMLPAlignTable, eAdjust );
break;
case HtmlOptionId::VALIGN:
eVertOri = rOption.GetEnum( aHTMLTableVAlignTable, eVertOri );
break;
case HtmlOptionId::BGCOLOR:
// Ignore empty BGCOLOR on <TABLE>, <TR> and <TD>/>TH> like Netscape
// *really* not on other tags
if( !rOption.GetString().isEmpty() )
{
rOption.GetColor( aBGColor );
bBGColor = true;
}
break;
case HtmlOptionId::BACKGROUND:
aBGImage = rOption.GetString();
break;
case HtmlOptionId::STYLE:
aStyle = rOption.GetString();
break;
case HtmlOptionId::CLASS:
aClass= rOption.GetString();
break;
default: break;
}
}
}
if( !aId.isEmpty() )
InsertBookmark( aId );
std::unique_ptr<SvxBrushItem> xBrushItem(
CreateBrushItem( bBGColor ? &aBGColor : nullptr, aBGImage, aStyle,
aId, aClass ));
pCurTable->OpenRow(eAdjust, eVertOri, xBrushItem);
// If the first GetNextToken() doesn't succeed (pending input), must re-read from the beginning.
SaveState( HtmlTokenId::NONE );
}
if( nToken == HtmlTokenId::NONE )
nToken = GetNextToken();
bool bDone = false;
while( (IsParserWorking() && !bDone) || bPending )
{
SaveState( nToken );
nToken = FilterToken( nToken );
OSL_ENSURE( !m_vPendingStack.empty() || !m_bCallNextToken ||
pCurTable->GetContext() || pCurTable->HasParentSection(),
"Where is the section??" );
if( m_vPendingStack.empty() && m_bCallNextToken &&
(pCurTable->GetContext() || pCurTable->HasParentSection()) )
{
/// Call NextToken directly (e.g. ignore the content of floating frames or applets)
NextToken( nToken );
}
else switch( nToken )
{
case HtmlTokenId::TABLE_ON:
if( !pCurTable->GetContext() )
{
SkipToken();
bDone = true;
}
break;
case HtmlTokenId::TABLEROW_ON:
case HtmlTokenId::THEAD_ON:
case HtmlTokenId::THEAD_OFF:
case HtmlTokenId::TBODY_ON:
case HtmlTokenId::TBODY_OFF:
case HtmlTokenId::TFOOT_ON:
case HtmlTokenId::TFOOT_OFF:
case HtmlTokenId::TABLE_OFF:
SkipToken();
[[fallthrough]];
case HtmlTokenId::TABLEROW_OFF:
bDone = true;
break;
case HtmlTokenId::TABLEHEADER_ON:
case HtmlTokenId::TABLEDATA_ON:
BuildTableCell( pCurTable, true, HtmlTokenId::TABLEHEADER_ON==nToken );
if( SvParserState::Pending != GetStatus() )
{
xSaveStruct->bHasCells = true;
bDone = m_xTable->IsOverflowing();
}
break;
case HtmlTokenId::CAPTION_ON:
BuildTableCaption( pCurTable );
bDone = m_xTable->IsOverflowing();
break;
case HtmlTokenId::CAPTION_OFF:
case HtmlTokenId::TABLEHEADER_OFF:
case HtmlTokenId::TABLEDATA_OFF:
case HtmlTokenId::COLGROUP_ON:
case HtmlTokenId::COLGROUP_OFF:
case HtmlTokenId::COL_ON:
case HtmlTokenId::COL_OFF:
// Where no cell started, there can't be a cell ending
// all the other tokens are bogus anyway and only break the table
break;
case HtmlTokenId::MULTICOL_ON:
// we can't add columned text frames here
break;
case HtmlTokenId::FORM_ON:
NewForm( false ); // don't create a new paragraph
break;
case HtmlTokenId::FORM_OFF:
EndForm( false ); // don't create a new paragraph
break;
case HtmlTokenId::COMMENT:
NextToken( nToken );
break;
case HtmlTokenId::MAP_ON:
// an image map doesn't add anything, so we can parse it without a cell
NextToken( nToken );
break;
case HtmlTokenId::TEXTTOKEN:
if( (pCurTable->GetContext() ||
!pCurTable->HasParentSection()) &&
1==aToken.getLength() && ' '==aToken[0] )
break;
[[fallthrough]];
default:
pCurTable->MakeParentContents();
NextToken( nToken );
break;
}
OSL_ENSURE( !bPending || m_vPendingStack.empty(),
"SwHTMLParser::BuildTableRow: There is a PendStack again" );
bPending = false;
if( IsParserWorking() )
SaveState( HtmlTokenId::NONE );
if( !bDone )
nToken = GetNextToken();
}
if( SvParserState::Pending == GetStatus() )
{
m_vPendingStack.emplace_back( HtmlTokenId::TABLEROW_ON );
m_vPendingStack.back().pData = std::move(xSaveStruct);
}
else
{
pCurTable->CloseRow(!xSaveStruct->bHasCells);
xSaveStruct.reset();
}
// we're probably before <TR> or </TABLE>
}
void SwHTMLParser::BuildTableSection( HTMLTable *pCurTable,
bool bReadOptions,
bool bHead )
{
// <THEAD>, <TBODY> resp. <TFOOT> were read already
if( !IsParserWorking() && m_vPendingStack.empty() )
return;
HtmlTokenId nToken = HtmlTokenId::NONE;
bool bPending = false;
std::unique_ptr<RowSaveStruct> xSaveStruct;
if( !m_vPendingStack.empty() )
{
xSaveStruct.reset(static_cast<RowSaveStruct*>(m_vPendingStack.back().pData.release()));
m_vPendingStack.pop_back();
nToken = !m_vPendingStack.empty() ? m_vPendingStack.back().nToken : GetSaveToken();
bPending = SvParserState::Error == eState && !m_vPendingStack.empty();
SaveState( nToken );
}
else
{
xSaveStruct.reset(new RowSaveStruct);
if( bReadOptions )
{
const HTMLOptions& rHTMLOptions = GetOptions();
for (size_t i = rHTMLOptions.size(); i; )
{
const HTMLOption& rOption = rHTMLOptions[--i];
switch( rOption.GetToken() )
{
case HtmlOptionId::ID:
InsertBookmark( rOption.GetString() );
break;
case HtmlOptionId::ALIGN:
xSaveStruct->eAdjust =
rOption.GetEnum( aHTMLPAlignTable, xSaveStruct->eAdjust );
break;
case HtmlOptionId::VALIGN:
xSaveStruct->eVertOri =
rOption.GetEnum( aHTMLTableVAlignTable,
xSaveStruct->eVertOri );
break;
default: break;
}
}
}
// If the first GetNextToken() doesn't succeed (pending input), must re-read from the beginning.
SaveState( HtmlTokenId::NONE );
}
if( nToken == HtmlTokenId::NONE )
nToken = GetNextToken();
bool bDone = false;
while( (IsParserWorking() && !bDone) || bPending )
{
SaveState( nToken );
nToken = FilterToken( nToken );
OSL_ENSURE( !m_vPendingStack.empty() || !m_bCallNextToken ||
pCurTable->GetContext() || pCurTable->HasParentSection(),
"Where is the section?" );
if( m_vPendingStack.empty() && m_bCallNextToken &&
(pCurTable->GetContext() || pCurTable->HasParentSection()) )
{
// Call NextToken directly (e.g. ignore the content of floating frames or applets)
NextToken( nToken );
}
else switch( nToken )
{
case HtmlTokenId::TABLE_ON:
if( !pCurTable->GetContext() )
{
SkipToken();
bDone = true;
}
break;
case HtmlTokenId::THEAD_ON:
case HtmlTokenId::TFOOT_ON:
case HtmlTokenId::TBODY_ON:
case HtmlTokenId::TABLE_OFF:
SkipToken();
[[fallthrough]];
case HtmlTokenId::THEAD_OFF:
case HtmlTokenId::TBODY_OFF:
case HtmlTokenId::TFOOT_OFF:
bDone = true;
break;
case HtmlTokenId::CAPTION_ON:
BuildTableCaption( pCurTable );
bDone = m_xTable->IsOverflowing();
break;
case HtmlTokenId::CAPTION_OFF:
break;
case HtmlTokenId::TABLEHEADER_ON:
case HtmlTokenId::TABLEDATA_ON:
SkipToken();
BuildTableRow( pCurTable, false, xSaveStruct->eAdjust,
xSaveStruct->eVertOri );
bDone = m_xTable->IsOverflowing();
break;
case HtmlTokenId::TABLEROW_ON:
BuildTableRow( pCurTable, true, xSaveStruct->eAdjust,
xSaveStruct->eVertOri );
bDone = m_xTable->IsOverflowing();
break;
case HtmlTokenId::MULTICOL_ON:
// we can't add columned text frames here
break;
case HtmlTokenId::FORM_ON:
NewForm( false ); // don't create a new paragraph
break;
case HtmlTokenId::FORM_OFF:
EndForm( false ); // don't create a new paragraph
break;
case HtmlTokenId::TEXTTOKEN:
// blank strings may be a series of CR+LF and no text
if( (pCurTable->GetContext() ||
!pCurTable->HasParentSection()) &&
1==aToken.getLength() && ' ' == aToken[0] )
break;
[[fallthrough]];
default:
pCurTable->MakeParentContents();
NextToken( nToken );
}
OSL_ENSURE( !bPending || m_vPendingStack.empty(),
"SwHTMLParser::BuildTableSection: There is a PendStack again" );
bPending = false;
if( IsParserWorking() )
SaveState( HtmlTokenId::NONE );
if( !bDone )
nToken = GetNextToken();
}
if( SvParserState::Pending == GetStatus() )
{
m_vPendingStack.emplace_back( bHead ? HtmlTokenId::THEAD_ON
: HtmlTokenId::TBODY_ON );
m_vPendingStack.back().pData = std::move(xSaveStruct);
}
else
{
pCurTable->CloseSection( bHead );
xSaveStruct.reset();
}
// now we stand (perhaps) in front of <TBODY>,... or </TABLE>
}
namespace {
struct TableColGrpSaveStruct : public SwPendingData
{
sal_uInt16 nColGrpSpan;
sal_uInt16 nColGrpWidth;
bool bRelColGrpWidth;
SvxAdjust eColGrpAdjust;
sal_Int16 eColGrpVertOri;
inline TableColGrpSaveStruct();
inline void CloseColGroup( HTMLTable *pTable );
};
}
inline TableColGrpSaveStruct::TableColGrpSaveStruct() :
nColGrpSpan( 1 ), nColGrpWidth( 0 ),
bRelColGrpWidth( false ), eColGrpAdjust( SvxAdjust::End ),
eColGrpVertOri( text::VertOrientation::TOP )
{}
inline void TableColGrpSaveStruct::CloseColGroup( HTMLTable *pTable )
{
pTable->CloseColGroup( nColGrpSpan, nColGrpWidth,
bRelColGrpWidth, eColGrpAdjust, eColGrpVertOri );
}
void SwHTMLParser::BuildTableColGroup( HTMLTable *pCurTable,
bool bReadOptions )
{
// <COLGROUP> was read already if bReadOptions is set
if( !IsParserWorking() && m_vPendingStack.empty() )
return;
HtmlTokenId nToken = HtmlTokenId::NONE;
bool bPending = false;
std::unique_ptr<TableColGrpSaveStruct> pSaveStruct;
if( !m_vPendingStack.empty() )
{
pSaveStruct.reset(static_cast<TableColGrpSaveStruct*>(m_vPendingStack.back().pData.release()));
m_vPendingStack.pop_back();
nToken = !m_vPendingStack.empty() ? m_vPendingStack.back().nToken : GetSaveToken();
bPending = SvParserState::Error == eState && !m_vPendingStack.empty();
SaveState( nToken );
}
else
{
pSaveStruct.reset(new TableColGrpSaveStruct);
if( bReadOptions )
{
const HTMLOptions& rColGrpOptions = GetOptions();
for (size_t i = rColGrpOptions.size(); i; )
{
const HTMLOption& rOption = rColGrpOptions[--i];
switch( rOption.GetToken() )
{
case HtmlOptionId::ID:
InsertBookmark( rOption.GetString() );
break;
case HtmlOptionId::SPAN:
pSaveStruct->nColGrpSpan = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
if (pSaveStruct->nColGrpSpan > 256)
{
SAL_INFO("sw.html", "ignoring huge SPAN " << pSaveStruct->nColGrpSpan);
pSaveStruct->nColGrpSpan = 1;
}
break;
case HtmlOptionId::WIDTH:
pSaveStruct->nColGrpWidth = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
pSaveStruct->bRelColGrpWidth =
(rOption.GetString().indexOf('*') != -1);
break;
case HtmlOptionId::ALIGN:
pSaveStruct->eColGrpAdjust =
rOption.GetEnum( aHTMLPAlignTable, pSaveStruct->eColGrpAdjust );
break;
case HtmlOptionId::VALIGN:
pSaveStruct->eColGrpVertOri =
rOption.GetEnum( aHTMLTableVAlignTable,
pSaveStruct->eColGrpVertOri );
break;
default: break;
}
}
}
// If the first GetNextToken() doesn't succeed (pending input), must re-read from the beginning.
SaveState( HtmlTokenId::NONE );
}
if( nToken == HtmlTokenId::NONE )
nToken = GetNextToken(); // naechstes Token
bool bDone = false;
while( (IsParserWorking() && !bDone) || bPending )
{
SaveState( nToken );
nToken = FilterToken( nToken );
OSL_ENSURE( !m_vPendingStack.empty() || !m_bCallNextToken ||
pCurTable->GetContext() || pCurTable->HasParentSection(),
"Where is the section?" );
if( m_vPendingStack.empty() && m_bCallNextToken &&
(pCurTable->GetContext() || pCurTable->HasParentSection()) )
{
// Call NextToken directly (e.g. ignore the content of floating frames or applets)
NextToken( nToken );
}
else switch( nToken )
{
case HtmlTokenId::TABLE_ON:
if( !pCurTable->GetContext() )
{
SkipToken();
bDone = true;
}
break;
case HtmlTokenId::COLGROUP_ON:
case HtmlTokenId::THEAD_ON:
case HtmlTokenId::TFOOT_ON:
case HtmlTokenId::TBODY_ON:
case HtmlTokenId::TABLEROW_ON:
case HtmlTokenId::TABLE_OFF:
SkipToken();
[[fallthrough]];
case HtmlTokenId::COLGROUP_OFF:
bDone = true;
break;
case HtmlTokenId::COL_ON:
{
sal_uInt16 nColSpan = 1;
sal_uInt16 nColWidth = pSaveStruct->nColGrpWidth;
bool bRelColWidth = pSaveStruct->bRelColGrpWidth;
SvxAdjust eColAdjust = pSaveStruct->eColGrpAdjust;
sal_Int16 eColVertOri = pSaveStruct->eColGrpVertOri;
const HTMLOptions& rColOptions = GetOptions();
for (size_t i = rColOptions.size(); i; )
{
const HTMLOption& rOption = rColOptions[--i];
switch( rOption.GetToken() )
{
case HtmlOptionId::ID:
InsertBookmark( rOption.GetString() );
break;
case HtmlOptionId::SPAN:
nColSpan = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
if (nColSpan > 256)
{
SAL_INFO("sw.html", "ignoring huge SPAN " << nColSpan);
nColSpan = 1;
}
break;
case HtmlOptionId::WIDTH:
nColWidth = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
bRelColWidth =
(rOption.GetString().indexOf('*') != -1);
break;
case HtmlOptionId::ALIGN:
eColAdjust = rOption.GetEnum( aHTMLPAlignTable, eColAdjust );
break;
case HtmlOptionId::VALIGN:
eColVertOri =
rOption.GetEnum( aHTMLTableVAlignTable, eColVertOri );
break;
default: break;
}
}
pCurTable->InsertCol( nColSpan, nColWidth, bRelColWidth,
eColAdjust, eColVertOri );
// the attributes in <COLGRP> should be ignored, if there are <COL> elements
pSaveStruct->nColGrpSpan = 0;
}
break;
case HtmlTokenId::COL_OFF:
break; // Ignore
case HtmlTokenId::MULTICOL_ON:
// we can't add columned text frames here
break;
case HtmlTokenId::TEXTTOKEN:
if( (pCurTable->GetContext() ||
!pCurTable->HasParentSection()) &&
1==aToken.getLength() && ' '==aToken[0] )
break;
[[fallthrough]];
default:
pCurTable->MakeParentContents();
NextToken( nToken );
}
OSL_ENSURE( !bPending || m_vPendingStack.empty(),
"SwHTMLParser::BuildTableColGrp: There is a PendStack again" );
bPending = false;
if( IsParserWorking() )
SaveState( HtmlTokenId::NONE );
if( !bDone )
nToken = GetNextToken();
}
if( SvParserState::Pending == GetStatus() )
{
m_vPendingStack.emplace_back( HtmlTokenId::COL_ON );
m_vPendingStack.back().pData = std::move(pSaveStruct);
}
else
{
pSaveStruct->CloseColGroup( pCurTable );
}
}
class CaptionSaveStruct : public SectionSaveStruct
{
SwPosition m_aSavePos;
SwHTMLNumRuleInfo m_aNumRuleInfo; // valid numbering
public:
std::shared_ptr<HTMLAttrTable> m_xAttrTab; // attributes
CaptionSaveStruct( SwHTMLParser& rParser, const SwPosition& rPos ) :
SectionSaveStruct( rParser ), m_aSavePos( rPos ),
m_xAttrTab(std::make_shared<HTMLAttrTable>())
{
rParser.SaveAttrTab(m_xAttrTab);
// The current numbering was remembered and just needs to be closed
m_aNumRuleInfo.Set( rParser.GetNumInfo() );
rParser.GetNumInfo().Clear();
}
const SwPosition& GetPos() const { return m_aSavePos; }
void RestoreAll( SwHTMLParser& rParser )
{
// Recover the old stack
Restore( rParser );
// Recover the old attribute tables
rParser.RestoreAttrTab(m_xAttrTab);
// Re-open the old numbering
rParser.GetNumInfo().Set( m_aNumRuleInfo );
}
};
void SwHTMLParser::BuildTableCaption( HTMLTable *pCurTable )
{
// <CAPTION> was read already
if( !IsParserWorking() && m_vPendingStack.empty() )
return;
HtmlTokenId nToken = HtmlTokenId::NONE;
std::unique_ptr<CaptionSaveStruct> xSaveStruct;
if( !m_vPendingStack.empty() )
{
xSaveStruct.reset(static_cast<CaptionSaveStruct*>(m_vPendingStack.back().pData.release()));
m_vPendingStack.pop_back();
nToken = !m_vPendingStack.empty() ? m_vPendingStack.back().nToken : GetSaveToken();
OSL_ENSURE( m_vPendingStack.empty(), "Where does a PendStack coming from?" );
SaveState( nToken );
}
else
{
if (m_xTable->IsOverflowing())
{
SaveState( HtmlTokenId::NONE );
return;
}
bool bTop = true;
const HTMLOptions& rHTMLOptions = GetOptions();
for ( size_t i = rHTMLOptions.size(); i; )
{
const HTMLOption& rOption = rHTMLOptions[--i];
if( HtmlOptionId::ALIGN == rOption.GetToken() )
{
if (rOption.GetString().equalsIgnoreAsciiCase(
OOO_STRING_SVTOOLS_HTML_VA_bottom))
{
bTop = false;
}
}
}
// Remember old PaM position
xSaveStruct.reset(new CaptionSaveStruct(*this, *m_pPam->GetPoint()));
// Add a text section in the icon section as a container for the header
// and set the PaM there
const SwStartNode *pStNd;
if (m_xTable.get() == pCurTable)
pStNd = InsertTempTableCaptionSection();
else
pStNd = InsertTableSection( RES_POOLCOLL_TEXT );
std::unique_ptr<HTMLAttrContext> xCntxt(new HTMLAttrContext(HtmlTokenId::CAPTION_ON));
// Table headers are always centered
NewAttr(m_xAttrTab, &m_xAttrTab->pAdjust, SvxAdjustItem(SvxAdjust::Center, RES_PARATR_ADJUST));
HTMLAttrs &rAttrs = xCntxt->GetAttrs();
rAttrs.push_back( m_xAttrTab->pAdjust );
PushContext(xCntxt);
// Remember the start node of the section at the table
pCurTable->SetCaption( pStNd, bTop );
// If the first GetNextToken() doesn't succeed (pending input), must re-read from the beginning.
SaveState( HtmlTokenId::NONE );
}
if( nToken == HtmlTokenId::NONE )
nToken = GetNextToken();
// </CAPTION> is needed according to DTD
bool bDone = false;
while( IsParserWorking() && !bDone )
{
SaveState( nToken );
nToken = FilterToken( nToken );
switch( nToken )
{
case HtmlTokenId::TABLE_ON:
if( m_vPendingStack.empty() )
{
xSaveStruct->m_xTable = m_xTable;
bool bHasToFly = xSaveStruct->m_xTable.get() != pCurTable;
BuildTable( pCurTable->GetTableAdjust( true ),
false, true, bHasToFly );
}
else
{
BuildTable( SvxAdjust::End );
}
if( SvParserState::Pending != GetStatus() )
{
m_xTable = xSaveStruct->m_xTable;
}
break;
case HtmlTokenId::TABLE_OFF:
case HtmlTokenId::COLGROUP_ON:
case HtmlTokenId::THEAD_ON:
case HtmlTokenId::TFOOT_ON:
case HtmlTokenId::TBODY_ON:
case HtmlTokenId::TABLEROW_ON:
SkipToken();
bDone = true;
break;
case HtmlTokenId::CAPTION_OFF:
bDone = true;
break;
default:
if( !m_vPendingStack.empty() )
{
m_vPendingStack.pop_back();
OSL_ENSURE( m_vPendingStack.empty(), "Further it can't go!" );
}
if( IsParserWorking() )
NextToken( nToken );
break;
}
if( IsParserWorking() )
SaveState( HtmlTokenId::NONE );
if( !bDone )
nToken = GetNextToken();
}
if( SvParserState::Pending==GetStatus() )
{
m_vPendingStack.emplace_back( HtmlTokenId::CAPTION_ON );
m_vPendingStack.back().pData = std::move(xSaveStruct);
return;
}
// end all still open contexts
while( m_aContexts.size() > m_nContextStAttrMin+1 )
{
std::unique_ptr<HTMLAttrContext> xCntxt(PopContext());
EndContext(xCntxt.get());
}
bool bLFStripped = StripTrailingLF() > 0;
if (m_xTable.get() == pCurTable)
{
// On moving the caption later, the last paragraph isn't moved as well.
// That means, there has to be an empty paragraph at the end of the section
if( m_pPam->GetPoint()->nContent.GetIndex() || bLFStripped )
AppendTextNode( AM_NOSPACE );
}
else
{
// Strip LFs at the end of the paragraph
if( !m_pPam->GetPoint()->nContent.GetIndex() && !bLFStripped )
StripTrailingPara();
}
// If there's an adjustment for the cell, we need to close it
std::unique_ptr<HTMLAttrContext> xCntxt(PopContext());
if (xCntxt)
{
EndContext(xCntxt.get());
xCntxt.reset();
}
SetAttr( false );
// Recover stack and attribute table
xSaveStruct->RestoreAll(*this);
// Recover PaM
*m_pPam->GetPoint() = xSaveStruct->GetPos();
}
namespace {
class TableSaveStruct : public SwPendingData
{
public:
std::shared_ptr<HTMLTable> m_xCurrentTable;
explicit TableSaveStruct(const std::shared_ptr<HTMLTable>& rCurTable)
: m_xCurrentTable(rCurTable)
{
}
// Initiate creation of the table and put the table in a text frame if
// needed. If it returns true, we need to insert a paragraph.
void MakeTable( sal_uInt16 nWidth, SwPosition& rPos, SwDoc *pDoc );
};
}
void TableSaveStruct::MakeTable( sal_uInt16 nWidth, SwPosition& rPos, SwDoc *pDoc )
{
m_xCurrentTable->MakeTable(nullptr, nWidth);
HTMLTableContext *pTCntxt = m_xCurrentTable->GetContext();
OSL_ENSURE( pTCntxt, "Where is the table context" );
SwTableNode *pTableNd = pTCntxt->GetTableNode();
OSL_ENSURE( pTableNd, "Where is the table node" );
if( pDoc->getIDocumentLayoutAccess().GetCurrentViewShell() && pTableNd )
{
// If there's already a layout, the BoxFrames need to be regenerated at this table
if( pTCntxt->GetFrameFormat() )
{
pTCntxt->GetFrameFormat()->DelFrames();
pTableNd->DelFrames();
pTCntxt->GetFrameFormat()->MakeFrames();
}
else
{
pTableNd->DelFrames();
SwNodeIndex aIdx( *pTableNd->EndOfSectionNode(), 1 );
OSL_ENSURE( aIdx.GetIndex() <= pTCntxt->GetPos()->nNode.GetIndex(),
"unexpected node for table layout" );
pTableNd->MakeOwnFrames(&aIdx);
}
}
rPos = *pTCntxt->GetPos();
}
HTMLTableOptions::HTMLTableOptions( const HTMLOptions& rOptions,
SvxAdjust eParentAdjust ) :
nCols( 0 ),
nWidth( 0 ), nHeight( 0 ),
nCellPadding( USHRT_MAX ), nCellSpacing( USHRT_MAX ),
nBorder( USHRT_MAX ),
nHSpace( 0 ), nVSpace( 0 ),
eAdjust( eParentAdjust ), eVertOri( text::VertOrientation::CENTER ),
eFrame( HTMLTableFrame::Void ), eRules( HTMLTableRules::NONE ),
bPercentWidth( false ),
bTableAdjust( false ),
bBGColor( false ),
aBorderColor( COL_GRAY )
{
bool bBorderColor = false;
bool bHasFrame = false, bHasRules = false;
for (size_t i = rOptions.size(); i; )
{
const HTMLOption& rOption = rOptions[--i];
switch( rOption.GetToken() )
{
case HtmlOptionId::ID:
aId = rOption.GetString();
break;
case HtmlOptionId::COLS:
nCols = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
break;
case HtmlOptionId::WIDTH:
nWidth = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
bPercentWidth = (rOption.GetString().indexOf('%') != -1);
if( bPercentWidth && nWidth>100 )
nWidth = 100;
break;
case HtmlOptionId::HEIGHT:
nHeight = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
if( rOption.GetString().indexOf('%') != -1 )
nHeight = 0; // don't use % attributes
break;
case HtmlOptionId::CELLPADDING:
nCellPadding = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
break;
case HtmlOptionId::CELLSPACING:
nCellSpacing = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
break;
case HtmlOptionId::ALIGN:
{
if( rOption.GetEnum( eAdjust, aHTMLPAlignTable ) )
{
bTableAdjust = true;
}
}
break;
case HtmlOptionId::VALIGN:
eVertOri = rOption.GetEnum( aHTMLTableVAlignTable, eVertOri );
break;
case HtmlOptionId::BORDER:
// Handle BORDER and BORDER=BORDER like BORDER=1
if (!rOption.GetString().isEmpty() &&
!rOption.GetString().equalsIgnoreAsciiCase(
OOO_STRING_SVTOOLS_HTML_O_border))
{
nBorder = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
}
else
nBorder = 1;
if( !bHasFrame )
eFrame = ( nBorder ? HTMLTableFrame::Box : HTMLTableFrame::Void );
if( !bHasRules )
eRules = ( nBorder ? HTMLTableRules::All : HTMLTableRules::NONE );
break;
case HtmlOptionId::FRAME:
eFrame = rOption.GetTableFrame();
bHasFrame = true;
break;
case HtmlOptionId::RULES:
eRules = rOption.GetTableRules();
bHasRules = true;
break;
case HtmlOptionId::BGCOLOR:
// Ignore empty BGCOLOR on <TABLE>, <TR> and <TD>/<TH> like Netscape
// *really* not on other tags
if( !rOption.GetString().isEmpty() )
{
rOption.GetColor( aBGColor );
bBGColor = true;
}
break;
case HtmlOptionId::BACKGROUND:
aBGImage = rOption.GetString();
break;
case HtmlOptionId::BORDERCOLOR:
rOption.GetColor( aBorderColor );
bBorderColor = true;
break;
case HtmlOptionId::BORDERCOLORDARK:
if( !bBorderColor )
rOption.GetColor( aBorderColor );
break;
case HtmlOptionId::STYLE:
aStyle = rOption.GetString();
break;
case HtmlOptionId::CLASS:
aClass = rOption.GetString();
break;
case HtmlOptionId::DIR:
aDir = rOption.GetString();
break;
case HtmlOptionId::HSPACE:
nHSpace = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
break;
case HtmlOptionId::VSPACE:
nVSpace = o3tl::narrowing<sal_uInt16>(rOption.GetNumber());
break;
default: break;
}
}
if( nCols && !nWidth )
{
nWidth = 100;
bPercentWidth = true;
}
// If BORDER=0 or no BORDER given, then there shouldn't be a border
if( 0==nBorder || USHRT_MAX==nBorder )
{
eFrame = HTMLTableFrame::Void;
eRules = HTMLTableRules::NONE;
}
}
namespace
{
class IndexInRange
{
private:
SwNodeIndex maStart;
SwNodeIndex maEnd;
public:
explicit IndexInRange(const SwNodeIndex& rStart, const SwNodeIndex& rEnd)
: maStart(rStart)
, maEnd(rEnd)
{
}
bool operator()(const SwHTMLTextFootnote& rTextFootnote) const
{
const SwNodeIndex aTextIdx(rTextFootnote.pTextFootnote->GetTextNode());
return aTextIdx >= maStart && aTextIdx <= maEnd;
}
};
}
void SwHTMLParser::ClearFootnotesMarksInRange(const SwNodeIndex& rMkNdIdx, const SwNodeIndex& rPtNdIdx)
{
//similarly for footnotes
if (m_pFootEndNoteImpl)
{
m_pFootEndNoteImpl->aTextFootnotes.erase(std::remove_if(m_pFootEndNoteImpl->aTextFootnotes.begin(),
m_pFootEndNoteImpl->aTextFootnotes.end(), IndexInRange(rMkNdIdx, rPtNdIdx)), m_pFootEndNoteImpl->aTextFootnotes.end());
if (m_pFootEndNoteImpl->aTextFootnotes.empty())
{
m_pFootEndNoteImpl.reset();
}
}
//follow DelFlyInRange pattern here
assert(rMkNdIdx.GetIndex() <= rPtNdIdx.GetIndex());
SwDoc& rDoc = rMkNdIdx.GetNode().GetDoc();
//ofz#9733 drop bookmarks in this range
IDocumentMarkAccess* const pMarkAccess = rDoc.getIDocumentMarkAccess();
pMarkAccess->deleteMarks(rMkNdIdx, SwNodeIndex(rPtNdIdx, 1), nullptr, nullptr, nullptr);
SwFrameFormats& rTable = *rDoc.GetSpzFrameFormats();
for ( auto i = rTable.size(); i; )
{
SwFrameFormat *pFormat = rTable[--i];
const SwFormatAnchor &rAnch = pFormat->GetAnchor();
SwPosition const*const pAPos = rAnch.GetContentAnchor();
if (pAPos &&
((rAnch.GetAnchorId() == RndStdIds::FLY_AT_PARA) ||
(rAnch.GetAnchorId() == RndStdIds::FLY_AT_CHAR)) &&
( rMkNdIdx < pAPos->nNode && pAPos->nNode <= rPtNdIdx ))
{
if( rPtNdIdx != pAPos->nNode )
{
// If the Fly is deleted, all Flys in its content have to be deleted too.
const SwFormatContent &rContent = pFormat->GetContent();
// But only fly formats own their content, not draw formats.
if (rContent.GetContentIdx() && pFormat->Which() == RES_FLYFRMFMT)
{
ClearFootnotesMarksInRange(*rContent.GetContentIdx(),
SwNodeIndex(*rContent.GetContentIdx()->GetNode().EndOfSectionNode()));
}
}
}
}
}
void SwHTMLParser::DeleteSection(SwStartNode* pSttNd)
{
//if section to be deleted contains a pending m_pMarquee, it will be deleted
//so clear m_pMarquee pointer if that's the case
SwFrameFormat* pObjectFormat = m_pMarquee ? ::FindFrameFormat(m_pMarquee) : nullptr;
FrameDeleteWatch aWatch(pObjectFormat);
//similarly for footnotes
SwNodeIndex aSttIdx(*pSttNd), aEndIdx(*pSttNd->EndOfSectionNode());
ClearFootnotesMarksInRange(aSttIdx, aEndIdx);
m_xDoc->getIDocumentContentOperations().DeleteSection(pSttNd);
if (pObjectFormat)
{
if (aWatch.WasDeleted())
m_pMarquee = nullptr;
else
aWatch.EndListeningAll();
}
}
std::shared_ptr<HTMLTable> SwHTMLParser::BuildTable(SvxAdjust eParentAdjust,
bool bIsParentHead,
bool bHasParentSection,
bool bHasToFly)
{
TableDepthGuard aGuard(*this);
if (aGuard.TooDeep())
eState = SvParserState::Error;
if (!IsParserWorking() && m_vPendingStack.empty())
return std::shared_ptr<HTMLTable>();
::comphelper::FlagRestorationGuard g(m_isInTableStructure, true);
HtmlTokenId nToken = HtmlTokenId::NONE;
bool bPending = false;
std::unique_ptr<TableSaveStruct> xSaveStruct;
if( !m_vPendingStack.empty() )
{
xSaveStruct.reset(static_cast<TableSaveStruct*>(m_vPendingStack.back().pData.release()));
m_vPendingStack.pop_back();
nToken = !m_vPendingStack.empty() ? m_vPendingStack.back().nToken : GetSaveToken();
bPending = SvParserState::Error == eState && !m_vPendingStack.empty();
SaveState( nToken );
}
else
{
m_xTable.reset();
HTMLTableOptions aTableOptions(GetOptions(), eParentAdjust);
if (!aTableOptions.aId.isEmpty())
InsertBookmark(aTableOptions.aId);
std::shared_ptr<HTMLTable> xCurTable(std::make_shared<HTMLTable>(this,
bIsParentHead,
bHasParentSection,
bHasToFly,
aTableOptions));
m_xTable = xCurTable;
xSaveStruct.reset(new TableSaveStruct(xCurTable));
// Is pending on the first GetNextToken, needs to be re-read on each construction
SaveState( HtmlTokenId::NONE );
}
std::shared_ptr<HTMLTable> xCurTable = xSaveStruct->m_xCurrentTable;
// </TABLE> is needed according to DTD
if( nToken == HtmlTokenId::NONE )
nToken = GetNextToken();
bool bDone = false;
while( (IsParserWorking() && !bDone) || bPending )
{
SaveState( nToken );
nToken = FilterToken( nToken );
OSL_ENSURE( !m_vPendingStack.empty() || !m_bCallNextToken ||
xCurTable->GetContext() || xCurTable->HasParentSection(),
"Where is the section?" );
if( m_vPendingStack.empty() && m_bCallNextToken &&
(xCurTable->GetContext() || xCurTable->HasParentSection()) )
{
/// Call NextToken directly (e.g. ignore the content of floating frames or applets)
NextToken( nToken );
}
else switch( nToken )
{
case HtmlTokenId::TABLE_ON:
if( !xCurTable->GetContext() )
{
// If there's no table added, read the next table'
SkipToken();
bDone = true;
}
break;
case HtmlTokenId::TABLE_OFF:
bDone = true;
break;
case HtmlTokenId::CAPTION_ON:
BuildTableCaption(xCurTable.get());
bDone = m_xTable->IsOverflowing();
break;
case HtmlTokenId::COL_ON:
SkipToken();
BuildTableColGroup(xCurTable.get(), false);
break;
case HtmlTokenId::COLGROUP_ON:
BuildTableColGroup(xCurTable.get(), true);
break;
case HtmlTokenId::TABLEROW_ON:
case HtmlTokenId::TABLEHEADER_ON:
case HtmlTokenId::TABLEDATA_ON:
SkipToken();
BuildTableSection(xCurTable.get(), false, false);
bDone = m_xTable->IsOverflowing();
break;
case HtmlTokenId::THEAD_ON:
case HtmlTokenId::TFOOT_ON:
case HtmlTokenId::TBODY_ON:
BuildTableSection(xCurTable.get(), true, HtmlTokenId::THEAD_ON==nToken);
bDone = m_xTable->IsOverflowing();
break;
case HtmlTokenId::MULTICOL_ON:
// we can't add columned text frames here
break;
case HtmlTokenId::FORM_ON:
NewForm( false ); // don't add a new paragraph
break;
case HtmlTokenId::FORM_OFF:
EndForm( false ); // don't add a new paragraph
break;
case HtmlTokenId::TEXTTOKEN:
// blank strings may be a series of CR+LF and no text
if( (xCurTable->GetContext() ||
!xCurTable->HasParentSection()) &&
1==aToken.getLength() && ' '==aToken[0] )
break;
[[fallthrough]];
default:
xCurTable->MakeParentContents();
NextToken( nToken );
break;
}
OSL_ENSURE( !bPending || m_vPendingStack.empty(),
"SwHTMLParser::BuildTable: There is a PendStack again" );
bPending = false;
if( IsParserWorking() )
SaveState( HtmlTokenId::NONE );
if( !bDone )
nToken = GetNextToken();
}
if( SvParserState::Pending == GetStatus() )
{
m_vPendingStack.emplace_back( HtmlTokenId::TABLE_ON );
m_vPendingStack.back().pData = std::move(xSaveStruct);
return std::shared_ptr<HTMLTable>();
}
HTMLTableContext *pTCntxt = xCurTable->GetContext();
if( pTCntxt )
{
// Modify table structure
xCurTable->CloseTable();
// end contexts that began out of cells. Needs to exist before (!) we move the table,
// since the current one doesn't exist anymore afterwards
while( m_aContexts.size() > m_nContextStAttrMin )
{
std::unique_ptr<HTMLAttrContext> xCntxt(PopContext());
if (!xCntxt)
break;
ClearContext(xCntxt.get());
}
m_nContextStMin = pTCntxt->GetContextStMin();
m_nContextStAttrMin = pTCntxt->GetContextStAttrMin();
if (m_xTable == xCurTable)
{
// Set table caption
const SwStartNode *pCapStNd = m_xTable->GetCaptionStartNode();
if( pCapStNd )
{
// The last paragraph of the section is never part of the copy.
// That's why the section needs to contain at least two paragraphs
if( pCapStNd->EndOfSectionIndex() - pCapStNd->GetIndex() > SwNodeOffset(2) )
{
// Don't copy start node and the last paragraph
SwNodeRange aSrcRg( *pCapStNd, SwNodeOffset(1),
*pCapStNd->EndOfSectionNode(), SwNodeOffset(-1) );
bool bTop = m_xTable->IsTopCaption();
SwStartNode *pTableStNd = pTCntxt->GetTableNode();
OSL_ENSURE( pTableStNd, "Where is the table node" );
OSL_ENSURE( pTableStNd==m_pPam->GetNode().FindTableNode(),
"Are we in the wrong table?" );
SwNode* pNd;
if( bTop )
pNd = pTableStNd;
else
pNd = pTableStNd->EndOfSectionNode();
SwNodeIndex aDstIdx( *pNd, bTop ? 0 : 1 );
m_xDoc->getIDocumentContentOperations().MoveNodeRange( aSrcRg, aDstIdx,
SwMoveFlags::DEFAULT );
// If the caption was added before the table, a page style on that table
// needs to be moved to the first paragraph of the header.
// Additionally, all remembered indices that point to the table node
// need to be moved
if( bTop )
{
MovePageDescAttrs( pTableStNd, aSrcRg.aStart.GetIndex(),
false );
}
}
// The section isn't needed anymore
m_pPam->SetMark();
m_pPam->DeleteMark();
DeleteSection(const_cast<SwStartNode*>(pCapStNd));
m_xTable->SetCaption( nullptr, false );
}
// Process SwTable
sal_uInt16 nBrowseWidth = o3tl::narrowing<sal_uInt16>(GetCurrentBrowseWidth());
xSaveStruct->MakeTable(nBrowseWidth, *m_pPam->GetPoint(), m_xDoc.get());
}
GetNumInfo().Set( pTCntxt->GetNumInfo() );
pTCntxt->RestorePREListingXMP( *this );
RestoreAttrTab(pTCntxt->m_xAttrTab);
if (m_xTable == xCurTable)
{
// Set upper paragraph spacing
m_bUpperSpace = true;
SetTextCollAttrs();
SwTableNode* pTableNode = pTCntxt->GetTableNode();
size_t nTableBoxSize = pTableNode ? pTableNode->GetTable().GetTabSortBoxes().size() : 0;
m_nParaCnt = m_nParaCnt - std::min(m_nParaCnt, nTableBoxSize);
// Jump to a table if needed
if( JumpToMarks::Table == m_eJumpTo && m_xTable->GetSwTable() &&
m_xTable->GetSwTable()->GetFrameFormat()->GetName() == m_sJmpMark )
{
m_bChkJumpMark = true;
m_eJumpTo = JumpToMarks::NONE;
}
// If the import was canceled, don't call Show again here since
// the SwViewShell was already deleted
// That's not enough. Even in the ACCEPTING_STATE, a Show mustn't be called
// because otherwise the parser's gonna be destroyed on the reschedule,
// if there's still a DataAvailable link coming. So: only in the WORKING state
if( !m_nParaCnt && SvParserState::Working == GetStatus() )
Show();
}
}
else if (m_xTable == xCurTable)
{
// There was no table read
// We maybe need to delete a read caption
const SwStartNode *pCapStNd = xCurTable->GetCaptionStartNode();
if( pCapStNd )
{
m_pPam->SetMark();
m_pPam->DeleteMark();
DeleteSection(const_cast<SwStartNode*>(pCapStNd));
xCurTable->SetCaption( nullptr, false );
}
}
if (m_xTable == xCurTable)
{
xSaveStruct->m_xCurrentTable.reset();
m_xTable.reset();
}
std::shared_ptr<HTMLTable> xRetTable = xSaveStruct->m_xCurrentTable;
xSaveStruct.reset();
return xRetTable;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|