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
|
/* -*- 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 <com/sun/star/text/HoriOrientation.hpp>
#include <officecfg/Office/Writer.hxx>
#include <osl/diagnose.h>
#include <svl/numformat.hxx>
#include <hintids.hxx>
#include <editeng/lrspitem.hxx>
#include <editeng/boxitem.hxx>
#include <tools/fract.hxx>
#include <fmtfsize.hxx>
#include <fmtornt.hxx>
#include <doc.hxx>
#include <IDocumentSettingAccess.hxx>
#include <IDocumentChartDataProviderAccess.hxx>
#include <DocumentContentOperationsManager.hxx>
#include <IDocumentRedlineAccess.hxx>
#include <IDocumentStylePoolAccess.hxx>
#include <IDocumentFieldsAccess.hxx>
#include <docsh.hxx>
#include <fesh.hxx>
#include <tabfrm.hxx>
#include <frmatr.hxx>
#include <frmtool.hxx>
#include <pam.hxx>
#include <swtable.hxx>
#include <tblsel.hxx>
#include <fldbas.hxx>
#include <rowfrm.hxx>
#include <ddefld.hxx>
#include <hints.hxx>
#include <UndoTable.hxx>
#include <cellatr.hxx>
#include <mvsave.hxx>
#include <swtblfmt.hxx>
#include <swddetbl.hxx>
#include <poolfmt.hxx>
#include <tblrwcl.hxx>
#include <unochart.hxx>
#include <o3tl/numeric.hxx>
#include <calbck.hxx>
#include <docary.hxx>
using namespace com::sun::star;
#define COLFUZZY 20
#define ROWFUZZY 10
#ifdef DBG_UTIL
#define CHECK_TABLE(t) (t).CheckConsistency();
#else
#define CHECK_TABLE(t)
#endif
namespace {
// In order to set the Frame Formats for the Boxes, it's enough to look
// up the current one in the array. If it's already there return the new one.
struct CpyTabFrame
{
SwFrameFormat* pFrameFormat;
SwTableBoxFormat *pNewFrameFormat;
explicit CpyTabFrame(SwFrameFormat* pCurrentFrameFormat) : pNewFrameFormat( nullptr )
{ pFrameFormat = pCurrentFrameFormat; }
bool operator==( const CpyTabFrame& rCpyTabFrame ) const
{ return pFrameFormat == rCpyTabFrame.pFrameFormat; }
bool operator<( const CpyTabFrame& rCpyTabFrame ) const
{ return pFrameFormat < rCpyTabFrame.pFrameFormat; }
};
struct CR_SetBoxWidth
{
SwShareBoxFormats aShareFormats;
SwTableNode* pTableNd;
SwTwips nDiff, nSide, nMaxSize, nLowerDiff;
TableChgMode nMode;
bool bBigger, bLeft;
CR_SetBoxWidth( TableChgWidthHeightType eType, SwTwips nDif, SwTwips nSid,
SwTwips nMax, SwTableNode* pTNd )
: pTableNd( pTNd ),
nDiff( nDif ), nSide( nSid ), nMaxSize( nMax ), nLowerDiff( 0 )
{
bLeft = TableChgWidthHeightType::ColLeft == extractPosition( eType ) ||
TableChgWidthHeightType::CellLeft == extractPosition( eType );
bBigger = bool(eType & TableChgWidthHeightType::BiggerMode );
nMode = pTableNd->GetTable().GetTableChgMode();
}
CR_SetBoxWidth( const CR_SetBoxWidth& rCpy )
: pTableNd( rCpy.pTableNd ),
nDiff( rCpy.nDiff ), nSide( rCpy.nSide ),
nMaxSize( rCpy.nMaxSize ), nLowerDiff( 0 ),
nMode( rCpy.nMode ),
bBigger( rCpy.bBigger ), bLeft( rCpy.bLeft )
{
}
void LoopClear()
{
nLowerDiff = 0;
}
};
}
static bool lcl_SetSelBoxWidth( SwTableLine* pLine, CR_SetBoxWidth& rParam,
SwTwips nDist, bool bCheck );
static bool lcl_SetOtherBoxWidth( SwTableLine* pLine, CR_SetBoxWidth& rParam,
SwTwips nDist, bool bCheck );
typedef bool (*FN_lcl_SetBoxWidth)(SwTableLine*, CR_SetBoxWidth&, SwTwips, bool );
namespace {
struct CR_SetLineHeight
{
SwTableNode* pTableNd;
SwTwips nMaxSpace, nMaxHeight;
TableChgMode nMode;
bool bBigger;
CR_SetLineHeight( TableChgWidthHeightType eType, SwTableNode* pTNd )
: pTableNd( pTNd ),
nMaxSpace( 0 ), nMaxHeight( 0 )
{
bBigger = bool(eType & TableChgWidthHeightType::BiggerMode );
nMode = pTableNd->GetTable().GetTableChgMode();
}
CR_SetLineHeight( const CR_SetLineHeight& rCpy )
: pTableNd( rCpy.pTableNd ),
nMaxSpace( rCpy.nMaxSpace ), nMaxHeight( rCpy.nMaxHeight ),
nMode( rCpy.nMode ),
bBigger( rCpy.bBigger )
{}
};
}
static bool lcl_SetSelLineHeight( SwTableLine* pLine, const CR_SetLineHeight& rParam,
SwTwips nDist, bool bCheck );
static bool lcl_SetOtherLineHeight( SwTableLine* pLine, const CR_SetLineHeight& rParam,
SwTwips nDist, bool bCheck );
typedef bool (*FN_lcl_SetLineHeight)(SwTableLine*, CR_SetLineHeight&, SwTwips, bool );
typedef o3tl::sorted_vector<CpyTabFrame> CpyTabFrames;
namespace {
struct CpyPara
{
std::shared_ptr< std::vector< std::vector< sal_uLong > > > pWidths;
SwDoc& rDoc;
SwTableNode* pTableNd;
CpyTabFrames& rTabFrameArr;
SwTableLine* pInsLine;
SwTableBox* pInsBox;
sal_uLong nOldSize, nNewSize; // in order to correct the size attributes
sal_uLong nMinLeft, nMaxRight;
sal_uInt16 nCpyCnt, nInsPos;
sal_uInt16 nLnIdx, nBoxIdx;
sal_uInt8 nDelBorderFlag;
bool bCpyContent;
CpyPara( SwTableNode* pNd, sal_uInt16 nCopies, CpyTabFrames& rFrameArr )
: rDoc( pNd->GetDoc() ), pTableNd( pNd ), rTabFrameArr(rFrameArr),
pInsLine(nullptr), pInsBox(nullptr), nOldSize(0), nNewSize(0),
nMinLeft(ULONG_MAX), nMaxRight(0),
nCpyCnt(nCopies), nInsPos(0),
nLnIdx(0), nBoxIdx(0),
nDelBorderFlag(0), bCpyContent( true )
{}
CpyPara( const CpyPara& rPara, SwTableLine* pLine )
: pWidths( rPara.pWidths ), rDoc(rPara.rDoc), pTableNd(rPara.pTableNd),
rTabFrameArr(rPara.rTabFrameArr), pInsLine(pLine), pInsBox(rPara.pInsBox),
nOldSize(0), nNewSize(rPara.nNewSize), nMinLeft( rPara.nMinLeft ),
nMaxRight( rPara.nMaxRight ), nCpyCnt(rPara.nCpyCnt), nInsPos(0),
nLnIdx( rPara.nLnIdx), nBoxIdx( rPara.nBoxIdx ),
nDelBorderFlag( rPara.nDelBorderFlag ), bCpyContent( rPara.bCpyContent )
{}
CpyPara( const CpyPara& rPara, SwTableBox* pBox )
: pWidths( rPara.pWidths ), rDoc(rPara.rDoc), pTableNd(rPara.pTableNd),
rTabFrameArr(rPara.rTabFrameArr), pInsLine(rPara.pInsLine), pInsBox(pBox),
nOldSize(rPara.nOldSize), nNewSize(rPara.nNewSize),
nMinLeft( rPara.nMinLeft ), nMaxRight( rPara.nMaxRight ),
nCpyCnt(rPara.nCpyCnt), nInsPos(0), nLnIdx(rPara.nLnIdx), nBoxIdx(rPara.nBoxIdx),
nDelBorderFlag( rPara.nDelBorderFlag ), bCpyContent( rPara.bCpyContent )
{}
};
}
static SwTableLine* lcl_CopyRow(FndLine_ & rFndLine, CpyPara *const pCpyPara);
static void lcl_CopyCol( FndBox_ & rFndBox, CpyPara *const pCpyPara)
{
// Look up the Frame Format in the Frame Format Array
SwTableBox* pBox = rFndBox.GetBox();
CpyTabFrame aFindFrame(pBox->GetFrameFormat());
if( pCpyPara->nCpyCnt )
{
sal_uInt16 nFndPos;
CpyTabFrames::const_iterator itFind = pCpyPara->rTabFrameArr.lower_bound( aFindFrame );
nFndPos = itFind - pCpyPara->rTabFrameArr.begin();
if( itFind == pCpyPara->rTabFrameArr.end() || !(*itFind == aFindFrame) )
{
// For nested copying, also save the new Format as an old one.
SwTableBoxFormat* pNewFormat = pBox->ClaimFrameFormat();
// Find the selected Boxes in the Line:
FndLine_ const* pCmpLine = nullptr;
SwFormatFrameSize aFrameSz( pNewFormat->GetFrameSize() );
bool bDiffCount = false;
if( !pBox->GetTabLines().empty() )
{
pCmpLine = rFndBox.GetLines().front().get();
if ( pCmpLine->GetBoxes().size() != pCmpLine->GetLine()->GetTabBoxes().size() )
bDiffCount = true;
}
if( bDiffCount )
{
// The first Line should be enough
FndBoxes_t const& rFndBoxes = pCmpLine->GetBoxes();
tools::Long nSz = 0;
for( auto n = rFndBoxes.size(); n; )
{
nSz += rFndBoxes[--n]->GetBox()->
GetFrameFormat()->GetFrameSize().GetWidth();
}
aFrameSz.SetWidth( aFrameSz.GetWidth() -
nSz / ( pCpyPara->nCpyCnt + 1 ) );
pNewFormat->SetFormatAttr( aFrameSz );
aFrameSz.SetWidth( nSz / ( pCpyPara->nCpyCnt + 1 ) );
// Create a new Format for the new Box, specifying its size.
aFindFrame.pNewFrameFormat = reinterpret_cast<SwTableBoxFormat*>(pNewFormat->GetDoc().
MakeTableLineFormat());
*aFindFrame.pNewFrameFormat = *pNewFormat;
aFindFrame.pNewFrameFormat->SetFormatAttr( aFrameSz );
}
else
{
aFrameSz.SetWidth( aFrameSz.GetWidth() / ( pCpyPara->nCpyCnt + 1 ) );
pNewFormat->SetFormatAttr( aFrameSz );
aFindFrame.pNewFrameFormat = pNewFormat;
pCpyPara->rTabFrameArr.insert( aFindFrame );
aFindFrame.pFrameFormat = pNewFormat;
pCpyPara->rTabFrameArr.insert( aFindFrame );
}
}
else
{
aFindFrame = pCpyPara->rTabFrameArr[ nFndPos ];
pBox->ChgFrameFormat( aFindFrame.pNewFrameFormat );
}
}
else
{
CpyTabFrames::const_iterator itFind = pCpyPara->rTabFrameArr.find( aFindFrame );
if( pCpyPara->nDelBorderFlag &&
itFind != pCpyPara->rTabFrameArr.end() )
aFindFrame = *itFind;
else
aFindFrame.pNewFrameFormat = pBox->GetFrameFormat();
}
if (!rFndBox.GetLines().empty())
{
pBox = new SwTableBox( aFindFrame.pNewFrameFormat,
rFndBox.GetLines().size(), pCpyPara->pInsLine );
pCpyPara->pInsLine->GetTabBoxes().insert( pCpyPara->pInsLine->GetTabBoxes().begin() + pCpyPara->nInsPos++, pBox );
CpyPara aPara( *pCpyPara, pBox );
aPara.nDelBorderFlag &= 7;
for (auto const& pFndLine : rFndBox.GetLines())
{
lcl_CopyRow(*pFndLine, &aPara);
}
}
else
{
::InsTableBox( pCpyPara->rDoc, pCpyPara->pTableNd, pCpyPara->pInsLine,
aFindFrame.pNewFrameFormat, pBox, pCpyPara->nInsPos++ );
const FndBoxes_t& rFndBxs = rFndBox.GetUpper()->GetBoxes();
if( 8 > pCpyPara->nDelBorderFlag
? pCpyPara->nDelBorderFlag != 0
: &rFndBox == rFndBxs[rFndBxs.size() - 1].get())
{
const SvxBoxItem& rBoxItem = pBox->GetFrameFormat()->GetBox();
if( 8 > pCpyPara->nDelBorderFlag
? rBoxItem.GetTop()
: rBoxItem.GetRight() )
{
aFindFrame.pFrameFormat = pBox->GetFrameFormat();
SvxBoxItem aNew( rBoxItem );
if( 8 > pCpyPara->nDelBorderFlag )
aNew.SetLine( nullptr, SvxBoxItemLine::TOP );
else
aNew.SetLine( nullptr, SvxBoxItemLine::RIGHT );
if( 1 == pCpyPara->nDelBorderFlag ||
8 == pCpyPara->nDelBorderFlag )
{
// For all Boxes that delete TopBorderLine, we copy after that
pBox = pCpyPara->pInsLine->GetTabBoxes()[
pCpyPara->nInsPos - 1 ];
}
aFindFrame.pNewFrameFormat = pBox->GetFrameFormat();
// Else we copy before that and the first Line keeps the TopLine
// and we remove it at the original
pBox->ClaimFrameFormat()->SetFormatAttr( aNew );
if( !pCpyPara->nCpyCnt )
pCpyPara->rTabFrameArr.insert( aFindFrame );
}
}
}
}
static SwTableLine* lcl_CopyRow(FndLine_& rFndLine, CpyPara *const pCpyPara)
{
SwTableLine* pNewLine = new SwTableLine(
rFndLine.GetLine()->GetFrameFormat(),
rFndLine.GetBoxes().size(), pCpyPara->pInsBox );
if( pCpyPara->pInsBox )
{
SwTableLines& rLines = pCpyPara->pInsBox->GetTabLines();
rLines.insert( rLines.begin() + pCpyPara->nInsPos++, pNewLine );
}
else
{
SwTableLines& rLines = pCpyPara->pTableNd->GetTable().GetTabLines();
rLines.insert( rLines.begin() + pCpyPara->nInsPos++, pNewLine );
}
CpyPara aPara( *pCpyPara, pNewLine );
for (auto const& it : rFndLine.GetBoxes())
{
lcl_CopyCol(*it, &aPara);
}
pCpyPara->nDelBorderFlag &= 0xf8;
return pNewLine;
}
static void lcl_InsCol( FndLine_* pFndLn, CpyPara& rCpyPara, sal_uInt16 nCpyCnt,
bool bBehind )
{
// Bug 29124: Not only copy in the BaseLines. If possible, we go down as far as possible
FndBox_* pFBox;
if( 1 == pFndLn->GetBoxes().size() &&
!( pFBox = pFndLn->GetBoxes()[0].get() )->GetBox()->GetSttNd() )
{
// A Box with multiple Lines, so insert into these Lines
for (auto &rpLine : pFBox->GetLines())
{
lcl_InsCol( rpLine.get(), rCpyPara, nCpyCnt, bBehind );
}
}
else
{
rCpyPara.pInsLine = pFndLn->GetLine();
SwTableBox* pBox = pFndLn->GetBoxes()[ bBehind ?
pFndLn->GetBoxes().size()-1 : 0 ]->GetBox();
rCpyPara.nInsPos = pFndLn->GetLine()->GetBoxPos( pBox );
if( bBehind )
++rCpyPara.nInsPos;
for( sal_uInt16 n = 0; n < nCpyCnt; ++n )
{
if( n + 1 == nCpyCnt && bBehind )
rCpyPara.nDelBorderFlag = 9;
else
rCpyPara.nDelBorderFlag = 8;
for (auto const& it : pFndLn->GetBoxes())
{
lcl_CopyCol(*it, &rCpyPara);
}
}
}
}
static SwRowFrame* GetRowFrame( SwTableLine& rLine )
{
SwIterator<SwRowFrame,SwFormat> aIter( *rLine.GetFrameFormat() );
for( SwRowFrame* pFrame = aIter.First(); pFrame; pFrame = aIter.Next() )
if( pFrame->GetTabLine() == &rLine )
return pFrame;
return nullptr;
}
bool SwTable::InsertCol( SwDoc& rDoc, const SwSelBoxes& rBoxes, sal_uInt16 nCnt,
bool bBehind, bool bInsertDummy )
{
OSL_ENSURE( !rBoxes.empty() && nCnt, "No valid Box List" );
SwTableNode* pTableNd = const_cast<SwTableNode*>(rBoxes[0]->GetSttNd()->FindTableNode());
if( !pTableNd )
return false;
bool bRes = true;
if( IsNewModel() )
bRes = NewInsertCol( rDoc, rBoxes, nCnt, bBehind, bInsertDummy );
else
{
// Find all Boxes/Lines
FndBox_ aFndBox( nullptr, nullptr );
{
FndPara aPara( rBoxes, &aFndBox );
ForEach_FndLineCopyCol( GetTabLines(), &aPara );
}
if( aFndBox.GetLines().empty() )
return false;
SetHTMLTableLayout(std::shared_ptr<SwHTMLTableLayout>()); // Delete HTML Layout
// Find Lines for the layout update
aFndBox.SetTableLines( *this );
aFndBox.DelFrames( *this );
// TL_CHART2: nothing to be done since chart2 currently does not want to
// get notified about new rows/cols.
CpyTabFrames aTabFrameArr;
CpyPara aCpyPara( pTableNd, nCnt, aTabFrameArr );
for (auto & rpLine : aFndBox.GetLines())
{
lcl_InsCol( rpLine.get(), aCpyPara, nCnt, bBehind );
}
// clean up this Line's structure once again, generally all of them
GCLines();
// Update Layout
aFndBox.MakeFrames( *this );
#if defined DBG_UTIL
CheckBoxWidth(GetTabLines(), *GetFrameFormat());;
CheckTableLayout(GetTabLines());
#endif
bRes = true;
}
SwChartDataProvider *pPCD = rDoc.getIDocumentChartDataProviderAccess().GetChartDataProvider();
if (pPCD && nCnt)
pPCD->AddRowCols( *this, rBoxes, nCnt, bBehind );
rDoc.UpdateCharts( GetFrameFormat()->GetName() );
if (SwFEShell* pFEShell = rDoc.GetDocShell()->GetFEShell())
{
if (officecfg::Office::Writer::Table::Change::ApplyTableAutoFormat::get())
{
pFEShell->UpdateTableStyleFormatting();
}
}
return bRes;
}
bool SwTable::InsertRow_( SwDoc& rDoc, const SwSelBoxes& rBoxes,
sal_uInt16 nCnt, bool bBehind, bool bInsertDummy )
{
OSL_ENSURE( !rBoxes.empty() && nCnt, "No valid Box List" );
SwTableNode* pTableNd = const_cast<SwTableNode*>(rBoxes[0]->GetSttNd()->FindTableNode());
if( !pTableNd )
return false;
// Find all Boxes/Lines
FndBox_ aFndBox( nullptr, nullptr );
{
FndPara aPara( rBoxes, &aFndBox );
ForEach_FndLineCopyCol( GetTabLines(), &aPara );
}
if( aFndBox.GetLines().empty() )
return false;
SetHTMLTableLayout(std::shared_ptr<SwHTMLTableLayout>()); // Delete HTML Layout
FndBox_* pFndBox = &aFndBox;
{
FndLine_* pFndLine;
while( 1 == pFndBox->GetLines().size() )
{
pFndLine = pFndBox->GetLines()[0].get();
if( 1 != pFndLine->GetBoxes().size() )
break;
// Don't go down too far! One Line with Box needs to remain!
FndBox_ *const pTmpBox = pFndLine->GetBoxes().front().get();
if( !pTmpBox->GetLines().empty() )
pFndBox = pTmpBox;
else
break;
}
}
// Find Lines for the layout update
const bool bLayout = !IsNewModel() &&
nullptr != SwIterator<SwTabFrame,SwFormat>( *GetFrameFormat() ).First();
if ( bLayout )
{
aFndBox.SetTableLines( *this );
if( pFndBox != &aFndBox )
aFndBox.DelFrames( *this );
// TL_CHART2: nothing to be done since chart2 currently does not want to
// get notified about new rows/cols.
}
CpyTabFrames aTabFrameArr;
CpyPara aCpyPara( pTableNd, 0, aTabFrameArr );
SwTableLine* pLine = pFndBox->GetLines()[ bBehind ?
pFndBox->GetLines().size()-1 : 0 ]->GetLine();
if( &aFndBox == pFndBox )
aCpyPara.nInsPos = GetTabLines().GetPos( pLine );
else
{
aCpyPara.pInsBox = pFndBox->GetBox();
aCpyPara.nInsPos = pFndBox->GetBox()->GetTabLines().GetPos( pLine );
}
if( bBehind )
{
++aCpyPara.nInsPos;
aCpyPara.nDelBorderFlag = 1;
}
else
aCpyPara.nDelBorderFlag = 2;
for( sal_uInt16 nCpyCnt = 0; nCpyCnt < nCnt; ++nCpyCnt )
{
if( bBehind )
aCpyPara.nDelBorderFlag = 1;
for (auto & rpFndLine : pFndBox->GetLines())
{
SwTableLine* pNewTableLine = lcl_CopyRow( *rpFndLine, &aCpyPara );
// tracked insertion of empty table line
if ( rDoc.getIDocumentRedlineAccess().IsRedlineOn() )
{
SvxPrintItem aSetTracking(RES_PRINT, false);
SwPosition aPos(*pNewTableLine->GetTabBoxes()[0]->GetSttNd());
SwCursor aCursor( aPos, nullptr );
if ( bInsertDummy )
{
SwPaM aPaM(*pNewTableLine->GetTabBoxes()[0]->GetSttNd(), SwNodeOffset(1));
rDoc.getIDocumentContentOperations().InsertString( aPaM,
OUStringChar(CH_TXT_TRACKED_DUMMY_CHAR) );
}
rDoc.SetRowNotTracked( aCursor, aSetTracking, /*bAll=*/false, /*bIns=*/true );
}
}
}
// clean up this Line's structure once again, generally all of them
if( !rDoc.IsInReading() )
GCLines();
// Update Layout
if ( bLayout )
{
if( pFndBox != &aFndBox )
aFndBox.MakeFrames( *this );
else
aFndBox.MakeNewFrames( *this, nCnt, bBehind );
}
#if defined DBG_UTIL
CheckBoxWidth(GetTabLines(), *GetFrameFormat());;
CheckTableLayout(GetTabLines());
#endif
SwChartDataProvider *pPCD = rDoc.getIDocumentChartDataProviderAccess().GetChartDataProvider();
if (pPCD && nCnt)
pPCD->AddRowCols( *this, rBoxes, nCnt, bBehind );
rDoc.UpdateCharts( GetFrameFormat()->GetName() );
if (SwFEShell* pFEShell = rDoc.GetDocShell()->GetFEShell())
{
if (officecfg::Office::Writer::Table::Change::ApplyTableAutoFormat::get())
{
pFEShell->UpdateTableStyleFormatting(pTableNd);
}
}
return true;
}
static void lcl_LastBoxSetWidth( SwTableBoxes &rBoxes, const tools::Long nOffset,
bool bFirst, SwShareBoxFormats& rShareFormats );
static void lcl_LastBoxSetWidthLine( SwTableLines &rLines, const tools::Long nOffset,
bool bFirst, SwShareBoxFormats& rShareFormats )
{
for ( auto pLine : rLines )
::lcl_LastBoxSetWidth( pLine->GetTabBoxes(), nOffset, bFirst, rShareFormats );
}
static void lcl_LastBoxSetWidth( SwTableBoxes &rBoxes, const tools::Long nOffset,
bool bFirst, SwShareBoxFormats& rShareFormats )
{
SwTableBox& rBox = *(bFirst ? rBoxes.front() : rBoxes.back());
if( !rBox.GetSttNd() )
::lcl_LastBoxSetWidthLine( rBox.GetTabLines(), nOffset,
bFirst, rShareFormats );
// Adapt the Box
const SwFrameFormat *pBoxFormat = rBox.GetFrameFormat();
SwFormatFrameSize aNew( pBoxFormat->GetFrameSize() );
aNew.SetWidth( aNew.GetWidth() + nOffset );
SwFrameFormat *pFormat = rShareFormats.GetFormat( *pBoxFormat, aNew );
if( pFormat )
rBox.ChgFrameFormat( static_cast<SwTableBoxFormat*>(pFormat) );
else
{
pFormat = rBox.ClaimFrameFormat();
pFormat->LockModify();
pFormat->SetFormatAttr( aNew );
pFormat->UnlockModify();
rShareFormats.AddFormat( *pBoxFormat, *pFormat );
}
}
void DeleteBox_( SwTable& rTable, SwTableBox* pBox, SwUndo* pUndo,
bool bCalcNewSize, const bool bCorrBorder,
SwShareBoxFormats* pShareFormats )
{
do {
SwTwips nBoxSz = bCalcNewSize ?
pBox->GetFrameFormat()->GetFrameSize().GetWidth() : 0;
SwTableLine* pLine = pBox->GetUpper();
SwTableBoxes& rTableBoxes = pLine->GetTabBoxes();
sal_uInt16 nDelPos = pLine->GetBoxPos( pBox );
SwTableBox* pUpperBox = pBox->GetUpper()->GetUpper();
// Special treatment for the border:
if( bCorrBorder && 1 < rTableBoxes.size() )
{
const SvxBoxItem& rBoxItem = pBox->GetFrameFormat()->GetBox();
if( rBoxItem.GetLeft() || rBoxItem.GetRight() )
{
bool bChgd = false;
// JP 02.04.97: 1st part for Bug 36271
// First the left/right edges
if( nDelPos + 1 < o3tl::narrowing<sal_uInt16>(rTableBoxes.size()) )
{
SwTableBox* pNxtBox = rTableBoxes[ nDelPos + 1 ];
const SvxBoxItem& rNxtBoxItem = pNxtBox->GetFrameFormat()->GetBox();
SwTableBox* pPrvBox = nDelPos ? rTableBoxes[ nDelPos - 1 ] : nullptr;
if( pNxtBox->GetSttNd() && !rNxtBoxItem.GetLeft() &&
( !pPrvBox || !pPrvBox->GetFrameFormat()->GetBox().GetRight()) )
{
SvxBoxItem aTmp( rNxtBoxItem );
aTmp.SetLine( rBoxItem.GetLeft() ? rBoxItem.GetLeft()
: rBoxItem.GetRight(),
SvxBoxItemLine::LEFT );
if( pShareFormats )
pShareFormats->SetAttr( *pNxtBox, aTmp );
else
pNxtBox->ClaimFrameFormat()->SetFormatAttr( aTmp );
bChgd = true;
}
}
if( !bChgd && nDelPos )
{
SwTableBox* pPrvBox = rTableBoxes[ nDelPos - 1 ];
const SvxBoxItem& rPrvBoxItem = pPrvBox->GetFrameFormat()->GetBox();
SwTableBox* pNxtBox = nDelPos + 1 < o3tl::narrowing<sal_uInt16>(rTableBoxes.size())
? rTableBoxes[ nDelPos + 1 ] : nullptr;
if( pPrvBox->GetSttNd() && !rPrvBoxItem.GetRight() &&
( !pNxtBox || !pNxtBox->GetFrameFormat()->GetBox().GetLeft()) )
{
SvxBoxItem aTmp( rPrvBoxItem );
aTmp.SetLine( rBoxItem.GetLeft() ? rBoxItem.GetLeft()
: rBoxItem.GetRight(),
SvxBoxItemLine::RIGHT );
if( pShareFormats )
pShareFormats->SetAttr( *pPrvBox, aTmp );
else
pPrvBox->ClaimFrameFormat()->SetFormatAttr( aTmp );
}
}
}
}
// Delete the Box first, then the Nodes!
SwStartNode* pSttNd = const_cast<SwStartNode*>(pBox->GetSttNd());
if( pShareFormats )
pShareFormats->RemoveFormat( *rTableBoxes[ nDelPos ]->GetFrameFormat() );
// Before deleting the 'Table Box' from memory - delete any redlines attached to it
rTable.GetFrameFormat()->GetDoc().getIDocumentRedlineAccess().GetExtraRedlineTable().DeleteTableCellRedline( rTable.GetFrameFormat()->GetDoc(), *(rTableBoxes[nDelPos]), true, RedlineType::Any );
delete rTableBoxes[nDelPos];
rTableBoxes.erase( rTableBoxes.begin() + nDelPos );
if( pSttNd )
{
// Has the UndoObject been prepared to save the Section?
if( pUndo && pUndo->IsDelBox() )
static_cast<SwUndoTableNdsChg*>(pUndo)->SaveSection( pSttNd );
else
pSttNd->GetDoc().getIDocumentContentOperations().DeleteSection( pSttNd );
}
// Also delete the Line?
if( !rTableBoxes.empty() )
{
// Then adapt the Frame-SSize
bool bLastBox = nDelPos == rTableBoxes.size();
if( bLastBox )
--nDelPos;
pBox = rTableBoxes[nDelPos];
if( bCalcNewSize )
{
SwFormatFrameSize aNew( pBox->GetFrameFormat()->GetFrameSize() );
aNew.SetWidth( aNew.GetWidth() + nBoxSz );
if( pShareFormats )
pShareFormats->SetSize( *pBox, aNew );
else
pBox->ClaimFrameFormat()->SetFormatAttr( aNew );
if( !pBox->GetSttNd() )
{
// We need to this recursively in all Lines in all Cells!
SwShareBoxFormats aShareFormats;
::lcl_LastBoxSetWidthLine( pBox->GetTabLines(), nBoxSz,
!bLastBox,
pShareFormats ? *pShareFormats
: aShareFormats );
}
}
break; // Stop deleting
}
// Delete the Line from the Table/Box
if( !pUpperBox )
{
// Also delete the Line from the Table
nDelPos = rTable.GetTabLines().GetPos( pLine );
if( pShareFormats )
pShareFormats->RemoveFormat( *rTable.GetTabLines()[ nDelPos ]->GetFrameFormat() );
SwTableLine* pTabLineToDelete = rTable.GetTabLines()[ nDelPos ];
// Before deleting the 'Table Line' from memory - delete any redlines attached to it
rTable.GetFrameFormat()->GetDoc().getIDocumentRedlineAccess().GetExtraRedlineTable().DeleteTableRowRedline( rTable.GetFrameFormat()->GetDoc(), *pTabLineToDelete, true, RedlineType::Any );
delete pTabLineToDelete;
rTable.GetTabLines().erase( rTable.GetTabLines().begin() + nDelPos );
break; // we cannot delete more
}
// finally also delete the Line
pBox = pUpperBox;
nDelPos = pBox->GetTabLines().GetPos( pLine );
if( pShareFormats )
pShareFormats->RemoveFormat( *pBox->GetTabLines()[ nDelPos ]->GetFrameFormat() );
SwTableLine* pTabLineToDelete = pBox->GetTabLines()[ nDelPos ];
// Before deleting the 'Table Line' from memory - delete any redlines attached to it
rTable.GetFrameFormat()->GetDoc().getIDocumentRedlineAccess().GetExtraRedlineTable().DeleteTableRowRedline( rTable.GetFrameFormat()->GetDoc(), *pTabLineToDelete, true, RedlineType::Any );
delete pTabLineToDelete;
pBox->GetTabLines().erase( pBox->GetTabLines().begin() + nDelPos );
} while( pBox->GetTabLines().empty() );
}
static SwTableBox*
lcl_FndNxtPrvDelBox( const SwTableLines& rTableLns,
SwTwips nBoxStt, SwTwips nBoxWidth,
sal_uInt16 nLinePos, bool bNxt,
SwSelBoxes* pAllDelBoxes, size_t *const pCurPos)
{
SwTableBox* pFndBox = nullptr;
do {
if( bNxt )
++nLinePos;
else
--nLinePos;
SwTableLine* pLine = rTableLns[ nLinePos ];
SwTwips nFndBoxWidth = 0;
SwTwips nFndWidth = nBoxStt + nBoxWidth;
pFndBox = pLine->GetTabBoxes()[ 0 ];
for( auto pBox : pLine->GetTabBoxes() )
{
if ( nFndWidth <= 0 )
{
break;
}
pFndBox = pBox;
nFndBoxWidth = pFndBox->GetFrameFormat()->GetFrameSize().GetWidth();
nFndWidth -= nFndBoxWidth;
}
// Find the first ContentBox
while( !pFndBox->GetSttNd() )
{
const SwTableLines& rLowLns = pFndBox->GetTabLines();
if( bNxt )
pFndBox = rLowLns.front()->GetTabBoxes().front();
else
pFndBox = rLowLns.back()->GetTabBoxes().front();
}
if( std::abs( nFndWidth ) > COLFUZZY ||
std::abs( nBoxWidth - nFndBoxWidth ) > COLFUZZY )
pFndBox = nullptr;
else if( pAllDelBoxes )
{
// If the predecessor will also be deleted, there's nothing to do
SwSelBoxes::const_iterator aFndIt = pAllDelBoxes->find( pFndBox);
if( aFndIt == pAllDelBoxes->end() )
break;
size_t const nFndPos = aFndIt - pAllDelBoxes->begin() ;
// else, we keep on searching.
// We do not need to recheck the Box, however
pFndBox = nullptr;
if( nFndPos <= *pCurPos )
--*pCurPos;
pAllDelBoxes->erase( pAllDelBoxes->begin() + nFndPos );
}
} while( bNxt ? ( nLinePos + 1 < o3tl::narrowing<sal_uInt16>(rTableLns.size()) ) : nLinePos != 0 );
return pFndBox;
}
static void
lcl_SaveUpperLowerBorder( SwTable& rTable, const SwTableBox& rBox,
SwShareBoxFormats& rShareFormats,
SwSelBoxes* pAllDelBoxes = nullptr,
size_t *const pCurPos = nullptr )
{
//JP 16.04.97: 2. part for Bug 36271
const SwTableLine* pLine = rBox.GetUpper();
const SwTableBoxes& rTableBoxes = pLine->GetTabBoxes();
const SwTableBox* pUpperBox = &rBox;
sal_uInt16 nDelPos = pLine->GetBoxPos( pUpperBox );
pUpperBox = rBox.GetUpper()->GetUpper();
const SvxBoxItem& rBoxItem = rBox.GetFrameFormat()->GetBox();
// then the top/bottom edges
if( !rBoxItem.GetTop() && !rBoxItem.GetBottom() )
return;
bool bChgd = false;
const SwTableLines* pTableLns;
if( pUpperBox )
pTableLns = &pUpperBox->GetTabLines();
else
pTableLns = &rTable.GetTabLines();
sal_uInt16 nLnPos = pTableLns->GetPos( pLine );
// Calculate the attribute position of the top-be-deleted Box and then
// search in the top/bottom Line of the respective counterparts.
SwTwips nBoxStt = 0;
for( sal_uInt16 n = 0; n < nDelPos; ++n )
nBoxStt += rTableBoxes[ n ]->GetFrameFormat()->GetFrameSize().GetWidth();
SwTwips nBoxWidth = rBox.GetFrameFormat()->GetFrameSize().GetWidth();
SwTableBox *pPrvBox = nullptr, *pNxtBox = nullptr;
if( nLnPos ) // Predecessor?
pPrvBox = ::lcl_FndNxtPrvDelBox( *pTableLns, nBoxStt, nBoxWidth,
nLnPos, false, pAllDelBoxes, pCurPos );
if( nLnPos + 1 < o3tl::narrowing<sal_uInt16>(pTableLns->size()) ) // Successor?
pNxtBox = ::lcl_FndNxtPrvDelBox( *pTableLns, nBoxStt, nBoxWidth,
nLnPos, true, pAllDelBoxes, pCurPos );
if( pNxtBox && pNxtBox->GetSttNd() )
{
const SvxBoxItem& rNxtBoxItem = pNxtBox->GetFrameFormat()->GetBox();
if( !rNxtBoxItem.GetTop() && ( !pPrvBox ||
!pPrvBox->GetFrameFormat()->GetBox().GetBottom()) )
{
SvxBoxItem aTmp( rNxtBoxItem );
aTmp.SetLine( rBoxItem.GetTop() ? rBoxItem.GetTop()
: rBoxItem.GetBottom(),
SvxBoxItemLine::TOP );
rShareFormats.SetAttr( *pNxtBox, aTmp );
bChgd = true;
}
}
if( !(!bChgd && pPrvBox && pPrvBox->GetSttNd()) )
return;
const SvxBoxItem& rPrvBoxItem = pPrvBox->GetFrameFormat()->GetBox();
if( !rPrvBoxItem.GetTop() && ( !pNxtBox ||
!pNxtBox->GetFrameFormat()->GetBox().GetTop()) )
{
SvxBoxItem aTmp( rPrvBoxItem );
aTmp.SetLine( rBoxItem.GetTop() ? rBoxItem.GetTop()
: rBoxItem.GetBottom(),
SvxBoxItemLine::BOTTOM );
rShareFormats.SetAttr( *pPrvBox, aTmp );
}
}
bool SwTable::DeleteSel(
SwDoc& rDoc
,
const SwSelBoxes& rBoxes,
const SwSelBoxes* pMerged, SwUndo* pUndo,
const bool bDelMakeFrames, const bool bCorrBorder )
{
SwTableNode* pTableNd = nullptr;
if( !rBoxes.empty() )
{
pTableNd = const_cast<SwTableNode*>(rBoxes[0]->GetSttNd()->FindTableNode());
if( !pTableNd )
return false;
}
SetHTMLTableLayout(std::shared_ptr<SwHTMLTableLayout>()); // Delete HTML Layout
// Find Lines for the Layout update
FndBox_ aFndBox( nullptr, nullptr );
if ( bDelMakeFrames )
{
if( pMerged && !pMerged->empty() )
aFndBox.SetTableLines( *pMerged, *this );
else if( !rBoxes.empty() )
aFndBox.SetTableLines( rBoxes, *this );
aFndBox.DelFrames( *this );
}
SwShareBoxFormats aShareFormats;
// First switch the Border, then delete
if( bCorrBorder )
{
SwSelBoxes aBoxes( rBoxes );
for (size_t n = 0; n < aBoxes.size(); ++n)
{
::lcl_SaveUpperLowerBorder( *this, *rBoxes[ n ], aShareFormats,
&aBoxes, &n );
}
}
PrepareDelBoxes( rBoxes );
SwChartDataProvider *pPCD = rDoc.getIDocumentChartDataProviderAccess().GetChartDataProvider();
// Delete boxes from last to first
for (size_t n = 0; n < rBoxes.size(); ++n)
{
size_t const nIdx = rBoxes.size() - 1 - n;
// First adapt the data-sequence for chart if necessary
// (needed to move the implementation cursor properly to its new
// position which can't be done properly if the cell is already gone)
if (pPCD && pTableNd)
pPCD->DeleteBox( &pTableNd->GetTable(), *rBoxes[nIdx] );
// ... then delete the boxes
DeleteBox_( *this, rBoxes[nIdx], pUndo, true, bCorrBorder, &aShareFormats );
}
// then clean up the structure of all Lines
GCLines();
if( bDelMakeFrames && aFndBox.AreLinesToRestore( *this ) )
aFndBox.MakeFrames( *this );
// TL_CHART2: now inform chart that sth has changed
rDoc.UpdateCharts( GetFrameFormat()->GetName() );
#if defined DBG_UTIL
CheckTableLayout(GetTabLines());
#endif
CHECK_TABLE( *this );
return true;
}
bool SwTable::OldSplitRow( SwDoc& rDoc, const SwSelBoxes& rBoxes, sal_uInt16 nCnt,
bool bSameHeight )
{
OSL_ENSURE( !rBoxes.empty() && nCnt, "No valid values" );
SwTableNode* pTableNd = const_cast<SwTableNode*>(rBoxes[0]->GetSttNd()->FindTableNode());
if( !pTableNd )
return false;
// TL_CHART2: splitting/merging of a number of cells or rows will usually make
// the table too complex to be handled with chart.
// Thus we tell the charts to use their own data provider and forget about this table
rDoc.getIDocumentChartDataProviderAccess().CreateChartInternalDataProviders( this );
SetHTMLTableLayout(std::shared_ptr<SwHTMLTableLayout>()); // Delete HTML Layout
// If the rows should get the same (min) height, we first have
// to store the old row heights before deleting the frames
std::unique_ptr<tools::Long[]> pRowHeights;
if ( bSameHeight )
{
pRowHeights.reset(new tools::Long[ rBoxes.size() ]);
for (size_t n = 0; n < rBoxes.size(); ++n)
{
SwTableBox* pSelBox = rBoxes[n];
const SwRowFrame* pRow = GetRowFrame( *pSelBox->GetUpper() );
OSL_ENSURE( pRow, "Where is the SwTableLine's Frame?" );
SwRectFnSet aRectFnSet(pRow);
pRowHeights[ n ] = aRectFnSet.GetHeight(pRow->getFrameArea());
}
}
// Find Lines for the Layout update
FndBox_ aFndBox( nullptr, nullptr );
aFndBox.SetTableLines( rBoxes, *this );
aFndBox.DelFrames( *this );
for (size_t n = 0; n < rBoxes.size(); ++n)
{
SwTableBox* pSelBox = rBoxes[n];
OSL_ENSURE( pSelBox, "Box is not within the Table" );
// Insert nCnt new Lines into the Box
SwTableLine* pInsLine = pSelBox->GetUpper();
SwTableBoxFormat* pFrameFormat = pSelBox->GetFrameFormat();
// Respect the Line's height, reset if needed
SwFormatFrameSize aFSz( pInsLine->GetFrameFormat()->GetFrameSize() );
if ( bSameHeight && SwFrameSize::Variable == aFSz.GetHeightSizeType() )
aFSz.SetHeightSizeType( SwFrameSize::Minimum );
bool bChgLineSz = 0 != aFSz.GetHeight() || bSameHeight;
if ( bChgLineSz )
aFSz.SetHeight( ( bSameHeight ? pRowHeights[ n ] : aFSz.GetHeight() ) /
(nCnt + 1) );
SwTableBox* pNewBox = new SwTableBox( pFrameFormat, nCnt, pInsLine );
sal_uInt16 nBoxPos = pInsLine->GetBoxPos( pSelBox );
pInsLine->GetTabBoxes()[nBoxPos] = pNewBox; // overwrite old one
// Delete background/border attribute
SwTableBox* pLastBox = pSelBox; // To distribute the TextNodes!
// If Areas are contained in the Box, it stays as is
// !! If this is changed we need to adapt the Undo, too !!!
bool bMoveNodes = true;
{
SwNodeOffset nSttNd = pLastBox->GetSttIdx() + 1,
nEndNd = pLastBox->GetSttNd()->EndOfSectionIndex();
while( nSttNd < nEndNd )
if( !rDoc.GetNodes()[ nSttNd++ ]->IsTextNode() )
{
bMoveNodes = false;
break;
}
}
SwTableBoxFormat* pCpyBoxFrameFormat = pSelBox->GetFrameFormat();
bool bChkBorder = nullptr != pCpyBoxFrameFormat->GetBox().GetTop();
if( bChkBorder )
pCpyBoxFrameFormat = pSelBox->ClaimFrameFormat();
for( sal_uInt16 i = 0; i <= nCnt; ++i )
{
// Create a new Line in the new Box
SwTableLine* pNewLine = new SwTableLine(
pInsLine->GetFrameFormat(), 1, pNewBox );
if( bChgLineSz )
{
pNewLine->ClaimFrameFormat()->SetFormatAttr( aFSz );
}
pNewBox->GetTabLines().insert( pNewBox->GetTabLines().begin() + i, pNewLine );
// then a new Box in the Line
if( !i ) // hang up the original Box
{
pSelBox->SetUpper( pNewLine );
pNewLine->GetTabBoxes().insert( pNewLine->GetTabBoxes().begin(), pSelBox );
}
else
{
::InsTableBox( rDoc, pTableNd, pNewLine, pCpyBoxFrameFormat,
pLastBox, 0 );
if( bChkBorder )
{
pCpyBoxFrameFormat = pNewLine->GetTabBoxes()[ 0 ]->ClaimFrameFormat();
SvxBoxItem aTmp( pCpyBoxFrameFormat->GetBox() );
aTmp.SetLine( nullptr, SvxBoxItemLine::TOP );
pCpyBoxFrameFormat->SetFormatAttr( aTmp );
bChkBorder = false;
}
if( bMoveNodes )
{
const SwNode* pEndNd = pLastBox->GetSttNd()->EndOfSectionNode();
if( pLastBox->GetSttIdx()+SwNodeOffset(2) != pEndNd->GetIndex() )
{
// Move TextNodes
SwNodeRange aRg( *pLastBox->GetSttNd(), SwNodeOffset(+2), *pEndNd );
pLastBox = pNewLine->GetTabBoxes()[0]; // reset
SwNodeIndex aInsPos( *pLastBox->GetSttNd(), 1 );
rDoc.GetNodes().MoveNodes(aRg, rDoc.GetNodes(), aInsPos.GetNode(), false);
rDoc.GetNodes().Delete( aInsPos ); // delete the empty one
}
}
}
}
// In Boxes with Lines, we can only have Size/Fillorder
pFrameFormat = pNewBox->ClaimFrameFormat();
pFrameFormat->ResetFormatAttr( RES_LR_SPACE, RES_FRMATR_END - 1 );
pFrameFormat->ResetFormatAttr( RES_BOXATR_BEGIN, RES_BOXATR_END - 1 );
}
pRowHeights.reset();
GCLines();
aFndBox.MakeFrames( *this );
#if defined DBG_UTIL
CheckBoxWidth(GetTabLines(), *GetFrameFormat());;
CheckTableLayout(GetTabLines());
#endif
return true;
}
bool SwTable::SplitCol(SwDoc& rDoc, const SwSelBoxes& rBoxes, sal_uInt16 nCnt)
{
OSL_ENSURE( !rBoxes.empty() && nCnt, "No valid values" );
SwTableNode* pTableNd = const_cast<SwTableNode*>(rBoxes[0]->GetSttNd()->FindTableNode());
if( !pTableNd )
return false;
// TL_CHART2: splitting/merging of a number of cells or rows will usually make
// the table too complex to be handled with chart.
// Thus we tell the charts to use their own data provider and forget about this table
rDoc.getIDocumentChartDataProviderAccess().CreateChartInternalDataProviders( this );
SetHTMLTableLayout(std::shared_ptr<SwHTMLTableLayout>()); // Delete HTML Layout
SwSelBoxes aSelBoxes(rBoxes);
ExpandSelection( aSelBoxes );
// Find Lines for the Layout update
FndBox_ aFndBox( nullptr, nullptr );
aFndBox.SetTableLines( aSelBoxes, *this );
aFndBox.DelFrames( *this );
CpyTabFrames aFrameArr;
std::vector<SwTableBoxFormat*> aLastBoxArr;
for (size_t n = 0; n < aSelBoxes.size(); ++n)
{
SwTableBox* pSelBox = aSelBoxes[n];
OSL_ENSURE( pSelBox, "Box is not in the table" );
// We don't want to split small table cells into very very small cells
if( pSelBox->GetFrameFormat()->GetFrameSize().GetWidth()/( nCnt + 1 ) < 10 )
continue;
// Then split the nCnt Box up into nCnt Boxes
SwTableLine* pInsLine = pSelBox->GetUpper();
sal_uInt16 nBoxPos = pInsLine->GetBoxPos( pSelBox );
// Find the Frame Format in the Frame Format Array
SwTableBoxFormat* pLastBoxFormat;
CpyTabFrame aFindFrame( pSelBox->GetFrameFormat() );
CpyTabFrames::const_iterator itFind = aFrameArr.lower_bound( aFindFrame );
const size_t nFndPos = itFind - aFrameArr.begin();
if( itFind == aFrameArr.end() || !(*itFind == aFindFrame) )
{
// Change the FrameFormat
aFindFrame.pNewFrameFormat = pSelBox->ClaimFrameFormat();
SwTwips nBoxSz = aFindFrame.pNewFrameFormat->GetFrameSize().GetWidth();
SwTwips nNewBoxSz = nBoxSz / ( nCnt + 1 );
aFindFrame.pNewFrameFormat->SetFormatAttr( SwFormatFrameSize( SwFrameSize::Variable,
nNewBoxSz, 0 ) );
aFrameArr.insert( aFindFrame );
pLastBoxFormat = aFindFrame.pNewFrameFormat;
if( nBoxSz != ( nNewBoxSz * (nCnt + 1)))
{
// We have a remainder, so we need to define an own Format
// for the last Box.
pLastBoxFormat = new SwTableBoxFormat( *aFindFrame.pNewFrameFormat );
pLastBoxFormat->SetFormatAttr( SwFormatFrameSize( SwFrameSize::Variable,
nBoxSz - ( nNewBoxSz * nCnt ), 0 ) );
}
aLastBoxArr.insert( aLastBoxArr.begin() + nFndPos, pLastBoxFormat );
}
else
{
aFindFrame = aFrameArr[ nFndPos ];
pSelBox->ChgFrameFormat( aFindFrame.pNewFrameFormat );
pLastBoxFormat = aLastBoxArr[ nFndPos ];
}
// Insert the Boxes at the Position
for( sal_uInt16 i = 1; i < nCnt; ++i )
::InsTableBox( rDoc, pTableNd, pInsLine, aFindFrame.pNewFrameFormat,
pSelBox, nBoxPos + i ); // insert after
::InsTableBox( rDoc, pTableNd, pInsLine, pLastBoxFormat,
pSelBox, nBoxPos + nCnt ); // insert after
// Special treatment for the Border:
const SvxBoxItem& aSelBoxItem = aFindFrame.pNewFrameFormat->GetBox();
if( aSelBoxItem.GetRight() )
{
pInsLine->GetTabBoxes()[ nBoxPos + nCnt ]->ClaimFrameFormat();
SvxBoxItem aTmp( aSelBoxItem );
aTmp.SetLine( nullptr, SvxBoxItemLine::RIGHT );
aFindFrame.pNewFrameFormat->SetFormatAttr( aTmp );
// Remove the Format from the "cache"
for( auto i = aFrameArr.size(); i; )
{
const CpyTabFrame& rCTF = aFrameArr[ --i ];
if( rCTF.pNewFrameFormat == aFindFrame.pNewFrameFormat ||
rCTF.pFrameFormat == aFindFrame.pNewFrameFormat )
{
aFrameArr.erase( aFrameArr.begin() + i );
aLastBoxArr.erase( aLastBoxArr.begin() + i );
}
}
}
}
// Update Layout
aFndBox.MakeFrames( *this );
#if defined DBG_UTIL
CheckBoxWidth(GetTabLines(), *GetFrameFormat());;
CheckTableLayout(GetTabLines());
#endif
return true;
}
/*
* >> MERGE <<
* Algorithm:
* If we only have one Line in the FndBox_, take this Line and test
* the Box count:
* If we have more than one Box, we merge on Box level, meaning
* the new Box will be as wide as the old ones.
* All Lines that are above/under the Area, are inserted into
* the Box as Line + Box.
* All Lines that come before/after the Area, are inserted into
* the Boxes Left/Right.
*
* >> MERGE <<
*/
static void lcl_CpyLines( sal_uInt16 nStt, sal_uInt16 nEnd,
SwTableLines& rLines,
SwTableBox* pInsBox,
sal_uInt16 nPos = USHRT_MAX )
{
for( sal_uInt16 n = nStt; n < nEnd; ++n )
rLines[n]->SetUpper( pInsBox );
if( USHRT_MAX == nPos )
nPos = pInsBox->GetTabLines().size();
pInsBox->GetTabLines().insert( pInsBox->GetTabLines().begin() + nPos,
rLines.begin() + nStt, rLines.begin() + nEnd );
rLines.erase( rLines.begin() + nStt, rLines.begin() + nEnd );
}
static void lcl_CpyBoxes( sal_uInt16 nStt, sal_uInt16 nEnd,
SwTableBoxes& rBoxes,
SwTableLine* pInsLine )
{
for( sal_uInt16 n = nStt; n < nEnd; ++n )
rBoxes[n]->SetUpper( pInsLine );
sal_uInt16 nPos = pInsLine->GetTabBoxes().size();
pInsLine->GetTabBoxes().insert( pInsLine->GetTabBoxes().begin() + nPos,
rBoxes.begin() + nStt, rBoxes.begin() + nEnd );
rBoxes.erase( rBoxes.begin() + nStt, rBoxes.begin() + nEnd );
}
static void lcl_CalcWidth( SwTableBox* pBox )
{
// Assertion: Every Line in the Box is as large
SwFrameFormat* pFormat = pBox->ClaimFrameFormat();
OSL_ENSURE( pBox->GetTabLines().size(), "Box does not have any Lines" );
SwTableLine* pLine = pBox->GetTabLines()[0];
OSL_ENSURE( pLine, "Box is not within a Line" );
tools::Long nWidth = 0;
for( auto pTabBox : pLine->GetTabBoxes() )
nWidth += pTabBox->GetFrameFormat()->GetFrameSize().GetWidth();
pFormat->SetFormatAttr( SwFormatFrameSize( SwFrameSize::Variable, nWidth, 0 ));
// Boxes with Lines can only have Size/Fillorder
pFormat->ResetFormatAttr( RES_LR_SPACE, RES_FRMATR_END - 1 );
pFormat->ResetFormatAttr( RES_BOXATR_BEGIN, RES_BOXATR_END - 1 );
}
namespace {
struct InsULPara
{
SwTableNode* pTableNd;
SwTableLine* pInsLine;
SwTableBox* pInsBox;
bool bUL_LR : 1; // Upper-Lower(true) or Left-Right(false) ?
bool bUL : 1; // Upper-Left(true) or Lower-Right(false) ?
SwTableBox* pLeftBox;
InsULPara( SwTableNode* pTNd,
SwTableBox* pLeft,
SwTableLine* pLine )
: pTableNd( pTNd ), pInsLine( pLine ), pInsBox( nullptr ),
pLeftBox( pLeft )
{ bUL_LR = true; bUL = true; }
void SetLeft( SwTableBox* pBox )
{ bUL_LR = false; bUL = true; if( pBox ) pInsBox = pBox; }
void SetRight( SwTableBox* pBox )
{ bUL_LR = false; bUL = false; if( pBox ) pInsBox = pBox; }
void SetLower( SwTableLine* pLine )
{ bUL_LR = true; bUL = false; if( pLine ) pInsLine = pLine; }
};
}
static void lcl_Merge_MoveLine(FndLine_ & rFndLine, InsULPara *const pULPara);
static void lcl_Merge_MoveBox(FndBox_ & rFndBox, InsULPara *const pULPara)
{
SwTableBoxes* pBoxes;
sal_uInt16 nStt = 0, nEnd = rFndBox.GetLines().size();
sal_uInt16 nInsPos = USHRT_MAX;
if( !pULPara->bUL_LR ) // Left/Right
{
sal_uInt16 nPos;
SwTableBox* pFndTableBox = rFndBox.GetBox();
pBoxes = &pFndTableBox->GetUpper()->GetTabBoxes();
if( pULPara->bUL ) // Left ?
{
// if there are Boxes before it, move them
nPos = pFndTableBox->GetUpper()->GetBoxPos( pFndTableBox );
if( 0 != nPos )
lcl_CpyBoxes( 0, nPos, *pBoxes, pULPara->pInsLine );
}
else // Right
{
// if there are Boxes behind it, move them
nPos = pFndTableBox->GetUpper()->GetBoxPos( pFndTableBox );
if( nPos +1 < o3tl::narrowing<sal_uInt16>(pBoxes->size()) )
{
nInsPos = pULPara->pInsLine->GetTabBoxes().size();
lcl_CpyBoxes( nPos+1, pBoxes->size(),
*pBoxes, pULPara->pInsLine );
}
}
}
// Upper/Lower and still deeper?
else if (!rFndBox.GetLines().empty())
{
// Only search the Line from which we need to move
nStt = pULPara->bUL ? 0 : rFndBox.GetLines().size()-1;
nEnd = nStt+1;
}
pBoxes = &pULPara->pInsLine->GetTabBoxes();
// Is there still a level to step down to?
if (rFndBox.GetBox()->GetTabLines().empty())
return;
SwTableBox* pBox = new SwTableBox(
rFndBox.GetBox()->GetFrameFormat(),
0, pULPara->pInsLine );
InsULPara aPara( *pULPara );
aPara.pInsBox = pBox;
for (FndLines_t::iterator it = rFndBox.GetLines().begin() + nStt;
it != rFndBox.GetLines().begin() + nEnd; ++it )
{
lcl_Merge_MoveLine(**it, &aPara);
}
if( !pBox->GetTabLines().empty() )
{
if( USHRT_MAX == nInsPos )
nInsPos = pBoxes->size();
pBoxes->insert( pBoxes->begin() + nInsPos, pBox );
lcl_CalcWidth( pBox ); // calculate the Box's width
}
else
delete pBox;
}
static void lcl_Merge_MoveLine(FndLine_& rFndLine, InsULPara *const pULPara)
{
SwTableLines* pLines;
sal_uInt16 nStt = 0, nEnd = rFndLine.GetBoxes().size();
sal_uInt16 nInsPos = USHRT_MAX;
if( pULPara->bUL_LR ) // UpperLower ?
{
sal_uInt16 nPos;
SwTableLine* pFndLn = rFndLine.GetLine();
pLines = pFndLn->GetUpper() ?
&pFndLn->GetUpper()->GetTabLines() :
&pULPara->pTableNd->GetTable().GetTabLines();
SwTableBox* pLBx = rFndLine.GetBoxes().front()->GetBox();
SwTableBox* pRBx = rFndLine.GetBoxes().back()->GetBox();
sal_uInt16 nLeft = pFndLn->GetBoxPos( pLBx );
sal_uInt16 nRight = pFndLn->GetBoxPos( pRBx );
if( !nLeft || nRight == pFndLn->GetTabBoxes().size() )
{
if( pULPara->bUL ) // Upper ?
{
// If there are Lines before it, move them
nPos = pLines->GetPos( pFndLn );
if( 0 != nPos )
lcl_CpyLines( 0, nPos, *pLines, pULPara->pInsBox );
}
else
// If there are Lines after it, move them
if( (nPos = pLines->GetPos( pFndLn )) + 1 < o3tl::narrowing<sal_uInt16>(pLines->size()) )
{
nInsPos = pULPara->pInsBox->GetTabLines().size();
lcl_CpyLines( nPos+1, pLines->size(), *pLines,
pULPara->pInsBox );
}
}
else
{
// There are still Boxes on the left side, so put the Left-
// and Merge-Box into one Box and Line, insert before/after
// a Line with a Box, into which the upper/lower Lines are
// inserted
SwTableLine* pInsLine = pULPara->pLeftBox->GetUpper();
SwTableBox* pLMBox = new SwTableBox(
pULPara->pLeftBox->GetFrameFormat(), 0, pInsLine );
SwTableLine* pLMLn = new SwTableLine(
pInsLine->GetFrameFormat(), 2, pLMBox );
pLMLn->ClaimFrameFormat()->ResetFormatAttr( RES_FRM_SIZE );
pLMBox->GetTabLines().insert( pLMBox->GetTabLines().begin(), pLMLn );
lcl_CpyBoxes( 0, 2, pInsLine->GetTabBoxes(), pLMLn );
pInsLine->GetTabBoxes().insert( pInsLine->GetTabBoxes().begin(), pLMBox );
if( pULPara->bUL ) // Upper ?
{
// If there are Lines before it, move them
nPos = pLines->GetPos( pFndLn );
if( 0 != nPos )
lcl_CpyLines( 0, nPos, *pLines, pLMBox, 0 );
}
else
// If there are Lines after it, move them
if( (nPos = pLines->GetPos( pFndLn )) + 1 < o3tl::narrowing<sal_uInt16>(pLines->size()) )
lcl_CpyLines( nPos+1, pLines->size(), *pLines,
pLMBox );
lcl_CalcWidth( pLMBox ); // calculate the Box's width
}
}
// Left/Right
else
{
// Find only the Line from which we need to move
nStt = pULPara->bUL ? 0 : rFndLine.GetBoxes().size()-1;
nEnd = nStt+1;
}
pLines = &pULPara->pInsBox->GetTabLines();
SwTableLine* pNewLine = new SwTableLine(
rFndLine.GetLine()->GetFrameFormat(), 0, pULPara->pInsBox );
InsULPara aPara( *pULPara ); // copying
aPara.pInsLine = pNewLine;
FndBoxes_t & rLineBoxes = rFndLine.GetBoxes();
for (FndBoxes_t::iterator it = rLineBoxes.begin() + nStt;
it != rLineBoxes.begin() + nEnd; ++it)
{
lcl_Merge_MoveBox(**it, &aPara);
}
if( !pNewLine->GetTabBoxes().empty() )
{
if( USHRT_MAX == nInsPos )
nInsPos = pLines->size();
pLines->insert( pLines->begin() + nInsPos, pNewLine );
}
else
delete pNewLine;
}
static void lcl_BoxSetHeadCondColl( const SwTableBox* pBox );
bool SwTable::OldMerge( SwDoc& rDoc, const SwSelBoxes& rBoxes,
SwTableBox* pMergeBox, SwUndoTableMerge* pUndo )
{
OSL_ENSURE( !rBoxes.empty() && pMergeBox, "no valid values" );
SwTableNode* pTableNd = const_cast<SwTableNode*>(rBoxes[0]->GetSttNd()->FindTableNode());
if( !pTableNd )
return false;
// Find all Boxes/Lines
FndBox_ aFndBox( nullptr, nullptr );
{
FndPara aPara( rBoxes, &aFndBox );
ForEach_FndLineCopyCol( GetTabLines(), &aPara );
}
if( aFndBox.GetLines().empty() )
return false;
// TL_CHART2: splitting/merging of a number of cells or rows will usually make
// the table too complex to be handled with chart.
// Thus we tell the charts to use their own data provider and forget about this table
rDoc.getIDocumentChartDataProviderAccess().CreateChartInternalDataProviders( this );
SetHTMLTableLayout(std::shared_ptr<SwHTMLTableLayout>()); // Delete HTML Layout
if( pUndo )
pUndo->SetSelBoxes( rBoxes );
// Find Lines for the Layout update
aFndBox.SetTableLines( *this );
aFndBox.DelFrames( *this );
FndBox_* pFndBox = &aFndBox;
while( 1 == pFndBox->GetLines().size() &&
1 == pFndBox->GetLines().front()->GetBoxes().size() )
{
pFndBox = pFndBox->GetLines().front()->GetBoxes().front().get();
}
SwTableLine* pInsLine = new SwTableLine(
pFndBox->GetLines().front()->GetLine()->GetFrameFormat(), 0,
!pFndBox->GetUpper() ? nullptr : pFndBox->GetBox() );
pInsLine->ClaimFrameFormat()->ResetFormatAttr( RES_FRM_SIZE );
// Add the new Line
SwTableLines* pLines = pFndBox->GetUpper() ?
&pFndBox->GetBox()->GetTabLines() : &GetTabLines();
SwTableLine* pNewLine = pFndBox->GetLines().front()->GetLine();
sal_uInt16 nInsPos = pLines->GetPos( pNewLine );
pLines->insert( pLines->begin() + nInsPos, pInsLine );
SwTableBox* pLeftBox = new SwTableBox( pMergeBox->GetFrameFormat(), 0, pInsLine );
SwTableBox* pRightBox = new SwTableBox( pMergeBox->GetFrameFormat(), 0, pInsLine );
pMergeBox->SetUpper( pInsLine );
pInsLine->GetTabBoxes().insert( pInsLine->GetTabBoxes().begin(), pLeftBox );
pLeftBox->ClaimFrameFormat();
pInsLine->GetTabBoxes().insert( pInsLine->GetTabBoxes().begin() + 1, pMergeBox);
pInsLine->GetTabBoxes().insert( pInsLine->GetTabBoxes().begin() + 2, pRightBox );
pRightBox->ClaimFrameFormat();
// This contains all Lines that are above the selected Area,
// thus they form a Upper/Lower Line
InsULPara aPara( pTableNd, pLeftBox, pInsLine );
// Move the overlapping upper/lower Lines of the selected Area
for (auto & it : pFndBox->GetLines().front()->GetBoxes())
{
lcl_Merge_MoveBox(*it, &aPara);
}
aPara.SetLower( pInsLine );
const auto nEnd = pFndBox->GetLines().size()-1;
for (auto & it : pFndBox->GetLines()[nEnd]->GetBoxes())
{
lcl_Merge_MoveBox(*it, &aPara);
}
// Move the Boxes extending into the selected Area from left/right
aPara.SetLeft( pLeftBox );
for (auto & rpFndLine : pFndBox->GetLines())
{
lcl_Merge_MoveLine( *rpFndLine, &aPara );
}
aPara.SetRight( pRightBox );
for (auto & rpFndLine : pFndBox->GetLines())
{
lcl_Merge_MoveLine( *rpFndLine, &aPara );
}
if( pLeftBox->GetTabLines().empty() )
DeleteBox_( *this, pLeftBox, nullptr, false, false );
else
{
lcl_CalcWidth( pLeftBox ); // calculate the Box's width
if( pUndo && pLeftBox->GetSttNd() )
pUndo->AddNewBox( pLeftBox->GetSttIdx() );
}
if( pRightBox->GetTabLines().empty() )
DeleteBox_( *this, pRightBox, nullptr, false, false );
else
{
lcl_CalcWidth( pRightBox ); // calculate the Box's width
if( pUndo && pRightBox->GetSttNd() )
pUndo->AddNewBox( pRightBox->GetSttIdx() );
}
DeleteSel( rDoc, rBoxes, nullptr, nullptr, false, false );
// Clean up this Line's structure once again, generally all of them
GCLines();
for( const auto& rpBox : GetTabLines()[0]->GetTabBoxes() )
lcl_BoxSetHeadCondColl(rpBox);
aFndBox.MakeFrames( *this );
#if defined DBG_UTIL
CheckBoxWidth(GetTabLines(), *GetFrameFormat());;
CheckTableLayout(GetTabLines());
#endif
return true;
}
static void lcl_CheckRowSpan( SwTable &rTable )
{
const tools::Long nLineCount = static_cast<tools::Long>(rTable.GetTabLines().size());
tools::Long nMaxSpan = nLineCount;
tools::Long nMinSpan = 1;
while( nMaxSpan )
{
SwTableLine* pLine = rTable.GetTabLines()[ nLineCount - nMaxSpan ];
for( auto pBox : pLine->GetTabBoxes() )
{
sal_Int32 nRowSpan = pBox->getRowSpan();
if( nRowSpan > nMaxSpan )
pBox->setRowSpan( nMaxSpan );
else if( nRowSpan < nMinSpan )
pBox->setRowSpan( nMinSpan > 0 ? nMaxSpan : nMinSpan );
}
--nMaxSpan;
nMinSpan = -nMaxSpan;
}
}
static sal_uInt16 lcl_GetBoxOffset( const FndBox_& rBox )
{
// Find the first Box
const FndBox_* pFirstBox = &rBox;
while (!pFirstBox->GetLines().empty())
{
pFirstBox = pFirstBox->GetLines().front()->GetBoxes().front().get();
}
sal_uInt16 nRet = 0;
// Calculate the position relative to above via the Lines
const SwTableBox* pBox = pFirstBox->GetBox();
do {
const SwTableBoxes& rBoxes = pBox->GetUpper()->GetTabBoxes();
for( auto pCmp : rBoxes )
{
if (pBox==pCmp)
break;
nRet = nRet + o3tl::narrowing<sal_uInt16>(pCmp->GetFrameFormat()->GetFrameSize().GetWidth());
}
pBox = pBox->GetUpper()->GetUpper();
} while( pBox );
return nRet;
}
static sal_uInt16 lcl_GetLineWidth( const FndLine_& rLine )
{
sal_uInt16 nRet = 0;
for( auto n = rLine.GetBoxes().size(); n; )
{
nRet = nRet + o3tl::narrowing<sal_uInt16>(rLine.GetBoxes()[--n]->GetBox()
->GetFrameFormat()->GetFrameSize().GetWidth());
}
return nRet;
}
static void lcl_CalcNewWidths(const FndLines_t& rFndLines, CpyPara& rPara)
{
rPara.pWidths.reset();
const size_t nLineCount = rFndLines.size();
if( nLineCount )
{
rPara.pWidths = std::make_shared< std::vector< std::vector< sal_uLong > > >
( nLineCount );
// First we collect information about the left/right borders of all
// selected cells
for( size_t nLine = 0; nLine < nLineCount; ++nLine )
{
std::vector< sal_uLong > &rWidth = (*rPara.pWidths)[ nLine ];
const FndLine_ *pFndLine = rFndLines[ nLine ].get();
if( pFndLine && !pFndLine->GetBoxes().empty() )
{
const SwTableLine *pLine = pFndLine->GetLine();
if( pLine && !pLine->GetTabBoxes().empty() )
{
size_t nBoxCount = pLine->GetTabBoxes().size();
sal_uLong nPos = 0;
// The first selected box...
const SwTableBox *const pSel =
pFndLine->GetBoxes().front()->GetBox();
size_t nBox = 0;
// Sum up the width of all boxes before the first selected box
while( nBox < nBoxCount )
{
SwTableBox* pBox = pLine->GetTabBoxes()[nBox++];
if( pBox != pSel )
nPos += pBox->GetFrameFormat()->GetFrameSize().GetWidth();
else
break;
}
// nPos is now the left border of the first selected box
if( rPara.nMinLeft > nPos )
rPara.nMinLeft = nPos;
nBoxCount = pFndLine->GetBoxes().size();
rWidth = std::vector< sal_uLong >( nBoxCount+2 );
rWidth[ 0 ] = nPos;
// Add now the widths of all selected boxes and store
// the positions in the vector
for( nBox = 0; nBox < nBoxCount; )
{
nPos += pFndLine->GetBoxes()[nBox]
->GetBox()->GetFrameFormat()->GetFrameSize().GetWidth();
rWidth[ ++nBox ] = nPos;
}
// nPos: The right border of the last selected box
if( rPara.nMaxRight < nPos )
rPara.nMaxRight = nPos;
if( nPos <= rWidth[ 0 ] )
rWidth.clear();
}
}
}
}
// Second step: calculate the new widths for the copied cells
sal_uLong nSelSize = rPara.nMaxRight - rPara.nMinLeft;
if( !nSelSize )
return;
for( size_t nLine = 0; nLine < nLineCount; ++nLine )
{
std::vector< sal_uLong > &rWidth = (*rPara.pWidths)[ nLine ];
const size_t nCount = rWidth.size();
if( nCount > 2 )
{
rWidth[ nCount - 1 ] = rPara.nMaxRight;
sal_uLong nLastPos = 0;
for( size_t nBox = 0; nBox < nCount; ++nBox )
{
sal_uInt64 nNextPos = rWidth[ nBox ];
nNextPos -= rPara.nMinLeft;
nNextPos *= rPara.nNewSize;
nNextPos /= nSelSize;
rWidth[ nBox ] = static_cast<sal_uLong>(nNextPos - nLastPos);
nLastPos = static_cast<sal_uLong>(nNextPos);
}
}
}
}
static void
lcl_CopyLineToDoc(FndLine_ const& rpFndLn, CpyPara *const pCpyPara);
static void lcl_CopyBoxToDoc(FndBox_ const& rFndBox, CpyPara *const pCpyPara)
{
// Calculation of new size
sal_uLong nRealSize;
sal_uLong nDummy1 = 0;
sal_uLong nDummy2 = 0;
if( pCpyPara->pTableNd->GetTable().IsNewModel() )
{
if( pCpyPara->nBoxIdx == 1 )
nDummy1 = (*pCpyPara->pWidths)[pCpyPara->nLnIdx][0];
nRealSize = (*pCpyPara->pWidths)[pCpyPara->nLnIdx][pCpyPara->nBoxIdx++];
if( pCpyPara->nBoxIdx == (*pCpyPara->pWidths)[pCpyPara->nLnIdx].size()-1 )
nDummy2 = (*pCpyPara->pWidths)[pCpyPara->nLnIdx][pCpyPara->nBoxIdx];
}
else
{
nRealSize = pCpyPara->nNewSize;
nRealSize *= rFndBox.GetBox()->GetFrameFormat()->GetFrameSize().GetWidth();
if (pCpyPara->nOldSize == 0)
throw o3tl::divide_by_zero();
nRealSize /= pCpyPara->nOldSize;
}
sal_uLong nSize;
bool bDummy = nDummy1 > 0;
if( bDummy )
nSize = nDummy1;
else
{
nSize = nRealSize;
nRealSize = 0;
}
do
{
// Find the Frame Format in the list of all Frame Formats
CpyTabFrame aFindFrame(rFndBox.GetBox()->GetFrameFormat());
std::shared_ptr<SwFormatFrameSize> aFrameSz(std::make_shared<SwFormatFrameSize>());
CpyTabFrames::const_iterator itFind = pCpyPara->rTabFrameArr.lower_bound( aFindFrame );
const CpyTabFrames::size_type nFndPos = itFind - pCpyPara->rTabFrameArr.begin();
// It *is* sometimes cool to have multiple tests/if's and assignments
// in a single statement, and it is technically possible. But it is definitely
// not simply readable - where from my POV reading code is done 1000 times
// more often than writing it. Thus I dismantled the expression in smaller
// chunks to keep it handy/understandable/changeable (hopefully without error)
// The original for reference:
// if( itFind == pCpyPara->rTabFrameArr.end() || !(*itFind == aFindFrame) ||
// ( aFrameSz = ( aFindFrame = pCpyPara->rTabFrameArr[ nFndPos ]).pNewFrameFormat->
// GetFrameSize()).GetWidth() != static_cast<SwTwips>(nSize) )
bool DoCopyIt(itFind == pCpyPara->rTabFrameArr.end());
if(!DoCopyIt)
{
DoCopyIt = !(*itFind == aFindFrame);
}
if(!DoCopyIt)
{
aFindFrame = pCpyPara->rTabFrameArr[ nFndPos ];
aFrameSz.reset(aFindFrame.pNewFrameFormat->GetFrameSize().Clone());
DoCopyIt = aFrameSz->GetWidth() != static_cast<SwTwips>(nSize);
}
if(DoCopyIt)
{
// It doesn't exist yet, so copy it
aFindFrame.pNewFrameFormat = pCpyPara->rDoc.MakeTableBoxFormat();
aFindFrame.pNewFrameFormat->CopyAttrs( *rFndBox.GetBox()->GetFrameFormat() );
if( !pCpyPara->bCpyContent )
aFindFrame.pNewFrameFormat->ResetFormatAttr( RES_BOXATR_FORMULA, RES_BOXATR_VALUE );
aFrameSz->SetWidth( nSize );
aFindFrame.pNewFrameFormat->SetFormatAttr( *aFrameSz );
pCpyPara->rTabFrameArr.insert( aFindFrame );
}
SwTableBox* pBox;
if (!rFndBox.GetLines().empty())
{
pBox = new SwTableBox( aFindFrame.pNewFrameFormat,
rFndBox.GetLines().size(), pCpyPara->pInsLine );
pCpyPara->pInsLine->GetTabBoxes().insert( pCpyPara->pInsLine->GetTabBoxes().begin() + pCpyPara->nInsPos++, pBox );
CpyPara aPara( *pCpyPara, pBox );
aPara.nNewSize = nSize; // get the size
for (auto const& rpFndLine : rFndBox.GetLines())
{
lcl_CopyLineToDoc( *rpFndLine, &aPara );
}
}
else
{
// Create an empty Box
pCpyPara->rDoc.GetNodes().InsBoxen( pCpyPara->pTableNd, pCpyPara->pInsLine,
aFindFrame.pNewFrameFormat,
pCpyPara->rDoc.GetDfltTextFormatColl(),
nullptr, pCpyPara->nInsPos );
pBox = pCpyPara->pInsLine->GetTabBoxes()[ pCpyPara->nInsPos ];
if( bDummy )
pBox->setDummyFlag( true );
else if( pCpyPara->bCpyContent )
{
// Copy the content into this empty Box
pBox->setRowSpan(rFndBox.GetBox()->getRowSpan());
// We can also copy formulas and values, if we copy the content
{
SfxItemSetFixed<RES_BOXATR_FORMAT, RES_BOXATR_VALUE> aBoxAttrSet( pCpyPara->rDoc.GetAttrPool() );
aBoxAttrSet.Put(rFndBox.GetBox()->GetFrameFormat()->GetAttrSet());
if( aBoxAttrSet.Count() )
{
const SwTableBoxNumFormat* pItem;
SvNumberFormatter* pN = pCpyPara->rDoc.GetNumberFormatter( false );
if( pN && pN->HasMergeFormatTable() && (pItem = aBoxAttrSet.
GetItemIfSet( RES_BOXATR_FORMAT, false )) )
{
sal_uLong nOldIdx = pItem->GetValue();
sal_uLong nNewIdx = pN->GetMergeFormatIndex( nOldIdx );
if( nNewIdx != nOldIdx )
aBoxAttrSet.Put( SwTableBoxNumFormat( nNewIdx ));
}
pBox->ClaimFrameFormat()->SetFormatAttr( aBoxAttrSet );
}
}
SwDoc& rFromDoc = rFndBox.GetBox()->GetFrameFormat()->GetDoc();
SwNodeRange aCpyRg( *rFndBox.GetBox()->GetSttNd(), SwNodeOffset(1),
*rFndBox.GetBox()->GetSttNd()->EndOfSectionNode() );
SwNodeIndex aInsIdx( *pBox->GetSttNd(), 1 );
rFromDoc.GetDocumentContentOperationsManager().CopyWithFlyInFly(aCpyRg, aInsIdx.GetNode(), nullptr, false);
// Delete the initial TextNode
pCpyPara->rDoc.GetNodes().Delete( aInsIdx );
}
++pCpyPara->nInsPos;
}
if( nRealSize )
{
bDummy = false;
nSize = nRealSize;
nRealSize = 0;
}
else
{
bDummy = true;
nSize = nDummy2;
nDummy2 = 0;
}
}
while( nSize );
}
static void
lcl_CopyLineToDoc(const FndLine_& rFndLine, CpyPara *const pCpyPara)
{
// Find the Frame Format in the list of all Frame Formats
CpyTabFrame aFindFrame( rFndLine.GetLine()->GetFrameFormat() );
CpyTabFrames::const_iterator itFind = pCpyPara->rTabFrameArr.find( aFindFrame );
if( itFind == pCpyPara->rTabFrameArr.end() )
{
// It doesn't exist yet, so copy it
aFindFrame.pNewFrameFormat = reinterpret_cast<SwTableBoxFormat*>(pCpyPara->rDoc.MakeTableLineFormat());
aFindFrame.pNewFrameFormat->CopyAttrs( *rFndLine.GetLine()->GetFrameFormat() );
pCpyPara->rTabFrameArr.insert( aFindFrame );
}
else
aFindFrame = *itFind;
SwTableLine* pNewLine = new SwTableLine( reinterpret_cast<SwTableLineFormat*>(aFindFrame.pNewFrameFormat),
rFndLine.GetBoxes().size(), pCpyPara->pInsBox );
if( pCpyPara->pInsBox )
{
SwTableLines& rLines = pCpyPara->pInsBox->GetTabLines();
rLines.insert( rLines.begin() + pCpyPara->nInsPos++, pNewLine );
}
else
{
SwTableLines& rLines = pCpyPara->pTableNd->GetTable().GetTabLines();
rLines.insert( rLines.begin() + pCpyPara->nInsPos++, pNewLine);
}
CpyPara aPara( *pCpyPara, pNewLine );
if( pCpyPara->pTableNd->GetTable().IsNewModel() )
{
aPara.nOldSize = 0; // will not be used
aPara.nBoxIdx = 1;
}
else if( rFndLine.GetBoxes().size() ==
rFndLine.GetLine()->GetTabBoxes().size() )
{
// Get the Parent's size
const SwFrameFormat* pFormat;
if( rFndLine.GetLine()->GetUpper() )
pFormat = rFndLine.GetLine()->GetUpper()->GetFrameFormat();
else
pFormat = pCpyPara->pTableNd->GetTable().GetFrameFormat();
aPara.nOldSize = pFormat->GetFrameSize().GetWidth();
}
else
// Calculate it
for (auto &rpBox : rFndLine.GetBoxes())
{
aPara.nOldSize += rpBox->GetBox()->GetFrameFormat()->GetFrameSize().GetWidth();
}
const FndBoxes_t& rBoxes = rFndLine.GetBoxes();
for (auto const& it : rBoxes)
{
lcl_CopyBoxToDoc(*it, &aPara);
}
if( pCpyPara->pTableNd->GetTable().IsNewModel() )
++pCpyPara->nLnIdx;
}
void SwTable::CopyHeadlineIntoTable( SwTableNode& rTableNd )
{
// Find all Boxes/Lines
SwSelBoxes aSelBoxes;
SwTableBox* pBox = GetTabSortBoxes()[ 0 ];
pBox = GetTableBox( pBox->GetSttNd()->StartOfSectionNode()->GetIndex() + 1 );
SelLineFromBox( pBox, aSelBoxes );
FndBox_ aFndBox( nullptr, nullptr );
{
FndPara aPara( aSelBoxes, &aFndBox );
ForEach_FndLineCopyCol( GetTabLines(), &aPara );
}
if( aFndBox.GetLines().empty() )
return;
SwitchFormulasToRelativeRepresentation();
CpyTabFrames aCpyFormat;
CpyPara aPara( &rTableNd, 1, aCpyFormat );
aPara.nNewSize = aPara.nOldSize = rTableNd.GetTable().GetFrameFormat()->GetFrameSize().GetWidth();
// Copy
if( IsNewModel() )
lcl_CalcNewWidths( aFndBox.GetLines(), aPara );
for (const auto & rpFndLine : aFndBox.GetLines())
{
lcl_CopyLineToDoc( *rpFndLine, &aPara );
}
if( rTableNd.GetTable().IsNewModel() )
{ // The copied line must not contain any row span attributes > 1
SwTableLine* pLine = rTableNd.GetTable().GetTabLines()[0];
OSL_ENSURE( !pLine->GetTabBoxes().empty(), "Empty Table Line" );
for( auto pTableBox : pLine->GetTabBoxes() )
{
OSL_ENSURE( pTableBox, "Missing Table Box" );
pTableBox->setRowSpan( 1 );
}
}
}
bool SwTable::MakeCopy( SwDoc& rInsDoc, const SwPosition& rPos,
const SwSelBoxes& rSelBoxes,
bool bCpyName, const TableStyleName& rStyleName ) const
{
// Find all Boxes/Lines
FndBox_ aFndBox( nullptr, nullptr );
{
FndPara aPara( rSelBoxes, &aFndBox );
ForEach_FndLineCopyCol( const_cast<SwTableLines&>(GetTabLines()), &aPara );
}
if( aFndBox.GetLines().empty() )
return false;
// First copy the PoolTemplates for the Table, so that the Tables are
// actually copied and have valid values.
SwDoc& rSrcDoc = GetFrameFormat()->GetDoc();
if( &rSrcDoc != &rInsDoc )
{
rInsDoc.CopyTextColl( *rSrcDoc.getIDocumentStylePoolAccess().GetTextCollFromPool( RES_POOLCOLL_TABLE ) );
rInsDoc.CopyTextColl( *rSrcDoc.getIDocumentStylePoolAccess().GetTextCollFromPool( RES_POOLCOLL_TABLE_HDLN ) );
}
SwTable* pNewTable = const_cast<SwTable*>(rInsDoc.InsertTable(
SwInsertTableOptions( SwInsertTableFlags::HeadlineNoBorder, 1 ),
rPos, 1, 1, GetFrameFormat()->GetHoriOrient().GetHoriOrient(),
nullptr, nullptr, false, IsNewModel() ));
if( !pNewTable )
return false;
SwNodeIndex aIdx( rPos.GetNode(), -1 );
SwTableNode* pTableNd = aIdx.GetNode().FindTableNode();
++aIdx;
OSL_ENSURE( pTableNd, "Where is the TableNode now?" );
pTableNd->GetTable().SetRowsToRepeat( GetRowsToRepeat() );
pNewTable->SetTableStyleName(pTableNd->GetTable().GetTableStyleName());
pTableNd->GetTable().SetTableStyleName(rStyleName);
if( auto pSwDDETable = dynamic_cast<const SwDDETable*>(this) )
{
// A DDE-Table is being copied
// Does the new Document actually have it's FieldType?
SwFieldType* pFieldType = rInsDoc.getIDocumentFieldsAccess().InsertFieldType(
*pSwDDETable->GetDDEFieldType() );
OSL_ENSURE( pFieldType, "unknown FieldType" );
// Change the Table Pointer at the Node
pNewTable = new SwDDETable( *pNewTable,
static_cast<SwDDEFieldType*>(pFieldType) );
pTableNd->SetNewTable( std::unique_ptr<SwTable>(pNewTable), false );
}
pNewTable->GetFrameFormat()->CopyAttrs( *GetFrameFormat() );
pNewTable->SetTableChgMode( GetTableChgMode() );
// Destroy the already created Frames
pTableNd->DelFrames();
const_cast<SwTable*>(this)->SwitchFormulasToRelativeRepresentation();
SwTableNumFormatMerge aTNFM(rSrcDoc, rInsDoc);
// Also copy Names or enforce a new unique one
if( bCpyName )
pNewTable->GetFrameFormat()->SetFormatName( GetFrameFormat()->GetName() );
CpyTabFrames aCpyFormat;
CpyPara aPara( pTableNd, 1, aCpyFormat );
aPara.nNewSize = aPara.nOldSize = GetFrameFormat()->GetFrameSize().GetWidth();
if( IsNewModel() )
lcl_CalcNewWidths( aFndBox.GetLines(), aPara );
// Copy
for (const auto & rpFndLine : aFndBox.GetLines())
{
lcl_CopyLineToDoc( *rpFndLine, &aPara );
}
// Set the "right" margin above/below
{
FndLine_* pFndLn = aFndBox.GetLines().front().get();
SwTableLine* pLn = pFndLn->GetLine();
const SwTableLine* pTmp = pLn;
sal_uInt16 nLnPos = GetTabLines().GetPos( pTmp );
if( USHRT_MAX != nLnPos && nLnPos )
{
// There is a Line before it
SwCollectTableLineBoxes aLnPara( false, SplitTable_HeadlineOption::BorderCopy );
pLn = GetTabLines()[ nLnPos - 1 ];
for( const auto& rpBox : pLn->GetTabBoxes() )
sw_Box_CollectBox( rpBox, &aLnPara );
if( aLnPara.Resize( lcl_GetBoxOffset( aFndBox ),
lcl_GetLineWidth( *pFndLn )) )
{
aLnPara.SetValues( true );
pLn = pNewTable->GetTabLines()[ 0 ];
for( const auto& rpBox : pLn->GetTabBoxes() )
sw_BoxSetSplitBoxFormats(rpBox, &aLnPara );
}
}
pFndLn = aFndBox.GetLines().back().get();
pLn = pFndLn->GetLine();
pTmp = pLn;
nLnPos = GetTabLines().GetPos( pTmp );
if( nLnPos < GetTabLines().size() - 1 )
{
// There is a Line following it
SwCollectTableLineBoxes aLnPara( true, SplitTable_HeadlineOption::BorderCopy );
pLn = GetTabLines()[ nLnPos + 1 ];
for( const auto& rpBox : pLn->GetTabBoxes() )
sw_Box_CollectBox( rpBox, &aLnPara );
if( aLnPara.Resize( lcl_GetBoxOffset( aFndBox ),
lcl_GetLineWidth( *pFndLn )) )
{
aLnPara.SetValues( false );
pLn = pNewTable->GetTabLines().back();
for( const auto& rpBox : pLn->GetTabBoxes() )
sw_BoxSetSplitBoxFormats(rpBox, &aLnPara );
}
}
}
// We need to delete the initial Box
DeleteBox_( *pNewTable, pNewTable->GetTabLines().back()->GetTabBoxes()[0],
nullptr, false, false );
if( pNewTable->IsNewModel() )
lcl_CheckRowSpan( *pNewTable );
// Clean up
pNewTable->GCLines();
pTableNd->MakeOwnFrames(); // re-generate the Frames
#if defined DBG_UTIL
CheckTableLayout(GetTabLines());
#endif
return true;
}
// Find the next Box with content from this Line
SwTableBox* SwTableLine::FindNextBox( const SwTable& rTable,
const SwTableBox* pSrchBox, bool bOvrTableLns ) const
{
const SwTableLine* pLine = this; // for M800
SwTableBox* pBox;
sal_uInt16 nFndPos;
if( !GetTabBoxes().empty() && pSrchBox )
{
nFndPos = GetBoxPos( pSrchBox );
if( USHRT_MAX != nFndPos &&
nFndPos + 1 != o3tl::narrowing<sal_uInt16>(GetTabBoxes().size()) )
{
pBox = GetTabBoxes()[ nFndPos + 1 ];
while( !pBox->GetTabLines().empty() )
pBox = pBox->GetTabLines().front()->GetTabBoxes()[0];
return pBox;
}
}
if( GetUpper() )
{
nFndPos = GetUpper()->GetTabLines().GetPos( pLine );
OSL_ENSURE( USHRT_MAX != nFndPos, "Line is not in the Table" );
// Is there another Line?
if( nFndPos+1 >= o3tl::narrowing<sal_uInt16>(GetUpper()->GetTabLines().size()) )
return GetUpper()->GetUpper()->FindNextBox( rTable, GetUpper(), bOvrTableLns );
pLine = GetUpper()->GetTabLines()[nFndPos+1];
}
else if( bOvrTableLns ) // Over a Table's the "BaseLines"??
{
// Search for the next Line in the Table
nFndPos = rTable.GetTabLines().GetPos( pLine );
if( nFndPos + 1 >= o3tl::narrowing<sal_uInt16>(rTable.GetTabLines().size()) )
return nullptr; // there are no more Boxes
pLine = rTable.GetTabLines()[ nFndPos+1 ];
}
else
return nullptr;
if( !pLine->GetTabBoxes().empty() )
{
pBox = pLine->GetTabBoxes().front();
while( !pBox->GetTabLines().empty() )
pBox = pBox->GetTabLines().front()->GetTabBoxes().front();
return pBox;
}
return pLine->FindNextBox( rTable, nullptr, bOvrTableLns );
}
// Find the previous Box from this Line
SwTableBox* SwTableLine::FindPreviousBox( const SwTable& rTable,
const SwTableBox* pSrchBox, bool bOvrTableLns ) const
{
const SwTableLine* pLine = this; // for M800
SwTableBox* pBox;
sal_uInt16 nFndPos;
if( !GetTabBoxes().empty() && pSrchBox )
{
nFndPos = GetBoxPos( pSrchBox );
if( USHRT_MAX != nFndPos && nFndPos )
{
pBox = GetTabBoxes()[ nFndPos - 1 ];
while( !pBox->GetTabLines().empty() )
{
pLine = pBox->GetTabLines().back();
pBox = pLine->GetTabBoxes().back();
}
return pBox;
}
}
if( GetUpper() )
{
nFndPos = GetUpper()->GetTabLines().GetPos( pLine );
OSL_ENSURE( USHRT_MAX != nFndPos, "Line is not in the Table" );
// Is there another Line?
if( !nFndPos )
return GetUpper()->GetUpper()->FindPreviousBox( rTable, GetUpper(), bOvrTableLns );
pLine = GetUpper()->GetTabLines()[nFndPos-1];
}
else if( bOvrTableLns ) // Over a Table's the "BaseLines"??
{
// Search for the next Line in the Table
nFndPos = rTable.GetTabLines().GetPos( pLine );
if( !nFndPos )
return nullptr; // there are no more Boxes
pLine = rTable.GetTabLines()[ nFndPos-1 ];
}
else
return nullptr;
if( !pLine->GetTabBoxes().empty() )
{
pBox = pLine->GetTabBoxes().back();
while( !pBox->GetTabLines().empty() )
{
pLine = pBox->GetTabLines().back();
pBox = pLine->GetTabBoxes().back();
}
return pBox;
}
return pLine->FindPreviousBox( rTable, nullptr, bOvrTableLns );
}
// Find the next Box with content from this Line
SwTableBox* SwTableBox::FindNextBox( const SwTable& rTable,
const SwTableBox* pSrchBox, bool bOvrTableLns ) const
{
if( !pSrchBox && GetTabLines().empty() )
return const_cast<SwTableBox*>(this);
return GetUpper()->FindNextBox( rTable, pSrchBox ? pSrchBox : this,
bOvrTableLns );
}
// Find the next Box with content from this Line
SwTableBox* SwTableBox::FindPreviousBox( const SwTable& rTable,
const SwTableBox* pSrchBox ) const
{
if( !pSrchBox && GetTabLines().empty() )
return const_cast<SwTableBox*>(this);
return GetUpper()->FindPreviousBox( rTable, pSrchBox ? pSrchBox : this );
}
static void lcl_BoxSetHeadCondColl( const SwTableBox* pBox )
{
// We need to adapt the paragraphs with conditional templates in the HeadLine
const SwStartNode* pSttNd = pBox->GetSttNd();
if( pSttNd )
pSttNd->CheckSectionCondColl();
else
for( const SwTableLine* pLine : pBox->GetTabLines() )
sw_LineSetHeadCondColl( pLine );
}
void sw_LineSetHeadCondColl( const SwTableLine* pLine )
{
for( const SwTableBox* pBox : pLine->GetTabBoxes() )
lcl_BoxSetHeadCondColl(pBox);
}
static SwTwips lcl_GetDistance( SwTableBox* pBox, bool bLeft )
{
bool bFirst = true;
SwTwips nRet = 0;
SwTableLine* pLine;
while( pBox )
{
pLine = pBox->GetUpper();
if( !pLine )
break;
sal_uInt16 nStt = 0, nPos = pLine->GetBoxPos( pBox );
if( bFirst && !bLeft )
++nPos;
bFirst = false;
while( nStt < nPos )
nRet += pLine->GetTabBoxes()[ nStt++ ]->GetFrameFormat()
->GetFrameSize().GetWidth();
pBox = pLine->GetUpper();
}
return nRet;
}
static bool lcl_SetSelBoxWidth( SwTableLine* pLine, CR_SetBoxWidth& rParam,
SwTwips nDist, bool bCheck )
{
SwTableBoxes& rBoxes = pLine->GetTabBoxes();
for( auto pBox : rBoxes )
{
SwFrameFormat* pFormat = pBox->GetFrameFormat();
const SwFormatFrameSize& rSz = pFormat->GetFrameSize();
SwTwips nWidth = rSz.GetWidth();
bool bGreaterBox = false;
if( bCheck )
{
for( auto pLn : pBox->GetTabLines() )
if( !::lcl_SetSelBoxWidth( pLn, rParam, nDist, true ))
return false;
// Collect all "ContentBoxes"
bGreaterBox = (TableChgMode::FixedWidthChangeAbs != rParam.nMode)
&& ((nDist + (rParam.bLeft ? 0 : nWidth)) >= rParam.nSide);
if (bGreaterBox
|| (!rParam.bBigger
&& (std::abs(nDist + ((rParam.nMode != TableChgMode::FixedWidthChangeAbs && rParam.bLeft) ? 0 : nWidth) - rParam.nSide) < COLFUZZY)))
{
SwTwips nLowerDiff;
if( bGreaterBox && TableChgMode::FixedWidthChangeProp == rParam.nMode )
{
// The "other Boxes" have been adapted, so change by this value
nLowerDiff = (nDist + ( rParam.bLeft ? 0 : nWidth ) ) - rParam.nSide;
nLowerDiff *= rParam.nDiff;
nLowerDiff /= rParam.nMaxSize;
nLowerDiff = rParam.nDiff - nLowerDiff;
}
else
nLowerDiff = rParam.nDiff;
if( nWidth < nLowerDiff || nWidth - nLowerDiff < MINLAY )
return false;
}
}
else
{
SwTwips nLowerDiff = 0, nOldLower = rParam.nLowerDiff;
for( auto pLn : pBox->GetTabLines() )
{
rParam.nLowerDiff = 0;
lcl_SetSelBoxWidth( pLn, rParam, nDist, false );
if( nLowerDiff < rParam.nLowerDiff )
nLowerDiff = rParam.nLowerDiff;
}
rParam.nLowerDiff = nOldLower;
if( nLowerDiff ||
(bGreaterBox = !nOldLower && TableChgMode::FixedWidthChangeAbs != rParam.nMode &&
( nDist + ( rParam.bLeft ? 0 : nWidth ) ) >= rParam.nSide) ||
( std::abs( nDist + ( (rParam.nMode != TableChgMode::FixedWidthChangeAbs && rParam.bLeft) ? 0 : nWidth )
- rParam.nSide ) < COLFUZZY ))
{
// This column contains the Cursor - so decrease/increase
SwFormatFrameSize aNew( rSz );
if( !nLowerDiff )
{
if( bGreaterBox && TableChgMode::FixedWidthChangeProp == rParam.nMode )
{
// The "other Boxes" have been adapted, so change by this value
nLowerDiff = (nDist + ( rParam.bLeft ? 0 : nWidth ) ) - rParam.nSide;
nLowerDiff *= rParam.nDiff;
nLowerDiff /= rParam.nMaxSize;
nLowerDiff = rParam.nDiff - nLowerDiff;
}
else
nLowerDiff = rParam.nDiff;
}
rParam.nLowerDiff += nLowerDiff;
if( rParam.bBigger )
aNew.SetWidth( nWidth + nLowerDiff );
else
aNew.SetWidth( nWidth - nLowerDiff );
rParam.aShareFormats.SetSize( *pBox, aNew );
break;
}
}
if( rParam.bLeft && rParam.nMode != TableChgMode::FixedWidthChangeAbs && nDist >= rParam.nSide )
break;
nDist += nWidth;
// If it gets bigger, then that's it
if( ( TableChgMode::FixedWidthChangeAbs == rParam.nMode || !rParam.bLeft ) &&
nDist >= rParam.nSide )
break;
}
return true;
}
static bool lcl_SetOtherBoxWidth( SwTableLine* pLine, CR_SetBoxWidth& rParam,
SwTwips nDist, bool bCheck )
{
SwTableBoxes& rBoxes = pLine->GetTabBoxes();
for( auto pBox : rBoxes )
{
SwFrameFormat* pFormat = pBox->GetFrameFormat();
const SwFormatFrameSize& rSz = pFormat->GetFrameSize();
SwTwips nWidth = rSz.GetWidth();
if( bCheck )
{
for( auto pLn : pBox->GetTabLines() )
if( !::lcl_SetOtherBoxWidth( pLn, rParam, nDist, true ))
return false;
if( rParam.bBigger && ( TableChgMode::FixedWidthChangeAbs == rParam.nMode
? std::abs( nDist - rParam.nSide ) < COLFUZZY
: ( rParam.bLeft ? nDist < rParam.nSide - COLFUZZY
: nDist >= rParam.nSide - COLFUZZY )) )
{
SwTwips nDiff;
if( TableChgMode::FixedWidthChangeProp == rParam.nMode ) // Table fixed, proportional
{
// calculate relative
nDiff = nWidth;
nDiff *= rParam.nDiff;
nDiff /= rParam.nMaxSize;
}
else
nDiff = rParam.nDiff;
if( nWidth < nDiff || nWidth - nDiff < MINLAY )
return false;
}
}
else
{
SwTwips nLowerDiff = 0, nOldLower = rParam.nLowerDiff;
for( auto pLn : pBox->GetTabLines() )
{
rParam.nLowerDiff = 0;
lcl_SetOtherBoxWidth( pLn, rParam, nDist, false );
if( nLowerDiff < rParam.nLowerDiff )
nLowerDiff = rParam.nLowerDiff;
}
rParam.nLowerDiff = nOldLower;
if( nLowerDiff ||
( TableChgMode::FixedWidthChangeAbs == rParam.nMode
? std::abs( nDist - rParam.nSide ) < COLFUZZY
: ( rParam.bLeft ? nDist < rParam.nSide - COLFUZZY
: nDist >= rParam.nSide - COLFUZZY)
) )
{
SwFormatFrameSize aNew( rSz );
if( !nLowerDiff )
{
if( TableChgMode::FixedWidthChangeProp == rParam.nMode ) // Table fixed, proportional
{
// calculate relative
nLowerDiff = nWidth;
nLowerDiff *= rParam.nDiff;
nLowerDiff /= rParam.nMaxSize;
}
else
nLowerDiff = rParam.nDiff;
}
rParam.nLowerDiff += nLowerDiff;
if( rParam.bBigger )
aNew.SetWidth( nWidth - nLowerDiff );
else
aNew.SetWidth( nWidth + nLowerDiff );
rParam.aShareFormats.SetSize( *pBox, aNew );
}
}
nDist += nWidth;
if( ( TableChgMode::FixedWidthChangeAbs == rParam.nMode || rParam.bLeft ) &&
nDist > rParam.nSide )
break;
}
return true;
}
static void lcl_AjustLines( SwTableLine* pLine, CR_SetBoxWidth& rParam )
{
SwTableBoxes& rBoxes = pLine->GetTabBoxes();
for( auto pBox : rBoxes )
{
SwFormatFrameSize aSz( pBox->GetFrameFormat()->GetFrameSize() );
SwTwips nWidth = aSz.GetWidth();
nWidth *= rParam.nDiff;
nWidth /= rParam.nMaxSize;
aSz.SetWidth( nWidth );
rParam.aShareFormats.SetSize( *pBox, aSz );
for( auto pLn : pBox->GetTabLines() )
::lcl_AjustLines( pLn, rParam );
}
}
#if defined DBG_UTIL
void CheckTableLayout(const SwTableLines& rLines)
{
for (auto pLn : rLines)
{
SwFrameFormat* pFormat = pLn->GetFrameFormat();
SwIterator<SwRowFrame,SwFormat> aIter( *pFormat );
for (SwRowFrame* pFrame=aIter.First(); pFrame; pFrame=aIter.Next())
{
if ( pFrame->GetTabLine() == pLn )
{
OSL_ENSURE( pFrame->GetUpper()->IsTabFrame(),
"Table layout does not match table structure" );
}
}
}
}
SwTwips CheckBoxWidth(const SwTableLines& rLines, const SwFrameFormat& rFrameFormat )
{
SwTwips nSize = rFrameFormat.GetFrameSize().GetWidth();
for (auto pLn : rLines)
{
const SwTableBoxes& rBoxes = pLn->GetTabBoxes();
SwTwips nCurrentSize = 0;
// See if the tables have a correct width
for (const SwTableBox* pBox : rBoxes)
{
nCurrentSize += CheckBoxWidth( pBox->GetTabLines(), *pBox->GetFrameFormat() );
}
if (sal::static_int_cast< tools::ULong >(std::abs(nCurrentSize - nSize)) >
(COLFUZZY * rBoxes.size()))
{
OSL_FAIL( "Line's Boxes are too small or too large" );
}
}
return nSize;
}
#endif
bool SwTable::SetColWidth( SwTableBox& rCurrentBox, TableChgWidthHeightType eType,
SwTwips nAbsDiff, SwTwips nRelDiff, std::unique_ptr<SwUndo>* ppUndo )
{
SetHTMLTableLayout(std::shared_ptr<SwHTMLTableLayout>()); // Delete HTML Layout
const SwFormatFrameSize& rSz = GetFrameFormat()->GetFrameSize();
const SvxLRSpaceItem& rLR = GetFrameFormat()->GetLRSpace();
bool bBigger,
bRet = false,
bLeft = TableChgWidthHeightType::ColLeft == extractPosition( eType ) ||
TableChgWidthHeightType::CellLeft == extractPosition( eType );
// Get the current Box's edge
// Only needed for manipulating the width
const SwTwips nDist = ::lcl_GetDistance( &rCurrentBox, bLeft );
SwTwips nDistStt = 0;
CR_SetBoxWidth aParam( eType, nRelDiff, nDist,
bLeft ? nDist : rSz.GetWidth() - nDist,
const_cast<SwTableNode*>(rCurrentBox.GetSttNd()->FindTableNode()) );
bBigger = aParam.bBigger;
FN_lcl_SetBoxWidth fnSelBox, fnOtherBox;
fnSelBox = lcl_SetSelBoxWidth;
fnOtherBox = lcl_SetOtherBoxWidth;
switch( extractPosition(eType) )
{
case TableChgWidthHeightType::ColRight:
case TableChgWidthHeightType::ColLeft:
if( TableChgMode::VarWidthChangeAbs == m_eTableChgMode )
{
// First test if we have room at all
bool bChgLRSpace = true;
if( bBigger )
{
if( GetFrameFormat()->getIDocumentSettingAccess().get(DocumentSettingId::BROWSE_MODE) &&
!rSz.GetWidthPercent() )
{
// silence -Wsign-compare on Android with the static cast
bRet = rSz.GetWidth() < static_cast<unsigned short>(USHRT_MAX) - nRelDiff;
bChgLRSpace = bLeft ? rLR.ResolveLeft({}) >= nAbsDiff
: rLR.ResolveRight({}) >= nAbsDiff;
}
else
bRet = bLeft ? rLR.ResolveLeft({}) >= nAbsDiff
: rLR.ResolveRight({}) >= nAbsDiff;
if( !bRet )
{
// Then call itself recursively; only with another mode (proportional)
TableChgMode eOld = m_eTableChgMode;
m_eTableChgMode = TableChgMode::FixedWidthChangeProp;
bRet = SetColWidth( rCurrentBox, eType, nAbsDiff, nRelDiff,
ppUndo );
m_eTableChgMode = eOld;
return bRet;
}
}
else
{
bRet = true;
for( auto const & n: m_aLines )
{
aParam.LoopClear();
if( !(*fnSelBox)( n, aParam, nDistStt, true ))
{
bRet = false;
break;
}
}
}
if( bRet )
{
if( ppUndo )
ppUndo->reset(new SwUndoAttrTable( *aParam.pTableNd, true ));
tools::Long nFrameWidth = LONG_MAX;
LockModify();
SwFormatFrameSize aSz( rSz );
SvxLRSpaceItem aLR( rLR );
if( bBigger )
{
// If the Table does not have any room to grow, we need to create some!
// silence -Wsign-compare on Android with the static cast
if( aSz.GetWidth() + nRelDiff > static_cast<unsigned short>(USHRT_MAX) )
{
// Break down to USHRT_MAX / 2
CR_SetBoxWidth aTmpPara( TableChgWidthHeightType::ColLeft, aSz.GetWidth() / 2,
0, aSz.GetWidth(), aParam.pTableNd );
for( size_t nLn = 0; nLn < m_aLines.size(); ++nLn )
::lcl_AjustLines( m_aLines[ nLn ], aTmpPara );
aSz.SetWidth( aSz.GetWidth() / 2 );
aParam.nDiff = nRelDiff /= 2;
aParam.nSide /= 2;
aParam.nMaxSize /= 2;
}
if( bLeft )
aLR.SetLeft(
SvxIndentValue::twips(sal_uInt16(aLR.ResolveLeft({}) - nAbsDiff)));
else
aLR.SetRight(
SvxIndentValue::twips(sal_uInt16(aLR.ResolveRight({}) - nAbsDiff)));
}
else if( bLeft )
aLR.SetLeft(SvxIndentValue::twips(sal_uInt16(aLR.ResolveLeft({}) + nAbsDiff)));
else
aLR.SetRight(
SvxIndentValue::twips(sal_uInt16(aLR.ResolveRight({}) + nAbsDiff)));
if( bChgLRSpace )
GetFrameFormat()->SetFormatAttr( aLR );
const SwFormatHoriOrient& rHOri = GetFrameFormat()->GetHoriOrient();
if (text::HoriOrientation::FULL == rHOri.GetHoriOrient()
|| (text::HoriOrientation::LEFT == rHOri.GetHoriOrient() && aLR.ResolveLeft({}))
|| (text::HoriOrientation::RIGHT == rHOri.GetHoriOrient()
&& aLR.ResolveRight({})))
{
SwFormatHoriOrient aHOri( rHOri );
aHOri.SetHoriOrient( text::HoriOrientation::NONE );
GetFrameFormat()->SetFormatAttr( aHOri );
// If the Table happens to contain relative values (USHORT_MAX),
// we need to convert them to absolute ones now.
// Bug 61494
if( GetFrameFormat()->getIDocumentSettingAccess().get(DocumentSettingId::BROWSE_MODE) &&
!rSz.GetWidthPercent() )
{
SwTabFrame* pTabFrame = SwIterator<SwTabFrame,SwFormat>( *GetFrameFormat() ).First();
if( pTabFrame &&
pTabFrame->getFramePrintArea().Width() != rSz.GetWidth() )
{
nFrameWidth = pTabFrame->getFramePrintArea().Width();
if( bBigger )
nFrameWidth += nAbsDiff;
else
nFrameWidth -= nAbsDiff;
}
}
}
if( bBigger )
aSz.SetWidth( aSz.GetWidth() + nRelDiff );
else
aSz.SetWidth( aSz.GetWidth() - nRelDiff );
if (rSz.GetWidthPercent())
aSz.SetWidthPercent(static_cast<sal_uInt8>(
(aSz.GetWidth() * 100)
/ (aSz.GetWidth() + aLR.ResolveRight({}) + aLR.ResolveLeft({}))));
GetFrameFormat()->SetFormatAttr( aSz );
UnlockModify();
for( sal_uInt16 n = m_aLines.size(); n; )
{
--n;
aParam.LoopClear();
(*fnSelBox)( m_aLines[ n ], aParam, nDistStt, false );
}
// If the Table happens to contain relative values (USHORT_MAX),
// we need to convert them to absolute ones now.
// Bug 61494
if( LONG_MAX != nFrameWidth )
{
SwFormatFrameSize aAbsSz(std::move(aSz));
aAbsSz.SetWidth( nFrameWidth );
GetFrameFormat()->SetFormatAttr( aAbsSz );
}
}
}
else if( bLeft ? nDist != 0 : std::abs( rSz.GetWidth() - nDist ) > COLFUZZY )
{
bRet = true;
if( bLeft && TableChgMode::FixedWidthChangeAbs == m_eTableChgMode )
aParam.bBigger = !bBigger;
// First test if we have room at all
if( aParam.bBigger )
{
for( auto const & n: m_aLines )
{
aParam.LoopClear();
if( !(*fnOtherBox)( n, aParam, 0, true ))
{
bRet = false;
break;
}
}
}
else
{
for( auto const & n: m_aLines )
{
aParam.LoopClear();
if( !(*fnSelBox)( n, aParam, nDistStt, true ))
{
bRet = false;
break;
}
}
}
// If true, set it
if( bRet )
{
CR_SetBoxWidth aParam1( aParam );
if( ppUndo )
ppUndo->reset(new SwUndoAttrTable( *aParam.pTableNd, true ));
if( TableChgMode::FixedWidthChangeAbs != m_eTableChgMode && bLeft )
{
for( sal_uInt16 n = m_aLines.size(); n; )
{
--n;
aParam.LoopClear();
aParam1.LoopClear();
(*fnSelBox)( m_aLines[ n ], aParam, nDistStt, false );
(*fnOtherBox)( m_aLines[ n ], aParam1, nDistStt, false );
}
}
else
{
for( sal_uInt16 n = m_aLines.size(); n; )
{
--n;
aParam.LoopClear();
aParam1.LoopClear();
(*fnOtherBox)( m_aLines[ n ], aParam1, nDistStt, false );
(*fnSelBox)( m_aLines[ n ], aParam, nDistStt, false );
}
}
}
}
break;
case TableChgWidthHeightType::CellRight:
case TableChgWidthHeightType::CellLeft:
if( TableChgMode::VarWidthChangeAbs == m_eTableChgMode )
{
// Then call itself recursively; only with another mode (proportional)
TableChgMode eOld = m_eTableChgMode;
m_eTableChgMode = TableChgMode::FixedWidthChangeAbs;
bRet = SetColWidth( rCurrentBox, eType, nAbsDiff, nRelDiff,
ppUndo );
m_eTableChgMode = eOld;
return bRet;
}
else if( bLeft ? nDist != 0 : (rSz.GetWidth() - nDist) > COLFUZZY )
{
if( bLeft && TableChgMode::FixedWidthChangeAbs == m_eTableChgMode )
aParam.bBigger = !bBigger;
// First, see if there is enough room at all
SwTableBox* pBox = &rCurrentBox;
SwTableLine* pLine = rCurrentBox.GetUpper();
while( pLine->GetUpper() )
{
const SwTableBoxes::size_type nPos = pLine->GetBoxPos( pBox );
if( bLeft ? nPos != 0 : nPos + 1 != pLine->GetTabBoxes().size() )
break;
pBox = pLine->GetUpper();
pLine = pBox->GetUpper();
}
if( pLine->GetUpper() )
{
// We need to correct the distance once again!
aParam.nSide -= ::lcl_GetDistance( pLine->GetUpper(), true );
if( bLeft )
aParam.nMaxSize = aParam.nSide;
else
aParam.nMaxSize = pLine->GetUpper()->GetFrameFormat()->
GetFrameSize().GetWidth() - aParam.nSide;
}
// First, see if there is enough room at all
FN_lcl_SetBoxWidth fnTmp = aParam.bBigger ? fnOtherBox : fnSelBox;
bRet = (*fnTmp)( pLine, aParam, nDistStt, true );
// If true, set it
if( bRet )
{
CR_SetBoxWidth aParam1( aParam );
if( ppUndo )
ppUndo->reset(new SwUndoAttrTable( *aParam.pTableNd, true ));
if( TableChgMode::FixedWidthChangeAbs != m_eTableChgMode && bLeft )
{
(*fnSelBox)( pLine, aParam, nDistStt, false );
(*fnOtherBox)( pLine, aParam1, nDistStt, false );
}
else
{
(*fnOtherBox)( pLine, aParam1, nDistStt, false );
(*fnSelBox)( pLine, aParam, nDistStt, false );
}
}
}
break;
default: break;
}
#if defined DBG_UTIL
if( bRet )
{
CheckBoxWidth(GetTabLines(), *GetFrameFormat());
CheckTableLayout(GetTabLines());
}
#endif
return bRet;
}
static void SetLineHeight( SwTableLine& rLine, SwTwips nOldHeight, SwTwips nNewHeight,
bool bMinSize )
{
SwLayoutFrame* pLineFrame = GetRowFrame( rLine );
assert(pLineFrame && "Where is the Frame from the SwTableLine?");
SwFrameFormat* pFormat = rLine.ClaimFrameFormat();
SwTwips nMyNewH, nMyOldH = pLineFrame->getFrameArea().Height();
if( !nOldHeight ) // the BaseLine and absolute
nMyNewH = nMyOldH + nNewHeight;
else
{
// Calculate as exactly as possible
Fraction aTmp( nMyOldH );
aTmp *= Fraction( nNewHeight, nOldHeight );
aTmp += Fraction( 1, 2 ); // round up if needed
nMyNewH = tools::Long(aTmp);
}
SwFrameSize eSize = SwFrameSize::Minimum;
if( !bMinSize &&
( nMyOldH - nMyNewH ) > ( CalcRowRstHeight( pLineFrame ) + ROWFUZZY ))
eSize = SwFrameSize::Fixed;
pFormat->SetFormatAttr( SwFormatFrameSize( eSize, 0, nMyNewH ) );
// First adapt all internal ones
for( auto pBox : rLine.GetTabBoxes() )
{
for( auto pLine : pBox->GetTabLines() )
SetLineHeight( *pLine, nMyOldH, nMyNewH, bMinSize );
}
}
static bool lcl_SetSelLineHeight( SwTableLine* pLine, const CR_SetLineHeight& rParam,
SwTwips nDist, bool bCheck )
{
bool bRet = true;
if( !bCheck )
{
// Set line height
SetLineHeight( *pLine, 0, rParam.bBigger ? nDist : -nDist,
rParam.bBigger );
}
else if( !rParam.bBigger )
{
// Calculate the new relative size by means of the old one
SwLayoutFrame* pLineFrame = GetRowFrame( *pLine );
OSL_ENSURE( pLineFrame, "Where is the Frame from the SwTableLine?" );
SwTwips nRstHeight = CalcRowRstHeight( pLineFrame );
if( (nRstHeight + ROWFUZZY) < nDist )
bRet = false;
}
return bRet;
}
static bool lcl_SetOtherLineHeight( SwTableLine* pLine, const CR_SetLineHeight& rParam,
SwTwips nDist, bool bCheck )
{
bool bRet = true;
if( bCheck )
{
if( rParam.bBigger )
{
// Calculate the new relative size by means of the old one
SwLayoutFrame* pLineFrame = GetRowFrame( *pLine );
assert(pLineFrame && "Where is the Frame from the SwTableLine?");
if( TableChgMode::FixedWidthChangeProp == rParam.nMode )
{
nDist *= pLineFrame->getFrameArea().Height();
nDist /= rParam.nMaxHeight;
}
bRet = nDist <= CalcRowRstHeight( pLineFrame );
}
}
else
{
// Set line height
// pLine is the following/preceding, thus adjust it
if( TableChgMode::FixedWidthChangeProp == rParam.nMode )
{
SwLayoutFrame* pLineFrame = GetRowFrame( *pLine );
assert(pLineFrame && "Where is the Frame from the SwTableLine??");
// Calculate the new relative size by means of the old one
// If the selected Box get bigger, adjust via the max space else
// via the max height.
if( (true) /*!rParam.bBigger*/ )
{
nDist *= pLineFrame->getFrameArea().Height();
nDist /= rParam.nMaxHeight;
}
else
{
// Calculate the new relative size by means of the old one
nDist *= CalcRowRstHeight( pLineFrame );
nDist /= rParam.nMaxSpace;
}
}
SetLineHeight( *pLine, 0, rParam.bBigger ? -nDist : nDist,
!rParam.bBigger );
}
return bRet;
}
bool SwTable::SetRowHeight( SwTableBox& rCurrentBox, TableChgWidthHeightType eType,
SwTwips nAbsDiff, SwTwips nRelDiff, std::unique_ptr<SwUndo>* ppUndo )
{
SwTableLine* pLine = rCurrentBox.GetUpper();
SwTableLine* pBaseLine = pLine;
while( pBaseLine->GetUpper() )
pBaseLine = pBaseLine->GetUpper()->GetUpper();
bool bBigger,
bRet = false,
bTop = TableChgWidthHeightType::CellTop == extractPosition( eType );
sal_uInt16 nBaseLinePos = GetTabLines().GetPos( pBaseLine );
CR_SetLineHeight aParam( eType,
const_cast<SwTableNode*>(rCurrentBox.GetSttNd()->FindTableNode()) );
bBigger = aParam.bBigger;
SwTableLines* pLines = &m_aLines;
// How do we get to the height?
switch( extractPosition(eType) )
{
case TableChgWidthHeightType::CellTop:
case TableChgWidthHeightType::CellBottom:
if( pLine == pBaseLine )
break; // it doesn't work then!
// Is a nested Line (Box!)
pLines = &pLine->GetUpper()->GetTabLines();
nBaseLinePos = pLines->GetPos( pLine );
[[fallthrough]];
case TableChgWidthHeightType::RowBottom:
{
if( TableChgMode::VarWidthChangeAbs == m_eTableChgMode )
{
// First test if we have room at all
if( bBigger )
bRet = true;
else
bRet = lcl_SetSelLineHeight( (*pLines)[ nBaseLinePos ], aParam,
nAbsDiff, true );
if( bRet )
{
if( ppUndo )
ppUndo->reset(new SwUndoAttrTable( *aParam.pTableNd, true ));
lcl_SetSelLineHeight( (*pLines)[ nBaseLinePos ], aParam,
nAbsDiff, false );
}
}
else
{
bRet = true;
SwTableLines::size_type nStt;
SwTableLines::size_type nEnd;
if( bTop )
{
nStt = 0;
nEnd = nBaseLinePos;
}
else
{
nStt = nBaseLinePos + 1;
nEnd = pLines->size();
}
// Get the current Lines' height
if( TableChgMode::FixedWidthChangeProp == m_eTableChgMode )
{
for( auto n = nStt; n < nEnd; ++n )
{
SwLayoutFrame* pLineFrame = GetRowFrame( *(*pLines)[ n ] );
assert(pLineFrame && "Where is the Frame from the SwTableLine??");
aParam.nMaxSpace += CalcRowRstHeight( pLineFrame );
aParam.nMaxHeight += pLineFrame->getFrameArea().Height();
}
if( bBigger && aParam.nMaxSpace < nAbsDiff )
bRet = false;
}
else
{
if( bTop ? nEnd != 0 : nStt < nEnd )
{
if( bTop )
nStt = nEnd - 1;
else
nEnd = nStt + 1;
}
else
bRet = false;
}
if( bRet )
{
if( bBigger )
{
for( auto n = nStt; n < nEnd; ++n )
{
if( !lcl_SetOtherLineHeight( (*pLines)[ n ], aParam,
nAbsDiff, true ))
{
bRet = false;
break;
}
}
}
else
bRet = lcl_SetSelLineHeight( (*pLines)[ nBaseLinePos ], aParam,
nAbsDiff, true );
}
if( bRet )
{
// Adjust
if( ppUndo )
ppUndo->reset(new SwUndoAttrTable( *aParam.pTableNd, true ));
CR_SetLineHeight aParam1( aParam );
if( bTop )
{
lcl_SetSelLineHeight( (*pLines)[ nBaseLinePos ], aParam,
nAbsDiff, false );
for( auto n = nStt; n < nEnd; ++n )
lcl_SetOtherLineHeight( (*pLines)[ n ], aParam1,
nAbsDiff, false );
}
else
{
for( auto n = nStt; n < nEnd; ++n )
lcl_SetOtherLineHeight( (*pLines)[ n ], aParam1,
nAbsDiff, false );
lcl_SetSelLineHeight( (*pLines)[ nBaseLinePos ], aParam,
nAbsDiff, false );
}
}
else
{
// Then call itself recursively; only with another mode (proportional)
TableChgMode eOld = m_eTableChgMode;
m_eTableChgMode = TableChgMode::VarWidthChangeAbs;
bRet = SetRowHeight( rCurrentBox, eType, nAbsDiff,
nRelDiff, ppUndo );
m_eTableChgMode = eOld;
}
}
}
break;
default: break;
}
#if defined DBG_UTIL
CheckTableLayout(GetTabLines());
#endif
return bRet;
}
SwFrameFormat* SwShareBoxFormat::GetFormat( tools::Long nWidth ) const
{
SwFrameFormat *pRet = nullptr, *pTmp;
for( auto n = m_aNewFormats.size(); n; )
if( ( pTmp = m_aNewFormats[ --n ])->GetFrameSize().GetWidth()
== nWidth )
{
pRet = pTmp;
break;
}
return pRet;
}
SwFrameFormat* SwShareBoxFormat::GetFormat( const SfxPoolItem& rItem ) const
{
const SfxPoolItem* pItem;
sal_uInt16 nWhich = rItem.Which();
SwFrameFormat *pRet = nullptr, *pTmp;
const SwFormatFrameSize& rFrameSz = m_pOldFormat->GetFormatAttr( RES_FRM_SIZE, false );
for( auto n = m_aNewFormats.size(); n; )
if( SfxItemState::SET == ( pTmp = m_aNewFormats[ --n ])->
GetItemState( nWhich, false, &pItem ) && *pItem == rItem &&
pTmp->GetFormatAttr( RES_FRM_SIZE, false ) == rFrameSz )
{
pRet = pTmp;
break;
}
return pRet;
}
void SwShareBoxFormat::AddFormat( SwFrameFormat& rNew )
{
m_aNewFormats.push_back( &rNew );
}
bool SwShareBoxFormat::RemoveFormat( const SwFrameFormat& rFormat )
{
// returns true, if we can delete
if( m_pOldFormat == &rFormat )
return true;
std::vector<SwFrameFormat*>::iterator it = std::find( m_aNewFormats.begin(), m_aNewFormats.end(), &rFormat );
if( m_aNewFormats.end() != it )
m_aNewFormats.erase( it );
return m_aNewFormats.empty();
}
SwShareBoxFormats::~SwShareBoxFormats()
{
}
SwFrameFormat* SwShareBoxFormats::GetFormat( const SwFrameFormat& rFormat, tools::Long nWidth ) const
{
sal_uInt16 nPos;
return Seek_Entry( rFormat, &nPos )
? m_ShareArr[ nPos ].GetFormat(nWidth)
: nullptr;
}
SwFrameFormat* SwShareBoxFormats::GetFormat( const SwFrameFormat& rFormat,
const SfxPoolItem& rItem ) const
{
sal_uInt16 nPos;
return Seek_Entry( rFormat, &nPos )
? m_ShareArr[ nPos ].GetFormat(rItem)
: nullptr;
}
void SwShareBoxFormats::AddFormat( const SwFrameFormat& rOld, SwFrameFormat& rNew )
{
sal_uInt16 nPos;
if( !Seek_Entry( rOld, &nPos ))
{
SwShareBoxFormat aEntry(rOld);
aEntry.AddFormat( rNew );
m_ShareArr.insert(m_ShareArr.begin() + nPos, aEntry);
}
else
m_ShareArr[ nPos ].AddFormat(rNew);
}
void SwShareBoxFormats::ChangeFrameFormat( SwTableBox* pBox, SwTableLine* pLn,
SwFrameFormat& rFormat )
{
SwClient aCl;
SwFrameFormat* pOld = nullptr;
if( pBox )
{
pOld = pBox->GetFrameFormat();
pOld->Add(aCl);
pBox->ChgFrameFormat( static_cast<SwTableBoxFormat*>(&rFormat) );
}
else if( pLn )
{
pOld = pLn->GetFrameFormat();
pOld->Add(aCl);
pLn->ChgFrameFormat( static_cast<SwTableLineFormat*>(&rFormat) );
}
if( pOld && pOld->HasOnlyOneListener() )
{
RemoveFormat( *pOld );
delete pOld;
}
}
void SwShareBoxFormats::SetSize( SwTableBox& rBox, const SwFormatFrameSize& rSz )
{
SwFrameFormat *pBoxFormat = rBox.GetFrameFormat(),
*pRet = GetFormat( *pBoxFormat, rSz.GetWidth() );
if( pRet )
ChangeFrameFormat( &rBox, nullptr, *pRet );
else
{
pRet = rBox.ClaimFrameFormat();
pRet->SetFormatAttr( rSz );
AddFormat( *pBoxFormat, *pRet );
}
}
void SwShareBoxFormats::SetAttr( SwTableBox& rBox, const SfxPoolItem& rItem )
{
SwFrameFormat *pBoxFormat = rBox.GetFrameFormat(),
*pRet = GetFormat( *pBoxFormat, rItem );
if( pRet )
ChangeFrameFormat( &rBox, nullptr, *pRet );
else
{
pRet = rBox.ClaimFrameFormat();
pRet->SetFormatAttr( rItem );
AddFormat( *pBoxFormat, *pRet );
}
}
void SwShareBoxFormats::SetAttr( SwTableLine& rLine, const SfxPoolItem& rItem )
{
SwFrameFormat *pLineFormat = rLine.GetFrameFormat(),
*pRet = GetFormat( *pLineFormat, rItem );
if( pRet )
ChangeFrameFormat( nullptr, &rLine, *pRet );
else
{
pRet = rLine.ClaimFrameFormat();
pRet->SetFormatAttr( rItem );
AddFormat( *pLineFormat, *pRet );
}
}
void SwShareBoxFormats::RemoveFormat( const SwFrameFormat& rFormat )
{
for (auto i = m_ShareArr.size(); i; )
{
if (m_ShareArr[ --i ].RemoveFormat(rFormat))
{
m_ShareArr.erase( m_ShareArr.begin() + i );
}
}
}
bool SwShareBoxFormats::Seek_Entry( const SwFrameFormat& rFormat, sal_uInt16* pPos ) const
{
sal_uIntPtr nIdx = reinterpret_cast<sal_uIntPtr>(&rFormat);
auto nO = m_ShareArr.size();
decltype(nO) nU = 0;
if( nO > 0 )
{
nO--;
while( nU <= nO )
{
const auto nM = nU + ( nO - nU ) / 2;
sal_uIntPtr nFormat = reinterpret_cast<sal_uIntPtr>(&m_ShareArr[ nM ].GetOldFormat());
if( nFormat == nIdx )
{
if( pPos )
*pPos = nM;
return true;
}
else if( nFormat < nIdx )
nU = nM + 1;
else if( nM == 0 )
{
if( pPos )
*pPos = nU;
return false;
}
else
nO = nM - 1;
}
}
if( pPos )
*pPos = nU;
return false;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|