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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <memory>
#include <com/sun/star/embed/Aspects.hpp>
#include <hintids.hxx>
#include <officecfg/Office/Common.hxx>
#include <o3tl/any.hxx>
#include <com/sun/star/drawing/XShape.hpp>
#include <vcl/svapp.hxx>
#include <sot/storage.hxx>
#include <svl/itemiter.hxx>
#include <svl/stritem.hxx>
#include <svl/whiter.hxx>
#include <svx/svdobj.hxx>
#include <svx/svdotext.hxx>
#include <svx/svdpage.hxx>
#include <editeng/colritem.hxx>
#include <editeng/outlobj.hxx>
#include <editeng/editobj.hxx>
#include <editeng/brushitem.hxx>
#include <editeng/boxitem.hxx>
#include <editeng/lrspitem.hxx>
#include <editeng/ulspitem.hxx>
#include <editeng/fontitem.hxx>
#include <editeng/frmdiritem.hxx>
#include <editeng/flditem.hxx>
#include <editeng/shaditem.hxx>
#include <editeng/eeitem.hxx>
#include <editeng/formatbreakitem.hxx>
#include <svx/svdouno.hxx>
#include <svx/svdview.hxx>
#include <fmtcnct.hxx>
#include <fmtanchr.hxx>
#include <fmtsrnd.hxx>
#include <fmtornt.hxx>
#include <fmtfsize.hxx>
#include <fmtfollowtextflow.hxx>
#include <frmfmt.hxx>
#include <fmtcntnt.hxx>
#include <ndindex.hxx>
#include <doc.hxx>
#include <drawdoc.hxx>
#include <IDocumentSettingAccess.hxx>
#include <IDocumentDrawModelAccess.hxx>
#include <pam.hxx>
#include <swrect.hxx>
#include <ndgrf.hxx>
#include <grfatr.hxx>
#include <ndole.hxx>
#include <pagedesc.hxx>
#include <poolfmt.hxx>
#include "ww8par.hxx"
#include <breakit.hxx>
#include <com/sun/star/i18n/XBreakIterator.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include "attributeoutputbase.hxx"
#include "writerhelper.hxx"
#include "writerwordglue.hxx"
#include "wrtww8.hxx"
#include "escher.hxx"
#include <ndtxt.hxx>
#include "WW8FFData.hxx"
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/form/XFormComponent.hpp>
#include <IDocumentStylePoolAccess.hxx>
#include <oox/ole/olehelper.hxx>
#include <fmturl.hxx>
#include <frameformats.hxx>
#include <sfx2/sfxsids.hrc>
#include <o3tl/enumrange.hxx>
#include <o3tl/enumarray.hxx>
#include <sfx2/docfile.hxx>
#include <tools/UnitConversion.hxx>
#include <algorithm>
using ::editeng::SvxBorderLine;
using namespace com::sun::star;
using namespace sw::util;
using ::com::sun::star::beans::XPropertySet;
using ::com::sun::star::drawing::XShape;
bool SwBasicEscherEx::IsRelUrl() const
{
bool bRelUrl = false;
SfxMedium * pMedium = mrWrt.GetWriter().GetMedia();
if ( pMedium )
bRelUrl = pMedium->IsRemote()
? officecfg::Office::Common::Save::URL::Internet::get()
: officecfg::Office::Common::Save::URL::FileSystem::get();
return bRelUrl;
}
OUString SwBasicEscherEx::GetBasePath() const
{
OUString sDocUrl;
SfxMedium * pMedium = mrWrt.GetWriter().GetMedia();
if (pMedium)
{
const SfxStringItem* pPItem = pMedium->GetItemSet().GetItem( SID_FILE_NAME );
if ( pPItem )
sDocUrl = pPItem->GetValue();
}
return sDocUrl.copy(0, sDocUrl.lastIndexOf('/') + 1);
}
OUString SwBasicEscherEx::BuildFileName(sal_uInt16& rnLevel, bool& rbRel, const OUString& rUrl)
{
OUString aDosName( INetURLObject( rUrl ).getFSysPath( FSysStyle::Dos ) );
rnLevel = 0;
rbRel = IsRelUrl();
if (rbRel)
{
// try to convert to relative file name
OUString aTmpName( aDosName );
aDosName = INetURLObject::GetRelURL( GetBasePath(), rUrl,
INetURLObject::EncodeMechanism::WasEncoded, INetURLObject::DecodeMechanism::WithCharset );
if (aDosName.startsWith(INET_FILE_SCHEME))
{
// not converted to rel -> back to old, return absolute flag
aDosName = aTmpName;
rbRel = false;
}
else if (aDosName.startsWith("./"))
{
aDosName = aDosName.copy(2);
}
else
{
while (aDosName.startsWith("../"))
{
++rnLevel;
aDosName = aDosName.copy(3);
}
}
}
return aDosName;
}
void SwBasicEscherEx::WriteHyperlinkWithinFly( SvMemoryStream& rStrm, const SwFormatURL* pINetFormatArg)
{
if ( !pINetFormatArg ) return;
const sal_uInt8 aGuidStdLink[ 16 ] ={
0xD0, 0xC9, 0xEA, 0x79, 0xF9, 0xBA, 0xCE, 0x11, 0x8C, 0x82, 0x00, 0xAA, 0x00, 0x4B, 0xA9, 0x0B };
const sal_uInt8 aGuidUrlMoniker[ 16 ] = {
0xE0, 0xC9, 0xEA, 0x79, 0xF9, 0xBA, 0xCE, 0x11, 0x8C, 0x82, 0x00, 0xAA, 0x00, 0x4B, 0xA9, 0x0B };
const sal_uInt8 aGuidFileMoniker[ 16 ] = {
0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46 };
const sal_uInt8 aGuidFileTail[] = {
0xFF, 0xFF, 0xAD, 0xDE, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
//const sal_uInt18 WW8_ID_HLINK = 0x01B8;
constexpr sal_uInt32 WW8_HLINK_BODY = 0x00000001; /// Contains file link or URL.
constexpr sal_uInt32 WW8_HLINK_ABS = 0x00000002; /// Absolute path.
//const sal_uInt32 WW8_HLINK_DESCR = 0x00000014; /// Description.
constexpr sal_uInt32 WW8_HLINK_MARK = 0x00000008; /// Text mark.
constexpr sal_uInt32 WW8_HLINK_FRAME = 0x00000080; /// Target frame.
//const sal_uInt32 WW8_HLINK_UNC = 0x00000100; /// UNC path.
SvMemoryStream tmpStrm;
OUString tmpTextMark;
const OUString& rUrl = pINetFormatArg->GetURL();
const OUString& rTarFrame = pINetFormatArg->GetTargetFrameName();
sal_uInt32 nFlags = 0;
INetURLObject aUrlObj( rUrl );
const INetProtocol eProtocol = aUrlObj.GetProtocol();
//Target Frame
if (!rTarFrame.isEmpty())
{
SwWW8Writer::WriteLong(tmpStrm, rTarFrame.getLength()+1);
SwWW8Writer::WriteString16(tmpStrm, rTarFrame, false);
tmpStrm.WriteUInt16( 0 );
nFlags |= WW8_HLINK_FRAME;
}
// file link or URL
if (eProtocol == INetProtocol::File || (eProtocol == INetProtocol::NotValid && rUrl[0] != '#'))
{
sal_uInt16 nLevel;
bool bRel;
OUString aFileName( BuildFileName( nLevel, bRel, rUrl ));
if( !bRel )
nFlags |= WW8_HLINK_ABS;
nFlags |= WW8_HLINK_BODY;
tmpStrm.WriteBytes(aGuidFileMoniker, sizeof(aGuidFileMoniker));
tmpStrm.WriteUInt16( nLevel );
SwWW8Writer::WriteLong(tmpStrm, aFileName.getLength()+1);
SwWW8Writer::WriteString8( tmpStrm, aFileName, true, RTL_TEXTENCODING_MS_1252 );
tmpStrm.WriteBytes(aGuidFileTail, sizeof(aGuidFileTail));
//For UNICODE
SwWW8Writer::WriteLong(tmpStrm, 2*aFileName.getLength()+6);
SwWW8Writer::WriteLong(tmpStrm, 2*aFileName.getLength());
tmpStrm.WriteUInt16( 0x0003 );
SwWW8Writer::WriteString16(tmpStrm, aFileName, false);
}
else if( eProtocol != INetProtocol::NotValid )
{
tmpStrm.WriteBytes(aGuidUrlMoniker, sizeof(aGuidUrlMoniker));
SwWW8Writer::WriteLong(tmpStrm, 2*(rUrl.getLength()+1));
SwWW8Writer::WriteString16(tmpStrm, rUrl, true);
nFlags |= WW8_HLINK_BODY | WW8_HLINK_ABS;
}
else if (rUrl[0] == '#' )
{
OUString aTextMark(rUrl.copy( 1 ));
aTextMark = aTextMark.replaceFirst(".", "!");
tmpTextMark = aTextMark;
}
if (tmpTextMark.isEmpty() && aUrlObj.HasMark())
{
tmpTextMark = aUrlObj.GetMark();
}
if (!tmpTextMark.isEmpty())
{
SwWW8Writer::WriteLong(tmpStrm, tmpTextMark.getLength()+1);
SwWW8Writer::WriteString16(tmpStrm, tmpTextMark, true);
nFlags |= WW8_HLINK_MARK;
}
rStrm.WriteBytes(aGuidStdLink, 16);
rStrm .WriteUInt32( 2 )
.WriteUInt32( nFlags );
tmpStrm.Seek( STREAM_SEEK_TO_BEGIN );
sal_uInt32 const nLen = tmpStrm.remainingSize();
if(nLen >0)
{
std::unique_ptr<sal_uInt8[]> pBuffer( new sal_uInt8[ nLen ] );
tmpStrm.ReadBytes(pBuffer.get(), nLen);
rStrm.WriteBytes(pBuffer.get(), nLen);
}
}
void SwBasicEscherEx::PreWriteHyperlinkWithinFly(const SwFrameFormat& rFormat,EscherPropertyContainer& rPropOpt)
{
const SwAttrSet& rAttrSet = rFormat.GetAttrSet();
const SwFormatURL* pINetFormat = rAttrSet.GetItemIfSet(RES_URL);
if (!pINetFormat || pINetFormat->GetURL().isEmpty())
return;
SvMemoryStream aStrm;
WriteHyperlinkWithinFly( aStrm, pINetFormat );
rPropOpt.AddOpt(ESCHER_Prop_pihlShape, true, 0, aStrm);
sal_uInt32 nValue;
OUString aNamestr = pINetFormat->GetName();
if (!aNamestr.isEmpty())
{
rPropOpt.AddOpt(ESCHER_Prop_wzName, aNamestr );
}
if(rPropOpt.GetOpt( ESCHER_Prop_fPrint, nValue))
{
nValue|=0x03080008;
rPropOpt.AddOpt(ESCHER_Prop_fPrint, nValue );
}
else
rPropOpt.AddOpt(ESCHER_Prop_fPrint, 0x03080008 );
}
namespace
{
/// Get the Z ordering number for a DrawObj in a WW8Export.
/// @param rWrt The containing WW8Export.
/// @param pObj pointer to the drawing object.
/// @returns The ordering number.
sal_uLong lcl_getSdrOrderNumber(const WW8Export& rWrt, DrawObj const *pObj)
{
return rWrt.GetSdrOrdNum(pObj->maContent.GetFrameFormat());
};
/// A function object to act as a predicate comparing the ordering numbers
/// of two drawing objects in a WW8Export.
class CompareDrawObjs
{
private:
const WW8Export& m_rWrt;
public:
explicit CompareDrawObjs(const WW8Export& rWrt) : m_rWrt(rWrt) {};
bool operator()(DrawObj const *a, DrawObj const *b) const
{
sal_uLong aSort = lcl_getSdrOrderNumber(m_rWrt, a);
sal_uLong bSort = lcl_getSdrOrderNumber(m_rWrt, b);
return aSort < bSort;
}
};
/// Make a z-order sorted copy of a collection of DrawObj objects.
/// @param rWrt The containing WW8Export.
/// @param rSrcArr The source array.
/// @param rDstArr The destination array.
void lcl_makeZOrderArray(const WW8Export& rWrt,
std::vector<DrawObj> &rSrcArr,
std::vector<DrawObj*> &rDstArr)
{
rDstArr.clear();
rDstArr.reserve(rSrcArr.size());
for(DrawObj & i : rSrcArr)
{
rDstArr.push_back( &i );
}
std::sort(rDstArr.begin(), rDstArr.end(), CompareDrawObjs(rWrt));
}
}
// get a part fix for this type of element
bool WW8Export::MiserableFormFieldExportHack(const SwFrameFormat& rFrameFormat)
{
const SdrObject *pObject = rFrameFormat.FindRealSdrObject();
if (!pObject || pObject->GetObjInventor() != SdrInventor::FmForm)
return false;
const SdrUnoObj *pFormObj = dynamic_cast< const SdrUnoObj* >(pObject);
if (!pFormObj)
return false;
uno::Reference< awt::XControlModel > xControlModel =
pFormObj->GetUnoControlModel();
uno::Reference< lang::XServiceInfo > xInfo(xControlModel,
uno::UNO_QUERY);
uno::Reference<beans::XPropertySet> xPropSet(xControlModel, uno::UNO_QUERY);
if (!xInfo.is())
return false;
if (xInfo->supportsService(u"com.sun.star.form.component.ComboBox"_ustr))
{
DoComboBox(xPropSet);
return true;
}
return false;
}
void WW8Export::DoComboBox(uno::Reference<beans::XPropertySet> const & xPropSet)
{
OUString sSelected;
uno::Sequence<OUString> aListItems;
xPropSet->getPropertyValue(u"StringItemList"_ustr) >>= aListItems;
if (aListItems.hasElements())
{
uno::Any aTmp = xPropSet->getPropertyValue(u"DefaultText"_ustr);
auto pStr = o3tl::tryAccess<OUString>(aTmp);
if (pStr)
sSelected = *pStr;
}
OUString sName;
{
uno::Any aTmp = xPropSet->getPropertyValue(u"Name"_ustr);
auto pStr = o3tl::tryAccess<OUString>(aTmp);
if (pStr)
sName = *pStr;
}
OUString sHelp;
{
// property "Help" does not exist and due to the no-existence an exception is thrown.
try
{
uno::Any aTmp = xPropSet->getPropertyValue(u"HelpText"_ustr);
auto pStr = o3tl::tryAccess<OUString>(aTmp);
if (pStr)
sHelp = *pStr;
}
catch( const uno::Exception& )
{}
}
OUString sToolTip;
{
uno::Any aTmp = xPropSet->getPropertyValue(u"Name"_ustr);
auto pStr = o3tl::tryAccess<OUString>(aTmp);
if (pStr)
sToolTip = *pStr;
}
DoComboBox(sName, sHelp, sToolTip, sSelected, aListItems);
}
void WW8Export::DoComboBox(const OUString &rName,
const OUString &rHelp,
const OUString &rToolTip,
const OUString &rSelected,
const uno::Sequence<OUString> &rListItems)
{
OutputField(nullptr, ww::eFORMDROPDOWN, FieldString(ww::eFORMDROPDOWN),
FieldFlags::Start | FieldFlags::CmdStart);
// write the reference to the "picture" structure
sal_uInt64 nDataStt = m_pDataStrm->Tell();
m_pChpPlc->AppendFkpEntry( Strm().Tell() );
WriteChar( 0x01 );
static sal_uInt8 aArr1[] =
{
0x03, 0x6a, 0,0,0,0, // sprmCPicLocation
0x06, 0x08, 0x01, // sprmCFData
0x55, 0x08, 0x01, // sprmCFSpec
0x02, 0x08, 0x01 // sprmCFFieldVanish
};
sal_uInt8* pDataAdr = aArr1 + 2;
Set_UInt32( pDataAdr, nDataStt );
m_pChpPlc->AppendFkpEntry(Strm().Tell(), sizeof(aArr1), aArr1);
OutputField(nullptr, ww::eFORMDROPDOWN, FieldString(ww::eFORMDROPDOWN),
FieldFlags::Close);
::sw::WW8FFData aFFData;
aFFData.setType(2);
aFFData.setName(rName);
aFFData.setHelp(rHelp);
aFFData.setStatus(rToolTip);
sal_uInt32 nListItems = rListItems.getLength();
for (sal_uInt32 i = 0; i < nListItems; i++)
{
if (i < 0x20 && rSelected == rListItems[i])
aFFData.setResult(::sal::static_int_cast<sal_uInt8>(i));
aFFData.addListboxEntry(rListItems[i]);
}
aFFData.Write(m_pDataStrm);
}
void WW8Export::DoFormText(const SwInputField * pField)
{
OutputField(nullptr, ww::eFORMTEXT, FieldString(ww::eFORMTEXT),
FieldFlags::Start | FieldFlags::CmdStart);
// write the reference to the "picture" structure
sal_uInt64 nDataStt = m_pDataStrm->Tell();
m_pChpPlc->AppendFkpEntry( Strm().Tell() );
WriteChar( 0x01 );
static sal_uInt8 aArr1[] = {
0x02, 0x08, 0x81, // sprmCFFieldVanish
0x03, 0x6a, 0,0,0,0, // sprmCPicLocation
0x06, 0x08, 0x01, // sprmCFData
0x55, 0x08, 0x01 // sprmCFSpec
};
sal_uInt8* pDataAdr = aArr1 + 5;
Set_UInt32( pDataAdr, nDataStt );
m_pChpPlc->AppendFkpEntry(Strm().Tell(),
sizeof( aArr1 ), aArr1 );
::sw::WW8FFData aFFData;
aFFData.setType(0);
aFFData.setName(pField->GetPar2());
aFFData.setHelp(pField->GetHelp());
aFFData.setStatus(pField->GetToolTip());
aFFData.Write(m_pDataStrm);
OutputField(nullptr, ww::eFORMTEXT, OUString(), FieldFlags::CmdEnd);
const OUString fieldStr( pField->ExpandField(true, nullptr) );
SwWW8Writer::WriteString16(Strm(), fieldStr, false);
static sal_uInt8 aArr2[] = {
0x55, 0x08, 0x01, // sprmCFSpec
0x75, 0x08, 0x01 // ???
};
pDataAdr = aArr2 + 2;
Set_UInt32( pDataAdr, nDataStt );
m_pChpPlc->AppendFkpEntry(Strm().Tell(),
sizeof( aArr2 ), aArr2 );
OutputField(nullptr, ww::eFORMTEXT, OUString(), FieldFlags::Close);
}
PlcDrawObj::~PlcDrawObj()
{
}
//It's irritating to have to change the RTL frames position into LTR ones
//so that word will have to place them in the right place. Doubly so that
//the SO drawings and writer frames have different ideas themselves as to
//how to be positioned when in RTL mode!
bool RTLGraphicsHack(SwTwips &rLeft, SwTwips nWidth,
sal_Int16 eHoriOri, sal_Int16 eHoriRel, SwTwips nPageLeft,
SwTwips nPageRight, SwTwips nPageSize)
{
bool bRet = false;
if (eHoriOri == text::HoriOrientation::NONE)
{
if (eHoriRel == text::RelOrientation::PAGE_FRAME)
{
rLeft = nPageSize - rLeft;
bRet = true;
}
else if (
(eHoriRel == text::RelOrientation::PAGE_PRINT_AREA) ||
(eHoriRel == text::RelOrientation::FRAME) ||
(eHoriRel == text::RelOrientation::PRINT_AREA)
)
{
rLeft = nPageSize - nPageLeft - nPageRight - rLeft;
bRet = true;
}
}
if (bRet)
rLeft -= nWidth;
return bRet;
}
static bool RTLDrawingsHack(SwTwips &rLeft,
sal_Int16 eHoriOri, sal_Int16 eHoriRel, SwTwips nPageLeft,
SwTwips nPageRight, SwTwips nPageSize)
{
bool bRet = false;
if (eHoriOri == text::HoriOrientation::NONE)
{
if (eHoriRel == text::RelOrientation::PAGE_FRAME)
{
rLeft = nPageSize + rLeft;
bRet = true;
}
else if (
(eHoriRel == text::RelOrientation::PAGE_PRINT_AREA) ||
(eHoriRel == text::RelOrientation::FRAME) ||
(eHoriRel == text::RelOrientation::PRINT_AREA)
)
{
rLeft = nPageSize - nPageLeft - nPageRight + rLeft;
bRet = true;
}
}
return bRet;
}
void WW8Export::MiserableRTLFrameFormatHack(SwTwips &rLeft, SwTwips &rRight,
const ww8::Frame &rFrameFormat)
{
//Require nasty bidi swap
if (SvxFrameDirection::Horizontal_RL_TB != m_rDoc.GetTextDirection(rFrameFormat.GetPosition()))
return;
if (m_rDoc.getIDocumentSettingAccess().get(DocumentSettingId::DO_NOT_MIRROR_RTL_DRAW_OBJS))
{
// Swap is handled at a layout-level, no need to compensate for it at export time.
return;
}
SwTwips nWidth = rRight - rLeft;
SwTwips nPageLeft, nPageRight;
SwTwips nPageSize = CurrentPageWidth(nPageLeft, nPageRight);
const SwFormatHoriOrient& rHOr = rFrameFormat.GetFrameFormat().GetHoriOrient();
bool bRet = false;
ww8::Frame::WriterSource eSource = rFrameFormat.GetWriterType();
if (eSource == ww8::Frame::eDrawing || eSource == ww8::Frame::eFormControl)
{
if (RTLDrawingsHack(rLeft, rHOr.GetHoriOrient(),
rHOr.GetRelationOrient(), nPageLeft, nPageRight, nPageSize))
{
bRet = true;
}
}
else
{
if (RTLGraphicsHack(rLeft, nWidth, rHOr.GetHoriOrient(),
rHOr.GetRelationOrient(), nPageLeft, nPageRight, nPageSize))
{
bRet = true;
}
}
if (bRet)
rRight = rLeft + nWidth;
}
void PlcDrawObj::WritePlc( WW8Export& rWrt ) const
{
if (8 > rWrt.m_pFib->m_nVersion) // Cannot export drawobject in vers 7-
return;
sal_uInt32 nFcStart = rWrt.m_pTableStrm->Tell();
if (maDrawObjs.empty())
return;
// write CPs
WW8Fib& rFib = *rWrt.m_pFib;
WW8_CP nCpOffs = GetCpOffset(rFib);
for (const auto& rDrawObj : maDrawObjs)
SwWW8Writer::WriteLong(*rWrt.m_pTableStrm, rDrawObj.mnCp - nCpOffs);
SwWW8Writer::WriteLong(*rWrt.m_pTableStrm, rFib.m_ccpText + rFib.m_ccpFootnote +
rFib.m_ccpHdr + rFib.m_ccpEdn + rFib.m_ccpTxbx + rFib.m_ccpHdrTxbx + 1);
for (const auto& rDrawObj : maDrawObjs)
{
// write the fspa-struct
const ww8::Frame &rFrameFormat = rDrawObj.maContent;
const SwFrameFormat &rFormat = rFrameFormat.GetFrameFormat();
const SdrObject* pObj = rFormat.FindRealSdrObject();
tools::Rectangle aRect;
SwFormatVertOrient rVOr = rFormat.GetVertOrient();
SwFormatHoriOrient rHOr = rFormat.GetHoriOrient();
// #i30669# - convert the positioning attributes.
// Most positions are converted, if layout information exists.
const bool bPosConverted =
WinwordAnchoring::ConvertPosition( rHOr, rVOr, rFormat );
Point aObjPos;
bool bHasHeightWidthSwapped(false);
if (RES_FLYFRMFMT == rFormat.Which())
{
SwRect aLayRect(rFormat.FindLayoutRect(false, &aObjPos));
// the Object is not visible - so get the values from
// the format. The Position may not be correct.
if( aLayRect.IsEmpty() )
aRect.SetSize( rFormat.GetFrameSize().GetSize() );
else
{
// #i56090# Do not only consider the first client
// Note that we actually would have to find the maximum size of the
// frame format clients. However, this already should work in most cases.
const SwRect aSizeRect(rFormat.FindLayoutRect());
if ( aSizeRect.Width() > aLayRect.Width() )
aLayRect.Width( aSizeRect.Width() );
aRect = aLayRect.SVRect();
}
}
else
{
OSL_ENSURE(pObj, "Where is the SDR-Object?");
if (pObj)
{
aRect = pObj->GetLogicRect();
// rotating to vertical means swapping height and width as seen in SvxMSDffManager::ImportShape
const Degree100 nAngle = NormAngle36000( pObj->GetRotateAngle() );
const bool bAllowSwap = pObj->GetObjIdentifier() != SdrObjKind::Line && pObj->GetObjIdentifier() != SdrObjKind::Group;
if ( bAllowSwap && (( nAngle > 4500_deg100 && nAngle <= 13500_deg100 ) || ( nAngle > 22500_deg100 && nAngle <= 31500_deg100 )) )
{
const tools::Long nWidth = aRect.getOpenWidth();
const tools::Long nHeight = aRect.getOpenHeight();
aRect.setWidth( nHeight );
aRect.setHeight( nWidth );
bHasHeightWidthSwapped = true;
}
}
}
// #i30669# - use converted position, if conversion is performed.
// Unify position determination of Writer fly frames
// and drawing objects.
if ( bPosConverted )
{
aRect.SetPos( Point( rHOr.GetPos(), rVOr.GetPos() ) );
}
else
{
aRect -= rDrawObj.maParentPos;
aObjPos = aRect.TopLeft();
if (text::VertOrientation::NONE == rVOr.GetVertOrient())
{
// #i22673#
sal_Int16 eOri = rVOr.GetRelationOrient();
if (eOri == text::RelOrientation::CHAR || eOri == text::RelOrientation::TEXT_LINE)
aObjPos.setY( -rVOr.GetPos() );
else
aObjPos.setY( rVOr.GetPos() );
}
if (text::HoriOrientation::NONE == rHOr.GetHoriOrient())
aObjPos.setX( rHOr.GetPos() );
aRect.SetPos( aObjPos );
}
sal_Int32 nThick = rDrawObj.mnThick;
//If we are being exported as an inline hack, set
//corner to 0 and forget about border thickness for positioning
if (rFrameFormat.IsInline())
{
aRect.SetPos(Point(0,0));
nThick = 0;
}
// spid
SwWW8Writer::WriteLong(*rWrt.m_pTableStrm, rDrawObj.mnShapeId);
SwTwips nLeft = aRect.Left() + nThick;
SwTwips nRight = aRect.Right() - nThick;
SwTwips nTop = aRect.Top() + nThick;
SwTwips nBottom = aRect.Bottom() - nThick;
// tdf#93675, 0 below line/paragraph and/or top line/paragraph with
// wrap top+bottom or other wraps is affecting the line directly
// above the anchor line, which seems odd, but a tiny adjustment
// here to bring the top down convinces msoffice to wrap like us
if (nTop == 0 && !rFrameFormat.IsInline() &&
rVOr.GetVertOrient() == text::VertOrientation::NONE &&
rVOr.GetRelationOrient() == text::RelOrientation::FRAME)
{
nTop = 8;
}
//Nasty swap for bidi if necessary
rWrt.MiserableRTLFrameFormatHack(nLeft, nRight, rFrameFormat);
// tdf#70838. Word relates the position to the unrotated rectangle,
// Writer to the rotated one. Because the rotation is around center,
// the difference counts half.
if(pObj && pObj->GetRotateAngle())
{
SwTwips nXOff;
SwTwips nYOff;
SwTwips nSnapWidth = pObj->GetSnapRect().getOpenWidth();
SwTwips nSnapHeight = pObj->GetSnapRect().getOpenHeight();
SwTwips nLogicWidth = pObj->GetLogicRect().getOpenWidth();
SwTwips nLogicHeight = pObj->GetLogicRect().getOpenHeight();
// +1 for to compensate integer arithmetic rounding errors
if(bHasHeightWidthSwapped)
{
nXOff = (nSnapWidth - nLogicHeight + 1) / 2;
nYOff = (nSnapHeight - nLogicWidth + 1) / 2;
}
else
{
nXOff = (nSnapWidth - nLogicWidth + 1) / 2;
nYOff = (nSnapHeight - nLogicHeight + 1) / 2;
}
nLeft += nXOff;
nRight += nXOff;
nTop += nYOff;
nBottom += nYOff;
}
//xaLeft/yaTop/xaRight/yaBottom - rel. to anchor
//(most of) the border is outside the graphic is word, so
//change dimensions to fit
SwWW8Writer::WriteLong(*rWrt.m_pTableStrm, nLeft);
SwWW8Writer::WriteLong(*rWrt.m_pTableStrm, nTop);
SwWW8Writer::WriteLong(*rWrt.m_pTableStrm, nRight);
SwWW8Writer::WriteLong(*rWrt.m_pTableStrm, nBottom);
//fHdr/bx/by/wr/wrk/fRcaSimple/fBelowText/fAnchorLock
sal_uInt16 nFlags=0;
//If nFlags isn't 0x14 its overridden by the escher properties
if (RndStdIds::FLY_AT_PAGE == rFormat.GetAnchor().GetAnchorId())
nFlags = 0x0000;
else
nFlags = 0x0014; // x-rel to text, y-rel to text
const SwFormatSurround& rSurr = rFormat.GetSurround();
sal_uInt16 nContour = rSurr.IsContour() ? 0x0080 : 0x0040;
css::text::WrapTextMode eSurround = rSurr.GetSurround();
/*
#i3958#
The inline elements being export as anchored to character inside
the shape field hack are required to be wrap through so as to flow
over the following dummy 0x01 graphic
*/
if (rFrameFormat.IsInline())
eSurround = css::text::WrapTextMode_THROUGH;
switch (eSurround)
{
case css::text::WrapTextMode_NONE:
nFlags |= 0x0020;
break;
case css::text::WrapTextMode_THROUGH:
nFlags |= 0x0060;
break;
case css::text::WrapTextMode_PARALLEL:
nFlags |= 0x0000 | nContour;
break;
case css::text::WrapTextMode_DYNAMIC:
nFlags |= 0x0600 | nContour;
break;
case css::text::WrapTextMode_LEFT:
nFlags |= 0x0200 | nContour;
break;
case css::text::WrapTextMode_RIGHT:
nFlags |= 0x0400 | nContour;
break;
default:
OSL_ENSURE(false, "Unsupported surround type for export");
break;
}
if (pObj && (pObj->GetLayer() == rWrt.m_rDoc.getIDocumentDrawModelAccess().GetHellId() ||
pObj->GetLayer() == rWrt.m_rDoc.getIDocumentDrawModelAccess().GetInvisibleHellId()))
{
nFlags |= 0x4000;
}
/*
#i3958# Required to make this inline stuff work in WordXP, not
needed for 2003 interestingly
*/
if (rFrameFormat.IsInline())
nFlags |= 0x8000;
SwWW8Writer::WriteShort(*rWrt.m_pTableStrm, nFlags);
// cTxbx
SwWW8Writer::WriteLong(*rWrt.m_pTableStrm, 0);
}
RegisterWithFib(rFib, nFcStart, rWrt.m_pTableStrm->Tell() - nFcStart);
}
void MainTextPlcDrawObj::RegisterWithFib(WW8Fib &rFib, sal_uInt32 nStart,
sal_uInt32 nLen) const
{
rFib.m_fcPlcfspaMom = nStart;
rFib.m_lcbPlcfspaMom = nLen;
}
WW8_CP MainTextPlcDrawObj::GetCpOffset(const WW8Fib &) const
{
return 0;
}
void HdFtPlcDrawObj::RegisterWithFib(WW8Fib &rFib, sal_uInt32 nStart,
sal_uInt32 nLen) const
{
rFib.m_fcPlcfspaHdr = nStart;
rFib.m_lcbPlcfspaHdr = nLen;
}
WW8_CP HdFtPlcDrawObj::GetCpOffset(const WW8Fib &rFib) const
{
return rFib.m_ccpText + rFib.m_ccpFootnote;
}
bool PlcDrawObj::Append( WW8Export const & rWrt, WW8_CP nCp, const ww8::Frame& rFormat,
const Point& rNdTopLeft )
{
bool bRet = false;
const SwFrameFormat &rFrameFormat = rFormat.GetFrameFormat();
if (TXT_HDFT == rWrt.m_nTextTyp || TXT_MAINTEXT == rWrt.m_nTextTyp)
{
if (RES_FLYFRMFMT == rFrameFormat.Which())
{
// check for textflyframe and if it is the first in a Chain
if (rFrameFormat.GetContent().GetContentIdx())
bRet = true;
}
else
bRet = true;
}
if (bRet)
{
DrawObj aObj(rFormat, nCp, rNdTopLeft, rWrt.TrueFrameDirection(rFrameFormat),
rWrt.GetHdFtIndex());
maDrawObjs.push_back(aObj);
}
return bRet;
}
void DrawObj::SetShapeDetails(sal_uInt32 nId, sal_Int32 nThick)
{
mnShapeId = nId;
mnThick = nThick;
}
bool WW8_WrPlcTextBoxes::WriteText( WW8Export& rWrt )
{
rWrt.m_bInWriteEscher = true;
WW8_CP& rccp=TXT_TXTBOX == m_nTyp ? rWrt.m_pFib->m_ccpTxbx : rWrt.m_pFib->m_ccpHdrTxbx;
bool bRet = WriteGenericText( rWrt, m_nTyp, rccp );
WW8_CP nCP = rWrt.Fc2Cp( rWrt.Strm().Tell() );
WW8Fib& rFib = *rWrt.m_pFib;
WW8_CP nMyOffset = rFib.m_ccpText + rFib.m_ccpFootnote + rFib.m_ccpHdr + rFib.m_ccpAtn
+ rFib.m_ccpEdn;
if( TXT_TXTBOX == m_nTyp )
rWrt.m_pFieldTextBxs->Finish( nCP, nMyOffset );
else
rWrt.m_pFieldHFTextBxs->Finish( nCP, nMyOffset + rFib.m_ccpTxbx );
rWrt.m_bInWriteEscher = false;
return bRet;
}
void WW8_WrPlcTextBoxes::Append( const SdrObject& rObj, sal_uInt32 nShapeId )
{
m_aContent.push_back( &rObj );
m_aShapeIds.push_back( nShapeId );
//save NULL, if we have an actual SdrObject
m_aSpareFormats.push_back(nullptr);
}
void WW8_WrPlcTextBoxes::Append( const SwFrameFormat* pFormat, sal_uInt32 nShapeId )
{
//no sdr object, we insert a NULL in the aContent and save the real fmt in aSpareFormats.
m_aContent.push_back( nullptr );
m_aShapeIds.push_back( nShapeId );
m_aSpareFormats.push_back(pFormat);
}
const std::vector<sal_uInt32>* WW8_WrPlcTextBoxes::GetShapeIdArr() const
{
return &m_aShapeIds;
}
sal_uInt32 WW8Export::GetSdrOrdNum( const SwFrameFormat& rFormat ) const
{
sal_uInt32 nOrdNum;
const SdrObject* pObj = rFormat.FindRealSdrObject();
if( pObj )
nOrdNum = pObj->GetOrdNum();
else
{
// no Layout for this format, then recalc the ordnum
SwFrameFormat* pFormat = const_cast<SwFrameFormat*>(&rFormat);
nOrdNum = std::distance(m_rDoc.GetSpzFrameFormats()->begin(),
m_rDoc.GetSpzFrameFormats()->find(static_cast<sw::SpzFrameFormat*>(pFormat)));
const SwDrawModel* pModel = m_rDoc.getIDocumentDrawModelAccess().GetDrawModel();
if( pModel )
nOrdNum += pModel->GetPage( 0 )->GetObjCount();
}
return nOrdNum;
}
void WW8Export::AppendFlyInFlys(const ww8::Frame& rFrameFormat,
const Point& rNdTopLeft)
{
OSL_ENSURE(!m_pEscher, "the EscherStream was already written!");
if (m_pEscher)
return ;
PlcDrawObj *pDrwO;
if (TXT_HDFT == m_nTextTyp)
pDrwO = m_pHFSdrObjs.get();
else
pDrwO = m_pSdrObjs.get();
if (rFrameFormat.IsInline())
{
OutputField(nullptr, ww::eSHAPE, FieldString(ww::eSHAPE),
FieldFlags::Start | FieldFlags::CmdStart | FieldFlags::CmdEnd);
}
WW8_CP nCP = Fc2Cp(Strm().Tell());
bool bSuccess = pDrwO->Append(*this, nCP, rFrameFormat, rNdTopLeft);
OSL_ENSURE(bSuccess, "Couldn't export a graphical element!");
if (bSuccess)
{
static const sal_uInt8 aSpec8[] =
{
0x03, 0x6a, 0, 0, 0, 0, // sprmCObjLocation
0x55, 0x08, 1 // sprmCFSpec
};
// fSpec-Attribute true
// A special character is required in the text for DrawObjects,
// therefore a fSpec-Attribute
m_pChpPlc->AppendFkpEntry( Strm().Tell() );
WriteChar( 0x8 );
m_pChpPlc->AppendFkpEntry( Strm().Tell(), sizeof( aSpec8 ), aSpec8 );
//Need dummy picture frame
if (rFrameFormat.IsInline())
OutGrf(rFrameFormat);
}
if (rFrameFormat.IsInline())
OutputField(nullptr, ww::eSHAPE, OUString(), FieldFlags::Close);
}
MSWord_SdrAttrIter::MSWord_SdrAttrIter( MSWordExportBase& rWr,
const EditTextObject& rEditObj, sal_uInt8 nTyp )
: MSWordAttrIter( rWr ), m_pEditObj(&rEditObj), m_pEditPool(nullptr), mnTyp(nTyp)
{
NextPara( 0 );
}
void MSWord_SdrAttrIter::NextPara( sal_Int32 nPar )
{
m_nPara = nPar;
// Ignore change of attribute at position 0, because we expect that
// the attributes are outputted at start of a paragraph anyway.
m_aChrTextAtrArr.clear();
m_aChrSetArr.clear();
m_nCurrentSwPos = m_nTmpSwPos = 0;
SfxItemSet aSet( m_pEditObj->GetParaAttribs( m_nPara ));
m_pEditPool = aSet.GetPool();
m_eNdChrSet = aSet.Get(EE_CHAR_FONTINFO).GetCharSet();
assert(g_pBreakIt && g_pBreakIt->GetBreakIter().is());
m_nScript = g_pBreakIt->GetBreakIter()->getScriptType( m_pEditObj->GetText(m_nPara), 0);
m_pEditObj->GetCharAttribs( m_nPara, m_aTextAtrArr );
m_nCurrentSwPos = SearchNext( 1 );
}
rtl_TextEncoding MSWord_SdrAttrIter::GetNextCharSet() const
{
if( !m_aChrSetArr.empty() )
return m_aChrSetArr.back();
return m_eNdChrSet;
}
// the first parameter in SearchNext() returns if it's a TextAtr
sal_Int32 MSWord_SdrAttrIter::SearchNext( sal_Int32 nStartPos )
{
sal_Int32 nMinPos = SAL_MAX_INT32;
for(const auto& rTextAtr : m_aTextAtrArr)
{
sal_Int32 nPos = rTextAtr.nStart; // first character attribute
if( nPos >= nStartPos && nPos <= nMinPos )
{
nMinPos = nPos;
SetCharSet(rTextAtr, true);
}
nPos = rTextAtr.nEnd; // last character attribute + 1
if( nPos >= nStartPos && nPos < nMinPos )
{
nMinPos = nPos;
SetCharSet(rTextAtr, false);
}
}
return nMinPos;
}
void MSWord_SdrAttrIter::SetCharSet(const EECharAttrib& rAttr, bool bStart)
{
const SfxPoolItem& rItem = *rAttr.pAttr;
if( rItem.Which() != EE_CHAR_FONTINFO )
{
return;
}
if( bStart )
{
rtl_TextEncoding eChrSet = rItem.StaticWhichCast(EE_CHAR_FONTINFO).GetCharSet();
m_aChrSetArr.push_back( eChrSet );
m_aChrTextAtrArr.push_back( &rAttr );
}
else
{
std::vector<const EECharAttrib*>::iterator it =
std::find( m_aChrTextAtrArr.begin(), m_aChrTextAtrArr.end(), &rAttr );
if ( it != m_aChrTextAtrArr.end() )
{
m_aChrSetArr.erase( m_aChrSetArr.begin() + (it - m_aChrTextAtrArr.begin()) );
m_aChrTextAtrArr.erase( it );
}
}
}
void MSWord_SdrAttrIter::OutEEField(const SfxPoolItem& rHt)
{
const SvxFieldItem &rField = static_cast<const SvxFieldItem &>(rHt);
const SvxFieldData *pField = rField.GetField();
if (auto pURL = dynamic_cast< const SvxURLField *>( pField ))
{
sal_uInt8 nOldTextTyp = m_rExport.m_nTextTyp;
m_rExport.m_nTextTyp = mnTyp;
m_rExport.AttrOutput().StartURL( pURL->GetURL(), pURL->GetTargetFrame() );
const OUString &rStr = pURL->GetRepresentation();
m_rExport.AttrOutput().RawText(rStr, GetNodeCharSet());
m_rExport.AttrOutput().EndURL(false);
m_rExport.m_nTextTyp = nOldTextTyp;
}
}
void MSWord_SdrAttrIter::OutAttr( sal_Int32 nSwPos )
{
//Collect the which ids belong to the run that we will export after
//outputting the underlying paragraph attributes. We will exclude
//writing these from the underlying paragraph attributes to avoid
//duplicate attributes in docx export. Doesn't matter in doc
//export as later props just override earlier ones.
std::set<sal_uInt16> aUsedRunWhichs;
for(const auto& rTextAtr : m_aTextAtrArr)
{
if (nSwPos >= rTextAtr.nStart && nSwPos < rTextAtr.nEnd)
{
sal_uInt16 nWhich = rTextAtr.pAttr->Which();
aUsedRunWhichs.insert(nWhich);
}
if( nSwPos < rTextAtr.nStart )
break;
}
OutParaAttr(true, &aUsedRunWhichs);
if (m_aTextAtrArr.empty())
return;
const sw::BroadcastingModify* pOldMod = m_rExport.m_pOutFormatNode;
m_rExport.m_pOutFormatNode = nullptr;
const SfxItemPool* pSrcPool = m_pEditPool;
const SfxItemPool& rDstPool = m_rExport.m_rDoc.GetAttrPool();
m_nTmpSwPos = nSwPos;
// Did we already produce a <w:sz> element?
m_rExport.m_bFontSizeWritten = false;
for(const auto& rTextAtr : m_aTextAtrArr)
{
if (nSwPos >= rTextAtr.nStart && nSwPos < rTextAtr.nEnd)
{
sal_uInt16 nWhich = rTextAtr.pAttr->Which();
if (nWhich == EE_FEATURE_FIELD)
{
OutEEField(*(rTextAtr.pAttr));
continue;
}
if (nWhich == EE_FEATURE_TAB)
{
m_rExport.WriteChar(0x9);
continue;
}
if (nWhich == EE_CHAR_BKGCOLOR)
{
Color aColor(static_cast<const SvxColorItem*>(rTextAtr.pAttr)->GetValue());
m_rExport.AttrOutput().OutputItem(SvxBrushItem(aColor, RES_CHRATR_BACKGROUND));
continue;
}
const sal_uInt16 nSlotId = pSrcPool->GetSlotId(nWhich);
if (nSlotId && nWhich != nSlotId)
{
nWhich = rDstPool.GetWhichIDFromSlotID(nSlotId);
if (nWhich && nWhich != nSlotId &&
nWhich < RES_UNKNOWNATR_BEGIN &&
m_rExport.CollapseScriptsforWordOk(m_nScript,nWhich))
{
// use always the SW-Which Id !
std::unique_ptr<SfxPoolItem> pI(rTextAtr.pAttr->Clone());
pI->SetWhich( nWhich );
// Will this item produce a <w:sz> element?
bool bFontSizeItem = nWhich == RES_CHRATR_FONTSIZE || nWhich == RES_CHRATR_CJK_FONTSIZE;
if (!m_rExport.m_bFontSizeWritten || !bFontSizeItem)
m_rExport.AttrOutput().OutputItem( *pI );
if (bFontSizeItem)
m_rExport.m_bFontSizeWritten = true;
}
}
}
if( nSwPos < rTextAtr.nStart )
break;
}
m_rExport.m_bFontSizeWritten = false;
m_nTmpSwPos = 0; // HasTextItem only allowed in the above area
m_rExport.m_pOutFormatNode = pOldMod;
}
bool MSWord_SdrAttrIter::IsTextAttr(sal_Int32 nSwPos)
{
return std::any_of(m_aTextAtrArr.begin(), m_aTextAtrArr.end(),
[nSwPos](const EECharAttrib& rTextAtr) {
return (nSwPos >= rTextAtr.nStart && nSwPos < rTextAtr.nEnd) &&
(rTextAtr.pAttr->Which() == EE_FEATURE_FIELD ||
rTextAtr.pAttr->Which() == EE_FEATURE_TAB);
}
);
}
// HasItem is used for the consolidation of the double attribute Underline and
// WordLineMode as a TextItem. OutAttr() calls the output function, which can
// query for other items at the start position of attribute via HasItem().
// Only attributes with an end can be queried.
// The search is done with bDeep.
const SfxPoolItem* MSWord_SdrAttrIter::HasTextItem(sal_uInt16 nWhich) const
{
nWhich = sw::hack::TransformWhichBetweenPools(*m_pEditPool,
m_rExport.m_rDoc.GetAttrPool(), nWhich);
if (nWhich)
{
for (const auto& rTextAtr : m_aTextAtrArr)
{
if (nWhich == rTextAtr.pAttr->Which() && m_nTmpSwPos >= rTextAtr.nStart && m_nTmpSwPos < rTextAtr.nEnd)
return rTextAtr.pAttr; // Found
if (m_nTmpSwPos < rTextAtr.nStart)
return nullptr;
}
}
return nullptr;
}
const SfxPoolItem& MSWord_SdrAttrIter::GetItem( sal_uInt16 nWhich ) const
{
using sw::hack::GetSetWhichFromSwDocWhich;
const SfxPoolItem* pRet = HasTextItem(nWhich);
if (!pRet)
{
SfxItemSet aSet(m_pEditObj->GetParaAttribs(m_nPara));
nWhich = GetSetWhichFromSwDocWhich(aSet, m_rExport.m_rDoc, nWhich);
OSL_ENSURE(nWhich, "Impossible, catastrophic failure imminent");
pRet = &aSet.Get(nWhich);
}
return *pRet;
}
//Drawing shapes properties inherit from a different pool that the document
//styles. On export to .doc[x] they will default to style "Normal". Here explicitly
//set any items which are not already set, but differ from "Normal".
void MSWord_SdrAttrIter::SetItemsThatDifferFromStandard(bool bCharAttr, SfxItemSet& rSet)
{
SwTextFormatColl* pC = m_rExport.m_rDoc.getIDocumentStylePoolAccess().GetTextCollFromPool
(RES_POOLCOLL_STANDARD, false);
SfxWhichIter aWhichIter(rSet);
for (sal_uInt16 nEEWhich = aWhichIter.FirstWhich(); nEEWhich; nEEWhich = aWhichIter.NextWhich())
{
if (SfxItemState::SET != aWhichIter.GetItemState(false))
{
sal_uInt16 nSwWhich = sw::hack::TransformWhichBetweenPools(m_rExport.m_rDoc.GetAttrPool(),
*m_pEditPool, nEEWhich);
if (!nSwWhich)
continue;
bool bWanted = ( bCharAttr ? ( nSwWhich >= RES_CHRATR_BEGIN && nSwWhich < RES_TXTATR_END )
: ( nSwWhich >= RES_PARATR_BEGIN && nSwWhich < RES_FRMATR_END ) );
if (!bWanted)
continue;
const SfxPoolItem& rDrawItem = rSet.Get(nEEWhich);
const SfxPoolItem& rStandardItem = pC->GetFormatAttr(nSwWhich);
if (rDrawItem != rStandardItem)
rSet.Put(rDrawItem);
}
}
}
void MSWord_SdrAttrIter::OutParaAttr(bool bCharAttr, const std::set<sal_uInt16>* pWhichsToIgnore)
{
SfxItemSet aSet( m_pEditObj->GetParaAttribs( m_nPara ));
SetItemsThatDifferFromStandard(bCharAttr, aSet);
if (!aSet.Count())
return;
const SfxItemSet* pOldSet = m_rExport.GetCurItemSet();
m_rExport.SetCurItemSet( &aSet );
SfxItemIter aIter( aSet );
const SfxPoolItem* pItem = aIter.GetCurItem();
const SfxItemPool* pSrcPool = m_pEditPool,
* pDstPool = &m_rExport.m_rDoc.GetAttrPool();
do
{
sal_uInt16 nWhich = pItem->Which();
if (pWhichsToIgnore && pWhichsToIgnore->find(nWhich) != pWhichsToIgnore->end())
continue;
sal_uInt16 nSlotId = pSrcPool->GetSlotId(nWhich);
if ( nSlotId && nWhich != nSlotId &&
0 != ( nWhich = pDstPool->GetWhichIDFromSlotID( nSlotId ) ) &&
nWhich != nSlotId &&
( bCharAttr ? ( nWhich >= RES_CHRATR_BEGIN && nWhich < RES_TXTATR_END )
: ( nWhich >= RES_PARATR_BEGIN && nWhich < RES_FRMATR_END ) ) )
{
// use always the SW-Which Id !
std::unique_ptr<SfxPoolItem> pI(pItem->Clone());
pI->SetWhich( nWhich );
if (m_rExport.CollapseScriptsforWordOk(m_nScript,nWhich))
m_rExport.AttrOutput().OutputItem(*pI);
}
} while ((pItem = aIter.NextItem()));
m_rExport.SetCurItemSet( pOldSet );
}
void WW8Export::WriteSdrTextObj(const SdrTextObj& rTextObj, sal_uInt8 nTyp)
{
std::optional<OutlinerParaObject> pParaObj;
/*
#i13885#
When the object is actively being edited, that text is not set into
the objects normal text object, but lives in a separate object.
*/
if (rTextObj.IsTextEditActive())
{
pParaObj = rTextObj.CreateEditOutlinerParaObject();
}
else if (rTextObj.GetOutlinerParaObject())
{
pParaObj = *rTextObj.GetOutlinerParaObject();
}
if( pParaObj )
{
WriteOutliner(*pParaObj, nTyp);
}
}
void WW8Export::WriteOutliner(const OutlinerParaObject& rParaObj, sal_uInt8 nTyp)
{
bool bAnyWrite = false;
const EditTextObject& rEditObj = rParaObj.GetTextObject();
MSWord_SdrAttrIter aAttrIter( *this, rEditObj, nTyp );
sal_Int32 nPara = rEditObj.GetParagraphCount();
sal_uInt8 bNul = 0;
for( sal_Int32 n = 0; n < nPara; ++n )
{
if( n )
aAttrIter.NextPara( n );
OSL_ENSURE( m_pO->empty(), " pO is not empty at start of line" );
OUString aStr( rEditObj.GetText( n ));
sal_Int32 nCurrentPos = 0;
const sal_Int32 nEnd = aStr.getLength();
const SfxItemSet& aSet(rEditObj.GetParaAttribs(n));
bool bIsRTLPara = false;
if(const SvxFrameDirectionItem* pItem = aSet.GetItemIfSet(EE_PARA_WRITINGDIR))
{
SvxFrameDirection nDir = pItem->GetValue();
bIsRTLPara = SvxFrameDirection::Horizontal_RL_TB == nDir;
}
do {
const sal_Int32 nNextAttr = std::min(aAttrIter.WhereNext(), nEnd);
bool bTextAtr = aAttrIter.IsTextAttr( nCurrentPos );
if( !bTextAtr )
OutSwString(aStr, nCurrentPos, nNextAttr - nCurrentPos);
// At the end of the line the attributes are extended over the CR.
// exception: foot note at line end
if( nNextAttr == nEnd && !bTextAtr )
WriteCR(); // CR after it
// output of character attributes
aAttrIter.OutAttr( nCurrentPos ); // nCurrentPos - 1 ??
if (bIsRTLPara)
{
// This is necessary to make word order correct in MS Word.
// In theory we should do this for complex-script runs only,
// but Outliner does not split runs like Writer core did.
// Fortunately, both MS Word and Writer seems to tolerate
// that we turn it on for non complex-script runs.
AttrOutput().OutputItem(SfxInt16Item(RES_CHRATR_BIDIRTL, 1));
}
m_pChpPlc->AppendFkpEntry( Strm().Tell(),
m_pO->size(), m_pO->data() );
m_pO->clear();
// exception: foot note at line end
if( nNextAttr == nEnd && bTextAtr )
WriteCR(); // CR after it
nCurrentPos = nNextAttr;
aAttrIter.NextPos();
}
while( nCurrentPos < nEnd );
OSL_ENSURE( m_pO->empty(), " pO is not empty at start of line" );
m_pO->push_back( bNul ); // Style # as short
m_pO->push_back( bNul );
aAttrIter.OutParaAttr(false);
sal_uInt64 nPos = Strm().Tell();
m_pPapPlc->AppendFkpEntry( Strm().Tell(),
m_pO->size(), m_pO->data() );
m_pO->clear();
m_pChpPlc->AppendFkpEntry( nPos );
}
bAnyWrite = 0 != nPara;
if( !bAnyWrite )
WriteStringAsPara( OUString() );
}
void WinwordAnchoring::WriteData( EscherEx& rEx ) const
{
//Toplevel groups get their winword extra data attached, and sub elements
//use the defaults
if (rEx.GetGroupLevel() > 1)
return;
SvStream& rSt = rEx.GetStream();
//The last argument denotes the number of sub properties in this atom
int nSubProps = mnGroupShapeBooleanProperties ? 1 : 0;
if (mbInline)
{
nSubProps += 3;
rEx.AddAtom(6 * nSubProps, DFF_msofbtUDefProp, 3, nSubProps); // Prop id is 0xF122
rSt.WriteUInt16( 0x0390 ).WriteUInt32( 3 );
rSt.WriteUInt16( 0x0392 ).WriteUInt32( 3 );
//This sub property is required to be in the dummy inline frame as
//well
rSt.WriteUInt16( 0x053F ).WriteUInt32( nInlineHack );
}
else
{
nSubProps += 4;
rEx.AddAtom(6 * nSubProps, DFF_msofbtUDefProp, 3, nSubProps); // Prop id is 0xF122
rSt.WriteUInt16( 0x038F ).WriteUInt32( mnXAlign );
rSt.WriteUInt16( 0x0390 ).WriteUInt32( mnXRelTo );
rSt.WriteUInt16( 0x0391 ).WriteUInt32( mnYAlign );
rSt.WriteUInt16( 0x0392 ).WriteUInt32( mnYRelTo );
}
if (mnGroupShapeBooleanProperties)
rSt.WriteUInt16(0x03BF).WriteUInt32(mnGroupShapeBooleanProperties);
}
void WW8Export::CreateEscher()
{
SfxItemState eBackSet = m_rDoc.GetPageDesc(0).GetMaster().
GetItemState(RES_BACKGROUND);
if (m_pHFSdrObjs->size() || m_pSdrObjs->size() || SfxItemState::SET == eBackSet)
{
OSL_ENSURE( !m_pEscher, "Who did not deleted the pointer?" );
SvMemoryStream* pEscherStrm = new SvMemoryStream;
pEscherStrm->SetEndian(SvStreamEndian::LITTLE);
m_pEscher = new SwEscherEx(pEscherStrm, *this);
}
}
void WW8Export::WriteEscher()
{
if (m_pEscher)
{
sal_uInt64 nStart = m_pTableStrm->Tell();
m_pEscher->WritePictures();
m_pEscher->FinishEscher();
m_pFib->m_fcDggInfo = nStart;
m_pFib->m_lcbDggInfo = m_pTableStrm->Tell() - nStart;
delete m_pEscher;
m_pEscher = nullptr;
}
}
void SwEscherEx::WritePictures()
{
if( SvStream* pPicStrm = static_cast< SwEscherExGlobal& >( *mxGlobal ).GetPictureStream() )
{
// set the blip - entries to the correct stream pos
sal_uInt64 nEndPos = mrWrt.Strm().Tell();
mxGlobal->SetNewBlipStreamOffset( nEndPos );
pPicStrm->Seek( 0 );
mrWrt.Strm().WriteStream( *pPicStrm );
}
Flush();
}
// Output- Routines for Escher Export
SwEscherExGlobal::SwEscherExGlobal()
{
}
SwEscherExGlobal::~SwEscherExGlobal()
{
}
SvStream* SwEscherExGlobal::ImplQueryPictureStream()
{
// this function will be called exactly once
mxPicStrm = std::make_shared<SvMemoryStream>();
mxPicStrm->SetEndian(SvStreamEndian::LITTLE);
return mxPicStrm.get();
}
SwBasicEscherEx::SwBasicEscherEx(SvStream* pStrm, WW8Export& rWW8Wrt)
: EscherEx( std::make_shared<SwEscherExGlobal>(), pStrm), mrWrt(rWW8Wrt), mpEscherStrm(pStrm)
{
Init();
}
SwBasicEscherEx::~SwBasicEscherEx()
{
}
void SwBasicEscherEx::WriteFrameExtraData(const SwFrameFormat&)
{
AddAtom(4, ESCHER_ClientAnchor);
GetStream().WriteUInt32( 0x80000000 );
}
void SwBasicEscherEx::WriteEmptyFlyFrame(const SwFrameFormat& rFormat, sal_uInt32 nShapeId)
{
OpenContainer(ESCHER_SpContainer);
AddShape(ESCHER_ShpInst_PictureFrame, ShapeFlag::HaveAnchor | ShapeFlag::HaveShapeProperty, nShapeId);
// store anchor attribute
WriteFrameExtraData(rFormat);
AddAtom(6, DFF_msofbtUDefProp, 3, 1); //Prop id is 0xF122
GetStream().WriteUInt16( 0x053F ).WriteUInt32( nInlineHack );
CloseContainer(); // ESCHER_SpContainer
}
static ShapeFlag AddMirrorFlags(ShapeFlag nFlags, const SwMirrorGrf &rMirror)
{
switch (rMirror.GetValue())
{
default:
case MirrorGraph::Dont:
break;
case MirrorGraph::Vertical:
nFlags |= ShapeFlag::FlipH;
break;
case MirrorGraph::Horizontal:
nFlags |= ShapeFlag::FlipV;
break;
case MirrorGraph::Both:
nFlags |= ShapeFlag::FlipH | ShapeFlag::FlipV;
break;
}
return nFlags;
}
//For i120928,this function is added to export graphic of bullet
void SwBasicEscherEx::WriteGrfBullet(const Graphic& rGrf)
{
OpenContainer( ESCHER_SpContainer );
AddShape(ESCHER_ShpInst_PictureFrame, ShapeFlag::HaveAnchor | ShapeFlag::HaveShapeProperty, 0x401);
EscherPropertyContainer aPropOpt;
GraphicObject aGraphicObject( rGrf );
OString aUniqueId = aGraphicObject.GetUniqueID();
if ( !aUniqueId.isEmpty() )
{
sal_uInt32 nBlibId = mxGlobal->GetBlibID( *(mxGlobal->QueryPictureStream()), aGraphicObject );
if (nBlibId)
aPropOpt.AddOpt(ESCHER_Prop_pib, nBlibId, true);
}
aPropOpt.AddOpt( ESCHER_Prop_pibFlags, ESCHER_BlipFlagDefault );
aPropOpt.AddOpt( ESCHER_Prop_dyTextTop, DrawModelToEmu(0));
aPropOpt.AddOpt( ESCHER_Prop_dyTextBottom, DrawModelToEmu(0));
aPropOpt.AddOpt( ESCHER_Prop_dxTextLeft, DrawModelToEmu(0));
aPropOpt.AddOpt( ESCHER_Prop_dxTextRight, DrawModelToEmu(0));
aPropOpt.AddOpt( ESCHER_Prop_fNoLineDrawDash, 0x80000 );
aPropOpt.AddOpt( ESCHER_Prop_dyTextTop, 0 );
aPropOpt.AddOpt( ESCHER_Prop_dyTextBottom, 0 );
aPropOpt.AddOpt( ESCHER_Prop_dxTextLeft, 0 );
aPropOpt.AddOpt( ESCHER_Prop_dxTextRight, 0 );
const Color aTmpColor( COL_WHITE );
std::shared_ptr<SvxBrushItem> aBrush(std::make_shared<SvxBrushItem>(aTmpColor, RES_BACKGROUND));
const SvxBrushItem* pRet = mrWrt.GetCurrentPageBgBrush();
if (pRet && (pRet->GetGraphic() ||( pRet->GetColor() != COL_TRANSPARENT)))
aBrush.reset(pRet->Clone());
WriteBrushAttr(*aBrush, aPropOpt);
aPropOpt.AddOpt( ESCHER_Prop_pictureActive, 0 );
aPropOpt.Commit( GetStream() );
AddAtom(4, ESCHER_ClientAnchor);
GetStream().WriteUInt32( 0x80000000 );
CloseContainer();
}
sal_Int32 SwBasicEscherEx::WriteGrfFlyFrame(const SwFrameFormat& rFormat, sal_uInt32 nShapeId)
{
sal_Int32 nBorderThick=0;
SwNoTextNode *pNd = GetNoTextNodeFromSwFrameFormat(rFormat);
SwGrfNode *pGrfNd = pNd ? pNd->GetGrfNode() : nullptr;
OSL_ENSURE(pGrfNd, "No SwGrfNode ?, suspicious");
if (!pGrfNd)
return nBorderThick;
OpenContainer( ESCHER_SpContainer );
const SwMirrorGrf &rMirror = pGrfNd->GetSwAttrSet().GetMirrorGrf();
AddShape(ESCHER_ShpInst_PictureFrame,
AddMirrorFlags(ShapeFlag::HaveAnchor | ShapeFlag::HaveShapeProperty, rMirror),
nShapeId);
EscherPropertyContainer aPropOpt;
sal_uInt32 nFlags = ESCHER_BlipFlagDefault;
if (pGrfNd->IsLinkedFile())
{
OUString sURL;
pGrfNd->GetFileFilterNms( &sURL, nullptr );
ww::bytes aBuf;
SwWW8Writer::InsAsString16( aBuf, sURL );
SwWW8Writer::InsUInt16( aBuf, 0 );
aPropOpt.AddOpt(ESCHER_Prop_pibName, true, aBuf.size(), aBuf);
nFlags = ESCHER_BlipFlagLinkToFile | ESCHER_BlipFlagURL |
ESCHER_BlipFlagDoNotSave;
}
else
{
const Graphic& aGraphic(pGrfNd->GetGrf());
GraphicObject aGraphicObject( aGraphic );
OString aUniqueId = aGraphicObject.GetUniqueID();
if (!aUniqueId.isEmpty())
{
sal_uInt32 nBlibId = mxGlobal->GetBlibID( *QueryPictureStream(), aGraphicObject);
if (nBlibId)
aPropOpt.AddOpt(ESCHER_Prop_pib, nBlibId, true);
}
}
aPropOpt.AddOpt( ESCHER_Prop_pibFlags, nFlags );
nBorderThick = WriteFlyFrameAttr(rFormat,mso_sptPictureFrame,aPropOpt);
WriteGrfAttr(*pGrfNd, rFormat, aPropOpt);
aPropOpt.Commit( GetStream() );
// store anchor attribute
WriteFrameExtraData( rFormat );
CloseContainer(); // ESCHER_SpContainer
return nBorderThick;
}
void SwBasicEscherEx::WriteGrfAttr(const SwNoTextNode& rNd, const SwFrameFormat& rFormat,
EscherPropertyContainer& rPropOpt)
{
GraphicDrawMode nMode = GraphicDrawMode::Standard;
sal_Int32 nContrast = 0;
sal_Int16 nBrightness = 0;
if (const SfxInt16Item* pItem = rNd.GetSwAttrSet().GetItemIfSet(RES_GRFATR_CONTRAST))
{
nContrast = pItem->GetValue();
}
if (const SfxInt16Item* pItem = rNd.GetSwAttrSet().GetItemIfSet(RES_GRFATR_LUMINANCE))
{
nBrightness = pItem->GetValue();
}
if (const SfxEnumItemInterface* pItem = rNd.GetSwAttrSet().GetItemIfSet(RES_GRFATR_DRAWMODE))
{
nMode = static_cast<GraphicDrawMode>(pItem->GetEnumValue());
if (nMode == GraphicDrawMode::Watermark)
{
/*
There is no real watermark mode in word, we must use standard
mode and modify our ones by 70% extra brightness and 70% less
contrast. This means that unmodified default OOo watermark
will turn back into watermark, and modified OOo watermark will
change into a close visual representation in standardmode
*/
nBrightness += 70;
if (nBrightness > 100)
nBrightness = 100;
nContrast -= 70;
if (nContrast < -100)
nContrast = -100;
nMode = GraphicDrawMode::Standard;
}
}
sal_uInt32 nPictureMode;
if (nMode == GraphicDrawMode::Greys)
nPictureMode = 0x40004;
else if (nMode == GraphicDrawMode::Mono)
nPictureMode = 0x60006;
else
nPictureMode = 0;
rPropOpt.AddOpt( ESCHER_Prop_pictureActive, nPictureMode );
if (nContrast != 0)
{
nContrast+=100;
if (nContrast == 100)
nContrast = 0x10000;
else if (nContrast < 100)
{
nContrast *= 0x10000;
nContrast /= 100;
}
else if (nContrast < 200)
nContrast = (100 * 0x10000) / (200-nContrast);
else
nContrast = 0x7fffffff;
rPropOpt.AddOpt( ESCHER_Prop_pictureContrast, nContrast);
}
if (nBrightness != 0)
rPropOpt.AddOpt( ESCHER_Prop_pictureBrightness, nBrightness * 327 );
sal_Int32 nCropL = 0;
sal_Int32 nCropR = 0;
sal_Int32 nCropT = 0;
sal_Int32 nCropB = 0;
if (const SwCropGrf* pCropItem = rNd.GetSwAttrSet().GetItemIfSet(RES_GRFATR_CROPGRF))
{
nCropL += pCropItem->GetLeft();
nCropR += pCropItem->GetRight();
nCropT += pCropItem->GetTop();
nCropB += pCropItem->GetBottom();
}
// simulate border padding as a negative crop.
if (const SvxBoxItem* pBoxItem = rFormat.GetItemIfSet(RES_BOX, false))
{
nCropL -= pBoxItem->GetDistance( SvxBoxItemLine::LEFT );
nCropR -= pBoxItem->GetDistance( SvxBoxItemLine::RIGHT );
nCropT -= pBoxItem->GetDistance( SvxBoxItemLine::TOP );
nCropB -= pBoxItem->GetDistance( SvxBoxItemLine::BOTTOM );
}
const Size aSz( rNd.GetTwipSize() );
if( 0 != nCropL )
rPropOpt.AddOpt( ESCHER_Prop_cropFromLeft, ToFract16( nCropL, aSz.Width()) );
if( 0 != nCropR )
rPropOpt.AddOpt( ESCHER_Prop_cropFromRight, ToFract16( nCropR, aSz.Width()));
if( 0 != nCropT )
rPropOpt.AddOpt( ESCHER_Prop_cropFromTop, ToFract16( nCropT, aSz.Height()));
if( 0 != nCropB )
rPropOpt.AddOpt( ESCHER_Prop_cropFromBottom, ToFract16( nCropB, aSz.Height()));
}
void SwBasicEscherEx::SetPicId(const SdrObject &, sal_uInt32,
EscherPropertyContainer &)
{
}
void SwEscherEx::SetPicId(const SdrObject &rSdrObj, sal_uInt32 nShapeId,
EscherPropertyContainer &rPropOpt)
{
m_pTextBxs->Append(rSdrObj, nShapeId);
sal_uInt32 nPicId = m_pTextBxs->Count();
nPicId *= 0x10000;
rPropOpt.AddOpt( ESCHER_Prop_pictureId, nPicId );
}
sal_Int32 SwBasicEscherEx::WriteOLEFlyFrame(const SwFrameFormat& rFormat, sal_uInt32 nShapeId)
{
sal_Int32 nBorderThick = 0;
if (const SdrObject* pSdrObj = rFormat.FindRealSdrObject())
{
SwNodeIndex aIdx(*rFormat.GetContent().GetContentIdx(), 1);
SwOLENode& rOLENd = *aIdx.GetNode().GetOLENode();
sal_Int64 nAspect = rOLENd.GetAspect();
uno::Reference < embed::XEmbeddedObject > xObj(rOLENd.GetOLEObj().GetOleRef());
// the rectangle is used to transport the size of the object
// the left, top corner is set to ( 0, 0 ) by default constructor,
// if the width and height are set correctly bRectIsSet should be set to true
awt::Rectangle aRect;
bool bRectIsSet = false;
// TODO/LATER: should the icon size be stored in case of iconified object?
if ( xObj.is() && nAspect != embed::Aspects::MSOLE_ICON )
{
try
{
awt::Size aSize = xObj->getVisualAreaSize( nAspect );
aRect.Width = aSize.Width;
aRect.Height = aSize.Height;
bRectIsSet = true;
}
catch( const uno::Exception& )
{}
}
/*
#i5970#
Export floating ole2 .doc ver 8+ wmf ole2 previews as emf previews
instead ==> allows unicode text to be preserved
*/
#ifdef OLE_PREVIEW_AS_EMF
const Graphic* pGraphic = rOLENd.GetGraphic();
#endif
OpenContainer(ESCHER_SpContainer);
EscherPropertyContainer aPropOpt;
const SwMirrorGrf &rMirror = rOLENd.GetSwAttrSet().GetMirrorGrf();
WriteOLEPicture(aPropOpt,
AddMirrorFlags(ShapeFlag::HaveAnchor | ShapeFlag::HaveShapeProperty | ShapeFlag::OLEShape, rMirror),
pGraphic ? *pGraphic : Graphic(), *pSdrObj, nShapeId, bRectIsSet ? &aRect : nullptr );
nBorderThick = WriteFlyFrameAttr(rFormat, mso_sptPictureFrame, aPropOpt);
WriteGrfAttr(rOLENd, rFormat, aPropOpt);
aPropOpt.Commit(GetStream());
// store anchor attribute
WriteFrameExtraData( rFormat );
CloseContainer(); // ESCHER_SpContainer
}
return nBorderThick;
}
void SwBasicEscherEx::WriteBrushAttr(const SvxBrushItem &rBrush,
EscherPropertyContainer& rPropOpt)
{
bool bSetOpacity = false;
sal_uInt32 nOpaque = 0;
if (const GraphicObject *pGraphicObject = rBrush.GetGraphicObject())
{
OString aUniqueId = pGraphicObject->GetUniqueID();
if (!aUniqueId.isEmpty())
{
sal_uInt32 nBlibId = mxGlobal->GetBlibID(*QueryPictureStream(), *pGraphicObject);
if (nBlibId)
rPropOpt.AddOpt(ESCHER_Prop_fillBlip,nBlibId,true);
}
nOpaque = 255 - pGraphicObject->GetAttr().GetAlpha();
if (0 != nOpaque)
bSetOpacity = true;
const ESCHER_FillStyle eFillType
= rBrush.GetGraphicPos() == GPOS_TILED ? ESCHER_FillTexture : ESCHER_FillPicture;
rPropOpt.AddOpt(ESCHER_Prop_fillType, eFillType);
rPropOpt.AddOpt( ESCHER_Prop_fNoFillHitTest, 0x140014 );
rPropOpt.AddOpt( ESCHER_Prop_fillBackColor, 0 );
}
else
{
sal_uInt32 nFillColor = GetColor(rBrush.GetColor());
rPropOpt.AddOpt( ESCHER_Prop_fillColor, nFillColor );
rPropOpt.AddOpt( ESCHER_Prop_fillBackColor, nFillColor ^ 0xffffff );
rPropOpt.AddOpt( ESCHER_Prop_fNoFillHitTest, 0x100010 );
nOpaque = 255 - rBrush.GetColor().GetAlpha();
if (0 != nOpaque)
bSetOpacity = true;
}
if (bSetOpacity)
{
nOpaque = (nOpaque * 100) / 0xFE;
nOpaque = ((100 - nOpaque) << 16) / 100;
rPropOpt.AddOpt(ESCHER_Prop_fillOpacity, nOpaque);
}
}
sal_Int32 SwBasicEscherEx::WriteFlyFrameAttr(const SwFrameFormat& rFormat,
MSO_SPT eShapeType, EscherPropertyContainer& rPropOpt)
{
sal_Int32 nLineWidth=0;
bool bFirstLine = true;
if (const SvxBoxItem* pItem = rFormat.GetItemIfSet(RES_BOX))
{
static const o3tl::enumarray<SvxBoxItemLine, sal_uInt16> aExhperProp =
{
sal_uInt16(ESCHER_Prop_dyTextTop), sal_uInt16(ESCHER_Prop_dyTextBottom),
sal_uInt16(ESCHER_Prop_dxTextLeft), sal_uInt16(ESCHER_Prop_dxTextRight)
};
const SvxBorderLine* pLine;
for( SvxBoxItemLine n : o3tl::enumrange<SvxBoxItemLine>() )
{
pLine = pItem->GetLine( n );
if( nullptr != pLine )
{
if( bFirstLine )
{
sal_uInt32 nLineColor = GetColor(pLine->GetColor());
rPropOpt.AddOpt( ESCHER_Prop_lineColor, nLineColor );
rPropOpt.AddOpt( ESCHER_Prop_lineBackColor,
nLineColor ^ 0xffffff );
MSO_LineStyle eStyle;
if( pLine->isDouble() )
{
// double line
nLineWidth = pLine->GetWidth();
if( pLine->GetInWidth() == pLine->GetOutWidth() )
eStyle = mso_lineDouble;
else if( pLine->GetInWidth() < pLine->GetOutWidth() )
eStyle = mso_lineThickThin;
else
eStyle = mso_lineThinThick;
}
else
{
// simple line
eStyle = mso_lineSimple;
nLineWidth = pLine->GetWidth();
}
rPropOpt.AddOpt( ESCHER_Prop_lineStyle, eStyle );
rPropOpt.AddOpt( ESCHER_Prop_lineWidth,
DrawModelToEmu( nLineWidth ));
MSO_LineDashing eDashing = mso_lineSolid;
switch (pLine->GetBorderLineStyle())
{
case SvxBorderLineStyle::DASHED:
eDashing = mso_lineDashGEL;
break;
case SvxBorderLineStyle::DOTTED:
eDashing = mso_lineDotGEL;
break;
case SvxBorderLineStyle::SOLID:
default:
break;
}
rPropOpt.AddOpt( ESCHER_Prop_lineDashing, eDashing );
rPropOpt.AddOpt( ESCHER_Prop_fNoLineDrawDash, 0x8000E );
//Use import logic to determine how much of border will go
//outside graphic
nLineWidth = SwMSDffManager::GetEscherLineMatch(
eStyle,eShapeType,nLineWidth);
bFirstLine = false;
}
rPropOpt.AddOpt( aExhperProp[ n ], DrawModelToEmu(
pItem->GetDistance( n ) ));
}
else
rPropOpt.AddOpt( aExhperProp[ n ], DrawModelToEmu(pItem->GetDistance( n )) );
}
}
else
{
rPropOpt.AddOpt( ESCHER_Prop_dyTextTop, 0 );
rPropOpt.AddOpt( ESCHER_Prop_dyTextBottom, 0 );
rPropOpt.AddOpt( ESCHER_Prop_dxTextLeft, 0 );
rPropOpt.AddOpt( ESCHER_Prop_dxTextRight, 0 );
}
if( bFirstLine ) // no valid line found
{
rPropOpt.AddOpt( ESCHER_Prop_fNoLineDrawDash, 0x80000 );
}
const SwAttrSet& rAttrSet = rFormat.GetAttrSet();
if (rAttrSet.GetItemIfSet(RES_BOX, false))
{
if (const SvxShadowItem* pSI =rAttrSet.GetItemIfSet(RES_SHADOW))
{
constexpr sal_uInt32 nShadowType = 131074; // shadow type of ms word. need to set the default value.
Color nColor = pSI->GetColor();
sal_Int32 nOffX
= o3tl::convert(pSI->GetWidth(), o3tl::Length::twip, o3tl::Length::emu);
sal_Int32 nOffY
= o3tl::convert(pSI->GetWidth(), o3tl::Length::twip, o3tl::Length::emu);
SvxShadowLocation eLocation = pSI->GetLocation();
if( (eLocation!=SvxShadowLocation::NONE) && (pSI->GetWidth()!=0) )
{
switch( eLocation )
{
case SvxShadowLocation::TopLeft:
{
nOffX = -nOffX;
nOffY = -nOffY;
}
break;
case SvxShadowLocation::TopRight:
{
nOffY = -nOffY;
}
break;
case SvxShadowLocation::BottomLeft:
{
nOffX = -nOffX;
}
break;
case SvxShadowLocation::BottomRight:
break;
default:
break;
}
rPropOpt.AddOpt( DFF_Prop_shadowColor, wwUtility::RGBToBGR(nColor));
rPropOpt.AddOpt( DFF_Prop_shadowOffsetX, nOffX );
rPropOpt.AddOpt( DFF_Prop_shadowOffsetY, nOffY );
rPropOpt.AddOpt( DFF_Prop_fshadowObscured, nShadowType );
}
}
}
// SwWW8ImplReader::Read_GrafLayer() imports these as opaque
// unconditionally, so if both are true, don't export the property.
const bool bIsInHeader = sw::IsFlyFrameFormatInHeader(rFormat);
const bool bIsThrough = rFormat.GetSurround().GetValue() == css::text::WrapTextMode_THROUGH;
// Anything (like a transparent image) that allows text to wrap through should not force a non-transparent background,
// and neither should the commonly seen backgrounds anchored in headers.
if (bIsInHeader || bIsThrough)
{
std::unique_ptr<SvxBrushItem> aBrush(rFormat.makeBackgroundBrushItem());
WriteBrushAttr(*aBrush, rPropOpt);
}
else
{
// for unknown reasons, force exporting a non-transparent background on fly frames.
std::shared_ptr<SvxBrushItem> aBrush(mrWrt.TrueFrameBgBrush(rFormat));
if(aBrush)
{
WriteBrushAttr(*aBrush, rPropOpt);
}
}
const SdrObject* pObj = rFormat.FindRealSdrObject();
if( pObj && (pObj->GetLayer() == GetHellLayerId() ||
pObj->GetLayer() == GetHeaderFooterHellLayerId() ||
pObj->GetLayer() == GetInvisibleHellId() ) && !(bIsInHeader && bIsThrough))
{
rPropOpt.AddOpt( ESCHER_Prop_fPrint, 0x200020 );
}
PreWriteHyperlinkWithinFly(rFormat,rPropOpt);
return nLineWidth;
}
sal_Int32 SwEscherEx::WriteFlyFrameAttr(const SwFrameFormat& rFormat, MSO_SPT eShapeType,
EscherPropertyContainer& rPropOpt)
{
sal_Int32 nLineWidth = SwBasicEscherEx::WriteFlyFrameAttr(rFormat, eShapeType,
rPropOpt);
/*
These are not in SwBasicEscherEx::WriteFlyFrameAttr because inline objs
can't do it in word and it hacks it in by stretching the graphic that
way, perhaps we should actually draw in this space into the graphic we
are exporting!
*/
if (const SvxLRSpaceItem* pItem = rFormat.GetItemIfSet(RES_LR_SPACE))
{
rPropOpt.AddOpt(ESCHER_Prop_dxWrapDistLeft, DrawModelToEmu(pItem->ResolveLeft({})));
rPropOpt.AddOpt(ESCHER_Prop_dxWrapDistRight, DrawModelToEmu(pItem->ResolveRight({})));
}
else
{
rPropOpt.AddOpt( ESCHER_Prop_dxWrapDistLeft, 0 );
rPropOpt.AddOpt( ESCHER_Prop_dxWrapDistRight, 0 );
}
if (const SvxULSpaceItem* pItem = rFormat.GetItemIfSet(RES_UL_SPACE))
{
rPropOpt.AddOpt( ESCHER_Prop_dyWrapDistTop,
DrawModelToEmu( pItem->GetUpper() ) );
rPropOpt.AddOpt( ESCHER_Prop_dyWrapDistBottom,
DrawModelToEmu( pItem->GetLower() ) );
}
if (rFormat.GetSurround().IsContour())
{
if (const SwNoTextNode *pNd = GetNoTextNodeFromSwFrameFormat(rFormat))
{
const tools::PolyPolygon *pPolyPoly = pNd->HasContour();
if (pPolyPoly && pPolyPoly->Count())
{
tools::Polygon aPoly = CorrectWordWrapPolygonForExport(*pPolyPoly, pNd, /*bCorrectCrop=*/false);
SvMemoryStream aPolyDump;
aPolyDump.SetEndian(SvStreamEndian::LITTLE);
sal_uInt16 nLen = aPoly.GetSize();
aPolyDump.WriteUInt16( nLen );
aPolyDump.WriteUInt16( nLen );
aPolyDump.WriteUInt16( 8 );
for (sal_uInt16 nI = 0; nI < nLen; ++nI)
{
aPolyDump.WriteUInt32( aPoly[nI].X() );
aPolyDump.WriteUInt32( aPoly[nI].Y() );
}
rPropOpt.AddOpt(DFF_Prop_pWrapPolygonVertices, false, 0, aPolyDump);
}
}
}
PreWriteHyperlinkWithinFly(rFormat,rPropOpt);
return nLineWidth;
}
void SwBasicEscherEx::Init()
{
MapUnit eMap = MapUnit::MapTwip;
if (SwDrawModel *pModel = mrWrt.m_rDoc.getIDocumentDrawModelAccess().GetDrawModel())
{
// PPT works only with units of 576DPI
// WW however is using twips, i.e 1440DPI.
eMap = pModel->GetScaleUnit();
}
// MS-DFF-Properties mostly are in EMU (English Metric Units)
Fraction aFact = conversionFract(o3tl::Length::mm100, o3tl::Length::emu);
aFact /= GetMapFactor(MapUnit::Map100thMM, eMap).X();
mnEmuMul = aFact.GetNumerator();
mnEmuDiv = aFact.GetDenominator();
SetHellLayerId(mrWrt.m_rDoc.getIDocumentDrawModelAccess().GetHellId());
SetHeaderFooterHellLayerId(mrWrt.m_rDoc.getIDocumentDrawModelAccess().GetHeaderFooterHellId());
}
sal_Int32 SwBasicEscherEx::ToFract16(sal_Int32 nVal, sal_uInt32 nMax)
{
if (nMax)
{
if (nVal >= 0)
{
sal_Int32 nMSVal = (nVal / 65536) * nMax;
nMSVal += (nVal * 65536) / nMax;
return nMSVal;
} else {
// negative fraction does not have "-0", fractional part is always
// positive: -0.4 represented as -1 + 0.6
sal_Int32 const nDiv = (nVal / sal_Int32(nMax)) - 1;
sal_uInt32 nMSVal = (sal_uInt32(nDiv) << 16) & 0xffff0000;
nMSVal += (nVal * 65536) / sal_Int32(nMax) + (-nDiv * 65536);
return nMSVal;
}
}
return 0;
}
SdrLayerID SwBasicEscherEx::GetInvisibleHellId() const
{
return mrWrt.m_rDoc.getIDocumentDrawModelAccess().GetInvisibleHellId();
}
void SwBasicEscherEx::WritePictures()
{
if( SvStream* pPicStrm = static_cast< SwEscherExGlobal& >( *mxGlobal ).GetPictureStream() )
{
// set the blip - entries to the correct stream pos
sal_uInt64 nEndPos = pPicStrm->Tell();
mxGlobal->WriteBlibStoreEntry(*mpEscherStrm, 1, nEndPos);
pPicStrm->Seek(0);
mpEscherStrm->WriteStream( *pPicStrm );
}
}
SwEscherEx::SwEscherEx(SvStream* pStrm, WW8Export& rWW8Wrt)
: SwBasicEscherEx(pStrm, rWW8Wrt),
m_pTextBxs(nullptr)
{
m_aHostData.SetClientData(&m_aWinwordAnchoring);
OpenContainer( ESCHER_DggContainer );
sal_uInt16 nColorCount = 4;
pStrm ->WriteUInt16( nColorCount << 4 ) // instance
.WriteUInt16( ESCHER_SplitMenuColors ) // record type
.WriteUInt32( nColorCount * 4 ) // size
.WriteUInt32( 0x08000004 )
.WriteUInt32( 0x08000001 )
.WriteUInt32( 0x08000002 )
.WriteUInt32( 0x100000f7 );
CloseContainer(); // ESCHER_DggContainer
sal_uInt8 i = 2; // for header/footer and the other
PlcDrawObj *pSdrObjs = mrWrt.m_pHFSdrObjs.get();
m_pTextBxs = mrWrt.m_pHFTextBxs.get();
// if no header/footer -> skip over
if (!pSdrObjs->size())
{
--i;
pSdrObjs = mrWrt.m_pSdrObjs.get();
m_pTextBxs = mrWrt.m_pTextBxs.get();
}
while (i > 0)
{
--i;
// "dummy char" (or any Count ?) - why? Only Microsoft knows it.
GetStream().WriteChar( i );
OpenContainer( ESCHER_DgContainer );
EnterGroup();
sal_uLong nSecondShapeId = pSdrObjs == mrWrt.m_pSdrObjs.get() ? GenerateShapeId() : 0;
// write now all Writer-/DrawObjects
DrawObjPointerVector aSorted;
MakeZOrderArrAndFollowIds(pSdrObjs->GetObjArr(), aSorted);
sal_uInt32 nShapeId=0;
for (auto& pObj : aSorted)
{
sal_Int32 nBorderThick=0;
OSL_ENSURE(pObj, "impossible");
if (!pObj)
continue;
const ww8::Frame &rFrame = pObj->maContent;
const SwFrameFormat& rFormat = rFrame.GetFrameFormat();
switch (rFrame.GetWriterType())
{
case ww8::Frame::eTextBox:
case ww8::Frame::eOle:
case ww8::Frame::eGraphic:
nBorderThick = WriteFlyFrame(*pObj, nShapeId, aSorted);
break;
case ww8::Frame::eFormControl:
nShapeId = GenerateShapeId();
WriteOCXControl(rFormat, nShapeId);
break;
case ww8::Frame::eDrawing:
{
m_aWinwordAnchoring.SetAnchoring(rFormat);
const SdrObject* pSdrObj = rFormat.FindRealSdrObject();
if (pSdrObj)
{
nShapeId = AddSdrObject(*pSdrObj);
}
#if OSL_DEBUG_LEVEL > 0
else
OSL_ENSURE( false, "Where is the SDR-Object?" );
#endif
}
break;
default:
break;
}
if( !nShapeId )
{
nShapeId = AddDummyShape();
}
pObj->SetShapeDetails(nShapeId, nBorderThick);
}
EndSdrObjectPage(); // ???? Bugfix for 74724
if( nSecondShapeId )
{
OpenContainer( ESCHER_SpContainer );
const SwFrameFormat &rDefaultPageStyle = mrWrt.m_rDoc.GetPageDesc(0).GetMaster();
const SvxBrushItem* pBrush = rDefaultPageStyle.GetItemIfSet(RES_BACKGROUND);
ShapeFlag nFlags = ShapeFlag::HaveAnchor | ShapeFlag::HaveShapeProperty;
if (pBrush) // document has background
nFlags |= ShapeFlag::Background;
AddShape(ESCHER_ShpInst_Rectangle, nFlags, nSecondShapeId);
EscherPropertyContainer aPropOpt;
if (pBrush)
{
WriteBrushAttr(*pBrush, aPropOpt);
SvxGraphicPosition ePos = pBrush->GetGraphicPos();
if( ePos != GPOS_NONE && ePos != GPOS_AREA )
{
/* #i56806# 0x033F parameter specifies a 32-bit field of shape boolean properties.
0x10001 means fBackground and fUsefBackground flag are true thus background
picture will be shown as "tiled" fill.*/
aPropOpt.AddOpt( ESCHER_Prop_fBackground, 0x10001 );
}
}
aPropOpt.AddOpt( ESCHER_Prop_lineColor, 0x8000001 );
aPropOpt.AddOpt( ESCHER_Prop_fNoLineDrawDash, 0x00080008 );
aPropOpt.AddOpt( ESCHER_Prop_shadowColor, 0x8000002 );
aPropOpt.AddOpt( ESCHER_Prop_lineWidth, 0 );
aPropOpt.Commit( *pStrm );
AddAtom( 4, ESCHER_ClientData );
GetStream().WriteInt32( 1 );
CloseContainer(); // ESCHER_SpContainer
}
CloseContainer(); // ESCHER_DgContainer
pSdrObjs = mrWrt.m_pSdrObjs.get();
m_pTextBxs = mrWrt.m_pTextBxs.get();
}
}
SwEscherEx::~SwEscherEx()
{
}
void SwEscherEx::FinishEscher()
{
mpEscherStrm->Seek(0);
mrWrt.m_pTableStrm->WriteStream( *mpEscherStrm );
delete mpEscherStrm;
mpEscherStrm = nullptr;
}
namespace
{
template<typename OrientType>
void lcl_SetRelationOrient(OrientType& rOrient, const sw::WW8AnchorConv eConv, const std::function<void()>& fDefault)
{
switch(eConv)
{
case sw::WW8AnchorConv::RELTOTABLECELL:
// #i33818#
rOrient.SetRelationOrient(text::RelOrientation::PAGE_PRINT_AREA);
break;
case sw::WW8AnchorConv::CONV2PG:
rOrient.SetRelationOrient(text::RelOrientation::PAGE_FRAME);
break;
case sw::WW8AnchorConv::CONV2COL_OR_PARA:
rOrient.SetRelationOrient(text::RelOrientation::FRAME);
break;
case sw::WW8AnchorConv::CONV2CHAR:
rOrient.SetRelationOrient(text::RelOrientation::CHAR);
break;
case sw::WW8AnchorConv::CONV2LINE:
rOrient.SetRelationOrient(text::RelOrientation::TEXT_LINE);
break;
default:
fDefault();
}
}
}
/** method to perform conversion of positioning attributes with the help
of corresponding layout information
#i30669#
Because most of the Writer object positions doesn't correspond to the
object positions in WW8, this method converts the positioning
attributes. For this conversion the corresponding layout information
is needed. If no layout information exists - e.g. no layout exists - no
conversion is performed.
No conversion is performed for as-character anchored objects. Whose
object positions are already treated special in method <WriteData(..)>.
@param _iorHoriOri
input/output parameter - containing the current horizontal position
attributes, which are converted by this method.
@param _iorVertOri
input/output parameter - containing the current vertical position
attributes, which are converted by this method.
@param _rFrameFormat
input parameter - frame format of the anchored object
@return boolean, indicating, if a conversion has been performed.
*/
bool WinwordAnchoring::ConvertPosition( SwFormatHoriOrient& _iorHoriOri,
SwFormatVertOrient& _iorVertOri,
const SwFrameFormat& _rFrameFormat )
{
const RndStdIds eAnchor = _rFrameFormat.GetAnchor().GetAnchorId();
if ( (RndStdIds::FLY_AS_CHAR == eAnchor) || (RndStdIds::FLY_AT_FLY == eAnchor) )
{
// no conversion for as-character or at frame anchored objects
return false;
}
// check, if horizontal and vertical position have to be converted due to
// the fact, that the object is anchored at a paragraph, which has a "column
// break before" attribute
bool bConvDueToAnchoredAtColBreakPara( false );
if ( ( (eAnchor == RndStdIds::FLY_AT_PARA) || (eAnchor == RndStdIds::FLY_AT_CHAR) ) &&
_rFrameFormat.GetAnchor().GetAnchorNode() &&
_rFrameFormat.GetAnchor().GetAnchorNode()->IsTextNode() )
{
SwTextNode& rAnchorTextNode =
dynamic_cast<SwTextNode&>(*_rFrameFormat.GetAnchor().GetAnchorNode());
const SvxFormatBreakItem& rBreak = rAnchorTextNode.GetAttr(RES_BREAK);
if (rBreak.GetBreak() == SvxBreak::ColumnBefore)
{
bConvDueToAnchoredAtColBreakPara = true;
}
}
sw::WW8AnchorConv eHoriConv(sw::WW8AnchorConv::NO_CONV);
sw::WW8AnchorConv eVertConv(sw::WW8AnchorConv::NO_CONV);
// convert horizontal position, if needed
{
// determine, if conversion has to be performed due to the position orientation
bool bConvDueToOrientation( false );
{
const sal_Int16 eHOri = _iorHoriOri.GetHoriOrient();
bConvDueToOrientation = eHOri == text::HoriOrientation::LEFT || eHOri == text::HoriOrientation::RIGHT ||
eHOri == text::HoriOrientation::INSIDE || eHOri == text::HoriOrientation::OUTSIDE ||
( eHOri != text::HoriOrientation::CENTER && _iorHoriOri.IsPosToggle() );
}
// determine conversion type due to the position relation
if ( bConvDueToAnchoredAtColBreakPara )
{
eHoriConv = sw::WW8AnchorConv::CONV2PG;
}
else if ( _iorHoriOri.IsPosToggle()
&& _iorHoriOri.GetHoriOrient() == text::HoriOrientation::RIGHT )
{
eHoriConv = sw::WW8AnchorConv::NO_CONV;
_iorHoriOri.SetHoriOrient( text::HoriOrientation::OUTSIDE );
}
else
{
switch ( _iorHoriOri.GetRelationOrient() )
{
case text::RelOrientation::PAGE_FRAME:
case text::RelOrientation::PAGE_PRINT_AREA:
break;
case text::RelOrientation::PAGE_LEFT:
case text::RelOrientation::PAGE_RIGHT:
{
// relation not supported by WW8. Thus, conversion always needed.
eHoriConv = sw::WW8AnchorConv::CONV2PG;
}
break;
case text::RelOrientation::FRAME:
{
if ( bConvDueToOrientation )
eHoriConv = sw::WW8AnchorConv::CONV2COL_OR_PARA;
}
break;
case text::RelOrientation::PRINT_AREA:
case text::RelOrientation::FRAME_LEFT:
case text::RelOrientation::FRAME_RIGHT:
{
// relation not supported by WW8. Thus, conversion always needed.
eHoriConv = sw::WW8AnchorConv::CONV2COL_OR_PARA;
}
break;
case text::RelOrientation::CHAR:
{
if ( bConvDueToOrientation )
eHoriConv = sw::WW8AnchorConv::CONV2CHAR;
}
break;
default:
OSL_FAIL( "<WinwordAnchoring::ConvertPosition(..)> - unknown horizontal relation" );
}
}
}
// convert vertical position, if needed
{
// determine, if conversion has to be performed due to the position orientation
bool bConvDueToOrientation( false );
{
const sal_Int16 eVOri = _iorVertOri.GetVertOrient();
bConvDueToOrientation = ( eVOri == text::VertOrientation::TOP ||
eVOri == text::VertOrientation::BOTTOM ||
eVOri == text::VertOrientation::CHAR_TOP ||
eVOri == text::VertOrientation::CHAR_BOTTOM ||
eVOri == text::VertOrientation::CHAR_CENTER ||
eVOri == text::VertOrientation::LINE_TOP ||
eVOri == text::VertOrientation::LINE_BOTTOM ||
eVOri == text::VertOrientation::LINE_CENTER );
}
// determine conversion type due to the position relation
if ( bConvDueToAnchoredAtColBreakPara )
{
eVertConv = sw::WW8AnchorConv::CONV2PG;
}
else
{
switch ( _iorVertOri.GetRelationOrient() )
{
case text::RelOrientation::PAGE_FRAME:
case text::RelOrientation::PAGE_PRINT_AREA:
break;
case text::RelOrientation::FRAME:
{
if ( bConvDueToOrientation ||
_iorVertOri.GetVertOrient() == text::VertOrientation::CENTER )
{
eVertConv = sw::WW8AnchorConv::CONV2COL_OR_PARA;
}
}
break;
case text::RelOrientation::PRINT_AREA:
{
// relation not supported by WW8. Thus, conversion always needed.
eVertConv = sw::WW8AnchorConv::CONV2COL_OR_PARA;
}
break;
case text::RelOrientation::CHAR:
{
// relation not supported by WW8. Thus, conversion always needed.
eVertConv = sw::WW8AnchorConv::CONV2COL_OR_PARA;
}
break;
case text::RelOrientation::TEXT_LINE:
{
if ( bConvDueToOrientation ||
_iorVertOri.GetVertOrient() == text::VertOrientation::NONE )
{
eVertConv = sw::WW8AnchorConv::CONV2LINE;
}
}
break;
case text::RelOrientation::PAGE_LEFT:
case text::RelOrientation::PAGE_RIGHT:
case text::RelOrientation::FRAME_LEFT:
case text::RelOrientation::FRAME_RIGHT:
default:
OSL_FAIL( "<WinwordAnchoring::ConvertPosition(..)> - unknown vertical relation" );
}
}
}
if (eVertConv != sw::WW8AnchorConv::NO_CONV || eHoriConv != sw::WW8AnchorConv::NO_CONV)
{
sw::WW8AnchorConvResult aResult(eHoriConv, eVertConv);
_rFrameFormat.CallSwClientNotify(sw::WW8AnchorConvHint(aResult));
if(!aResult.m_bConverted)
return false;
if (eHoriConv != sw::WW8AnchorConv::NO_CONV)
{
lcl_SetRelationOrient(_iorHoriOri, eHoriConv, [&_iorHoriOri]() {_iorHoriOri.SetHoriOrient(text::HoriOrientation::NONE);} );
_iorHoriOri.SetPos(aResult.m_aPos.X());
}
if (eVertConv != sw::WW8AnchorConv::NO_CONV)
{
lcl_SetRelationOrient(_iorVertOri, eVertConv, [&_iorVertOri]() {_iorVertOri.SetVertOrient(text::VertOrientation::NONE);} );
_iorVertOri.SetPos(aResult.m_aPos.Y());
}
return true;
}
return false;
}
void WinwordAnchoring::SetAnchoring(const SwFrameFormat& rFormat)
{
const RndStdIds eAnchor = rFormat.GetAnchor().GetAnchorId();
mbInline = (eAnchor == RndStdIds::FLY_AS_CHAR);
SwFormatHoriOrient rHoriOri = rFormat.GetHoriOrient();
SwFormatVertOrient rVertOri = rFormat.GetVertOrient();
// #i30669# - convert the positioning attributes.
// Most positions are converted, if layout information exists.
const bool bPosConverted = ConvertPosition( rHoriOri, rVertOri, rFormat );
const sal_Int16 eHOri = rHoriOri.GetHoriOrient();
const sal_Int16 eVOri = rVertOri.GetVertOrient(); // #i22673#
const sal_Int16 eHRel = rHoriOri.GetRelationOrient();
const sal_Int16 eVRel = rVertOri.GetRelationOrient();
// horizontal Adjustment
switch (eHOri)
{
default:
case text::HoriOrientation::NONE:
mnXAlign = 0;
break;
case text::HoriOrientation::LEFT:
mnXAlign = 1;
break;
case text::HoriOrientation::CENTER:
mnXAlign = 2;
break;
case text::HoriOrientation::RIGHT:
mnXAlign = 3;
break;
case text::HoriOrientation::INSIDE:
mnXAlign = 4;
break;
case text::HoriOrientation::OUTSIDE:
mnXAlign = 5;
break;
}
// vertical Adjustment
// #i22673#
// When adjustment is vertically relative to line or to char
// bottom becomes top and vice versa
const bool bVertSwap = !bPosConverted &&
( (eVRel == text::RelOrientation::CHAR) ||
(eVRel == text::RelOrientation::TEXT_LINE) );
switch (eVOri)
{
default:
case text::VertOrientation::NONE:
mnYAlign = 0;
break;
case text::VertOrientation::TOP:
case text::VertOrientation::LINE_TOP:
case text::VertOrientation::CHAR_TOP:
mnYAlign = bVertSwap ? 3 : 1;
break;
case text::VertOrientation::CENTER:
case text::VertOrientation::LINE_CENTER:
mnYAlign = 2;
break;
case text::VertOrientation::BOTTOM:
case text::VertOrientation::LINE_BOTTOM:
case text::VertOrientation::CHAR_BOTTOM:
mnYAlign = bVertSwap ? 1 : 3;
break;
}
// Adjustment is horizontally relative to...
switch (eHRel)
{
case text::RelOrientation::PAGE_PRINT_AREA:
mnXRelTo = 0;
break;
case text::RelOrientation::PAGE_FRAME:
case text::RelOrientation::PAGE_LEFT: //:-(
case text::RelOrientation::PAGE_RIGHT: //:-(
mnXRelTo = 1;
break;
case text::RelOrientation::FRAME:
case text::RelOrientation::FRAME_LEFT: //:-(
case text::RelOrientation::FRAME_RIGHT: //:-(
if (eAnchor == RndStdIds::FLY_AT_PAGE)
mnXRelTo = 1;
else
mnXRelTo = 2;
break;
case text::RelOrientation::PRINT_AREA:
if (eAnchor == RndStdIds::FLY_AT_PAGE)
mnXRelTo = 0;
else
mnXRelTo = 2;
break;
case text::RelOrientation::CHAR:
mnXRelTo = 3;
break;
case text::RelOrientation::TEXT_LINE:
break;
}
// Adjustment is vertically relative to...
switch (eVRel)
{
case text::RelOrientation::PAGE_PRINT_AREA:
mnYRelTo = 0;
break;
case text::RelOrientation::PAGE_FRAME:
mnYRelTo = 1;
break;
case text::RelOrientation::PRINT_AREA:
if (eAnchor == RndStdIds::FLY_AT_PAGE)
mnYRelTo = 0;
else
mnYRelTo = 2;
break;
case text::RelOrientation::FRAME:
if (eAnchor == RndStdIds::FLY_AT_PAGE)
mnYRelTo = 1;
else
mnYRelTo = 2;
break;
case text::RelOrientation::CHAR:
case text::RelOrientation::TEXT_LINE: // #i22673# - vertical alignment at top of line
case text::RelOrientation::PAGE_LEFT: //nonsense
case text::RelOrientation::PAGE_RIGHT: //nonsense
case text::RelOrientation::FRAME_LEFT: //nonsense
case text::RelOrientation::FRAME_RIGHT: //nonsense
mnYRelTo = 3;
break;
}
mnGroupShapeBooleanProperties = 0;
// LayoutInCell is hugely problematic if the value is false,
// so much so that Microsoft, since DOCX compat15, ignores it and always does a layoutInCell.
// LO (currently) does the obvious thing of always orienting a fly from the cell paragraph,
// while MSO orients a non-layoutInCell-fly from the paragraph that contains the entire table.
// Thus, during ODF->MSO, ONLY a non-paragraph-oriented-fly can be marked as layoutInCell=false.
// FOR DOCX and DOC, the absence of the fLayoutInCell property means true - layout in cell,
// so do nothing unless "Follow text flow" is disabled (which is the default in native LO).
bool bLayoutInCell = rFormat.GetFollowTextFlow().GetValue();
// Microsoft will treat any orientation to CHAR or TEXT_LINE as if it had to layoutInCell
if (!bLayoutInCell)
bLayoutInCell = mnYRelTo == 3 || mnXRelTo == 3;
// If this is already MSO format, then we need to round-trip a false FollowingTextFlow value
const bool bIsMSOLayout = rFormat.getIDocumentSettingAccess().get(
DocumentSettingId::CONSIDER_WRAP_ON_OBJECT_POSITION);
// For native LO: if !FollowingTextFlow and the fly is oriented to the pageMargin(0) or page(1),
// we must write layoutInCell(false), but paragraph-oriented flies match layoutInCell placement.
if (!bLayoutInCell && (bIsMSOLayout || mnYRelTo != 2 || mnXRelTo != 2))
{
// indicate layoutInCell = false
// bit32: fUseLayoutInCell, bit16: fLayoutInCell
mnGroupShapeBooleanProperties |= 0x80000000;
}
}
void SwEscherEx::WriteFrameExtraData( const SwFrameFormat& rFormat )
{
m_aWinwordAnchoring.SetAnchoring(rFormat);
m_aWinwordAnchoring.WriteData(*this);
AddAtom(4, ESCHER_ClientAnchor);
GetStream().WriteInt32( 0 );
AddAtom(4, ESCHER_ClientData);
GetStream().WriteInt32( 1 );
}
sal_Int32 SwEscherEx::WriteFlyFrame(const DrawObj &rObj, sal_uInt32 &rShapeId,
DrawObjPointerVector &rPVec)
{
const SwFrameFormat &rFormat = rObj.maContent.GetFrameFormat();
// check for textflyframe and if it is the first in a Chain
sal_Int32 nBorderThick = 0;
const SwNodeIndex* pNdIdx = rFormat.GetContent().GetContentIdx();
if( pNdIdx )
{
SwNodeIndex aIdx( *pNdIdx, 1 );
switch( aIdx.GetNode().GetNodeType() )
{
case SwNodeType::Grf:
rShapeId = GenerateShapeId();
nBorderThick = WriteGrfFlyFrame( rFormat, rShapeId );
break;
case SwNodeType::Ole:
rShapeId = GenerateShapeId();
nBorderThick = WriteOLEFlyFrame( rFormat, rShapeId );
break;
default:
if (const SdrObject* pObj = rFormat.FindRealSdrObject())
{
// check for the first in a Chain
sal_uInt32 nTextId;
sal_uInt16 nOff = 0;
const SwFrameFormat* pFormat = &rFormat, *pPrev;
while( nullptr != ( pPrev = pFormat->GetChain().GetPrev() ))
{
++nOff;
pFormat = pPrev;
}
rShapeId = GetFlyShapeId(rFormat, rObj.mnHdFtIndex, rPVec);
if( !nOff )
{
nTextId = m_pTextBxs->GetPos( pObj );
if( USHRT_MAX == nTextId )
{
m_pTextBxs->Append( *pObj, rShapeId );
nTextId = m_pTextBxs->Count();
}
else
++nTextId;
}
else
{
const SdrObject* pPrevObj = pFormat->FindRealSdrObject();
nTextId = m_pTextBxs->GetPos( pPrevObj );
if( USHRT_MAX == nTextId )
{
sal_uInt32 nPrevShapeId =
GetFlyShapeId(*pFormat, rObj.mnHdFtIndex, rPVec);
m_pTextBxs->Append( *pPrevObj, nPrevShapeId );
nTextId = m_pTextBxs->Count();
}
else
++nTextId;
}
nTextId *= 0x10000;
nTextId += nOff;
nBorderThick = WriteTextFlyFrame(rObj, rShapeId, nTextId, rPVec);
}
//In browse mode the sdr object doesn't always exist. For example, the
//object is in the hidden header/footer. We save the fmt directly
//in such cases; we copy most of the logic from the block above
const bool bBrowseMode = rFormat.getIDocumentSettingAccess().get(DocumentSettingId::BROWSE_MODE);
if( bBrowseMode)
{
if( !rFormat.GetChain().GetPrev() )//obj in header/footer?
{
rShapeId = GetFlyShapeId(rFormat, rObj.mnHdFtIndex, rPVec);
m_pTextBxs->Append( &rFormat, rShapeId );
sal_uInt32 nTextId = m_pTextBxs->Count();
nTextId *= 0x10000;
nBorderThick = WriteTextFlyFrame(rObj, rShapeId, nTextId, rPVec);
}
}
}
}
return nBorderThick;
}
static sal_uInt16 FindPos(const SwFrameFormat &rFormat, unsigned int nHdFtIndex,
DrawObjPointerVector &rPVec)
{
auto aIter = std::find_if(rPVec.begin(), rPVec.end(),
[&rFormat, nHdFtIndex](const DrawObj* pObj) {
OSL_ENSURE(pObj, "Impossible");
return pObj &&
nHdFtIndex == pObj->mnHdFtIndex &&
&rFormat == (&pObj->maContent.GetFrameFormat());
});
if (aIter != rPVec.end())
return static_cast< sal_uInt16 >(aIter - rPVec.begin());
return USHRT_MAX;
}
sal_Int32 SwEscherEx::WriteTextFlyFrame(const DrawObj &rObj, sal_uInt32 nShapeId,
sal_uInt32 nTextBox, DrawObjPointerVector &rPVec)
{
const SwFrameFormat &rFormat = rObj.maContent.GetFrameFormat();
SvxFrameDirection nDirection = rObj.mnDirection;
sal_Int32 nBorderThick=0;
OpenContainer( ESCHER_SpContainer );
AddShape( ESCHER_ShpInst_TextBox, ShapeFlag::HaveAnchor | ShapeFlag::HaveShapeProperty, nShapeId );
EscherPropertyContainer aPropOpt;
aPropOpt.AddOpt(ESCHER_Prop_lTxid, nTextBox);
if (const SwFrameFormat *pNext = rFormat.GetChain().GetNext())
{
sal_uInt16 nPos = FindPos(*pNext, rObj.mnHdFtIndex, rPVec);
if (USHRT_MAX != nPos && m_aFollowShpIds[nPos])
aPropOpt.AddOpt(ESCHER_Prop_hspNext, m_aFollowShpIds[nPos]);
}
nBorderThick = WriteFlyFrameAttr( rFormat, mso_sptTextBox, aPropOpt );
MSO_TextFlow nFlow;
switch (nDirection)
{
default:
OSL_ENSURE(false, "unknown direction type");
[[fallthrough]];
case SvxFrameDirection::Horizontal_LR_TB:
nFlow=mso_txflHorzN;
break;
case SvxFrameDirection::Horizontal_RL_TB:
nFlow=mso_txflHorzN;
break;
case SvxFrameDirection::Vertical_LR_TB: //not really possible in word
case SvxFrameDirection::Vertical_RL_TB:
nFlow=mso_txflTtoBA;
break;
case SvxFrameDirection::Vertical_LR_BT:
nFlow = mso_txflBtoT;
break;
}
aPropOpt.AddOpt( ESCHER_Prop_txflTextFlow, nFlow );
aPropOpt.Commit( GetStream() );
// store anchor attribute
WriteFrameExtraData( rFormat );
AddAtom( 4, ESCHER_ClientTextbox ); GetStream().WriteUInt32( nTextBox );
CloseContainer(); // ESCHER_SpContainer
return nBorderThick;
}
void SwBasicEscherEx::WriteOLEPicture(EscherPropertyContainer &rPropOpt,
ShapeFlag nShapeFlags, const Graphic &rGraphic, const SdrObject &rObj,
sal_uInt32 nShapeId, const awt::Rectangle* pVisArea )
{
//nShapeFlags == 0xA00 + flips and ole active
AddShape(ESCHER_ShpInst_PictureFrame, nShapeFlags, nShapeId);
GraphicObject aGraphicObject(rGraphic);
OString aId = aGraphicObject.GetUniqueID();
if (!aId.isEmpty())
{
// SJ: the third parameter (pVisArea) should be set...
sal_uInt32 nBlibId = mxGlobal->GetBlibID( *QueryPictureStream(), aGraphicObject, pVisArea);
if (nBlibId)
rPropOpt.AddOpt(ESCHER_Prop_pib, nBlibId, true);
}
SetPicId(rObj, nShapeId, rPropOpt);
rPropOpt.AddOpt( ESCHER_Prop_pictureActive, 0x10000 );
}
void SwEscherEx::WriteOCXControl( const SwFrameFormat& rFormat, sal_uInt32 nShapeId )
{
const SdrObject* pSdrObj = rFormat.FindRealSdrObject();
if (!pSdrObj)
return;
OpenContainer( ESCHER_SpContainer );
SwDrawModel *pModel = mrWrt.m_rDoc.getIDocumentDrawModelAccess().GetDrawModel();
OutputDevice *pDevice = Application::GetDefaultDevice();
OSL_ENSURE(pModel && pDevice, "no model or device");
// #i71538# use complete SdrViews
// SdrExchangeView aExchange(pModel, pDevice);
SdrView aExchange(*pModel, pDevice);
const Graphic aGraphic(SdrExchangeView::GetObjGraphic(*pSdrObj));
EscherPropertyContainer aPropOpt;
WriteOLEPicture(aPropOpt,
ShapeFlag::HaveAnchor | ShapeFlag::HaveShapeProperty | ShapeFlag::OLEShape, aGraphic,
*pSdrObj, nShapeId, nullptr );
WriteFlyFrameAttr( rFormat, mso_sptPictureFrame , aPropOpt );
aPropOpt.Commit( GetStream() );
// store anchor attribute
WriteFrameExtraData( rFormat );
CloseContainer(); // ESCHER_SpContainer
}
void SwEscherEx::MakeZOrderArrAndFollowIds(
std::vector<DrawObj>& rSrcArr, DrawObjPointerVector&rDstArr)
{
::lcl_makeZOrderArray(mrWrt, rSrcArr, rDstArr);
//Now set up the follow IDs
m_aFollowShpIds.clear();
for (DrawObj* p : rDstArr)
{
const SwFrameFormat &rFormat = p->maContent.GetFrameFormat();
bool bNeedsShapeId = false;
if (RES_FLYFRMFMT == rFormat.Which())
{
const SwFormatChain &rChain = rFormat.GetChain();
if (rChain.GetPrev() || rChain.GetNext())
bNeedsShapeId = true;
}
sal_uLong nShapeId = bNeedsShapeId ? GenerateShapeId() : 0;
m_aFollowShpIds.push_back(nShapeId);
}
}
sal_uInt32 SwEscherEx::GetFlyShapeId(const SwFrameFormat& rFormat,
unsigned int nHdFtIndex, DrawObjPointerVector &rpVec)
{
sal_uInt16 nPos = FindPos(rFormat, nHdFtIndex, rpVec);
sal_uInt32 nShapeId;
if (USHRT_MAX != nPos)
{
nShapeId = m_aFollowShpIds[nPos];
if (0 == nShapeId)
{
nShapeId = GenerateShapeId();
m_aFollowShpIds[ nPos ] = nShapeId;
}
}
else
nShapeId = GenerateShapeId();
return nShapeId;
}
sal_uInt32 SwEscherEx::QueryTextID(
const uno::Reference< drawing::XShape>& xXShapeRef, sal_uInt32 nShapeId )
{
sal_uInt32 nId = 0;
if (SdrObject* pObj = SdrObject::getSdrObjectFromXShape(xXShapeRef))
{
m_pTextBxs->Append( *pObj, nShapeId );
nId = m_pTextBxs->Count();
nId *= 0x10000;
}
return nId;
}
SwMSConvertControls::SwMSConvertControls( SfxObjectShell const *pDSh, SwPaM *pP ) : oox
::ole::MSConvertOCXControls( pDSh ? pDSh->GetModel() : nullptr ), m_pPaM( pP ), mnObjectId(0)
{
}
// in transitioning away old filter for ole/ocx controls, ReadOCXStream has been made pure virtual in
// filter/source/msocximex.cxx, so... we need an implementation here
bool SwMSConvertControls::ReadOCXStream( rtl::Reference<SotStorage> const & rSrc1,
css::uno::Reference< css::drawing::XShape > *pShapeRef,
bool bFloatingCtrl )
{
uno::Reference< form::XFormComponent > xFComp;
bool bRes = oox::ole::MSConvertOCXControls::ReadOCXStorage( rSrc1, xFComp );
if ( bRes && xFComp.is() )
{
css::awt::Size aSz; // not used in import
bRes = InsertControl( xFComp, aSz,pShapeRef,bFloatingCtrl);
}
return bRes;
}
void SwMSConvertControls::ExportControl(WW8Export &rWW8Wrt, const SdrUnoObj& rFormObj)
{
const uno::Reference< awt::XControlModel >& xControlModel =
rFormObj.GetUnoControlModel();
//Why oh lord do we use so many different units ?
//I think I painted myself into a little bit of a
//corner by trying to use the uno interface for
//controls export
tools::Rectangle aRect = rFormObj.GetLogicRect();
aRect.SetPos(Point(0,0));
awt::Size aSize;
aSize.Width = convertTwipToMm100(aRect.Right());
aSize.Height = convertTwipToMm100(aRect.Bottom());
//Open the ObjectPool
rtl::Reference<SotStorage> xObjPool = rWW8Wrt.GetWriter().GetStorage().OpenSotStorage(SL::aObjectPool);
//Create a destination storage for the microsoft control
sal_uInt32 nObjId = ++mnObjectId;
OUString sStorageName = "_" + OUString::number( static_cast<sal_Int64>( nObjId ));
rtl::Reference<SotStorage> xOleStg = xObjPool->OpenSotStorage(sStorageName);
if (!xOleStg.is())
return;
OUString sUName;
if (!WriteOCXStream( mxModel, xOleStg,xControlModel,aSize,sUName))
return;
sal_uInt8 aSpecOLE[] =
{
0x03, 0x6a, 0xFF, 0xFF, 0xFF, 0xFF, // sprmCPicLocation
0x0a, 0x08, 1, // sprmCFOLE2
0x55, 0x08, 1, // sprmCFSpec
0x56, 0x08, 1 // sprmCFObj
};
//Set the obj id into the sprmCPicLocation
sal_uInt8 *pData = aSpecOLE+2;
Set_UInt32(pData,nObjId );
OUString sField = FieldString(ww::eCONTROL) + "Forms." + sUName + ".1 \\s ";
rWW8Wrt.OutputField(nullptr, ww::eCONTROL, sField,
FieldFlags::Start|FieldFlags::CmdStart|FieldFlags::CmdEnd);
rWW8Wrt.m_pChpPlc->AppendFkpEntry(rWW8Wrt.Strm().Tell(),sizeof(aSpecOLE),
aSpecOLE);
rWW8Wrt.WriteChar( 0x1 );
rWW8Wrt.OutputField(nullptr, ww::eCONTROL, OUString(), FieldFlags::End | FieldFlags::Close);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|