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
|
/* -*- 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 <comphelper/string.hxx>
#include <svl/urihelper.hxx>
#include <hintids.hxx>
#include <osl/endian.h>
#include <sal/log.hxx>
#include <editeng/lrspitem.hxx>
#include <svx/xflbmtit.hxx>
#include <svx/xfillit0.hxx>
#include <svx/xlineit0.hxx>
#include <svx/xlnclit.hxx>
#include <svx/xlnwtit.hxx>
#include <svx/xlndsit.hxx>
#include <svx/xlnstit.hxx>
#include <svx/xlnedit.hxx>
#include <svx/xlnstwit.hxx>
#include <svx/xlnedwit.hxx>
#include <svx/xlnstcit.hxx>
#include <svx/xlnedcit.hxx>
#include <svx/xflclit.hxx>
#include <svx/xbtmpit.hxx>
#include <svx/svdmodel.hxx>
#include <svx/svdocapt.hxx>
#include <svx/sxctitm.hxx>
#include <svx/sdggaitm.hxx>
#include <svx/sdgluitm.hxx>
#include <svx/sdgmoitm.hxx>
#include <svx/sdmetitm.hxx>
#include <svx/sdooitm.hxx>
#include <svx/sdshitm.hxx>
#include <svx/sdsxyitm.hxx>
#include <svx/sdtagitm.hxx>
#include <svx/sdtditm.hxx>
#include <svx/sdtfsitm.hxx>
#include <editeng/editeng.hxx>
#include <svx/svdpage.hxx>
#include <svx/svdopath.hxx>
#include <svx/svdocirc.hxx>
#include <editeng/outlobj.hxx>
#include <svx/svdogrp.hxx>
#include <svx/svdograf.hxx>
#include <svx/svdoole2.hxx>
#include <editeng/colritem.hxx>
#include <editeng/ulspitem.hxx>
#include <editeng/brushitem.hxx>
#include <editeng/opaqitem.hxx>
#include <editeng/shaditem.hxx>
#include <editeng/boxitem.hxx>
#include <editeng/outliner.hxx>
#include <editeng/frmdiritem.hxx>
#include <svx/xfltrit.hxx>
#include <filter/msfilter/msdffimp.hxx>
#include <frmatr.hxx>
#include <grfatr.hxx>
#include <fmtornt.hxx>
#include <fmtcntnt.hxx>
#include <frmfmt.hxx>
#include <fmtanchr.hxx>
#include <pam.hxx>
#include <doc.hxx>
#include <drawdoc.hxx>
#include <IDocumentDrawModelAccess.hxx>
#include <ndgrf.hxx>
#include <dcontact.hxx>
#include <docsh.hxx>
#include <mdiexp.hxx>
#include "ww8struc.hxx"
#include "ww8scan.hxx"
#include "ww8par.hxx"
#include "ww8par2.hxx"
#include "ww8graf.hxx"
#include <fmtinfmt.hxx>
#include <editeng/eeitem.hxx>
#include <editeng/flditem.hxx>
#include <fmtfollowtextflow.hxx>
#include "writerhelper.hxx"
#include "writerwordglue.hxx"
#include <basegfx/point/b2dpoint.hxx>
#include <basegfx/polygon/b2dpolygon.hxx>
#include <editeng/editobj.hxx>
#include <math.h>
#include <fmturl.hxx>
#include <o3tl/enumrange.hxx>
#include <o3tl/safeint.hxx>
#include <memory>
#include <optional>
#include <filter/msfilter/escherex.hxx>
#include <utility>
#include "sprmids.hxx"
using ::editeng::SvxBorderLine;
using namespace ::com::sun::star;
using namespace sw::types;
using namespace sw::util;
// helper methods
static Color WW8TransCol(SVBT32 nWC)
{
#if 1 // 1 = use predefined color, 0 = ignore
// color table to convert RGB values to pre-defined colors
// (to make the writer UI show the right color names)
// the table is split in base 3, the greys are missing as
// they don't fit into that system (4 values: bw, wb, 2 * grey)
static const Color eColA[] = { // B G R B G R B G R
COL_BLACK, COL_RED, COL_LIGHTRED, // 0 0 0, 0 0 1, 0 0 2
COL_GREEN, COL_BROWN, COL_BLACK, // 0 1 0, 0 1 1, 0 1 2
COL_LIGHTGREEN, COL_BLACK, COL_YELLOW, // 0 2 0, 0 2 1, 0 2 2
COL_BLUE, COL_MAGENTA, COL_BLACK, // 1 0 0, 1 0 1, 1 0 2
COL_CYAN, COL_LIGHTGRAY, COL_BLACK, // 1 1 0, 1 1 1, 1 1 2
COL_BLACK, COL_BLACK, COL_BLACK, // 1 2 0, 1 2 1, 1 2 2
COL_LIGHTBLUE, COL_BLACK, COL_LIGHTMAGENTA, // 2 0 0, 2 0 1, 2 0 2
COL_BLACK, COL_BLACK, COL_BLACK, // 2 1 0, 2 1 1, 2 1 2
COL_LIGHTCYAN, COL_BLACK, COL_WHITE }; // 2 2 0, 2 2 1, 2 2 2
// In nWC[3] is a byte that's not described in the WW documentation.
// Its meaning appears to be the following: For 0, it's a normal color
// whose RGB values are in nWC[0..2]. If nWC[3] is 0x1, 0x7d or 0x83,
// it's a grey value whose black portion is given in 0.5% in nWC[0].
// I guess that BIT(0) in nWC[3] is relevant for distinguishing RGB/Grey.
if( !( nWC[3] & 0x1 ) && // not special (grey)
( ( nWC[0] == 0 || nWC[0]== 0x80 || nWC[0] == 0xff ) // R
&& ( nWC[1] == 0 || nWC[1]== 0x80 || nWC[1] == 0xff ) // G
&& ( nWC[2] == 0 || nWC[2]== 0x80 || nWC[2] == 0xff ) ) ){// B
int nIdx = 0; // and now: Idx-calculation in base 3
for (int i = 2; i >= 0; i--)
{
nIdx *= 3;
if (nWC[i])
nIdx += ((nWC[i] == 0xff) ? 2 : 1);
}
if (eColA[nIdx] != COL_BLACK)
return eColA[nIdx]; // default color
}
#endif
if (nWC[3] & 0x1)
{
// Special color gray
sal_uInt8 u = static_cast<sal_uInt8>( static_cast<sal_uLong>( 200 - nWC[0] ) * 256 / 200 );
return Color(u, u, u);
}
// User-Color
return Color(nWC[0], nWC[1], nWC[2]);
}
void wwFrameNamer::SetUniqueGraphName(SwFrameFormat *pFrameFormat, std::u16string_view rFixed)
{
if (mbIsDisabled || rFixed.empty())
return;
pFrameFormat->SetFormatName(UIName(msSeed+OUString::number(++mnImportedGraphicsCount) + ": " + rFixed));
}
// ReadGrafStart reads object data and if necessary creates an anchor
bool SwWW8ImplReader::ReadGrafStart(void* pData, short nDataSiz,
WW8_DPHEAD const * pHd, SfxAllItemSet &rSet)
{
if (sal_uInt16 n = SVBT16ToUInt16(pHd->cb); n < sizeof(WW8_DPHEAD) + nDataSiz)
{
OSL_ENSURE( false, "+graphic element: too short?" );
m_pStrm->SeekRel(n - sizeof(WW8_DPHEAD));
return false;
}
bool bCouldRead = checkRead(*m_pStrm, pData, nDataSiz);
OSL_ENSURE(bCouldRead, "Short Graphic header");
if (!bCouldRead)
return false;
SwFormatAnchor aAnchor( RndStdIds::FLY_AT_CHAR );
aAnchor.SetAnchor( m_pPaM->GetPoint() );
rSet.Put( aAnchor );
m_nDrawXOfs2 = m_nDrawXOfs;
m_nDrawYOfs2 = m_nDrawYOfs;
return true;
}
// SetStdAttr() sets standard attributes
static void SetStdAttr( SfxItemSet& rSet, WW8_DP_LINETYPE& rL,
WW8_DP_SHADOW const & rSh )
{
if( sal_uInt16 n = SVBT16ToUInt16( rL.lnps ); n == 5 ){ // invisible
rSet.Put( XLineStyleItem( drawing::LineStyle_NONE ) );
}else{ // visible
Color aCol( WW8TransCol( rL.lnpc ) ); // line color
rSet.Put( XLineColorItem( OUString(), aCol ) );
sal_uInt16 nLen = SVBT16ToUInt16( rL.lnpw );
rSet.Put( XLineWidthItem( nLen ) );
// line thickness
if( n >= 1
&& n <= 4 ){ // line style
rSet.Put( XLineStyleItem( drawing::LineStyle_DASH ) );
XDash aD( css::drawing::DashStyle_RECT, 1, 2 * nLen, 1, 5 * nLen, 5 * nLen );
switch( n ){
case 1: aD.SetDots( 0 ); // Dash
aD.SetDashLen( 6 * nLen );
aD.SetDistance( 4 * nLen );
break;
case 2: aD.SetDashes( 0 ); break; // Dot
case 3: break; // Dash Dot
case 4: aD.SetDots( 2 ); break; // Dash Dot Dot
}
rSet.Put( XLineDashItem( OUString(), aD ) );
}else{
rSet.Put( XLineStyleItem( drawing::LineStyle_SOLID ) ); // needed for TextBox
}
}
if( SVBT16ToUInt16( rSh.shdwpi ) ){ // shadow
rSet.Put(makeSdrShadowItem(true));
rSet.Put( makeSdrShadowXDistItem( SVBT16ToUInt16( rSh.xaOffset ) ) );
rSet.Put( makeSdrShadowYDistItem( SVBT16ToUInt16( rSh.yaOffset ) ) );
}
}
// SetFill() sets fill attributes such as fore- and background color and
// pattern by reducing to a color
// SetFill() doesn't yet set a pattern, because Sdr can't easily do that
// and the Sdr hatching (XDash) isn't finished yet.
// Instead, a mixed color will be picked that's between the selected ones.
static void SetFill( SfxItemSet& rSet, WW8_DP_FILL& rFill )
{
static const sal_uInt8 nPatA[] =
{
0, 0, 5, 10, 20, 25, 30, 40, 50, 60, 70, 75, 80,
90, 50, 50, 50, 50, 50, 50, 33, 33, 33, 33, 33, 33
};
sal_uInt16 nPat = SVBT16ToUInt16(rFill.flpp);
if (nPat == 0) // transparent
rSet.Put(XFillStyleItem(drawing::FillStyle_NONE));
else
{
rSet.Put(XFillStyleItem(drawing::FillStyle_SOLID)); // necessary for textbox
if (nPat <= 1 || (SAL_N_ELEMENTS(nPatA) <= nPat))
{
// Solid background or unknown
rSet.Put(XFillColorItem(OUString(), WW8TransCol(rFill.dlpcBg)));
}
else
{ // Brush -> color mix
Color aB( WW8TransCol( rFill.dlpcBg ) );
Color aF( WW8TransCol( rFill.dlpcFg ) );
aB.SetRed( static_cast<sal_uInt8>( ( static_cast<sal_uLong>(aF.GetRed()) * nPatA[nPat]
+ static_cast<sal_uLong>(aB.GetRed()) * ( 100 - nPatA[nPat] ) ) / 100 ) );
aB.SetGreen( static_cast<sal_uInt8>( ( static_cast<sal_uLong>(aF.GetGreen()) * nPatA[nPat]
+ static_cast<sal_uLong>(aB.GetGreen()) * ( 100 - nPatA[nPat] ) ) / 100 ) );
aB.SetBlue( static_cast<sal_uInt8>( ( static_cast<sal_uLong>(aF.GetBlue()) * nPatA[nPat]
+ static_cast<sal_uLong>(aB.GetBlue()) * ( 100 - nPatA[nPat] ) ) / 100 ) );
rSet.Put( XFillColorItem( OUString(), aB ) );
}
}
}
static void SetLineEndAttr( SfxItemSet& rSet, WW8_DP_LINEEND const & rLe,
WW8_DP_LINETYPE const & rLt )
{
sal_uInt16 aSB = SVBT16ToUInt16( rLe.aStartBits );
if( aSB & 0x3 )
{
::basegfx::B2DPolygon aPolygon;
aPolygon.append(::basegfx::B2DPoint(0.0, 330.0));
aPolygon.append(::basegfx::B2DPoint(100.0, 0.0));
aPolygon.append(::basegfx::B2DPoint(200.0, 330.0));
aPolygon.setClosed(true);
rSet.Put( XLineEndItem( OUString(), ::basegfx::B2DPolyPolygon(aPolygon) ) );
sal_uInt16 nSiz = SVBT16ToUInt16( rLt.lnpw )
* ( ( aSB >> 2 & 0x3 ) + ( aSB >> 4 & 0x3 ) );
if( nSiz < 220 ) nSiz = 220;
rSet.Put(XLineEndWidthItem(nSiz));
rSet.Put(XLineEndCenterItem(false));
}
sal_uInt16 aEB = SVBT16ToUInt16( rLe.aEndBits );
if( !(aEB & 0x3) ) return;
::basegfx::B2DPolygon aPolygon;
aPolygon.append(::basegfx::B2DPoint(0.0, 330.0));
aPolygon.append(::basegfx::B2DPoint(100.0, 0.0));
aPolygon.append(::basegfx::B2DPoint(200.0, 330.0));
aPolygon.setClosed(true);
rSet.Put( XLineStartItem( OUString(), ::basegfx::B2DPolyPolygon(aPolygon) ) );
sal_uInt16 nSiz = SVBT16ToUInt16( rLt.lnpw )
* ( ( aEB >> 2 & 0x3 ) + ( aEB >> 4 & 0x3 ) );
if( nSiz < 220 ) nSiz = 220;
rSet.Put(XLineStartWidthItem(nSiz));
rSet.Put(XLineStartCenterItem(false));
}
// start of routines for the different objects
rtl::Reference<SdrObject> SwWW8ImplReader::ReadLine(WW8_DPHEAD const * pHd, SfxAllItemSet &rSet)
{
WW8_DP_LINE aLine;
if( !ReadGrafStart( static_cast<void*>(&aLine), sizeof( aLine ), pHd, rSet ) )
return nullptr;
Point aP[2];
{
Point& rP0 = aP[0];
Point& rP1 = aP[1];
rP0.setX(SVBT16ToInt16(pHd->xa) + m_nDrawXOfs2);
rP0.setY(SVBT16ToInt16(pHd->ya) + m_nDrawYOfs2);
rP1 = rP0;
rP0.AdjustX(SVBT16ToInt16(aLine.xaStart));
rP0.AdjustY(SVBT16ToInt16(aLine.yaStart));
rP1.AdjustX(SVBT16ToInt16(aLine.xaEnd));
rP1.AdjustY(SVBT16ToInt16(aLine.yaEnd));
}
::basegfx::B2DPolygon aPolygon;
aPolygon.append(::basegfx::B2DPoint(aP[0].X(), aP[0].Y()));
aPolygon.append(::basegfx::B2DPoint(aP[1].X(), aP[1].Y()));
rtl::Reference<SdrObject> pObj = new SdrPathObj(
*m_pDrawModel,
SdrObjKind::Line,
::basegfx::B2DPolyPolygon(aPolygon));
SetStdAttr( rSet, aLine.aLnt, aLine.aShd );
SetLineEndAttr( rSet, aLine.aEpp, aLine.aLnt );
return pObj;
}
rtl::Reference<SdrObject> SwWW8ImplReader::ReadRect(WW8_DPHEAD const * pHd, SfxAllItemSet &rSet)
{
WW8_DP_RECT aRect;
if( !ReadGrafStart( static_cast<void*>(&aRect), sizeof( aRect ), pHd, rSet ) )
return nullptr;
Point aP0(SVBT16ToInt16(pHd->xa) + m_nDrawXOfs2, SVBT16ToInt16(pHd->ya) + m_nDrawYOfs2);
Point aP1( aP0 );
aP1.AdjustX(SVBT16ToInt16(pHd->dxa));
aP1.AdjustY(SVBT16ToInt16(pHd->dya));
rtl::Reference<SdrObject> pObj = new SdrRectObj(
*m_pDrawModel,
tools::Rectangle(aP0, aP1));
SetStdAttr( rSet, aRect.aLnt, aRect.aShd );
SetFill( rSet, aRect.aFill );
return pObj;
}
rtl::Reference<SdrObject> SwWW8ImplReader::ReadEllipse(WW8_DPHEAD const * pHd, SfxAllItemSet &rSet)
{
WW8_DP_ELLIPSE aEllipse;
if( !ReadGrafStart( static_cast<void*>(&aEllipse), sizeof( aEllipse ), pHd, rSet ) )
return nullptr;
Point aP0(SVBT16ToInt16(pHd->xa) + m_nDrawXOfs2, SVBT16ToInt16(pHd->ya) + m_nDrawYOfs2);
Point aP1( aP0 );
aP1.AdjustX(SVBT16ToInt16(pHd->dxa));
aP1.AdjustY(SVBT16ToInt16(pHd->dya));
rtl::Reference<SdrObject> pObj = new SdrCircObj(
*m_pDrawModel,
SdrCircKind::Full,
tools::Rectangle(aP0, aP1));
SetStdAttr( rSet, aEllipse.aLnt, aEllipse.aShd );
SetFill( rSet, aEllipse.aFill );
return pObj;
}
rtl::Reference<SdrObject> SwWW8ImplReader::ReadArc(WW8_DPHEAD const * pHd, SfxAllItemSet &rSet)
{
WW8_DP_ARC aArc;
if( !ReadGrafStart( static_cast<void*>(&aArc), sizeof( aArc ), pHd, rSet ) )
return nullptr;
Point aP0(SVBT16ToInt16(pHd->xa) + m_nDrawXOfs2, SVBT16ToInt16(pHd->ya) + m_nDrawYOfs2);
Point aP1( aP0 );
aP1.AdjustX(SVBT16ToInt16(pHd->dxa) * 2);
aP1.AdjustY(SVBT16ToInt16(pHd->dya) * 2);
short nA[] = { 2, 3, 1, 0 };
short nW = nA[ ( ( aArc.fLeft & 1 ) << 1 ) + ( aArc.fUp & 1 ) ];
if( !aArc.fLeft ){
aP0.AdjustY(-SVBT16ToInt16(pHd->dya));
aP1.AdjustY(-SVBT16ToInt16(pHd->dya));
}
if( aArc.fUp ){
aP0.AdjustX(-SVBT16ToInt16(pHd->dxa));
aP1.AdjustX(-SVBT16ToInt16(pHd->dxa));
}
rtl::Reference<SdrObject> pObj = new SdrCircObj(
*m_pDrawModel,
SdrCircKind::Section,
tools::Rectangle(aP0, aP1),
Degree100(nW * 9000),
Degree100(( ( nW + 1 ) & 3 ) * 9000));
SetStdAttr( rSet, aArc.aLnt, aArc.aShd );
SetFill( rSet, aArc.aFill );
return pObj;
}
rtl::Reference<SdrObject> SwWW8ImplReader::ReadPolyLine(WW8_DPHEAD const * pHd, SfxAllItemSet &rSet)
{
WW8_DP_POLYLINE aPoly;
if( !ReadGrafStart( static_cast<void*>(&aPoly), sizeof( aPoly ), pHd, rSet ) )
return nullptr;
sal_uInt16 nCount = SVBT16ToUInt16( aPoly.aBits1 ) >> 1 & 0x7fff;
std::unique_ptr<SVBT16[]> xP(new SVBT16[nCount * 2]);
bool bCouldRead = checkRead(*m_pStrm, xP.get(), nCount * 4); // read points
OSL_ENSURE(bCouldRead, "Short PolyLine header");
if (!bCouldRead)
return nullptr;
tools::Polygon aP( nCount );
Point aPt;
for (sal_uInt16 i=0; i<nCount; ++i)
{
aPt.setX(SVBT16ToUInt16(xP[i << 1]) + m_nDrawXOfs2 + SVBT16ToInt16(pHd->xa));
aPt.setY(SVBT16ToUInt16(xP[(i << 1) + 1]) + m_nDrawYOfs2 + SVBT16ToInt16(pHd->ya));
aP[i] = aPt;
}
xP.reset();
rtl::Reference<SdrObject> pObj = new SdrPathObj(
*m_pDrawModel,
(SVBT16ToUInt16(aPoly.aBits1) & 0x1) ? SdrObjKind::Polygon : SdrObjKind::PolyLine,
::basegfx::B2DPolyPolygon(aP.getB2DPolygon()));
SetStdAttr( rSet, aPoly.aLnt, aPoly.aShd );
SetFill( rSet, aPoly.aFill );
return pObj;
}
static ESelection GetESelection(EditEngine const &rDrawEditEngine, tools::Long nCpStart, tools::Long nCpEnd)
{
sal_Int32 nPCnt = rDrawEditEngine.GetParagraphCount();
sal_Int32 nSP = 0;
sal_Int32 nEP = 0;
while( (nSP < nPCnt)
&& (nCpStart >= rDrawEditEngine.GetTextLen( nSP ) + 1) )
{
nCpStart -= rDrawEditEngine.GetTextLen( nSP ) + 1;
nSP++;
}
// at the end, switch to the new line only 1 character later as
// otherwise line attributes reach one line too far
while( (nEP < nPCnt)
&& (nCpEnd > rDrawEditEngine.GetTextLen( nEP ) + 1) )
{
nCpEnd -= rDrawEditEngine.GetTextLen( nEP ) + 1;
nEP++;
}
return ESelection( nSP, nCpStart, nEP, nCpEnd );
}
// InsertTxbxStyAttrs() sets style attributes into the passed ItemSet.
// SW styles are used since import-WW-styles are already destroyed.
// SW styles are examined in depth first search order (with parent styles)
// for the attributes given in aSrcTab. They're cloned, and the clones'
// Which-IDs are changed according to the aDstTab table so that the
// EditEngine will not ignore them.
// Both Paragraph and character attributes are stuffed into the ItemSet.
void SwWW8ImplReader::InsertTxbxStyAttrs(SfxItemSet& rS, sal_uInt16 nColl, ManTypes eType)
{
SwWW8StyInf * pStyInf = GetStyle(nColl);
if( !(pStyInf != nullptr && pStyInf->m_pFormat && pStyInf->m_bColl) )
return;
const SfxPoolItem* pItem;
for( sal_uInt16 i = POOLATTR_BEGIN; i < POOLATTR_END; i++ )
{
// If we are set in the source and not set in the destination
// then add it in.
if ( SfxItemState::SET == pStyInf->m_pFormat->GetItemState(
i, true, &pItem ) )
{
SfxItemPool *pEditPool = rS.GetPool();
sal_uInt16 nWhich = i;
sal_uInt16 nSlotId = m_rDoc.GetAttrPool().GetSlotId(nWhich);
if (nWhich == RES_MARGIN_FIRSTLINE || nWhich == RES_MARGIN_TEXTLEFT
|| nWhich == RES_MARGIN_RIGHT)
{
// MSO ignores paragraph indents for comments in DOC format
if (eType == MAN_AND)
continue;
if (SfxItemState::SET == rS.GetItemState(EE_PARA_LRSPACE, false))
continue;
// LO7.6 split SW RES_LR_SPACE into three pieces,
// but EditEng still uses the combined SvxLRSpaceItem, so recombine
assert(!pEditPool->GetTrueWhichIDFromSlotID(nSlotId)
&& "unnecessary when EditEng learns about the separate pieces");
SvxLRSpaceItem aLR(rS.Get(EE_PARA_LRSPACE));
const auto& rFirstLine = pStyInf->m_pFormat->GetFirstLineIndent();
aLR.SetTextFirstLineOffset(rFirstLine.GetTextFirstLineOffset());
aLR.SetTextLeft(pStyInf->m_pFormat->GetTextLeftMargin().GetTextLeft());
aLR.SetRight(pStyInf->m_pFormat->GetRightMargin().GetRight());
rS.Put(aLR);
}
else if (nSlotId && nWhich != nSlotId
&& 0 != (nWhich = pEditPool->GetTrueWhichIDFromSlotID(nSlotId))
&& SfxItemState::SET != rS.GetItemState(nWhich, false))
{
rS.Put( pItem->CloneSetWhich(nWhich) );
}
}
}
}
static void lcl_StripFields(OUString &rString, WW8_CP &rNewStartCp)
{
sal_Int32 nStartPos = 0;
for (;;)
{
nStartPos = rString.indexOf(0x13, nStartPos);
if (nStartPos<0)
return;
const sal_Unicode cStops[] = {0x14, 0x15, 0};
const sal_Int32 nStopPos = comphelper::string::indexOfAny(rString, cStops, nStartPos);
if (nStopPos<0)
{
rNewStartCp += rString.getLength()-nStartPos;
rString = rString.copy(0, nStartPos);
return;
}
const bool was0x14 = rString[nStopPos]==0x14;
rString = rString.replaceAt(nStartPos, nStopPos+1-nStartPos, u"");
rNewStartCp += nStopPos-nStartPos;
if (was0x14)
{
++rNewStartCp;
nStartPos = rString.indexOf(0x15, nStartPos);
if (nStartPos<0)
return;
rString = rString.replaceAt(nStartPos, 1, u"");
}
}
}
namespace {
class Chunk
{
private:
OUString msURL;
tools::Long mnStartPos; // 0x13
tools::Long mnEndPos; // 0x15
public:
explicit Chunk(tools::Long nStart, OUString aURL)
: msURL(std::move(aURL)), mnStartPos(nStart), mnEndPos(0) {}
void SetEndPos(tools::Long nEnd) { mnEndPos = nEnd; }
tools::Long GetStartPos() const {return mnStartPos;}
tools::Long GetEndPos() const {return mnEndPos;}
const OUString &GetURL() const {return msURL;}
void Adjust(sal_Int32 nAdjust)
{
mnStartPos-=nAdjust;
mnEndPos-=nAdjust;
}
};
bool IsValidSel(const EditEngine& rEngine, const ESelection& rSel)
{
const auto nParaCount = rEngine.GetParagraphCount();
if (rSel.start.nPara < nParaCount && rSel.end.nPara < nParaCount)
return rSel.start.nIndex >= 0 && rSel.end.nIndex >= 0;
return false;
}
}
// InsertAttrsAsDrawingAttrs() sets attributes between StartCp and EndCp.
// Style attributes are set as hard, paragraph and character attributes.
void SwWW8ImplReader::InsertAttrsAsDrawingAttrs(WW8_CP nStartCp, WW8_CP nEndCp,
ManTypes eType, bool bONLYnPicLocFc)
{
/*
Save and create new plcxman for this drawing object, of the type that
will include the para end mark inside a paragraph property range, as
drawing boxes have real paragraph marks as part of their text, while
normal writer has separate nodes for each paragraph and so has no actual
paragraph mark as part of the paragraph text.
*/
WW8ReaderSave aSave(this);
m_xPlcxMan = std::make_shared<WW8PLCFMan>(m_xSBase.get(), eType, nStartCp, true);
WW8_CP nStart = m_xPlcxMan->Where();
WW8_CP nNext, nStartReplace=0;
bool bDoingSymbol = false;
sal_Unicode cReplaceSymbol = m_cSymbol;
std::optional<SfxItemSet> pS(m_pDrawEditEngine->GetEmptyItemSet());
WW8PLCFManResult aRes;
std::deque<Chunk> aChunks;
// Here store stack location
size_t nCurrentCount = m_xCtrlStck->size();
while (nStart < nEndCp)
{
// nStart is the beginning of the attributes for this range, and
// may be before the text itself. So watch out for that
WW8_CP nTextStart = nStart;
if (nTextStart < nStartCp)
nTextStart = nStartCp;
// get position of next SPRM
bool bStartAttr = m_xPlcxMan->Get(&aRes);
m_nCurrentColl = m_xPlcxMan->GetColl();
if (aRes.nSprmId)
{
if( bONLYnPicLocFc )
{
if ( (68 == aRes.nSprmId) || (0x6A03 == aRes.nSprmId) )
{
Read_PicLoc(aRes.nSprmId, aRes.pMemPos +
m_oSprmParser->DistanceToData(aRes.nSprmId), 4);
// Ok, that's what we were looking for. Now let's get
// out of here!
break;
}
}
else if ((eFTN > aRes.nSprmId) || (0x0800 <= aRes.nSprmId))
{
// Here place them onto our usual stack and we will pop them
// off and convert them later
if (bStartAttr)
{
ImportSprm(aRes.pMemPos, aRes.nMemLen, aRes.nSprmId);
if (!bDoingSymbol && m_bSymbol)
{
bDoingSymbol = true;
nStartReplace = nTextStart;
cReplaceSymbol = m_cSymbol;
}
}
else
{
EndSprm( aRes.nSprmId );
if (!m_bSymbol && bDoingSymbol)
{
bDoingSymbol = false;
ESelection aReplaceSel(GetESelection(*m_pDrawEditEngine, nStartReplace - nStartCp,
nTextStart - nStartCp));
sal_Int32 nParaCount = m_pDrawEditEngine->GetParagraphCount();
bool bBadSelection = aReplaceSel.start.nPara >= nParaCount || aReplaceSel.end.nPara >= nParaCount;
SAL_WARN_IF(bBadSelection, "sw.ww8", "editengine has different amount of text than expected");
if (!bBadSelection)
{
sal_Int32 nCount = nTextStart - nStartReplace;
m_pDrawEditEngine->QuickInsertText(
OUString::Concat(RepeatedUChar(cReplaceSymbol, nCount)),
aReplaceSel);
}
}
}
}
else if (aRes.nSprmId == eFLD)
{
if (bStartAttr)
{
size_t nCount = m_xCtrlStck->size();
if (m_aFieldStack.empty() && Read_Field(&aRes))
{
OUString sURL;
for (size_t nI = m_xCtrlStck->size(); nI > nCount; --nI)
{
const SfxPoolItem *pItem = ((*m_xCtrlStck)[nI-1]).m_pAttr.get();
sal_uInt16 nWhich = pItem->Which();
if (nWhich == RES_TXTATR_INETFMT)
{
const SwFormatINetFormat *pURL =
static_cast<const SwFormatINetFormat *>(pItem);
sURL = pURL->GetValue();
}
m_xCtrlStck->DeleteAndDestroy(nI-1);
}
aChunks.emplace_back(nStart, sURL);
}
}
else
{
if (!m_aFieldStack.empty() && End_Field() && !aChunks.empty())
aChunks.back().SetEndPos(nStart+1);
}
}
}
m_xPlcxMan->advance();
nNext = m_xPlcxMan->Where();
const WW8_CP nEnd = ( nNext < nEndCp ) ? nNext : nEndCp;
if (!bONLYnPicLocFc && nNext != nStart && nEnd >= nStartCp)
{
SfxItemPool *pEditPool = pS->GetPool();
// Here read current properties and convert them into pS
// and put those attrs into the draw box if they can be converted
// to draw attributes
if (m_xCtrlStck->size() - nCurrentCount)
{
for (size_t i = nCurrentCount; i < m_xCtrlStck->size(); ++i)
{
const SfxPoolItem *pItem = ((*m_xCtrlStck)[i]).m_pAttr.get();
sal_uInt16 nWhich = pItem->Which();
if( nWhich < RES_FLTRATTR_BEGIN ||
nWhich >= RES_FLTRATTR_END )
{
sal_uInt16 nSlotId = m_rDoc.GetAttrPool().GetSlotId(nWhich);
if (nWhich == RES_CHRATR_BACKGROUND || nWhich == RES_CHRATR_HIGHLIGHT)
{
Color aColor(static_cast<const SvxBrushItem*>(pItem)->GetColor());
pS->Put(SvxColorItem(aColor, EE_CHAR_BKGCOLOR));
}
else if (nWhich == RES_MARGIN_FIRSTLINE || nWhich == RES_MARGIN_TEXTLEFT
|| nWhich == RES_MARGIN_RIGHT)
{
// MSO ignores paragraph indents for comments in DOC format
if (eType == MAN_AND)
continue;
// LO7.6 split SW RES_LR_SPACE into three pieces,
// but EE still uses the combined SvxLRSpaceItem, so recombine
assert(!pEditPool->GetTrueWhichIDFromSlotID(nSlotId)
&& "unnecessary when EditEng learns about the separate pieces");
SvxLRSpaceItem aLR(pS->Get(EE_PARA_LRSPACE));
if (nWhich == RES_MARGIN_FIRSTLINE)
{
const auto* pFirstLine
= static_cast<const SvxFirstLineIndentItem*>(pItem);
aLR.SetTextFirstLineOffset(pFirstLine->GetTextFirstLineOffset());
}
else if (nWhich == RES_MARGIN_TEXTLEFT)
{
aLR.SetTextLeft(static_cast<const SvxTextLeftMarginItem*>(pItem)
->GetTextLeft());
}
else
{
aLR.SetRight(
static_cast<const SvxRightMarginItem*>(pItem)->GetRight());
}
pS->Put(aLR);
}
else if (nSlotId && nWhich != nSlotId
&& 0 != (nWhich = pEditPool->GetTrueWhichIDFromSlotID(nSlotId)))
{
pS->Put( pItem->CloneSetWhich(nWhich) );
}
}
}
}
// Fill in the remainder from the style
InsertTxbxStyAttrs(*pS, m_nCurrentColl, eType);
if( pS->Count() )
{
m_pDrawEditEngine->QuickSetAttribs( *pS,
GetESelection(*m_pDrawEditEngine, nTextStart - nStartCp, nEnd - nStartCp ) );
pS.emplace(m_pDrawEditEngine->GetEmptyItemSet());
}
}
nStart = nNext;
}
pS.reset();
// pop off as far as recorded location just in case there were some left
// unclosed
for (size_t nI = m_xCtrlStck->size(); nI > nCurrentCount; --nI)
m_xCtrlStck->DeleteAndDestroy(nI-1);
auto aEnd = aChunks.end();
for (auto aIter = aChunks.begin(); aIter != aEnd; ++aIter)
{
ESelection aSel(GetESelection(*m_pDrawEditEngine, aIter->GetStartPos()-nStartCp,
aIter->GetEndPos()-nStartCp));
if (!IsValidSel(*m_pDrawEditEngine, aSel))
continue;
OUString aString(m_pDrawEditEngine->GetText(aSel));
const sal_Int32 nOrigLen = aString.getLength();
WW8_CP nDummy(0);
lcl_StripFields(aString, nDummy);
sal_Int32 nChanged;
if (!aIter->GetURL().isEmpty())
{
SvxURLField aURL(aIter->GetURL(), aString, SvxURLFormat::AppDefault);
m_pDrawEditEngine->QuickInsertField(SvxFieldItem(aURL, EE_FEATURE_FIELD), aSel);
nChanged = nOrigLen - 1;
}
else
{
m_pDrawEditEngine->QuickInsertText(aString, aSel);
nChanged = nOrigLen - aString.getLength();
}
for (auto aIter2 = aIter+1; aIter2 != aEnd; ++aIter2)
aIter2->Adjust(nChanged);
}
/*
Don't worry about the new pPlcxMan, the restore removes it when
replacing the current one with the old one.
*/
aSave.Restore(this);
}
bool SwWW8ImplReader::GetTxbxTextSttEndCp(WW8_CP& rStartCp, WW8_CP& rEndCp,
sal_uInt16 nTxBxS, sal_uInt16 nSequence)
{
// grab the TextBox-PLCF quickly
WW8PLCFspecial* pT = m_xPlcxMan ? m_xPlcxMan->GetTxbx() : nullptr;
if( !pT )
{
OSL_ENSURE( false, "+where's the text graphic (1)?" );
return false;
}
// if applicable first find the right TextBox-Story
bool bCheckTextBoxStory = ( nTxBxS && pT->GetIMax() >= nTxBxS );
if( bCheckTextBoxStory )
pT->SetIdx( nTxBxS-1 );
// then determine start and end
void* pT0;
if (!pT->Get(rStartCp, pT0) || rStartCp < 0)
{
OSL_ENSURE( false, "+where's the text graphic (2)?" );
return false;
}
if( bCheckTextBoxStory )
{
bool bReusable = (0 != SVBT16ToUInt16( static_cast<WW8_TXBXS*>(pT0)->fReusable ));
while( bReusable )
{
pT->advance();
if( !pT->Get( rStartCp, pT0 ) )
{
OSL_ENSURE( false, "+where's the text graphic (2a)?" );
return false;
}
bReusable = (0 != SVBT16ToUInt16( static_cast<WW8_TXBXS*>(pT0)->fReusable ));
}
}
pT->advance();
if (!pT->Get(rEndCp, pT0) || rEndCp < 0)
{
OSL_ENSURE( false, "+where's the text graphic (3)?" );
return false;
}
// find the right page in the break table (if necessary)
if( bCheckTextBoxStory )
{
// special case: entire chain should be determined - done!
if( USHRT_MAX > nSequence )
{
tools::Long nMinStartCp = rStartCp;
tools::Long nMaxEndCp = rEndCp;
// quickly grab the TextBox-Break-Descriptor-PLCF
pT = m_xPlcxMan->GetTxbxBkd();
if (!pT) // It can occur on occasion, Caolan
return false;
// find first entry for this TextBox story
if( !pT->SeekPos( rStartCp ) )
{
OSL_ENSURE( false, "+where's the text graphic (4)" );
return false;
}
// if needed skip the appropriate number of entries
for (sal_uInt16 iSequence = 0; iSequence < nSequence; ++iSequence)
pT->advance();
// and determine actual start and end
if( (!pT->Get( rStartCp, pT0 ))
|| ( nMinStartCp > rStartCp ) )
{
OSL_ENSURE( false, "+where's the text graphic (5)?" );
return false;
}
if( rStartCp >= nMaxEndCp )
rEndCp = rStartCp; // not an error: empty string
else
{
pT->advance();
if ( (!pT->Get(rEndCp, pT0)) || (nMaxEndCp < rEndCp-1) )
{
OSL_ENSURE( false, "+where's the text graphic (6)?" );
return false;
}
rEndCp -= 1;
}
}
else
rEndCp -= 1;
}
else
rEndCp -= 1;
return true;
}
// TxbxText() grabs the text from the WW file and returns that along with
// the StartCp and the corrected (by -2, or -1 for version 8) EndCp.
sal_Int32 SwWW8ImplReader::GetRangeAsDrawingString(OUString& rString, tools::Long nStartCp, tools::Long nEndCp, ManTypes eType)
{
WW8_CP nOffset = 0;
m_xWwFib->GetBaseCp(eType, &nOffset); //TODO: check return value
OSL_ENSURE(nStartCp <= nEndCp, "+where's the graphic text (7)?");
if (nStartCp == nEndCp)
rString.clear(); // empty string: entirely possible
else if (nStartCp < nEndCp)
{
// read the text: can be split into multiple pieces
const sal_Int32 nLen = m_xSBase->WW8ReadString(*m_pStrm, rString,
nStartCp + nOffset, nEndCp - nStartCp, GetCurrentCharSet());
OSL_ENSURE(nLen, "+where's the text graphic (8)?");
if (nLen>0)
{
if( rString[nLen-1]==0x0d )
rString = rString.copy(0, nLen-1);
rString = rString.replace( 0xb, 0xa );
return nLen;
}
}
return 0;
}
//EditEngine::InsertText will replace dos lines resulting in a shorter
//string than is passed in, so inserting attributes based on the original
//string len can fail. So here replace the dos line ends similar to
//how EditEngine does it, but preserve the length and replace the extra
//chars with placeholders, record the position of the placeholders and
//remove those extra chars after attributes have been inserted
static std::vector<sal_Int32> replaceDosLineEndsButPreserveLength(OUString &rIn)
{
OUStringBuffer aNewData(rIn);
std::vector<sal_Int32> aDosLineEndDummies;
sal_Int32 i = 0;
sal_Int32 nStrLen = rIn.getLength();
while (i < nStrLen)
{
// \r or \n causes linebreak
if (rIn[i] == '\r' || rIn[i] == '\n')
{
// skip char if \r\n or \n\r
if ( (i+1) < nStrLen && ((rIn[i+1] == '\r') || (rIn[i+1] == '\n')) &&
(rIn[i] != rIn[i+1]) )
{
++i;
aDosLineEndDummies.push_back(i);
aNewData[i] = 0;
}
}
++i;
}
rIn = aNewData.makeStringAndClear();
return aDosLineEndDummies;
}
static void removePositions(EditEngine &rDrawEditEngine, const std::vector<sal_Int32>& rDosLineEndDummies)
{
for (auto aIter = rDosLineEndDummies.rbegin(); aIter != rDosLineEndDummies.rend(); ++aIter)
{
sal_Int32 nCharPos(*aIter);
rDrawEditEngine.QuickDelete(GetESelection(rDrawEditEngine, nCharPos, nCharPos+1));
}
}
std::optional<OutlinerParaObject> SwWW8ImplReader::ImportAsOutliner(OUString &rString, WW8_CP nStartCp, WW8_CP nEndCp, ManTypes eType)
{
std::optional<OutlinerParaObject> pRet;
sal_Int32 nLen = GetRangeAsDrawingString(rString, nStartCp, nEndCp, eType);
if (nLen > 0)
{
if (m_bFuzzing && rString.getLength() > 1024)
{
SAL_WARN("sw.ww8", "Truncating long EditEngine strings when fuzzing for performance");
rString = rString.copy(0, 1024);
}
if (!m_pDrawEditEngine)
{
m_pDrawEditEngine.reset(new EditEngine(nullptr));
}
//replace dos line endings with editeng ones, replace any extra chars with
//placeholders to keep the inserted string len in sync with the attribute cps
//and record in aDosLineEnds the superfluous positions
OUString sEEString(rString);
std::vector<sal_Int32> aDosLineEnds(replaceDosLineEndsButPreserveLength(sEEString));
m_pDrawEditEngine->SetText(sEEString);
InsertAttrsAsDrawingAttrs(nStartCp, nStartCp+nLen, eType);
//remove any superfluous placeholders of replaceDosLineEndsButPreserveLength
//after attributes have been inserted
removePositions(*m_pDrawEditEngine, aDosLineEnds);
// Annotations typically begin with a (useless) 0x5
if ((eType == MAN_AND) && m_pDrawEditEngine->GetTextLen())
{
ESelection aFirstChar(0, 0, 0, 1);
if (m_pDrawEditEngine->GetText( aFirstChar ) == "\x05")
m_pDrawEditEngine->QuickDelete(aFirstChar);
}
std::unique_ptr<EditTextObject> pTemporaryText = m_pDrawEditEngine->CreateTextObject();
pRet.emplace( std::move(pTemporaryText) );
pRet->SetOutlinerMode( OutlinerMode::TextObject );
m_pDrawEditEngine->SetText( OUString() );
m_pDrawEditEngine->SetParaAttribs(0, m_pDrawEditEngine->GetEmptyItemSet());
// Strip out fields, leaving the result
WW8_CP nDummy(0);
lcl_StripFields(rString, nDummy);
// Strip out word's special characters for the simple string
rString = rString.replaceAll("\x01", "");
rString = rString.replaceAll("\x05", "");
rString = rString.replaceAll("\x08", "");
rString = rString.replaceAll("\007\007", "\007\012");
rString = rString.replace(0x7, ' ');
}
return pRet;
}
// InsertTxbxText() adds the Text and the Attributes for TextBoxes and CaptionBoxes
void SwWW8ImplReader::InsertTxbxText(SdrTextObj* pTextObj,
Size const * pObjSiz, sal_uInt16 nTxBxS, sal_uInt16 nSequence, tools::Long nPosCp,
SwFrameFormat const * pOldFlyFormat, bool bMakeSdrGrafObj, bool& rbEraseTextObj,
bool* pbTestTxbxContainsText, tools::Long* pnStartCp, tools::Long* pnEndCp,
bool* pbContainsGraphics, SvxMSDffImportRec const * pRecord)
{
SwFrameFormat* pFlyFormat = nullptr;
sal_uInt64 nOld = m_pStrm->Tell();
ManTypes eType = m_xPlcxMan->GetManType() == MAN_HDFT ? MAN_TXBX_HDFT : MAN_TXBX;
rbEraseTextObj = false;
OUString aString;
WW8_CP nStartCp, nEndCp;
bool bContainsGraphics = false;
bool bTextWasRead = GetTxbxTextSttEndCp(nStartCp, nEndCp, nTxBxS, nSequence) &&
GetRangeAsDrawingString(aString, nStartCp, nEndCp, eType) > 0;
if (!m_pDrawEditEngine)
{
m_pDrawEditEngine.reset(new EditEngine(nullptr));
}
if( pObjSiz )
m_pDrawEditEngine->SetPaperSize( *pObjSiz );
if (m_bFuzzing && aString.getLength() > 1024)
{
SAL_WARN("sw.ww8", "Truncating long EditEngine strings when fuzzing for performance");
aString = aString.copy(0, 1024);
}
const OUString aOrigString(aString);
if( bTextWasRead )
{
WW8_CP nNewStartCp = nStartCp;
lcl_StripFields(aString, nNewStartCp);
if (aString.getLength()!=1)
{
bContainsGraphics = aString.indexOf(0x1)<0 || aString.indexOf(0x8)<0;
}
else // May be a single graphic or object
{
bool bDone = true;
switch( aString[0] )
{
case 0x1:
if (!pbTestTxbxContainsText)
{
WW8ReaderSave aSave(this, nNewStartCp -1);
bool bOldEmbeddObj = m_bEmbeddObj;
// bEmbeddObj Ordinarily would have been set by field
// parse, but this is impossible here so...
m_bEmbeddObj = true;
// 1st look for OLE- or Graph-Indicator Sprms
WW8PLCFx_Cp_FKP* pChp = m_xPlcxMan->GetChpPLCF();
WW8PLCFxDesc aDesc;
pChp->GetSprms( &aDesc );
WW8SprmIter aSprmIter(aDesc.pMemPos, aDesc.nSprmsLen, *m_oSprmParser);
for( int nLoop = 0; nLoop < 2; ++nLoop )
{
while (aSprmIter.GetSprms())
{
const sal_uInt8 *const pParams(aSprmIter.GetCurrentParams());
if (nullptr == pParams)
break;
sal_uInt16 nCurrentId = aSprmIter.GetCurrentId();
switch( nCurrentId )
{
case 75:
case 118:
case 0x080A:
case 0x0856:
Read_Obj(nCurrentId, pParams, 1);
break;
case 68: // Read_Pic()
case 0x6A03:
case NS_sprm::LN_CObjLocation:
Read_PicLoc(nCurrentId, pParams, 1);
break;
}
aSprmIter.advance();
}
if( !nLoop )
{
pChp->GetPCDSprms( aDesc );
aSprmIter.SetSprms( aDesc.pMemPos,
aDesc.nSprmsLen );
}
}
aSave.Restore(this);
m_bEmbeddObj=bOldEmbeddObj;
// then import either an OLE of a Graphic
if( m_bObj )
{
if( bMakeSdrGrafObj && pTextObj &&
pTextObj->getParentSdrObjectFromSdrObject() )
{
// use SdrOleObj/SdrGrafObj instead of
// SdrTextObj in this Group
Graphic aGraph;
rtl::Reference<SdrObject> pNew = ImportOleBase(aGraph);
if( !pNew )
{
pNew = new SdrGrafObj(*m_pDrawModel);
static_cast<SdrGrafObj*>(pNew.get())->SetGraphic(aGraph);
}
GraphicCtor();
pNew->SetLogicRect( pTextObj->GetCurrentBoundRect() );
pNew->SetLayer( pTextObj->GetLayer() );
pTextObj->getParentSdrObjectFromSdrObject()->GetSubList()->
ReplaceObject(pNew.get(), pTextObj->GetOrdNum());
}
else
pFlyFormat = ImportOle();
m_bObj = false;
}
else
{
InsertAttrsAsDrawingAttrs(nNewStartCp, nNewStartCp+1,
eType, true);
pFlyFormat = ImportGraf(bMakeSdrGrafObj ? pTextObj : nullptr,
pOldFlyFormat);
}
}
break;
case 0x8:
if ( (!pbTestTxbxContainsText) && (!m_bObj) )
pFlyFormat = Read_GrafLayer( nPosCp );
break;
default:
bDone = false;
break;
}
if( bDone )
{
if( pFlyFormat && pRecord )
{
SfxItemSetFixed<RES_FRMATR_BEGIN, RES_FRMATR_END-1, XATTR_START, XATTR_END>
aFlySet( m_rDoc.GetAttrPool() );
tools::Rectangle aInnerDist( pRecord->nDxTextLeft,
pRecord->nDyTextTop,
pRecord->nDxTextRight,
pRecord->nDyTextBottom );
MatchSdrItemsIntoFlySet( pTextObj,
aFlySet,
pRecord->eLineStyle,
pRecord->eLineDashing,
pRecord->eShapeType,
aInnerDist );
pFlyFormat->SetFormatAttr( aFlySet );
MapWrapIntoFlyFormat(*pRecord, *pFlyFormat);
}
aString.clear();
rbEraseTextObj = (nullptr != pFlyFormat);
}
}
}
if( pnStartCp )
*pnStartCp = nStartCp;
if( pnEndCp )
*pnEndCp = nEndCp;
if( pbTestTxbxContainsText )
*pbTestTxbxContainsText = bTextWasRead && ! rbEraseTextObj;
else if( !rbEraseTextObj )
{
if( bTextWasRead )
{
m_pDrawEditEngine->SetText(aOrigString);
InsertAttrsAsDrawingAttrs(nStartCp, nEndCp, eType);
}
bool bVertical = pTextObj->IsVerticalWriting();
OutlinerParaObject aOp(m_pDrawEditEngine->CreateTextObject());
aOp.SetOutlinerMode( OutlinerMode::TextObject );
aOp.SetVertical( bVertical );
pTextObj->NbcSetOutlinerParaObject( std::move(aOp) );
pTextObj->SetVerticalWriting(bVertical);
// For the next TextBox also remove the old paragraph attributes
// and styles, otherwise the next box will start with the wrong
// attributes.
// Course of action: delete text = reduce to one paragraph
// and on this one delete the paragraph attributes
// and styles
m_pDrawEditEngine->SetText( OUString() );
m_pDrawEditEngine->SetParaAttribs(0, m_pDrawEditEngine->GetEmptyItemSet());
}
m_pStrm->Seek( nOld );
if (pbContainsGraphics)
*pbContainsGraphics = bContainsGraphics;
}
bool SwWW8ImplReader::TxbxChainContainsRealText(sal_uInt16 nTxBxS, tools::Long& rStartCp,
tools::Long& rEndCp)
{
bool bErase, bContainsText;
InsertTxbxText( nullptr,nullptr,nTxBxS,USHRT_MAX,0,nullptr,false, bErase, &bContainsText,
&rStartCp, &rEndCp );
return bContainsText;
}
// TextBoxes only for Ver67 !!
rtl::Reference<SdrObject> SwWW8ImplReader::ReadTextBox(WW8_DPHEAD const * pHd, SfxAllItemSet &rSet)
{
bool bDummy;
WW8_DP_TXTBOX aTextB;
if( !ReadGrafStart( static_cast<void*>(&aTextB), sizeof( aTextB ), pHd, rSet ) )
return nullptr;
Point aP0(SVBT16ToInt16(pHd->xa) + m_nDrawXOfs2, SVBT16ToInt16(pHd->ya) + m_nDrawYOfs2);
Point aP1( aP0 );
aP1.AdjustX(SVBT16ToInt16(pHd->dxa));
aP1.AdjustY(SVBT16ToInt16(pHd->dya));
rtl::Reference<SdrRectObj> pObj = new SdrRectObj(
*m_pDrawModel,
SdrObjKind::Text,
tools::Rectangle(aP0, aP1));
pObj->NbcSetSnapRect(tools::Rectangle(aP0, aP1));
Size aSize(SVBT16ToInt16(pHd->dxa), SVBT16ToInt16(pHd->dya));
tools::Long nStartCpFly,nEndCpFly;
bool bContainsGraphics;
InsertTxbxText(pObj.get(), &aSize, 0, 0, 0, nullptr, false,
bDummy,nullptr,&nStartCpFly,&nEndCpFly,&bContainsGraphics);
SetStdAttr( rSet, aTextB.aLnt, aTextB.aShd );
SetFill( rSet, aTextB.aFill );
rSet.Put( SdrTextFitToSizeTypeItem( drawing::TextFitToSizeType_NONE ) );
rSet.Put( makeSdrTextAutoGrowWidthItem(false));
rSet.Put( makeSdrTextAutoGrowHeightItem(false));
rSet.Put( makeSdrTextLeftDistItem( MIN_BORDER_DIST*2 ) );
rSet.Put( makeSdrTextRightDistItem( MIN_BORDER_DIST*2 ) );
rSet.Put( makeSdrTextUpperDistItem( MIN_BORDER_DIST ) );
rSet.Put( makeSdrTextLowerDistItem( MIN_BORDER_DIST ) );
return pObj;
}
rtl::Reference<SdrObject> SwWW8ImplReader::ReadCaptionBox(WW8_DPHEAD const * pHd, SfxAllItemSet &rSet)
{
static const SdrCaptionType aCaptA[] = { SdrCaptionType::Type1, SdrCaptionType::Type2,
SdrCaptionType::Type3, SdrCaptionType::Type4 };
WW8_DP_CALLOUT_TXTBOX aCallB;
if( !ReadGrafStart( static_cast<void*>(&aCallB), sizeof( aCallB ), pHd, rSet ) )
return nullptr;
sal_uInt16 nCount = SVBT16ToUInt16( aCallB.dpPolyLine.aBits1 ) >> 1 & 0x7fff;
if (nCount < 1)
{
SAL_WARN("sw.ww8", "Short CaptionBox header");
return nullptr;
}
std::unique_ptr<SVBT16[]> xP(new SVBT16[nCount * 2]);
bool bCouldRead = checkRead(*m_pStrm, xP.get(), nCount * 4); // read points
if (!bCouldRead)
{
SAL_WARN("sw.ww8", "Short CaptionBox header");
return nullptr;
}
sal_uInt8 nTyp = static_cast<sal_uInt8>(nCount) - 1;
if( nTyp == 1 && SVBT16ToUInt16( xP[0] ) == SVBT16ToUInt16( xP[2] ) )
nTyp = 0;
Point aP0(SVBT16ToInt16(pHd->xa) + SVBT16ToInt16(aCallB.dpheadTxbx.xa) + m_nDrawXOfs2,
SVBT16ToInt16(pHd->ya) + SVBT16ToInt16(aCallB.dpheadTxbx.ya) + m_nDrawYOfs2);
Point aP1( aP0 );
aP1.AdjustX(SVBT16ToInt16(aCallB.dpheadTxbx.dxa));
aP1.AdjustY(SVBT16ToInt16(aCallB.dpheadTxbx.dya));
Point aP2( SVBT16ToInt16( pHd->xa )
+ SVBT16ToInt16( aCallB.dpheadPolyLine.xa )
+ m_nDrawXOfs2 + SVBT16ToInt16( xP[0] ),
SVBT16ToInt16( pHd->ya )
+ SVBT16ToInt16( aCallB.dpheadPolyLine.ya )
+ m_nDrawYOfs2 + SVBT16ToInt16( xP[1] ) );
xP.reset();
rtl::Reference<SdrCaptionObj> pObj = new SdrCaptionObj(
*m_pDrawModel,
tools::Rectangle(aP0, aP1),
aP2);
pObj->NbcSetSnapRect(tools::Rectangle(aP0, aP1));
Size aSize(SVBT16ToInt16(aCallB.dpheadTxbx.dxa), SVBT16ToInt16(aCallB.dpheadTxbx.dya));
bool bEraseThisObject;
InsertTxbxText(pObj.get(), &aSize, 0, 0, 0, nullptr, false, bEraseThisObject );
if( SVBT16ToUInt16( aCallB.dptxbx.aLnt.lnps ) != 5 ) // Is border visible ?
SetStdAttr( rSet, aCallB.dptxbx.aLnt, aCallB.dptxbx.aShd );
else // no -> take lines
SetStdAttr( rSet, aCallB.dpPolyLine.aLnt, aCallB.dptxbx.aShd );
SetFill( rSet, aCallB.dptxbx.aFill );
rSet.Put(SdrCaptionTypeItem(aCaptA[nTyp % SAL_N_ELEMENTS(aCaptA)]));
return pObj;
}
rtl::Reference<SdrObject> SwWW8ImplReader::ReadGroup(WW8_DPHEAD const * pHd, SfxAllItemSet &rSet)
{
sal_Int16 nGrouped;
if( !ReadGrafStart( static_cast<void*>(&nGrouped), sizeof( nGrouped ), pHd, rSet ) )
return nullptr;
#ifdef OSL_BIGENDIAN
nGrouped = (sal_Int16)OSL_SWAPWORD( nGrouped );
#endif
m_nDrawXOfs = m_nDrawXOfs + SVBT16ToInt16(pHd->xa);
m_nDrawYOfs = m_nDrawYOfs + SVBT16ToInt16(pHd->ya);
rtl::Reference<SdrObject> pObj = new SdrObjGroup(*m_pDrawModel);
short nLeft = SVBT16ToInt16(pHd->cb) - sizeof(WW8_DPHEAD);
for (int i = 0; i < nGrouped && nLeft >= static_cast<short>(sizeof(WW8_DPHEAD)); ++i)
{
SfxAllItemSet aSet(m_pDrawModel->GetItemPool());
if (rtl::Reference<SdrObject> pObject = ReadGrafPrimitive(nLeft, aSet))
{
// first add and then set ItemSet
SdrObjList *pSubGroup = pObj->GetSubList();
OSL_ENSURE(pSubGroup, "Why no sublist available?");
if (pSubGroup)
pSubGroup->InsertObject(pObject.get(), 0);
pObject->SetMergedItemSetAndBroadcast(aSet);
}
}
m_nDrawXOfs = m_nDrawXOfs - SVBT16ToInt16(pHd->xa);
m_nDrawYOfs = m_nDrawYOfs - SVBT16ToInt16(pHd->ya);
return pObj;
}
rtl::Reference<SdrObject> SwWW8ImplReader::ReadGrafPrimitive(short& rLeft, SfxAllItemSet &rSet)
{
// This whole archaic word 6 graphic import can probably be refactored
// into an object hierarchy with a little effort.
rtl::Reference<SdrObject> pRet;
WW8_DPHEAD aHd; // Read Draw-Primitive-Header
bool bCouldRead = checkRead(*m_pStrm, &aHd, sizeof(WW8_DPHEAD)) &&
SVBT16ToUInt16(aHd.cb) >= sizeof(WW8_DPHEAD);
OSL_ENSURE(bCouldRead, "Graphic Primitive header short read" );
if (!bCouldRead)
{
rLeft=0;
return pRet;
}
if( rLeft >= SVBT16ToUInt16(aHd.cb) ) // precautions
{
rSet.Put(SwFormatSurround(css::text::WrapTextMode_THROUGH));
switch (SVBT16ToUInt16(aHd.dpk) & 0xff )
{
case 0:
pRet = ReadGroup(&aHd, rSet);
break;
case 1:
pRet = ReadLine(&aHd, rSet);
break;
case 2:
pRet = ReadTextBox(&aHd, rSet);
break;
case 3:
pRet = ReadRect(&aHd, rSet);
break;
case 4:
pRet = ReadEllipse(&aHd, rSet);
break;
case 5:
pRet = ReadArc(&aHd, rSet);
break;
case 6:
pRet = ReadPolyLine(&aHd, rSet);
break;
case 7:
pRet = ReadCaptionBox(&aHd, rSet);
break;
default: // unknown
m_pStrm->SeekRel(SVBT16ToUInt16(aHd.cb) - sizeof(WW8_DPHEAD));
break;
}
}
else
{
OSL_ENSURE( false, "+Grafik-Overlap" );
}
rLeft = rLeft - SVBT16ToUInt16( aHd.cb );
return pRet;
}
void SwWW8ImplReader::ReadGrafLayer1(WW8PLCFspecial& rPF, tools::Long nGrafAnchorCp)
{
rPF.SeekPos(nGrafAnchorCp);
WW8_FC nStartFc;
void* pF0;
if (!rPF.Get(nStartFc, pF0))
{
OSL_ENSURE( false, "+Where is the graphic (2) ?" );
return;
}
WW8_FDOA* pF = static_cast<WW8_FDOA*>(pF0);
if( !SVBT32ToUInt32( pF->fc ) )
{
OSL_ENSURE( false, "+Where is the graphic (3) ?" );
return;
}
sal_uInt32 nPosFc = SVBT32ToUInt32(pF->fc);
//skip duplicate graphics when fuzzing
if (m_bFuzzing)
{
if (!m_aGrafPosSet.insert(nPosFc).second)
return;
}
bool bCouldSeek = checkSeek(*m_pStrm, nPosFc);
OSL_ENSURE(bCouldSeek, "Invalid graphic offset");
if (!bCouldSeek)
return;
// read Draw-Header
WW8_DO aDo;
bool bCouldRead = checkRead(*m_pStrm, &aDo, sizeof(WW8_DO));
OSL_ENSURE(bCouldRead, "Short graphic header");
if (!bCouldRead)
return;
short nLeft = SVBT16ToUInt16( aDo.cb ) - sizeof( WW8_DO );
while (nLeft > static_cast<short>(sizeof(WW8_DPHEAD)))
{
SfxAllItemSet aSet( m_pDrawModel->GetItemPool() );
if (rtl::Reference<SdrObject> pObject = ReadGrafPrimitive(nLeft, aSet))
{
m_xWWZOrder->InsertDrawingObject(pObject.get(), SVBT16ToUInt16(aDo.dhgt));
tools::Rectangle aRect(pObject->GetSnapRect());
const sal_uInt32 nCntRelTo = 3;
// Adjustment is horizontally relative to...
static const sal_Int16 aHoriRelOriTab[nCntRelTo] =
{
text::RelOrientation::PAGE_PRINT_AREA, // 0 is page textarea margin
text::RelOrientation::PAGE_FRAME, // 1 is page margin
text::RelOrientation::FRAME, // 2 is relative to paragraph
};
// Adjustment is vertically relative to...
static const sal_Int16 aVertRelOriTab[nCntRelTo] =
{
text::RelOrientation::PAGE_PRINT_AREA, // 0 is page textarea margin
text::RelOrientation::PAGE_FRAME, // 1 is page margin
text::RelOrientation::FRAME, // 2 is relative to paragraph
};
const int nXAlign = aDo.bx < nCntRelTo ? aDo.bx : 0;
const int nYAlign = aDo.by < nCntRelTo ? aDo.by : 0;
aSet.Put(SwFormatHoriOrient(aRect.Left(), text::HoriOrientation::NONE,
aHoriRelOriTab[ nXAlign ]));
aSet.Put(SwFormatVertOrient(aRect.Top(), text::VertOrientation::NONE,
aVertRelOriTab[ nYAlign ]));
SwFrameFormat *pFrame = m_rDoc.getIDocumentContentOperations().InsertDrawObj( *m_pPaM, *pObject, aSet );
pObject->SetMergedItemSet(aSet);
if (SwDrawFrameFormat *pDrawFrame = dynamic_cast<SwDrawFrameFormat*>(pFrame))
{
pDrawFrame->PosAttrSet();
}
AddAutoAnchor(pFrame);
}
}
}
sal_Int32 SwMSDffManager::GetEscherLineMatch(MSO_LineStyle eStyle,
MSO_SPT eShapeType, sal_Int32 &rThick)
{
sal_Int32 nOutsideThick = 0;
/*
Note: In contrast to the regular WinWord table and frame border width,
where the overall border width has to be calculated from the width of *one*
line, the data from ESCHER already contains the overall width [twips]!
The WinWord default is 15 tw. We take for this our 20 tw line.
(0.75 pt and 1.0 pt looking more similar on hardcopy than 0.75 pt and our
0.05 pt hairline.) The hairline we only set by WinWord width up to max.
0.5 pt.
*/
switch( eStyle )
{
case mso_lineTriple:
case mso_lineSimple:
nOutsideThick = eShapeType != mso_sptTextBox ? rThick : rThick/2;
break;
case mso_lineDouble:
if (eShapeType == mso_sptTextBox)
{
nOutsideThick = rThick/6;
rThick = rThick*2/3;
}
else
nOutsideThick = rThick*2/3;
break;
case mso_lineThickThin:
if (eShapeType == mso_sptTextBox)
{
nOutsideThick = rThick*3/10;
rThick = rThick*4/5;
}
else
nOutsideThick = rThick*4/5;
break;
case mso_lineThinThick:
{
if (eShapeType == mso_sptTextBox)
{
nOutsideThick = rThick/10;
rThick = rThick*3/5;
}
else
nOutsideThick = rThick*3/5;
}
break;
default:
break;
}
return nOutsideThick;
}
// Returns the thickness of the line outside the frame, the logic of
// words positioning of borders around floating objects is that of a
// disturbed mind.
sal_Int32 SwWW8ImplReader::MatchSdrBoxIntoFlyBoxItem(const Color& rLineColor,
MSO_LineStyle eLineStyle, MSO_LineDashing eDashing, MSO_SPT eShapeType, sal_Int32 &rLineThick,
SvxBoxItem& rBox )
{
sal_Int32 nOutsideThick = 0;
if( !rLineThick )
return nOutsideThick;
SvxBorderLineStyle nIdx = SvxBorderLineStyle::NONE;
sal_Int32 nLineThick=rLineThick;
nOutsideThick = SwMSDffManager::GetEscherLineMatch(eLineStyle,
eShapeType, rLineThick);
/*
Note: In contrast to the regular WinWord table and frame border width,
where the overall border width has to be calculated from the width of *one*
line, the data from ESCHER already contains the overall width [twips]!
The WinWord default is 15 tw. We take for this our 20 tw line.
(0.75 pt and 1.0 pt looking more similar on hardcopy than 0.75 pt and our
0.05 pt hairline.) The hairline we only set by WinWord width up to max.
0.5 pt.
*/
switch( +eLineStyle )
{
// first the single lines
case mso_lineSimple:
nIdx = SvxBorderLineStyle::SOLID;
break;
// second the double lines
case mso_lineDouble:
nIdx = SvxBorderLineStyle::DOUBLE;
break;
case mso_lineThickThin:
nIdx = SvxBorderLineStyle::THICKTHIN_SMALLGAP;
break;
case mso_lineThinThick:
nIdx = SvxBorderLineStyle::THINTHICK_SMALLGAP;
break;
// We have no triple border, use double instead.
case mso_lineTriple:
nIdx = SvxBorderLineStyle::DOUBLE;
break;
// no line style is set
case MSO_LineStyle(USHRT_MAX):
break;
// erroneously not implemented line style is set
default:
OSL_ENSURE(false, "eLineStyle is not (yet) implemented!");
break;
}
switch( eDashing )
{
case mso_lineDashGEL:
nIdx = SvxBorderLineStyle::DASHED;
break;
case mso_lineDotGEL:
nIdx = SvxBorderLineStyle::DOTTED;
break;
default:
break;
}
if (SvxBorderLineStyle::NONE != nIdx)
{
SvxBorderLine aLine;
aLine.SetColor( rLineColor );
aLine.SetWidth( nLineThick ); // No conversion here, nLineThick is already in twips
aLine.SetBorderLineStyle(nIdx);
for(SvxBoxItemLine nLine : o3tl::enumrange<SvxBoxItemLine>())
{
// aLine is cloned by SetLine
rBox.SetLine(&aLine, nLine);
}
}
return nOutsideThick;
}
#define WW8ITEMVALUE(ItemSet,Id,Cast) ItemSet.GetItem<Cast>(Id)->GetValue()
void SwWW8ImplReader::MatchSdrItemsIntoFlySet( SdrObject const * pSdrObj,
SfxItemSet& rFlySet, MSO_LineStyle eLineStyle, MSO_LineDashing eDashing, MSO_SPT eShapeType,
tools::Rectangle& rInnerDist )
{
/*
attributes to be set on the frame
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwFormatFrameSize if not set, set here
SvxLRSpaceItem set here
SvxULSpaceItem set here
SvxOpaqueItem (Currently not possible for frames! khz 10.2.1999)
SwFormatSurround already set
SwFormatVertOrient already set
SwFormatHoriOrient already set
SwFormatAnchor already set
SvxBoxItem set here
SvxBrushItem set here
SvxShadowItem set here
*/
// 1. GraphicObject of documents?
GraphicCtor();
const SfxItemSet& rOldSet = pSdrObj->GetMergedItemSet();
// some Items can be taken over directly
static sal_uInt16 const aDirectMatch[]
{
RES_LR_SPACE, // outer spacing left/right: SvxLRSpaceItem
RES_UL_SPACE // outer spacing top/bottom: SvxULSpaceItem
};
const SfxPoolItem* pPoolItem;
for(sal_uInt16 i : aDirectMatch)
if( SfxItemState::SET == rOldSet.GetItemState(i, false, &pPoolItem) )
{
rFlySet.Put( *pPoolItem );
}
// take new XATTR items directly. Skip old RES_BACKGROUND if new FILLSTYLE taken.
bool bSkipResBackground = false;
SfxItemPool* pPool = rFlySet.GetPool();
if ( pPool )
{
for ( sal_uInt16 i = XATTR_START; i < XATTR_END; ++i )
{
// Not all Fly types support XATTRs - skip unsupported attributes
SfxItemPool* pAttrPool = pPool->GetMasterPool();
while ( pAttrPool && !pAttrPool->IsInRange(i) )
pAttrPool = pAttrPool->GetSecondaryPool();
if ( !pAttrPool )
continue;
if ( SfxItemState::SET == rOldSet.GetItemState(i, false, &pPoolItem) )
{
rFlySet.Put( *pPoolItem );
if ( i == XATTR_FILLSTYLE )
{
const drawing::FillStyle eFill = static_cast<const XFillStyleItem*>(pPoolItem)->GetValue();
// Transparency forced in certain situations when fillstyle is none - use old logic for that case still
// which is especially needed for export purposes (tdf112618).
if ( eFill != drawing::FillStyle_NONE )
bSkipResBackground = true;
}
}
}
}
// now calculate the borders and build the box: The unit is needed for the
// frame SIZE!
SvxBoxItem aBox(rFlySet.Get(RES_BOX));
// dashed or solid becomes solid
// WW-default: 0.75 pt = 15 twips
sal_Int32 nLineThick = 15, nOutside=0;
// check if LineStyle is *really* set!
SfxItemState eState = rOldSet.GetItemState(XATTR_LINESTYLE);
if( eState == SfxItemState::SET )
{
// Now, that we know there is a line style we will make use the
// parameter given to us when calling the method... :-)
const Color aLineColor = rOldSet.Get(XATTR_LINECOLOR).GetColorValue();
nLineThick = WW8ITEMVALUE(rOldSet, XATTR_LINEWIDTH, XLineWidthItem);
if( !nLineThick )
nLineThick = 1; // for Writer, zero is "no border", so set a minimal value
nOutside = MatchSdrBoxIntoFlyBoxItem(aLineColor, eLineStyle,
eDashing, eShapeType, nLineThick, aBox);
}
rInnerDist.AdjustLeft(nLineThick );
rInnerDist.AdjustTop(nLineThick );
rInnerDist.AdjustRight(nLineThick );
rInnerDist.AdjustBottom(nLineThick );
rInnerDist.AdjustLeft( -(aBox.CalcLineWidth( SvxBoxItemLine::LEFT )) );
rInnerDist.AdjustTop( -(aBox.CalcLineWidth( SvxBoxItemLine::TOP )) );
rInnerDist.AdjustRight( -(aBox.CalcLineWidth( SvxBoxItemLine::RIGHT )) );
rInnerDist.AdjustBottom( -(aBox.CalcLineWidth( SvxBoxItemLine::BOTTOM )) );
// set distances from box's border to text contained within the box
if( 0 < rInnerDist.Left() )
aBox.SetDistance( o3tl::narrowing<sal_uInt16>(rInnerDist.Left()), SvxBoxItemLine::LEFT );
if( 0 < rInnerDist.Top() )
aBox.SetDistance( o3tl::narrowing<sal_uInt16>(rInnerDist.Top()), SvxBoxItemLine::TOP );
if( 0 < rInnerDist.Right() )
aBox.SetDistance( o3tl::narrowing<sal_uInt16>(rInnerDist.Right()), SvxBoxItemLine::RIGHT );
if( 0 < rInnerDist.Bottom() )
aBox.SetDistance( o3tl::narrowing<sal_uInt16>(rInnerDist.Bottom()), SvxBoxItemLine::BOTTOM );
bool bFixSize = !(WW8ITEMVALUE(rOldSet, SDRATTR_TEXT_AUTOGROWHEIGHT,
SdrOnOffItem));
// Size: SwFormatFrameSize
if( SfxItemState::SET != rFlySet.GetItemState(RES_FRM_SIZE, false) )
{
const tools::Rectangle& rSnapRect = pSdrObj->GetSnapRect();
// if necessary adapt width and position of the framework: The
// recorded interior is to remain equally large despite thick edges.
rFlySet.Put( SwFormatFrameSize(bFixSize ? SwFrameSize::Fixed : SwFrameSize::Variable,
rSnapRect.GetWidth() + 2*nOutside,
rSnapRect.GetHeight() + 2*nOutside) );
}
else // If a size is set, adjust it to consider border thickness
{
SwFormatFrameSize aSize = rFlySet.Get(RES_FRM_SIZE);
SwFormatFrameSize aNewSize(bFixSize ? SwFrameSize::Fixed : SwFrameSize::Variable,
aSize.GetWidth() + 2*nOutside,
aSize.GetHeight() + 2*nOutside);
aNewSize.SetWidthSizeType(aSize.GetWidthSizeType());
rFlySet.Put( aNewSize );
}
// Sadly word puts escher borders outside the graphic, but orients the
// graphic in relation to the top left inside the border. We don't
if (nOutside)
{
SwFormatHoriOrient aHori = rFlySet.Get(RES_HORI_ORIENT);
aHori.SetPos(MakeSafePositioningValue(aHori.GetPos()-nOutside));
rFlySet.Put(aHori);
SwFormatVertOrient aVert = rFlySet.Get(RES_VERT_ORIENT);
aVert.SetPos(aVert.GetPos()-nOutside);
rFlySet.Put(aVert);
}
// now set the border
rFlySet.Put( aBox );
// shadow of the box: SvxShadowItem
if( WW8ITEMVALUE(rOldSet, SDRATTR_SHADOW, SdrOnOffItem) )
{
SvxShadowItem aShadow( RES_SHADOW );
const Color aShdColor = rOldSet.Get(SDRATTR_SHADOWCOLOR).GetColorValue();
const sal_Int32 nShdDistX = WW8ITEMVALUE(rOldSet, SDRATTR_SHADOWXDIST,
SdrMetricItem);
const sal_Int32 nShdDistY = WW8ITEMVALUE(rOldSet, SDRATTR_SHADOWYDIST,
SdrMetricItem);
aShadow.SetColor( aShdColor );
aShadow.SetWidth(writer_cast<sal_uInt16>((std::abs( nShdDistX) +
std::abs( nShdDistY )) / 2 ));
SvxShadowLocation eShdPosi;
if( 0 <= nShdDistX )
{
if( 0 <= nShdDistY )
eShdPosi = SvxShadowLocation::BottomRight;
else
eShdPosi = SvxShadowLocation::TopRight;
}
else
{
if( 0 <= nShdDistY )
eShdPosi = SvxShadowLocation::BottomLeft;
else
eShdPosi = SvxShadowLocation::TopLeft;
}
aShadow.SetLocation( eShdPosi );
rFlySet.Put( aShadow );
}
SvxBrushItem aBrushItem(COL_WHITE, RES_BACKGROUND);
bool bBrushItemOk = false;
sal_uInt8 nTrans = 0;
// Separate transparency
eState = rOldSet.GetItemState(XATTR_FILLTRANSPARENCE);
if (!bSkipResBackground && eState == SfxItemState::SET)
{
sal_uInt16 nRes = WW8ITEMVALUE(rOldSet, XATTR_FILLTRANSPARENCE,
XFillTransparenceItem);
nTrans = sal_uInt8((nRes * 0xFE) / 100);
aBrushItem.GetColor().SetAlpha(255 - nTrans);
bBrushItemOk = true;
}
// Background: SvxBrushItem
const XFillStyleItem* pFillStyleItem = rOldSet.GetItemIfSet(XATTR_FILLSTYLE);
if (!bSkipResBackground && pFillStyleItem)
{
const drawing::FillStyle eFill = pFillStyleItem->GetValue();
switch (eFill)
{
default:
case drawing::FillStyle_NONE:
// Writer graphics don't have it yet
if (eShapeType != mso_sptPictureFrame)
{
aBrushItem.GetColor().SetAlpha(1);
bBrushItemOk = true;
}
break;
case drawing::FillStyle_SOLID:
case drawing::FillStyle_GRADIENT:
{
const Color aColor =
rOldSet.Get(XATTR_FILLCOLOR).GetColorValue();
aBrushItem.SetColor(aColor);
if (bBrushItemOk) // has trans
aBrushItem.GetColor().SetAlpha(255 - nTrans);
bBrushItemOk = true;
}
break;
case drawing::FillStyle_HATCH:
break;
case drawing::FillStyle_BITMAP:
{
GraphicObject aGrfObj(rOldSet.Get(XATTR_FILLBITMAP).GetGraphicObject());
const bool bTile(WW8ITEMVALUE(rOldSet, XATTR_FILLBMP_TILE, XFillBmpTileItem));
if(bBrushItemOk) // has trans
{
GraphicAttr aAttr(aGrfObj.GetAttr());
aAttr.SetAlpha(255 - nTrans);
aGrfObj.SetAttr(aAttr);
}
aBrushItem.SetGraphicObject(aGrfObj);
aBrushItem.SetGraphicPos(bTile ? GPOS_TILED : GPOS_AREA);
bBrushItemOk = true;
}
break;
}
}
if (bBrushItemOk)
rFlySet.Put(aBrushItem);
}
void SwWW8ImplReader::AdjustLRWrapForWordMargins(
const SvxMSDffImportRec &rRecord, SvxLRSpaceItem &rLR)
{
sal_uInt32 nXRelTo = SvxMSDffImportRec::RELTO_DEFAULT;
if ( rRecord.nXRelTo )
{
nXRelTo = *rRecord.nXRelTo;
}
// Left adjustments - if horizontally aligned to left of
// margin or column then remove the left wrapping
if (rRecord.nXAlign == 1)
{
if ((nXRelTo == 0) || (nXRelTo == 2))
rLR.SetLeft(SvxIndentValue::zero());
}
// Right adjustments - if horizontally aligned to right of
// margin or column then remove the right wrapping
if (rRecord.nXAlign == 3)
{
if ((nXRelTo == 0) || (nXRelTo == 2))
rLR.SetRight(SvxIndentValue::zero());
}
// Inside margin, remove left wrapping
if ((rRecord.nXAlign == 4) && (nXRelTo == 0))
{
rLR.SetLeft(SvxIndentValue::zero());
}
// Outside margin, remove left wrapping
if ((rRecord.nXAlign == 5) && (nXRelTo == 0))
{
rLR.SetRight(SvxIndentValue::zero());
}
}
void SwWW8ImplReader::AdjustULWrapForWordMargins(
const SvxMSDffImportRec &rRecord, SvxULSpaceItem &rUL)
{
sal_uInt32 nYRelTo = SvxMSDffImportRec::RELTO_DEFAULT;
if ( rRecord.nYRelTo )
{
nYRelTo = *rRecord.nYRelTo;
}
// Top adjustment - remove upper wrapping if aligned to page
// printable area or to page
if (rRecord.nYAlign == 1)
{
if ((nYRelTo == 0) || (nYRelTo == 1))
rUL.SetUpper(sal_uInt16(0));
}
// Bottom adjustment - remove bottom wrapping if aligned to page or
// printable area or to page
if (rRecord.nYAlign == 3)
{
if ((nYRelTo == 0) || (nYRelTo == 1))
rUL.SetLower(sal_uInt16(0));
}
// Remove top margin if aligned vertically inside margin
if ((rRecord.nYAlign == 4) && (nYRelTo == 0))
rUL.SetUpper(sal_uInt16(0));
}
void SwWW8ImplReader::MapWrapIntoFlyFormat(const SvxMSDffImportRec& rRecord,
SwFrameFormat& rFlyFormat)
{
if (rRecord.nDxWrapDistLeft || rRecord.nDxWrapDistRight)
{
SvxLRSpaceItem aLR(SvxIndentValue::twips(writer_cast<sal_uInt16>(rRecord.nDxWrapDistLeft)),
SvxIndentValue::twips(writer_cast<sal_uInt16>(rRecord.nDxWrapDistRight)),
SvxIndentValue::zero(), RES_LR_SPACE);
AdjustLRWrapForWordMargins(rRecord, aLR);
rFlyFormat.SetFormatAttr(aLR);
}
if (rRecord.nDyWrapDistTop || rRecord.nDyWrapDistBottom)
{
SvxULSpaceItem aUL(writer_cast<sal_uInt16>(rRecord.nDyWrapDistTop),
writer_cast<sal_uInt16>(rRecord.nDyWrapDistBottom), RES_UL_SPACE);
AdjustULWrapForWordMargins(rRecord, aUL);
rFlyFormat.SetFormatAttr(aUL);
}
// If we are contoured and have a custom polygon...
if (rRecord.pWrapPolygon && rFlyFormat.GetSurround().IsContour())
{
if (SwNoTextNode* pNd = GetNoTextNodeFromSwFrameFormat(rFlyFormat))
{
/*
Gather round children and hear of a tale that will raise the
hairs on the back of your neck this dark halloween night.
There is a polygon in word that describes the wrapping around
the graphic.
Here are some sample values for the simplest case of a square
around some solid coloured graphics
X Y Pixel size of graphic
TopLeft -54 21600 400x400
Bottom Right 0 21546
TopLeft -108 21600 200x200
Bottom Right 0 21492
TopLeft -216 21600 100x100
Bottom Right 0 21384
TopLeft -432 21600 50x50
Bottom Right 0 21168
TopLeft -76 21600 283x212
Bottom Right 0 21498
So given that the size of the values remains pretty much the
same despite the size of the graphic, we can tell that the
polygon is measured in units that are independent of the
graphic. But why does the left corner move a different value
to the left each time, and why does the bottom move upwards
each time, when the right and top remain at the same value ?
I have no idea, but clearly once we calculate the values out
we see that the left margin is always a fixed realworld
distance from the true left and the polygon bottom is the same
fixed value from the bottom. i.e. 15twips.
So here we take our word provided polygon, shift it to the
right by 15twips and rescale it widthwise to shrink the width
a little to fit the now moved right margin back to where it
was, and stretch the height a little to make the bottom move
down the missing 15twips then we get a polygon that matches
what I actually see in word
*/
tools::PolyPolygon aPoly(*rRecord.pWrapPolygon);
const Size aSize = pNd->GetTwipSize();
/*
Move to the left by 15twips, and rescale to
a) shrink right bound back to orig position
b) stretch bottom bound to where I think it should have been
in the first place
*/
Fraction aMoveHack(ww::nWrap100Percent, aSize.Width());
aMoveHack *= Fraction(15, 1);
tools::Long nMove(aMoveHack);
aPoly.Move(nMove, 0);
Fraction aHackX(ww::nWrap100Percent, ww::nWrap100Percent + nMove);
Fraction aHackY(ww::nWrap100Percent, ww::nWrap100Percent - nMove);
aPoly.Scale(double(aHackX), double(aHackY));
// Turn polygon back into units that match the graphic's
const Size aOrigSize = pNd->GetGraphic().GetPrefSize();
Fraction aMapPolyX(aOrigSize.Width(), ww::nWrap100Percent);
Fraction aMapPolyY(aOrigSize.Height(), ww::nWrap100Percent);
aPoly.Scale(double(aMapPolyX), double(aMapPolyY));
// #i47277# - contour is already in unit of the
// graphic preferred unit. Thus, call method <SetContour(..)>
pNd->SetContour(&aPoly);
}
}
else if (rFlyFormat.GetSurround().IsContour())
{
const SdrObject* pSdrObj = rFlyFormat.FindSdrObject();
SdrObjKind eKind = pSdrObj ? pSdrObj->GetObjIdentifier() : SdrObjKind::Graphic;
switch (eKind)
{
case SdrObjKind::Text:
break;
case SdrObjKind::SwFlyDrawObjIdentifier:
default:
{
// Contour is enabled, but no polygon is set: disable contour, because Word does not
// Writer-style auto-contour in that case.
SwFormatSurround aSurround(rFlyFormat.GetSurround());
aSurround.SetContour(false);
rFlyFormat.SetFormatAttr(aSurround);
}
}
}
}
static sal_Int32 lcl_ConvertCrop(sal_uInt32 const nCrop, sal_Int32 const nSize)
{
// cast to sal_Int32 to handle negative crop properly
sal_Int32 const nIntegral(static_cast<sal_Int32>(nCrop) >> 16);
// fdo#77454: heuristic to detect mangled values written by old OOo/LO
if (abs(nIntegral) >= 50) // FIXME: what's a good cut-off?
{
SAL_INFO("sw.ww8", "ignoring suspiciously large crop: " << nIntegral);
return 0;
}
return (nIntegral * nSize) + (((nCrop & 0xffff) * nSize) >> 16);
}
void SwWW8ImplReader::SetAttributesAtGrfNode(const SvxMSDffImportRec& rRecord,
const SwFrameFormat& rFlyFormat, WW8_FSPA const *pF)
{
const SwNodeIndex* pIdx = rFlyFormat.GetContent(false).GetContentIdx();
SwGrfNode *const pGrfNd(
pIdx ? m_rDoc.GetNodes()[pIdx->GetIndex() + 1]->GetGrfNode() : nullptr);
if (!pGrfNd)
return;
Size aSz(pGrfNd->GetTwipSize());
// use type <sal_uInt64> instead of sal_uLong to get correct results
// in the following calculations.
sal_uInt64 nHeight = aSz.Height();
sal_uInt64 nWidth = aSz.Width();
if (!nWidth && pF)
nWidth = o3tl::saturating_sub(pF->nXaRight, pF->nXaLeft);
else if (!nHeight && pF)
nHeight = o3tl::saturating_sub(pF->nYaBottom, pF->nYaTop);
if (rRecord.nCropFromTop || rRecord.nCropFromBottom ||
rRecord.nCropFromLeft || rRecord.nCropFromRight)
{
SwCropGrf aCrop; // Cropping is stored in 'fixed floats'
// 16.16 (fraction times total
if (rRecord.nCropFromTop) // image width or height resp.)
{
aCrop.SetTop(lcl_ConvertCrop(rRecord.nCropFromTop, nHeight));
}
if (rRecord.nCropFromBottom)
{
aCrop.SetBottom(lcl_ConvertCrop(rRecord.nCropFromBottom, nHeight));
}
if (rRecord.nCropFromLeft)
{
aCrop.SetLeft(lcl_ConvertCrop(rRecord.nCropFromLeft, nWidth));
}
if (rRecord.nCropFromRight)
{
aCrop.SetRight(lcl_ConvertCrop(rRecord.nCropFromRight, nWidth));
}
pGrfNd->SetAttr( aCrop );
}
bool bFlipH(rRecord.nFlags & ShapeFlag::FlipH);
bool bFlipV(rRecord.nFlags & ShapeFlag::FlipV);
if ( bFlipH || bFlipV )
{
SwMirrorGrf aMirror = pGrfNd->GetSwAttrSet().GetMirrorGrf();
if( bFlipH )
{
if( bFlipV )
aMirror.SetValue(MirrorGraph::Both);
else
aMirror.SetValue(MirrorGraph::Vertical);
}
else
aMirror.SetValue(MirrorGraph::Horizontal);
pGrfNd->SetAttr( aMirror );
}
if (!rRecord.pObj)
return;
const SfxItemSet& rOldSet = rRecord.pObj->GetMergedItemSet();
// contrast
if (WW8ITEMVALUE(rOldSet, SDRATTR_GRAFCONTRAST,
SdrGrafContrastItem))
{
SwContrastGrf aContrast(
WW8ITEMVALUE(rOldSet,
SDRATTR_GRAFCONTRAST, SdrGrafContrastItem));
pGrfNd->SetAttr( aContrast );
}
// luminance
if (WW8ITEMVALUE(rOldSet, SDRATTR_GRAFLUMINANCE,
SdrGrafLuminanceItem))
{
SwLuminanceGrf aLuminance(WW8ITEMVALUE(rOldSet,
SDRATTR_GRAFLUMINANCE, SdrGrafLuminanceItem));
pGrfNd->SetAttr( aLuminance );
}
// gamma
if (WW8ITEMVALUE(rOldSet, SDRATTR_GRAFGAMMA, SdrGrafGamma100Item))
{
double fVal = WW8ITEMVALUE(rOldSet, SDRATTR_GRAFGAMMA,
SdrGrafGamma100Item);
pGrfNd->SetAttr(SwGammaGrf(fVal/100.));
}
// drawmode
auto nGrafMode = rOldSet.GetItem<SdrGrafModeItem>(SDRATTR_GRAFMODE)->GetValue();
if ( nGrafMode != GraphicDrawMode::Standard)
{
SwDrawModeGrf aDrawMode( nGrafMode );
pGrfNd->SetAttr( aDrawMode );
}
}
SdrObject* SwWW8ImplReader::CreateContactObject(SwFrameFormat* pFlyFormat)
{
if (pFlyFormat)
{
SdrObject* pNewObject = m_bNewDoc ? nullptr : pFlyFormat->FindRealSdrObject();
if (!pNewObject)
pNewObject = pFlyFormat->FindSdrObject();
if (!pNewObject )
if (auto pFlyFrameFormat = dynamic_cast<SwFlyFrameFormat *>( pFlyFormat ))
{
SwFlyDrawContact* pContactObject = pFlyFrameFormat->GetOrCreateContact();
pNewObject = pContactObject->GetMaster();
}
return pNewObject;
}
return nullptr;
}
// Miserable miserable hack to fudge word's graphic layout in RTL mode to ours.
bool SwWW8ImplReader::MiserableRTLGraphicsHack(SwTwips &rLeft, SwTwips nWidth,
sal_Int16 eHoriOri, sal_Int16 eHoriRel)
{
if (!IsRightToLeft())
return false;
return RTLGraphicsHack(rLeft, nWidth, eHoriOri, eHoriRel,
m_aSectionManager.GetPageLeft(),
m_aSectionManager.GetPageRight(),
m_aSectionManager.GetPageWidth());
}
RndStdIds SwWW8ImplReader::ProcessEscherAlign(SvxMSDffImportRec& rRecord, WW8_FSPA& rFSPA,
SfxItemSet &rFlySet)
{
bool bCurSectionVertical = m_aSectionManager.CurrentSectionIsVertical();
bool bIsObjectLayoutInTableCell
= m_nInTable && IsObjectLayoutInTableCell(rRecord.nGroupShapeBooleanProperties);
if (!rRecord.nXRelTo)
{
rRecord.nXRelTo = sal_Int32(rFSPA.nbx);
}
if (!rRecord.nYRelTo)
{
rRecord.nYRelTo = sal_Int32(rFSPA.nby);
}
// nXAlign - abs. Position, Left, Centered, Right, Inside, Outside
// nYAlign - abs. Position, Top, Centered, Bottom, Inside, Outside
// nXRelTo - Page printable area, Page, Column, Character
// nYRelTo - Page printable area, Page, Paragraph, Line
const sal_uInt32 nCntXAlign = 6;
const sal_uInt32 nCntYAlign = 6;
const sal_uInt32 nCntRelTo = 4;
const sal_uInt32 nXAlign = nCntXAlign > rRecord.nXAlign ? rRecord.nXAlign : 1;
const sal_uInt32 nYAlign = nCntYAlign > rRecord.nYAlign ? rRecord.nYAlign : 1;
// #i52565# - try to handle special case for objects in tables regarding its X Rel
// if X and Y Rel values are on default take it as a hint, that they have not been set
// by <SwMSDffManager::ProcessObj(..)>
const bool bXYRelHaveDefaultValues = *rRecord.nXRelTo == 2 && *rRecord.nYRelTo == 2;
if (bXYRelHaveDefaultValues && m_nInTable > 0 && !bCurSectionVertical)
{
if (sal_uInt32(rFSPA.nby) != rRecord.nYRelTo)
rRecord.nYRelTo = sal_uInt32(rFSPA.nby);
}
const sal_uInt32 nXRelTo
= (rRecord.nXRelTo && nCntRelTo > rRecord.nXRelTo) ? *rRecord.nXRelTo : 1;
const sal_uInt32 nYRelTo
= (rRecord.nYRelTo && nCntRelTo > rRecord.nYRelTo) ? *rRecord.nYRelTo : 1;
const RndStdIds eAnchor
= IsInlineEscherHack() ? RndStdIds::FLY_AS_CHAR : RndStdIds::FLY_AT_CHAR; // #i43718#
SwFormatAnchor aAnchor( eAnchor );
aAnchor.SetAnchor( m_pPaM->GetPoint() );
rFlySet.Put( aAnchor );
// #i18732#
// Given new layout where everything is changed to be anchored to
// character the following 4 tables may need to be changed.
// horizontal Adjustment
static const sal_Int16 aHoriOriTab[ nCntXAlign ] =
{
text::HoriOrientation::NONE, // From left position
text::HoriOrientation::LEFT, // left
text::HoriOrientation::CENTER, // centered
text::HoriOrientation::RIGHT, // right
// #i36649#
// - inside -> text::HoriOrientation::LEFT and outside -> text::HoriOrientation::RIGHT
text::HoriOrientation::LEFT, // inside
text::HoriOrientation::RIGHT // outside
};
// generic vertical Adjustment
static const sal_Int16 aVertOriTab[ nCntYAlign ] =
{
text::VertOrientation::NONE, // From Top position
text::VertOrientation::TOP, // top
text::VertOrientation::CENTER, // centered
text::VertOrientation::BOTTOM, // bottom
text::VertOrientation::LINE_TOP, // inside (obscure)
text::VertOrientation::LINE_BOTTOM // outside (obscure)
};
// #i22673# - to-line vertical alignment
static const sal_Int16 aToLineVertOriTab[ nCntYAlign ] =
{
text::VertOrientation::NONE, // below
text::VertOrientation::LINE_BOTTOM, // top
text::VertOrientation::LINE_CENTER, // centered
text::VertOrientation::LINE_TOP, // bottom
text::VertOrientation::LINE_BOTTOM, // inside (obscure)
text::VertOrientation::LINE_TOP // outside (obscure)
};
// Adjustment is horizontally relative to...
static const sal_Int16 aHoriRelOriTab[nCntRelTo] =
{
text::RelOrientation::PAGE_PRINT_AREA, // 0 is page textarea margin
text::RelOrientation::PAGE_FRAME, // 1 is page margin
text::RelOrientation::FRAME, // 2 is relative to column
text::RelOrientation::CHAR // 3 is relative to character
};
// Adjustment is vertically relative to...
// #i22673# - adjustment for new vertical alignment at top of line.
static const sal_Int16 aVertRelOriTab[nCntRelTo] =
{
text::RelOrientation::PAGE_PRINT_AREA, // 0 is page textarea margin
text::RelOrientation::PAGE_FRAME, // 1 is page margin
text::RelOrientation::FRAME, // 2 is relative to paragraph
text::RelOrientation::TEXT_LINE // 3 is relative to line
};
if (!bIsObjectLayoutInTableCell && m_nInTable && eAnchor == RndStdIds::FLY_AT_CHAR)
{
// Microsoft apparently forces layoutInCell behaviour
// if either horizontal orientation is based on character
// or vertical orientation is based on line
// so make it explicit instead of trying to hack in tons of adjustments.
if (aVertRelOriTab[nYRelTo] == text::RelOrientation::TEXT_LINE
|| aHoriRelOriTab[nXRelTo] == text::RelOrientation::CHAR)
{
bIsObjectLayoutInTableCell = true;
rFlySet.Put(SwFormatFollowTextFlow(true));
}
}
// If the image is inline, then the relative orientation means nothing,
// so set it up so that if the user changes it into an anchor, it positions usefully.
sal_Int16 eHoriOri
= IsInlineEscherHack() ? text::HoriOrientation::CENTER : aHoriOriTab[ nXAlign ];
sal_Int16 eHoriRel
= IsInlineEscherHack() ? text::RelOrientation::FRAME : aHoriRelOriTab[nXRelTo];
// #i36649# - adjustments for certain alignments
if (eHoriOri == text::HoriOrientation::LEFT && eHoriRel == text::RelOrientation::PAGE_FRAME)
{
// convert 'left to page' to 'from left -<width> to page text area'
eHoriOri = text::HoriOrientation::NONE;
eHoriRel = text::RelOrientation::PAGE_PRINT_AREA;
const tools::Long nWidth = rFSPA.nXaRight - rFSPA.nXaLeft;
rFSPA.nXaLeft = -nWidth;
rFSPA.nXaRight = 0;
}
else if (eHoriOri == text::HoriOrientation::RIGHT && eHoriRel == text::RelOrientation::PAGE_FRAME)
{
// convert 'right to page' to 'from left 0 to right page border'
eHoriOri = text::HoriOrientation::NONE;
eHoriRel = text::RelOrientation::PAGE_RIGHT;
const tools::Long nWidth = rFSPA.nXaRight - rFSPA.nXaLeft;
rFSPA.nXaLeft = 0;
rFSPA.nXaRight = nWidth;
}
else if ((eHoriOri == text::HoriOrientation::LEFT || eHoriOri == text::HoriOrientation::RIGHT)
&& eHoriRel == text::RelOrientation::FRAME)
{
// relative left/right honors paragraph margins, but not with center or none/absolute offset
if (bIsObjectLayoutInTableCell || !m_nInTable)
eHoriRel = text::RelOrientation::PRINT_AREA;
}
// #i24255# - position of floating screen objects in
// R2L layout are given in L2R layout, thus convert them of all
// floating screen objects, which are imported.
{
// Miserable miserable hack.
SwTwips nWidth = o3tl::saturating_sub(rFSPA.nXaRight, rFSPA.nXaLeft);
SwTwips nLeft = rFSPA.nXaLeft;
if (MiserableRTLGraphicsHack(nLeft, nWidth, eHoriOri,
eHoriRel))
{
rFSPA.nXaLeft = nLeft;
rFSPA.nXaRight = rFSPA.nXaLeft + nWidth;
}
}
// if the object is anchored inside a table cell, is horizontally aligned to the paragraph,
// but it is not being forced to 'layout in table cell',
// then convert its horizontal alignment to page text area
// because MSO strangely doesn't orient the object to the cell paragraph it is anchored to
// but to the paragraph that contains the entire table (which is equivalent to page margins).
if (!bIsObjectLayoutInTableCell && m_nInTable && eHoriRel == text::RelOrientation::FRAME)
{
eHoriRel = text::RelOrientation::PAGE_PRINT_AREA;
}
// Writer honours this wrap distance when aligned as "left" or "right",
// Word doesn't. Writer doesn't honour it when its "from left".
if (eHoriOri == text::HoriOrientation::LEFT)
rRecord.nDxWrapDistLeft = 0;
else if (eHoriOri == text::HoriOrientation::RIGHT)
rRecord.nDxWrapDistRight = 0;
sal_Int16 eVertRel;
eVertRel = aVertRelOriTab[ nYRelTo ]; // #i18732#
if (bCurSectionVertical && nYRelTo == 2)
eVertRel = text::RelOrientation::PAGE_PRINT_AREA;
// #i22673# - fill <eVertOri> in dependence of <eVertRel>
sal_Int16 eVertOri;
if (eVertRel == text::RelOrientation::TEXT_LINE)
{
eVertOri = aToLineVertOriTab[ nYAlign ];
}
else
{
eVertOri = aVertOriTab[ nYAlign ];
}
if (bIsObjectLayoutInTableCell && eAnchor == RndStdIds::FLY_AT_CHAR)
{
// Microsoft is buggy and inconsistent in how they handle layoutInCell.
// Map wrongly-implemented settings to the closest implemented setting
// "page" is implemented as if it was "margin" - to cell spacing, not edge
if (eVertRel == text::RelOrientation::PAGE_FRAME)
eVertRel = text::RelOrientation::PAGE_PRINT_AREA;
// only "from top" and "top" are appropriate. Others are implemented as Top
if (eVertOri != text::VertOrientation::NONE)
eVertOri = text::VertOrientation::TOP;
}
// Below line in word is a positive value, while in writer its
// negative
tools::Long nYPos = rFSPA.nYaTop;
// #i22673#
if ((eVertRel == text::RelOrientation::TEXT_LINE) && (eVertOri == text::VertOrientation::NONE))
nYPos = -nYPos;
SwFormatHoriOrient aHoriOri(MakeSafePositioningValue(bCurSectionVertical ? nYPos : rFSPA.nXaLeft),
bCurSectionVertical ? eVertOri : eHoriOri,
bCurSectionVertical ? eVertRel : eHoriRel);
if (4 <= nXAlign)
aHoriOri.SetPosToggle(true);
rFlySet.Put(aHoriOri);
rFlySet.Put(SwFormatVertOrient(MakeSafePositioningValue(!bCurSectionVertical ? nYPos : -rFSPA.nXaRight),
!bCurSectionVertical ? eVertOri : eHoriOri,
!bCurSectionVertical ? eVertRel : eHoriRel));
return eAnchor;
}
// #i84783#
// Return whether the fly specifies layoutInCell.
// (NOTE: there are circumstances where layoutInCell is implemented even when set to false)
bool SwWW8ImplReader::IsObjectLayoutInTableCell(const sal_uInt32 nGroupShapeBooleanProperties) const
{
bool bIsObjectLayoutInTableCell = false;
if ( m_bVer8 )
{
sal_uInt16 nWWVersion = m_xWwFib->m_nProduct & 0xE000;
if (nWWVersion == 0)
{
// 0 nProduct can happen for Word >97 as well, check cswNew in this case instead.
if (m_xWwFib->m_cswNew > 0)
{
// This is Word >=2000.
nWWVersion = 0x2000;
}
}
switch ( nWWVersion )
{
case 0x0000: // version 8 aka Microsoft Word 97
{
bIsObjectLayoutInTableCell = false;
OSL_ENSURE(nGroupShapeBooleanProperties == 0,
"no explicit object attribute layout in table cell expected." );
}
break;
case 0x2000: // version 9 aka Microsoft Word 2000
case 0x4000: // version 10 aka Microsoft Word 2002
case 0x6000: // version 11 aka Microsoft Word 2003
case 0x8000: // version 12 aka Microsoft Word 2007
case 0xC000: // version 14 aka Microsoft Word 2010
case 0xE000: // version 15 aka Microsoft Word 2013
{
// Documented in [MS-ODRAW], 2.3.4.44 "Group Shape Boolean Properties".
bool fUsefLayoutInCell = (nGroupShapeBooleanProperties & 0x80000000) >> 31;
bool fLayoutInCell = (nGroupShapeBooleanProperties & 0x8000) >> 15;
// If unspecified, defaults to true
bIsObjectLayoutInTableCell = !fUsefLayoutInCell || fLayoutInCell;
}
break;
default:
{
OSL_FAIL( "unknown version." );
}
}
}
return bIsObjectLayoutInTableCell;
}
SwFrameFormat* SwWW8ImplReader::Read_GrafLayer( tools::Long nGrafAnchorCp )
{
if( m_nIniFlags & WW8FL_NO_GRAFLAYER )
return nullptr;
::SetProgressState(m_nProgress, m_pDocShell); // Update
m_nDrawCpO = 0;
m_bDrawCpOValid = m_xWwFib->GetBaseCp(m_xPlcxMan->GetManType() == MAN_HDFT ? MAN_TXBX_HDFT : MAN_TXBX, &m_nDrawCpO);
GraphicCtor();
WW8PLCFspecial* pPF = m_xPlcxMan->GetFdoa();
if( !pPF )
{
OSL_ENSURE( false, "Where is the graphic (1) ?" );
return nullptr;
}
if( m_bVer67 )
{
sal_uInt64 nOldPos = m_pStrm->Tell();
m_nDrawXOfs = m_nDrawYOfs = 0;
ReadGrafLayer1(*pPF, nGrafAnchorCp);
m_pStrm->Seek( nOldPos );
return nullptr;
}
// Normal case of Word 8+ version stuff
pPF->SeekPos( nGrafAnchorCp );
WW8_FC nStartFc;
void* pF0;
if (!pPF->Get(nStartFc, pF0))
{
OSL_ENSURE( false, "+Where is the graphic (2) ?" );
return nullptr;
}
WW8_FSPA_SHADOW& rFS = *static_cast<WW8_FSPA_SHADOW*>(pF0);
WW8_FSPA aFSFA;
WW8FSPAShadowToReal(rFS, aFSFA);
if (!aFSFA.nSpId)
{
OSL_ENSURE( false, "+Where is the graphic (3) ?" );
return nullptr;
}
if (!m_xMSDffManager->GetModel())
m_xMSDffManager->SetModel(m_pDrawModel, 1440);
tools::Rectangle aRect(aFSFA.nXaLeft, aFSFA.nYaTop, aFSFA.nXaRight, aFSFA.nYaBottom);
SvxMSDffImportData aData( aRect );
rtl::Reference<SdrObject> pObject;
bool bOk = (m_xMSDffManager->GetShape(aFSFA.nSpId, pObject, aData) && pObject);
if (!bOk)
{
OSL_ENSURE( false, "Where is the Shape ?" );
return nullptr;
}
// tdf#118375 Word relates position to the unrotated rectangle,
// Writer uses the rotated one.
if (pObject->GetRotateAngle())
{
tools::Rectangle aObjSnapRect(pObject->GetSnapRect()); // recalculates the SnapRect
aFSFA.nXaLeft = aObjSnapRect.Left();
aFSFA.nYaTop = aObjSnapRect.Top();
aFSFA.nXaRight = aObjSnapRect.Right();
aFSFA.nYaBottom = aObjSnapRect.Bottom();
}
bool bDone = false;
rtl::Reference<SdrObject> pOurNewObject;
bool bReplaceable = false;
switch (pObject->GetObjIdentifier())
{
case SdrObjKind::Graphic:
bReplaceable = true;
bDone = true;
break;
case SdrObjKind::OLE2:
bReplaceable = true;
break;
default:
break;
}
// when in a header or footer word appears to treat all elements as wrap through
// determine wrapping mode
SfxItemSetFixed<RES_FRMATR_BEGIN, RES_FRMATR_END-1, XATTR_START, XATTR_END> aFlySet(m_rDoc.GetAttrPool());
Reader::ResetFrameFormatAttrs(aFlySet); // tdf#122425: Explicitly remove borders and spacing
css::text::WrapTextMode eSurround = css::text::WrapTextMode_PARALLEL;
bool bContour = false;
switch (aFSFA.nwr)
{
case 0: // 0 like 2, but doesn't require absolute object
case 2: // 2 wrap around absolute object
eSurround = css::text::WrapTextMode_PARALLEL;
break;
case 1: // 1 no text next to shape
eSurround = css::text::WrapTextMode_NONE;
break;
case 3: // 3 wrap as if no object present
// Special case: on export, inline images are wrapped through as a hack for old formats.
// That is irrelevant for Writer, so instead use the default wrap in that case,
// so that when the user changes it into an anchor, it wraps nicely, and not through.
if (!IsInlineEscherHack())
eSurround = css::text::WrapTextMode_THROUGH;
break;
case 4: // 4 wrap tightly around object
case 5: // 5 wrap tightly, but allow holes
eSurround = css::text::WrapTextMode_PARALLEL;
bContour = true;
break;
}
// if mode 2 or 4 also regard the additional parameters
if ((2 == aFSFA.nwr) || (4 == aFSFA.nwr))
{
switch (aFSFA.nwrk)
{
// 0 wrap both sides
case 0:
eSurround = css::text::WrapTextMode_PARALLEL;
break;
// 1 wrap only on left
case 1:
eSurround = css::text::WrapTextMode_LEFT;
break;
// 2 wrap only on right
case 2:
eSurround = css::text::WrapTextMode_RIGHT;
break;
// 3 wrap only on largest side
case 3:
eSurround = css::text::WrapTextMode_DYNAMIC;
break;
}
}
SwFormatSurround aSur( eSurround );
aSur.SetContour( bContour );
aSur.SetOutside(true); // Winword can only do outside contours
aFlySet.Put( aSur );
// now position imported object correctly and so on (can be a whole group)
OSL_ENSURE(!((aData.size() != 1) && bReplaceable),
"Replaceable drawing with > 1 entries ?");
if (aData.size() != 1)
bReplaceable = false;
/*
Get the record for top level object, so we can get the word anchoring
and wrapping information for it.
*/
SvxMSDffImportRec* pRecord = aData.find(pObject.get());
OSL_ENSURE(pRecord, "how did that happen?");
if (!pRecord)
{
// remove old object from the Z-Order list
m_xMSDffManager->RemoveFromShapeOrder(pObject.get());
return nullptr;
}
const bool bLayoutInTableCell =
m_nInTable && IsObjectLayoutInTableCell(pRecord->nGroupShapeBooleanProperties);
// #i18732# - Switch on 'follow text flow', if object is laid out
// inside table cell
if (bLayoutInTableCell)
{
SwFormatFollowTextFlow aFollowTextFlow( true );
aFlySet.Put( aFollowTextFlow );
}
// #i21847#
// Some shapes are set to *hidden*, don't import those ones.
if (pRecord->bHidden)
{
// remove old object from the Z-Order list
m_xMSDffManager->RemoveFromShapeOrder(pObject.get());
return nullptr;
}
sal_uInt16 nCount = pObject->GetUserDataCount();
if(nCount)
{
OUString lnName, aObjName, aTarFrame;
for (sal_uInt16 i = 0; i < nCount; i++ )
{
SdrObjUserData* pData = pObject->GetUserData( i );
if( pData && pData->GetInventor() == SdrInventor::ScOrSwDraw
&& pData->GetId() == SW_UD_IMAPDATA)
{
SwMacroInfo* macInf = dynamic_cast<SwMacroInfo*>(pData);
if (macInf && macInf->GetShapeId() == aFSFA.nSpId)
{
lnName = macInf->GetHlink();
aObjName = macInf->GetName();
aTarFrame = macInf->GetTarFrame();
break;
}
}
}
std::unique_ptr<SwFormatURL> pFormatURL(new SwFormatURL());
pFormatURL->SetURL( lnName, false );
if (!aObjName.isEmpty())
pFormatURL->SetName(aObjName);
if (!aTarFrame.isEmpty())
pFormatURL->SetTargetFrameName(aTarFrame);
pFormatURL->SetMap(nullptr);
aFlySet.Put(std::move(pFormatURL));
}
// If we are to be "below text" then we are not to be opaque
// #i14045# MM If we are in a header or footer then make the object transparent
// Not exactly like word but close enough for now
// both flags <bBelowText> and <bDrawHell> have to be set to move object into the background.
// #i46794# - it reveals that value of flag <bBelowText> can be neglected.
const bool bMoveToBackground = pRecord->bDrawHell ||
((m_bIsHeader || m_bIsFooter) && aFSFA.nwr == 3);
if ( bMoveToBackground )
aFlySet.Put(SvxOpaqueItem(RES_OPAQUE,false));
OUString aObjName = pObject->GetName();
bool bDrawObj = false;
bool bFrame = false;
SwFrameFormat* pRetFrameFormat = nullptr;
if (bReplaceable)
{
// Single graphics or ole objects
pRetFrameFormat = ImportReplaceableDrawables(pObject, pOurNewObject, *pRecord, aFSFA, aFlySet);
}
else
{
bDrawObj = true;
// Drawing objects, (e.g. ovals or drawing groups)
if (aFSFA.bRcaSimple)
{
aFSFA.nbx = WW8_FSPA::RelPageBorder;
aFSFA.nby = WW8_FSPA::RelPageBorder;
}
RndStdIds eAnchor = ProcessEscherAlign(*pRecord, aFSFA, aFlySet);
// Should we, and is it possible to make this into a writer textbox
if ((!(m_nIniFlags1 & WW8FL_NO_FLY_FOR_TXBX)) && pRecord->bReplaceByFly)
{
pRetFrameFormat
= ConvertDrawTextToFly(pObject, pOurNewObject, *pRecord, eAnchor, aFSFA, aFlySet);
if (pRetFrameFormat)
{
bDone = true;
bDrawObj = false;
bFrame = true;
}
}
if (!bDone)
{
sw::util::SetLayer aSetLayer(m_rDoc);
if ( bMoveToBackground )
aSetLayer.SendObjectToHell(*pObject);
else
aSetLayer.SendObjectToHeaven(*pObject);
if (!IsInlineEscherHack())
{
/* Need to make sure that the correct layer ordering is applied. */
// pass information, if object is in page header|footer to method.
m_xWWZOrder->InsertEscherObject(pObject.get(), aFSFA.nSpId, pRecord->bDrawHell,
m_bIsHeader || m_bIsFooter);
}
else
{
m_xWWZOrder->InsertTextLayerObject(pObject.get());
}
pRetFrameFormat = m_rDoc.getIDocumentContentOperations().InsertDrawObj(*m_pPaM, *pObject, aFlySet );
OSL_ENSURE(pRetFrameFormat->GetAnchor().GetAnchorId() ==
eAnchor, "Not the anchor type requested!");
/*
Insert text if necessary into textboxes contained in groups.
*/
for (const auto& it : aData)
{
pRecord = it.get();
if (pRecord->pObj && pRecord->aTextId.nTxBxS)
{ // #i52825# pRetFrameFormat can be NULL
pRetFrameFormat = MungeTextIntoDrawBox(
*pRecord, nGrafAnchorCp, pRetFrameFormat);
}
}
}
}
SwDrawFrameFormat* pDrawFrameFormat = dynamic_cast<SwDrawFrameFormat*>(pRetFrameFormat);
// #i44344#, #i44681# - positioning attributes already set
if (pDrawFrameFormat)
pDrawFrameFormat->PosAttrSet();
if (!IsInlineEscherHack() && pRetFrameFormat)
MapWrapIntoFlyFormat(*pRecord, *pRetFrameFormat);
// Set frame name with object name
if (pRetFrameFormat /*#i52825# */)
{
if (!aObjName.isEmpty())
pRetFrameFormat->SetFormatName( UIName(aObjName) );
if (pRetFrameFormat->GetName().isEmpty())
{
if (bDrawObj)
pRetFrameFormat->SetFormatName(m_rDoc.GetUniqueDrawObjectName());
else if (bFrame)
pRetFrameFormat->SetFormatName(m_rDoc.GetUniqueFrameName());
}
}
return AddAutoAnchor(pRetFrameFormat);
}
SwFrameFormat *SwWW8ImplReader::AddAutoAnchor(SwFrameFormat *pFormat)
{
/*
* anchored to character at the current position will move along the
* paragraph as text is added because we are at the insertion point.
*
* Leave to later and set the correct location then.
*/
if (pFormat && (pFormat->GetAnchor().GetAnchorId() != RndStdIds::FLY_AS_CHAR))
{
m_xAnchorStck->AddAnchor(*m_pPaM->GetPoint(), pFormat);
}
return pFormat;
}
SwFrameFormat* SwWW8ImplReader::MungeTextIntoDrawBox(SvxMSDffImportRec& rRecord,
tools::Long nGrafAnchorCp, SwFrameFormat* pRetFrameFormat)
{
rtl::Reference<SdrObject> pTrueObject = rRecord.pObj;
rtl::Reference<SdrTextObj> pSdrTextObj;
// check for group object (e.g. two parentheses)
if (SdrObjGroup* pThisGroup = dynamic_cast<SdrObjGroup*>(rRecord.pObj.get()))
{
// Group objects don't have text. Insert a text object into
// the group for holding the text.
pSdrTextObj = new SdrRectObj(
*m_pDrawModel,
SdrObjKind::Text,
pThisGroup->GetCurrentBoundRect());
SfxItemSet aSet(m_pDrawModel->GetItemPool());
aSet.Put(XFillStyleItem(drawing::FillStyle_NONE));
aSet.Put(XLineStyleItem(drawing::LineStyle_NONE));
aSet.Put(SdrTextFitToSizeTypeItem( drawing::TextFitToSizeType_NONE ));
aSet.Put(makeSdrTextAutoGrowHeightItem(false));
aSet.Put(makeSdrTextAutoGrowWidthItem(false));
pSdrTextObj->SetMergedItemSet(aSet);
pSdrTextObj->NbcSetLayer( pThisGroup->GetLayer() );
pThisGroup->GetSubList()->NbcInsertObject(pSdrTextObj.get());
}
else
pSdrTextObj = DynCastSdrTextObj(rRecord.pObj.get());
if( pSdrTextObj )
{
Size aObjSize(pSdrTextObj->GetSnapRect().GetWidth(),
pSdrTextObj->GetSnapRect().GetHeight());
// Object is part of a group?
SdrObject* pGroupObject = pSdrTextObj->getParentSdrObjectFromSdrObject();
const size_t nOrdNum = pSdrTextObj->GetOrdNum();
bool bEraseThisObject;
InsertTxbxText(pSdrTextObj.get(), &aObjSize, rRecord.aTextId.nTxBxS, rRecord.aTextId.nSequence,
nGrafAnchorCp, pRetFrameFormat,
(pSdrTextObj.get() != pTrueObject.get()) || (nullptr != pGroupObject), bEraseThisObject,
nullptr, nullptr, nullptr, nullptr, &rRecord);
// was this object replaced ??
if (bEraseThisObject)
{
if( pGroupObject || (pSdrTextObj.get() != pTrueObject.get()) )
{
// Object is already replaced by a new SdrGrafObj (in the group
// and) the Drawing-Page.
SdrObject* pNewObj = pGroupObject ?
pGroupObject->GetSubList()->GetObj(nOrdNum) : pTrueObject.get();
if (pSdrTextObj.get() != pNewObj)
{
// Replace object in the Z-Order-List
m_xMSDffManager->ExchangeInShapeOrder(pSdrTextObj.get(), 0, pNewObj);
// and save the new object.
rRecord.pObj = pNewObj;
}
}
else
{
// remove the object from Z-Order list
m_xMSDffManager->RemoveFromShapeOrder( pSdrTextObj.get() );
// take the object from the drawing page
if( pSdrTextObj->getSdrPageFromSdrObject() )
m_pDrawPg->RemoveObject( pSdrTextObj->GetOrdNum() );
// and delete FrameFormat, because replaced by graphic
// (this also deletes the object)
m_rDoc.DelFrameFormat( pRetFrameFormat );
pRetFrameFormat = nullptr;
// also delete the object record
rRecord.pObj = nullptr;
}
}
else
{
// use ww8-default border distance
SfxItemSetFixed<SDRATTR_TEXT_LEFTDIST, SDRATTR_TEXT_LOWERDIST>
aItemSet(m_pDrawModel->GetItemPool());
aItemSet.Put(makeSdrTextLeftDistItem(rRecord.nDxTextLeft));
aItemSet.Put(makeSdrTextRightDistItem(rRecord.nDxTextRight));
aItemSet.Put(makeSdrTextUpperDistItem(rRecord.nDyTextTop));
aItemSet.Put(makeSdrTextLowerDistItem(rRecord.nDyTextBottom));
pSdrTextObj->SetMergedItemSetAndBroadcast(aItemSet);
}
}
return pRetFrameFormat;
}
SwFlyFrameFormat* SwWW8ImplReader::ConvertDrawTextToFly(rtl::Reference<SdrObject>& rpObject,
rtl::Reference<SdrObject>& rpOurNewObject,
const SvxMSDffImportRec& rRecord,
RndStdIds eAnchor, const WW8_FSPA& rF,
SfxItemSet &rFlySet)
{
SwFlyFrameFormat* pRetFrameFormat = nullptr;
tools::Long nStartCp;
tools::Long nEndCp;
// Check if this textbox chain contains text as conversion of an empty
// chain would not make sense.
if (TxbxChainContainsRealText(rRecord.aTextId.nTxBxS, nStartCp, nEndCp))
{
// The Text is not read into SdrTextObj! Rather insert a frame and
// insert the text from nStartCp to nEndCp.
// More attributes can be used in a frame compared to the
// Edit-Engine, and it can contain field, OLEs or graphics...
tools::Rectangle aInnerDist(rRecord.nDxTextLeft, rRecord.nDyTextTop, rRecord.nDxTextRight,
rRecord.nDyTextBottom);
SwFormatFrameSize aFrameSize(SwFrameSize::Fixed, rF.nXaRight - rF.nXaLeft,
rF.nYaBottom - rF.nYaTop);
aFrameSize.SetWidthSizeType(rRecord.bAutoWidth ? SwFrameSize::Variable
: SwFrameSize::Fixed);
rFlySet.Put(aFrameSize);
MatchSdrItemsIntoFlySet(rpObject.get(), rFlySet, rRecord.eLineStyle, rRecord.eLineDashing,
rRecord.eShapeType, aInnerDist);
SdrTextObj *pSdrTextObj = DynCastSdrTextObj(rpObject.get());
if (pSdrTextObj && pSdrTextObj->IsVerticalWriting())
rFlySet.Put(SvxFrameDirectionItem(SvxFrameDirection::Vertical_RL_TB, RES_FRAMEDIR));
pRetFrameFormat = m_rDoc.MakeFlySection(eAnchor, m_pPaM->GetPoint(), &rFlySet);
OSL_ENSURE(pRetFrameFormat->GetAnchor().GetAnchorId() == eAnchor,
"Not the anchor type requested!");
// if everything is OK, find pointer on new object and correct
// Z-order list (or delete entry)
rpOurNewObject = CreateContactObject(pRetFrameFormat);
// remove old object from the Z-Order list
m_xMSDffManager->RemoveFromShapeOrder( rpObject.get() );
// and delete the object
rpObject.clear();
/*
NB: only query pOrgShapeObject starting here!
*/
if (rpOurNewObject)
{
/*
We do not store our rpOutNewObject in the ShapeOrder because we
have a FrameFormat from which we can regenerate the contact object when
we need it. Because, we can have frames anchored to paragraphs in
header/footers and we can copy header/footers, if we do copy a
header/footer with a nonpage anchored frame in it then the contact
objects are invalidated. Under this condition the FrameFormat will be
updated to reflect this change and can be used to get a new
contact object, while a raw rpOutNewObject stored here becomes
deleted and useless.
*/
m_xMSDffManager->StoreShapeOrder(rF.nSpId,
(static_cast<sal_uLong>(rRecord.aTextId.nTxBxS) << 16) +
rRecord.aTextId.nSequence, nullptr, pRetFrameFormat);
// The Contact object has to be inserted into the draw page, so
// SwWW8ImplReader::LoadDoc1() can determine the z-order.
if (!rpOurNewObject->IsInserted())
{
// pass information, if object is in page header|footer to method.
m_xWWZOrder->InsertEscherObject(rpOurNewObject.get(), rF.nSpId, rRecord.bDrawHell,
m_bIsHeader || m_bIsFooter);
}
}
// Box-0 receives the text for the whole chain!
if (!rRecord.aTextId.nSequence)
{
// save flags etc and reset them
WW8ReaderSave aSave( this );
MoveInsideFly(pRetFrameFormat);
m_xWWZOrder->InsideEscher(rF.nSpId);
// read in the text
m_bTxbxFlySection = true;
bool bJoined = ReadText(nStartCp, (nEndCp-nStartCp),
MAN_MAINTEXT == m_xPlcxMan->GetManType() ?
MAN_TXBX : MAN_TXBX_HDFT);
m_xWWZOrder->OutsideEscher();
MoveOutsideFly(pRetFrameFormat, aSave.GetStartPos(),!bJoined);
aSave.Restore( this );
StripNegativeAfterIndent(pRetFrameFormat);
}
}
return pRetFrameFormat;
}
void MatchEscherMirrorIntoFlySet(const SvxMSDffImportRec &rRecord, SfxItemSet &rFlySet)
{
if (rRecord.bVFlip || rRecord.bHFlip)
{
MirrorGraph eType(MirrorGraph::Dont);
if (rRecord.bVFlip && rRecord.bHFlip)
eType = MirrorGraph::Both;
else if (rRecord.bVFlip)
eType = MirrorGraph::Horizontal;
else
eType = MirrorGraph::Vertical;
rFlySet.Put( SwMirrorGrf(eType) );
}
}
SwFlyFrameFormat* SwWW8ImplReader::ImportReplaceableDrawables(rtl::Reference<SdrObject> &rpObject,
rtl::Reference<SdrObject> &rpOurNewObject,
SvxMSDffImportRec& rRecord,
WW8_FSPA& rF,
SfxItemSet &rFlySet )
{
SwFlyFrameFormat* pRetFrameFormat = nullptr;
sal_Int32 nWidthTw = o3tl::saturating_sub(rF.nXaRight, rF.nXaLeft);
if (0 > nWidthTw)
nWidthTw = 0;
sal_Int32 nHeightTw = o3tl::saturating_sub(rF.nYaBottom, rF.nYaTop);
if (0 > nHeightTw)
nHeightTw = 0;
ProcessEscherAlign(rRecord, rF, rFlySet);
rFlySet.Put(SwFormatFrameSize(SwFrameSize::Fixed, nWidthTw, nHeightTw));
SfxItemSetFixed<RES_GRFATR_BEGIN, RES_GRFATR_END-1> aGrSet(m_rDoc.GetAttrPool());
// Note that the escher inner distance only seems to be honoured in
// word for textboxes, not for graphics and ole objects.
tools::Rectangle aInnerDist(0, 0, 0, 0);
MatchSdrItemsIntoFlySet(rpObject.get(), rFlySet, rRecord.eLineStyle, rRecord.eLineDashing,
rRecord.eShapeType, aInnerDist);
MatchEscherMirrorIntoFlySet(rRecord, aGrSet);
OUString aObjectName(rpObject->GetName());
if (SdrObjKind::OLE2 == rpObject->GetObjIdentifier())
pRetFrameFormat = InsertOle(*static_cast<SdrOle2Obj*>(rpObject.get()), rFlySet, &aGrSet);
else
{
const SdrGrafObj *pGrf = static_cast<const SdrGrafObj*>(rpObject.get());
bool bDone = false;
if (pGrf->IsLinkedGraphic() && !pGrf->GetFileName().isEmpty())
{
GraphicType eType = pGrf->GetGraphicType();
OUString aGrfName(
URIHelper::SmartRel2Abs(
INetURLObject(m_sBaseURL), pGrf->GetFileName(),
URIHelper::GetMaybeFileHdl()));
// correction of fix for issue #i10939#:
// One of the two conditions have to be true to insert the graphic
// as a linked graphic -
if (GraphicType::NONE == eType || CanUseRemoteLink(aGrfName))
{
pRetFrameFormat = m_rDoc.getIDocumentContentOperations().InsertGraphic(
*m_pPaM, aGrfName, OUString(), nullptr,
&rFlySet, &aGrSet, nullptr);
bDone = true;
}
}
if (!bDone)
{
const Graphic& rGraph = pGrf->GetGraphic();
pRetFrameFormat = m_rDoc.getIDocumentContentOperations().InsertGraphic(
*m_pPaM, OUString(), OUString(), &rGraph,
&rFlySet, &aGrSet, nullptr);
}
}
if (pRetFrameFormat)
{
if (SdrObjKind::OLE2 != rpObject->GetObjIdentifier())
SetAttributesAtGrfNode(rRecord, *pRetFrameFormat, &rF);
// avoid multiple occurrences of the same graphic name
m_aGrfNameGenerator.SetUniqueGraphName(pRetFrameFormat, aObjectName);
}
// if everything is OK, determine pointer to new object and correct
// Z-Order-List accordingly (or delete entry)
rpOurNewObject = CreateContactObject(pRetFrameFormat);
// remove old object from Z-Order-List
m_xMSDffManager->RemoveFromShapeOrder( rpObject.get() );
// remove from Drawing-Page
if( rpObject->getSdrPageFromSdrObject() )
m_pDrawPg->RemoveObject( rpObject->GetOrdNum() );
// and delete the object
rpObject.clear();
/*
Warning: from now on query only pOrgShapeObject!
*/
// add Contact-Object to the Z-Order-List and the page
if (rpOurNewObject)
{
if (!m_bHdFtFootnoteEdn)
m_xMSDffManager->StoreShapeOrder(rF.nSpId, 0, rpOurNewObject.get());
// The Contact-Object MUST be set in the Draw-Page, so that in
// SwWW8ImplReader::LoadDoc1() the Z-Order can be defined !!!
if (!rpOurNewObject->IsInserted())
{
// pass information, if object is in page header|footer to method.
m_xWWZOrder->InsertEscherObject(rpOurNewObject.get(), rF.nSpId, rRecord.bDrawHell,
m_bIsHeader || m_bIsFooter);
}
}
return pRetFrameFormat;
}
void SwWW8ImplReader::GraphicCtor() // For SVDraw and VCControls and Escher
{
if (m_pDrawModel)
return;
m_rDoc.getIDocumentDrawModelAccess().GetOrCreateDrawModel(); // #i52858# - method name changed
m_pDrawModel = m_rDoc.getIDocumentDrawModelAccess().GetDrawModel();
OSL_ENSURE(m_pDrawModel, "Cannot create DrawModel");
m_pDrawPg = m_pDrawModel->GetPage(0);
m_xMSDffManager.reset(new SwMSDffManager(*this, m_bSkipImages));
m_xMSDffManager->SetModel(m_pDrawModel, 1440);
/*
Now the dff manager always needs a controls converter as well, but a
control converter may still exist without a dffmanager.
*/
m_xFormImpl.reset(new SwMSConvertControls(m_pDocShell, m_pPaM));
m_xWWZOrder.reset(new wwZOrderer(sw::util::SetLayer(m_rDoc), m_pDrawPg,
m_xMSDffManager->GetShapeOrders()));
}
void SwWW8ImplReader::GraphicDtor()
{
m_pDrawEditEngine.reset(); // maybe created by graphic
m_xWWZOrder.reset(); // same
}
void SwWW8FltAnchorStack::AddAnchor(const SwPosition& rPos, SwFrameFormat *pFormat)
{
OSL_ENSURE(pFormat->GetAnchor().GetAnchorId() != RndStdIds::FLY_AS_CHAR,
"Don't use fltanchors with inline frames, slap!");
NewAttr(rPos, SwFltAnchor(pFormat));
}
void SwWW8FltAnchorStack::Flush()
{
size_t nCnt = size();
while (nCnt)
{
SwFltStackEntry &rEntry = (*this)[0];
SwPosition aDummy(rEntry.m_aMkPos.m_nNode);
SetAttrInDoc(aDummy, rEntry);
DeleteAndDestroy(0);
--nCnt;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|