1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
/*
* This file contains methods for the WW8 output
* (nodes, attributes, formats und chars).
*/
#include <hintids.hxx>
#include <vcl/svapp.hxx>
#include <vcl/salbtype.hxx>
#include <svl/zformat.hxx>
#include <svl/itemiter.hxx>
#include <svl/whiter.hxx>
#include <editeng/fontitem.hxx>
#include <editeng/tstpitem.hxx>
#include <editeng/adjitem.hxx>
#include <editeng/spltitem.hxx>
#include <editeng/widwitem.hxx>
#include <editeng/lspcitem.hxx>
#include <editeng/keepitem.hxx>
#include <editeng/shaditem.hxx>
#include <editeng/brshitem.hxx>
#include <editeng/postitem.hxx>
#include <editeng/wghtitem.hxx>
#include <editeng/kernitem.hxx>
#include <editeng/crsditem.hxx>
#include <editeng/cmapitem.hxx>
#include <editeng/wrlmitem.hxx>
#include <editeng/udlnitem.hxx>
#include <editeng/langitem.hxx>
#include <editeng/escpitem.hxx>
#include <editeng/fhgtitem.hxx>
#include <editeng/colritem.hxx>
#include <editeng/hyznitem.hxx>
#include <editeng/brkitem.hxx>
#include <editeng/lrspitem.hxx>
#include <editeng/ulspitem.hxx>
#include <editeng/boxitem.hxx>
#include <editeng/cntritem.hxx>
#include <editeng/shdditem.hxx>
#include <editeng/akrnitem.hxx>
#include <editeng/pbinitem.hxx>
#include <editeng/emphitem.hxx>
#include <editeng/twolinesitem.hxx>
#include <editeng/charscaleitem.hxx>
#include <editeng/charrotateitem.hxx>
#include <editeng/charreliefitem.hxx>
#include <editeng/paravertalignitem.hxx>
#include <editeng/pgrditem.hxx>
#include <editeng/frmdiritem.hxx>
#include <editeng/blnkitem.hxx>
#include <editeng/charhiddenitem.hxx>
#include <editeng/paperinf.hxx>
#include <fmtfld.hxx>
#include <fchrfmt.hxx>
#include <fmtfsize.hxx>
#include <fmtpdsc.hxx>
#include <fmtornt.hxx>
#include <fmtanchr.hxx>
#include <fmtclds.hxx>
#include <fmtsrnd.hxx>
#include <fmtftn.hxx>
#include <fmtflcnt.hxx>
#include <frmatr.hxx>
#include <swtable.hxx>
#include <fmtinfmt.hxx>
#include <txtfld.hxx>
#include <txtftn.hxx>
#include <poolfmt.hxx>
#include <doc.hxx> // Doc for footnotes
#include <pam.hxx>
#include <paratr.hxx>
#include <fldbas.hxx> // for SwField
#include <docufld.hxx> // for SwField
#include <expfld.hxx>
#include <pagedesc.hxx> // for SwPageDesc
#include <flddat.hxx> // for Date fields
#include <ndtxt.hxx> // for Numrules
#include <swrect.hxx>
#include <reffld.hxx>
#include <ftninfo.hxx>
#include <charfmt.hxx>
#include <section.hxx>
#include <lineinfo.hxx>
#include <fmtline.hxx>
#include <tox.hxx>
#include <fmtftntx.hxx>
#include <breakit.hxx>
#include <com/sun/star/i18n/ScriptType.hdl>
#include <unotools/localedatawrapper.hxx>
#include <tgrditem.hxx>
#include <flddropdown.hxx>
#include <chpfld.hxx>
#include <fmthdft.hxx>
#include <writerfilter/doctok/sprmids.hxx>
#include <fmtcntnt.hxx>
#include "writerhelper.hxx"
#include "writerwordglue.hxx"
#include "wrtww8.hxx"
#include "ww8par.hxx"
#include "ww8attributeoutput.hxx"
#include "fields.hxx"
#include <vcl/outdev.hxx>
#include <i18npool/mslangid.hxx>
using ::editeng::SvxBorderLine;
using namespace ::com::sun::star;
using namespace nsFieldFlags;
using namespace nsSwDocInfoSubType;
/*
* um nicht immer wieder nach einem Update festzustellen, das irgendwelche
* Hint-Ids dazugekommen sind, wird hier definiert, die Groesse der Tabelle
* definiert und mit der akt. verglichen. Bei unterschieden wird der
* Compiler schon meckern.
*
* diese Section und die dazugeherigen Tabellen muessen in folgenden Files
* gepflegt werden: rtf\rtfatr.cxx, sw6\sw6atr.cxx, w4w\w4watr.cxx
*/
#if !defined(MSC) && !defined(UNX) && !defined(PPC) && !defined(__MINGW32__)
#define ATTRFNTAB_SIZE 130
#if ATTRFNTAB_SIZE != POOLATTR_END - POOLATTR_BEGIN
# error "Attribut-Tabelle ist ungueltigt. Wurden neue Hint-ID's zugefuegt ??"
#endif
#define NODETAB_SIZE 3
#if NODETAB_SIZE != RES_NODE_END - RES_NODE_BEGIN
# error "Node-Tabelle ist ungueltigt. Wurden neue Hint-ID's zugefuegt ??"
#endif
#endif
using namespace sw::util;
using namespace sw::types;
bool WW8Export::CollapseScriptsforWordOk( sal_uInt16 nScript, sal_uInt16 nWhich )
{
bool bRet = true;
if ( nScript == i18n::ScriptType::ASIAN )
{
//for asian in ww8, there is only one fontsize
//and one fontstyle (posture/weight) for ww6
//there is the additional problem that there
//is only one font setting for all three scripts
switch ( nWhich )
{
case RES_CHRATR_FONTSIZE:
case RES_CHRATR_POSTURE:
case RES_CHRATR_WEIGHT:
bRet = false;
break;
case RES_CHRATR_LANGUAGE:
case RES_CHRATR_CTL_FONT:
case RES_CHRATR_CTL_FONTSIZE:
case RES_CHRATR_CTL_LANGUAGE:
case RES_CHRATR_CTL_POSTURE:
case RES_CHRATR_CTL_WEIGHT:
if (bWrtWW8 == 0)
bRet = false;
default:
break;
}
}
else if ( nScript == i18n::ScriptType::COMPLEX )
{
//Complex is ok in ww8, but for ww6 there is only
//one font, one fontsize, one fontsize (weight/posture)
//and only one language
if ( bWrtWW8 == 0 )
{
switch ( nWhich )
{
case RES_CHRATR_CJK_FONT:
case RES_CHRATR_CJK_FONTSIZE:
case RES_CHRATR_CJK_POSTURE:
case RES_CHRATR_CJK_WEIGHT:
case RES_CHRATR_CJK_LANGUAGE:
case RES_CHRATR_FONT:
case RES_CHRATR_FONTSIZE:
case RES_CHRATR_POSTURE:
case RES_CHRATR_WEIGHT:
case RES_CHRATR_LANGUAGE:
bRet = false;
break;
default:
break;
}
}
}
else
{
//for western in ww8, there is only one fontsize
//and one fontstyle (posture/weight) for ww6
//there is the additional problem that there
//is only one font setting for all three scripts
switch ( nWhich )
{
case RES_CHRATR_CJK_FONTSIZE:
case RES_CHRATR_CJK_POSTURE:
case RES_CHRATR_CJK_WEIGHT:
bRet = false;
break;
case RES_CHRATR_CJK_LANGUAGE:
case RES_CHRATR_CTL_FONT:
case RES_CHRATR_CTL_FONTSIZE:
case RES_CHRATR_CTL_LANGUAGE:
case RES_CHRATR_CTL_POSTURE:
case RES_CHRATR_CTL_WEIGHT:
if ( bWrtWW8 == 0 )
bRet = false;
default:
break;
}
}
return bRet;
}
//------------------------------------------------------------
// Hilfsroutinen fuer Styles
//------------------------------------------------------------
void MSWordExportBase::ExportPoolItemsToCHP( sw::PoolItems &rItems, sal_uInt16 nScript )
{
sw::cPoolItemIter aEnd = rItems.end();
for ( sw::cPoolItemIter aI = rItems.begin(); aI != aEnd; ++aI )
{
const SfxPoolItem *pItem = aI->second;
sal_uInt16 nWhich = pItem->Which();
if ( ( isCHRATR( nWhich ) || isTXTATR( nWhich ) ) && CollapseScriptsforWordOk( nScript, nWhich ) )
{
AttrOutput().OutputItem( *pItem );
}
}
}
/*
* Format wie folgt ausgeben:
* - gebe die Attribute aus; ohne Parents!
*/
void MSWordExportBase::OutputItemSet( const SfxItemSet& rSet, bool bPapFmt, bool bChpFmt, sal_uInt16 nScript,
bool bExportParentItemSet )
{
if( bExportParentItemSet || rSet.Count() )
{
const SfxPoolItem* pItem;
pISet = &rSet; // fuer Doppel-Attribute
// If frame dir is set, but not adjust, then force adjust as well
if ( bPapFmt && SFX_ITEM_SET == rSet.GetItemState( RES_FRAMEDIR, bExportParentItemSet ) )
{
// No explicit adjust set ?
if ( SFX_ITEM_SET != rSet.GetItemState( RES_PARATR_ADJUST, bExportParentItemSet ) )
{
if ( 0 != ( pItem = rSet.GetItem( RES_PARATR_ADJUST, bExportParentItemSet ) ) )
{
// then set the adjust used by the parent format
AttrOutput().OutputItem( *pItem );
}
}
}
if ( bPapFmt && SFX_ITEM_SET == rSet.GetItemState( RES_PARATR_NUMRULE, bExportParentItemSet, &pItem ) )
{
AttrOutput().OutputItem( *pItem );
// switch off the numerbering?
if ( !( (SwNumRuleItem*)pItem )->GetValue().Len() &&
SFX_ITEM_SET != rSet.GetItemState( RES_LR_SPACE, false) &&
SFX_ITEM_SET == rSet.GetItemState( RES_LR_SPACE, true, &pItem ) )
{
// the set the LR-Space of the parentformat!
AttrOutput().OutputItem( *pItem );
}
}
sw::PoolItems aItems;
GetPoolItems( rSet, aItems, bExportParentItemSet );
if ( bChpFmt )
ExportPoolItemsToCHP(aItems, nScript);
if ( bPapFmt )
{
sw::cPoolItemIter aEnd = aItems.end();
for ( sw::cPoolItemIter aI = aItems.begin(); aI != aEnd; ++aI )
{
pItem = aI->second;
sal_uInt16 nWhich = pItem->Which();
if ( nWhich >= RES_PARATR_BEGIN && nWhich < RES_FRMATR_END && nWhich != RES_PARATR_NUMRULE)
AttrOutput().OutputItem( *pItem );
}
}
pISet = 0; // fuer Doppel-Attribute
}
}
#include "switerator.hxx"
void MSWordExportBase::GatherChapterFields()
{
//If the header/footer contains a chapter field
SwFieldType* pType = pDoc->GetSysFldType( RES_CHAPTERFLD );
SwIterator<SwFmtFld,SwFieldType> aFmtFlds( *pType );
for ( SwFmtFld* pFld = aFmtFlds.First(); pFld; pFld = aFmtFlds.Next() )
{
if (const SwTxtFld *pTxtFld = pFld->GetTxtFld())
{
const SwTxtNode &rTxtNode = pTxtFld->GetTxtNode();
maChapterFieldLocs.push_back(rTxtNode.GetIndex());
}
}
}
bool MSWordExportBase::CntntContainsChapterField(const SwFmtCntnt &rCntnt) const
{
bool bRet = false;
if ( const SwNodeIndex* pSttIdx = rCntnt.GetCntntIdx() )
{
SwNodeIndex aIdx( *pSttIdx, 1 );
SwNodeIndex aEnd( *pSttIdx->GetNode().EndOfSectionNode() );
sal_uLong nStart = aIdx.GetIndex();
sal_uLong nEnd = aEnd.GetIndex();
//If the header/footer contains a chapter field
mycCFIter aIEnd = maChapterFieldLocs.end();
for ( mycCFIter aI = maChapterFieldLocs.begin(); aI != aIEnd; ++aI )
{
if ( ( nStart <= *aI ) && ( *aI <= nEnd ) )
{
bRet = true;
break;
}
}
}
return bRet;
}
bool MSWordExportBase::FmtHdFtContainsChapterField(const SwFrmFmt &rFmt) const
{
if ( maChapterFieldLocs.empty() )
return false;
const SwFrmFmt *pFmt = 0;
pFmt = rFmt.GetHeader().GetHeaderFmt();
if ( pFmt && CntntContainsChapterField( pFmt->GetCntnt() ) )
return true;
pFmt = rFmt.GetFooter().GetFooterFmt();
if ( pFmt && CntntContainsChapterField( pFmt->GetCntnt() ) )
return true;
return false;
}
bool MSWordExportBase::SetAktPageDescFromNode(const SwNode &rNd)
{
bool bNewPageDesc = false;
const SwPageDesc* pCurrent = SwPageDesc::GetPageDescOfNode(rNd);
OSL_ENSURE(pCurrent && pAktPageDesc, "Not possible surely");
if (pAktPageDesc && pCurrent)
{
if (pCurrent != pAktPageDesc)
{
if (pAktPageDesc->GetFollow() != pCurrent)
bNewPageDesc = true;
else
{
const SwFrmFmt& rTitleFmt = pAktPageDesc->GetMaster();
const SwFrmFmt& rFollowFmt = pCurrent->GetMaster();
bNewPageDesc = !IsPlausableSingleWordSection(rTitleFmt,
rFollowFmt);
}
pAktPageDesc = pCurrent;
}
else
{
const SwFrmFmt &rFmt = pCurrent->GetMaster();
bNewPageDesc = FmtHdFtContainsChapterField(rFmt);
}
}
return bNewPageDesc;
}
// Da WW nur Break-After ( Pagebreak und Sectionbreaks ) kennt, im SW aber
// Bagebreaks "vor" und "nach" und Pagedescs nur "vor" existieren, werden
// die Breaks 2* durchgeklimpert, naemlich vor und hinter jeder Zeile.
// Je nach BreakTyp werden sie vor oder nach der Zeile gesetzt.
// Es duerfen nur Funktionen gerufen werden, die nicht in den
// Ausgabebereich pO schreiben, da dieser nur einmal fuer CHP und PAP existiert
// und damit im falschen landen wuerden.
void MSWordExportBase::OutputSectionBreaks( const SfxItemSet *pSet, const SwNode& rNd )
{
if ( bStyDef || bOutKF || bInWriteEscher || bOutPageDescs )
return;
bBreakBefore = true;
bool bNewPageDesc = false;
const SfxPoolItem* pItem=0;
const SwFmtPageDesc *pPgDesc=0;
//Output a sectionbreak if theres a new pagedesciptor. otherwise output a
//pagebreak if there is a pagebreak here, unless the new page (follow
//style) is different to the current one, in which case plump for a
//section.
bool bBreakSet = false;
const SwPageDesc * pPageDesc = rNd.FindPageDesc(sal_False);
if (pAktPageDesc != pPageDesc)
{
bBreakSet = true;
bNewPageDesc = true;
pAktPageDesc = pPageDesc;
}
if ( pSet && pSet->Count() )
{
if ( SFX_ITEM_SET == pSet->GetItemState( RES_PAGEDESC, false, &pItem ) &&
dynamic_cast<const SwFmtPageDesc*>(pItem)->GetRegisteredIn() != NULL)
{
bBreakSet = true;
bNewPageDesc = true;
pPgDesc = (const SwFmtPageDesc*)pItem;
pAktPageDesc = pPgDesc->GetPageDesc();
}
else if ( SFX_ITEM_SET == pSet->GetItemState( RES_BREAK, false, &pItem ) )
{
// Word does not like hard break attributes in some table cells
bool bRemoveHardBreakInsideTable = false;
if ( bOutTable )
{
const SwTableNode* pTableNode = rNd.FindTableNode();
if ( pTableNode )
{
const SwTableBox* pBox = rNd.GetTblBox();
const SwTableLine* pLine = pBox ? pBox->GetUpper() : 0;
// but only for non-complex tables
if ( pLine && !pLine->GetUpper() )
{
// check if box is not first in that line:
if ( 0 < pLine->GetTabBoxes().GetPos( pBox ) && pBox->GetSttNd() )
{
bRemoveHardBreakInsideTable = true;
}
}
}
}
bBreakSet = true;
if ( !bRemoveHardBreakInsideTable )
{
OSL_ENSURE(pAktPageDesc, "should not be possible");
/*
If because of this pagebreak the page desc following the page
break is the follow style of the current page desc then output a
section break using that style instead. At least in those cases
we end up with the same style in word and writer, nothing can be
done when it happens when we get a new pagedesc because we
overflow from the first page style.
*/
if ( pAktPageDesc )
{
// #i76301# - assure that there is a page break before set at the node.
const SvxFmtBreakItem* pBreak = dynamic_cast<const SvxFmtBreakItem*>(pItem);
if ( pBreak &&
pBreak->GetBreak() == SVX_BREAK_PAGE_BEFORE )
{
bNewPageDesc = SetAktPageDescFromNode( rNd );
}
}
if ( !bNewPageDesc )
AttrOutput().OutputItem( *pItem );
}
}
}
/*
#i9301#
No explicit page break, lets see if the style had one and we've moved to a
new page style because of it, if we have to then we take the opportunity to
set the equivalent word section here. We *could* do it for every paragraph
that moves onto a new page because of layout, but that would be insane.
*/
bool bHackInBreak = false;
if ( !bBreakSet )
{
if ( const SwCntntNode *pNd = rNd.GetCntntNode() )
{
const SvxFmtBreakItem &rBreak =
ItemGet<SvxFmtBreakItem>( *pNd, RES_BREAK );
if ( rBreak.GetBreak() == SVX_BREAK_PAGE_BEFORE )
bHackInBreak = true;
else
{ // Even a pagedesc item is set, the break item can be set 'NONE',
// but a pagedesc item is an implicit page break before...
const SwFmtPageDesc &rPageDesc =
ItemGet<SwFmtPageDesc>( *pNd, RES_PAGEDESC );
if ( rPageDesc.KnowsPageDesc() )
bHackInBreak = true;
}
}
}
if ( bHackInBreak )
{
OSL_ENSURE( pAktPageDesc, "should not be possible" );
if ( pAktPageDesc )
bNewPageDesc = SetAktPageDescFromNode( rNd );
}
if ( bNewPageDesc && pAktPageDesc )
{
PrepareNewPageDesc( pSet, rNd, pPgDesc, pAktPageDesc );
}
bBreakBefore = false;
}
// #i76300#
bool MSWordExportBase::OutputFollowPageDesc( const SfxItemSet* pSet, const SwTxtNode* pNd )
{
bool bRet = false;
if ( pNd &&
pAktPageDesc &&
pAktPageDesc != pAktPageDesc->GetFollow() )
{
PrepareNewPageDesc( pSet, *pNd, 0, pAktPageDesc->GetFollow() );
bRet = true;
}
return bRet;
}
const SwSectionFmt* MSWordExportBase::GetSectionFormat( const SwNode& rNd ) const
{
const SwSectionFmt* pFmt = NULL;
const SwSectionNode* pSect = rNd.FindSectionNode();
if ( pSect &&
CONTENT_SECTION == pSect->GetSection().GetType() )
{
pFmt = pSect->GetSection().GetFmt();
}
return pFmt;
}
sal_uLong MSWordExportBase::GetSectionLineNo( const SfxItemSet* pSet, const SwNode& rNd ) const
{
const SwFmtLineNumber* pNItem = 0;
if ( pSet )
{
pNItem = &( ItemGet<SwFmtLineNumber>( *pSet, RES_LINENUMBER ) );
}
else if ( const SwCntntNode *pNd = rNd.GetCntntNode() )
{
pNItem = &( ItemGet<SwFmtLineNumber>( *pNd, RES_LINENUMBER ) );
}
return pNItem? pNItem->GetStartValue() : 0;
}
void WW8Export::PrepareNewPageDesc( const SfxItemSet*pSet,
const SwNode& rNd,
const SwFmtPageDesc* pNewPgDescFmt,
const SwPageDesc* pNewPgDesc )
{
// Die PageDescs werden beim Auftreten von PageDesc-Attributen nur in
// WW8Writer::pSepx mit der entsprechenden Position eingetragen. Das
// Aufbauen und die Ausgabe der am PageDesc haengenden Attribute und
// Kopf/Fusszeilen passiert nach dem Haupttext und seinen Attributen.
sal_uLong nFcPos = ReplaceCr( msword::PageBreak ); // Page/Section-Break
// tatsaechlich wird hier NOCH NICHTS ausgegeben, sondern
// nur die Merk-Arrays aCps, aSects entsprechend ergaenzt
if ( !nFcPos )
return;
const SwSectionFmt* pFmt = GetSectionFormat( rNd );
const sal_uLong nLnNm = GetSectionLineNo( pSet, rNd );
OSL_ENSURE( pNewPgDescFmt || pNewPgDesc, "Neither page desc format nor page desc provided." );
if ( pNewPgDescFmt )
{
pSepx->AppendSep( Fc2Cp( nFcPos ), *pNewPgDescFmt, rNd, pFmt, nLnNm );
}
else if ( pNewPgDesc )
{
pSepx->AppendSep( Fc2Cp( nFcPos ), pNewPgDesc, rNd, pFmt, nLnNm );
}
}
void MSWordExportBase::CorrectTabStopInSet( SfxItemSet& rSet, sal_uInt16 nAbsLeft )
{
const SvxTabStopItem *pItem =
sw::util::HasItem<SvxTabStopItem>( rSet, RES_PARATR_TABSTOP );
if ( pItem )
{
// dann muss das fuer die Ausgabe korrigiert werden
SvxTabStopItem aTStop(*pItem);
for ( sal_uInt16 nCnt = 0; nCnt < aTStop.Count(); ++nCnt )
{
SvxTabStop& rTab = (SvxTabStop&)aTStop[ nCnt ];
if ( SVX_TAB_ADJUST_DEFAULT != rTab.GetAdjustment() &&
rTab.GetTabPos() >= nAbsLeft )
{
rTab.GetTabPos() -= nAbsLeft;
}
else
{
aTStop.Remove( nCnt );
--nCnt;
}
}
rSet.Put( aTStop );
}
}
sal_uInt8 WW8Export::GetNumId( sal_uInt16 eNumType )
{
sal_uInt8 nRet = 0;
switch( eNumType )
{
case SVX_NUM_CHARS_UPPER_LETTER:
case SVX_NUM_CHARS_UPPER_LETTER_N: nRet = 3; break;
case SVX_NUM_CHARS_LOWER_LETTER:
case SVX_NUM_CHARS_LOWER_LETTER_N: nRet = 4; break;
case SVX_NUM_ROMAN_UPPER: nRet = 1; break;
case SVX_NUM_ROMAN_LOWER: nRet = 2; break;
case SVX_NUM_BITMAP:
case SVX_NUM_CHAR_SPECIAL: nRet = 23; break;
// nix, macht WW undokumentiert auch so
case SVX_NUM_NUMBER_NONE: nRet = 0xff; break;
}
return nRet;
}
void WW8AttributeOutput::OutlineNumbering( sal_uInt8 nLvl, const SwNumFmt &rNFmt, const SwFmt &rFmt )
{
if ( nLvl >= WW8ListManager::nMaxLevel )
nLvl = WW8ListManager::nMaxLevel-1;
if ( m_rWW8Export.bWrtWW8 )
{
// write sprmPOutLvl sprmPIlvl and sprmPIlfo
SwWW8Writer::InsUInt16( *m_rWW8Export.pO, NS_sprm::LN_POutLvl );
m_rWW8Export.pO->push_back( nLvl );
SwWW8Writer::InsUInt16( *m_rWW8Export.pO, NS_sprm::LN_PIlvl );
m_rWW8Export.pO->push_back( nLvl );
SwWW8Writer::InsUInt16( *m_rWW8Export.pO, NS_sprm::LN_PIlfo );
SwWW8Writer::InsUInt16( *m_rWW8Export.pO,
1 + m_rWW8Export.GetId( *m_rWW8Export.pDoc->GetOutlineNumRule() ) );
}
else
{
m_rWW8Export.Out_SwNumLvl( nLvl );
if ( rNFmt.GetPositionAndSpaceMode() ==
SvxNumberFormat::LABEL_WIDTH_AND_POSITION &&
rNFmt.GetAbsLSpace() )
{
SwNumFmt aNumFmt( rNFmt );
const SvxLRSpaceItem& rLR =
ItemGet<SvxLRSpaceItem>( rFmt, RES_LR_SPACE );
aNumFmt.SetAbsLSpace( writer_cast<short>(
aNumFmt.GetAbsLSpace() + rLR.GetLeft() ) );
m_rWW8Export.Out_NumRuleAnld(
*m_rWW8Export.pDoc->GetOutlineNumRule(),
aNumFmt, nLvl );
}
else
m_rWW8Export.Out_NumRuleAnld(
*m_rWW8Export.pDoc->GetOutlineNumRule(),
rNFmt, nLvl );
}
}
// #i77805#
bool WW8Export::DisallowInheritingOutlineNumbering(const SwFmt &rFmt)
{
bool bRet( false );
//If there is no numbering on this fmt, but its parent was outline
//numbered, then in writer this is no inheritied, but in word it would
//be, so we must export "no numbering" and "body level" to make word
//behave like writer (see #i25755)
if (SFX_ITEM_SET != rFmt.GetItemState(RES_PARATR_NUMRULE, false))
{
if (const SwFmt *pParent = rFmt.DerivedFrom())
{
if (((const SwTxtFmtColl*)pParent)->IsAssignedToListLevelOfOutlineStyle())
{
if (bWrtWW8)
{
SwWW8Writer::InsUInt16(*pO, NS_sprm::LN_POutLvl);
pO->push_back(sal_uInt8(9));
SwWW8Writer::InsUInt16(*pO, NS_sprm::LN_PIlfo);
SwWW8Writer::InsUInt16(*pO, 0);
bRet = true;
}
/*whats the winword 6 way to do this ?*/
}
}
}
return bRet;
}
void MSWordExportBase::OutputFormat( const SwFmt& rFmt, bool bPapFmt, bool bChpFmt, bool bFlyFmt )
{
bool bCallOutSet = true;
const SwModify* pOldMod = pOutFmtNode;
pOutFmtNode = &rFmt;
switch( rFmt.Which() )
{
case RES_CONDTXTFMTCOLL:
case RES_TXTFMTCOLL:
if( bPapFmt )
{
if (((const SwTxtFmtColl&)rFmt).IsAssignedToListLevelOfOutlineStyle())
{
int nLvl = ((const SwTxtFmtColl&)rFmt).GetAssignedOutlineStyleLevel();
//if outline numbered
// if Write StyleDefinition then write the OutlineRule
const SwNumFmt& rNFmt = pDoc->GetOutlineNumRule()->Get( static_cast<sal_uInt16>( nLvl ) );
if ( bStyDef )
AttrOutput().OutlineNumbering( static_cast< sal_uInt8 >( nLvl ), rNFmt, rFmt );
if ( rNFmt.GetPositionAndSpaceMode() ==
SvxNumberFormat::LABEL_WIDTH_AND_POSITION &&
rNFmt.GetAbsLSpace() )
{
SfxItemSet aSet( rFmt.GetAttrSet() );
SvxLRSpaceItem aLR(
ItemGet<SvxLRSpaceItem>(aSet, RES_LR_SPACE));
aLR.SetTxtLeft( aLR.GetTxtLeft() + rNFmt.GetAbsLSpace() );
aLR.SetTxtFirstLineOfst( GetWordFirstLineOffset(rNFmt));
aSet.Put( aLR );
CorrectTabStopInSet( aSet, rNFmt.GetAbsLSpace() );
OutputItemSet( aSet, bPapFmt, bChpFmt,
i18n::ScriptType::LATIN, mbExportModeRTF);
bCallOutSet = false;
}
}
else
{
//otherwise we might have to remove outline numbering from
//what gets exported if the parent style was outline numbered
// #i77805#
// If inherited outline numbering is suppress, the left/right
// margins has to be exported explicitly.
if ( bStyDef && DisallowInheritingOutlineNumbering(rFmt) )
{
SfxItemSet aSet( rFmt.GetAttrSet() );
SvxLRSpaceItem aLR(
ItemGet<SvxLRSpaceItem>(aSet, RES_LR_SPACE));
aSet.Put( aLR );
OutputItemSet( aSet, bPapFmt, bChpFmt,
com::sun::star::i18n::ScriptType::LATIN, mbExportModeRTF);
bCallOutSet = false;
}
}
}
break;
case RES_CHRFMT:
break;
case RES_FLYFRMFMT:
if (bFlyFmt)
{
OSL_ENSURE(mpParentFrame, "No parent frame, all broken");
if (mpParentFrame)
{
const SwFrmFmt &rFrmFmt = mpParentFrame->GetFrmFmt();
SfxItemSet aSet(pDoc->GetAttrPool(), RES_FRMATR_BEGIN,
RES_FRMATR_END-1);
aSet.Set(rFrmFmt.GetAttrSet());
// Fly als Zeichen werden bei uns zu Absatz-gebundenen
// jetzt den Abstand vom Absatz-Rand setzen
if (pFlyOffset)
{
aSet.Put(SwFmtHoriOrient(pFlyOffset->X()));
aSet.Put(SwFmtVertOrient(pFlyOffset->Y()));
SwFmtAnchor aAnchor(rFrmFmt.GetAnchor());
aAnchor.SetType(eNewAnchorType);
aSet.Put(aAnchor);
}
if (SFX_ITEM_SET != aSet.GetItemState(RES_SURROUND))
aSet.Put(SwFmtSurround(SURROUND_NONE));
bOutFlyFrmAttrs = true;
//script doesn't matter if not exporting chp
OutputItemSet(aSet, true, false,
i18n::ScriptType::LATIN, mbExportModeRTF);
bOutFlyFrmAttrs = false;
bCallOutSet = false;
}
}
break;
case RES_FRMFMT:
break;
default:
OSL_ENSURE( !this, "Which format is exported here?" );
break;
}
if( bCallOutSet )
OutputItemSet( rFmt.GetAttrSet(), bPapFmt, bChpFmt,
i18n::ScriptType::LATIN, mbExportModeRTF);
pOutFmtNode = pOldMod;
}
bool MSWordExportBase::HasRefToObject( sal_uInt16 nTyp, const String* pName, sal_uInt16 nSeqNo )
{
const SwTxtNode* pNd;
SwFieldType* pType = pDoc->GetSysFldType( RES_GETREFFLD );
SwIterator<SwFmtFld, SwFieldType> aFmtFlds( *pType );
for ( SwFmtFld* pFld = aFmtFlds.First(); pFld; pFld = aFmtFlds.Next() )
{
if ( pFld->GetTxtFld() && nTyp == pFld->GetFld()->GetSubType() &&
0 != ( pNd = pFld->GetTxtFld()->GetpTxtNode() ) &&
pNd->GetNodes().IsDocNodes() )
{
const SwGetRefField& rRFld = *static_cast< SwGetRefField* >( pFld->GetFld() );
switch ( nTyp )
{
case REF_BOOKMARK:
case REF_SETREFATTR:
if ( pName && *pName == rRFld.GetSetRefName() )
return true;
break;
case REF_FOOTNOTE:
case REF_ENDNOTE:
if ( nSeqNo == rRFld.GetSeqNo() )
return true;
break;
case REF_SEQUENCEFLD:
break; // ???
case REF_OUTLINE:
break; // ???
}
}
}
return false;
}
String MSWordExportBase::GetBookmarkName( sal_uInt16 nTyp, const String* pName, sal_uInt16 nSeqNo )
{
String sRet;
switch ( nTyp )
{
case REF_SETREFATTR:
if ( pName )
{
sRet.APPEND_CONST_ASC( "Ref_" );
sRet += *pName;
}
break;
case REF_SEQUENCEFLD:
break; // ???
case REF_BOOKMARK:
if ( pName )
sRet = *pName;
break;
case REF_OUTLINE:
break; // ???
case REF_FOOTNOTE:
sRet.APPEND_CONST_ASC( "_RefF" );
sRet += String::CreateFromInt32( nSeqNo );
break;
case REF_ENDNOTE:
sRet.APPEND_CONST_ASC( "_RefE" );
sRet += String::CreateFromInt32( nSeqNo );
break;
}
return BookmarkToWord( sRet ); // #i43956# - encode bookmark accordingly
}
//-----------------------------------------------------------------------
/* File CHRATR.HXX: */
void WW8AttributeOutput::RTLAndCJKState( bool bIsRTL, sal_uInt16 nScript )
{
if ( m_rWW8Export.bWrtWW8 && bIsRTL )
{
m_rWW8Export.InsUInt16( NS_sprm::LN_CFBiDi );
m_rWW8Export.pO->push_back( (sal_uInt8)1 );
}
// #i46087# patch from james_clark; complex texts needs the undocumented SPRM CComplexScript with param 0x81.
if ( m_rWW8Export.bWrtWW8 && nScript == i18n::ScriptType::COMPLEX && !bIsRTL )
{
m_rWW8Export.InsUInt16( NS_sprm::LN_CComplexScript );
m_rWW8Export.pO->push_back( (sal_uInt8)0x81 );
m_rWW8Export.pDop->bUseThaiLineBreakingRules = true;
}
}
void WW8AttributeOutput::EndParagraph( ww8::WW8TableNodeInfoInner::Pointer_t pTextNodeInfoInner )
{
m_rWW8Export.pPapPlc->AppendFkpEntry( m_rWW8Export.Strm().Tell(), m_rWW8Export.pO->size(), m_rWW8Export.pO->data() );
m_rWW8Export.pO->clear();
if ( pTextNodeInfoInner.get() != NULL )
{
if ( pTextNodeInfoInner->isEndOfLine() )
{
TableRowEnd( pTextNodeInfoInner->getDepth() );
SVBT16 nSty;
ShortToSVBT16( 0, nSty );
m_rWW8Export.pO->insert( m_rWW8Export.pO->end(), (sal_uInt8*)&nSty, (sal_uInt8*)&nSty+2 ); // Style #
TableInfoRow( pTextNodeInfoInner );
m_rWW8Export.pPapPlc->AppendFkpEntry( m_rWW8Export.Strm().Tell(), m_rWW8Export.pO->size(), m_rWW8Export.pO->data());
m_rWW8Export.pO->clear();
}
}
}
void WW8AttributeOutput::StartRunProperties()
{
WW8_WrPlcFld* pCurrentFields = m_rWW8Export.CurrentFieldPlc();
m_nFieldResults = pCurrentFields ? pCurrentFields->ResultCount() : 0;
}
void WW8AttributeOutput::StartRun( const SwRedlineData* pRedlineData )
{
if (pRedlineData)
{
const String &rComment = pRedlineData->GetComment();
//Only possible to export to main text
if (rComment.Len() && (m_rWW8Export.nTxtTyp == TXT_MAINTEXT))
{
if (m_rWW8Export.pAtn->IsNewRedlineComment(pRedlineData))
{
m_rWW8Export.pAtn->Append( m_rWW8Export.Fc2Cp( m_rWW8Export.Strm().Tell() ), pRedlineData );
m_rWW8Export.WritePostItBegin( m_rWW8Export.pO );
}
}
}
}
void WW8AttributeOutput::EndRunProperties( const SwRedlineData* pRedlineData )
{
Redline( pRedlineData );
WW8_WrPlcFld* pCurrentFields = m_rWW8Export.CurrentFieldPlc();
sal_uInt16 nNewFieldResults = pCurrentFields ? pCurrentFields->ResultCount() : 0;
bool bExportedFieldResult = ( m_nFieldResults != nNewFieldResults );
// If we have exported a field result, then we will have been forced to
// split up the text into a 0x13, 0x14, <result> 0x15 sequence with the
// properties forced out at the end of the result, so the 0x15 itself
// should remain clean of all other attributes to avoid #iXXXXX#
if ( !bExportedFieldResult )
{
m_rWW8Export.pChpPlc->AppendFkpEntry( m_rWW8Export.Strm().Tell(),
m_rWW8Export.pO->size(), m_rWW8Export.pO->data() );
}
m_rWW8Export.pO->clear();
}
void WW8AttributeOutput::RunText( const String& rText, rtl_TextEncoding eCharSet )
{
RawText( rText, m_rWW8Export.bWrtWW8, eCharSet );
}
void WW8AttributeOutput::RawText( const String& rText, bool bForceUnicode, rtl_TextEncoding eCharSet )
{
m_rWW8Export.OutSwString( rText, 0, rText.Len(), bForceUnicode, eCharSet );
}
void WW8AttributeOutput::OutputFKP()
{
if ( !m_rWW8Export.pO->empty() )
{
m_rWW8Export.pChpPlc->AppendFkpEntry( m_rWW8Export.Strm().Tell(),
m_rWW8Export.pO->size(), m_rWW8Export.pO->data() );
m_rWW8Export.pO->clear();
}
}
void WW8AttributeOutput::ParagraphStyle( sal_uInt16 nStyle )
{
OSL_ENSURE( m_rWW8Export.pO->empty(), " pO ist am ZeilenEnde nicht leer" );
SVBT16 nSty;
ShortToSVBT16( nStyle, nSty );
m_rWW8Export.pO->insert( m_rWW8Export.pO->end(), (sal_uInt8*)&nSty, (sal_uInt8*)&nSty+2 ); // Style #
}
void WW8AttributeOutput::OutputWW8Attribute( sal_uInt8 nId, bool bVal )
{
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( 8 == nId ? NS_sprm::LN_CFDStrike : NS_sprm::LN_CFBold + nId );
else if (8 == nId )
return; // no such attribute in WW6
else
m_rWW8Export.pO->push_back( 85 + nId );
m_rWW8Export.pO->push_back( bVal ? 1 : 0 );
}
void WW8AttributeOutput::OutputWW8AttributeCTL( sal_uInt8 nId, bool bVal )
{
OSL_ENSURE( nId <= 1, "out of range" );
if ( !m_rWW8Export.bWrtWW8 || nId > 1 )
return;
m_rWW8Export.InsUInt16( NS_sprm::LN_CFBoldBi + nId );
m_rWW8Export.pO->push_back( bVal ? 1 : 0 );
}
void WW8AttributeOutput::CharFont( const SvxFontItem& rFont )
{
sal_uInt16 nFontID = m_rWW8Export.GetId( rFont );
if ( m_rWW8Export.bWrtWW8 )
{
m_rWW8Export.InsUInt16( NS_sprm::LN_CRgFtc0 );
m_rWW8Export.InsUInt16( nFontID );
m_rWW8Export.InsUInt16( NS_sprm::LN_CRgFtc2 );
}
else
m_rWW8Export.pO->push_back( 93 );
m_rWW8Export.InsUInt16( nFontID );
}
void WW8AttributeOutput::CharFontCTL( const SvxFontItem& rFont )
{
//Can only export in 8+, in 7- export as normal varient and expect that
//upperlevel code has blocked exporting clobbering attributes
sal_uInt16 nFontID = m_rWW8Export.GetId( rFont );
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_CFtcBi );
else
m_rWW8Export.pO->push_back( 93 );
m_rWW8Export.InsUInt16( nFontID );
}
void WW8AttributeOutput::CharFontCJK( const SvxFontItem& rFont )
{
//Can only export in 8+, in 7- export as normal varient and expect that
//upperlevel code has blocked exporting clobbering attributes
sal_uInt16 nFontID = m_rWW8Export.GetId( rFont );
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_CRgFtc1 );
else
m_rWW8Export.pO->push_back( 93 );
m_rWW8Export.InsUInt16( nFontID );
}
void WW8AttributeOutput::CharWeightCTL( const SvxWeightItem& rWeight )
{
//Can only export in 8+, in 7- export as normal varient and expect that
//upperlevel code has blocked exporting clobbering attributes
if (m_rWW8Export.bWrtWW8)
{
OutputWW8AttributeCTL( 0, WEIGHT_BOLD == rWeight.GetWeight());
}
else
{
OutputWW8Attribute( 0, WEIGHT_BOLD == rWeight.GetWeight());
}
}
void WW8AttributeOutput::CharPostureCTL( const SvxPostureItem& rPosture )
{
// Can only export in 8+, in 7- export as normal varient and expect that
// upperlevel code has blocked exporting clobbering attributes
if (m_rWW8Export.bWrtWW8)
{
OutputWW8AttributeCTL( 1, ITALIC_NONE != rPosture.GetPosture() );
}
else
{
OutputWW8Attribute( 1, ITALIC_NONE != rPosture.GetPosture() );
}
}
void WW8AttributeOutput::CharPosture( const SvxPostureItem& rPosture )
{
OutputWW8Attribute( 1, ITALIC_NONE != rPosture.GetPosture() );
}
void WW8AttributeOutput::CharWeight( const SvxWeightItem& rWeight )
{
OutputWW8Attribute( 0, WEIGHT_BOLD == rWeight.GetWeight() );
}
// Shadowed und Contour are not in WW-UI. JP: ??
void WW8AttributeOutput::CharContour( const SvxContourItem& rContour )
{
OutputWW8Attribute( 3, rContour.GetValue() ? true : false);
}
void WW8AttributeOutput::CharShadow( const SvxShadowedItem& rShadow )
{
OutputWW8Attribute( 4, rShadow.GetValue() ? true : false);
}
void WW8AttributeOutput::CharKerning( const SvxKerningItem& rKerning )
{
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_CDxaSpace );
else
m_rWW8Export.pO->push_back( 96 );
m_rWW8Export.InsUInt16( rKerning.GetValue() );
}
void WW8AttributeOutput::CharAutoKern( const SvxAutoKernItem& rAutoKern )
{
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_CHpsKern );
else
m_rWW8Export.pO->push_back( 107 );
m_rWW8Export.InsUInt16( rAutoKern.GetValue() ? 1 : 0 );
}
void WW8AttributeOutput::CharAnimatedText( const SvxBlinkItem& rBlink )
{
if ( m_rWW8Export.bWrtWW8 )
{
m_rWW8Export.InsUInt16( NS_sprm::LN_CSfxText );
// At the moment the only animated text effect we support is blinking
m_rWW8Export.InsUInt16( rBlink.GetValue() ? 2 : 0 );
}
}
void WW8AttributeOutput::CharCrossedOut( const SvxCrossedOutItem& rCrossed )
{
FontStrikeout eSt = rCrossed.GetStrikeout();
if ( STRIKEOUT_DOUBLE == eSt )
{
OutputWW8Attribute( 8, true );
return;
}
if ( STRIKEOUT_NONE != eSt )
{
OutputWW8Attribute( 2, true );
return;
}
// otherwise both off
OutputWW8Attribute( 8, false );
OutputWW8Attribute( 2, false );
}
void WW8AttributeOutput::CharCaseMap( const SvxCaseMapItem& rCaseMap )
{
sal_uInt16 eSt = rCaseMap.GetValue();
switch ( eSt )
{
case SVX_CASEMAP_KAPITAELCHEN:
OutputWW8Attribute( 5, true );
return;
case SVX_CASEMAP_VERSALIEN:
OutputWW8Attribute( 6, true );
return;
case SVX_CASEMAP_TITEL:
// no such feature in word
break;
default:
// otherwise both off
OutputWW8Attribute( 5, false );
OutputWW8Attribute( 6, false );
return;
}
}
void WW8AttributeOutput::CharHidden( const SvxCharHiddenItem& rHidden )
{
OutputWW8Attribute( 7, rHidden.GetValue() );
}
void WW8AttributeOutput::CharUnderline( const SvxUnderlineItem& rUnderline )
{
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_CKul );
else
m_rWW8Export.pO->push_back( 94 );
const SfxPoolItem* pItem = m_rWW8Export.HasItem( RES_CHRATR_WORDLINEMODE );
bool bWord = false;
if (pItem)
bWord = ((const SvxWordLineModeItem*)pItem)->GetValue() ? true : false;
// WW95 - parameters: 0 = none, 1 = single, 2 = by Word,
// 3 = double, 4 = dotted, 5 = hidden
// WW97 - additional parameters:
// 6 = thick, 7 = dash, 8 = dot(not used)
// 9 = dotdash 10 = dotdotdash, 11 = wave
sal_uInt8 b = 0;
switch ( rUnderline.GetLineStyle() )
{
case UNDERLINE_SINGLE:
b = ( bWord ) ? 2 : 1;
break;
case UNDERLINE_BOLD:
b = m_rWW8Export.bWrtWW8 ? 6 : 1;
break;
case UNDERLINE_DOUBLE:
b = 3;
break;
case UNDERLINE_DOTTED:
b = 4;
break;
case UNDERLINE_DASH:
b = m_rWW8Export.bWrtWW8 ? 7 : 4;
break;
case UNDERLINE_DASHDOT:
b = m_rWW8Export.bWrtWW8 ? 9 : 4;
break;
case UNDERLINE_DASHDOTDOT:
b = m_rWW8Export.bWrtWW8 ? 10 : 4;
break;
case UNDERLINE_WAVE:
b = m_rWW8Export.bWrtWW8 ? 11 : 3;
break;
// ------------ new in WW2000 -------------------------------------
case UNDERLINE_BOLDDOTTED:
b = m_rWW8Export.bWrtWW8 ? 20 : 4;
break;
case UNDERLINE_BOLDDASH:
b = m_rWW8Export.bWrtWW8 ? 23 : 4;
break;
case UNDERLINE_LONGDASH:
b = m_rWW8Export.bWrtWW8 ? 39 : 4;
break;
case UNDERLINE_BOLDLONGDASH:
b = m_rWW8Export.bWrtWW8 ? 55 : 4;
break;
case UNDERLINE_BOLDDASHDOT:
b = m_rWW8Export.bWrtWW8 ? 25 : 4;
break;
case UNDERLINE_BOLDDASHDOTDOT:
b = m_rWW8Export.bWrtWW8 ? 26 : 4;
break;
case UNDERLINE_BOLDWAVE:
b = m_rWW8Export.bWrtWW8 ? 27 : 3;
break;
case UNDERLINE_DOUBLEWAVE:
b = m_rWW8Export.bWrtWW8 ? 43 : 3;
break;
case UNDERLINE_NONE:
b = 0;
break;
default:
OSL_ENSURE( rUnderline.GetLineStyle() == UNDERLINE_NONE, "Unhandled underline type" );
break;
}
m_rWW8Export.pO->push_back( b );
}
void WW8AttributeOutput::CharLanguage( const SvxLanguageItem& rLanguage )
{
sal_uInt16 nId = 0;
if ( m_rWW8Export.bWrtWW8 )
{
switch ( rLanguage.Which() )
{
case RES_CHRATR_LANGUAGE:
nId = NS_sprm::LN_CRgLid0_80;
break;
case RES_CHRATR_CJK_LANGUAGE:
nId = NS_sprm::LN_CRgLid1_80;
break;
case RES_CHRATR_CTL_LANGUAGE:
nId = NS_sprm::LN_CLidBi;
break;
}
}
else
nId = 97;
if ( nId )
{
if ( m_rWW8Export.bWrtWW8 ) // use sprmCRgLid0_80 rather than sprmCLid
m_rWW8Export.InsUInt16( nId );
else
m_rWW8Export.pO->push_back( static_cast<sal_uInt8>(nId) );
m_rWW8Export.InsUInt16( rLanguage.GetLanguage() );
// Word 2000 and above apparently require both old and new versions of
// these sprms to be set, without it spellchecking doesn't work
if ( nId == NS_sprm::LN_CRgLid0_80 )
{
m_rWW8Export.InsUInt16( NS_sprm::LN_CRgLid0 );
m_rWW8Export.InsUInt16( rLanguage.GetLanguage() );
}
else if ( nId == NS_sprm::LN_CRgLid1_80 )
{
m_rWW8Export.InsUInt16( NS_sprm::LN_CRgLid1 );
m_rWW8Export.InsUInt16( rLanguage.GetLanguage() );
}
}
}
void WW8AttributeOutput::CharEscapement( const SvxEscapementItem& rEscapement )
{
sal_uInt8 b = 0xFF;
short nEsc = rEscapement.GetEsc(), nProp = rEscapement.GetProp();
if ( !nEsc )
{
b = 0;
nEsc = 0;
nProp = 100;
}
else if ( DFLT_ESC_PROP == nProp )
{
if ( DFLT_ESC_SUB == nEsc || DFLT_ESC_AUTO_SUB == nEsc )
b = 2;
else if ( DFLT_ESC_SUPER == nEsc || DFLT_ESC_AUTO_SUPER == nEsc )
b = 1;
}
if ( 0xFF != b )
{
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_CIss );
else
m_rWW8Export.pO->push_back( 104 );
m_rWW8Export.pO->push_back( b );
}
if ( 0 == b || 0xFF == b )
{
long nHeight = ((SvxFontHeightItem&)m_rWW8Export.GetItem(
RES_CHRATR_FONTSIZE )).GetHeight();
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_CHpsPos );
else
m_rWW8Export.pO->push_back( 101 );
m_rWW8Export.InsUInt16( (short)(( nHeight * nEsc + 500 ) / 1000 ));
if( 100 != nProp || !b )
{
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_CHps );
else
m_rWW8Export.pO->push_back( 99 );
m_rWW8Export.InsUInt16(
msword_cast<sal_uInt16>((nHeight * nProp + 500 ) / 1000));
}
}
}
void WW8AttributeOutput::CharFontSize( const SvxFontHeightItem& rHeight )
{
sal_uInt16 nId = 0;
if ( m_rWW8Export.bWrtWW8 )
{
switch ( rHeight.Which() )
{
case RES_CHRATR_FONTSIZE:
case RES_CHRATR_CJK_FONTSIZE:
nId = NS_sprm::LN_CHps;
break;
case RES_CHRATR_CTL_FONTSIZE:
nId = NS_sprm::LN_CHpsBi;
break;
}
}
else
nId = 99;
if ( nId )
{
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( nId );
else
m_rWW8Export.pO->push_back( static_cast<sal_uInt8>(nId) );
m_rWW8Export.InsUInt16( (sal_uInt16)(( rHeight.GetHeight() + 5 ) / 10 ) );
}
}
void WW8AttributeOutput::CharScaleWidth( const SvxCharScaleWidthItem& rScaleWidth )
{
if ( m_rWW8Export.bWrtWW8 )
{
m_rWW8Export.InsUInt16( NS_sprm::LN_CCharScale );
m_rWW8Export.InsUInt16( rScaleWidth.GetValue() );
}
}
void WW8AttributeOutput::CharRelief( const SvxCharReliefItem& rRelief )
{
if ( m_rWW8Export.bWrtWW8 )
{
sal_uInt16 nId;
switch ( rRelief.GetValue() )
{
case RELIEF_EMBOSSED: nId = NS_sprm::LN_CFEmboss; break;
case RELIEF_ENGRAVED: nId = NS_sprm::LN_CFImprint; break;
default: nId = 0; break;
}
if( nId )
{
m_rWW8Export.InsUInt16( nId );
m_rWW8Export.pO->push_back( (sal_uInt8)0x81 );
}
else
{
// switch both flags off
m_rWW8Export.InsUInt16( NS_sprm::LN_CFEmboss );
m_rWW8Export.pO->push_back( (sal_uInt8)0x0 );
m_rWW8Export.InsUInt16( NS_sprm::LN_CFImprint );
m_rWW8Export.pO->push_back( (sal_uInt8)0x0 );
}
}
}
void WW8AttributeOutput::CharRotate( const SvxCharRotateItem& rRotate )
{
// #i28331# - check that a Value is set
if ( !rRotate.GetValue() )
return;
if ( m_rWW8Export.bWrtWW8 && !m_rWW8Export.IsInTable() )
{
// #i36867 In word the text in a table is rotated via the TC or NS_sprm::LN_TTextFlow
// This means you can only rotate all or none of the text adding NS_sprm::LN_CEastAsianLayout
// here corrupts the table, hence !m_rWW8Export.bIsInTable
m_rWW8Export.InsUInt16( NS_sprm::LN_CEastAsianLayout );
m_rWW8Export.pO->push_back( (sal_uInt8)0x06 ); //len 6
m_rWW8Export.pO->push_back( (sal_uInt8)0x01 );
m_rWW8Export.InsUInt16( rRotate.IsFitToLine() ? 1 : 0 );
static const sal_uInt8 aZeroArr[ 3 ] = { 0, 0, 0 };
m_rWW8Export.pO->insert( m_rWW8Export.pO->end(), aZeroArr, aZeroArr+3);
}
}
void WW8AttributeOutput::CharEmphasisMark( const SvxEmphasisMarkItem& rEmphasisMark )
{
if ( m_rWW8Export.bWrtWW8 )
{
sal_uInt8 nVal;
switch ( rEmphasisMark.GetValue() )
{
case EMPHASISMARK_NONE: nVal = 0; break;
case EMPHASISMARK_SIDE_DOTS: nVal = 2; break;
case EMPHASISMARK_CIRCLE_ABOVE: nVal = 3; break;
case EMPHASISMARK_DOTS_BELOW: nVal = 4; break;
// case 1:
default: nVal = 1; break;
}
m_rWW8Export.InsUInt16( NS_sprm::LN_CKcd );
m_rWW8Export.pO->push_back( nVal );
}
}
// TransCol uebersetzt SW-Farben in WW. Heraus kommt die bei WW fuer
// Text- und Hintergrundfarbe benutzte Codierung.
// Gibt es keine direkte Entsprechung, dann wird versucht, eine moeglichst
// aehnliche WW-Farbe zu finden.
// return: 5-Bit-Wert ( 0..16 )
sal_uInt8 WW8Export::TransCol( const Color& rCol )
{
sal_uInt8 nCol = 0; // ->Auto
switch( rCol.GetColor() )
{
case COL_BLACK: nCol = 1; break;
case COL_BLUE: nCol = 9; break;
case COL_GREEN: nCol = 11; break;
case COL_CYAN: nCol = 10; break;
case COL_RED: nCol = 13; break;
case COL_MAGENTA: nCol = 12; break;
case COL_BROWN: nCol = 14; break;
case COL_GRAY: nCol = 15; break;
case COL_LIGHTGRAY: nCol = 16; break;
case COL_LIGHTBLUE: nCol = 2; break;
case COL_LIGHTGREEN: nCol = 4; break;
case COL_LIGHTCYAN: nCol = 3; break;
case COL_LIGHTRED: nCol = 6; break;
case COL_LIGHTMAGENTA: nCol = 5; break;
case COL_YELLOW: nCol = 7; break;
case COL_WHITE: nCol = 8; break;
case COL_AUTO: nCol = 0; break;
default:
if( !pBmpPal )
{
pBmpPal = new BitmapPalette( 16 );
static const ColorData aColArr[ 16 ] = {
COL_BLACK, COL_LIGHTBLUE, COL_LIGHTCYAN, COL_LIGHTGREEN,
COL_LIGHTMAGENTA,COL_LIGHTRED, COL_YELLOW, COL_WHITE,
COL_BLUE, COL_CYAN, COL_GREEN, COL_MAGENTA,
COL_RED, COL_BROWN, COL_GRAY, COL_LIGHTGRAY
};
for( sal_uInt16 i = 0; i < 16; ++i )
pBmpPal->operator[]( i ) = Color( aColArr[ i ] );
}
nCol = static_cast< sal_uInt8 >(pBmpPal->GetBestIndex( rCol ) + 1);
break;
}
return nCol;
}
// TransBrush uebersetzt SW-Brushes in WW. Heraus kommt WW8_SHD.
// Nicht-Standardfarben des SW werden noch nicht in die
// Misch-Werte ( 0 .. 95% ) vom WW uebersetzt.
// Return: Echte Brush ( nicht transparent )
// auch bei Transparent wird z.B. fuer Tabellen eine transparente Brush
// geliefert
bool WW8Export::TransBrush(const Color& rCol, WW8_SHD& rShd)
{
if( rCol.GetTransparency() )
rShd = WW8_SHD(); // alles Nullen : transparent
else
{
rShd.SetFore( 0);
rShd.SetBack( TransCol( rCol ) );
rShd.SetStyle( bWrtWW8, 0 );
}
return !rCol.GetTransparency();
}
sal_uInt32 SuitableBGColor(sal_uInt32 nIn)
{
if (nIn == COL_AUTO)
return 0xFF000000;
return wwUtility::RGBToBGR(nIn);
}
void WW8AttributeOutput::CharColor( const SvxColorItem& rColor )
{
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_CIco );
else
m_rWW8Export.pO->push_back( 98 );
sal_uInt8 nColor = m_rWW8Export.TransCol( rColor.GetValue() );
m_rWW8Export.pO->push_back( nColor );
if ( m_rWW8Export.bWrtWW8 && nColor )
{
m_rWW8Export.InsUInt16( 0x6870 );
m_rWW8Export.InsUInt32( wwUtility::RGBToBGR( rColor.GetValue().GetColor() ) );
}
}
void WW8AttributeOutput::CharBackground( const SvxBrushItem& rBrush )
{
if( m_rWW8Export.bWrtWW8 ) // nur WW8 kann ZeichenHintergrund
{
WW8_SHD aSHD;
m_rWW8Export.TransBrush( rBrush.GetColor(), aSHD );
// sprmCShd
m_rWW8Export.InsUInt16( NS_sprm::LN_CShd );
m_rWW8Export.InsUInt16( aSHD.GetValue() );
//Quite a few unknowns, some might be transparency or something
//of that nature...
m_rWW8Export.InsUInt16( 0xCA71 );
m_rWW8Export.pO->push_back( 10 );
m_rWW8Export.InsUInt32( 0xFF000000 );
m_rWW8Export.InsUInt32( SuitableBGColor( rBrush.GetColor().GetColor() ) );
m_rWW8Export.InsUInt16( 0x0000);
}
}
void WW8AttributeOutput::TextINetFormat( const SwFmtINetFmt& rINet )
{
if ( rINet.GetValue().Len() )
{
sal_uInt16 nId;
const String& rStr = rINet.GetINetFmt();
if ( rStr.Len() )
nId = rINet.GetINetFmtId();
else
nId = RES_POOLCHR_INET_NORMAL;
const SwCharFmt* pFmt = IsPoolUserFmt( nId )
? m_rWW8Export.pDoc->FindCharFmtByName( rStr )
: m_rWW8Export.pDoc->GetCharFmtFromPool( nId );
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_CIstd );
else
m_rWW8Export.pO->push_back( 80 );
m_rWW8Export.InsUInt16( m_rWW8Export.GetId( *pFmt ) );
}
}
// #i43956# - add optional parameter <pLinkStr>
// It's needed to write the hyperlink data for a certain cross-reference
// - it contains the name of the link target, which is a bookmark.
// add optional parameter <bIncludeEmptyPicLocation>
// It is needed to write an empty picture location for page number field separators
static void InsertSpecialChar( WW8Export& rWrt, sal_uInt8 c,
String* pLinkStr = 0L,
bool bIncludeEmptyPicLocation = false )
{
ww::bytes aItems;
rWrt.GetCurrentItems(aItems);
if (c == 0x13)
rWrt.pChpPlc->AppendFkpEntry(rWrt.Strm().Tell());
else
rWrt.pChpPlc->AppendFkpEntry(rWrt.Strm().Tell(), aItems.size(), aItems.data());
rWrt.WriteChar(c);
// store empty sprmCPicLocation for field separator
if ( bIncludeEmptyPicLocation &&
( c == 0x13 || c == 0x14 || c == 0x15 ) )
{
SwWW8Writer::InsUInt16( aItems, NS_sprm::LN_CPicLocation );
SwWW8Writer::InsUInt32( aItems, 0x00000000 );
}
// #i43956# - write hyperlink data and attributes
if ( rWrt.bWrtWW8 && c == 0x01 && pLinkStr )
{
// write hyperlink data to data stream
SvStream& rStrm = *rWrt.pDataStrm;
// position of hyperlink data
const sal_uInt32 nLinkPosInDataStrm = rStrm.Tell();
// write empty header
const sal_uInt16 nEmptyHdrLen = 0x44;
sal_uInt8 aEmptyHeader[ nEmptyHdrLen ] = { 0 };
aEmptyHeader[ 4 ] = 0x44;
rStrm.Write( aEmptyHeader, nEmptyHdrLen );
// writer fixed header
const sal_uInt16 nFixHdrLen = 0x19;
sal_uInt8 aFixHeader[ nFixHdrLen ] =
{
0x08, 0xD0, 0xC9, 0xEA, 0x79, 0xF9, 0xBA, 0xCE,
0x11, 0x8C, 0x82, 0x00, 0xAA, 0x00, 0x4B, 0xA9,
0x0B, 0x02, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00,
};
rStrm.Write( aFixHeader, nFixHdrLen );
// write reference string including length+1
sal_uInt32 nStrLen( pLinkStr->Len() + 1 );
SwWW8Writer::WriteLong( rStrm, nStrLen );
SwWW8Writer::WriteString16( rStrm, *(pLinkStr), false );
// write additional two NULL Bytes
SwWW8Writer::WriteLong( rStrm, 0 );
// write length of hyperlink data
const sal_uInt32 nCurrPos = rStrm.Tell();
rStrm.Seek( nLinkPosInDataStrm );
SVBT32 nLen;
UInt32ToSVBT32( nCurrPos - nLinkPosInDataStrm, nLen );
rStrm.Write( nLen, 4 );
rStrm.Seek( nCurrPos );
// write attributes of hyperlink character 0x01
SwWW8Writer::InsUInt16( aItems, NS_sprm::LN_CFFldVanish );
aItems.push_back( (sal_uInt8)0x81 );
SwWW8Writer::InsUInt16( aItems, NS_sprm::LN_CPicLocation );
SwWW8Writer::InsUInt32( aItems, nLinkPosInDataStrm );
SwWW8Writer::InsUInt16( aItems, NS_sprm::LN_CFData );
aItems.push_back( (sal_uInt8)0x01 );
}
//Technically we should probably Remove all attribs
//here for the 0x13, 0x14, 0x15, but our import
//is slightly lacking
//aItems.Remove(0, aItems.Count());
// fSpec-Attribute true
if( rWrt.bWrtWW8 )
{
SwWW8Writer::InsUInt16( aItems, NS_sprm::LN_CFSpec );
aItems.push_back( 1 );
}
else
{
aItems.push_back( 117 ); //sprmCFSpec
aItems.push_back( 1 );
}
rWrt.pChpPlc->AppendFkpEntry(rWrt.Strm().Tell(), aItems.size(), aItems.data());
}
String lcl_GetExpandedField(const SwField &rFld)
{
String sRet(rFld.ExpandField(true));
//replace LF 0x0A with VT 0x0B
sRet.SearchAndReplaceAll(0x0A, 0x0B);
return sRet;
}
WW8_WrPlcFld* WW8Export::CurrentFieldPlc() const
{
WW8_WrPlcFld* pFldP = NULL;
switch (nTxtTyp)
{
case TXT_MAINTEXT:
pFldP = pFldMain;
break;
case TXT_HDFT:
pFldP = pFldHdFt;
break;
case TXT_FTN:
pFldP = pFldFtn;
break;
case TXT_EDN:
pFldP = pFldEdn;
break;
case TXT_ATN:
pFldP = pFldAtn;
break;
case TXT_TXTBOX:
pFldP = pFldTxtBxs;
break;
case TXT_HFTXTBOX:
pFldP = pFldHFTxtBxs;
break;
default:
OSL_ENSURE( !this, "was ist das fuer ein SubDoc-Type?" );
}
return pFldP;
}
void WW8Export::OutputField( const SwField* pFld, ww::eField eFldType,
const String& rFldCmd, sal_uInt8 nMode )
{
bool bUnicode = IsUnicode();
WW8_WrPlcFld* pFldP = CurrentFieldPlc();
const bool bIncludeEmptyPicLocation = ( eFldType == ww::ePAGE );
if (WRITEFIELD_START & nMode)
{
sal_uInt8 aFld13[2] = { 0x13, 0x00 }; // will change
//#i3958#, Needed to make this field work correctly in Word 2000
if (eFldType == ww::eSHAPE)
aFld13[0] |= 0x80;
aFld13[1] = static_cast< sal_uInt8 >(eFldType); // Typ nachtragen
pFldP->Append( Fc2Cp( Strm().Tell() ), aFld13 );
InsertSpecialChar( *this, 0x13, 0, bIncludeEmptyPicLocation );
}
if (WRITEFIELD_CMD_START & nMode)
{
if (bUnicode)
SwWW8Writer::WriteString16(Strm(), rFldCmd, false);
else
{
SwWW8Writer::WriteString8(Strm(), rFldCmd, false,
RTL_TEXTENCODING_MS_1252);
}
// #i43956# - write hyperlink character including
// attributes and corresponding binary data for certain reference fields.
bool bHandleBookmark = false;
if (pFld)
{
if (pFld->GetTyp()->Which() == RES_GETREFFLD &&
( eFldType == ww::ePAGEREF || eFldType == ww::eREF ||
eFldType == ww::eNOTEREF || eFldType == ww::eFOOTREF ))
bHandleBookmark = true;
}
if ( bHandleBookmark )
{
// retrieve reference destination - the name of the bookmark
String aLinkStr;
const sal_uInt16 nSubType = pFld->GetSubType();
const SwGetRefField& rRFld = *(static_cast<const SwGetRefField*>(pFld));
if ( nSubType == REF_SETREFATTR ||
nSubType == REF_BOOKMARK )
{
aLinkStr = GetBookmarkName( nSubType, &rRFld.GetSetRefName(), 0 );
}
else if ( nSubType == REF_FOOTNOTE ||
nSubType == REF_ENDNOTE )
{
aLinkStr = GetBookmarkName( nSubType, 0, rRFld.GetSeqNo() );
}
else if ( nSubType == REF_SEQUENCEFLD )
{
aLinkStr = pFld->GetPar2();
}
// insert hyperlink character including attributes and data.
InsertSpecialChar( *this, 0x01, &aLinkStr );
}
}
if (WRITEFIELD_CMD_END & nMode)
{
static const sal_uInt8 aFld14[2] = { 0x14, 0xff };
pFldP->Append( Fc2Cp( Strm().Tell() ), aFld14 );
pFldP->ResultAdded();
InsertSpecialChar( *this, 0x14, 0, bIncludeEmptyPicLocation );
}
if (WRITEFIELD_END & nMode)
{
String sOut;
if( pFld )
sOut = lcl_GetExpandedField(*pFld);
else
sOut = rFldCmd;
if( sOut.Len() )
{
if( bUnicode )
SwWW8Writer::WriteString16(Strm(), sOut, false);
else
{
SwWW8Writer::WriteString8(Strm(), sOut, false,
RTL_TEXTENCODING_MS_1252);
}
if (pFld)
{
if (pFld->GetTyp()->Which() == RES_INPUTFLD &&
eFldType == ww::eFORMTEXT)
{
sal_uInt8 aArr[12];
sal_uInt8 *pArr = aArr;
if ( bWrtWW8 )
{
Set_UInt16( pArr, NS_sprm::LN_CPicLocation );
Set_UInt32( pArr, 0x0 );
Set_UInt16( pArr, NS_sprm::LN_CFSpec );
Set_UInt8( pArr, 1 );
Set_UInt16( pArr, NS_sprm::LN_CFNoProof );
Set_UInt8( pArr, 1 );
}
else
{
Set_UInt8(pArr, 0x68); //sprmCPicLocation
Set_UInt32(pArr, 0x0);
Set_UInt8( pArr, 117 ); //sprmCFSpec
Set_UInt8( pArr, 1 );
}
pChpPlc->AppendFkpEntry( Strm().Tell(), static_cast< short >(pArr - aArr), aArr );
}
}
}
}
if (WRITEFIELD_CLOSE & nMode)
{
sal_uInt8 aFld15[2] = { 0x15, 0x80 };
if (pFld)
{
if (pFld->GetTyp()->Which() == RES_INPUTFLD &&
eFldType == ww::eFORMTEXT)
{
sal_uInt16 nSubType = pFld->GetSubType();
if (nSubType == REF_SEQUENCEFLD)
aFld15[0] |= (0x4 << 5);
}
}
pFldP->Append( Fc2Cp( Strm().Tell() ), aFld15 );
InsertSpecialChar( *this, 0x15, 0, bIncludeEmptyPicLocation );
}
}
void WW8Export::StartCommentOutput(const String& rName)
{
String sStr(FieldString(ww::eQUOTE));
sStr.APPEND_CONST_ASC("[");
sStr += rName;
sStr.APPEND_CONST_ASC("] ");
OutputField(0, ww::eQUOTE, sStr, WRITEFIELD_START | WRITEFIELD_CMD_START);
}
void WW8Export::EndCommentOutput(const String& rName)
{
String sStr(CREATE_CONST_ASC(" ["));
sStr += rName;
sStr.APPEND_CONST_ASC("] ");
OutputField(0, ww::eQUOTE, sStr, WRITEFIELD_CMD_END | WRITEFIELD_END |
WRITEFIELD_CLOSE);
}
sal_uInt16 MSWordExportBase::GetId( const SwTOXType& rTOXType )
{
void* p = (void*)&rTOXType;
sal_uInt16 nRet = aTOXArr.GetPos( p );
if( USHRT_MAX == nRet )
aTOXArr.Insert( p, nRet = aTOXArr.Count() );
return nRet;
}
// return values: 1 - no PageNum,
// 2 - TabStop before PageNum,
// 3 - Text before PageNum - rTxt hold the text
// 4 - no Text and no TabStop before PageNum
int lcl_CheckForm( const SwForm& rForm, sal_uInt8 nLvl, String& rText )
{
int nRet = 4;
rText.Erase();
// #i21237#
SwFormTokens aPattern = rForm.GetPattern(nLvl);
SwFormTokens::iterator aIt = aPattern.begin();
bool bPgNumFnd = false;
FormTokenType eTType;
// #i61362#
if (! aPattern.empty())
{
// #i21237#
while( ++aIt != aPattern.end() && !bPgNumFnd )
{
eTType = aIt->eTokenType;
switch( eTType )
{
case TOKEN_PAGE_NUMS:
bPgNumFnd = true;
break;
case TOKEN_TAB_STOP:
nRet = 2;
break;
case TOKEN_TEXT:
nRet = 3;
rText = aIt->sText.Copy( 0, 5 ); // #i21237#
break;
case TOKEN_LINK_START:
case TOKEN_LINK_END:
break;
default:
nRet = 4;
break;
}
}
if( !bPgNumFnd )
nRet = 1;
}
return nRet;
}
bool lcl_IsHyperlinked(const SwForm& rForm, sal_uInt16 nTOXLvl)
{
bool bRes = false;
for (sal_uInt16 nI = 1; nI < nTOXLvl; ++nI)
{
// #i21237#
SwFormTokens aPattern = rForm.GetPattern(nI);
if ( !aPattern.empty() )
{
SwFormTokens::iterator aIt = aPattern.begin();
FormTokenType eTType;
// #i21237#
while ( ++aIt != aPattern.end() )
{
eTType = aIt->eTokenType;
switch (eTType)
{
case TOKEN_LINK_START:
case TOKEN_LINK_END:
bRes = true;
break;
default:
;
}
}
}
}
return bRes;
}
void AttributeOutputBase::StartTOX( const SwSection& rSect )
{
if ( const SwTOXBase* pTOX = rSect.GetTOXBase() )
{
static const sal_Char sEntryEnd[] = "\" ";
ww::eField eCode = ww::eTOC;
String sStr;
switch (pTOX->GetType())
{
case TOX_INDEX:
eCode = ww::eINDEX;
sStr = FieldString(eCode);
if (pTOX->GetTOXForm().IsCommaSeparated())
sStr.APPEND_CONST_ASC("\\r ");
if (nsSwTOIOptions::TOI_ALPHA_DELIMITTER & pTOX->GetOptions())
sStr.APPEND_CONST_ASC("\\h \"A\" ");
{
String aFillTxt;
for (sal_uInt8 n = 1; n <= 3; ++n)
{
String aTxt;
int nRet = ::lcl_CheckForm(pTOX->GetTOXForm(), n, aTxt);
if( 3 == nRet )
aFillTxt = aTxt;
else if ((4 == nRet) || (2 == nRet))
aFillTxt = '\t';
else
aFillTxt.Erase();
}
sStr.APPEND_CONST_ASC("\\e \"");
sStr += aFillTxt;
sStr.AppendAscii(sEntryEnd);
}
break;
case TOX_ILLUSTRATIONS:
case TOX_OBJECTS:
case TOX_TABLES:
if (!pTOX->IsFromObjectNames())
{
sStr = FieldString(eCode);
sStr.APPEND_CONST_ASC("\\c \"");
sStr += pTOX->GetSequenceName();
sStr.AppendAscii(sEntryEnd);
String aTxt;
int nRet = ::lcl_CheckForm( pTOX->GetTOXForm(), 1, aTxt );
if (1 == nRet)
sStr.APPEND_CONST_ASC("\\n ");
else if( 3 == nRet || 4 == nRet )
{
sStr.APPEND_CONST_ASC("\\p \"");
sStr += aTxt;
sStr.AppendAscii(sEntryEnd);
}
}
break;
default:
{
sStr = FieldString(eCode);
String sTOption;
sal_uInt16 n, nTOXLvl = pTOX->GetLevel();
if( !nTOXLvl )
++nTOXLvl;
if( nsSwTOXElement::TOX_MARK & pTOX->GetCreateType() )
{
sStr.APPEND_CONST_ASC( "\\f " );
if( TOX_USER == pTOX->GetType() )
{
sStr += '\"';
sStr += (sal_Char)( 'A' + GetExport( ).GetId( *pTOX->GetTOXType() ) );
sStr.AppendAscii( sEntryEnd );
}
if( nsSwTOXElement::TOX_OUTLINELEVEL & pTOX->GetCreateType() )
{
const int nMinLvl = nTOXLvl;
if ( nMinLvl > 0 )
{
int nTmpLvl = nMinLvl;
if (nTmpLvl > WW8ListManager::nMaxLevel)
nTmpLvl = WW8ListManager::nMaxLevel;
sStr.APPEND_CONST_ASC( "\\o \"1-" );
sStr += String::CreateFromInt32( nTmpLvl );
sStr.AppendAscii(sEntryEnd);
}
}
if( nsSwTOXElement::TOX_OUTLINELEVEL & pTOX->GetCreateType() )
{
// Take the TOC value of the max level to evaluate to as
// the starting point for the \o flag, but reduce it to the
// value of the highest outline level filled by a *standard*
// Heading 1 - 9 style because \o "Builds a table of
// contents from paragraphs formatted with built-in heading
// styles". And afterward fill in any outline styles left
// uncovered by that range to the \t flag
//
// i.e. for
// Heading 1
// Heading 2
// custom-style
// Heading 4
// output
// \o 1-2 \tcustom-style,3,Heading 3,4
// Search over all the outline styles used and figure out
// what is the minimum outline level (if any) filled by a
// non-standard style for that level, i.e. ignore headline
// styles 1-9 and find the lowest valid outline level
sal_uInt8 nPosOfLowestNonStandardLvl = MAXLEVEL;
const SwTxtFmtColls& rColls = *GetExport().pDoc->GetTxtFmtColls();
for( n = rColls.Count(); n; )
{
const SwTxtFmtColl* pColl = rColls[ --n ];
sal_uInt16 nPoolId = pColl->GetPoolFmtId();
if (
//Is a Non-Standard Outline Style
(RES_POOLCOLL_HEADLINE1 > nPoolId || RES_POOLCOLL_HEADLINE9 < nPoolId) &&
//Has a valid outline level
(pColl->IsAssignedToListLevelOfOutlineStyle()) &&
// Is less than the lowest known non-standard level
(pColl->GetAssignedOutlineStyleLevel() < nPosOfLowestNonStandardLvl)
)
{
nPosOfLowestNonStandardLvl = ::sal::static_int_cast<sal_uInt8>(pColl->GetAssignedOutlineStyleLevel());
}
}
sal_uInt8 nMaxMSAutoEvaluate = nPosOfLowestNonStandardLvl < nTOXLvl ? nPosOfLowestNonStandardLvl : (sal_uInt8)nTOXLvl;
//output \o 1-X where X is the highest normal outline style to be included in the toc
if ( nMaxMSAutoEvaluate )
{
if (nMaxMSAutoEvaluate > WW8ListManager::nMaxLevel)
nMaxMSAutoEvaluate = WW8ListManager::nMaxLevel;
sStr.APPEND_CONST_ASC( "\\o \"1-" );
sStr += String::CreateFromInt32( nMaxMSAutoEvaluate );
sStr.AppendAscii(sEntryEnd);
}
//collect up any other styles in the writer TOC which will
//not already appear in the MS TOC and place then into the
//\t option
if( nMaxMSAutoEvaluate < nTOXLvl )
{
// collect this templates into the \t otion
for( n = rColls.Count(); n;)
{
const SwTxtFmtColl* pColl = rColls[ --n ];
if (!pColl->IsAssignedToListLevelOfOutlineStyle())
continue;
sal_uInt8 nTestLvl = ::sal::static_int_cast<sal_uInt8>(pColl->GetAssignedOutlineStyleLevel());
if (nTestLvl < nTOXLvl && nTestLvl >= nMaxMSAutoEvaluate)
{
if( sTOption.Len() )
sTOption += ',';
(( sTOption += pColl->GetName() ) += ',' )
+= String::CreateFromInt32( nTestLvl + 1 );
}
}
}
}
if( nsSwTOXElement::TOX_TEMPLATE & pTOX->GetCreateType() )
// #i99641# - Consider additional styles regardless of TOX-outlinelevel
for( n = 0; n < MAXLEVEL; ++n )
{
const String& rStyles = pTOX->GetStyleNames( n );
if( rStyles.Len() )
{
xub_StrLen nPos = 0;
String sLvl( ',' );
sLvl += String::CreateFromInt32( n + 1 );
do {
String sStyle( rStyles.GetToken( 0,
TOX_STYLE_DELIMITER, nPos ));
if( sStyle.Len() )
{
SwTxtFmtColl* pColl = GetExport().pDoc->FindTxtFmtCollByName(sStyle);
if (!pColl || !pColl->IsAssignedToListLevelOfOutlineStyle() || pColl->GetAssignedOutlineStyleLevel() < nTOXLvl)
{
if( sTOption.Len() )
sTOption += ',';
( sTOption += sStyle ) += sLvl;
}
}
} while( STRING_NOTFOUND != nPos );
}
}
{
String aFillTxt;
sal_uInt8 nNoPgStt = MAXLEVEL, nNoPgEnd = MAXLEVEL;
bool bFirstFillTxt = true, bOnlyText = true;
for( n = 0; n < nTOXLvl; ++n )
{
String aTxt;
int nRet = ::lcl_CheckForm( pTOX->GetTOXForm(),
static_cast< sal_uInt8 >(n+1), aTxt );
if( 1 == nRet )
{
bOnlyText = false;
if( MAXLEVEL == nNoPgStt )
nNoPgStt = static_cast< sal_uInt8 >(n+1);
}
else
{
if( MAXLEVEL != nNoPgStt &&
MAXLEVEL == nNoPgEnd )
nNoPgEnd = sal_uInt8(n);
bOnlyText = bOnlyText && 3 == nRet;
if( 3 == nRet || 4 == nRet )
{
if( bFirstFillTxt )
aFillTxt = aTxt;
else if( aFillTxt != aTxt )
aFillTxt.Erase();
bFirstFillTxt = false;
}
}
}
if( MAXLEVEL != nNoPgStt )
{
if (WW8ListManager::nMaxLevel < nNoPgEnd)
nNoPgEnd = WW8ListManager::nMaxLevel;
sStr.APPEND_CONST_ASC( "\\n " );
sStr += String::CreateFromInt32( nNoPgStt );
sStr += '-';
sStr += String::CreateFromInt32( nNoPgEnd );
sStr += ' ';
}
if( bOnlyText )
{
sStr.APPEND_CONST_ASC( "\\p \"" );
sStr += aFillTxt;
sStr.AppendAscii(sEntryEnd);
}
}
if( sTOption.Len() )
{
sStr.APPEND_CONST_ASC( "\\t \"" );
sStr += sTOption;
sStr.AppendAscii(sEntryEnd);
}
if (lcl_IsHyperlinked(pTOX->GetTOXForm(), nTOXLvl))
sStr.APPEND_CONST_ASC("\\h");
}
break;
}
}
if( sStr.Len() )
{
GetExport( ).bInWriteTOX = true;
GetExport( ).OutputField( 0, eCode, sStr, WRITEFIELD_START | WRITEFIELD_CMD_START |
WRITEFIELD_CMD_END );
}
}
GetExport( ).bStartTOX = false;
}
void AttributeOutputBase::EndTOX( const SwSection& rSect )
{
const SwTOXBase* pTOX = rSect.GetTOXBase();
if ( pTOX )
{
ww::eField eCode = TOX_INDEX == pTOX->GetType() ? ww::eINDEX : ww::eTOC;
GetExport( ).OutputField( 0, eCode, aEmptyStr, WRITEFIELD_CLOSE );
}
GetExport( ).bInWriteTOX = false;
}
bool MSWordExportBase::GetNumberFmt(const SwField& rFld, String& rStr)
{
// Returns a date or time format string by using the US NfKeywordTable
bool bHasFmt = false;
SvNumberFormatter* pNFmtr = pDoc->GetNumberFormatter();
sal_uInt32 nFmtIdx = rFld.GetFormat();
const SvNumberformat* pNumFmt = pNFmtr->GetEntry( nFmtIdx );
if( pNumFmt )
{
sal_uInt16 nLng = rFld.GetLanguage();
LocaleDataWrapper aLocDat(pNFmtr->GetServiceManager(),
MsLangId::convertLanguageToLocale(nLng));
String sFmt(pNumFmt->GetMappedFormatstring(GetNfKeywordTable(),
aLocDat));
if (sFmt.Len())
{
sw::ms::SwapQuotesInField(sFmt);
rStr.APPEND_CONST_ASC( "\\@\"" );
rStr += sFmt;
rStr.APPEND_CONST_ASC( "\" " );
bHasFmt = true;
}
}
return bHasFmt;
}
void AttributeOutputBase::GetNumberPara( String& rStr, const SwField& rFld )
{
switch(rFld.GetFormat())
{
case SVX_NUM_CHARS_UPPER_LETTER:
case SVX_NUM_CHARS_UPPER_LETTER_N:
rStr.APPEND_CONST_ASC( "\\*ALPHABETIC ");
break;
case SVX_NUM_CHARS_LOWER_LETTER:
case SVX_NUM_CHARS_LOWER_LETTER_N:
rStr.APPEND_CONST_ASC("\\*alphabetic ");
break;
case SVX_NUM_ROMAN_UPPER:
rStr.APPEND_CONST_ASC("\\*ROMAN ");
break;
case SVX_NUM_ROMAN_LOWER:
rStr.APPEND_CONST_ASC("\\*roman ");
break;
default:
OSL_ENSURE(rFld.GetFormat() == SVX_NUM_ARABIC,
"Unknown numbering type exported as default\n");
case SVX_NUM_ARABIC:
rStr.APPEND_CONST_ASC("\\*Arabic ");
break;
case SVX_NUM_PAGEDESC:
//Nothing, use word's default
break;
}
}
void WW8Export::WritePostItBegin( ww::bytes* pOut )
{
sal_uInt8 aArr[ 3 ];
sal_uInt8* pArr = aArr;
// sprmCFSpec true
if( bWrtWW8 )
Set_UInt16( pArr, NS_sprm::LN_CFSpec );
else
Set_UInt8( pArr, 117 ); //sprmCFSpec
Set_UInt8( pArr, 1 );
pChpPlc->AppendFkpEntry( Strm().Tell() );
WriteChar( 0x05 ); // Annotation reference
if( pOut )
pOut->insert( pOut->end(), aArr, pArr );
else
pChpPlc->AppendFkpEntry( Strm().Tell(), static_cast< short >(pArr - aArr), aArr );
}
String FieldString(ww::eField eIndex)
{
String sRet(CREATE_CONST_ASC(" "));
if (const char *pField = ww::GetEnglishFieldName(eIndex))
sRet.InsertAscii(pField, 1);
return sRet;
}
void WW8AttributeOutput::HiddenField( const SwField& rFld )
{
String sExpand(rFld.GetPar2());
//replace LF 0x0A with VT 0x0B
sExpand.SearchAndReplaceAll(0x0A, 0x0B);
m_rWW8Export.pChpPlc->AppendFkpEntry(m_rWW8Export.Strm().Tell());
if (m_rWW8Export.IsUnicode())
{
SwWW8Writer::WriteString16(m_rWW8Export.Strm(), sExpand, false);
static sal_uInt8 aArr[] =
{
0x3C, 0x08, 0x1
};
m_rWW8Export.pChpPlc->AppendFkpEntry(m_rWW8Export.Strm().Tell(), sizeof(aArr), aArr);
}
else
{
SwWW8Writer::WriteString8(m_rWW8Export.Strm(), sExpand, false,
RTL_TEXTENCODING_MS_1252);
static sal_uInt8 aArr[] =
{
92, 0x1
};
m_rWW8Export.pChpPlc->AppendFkpEntry(m_rWW8Export.Strm().Tell(), sizeof(aArr), aArr);
}
}
void WW8AttributeOutput::SetField( const SwField& rFld, ww::eField eType, const String& rCmd )
{
const SwSetExpField* pSet=(const SwSetExpField*)(&rFld);
const String &rVar = pSet->GetPar2();
sal_uLong nFrom = m_rWW8Export.Fc2Cp(m_rWW8Export.Strm().Tell());
GetExport().OutputField(&rFld, eType, rCmd, WRITEFIELD_START |
WRITEFIELD_CMD_START | WRITEFIELD_CMD_END);
/*
Is there a bookmark at the start position of this field, if so
move it to the 0x14 of the result of the field. This is what word
does. MoveFieldMarks moves any bookmarks at this position to
the beginning of the field result, and marks the bookmark as a
fieldbookmark which is to be ended before the field end mark
instead of after it like a normal bookmark.
*/
m_rWW8Export.MoveFieldMarks(nFrom,m_rWW8Export.Fc2Cp(m_rWW8Export.Strm().Tell()));
if (rVar.Len())
{
if (m_rWW8Export.IsUnicode())
SwWW8Writer::WriteString16(m_rWW8Export.Strm(), rVar, false);
else
{
SwWW8Writer::WriteString8(m_rWW8Export.Strm(), rVar, false,
RTL_TEXTENCODING_MS_1252);
}
}
GetExport().OutputField(&rFld, eType, rCmd, WRITEFIELD_CLOSE);
}
void WW8AttributeOutput::PostitField( const SwField* pFld )
{
const SwPostItField *pPFld = (const SwPostItField*)pFld;
m_rWW8Export.pAtn->Append( m_rWW8Export.Fc2Cp( m_rWW8Export.Strm().Tell() ), pPFld );
m_rWW8Export.WritePostItBegin( m_rWW8Export.pO );
}
bool WW8AttributeOutput::DropdownField( const SwField* pFld )
{
bool bExpand = true;
if ( m_rWW8Export.bWrtWW8 )
{
const SwDropDownField& rFld2 = *(SwDropDownField*)pFld;
uno::Sequence<rtl::OUString> aItems =
rFld2.GetItemSequence();
GetExport().DoComboBox(rFld2.GetName(),
rFld2.GetHelp(),
rFld2.GetToolTip(),
rFld2.GetSelectedItem(), aItems);
bExpand = false;
}
return bExpand;
}
void WW8AttributeOutput::RefField( const SwField &rFld, const String &rRef)
{
String sStr( FieldString( ww::eREF ) );
sStr.APPEND_CONST_ASC( "\"" );
sStr += rRef;
sStr.APPEND_CONST_ASC( "\" " );
m_rWW8Export.OutputField( &rFld, ww::eREF, sStr, WRITEFIELD_START |
WRITEFIELD_CMD_START | WRITEFIELD_CMD_END );
String sVar = lcl_GetExpandedField( rFld );
if ( sVar.Len() )
{
if ( m_rWW8Export.IsUnicode() )
SwWW8Writer::WriteString16( m_rWW8Export.Strm(), sVar, false );
else
{
SwWW8Writer::WriteString8( m_rWW8Export.Strm(), sVar, false,
RTL_TEXTENCODING_MS_1252 );
}
}
m_rWW8Export.OutputField( &rFld, ww::eREF, sStr, WRITEFIELD_CLOSE );
}
void WW8AttributeOutput::WriteExpand( const SwField* pFld )
{
String sExpand( lcl_GetExpandedField( *pFld ) );
if ( m_rWW8Export.IsUnicode() )
SwWW8Writer::WriteString16( m_rWW8Export.Strm(), sExpand, false );
else
{
SwWW8Writer::WriteString8( m_rWW8Export.Strm(), sExpand, false,
RTL_TEXTENCODING_MS_1252 );
}
}
void AttributeOutputBase::TextField( const SwFmtFld& rField )
{
const SwField* pFld = rField.GetFld();
String sStr; // fuer optionale Parameter
bool bWriteExpand = false;
sal_uInt16 nSubType = pFld->GetSubType();
switch (pFld->GetTyp()->Which())
{
case RES_GETEXPFLD:
if (nSubType == nsSwGetSetExpType::GSE_STRING)
{
const SwGetExpField *pGet=(const SwGetExpField*)(pFld);
RefField( *pGet, pGet->GetFormula() );
}
else
bWriteExpand = true;
break;
case RES_SETEXPFLD:
if (nsSwGetSetExpType::GSE_SEQ == nSubType)
{
sStr = FieldString(ww::eSEQ);
sStr.APPEND_CONST_ASC("\"");
sStr += pFld->GetTyp()->GetName();
sStr.APPEND_CONST_ASC( "\" " );
GetNumberPara( sStr, *pFld );
GetExport().OutputField(pFld, ww::eSEQ, sStr);
}
else if (nSubType & nsSwGetSetExpType::GSE_STRING)
{
bool bShowAsWell = false;
ww::eField eFieldNo;
const SwSetExpField *pSet=(const SwSetExpField*)(pFld);
const String &rVar = pSet->GetPar2();
if (pSet->GetInputFlag())
{
sStr = FieldString(ww::eASK);
sStr.APPEND_CONST_ASC("\"");
sStr += pSet->GetPar1();
sStr.APPEND_CONST_ASC( "\" " );
sStr += pSet->GetPromptText();
sStr.APPEND_CONST_ASC( " \\d " );
sStr += rVar;
eFieldNo = ww::eASK;
}
else
{
sStr = FieldString(ww::eSET);
sStr += pSet->GetPar1();
sStr.APPEND_CONST_ASC(" \"");
sStr += rVar;
sStr.APPEND_CONST_ASC("\" ");
eFieldNo = ww::eSET;
bShowAsWell = (nSubType & nsSwExtendedSubType::SUB_INVISIBLE) ? false : true;
}
SetField( *pFld, eFieldNo, sStr );
if (bShowAsWell)
RefField( *pSet, pSet->GetPar1() );
}
else
bWriteExpand = true;
break;
case RES_PAGENUMBERFLD:
sStr = FieldString(ww::ePAGE);
GetNumberPara(sStr, *pFld);
GetExport().OutputField(pFld, ww::ePAGE, sStr);
break;
case RES_FILENAMEFLD:
sStr = FieldString(ww::eFILENAME);
if (pFld->GetFormat() == FF_PATHNAME)
sStr.APPEND_CONST_ASC("\\p ");
GetExport().OutputField(pFld, ww::eFILENAME, sStr);
break;
case RES_DBNAMEFLD:
{
sStr = FieldString(ww::eDATABASE);
SwDBData aData = GetExport().pDoc->GetDBData();
sStr += String(aData.sDataSource);
sStr += DB_DELIM;
sStr += String(aData.sCommand);
GetExport().OutputField(pFld, ww::eDATABASE, sStr);
}
break;
case RES_AUTHORFLD:
{
ww::eField eFld =
(AF_SHORTCUT & pFld->GetFormat() ? ww::eUSERINITIALS : ww::eUSERNAME);
GetExport().OutputField(pFld, eFld, FieldString(eFld));
}
break;
case RES_TEMPLNAMEFLD:
GetExport().OutputField(pFld, ww::eTEMPLATE, FieldString(ww::eTEMPLATE));
break;
case RES_DOCINFOFLD: // Last printed, last edited,...
if( DI_SUB_FIXED & nSubType )
bWriteExpand = true;
else
{
ww::eField eFld(ww::eNONE);
switch (0xff & nSubType)
{
case DI_TITEL:
eFld = ww::eTITLE;
break;
case DI_THEMA:
eFld = ww::eSUBJECT;
break;
case DI_KEYS:
eFld = ww::eKEYWORDS;
break;
case DI_COMMENT:
eFld = ww::eCOMMENTS;
break;
case DI_DOCNO:
eFld = ww::eREVNUM;
break;
case DI_CREATE:
if (DI_SUB_AUTHOR == (nSubType & DI_SUB_MASK))
eFld = ww::eAUTHOR;
else if (GetExport().GetNumberFmt(*pFld, sStr))
eFld = ww::eCREATEDATE;
break;
case DI_CHANGE:
if (DI_SUB_AUTHOR == (nSubType & DI_SUB_MASK))
eFld = ww::eLASTSAVEDBY;
else if (GetExport().GetNumberFmt(*pFld, sStr))
eFld = ww::eSAVEDATE;
break;
case DI_PRINT:
if (DI_SUB_AUTHOR != (nSubType & DI_SUB_MASK) &&
GetExport().GetNumberFmt(*pFld, sStr))
eFld = ww::ePRINTDATE;
break;
case DI_EDIT:
if( DI_SUB_AUTHOR != (nSubType & DI_SUB_MASK ) &&
GetExport().GetNumberFmt( *pFld, sStr ))
eFld = ww::eSAVEDATE;
break;
case DI_CUSTOM:
eFld = ww::eDOCPROPERTY;
{
static String sQuotes('\"');
const SwDocInfoField * pDocInfoField =
dynamic_cast<const SwDocInfoField *> (pFld);
if (pDocInfoField != NULL)
{
String sFieldname = pDocInfoField->GetFieldName();
xub_StrLen nIndex = sFieldname.Search(':');
if (nIndex != sFieldname.Len())
sFieldname = sFieldname.Copy(nIndex + 1);
sStr.Insert(sQuotes);
sStr.Insert(sFieldname);
sStr.Insert(sQuotes);
}
}
break;
default:
break;
}
if (eFld != ww::eNONE)
{
sStr.Insert(FieldString(eFld), 0);
GetExport().OutputField(pFld, eFld, sStr);
}
else
bWriteExpand = true;
}
break;
case RES_DATETIMEFLD:
if (FIXEDFLD & nSubType || !GetExport().GetNumberFmt(*pFld, sStr))
bWriteExpand = true;
else
{
ww::eField eFld = (DATEFLD & nSubType) ? ww::eDATE : ww::eTIME;
sStr.Insert(FieldString(eFld), 0);
GetExport().OutputField(pFld, eFld, sStr);
}
break;
case RES_DOCSTATFLD:
{
ww::eField eFld = ww::eNONE;
switch (nSubType)
{
case DS_PAGE:
eFld = ww::eNUMPAGE;
break;
case DS_WORD:
eFld = ww::eNUMWORDS;
break;
case DS_CHAR:
eFld = ww::eNUMCHARS;
break;
}
if (eFld != ww::eNONE)
{
sStr = FieldString(eFld);
GetNumberPara(sStr, *pFld);
GetExport().OutputField(pFld, eFld, sStr);
}
else
bWriteExpand = true;
}
break;
case RES_EXTUSERFLD:
{
ww::eField eFld = ww::eNONE;
switch (0xFF & nSubType)
{
case EU_FIRSTNAME:
case EU_NAME:
eFld = ww::eUSERNAME;
break;
case EU_SHORTCUT:
eFld = ww::eUSERINITIALS;
break;
case EU_STREET:
case EU_COUNTRY:
case EU_ZIP:
case EU_CITY:
eFld = ww::eUSERADDRESS;
break;
}
if (eFld != ww::eNONE)
{
sStr = FieldString(eFld);
GetExport().OutputField(pFld, eFld, sStr);
}
else
bWriteExpand = true;
}
break;
case RES_POSTITFLD:
//Sadly only possible for word in main document text
if (GetExport().nTxtTyp == TXT_MAINTEXT)
{
PostitField( pFld );
}
break;
case RES_INPUTFLD:
{
const SwInputField * pInputField =
dynamic_cast<const SwInputField *>(pFld);
if (pInputField->isFormField())
GetExport().DoFormText(pInputField);
else
{
sStr = FieldString(ww::eFILLIN);
sStr.APPEND_CONST_ASC("\"");
sStr += pFld->GetPar2();
sStr += '\"';
GetExport().OutputField(pFld, ww::eFILLIN, sStr);
}
}
break;
case RES_GETREFFLD:
{
ww::eField eFld = ww::eNONE;
const SwGetRefField& rRFld = *(SwGetRefField*)pFld;
switch (nSubType)
{
case REF_SETREFATTR:
case REF_BOOKMARK:
switch (pFld->GetFormat())
{
case REF_PAGE_PGDESC:
case REF_PAGE:
eFld = ww::ePAGEREF;
break;
default:
eFld = ww::eREF;
break;
}
sStr = FieldString(eFld);
sStr += GetExport().GetBookmarkName(nSubType,
&rRFld.GetSetRefName(), 0);
switch (pFld->GetFormat())
{
case REF_NUMBER:
sStr.APPEND_CONST_ASC(" \\r");
break;
case REF_NUMBER_NO_CONTEXT:
sStr.APPEND_CONST_ASC(" \\n");
break;
case REF_NUMBER_FULL_CONTEXT:
sStr.APPEND_CONST_ASC(" \\w");
break;
}
break;
case REF_FOOTNOTE:
case REF_ENDNOTE:
switch (pFld->GetFormat())
{
case REF_PAGE_PGDESC:
case REF_PAGE:
eFld = ww::ePAGEREF;
break;
case REF_UPDOWN:
eFld = ww::eREF;
break;
default:
eFld =
REF_ENDNOTE == nSubType ? ww::eNOTEREF : ww::eFOOTREF;
break;
}
sStr = FieldString(eFld);
sStr += GetExport().GetBookmarkName(nSubType, 0,
rRFld.GetSeqNo());
break;
}
if (eFld != ww::eNONE)
{
switch (pFld->GetFormat())
{
case REF_UPDOWN:
sStr.APPEND_CONST_ASC(" \\p");
break;
case REF_CHAPTER:
sStr.APPEND_CONST_ASC(" \\n");
break;
default:
break;
}
sStr.APPEND_CONST_ASC(" \\h "); // insert hyperlink
GetExport().OutputField(pFld, eFld, sStr);
}
else
bWriteExpand = true;
}
break;
case RES_COMBINED_CHARS:
{
/*
We need a font size to fill in the defaults, if these are overridden
(as they generally are) by character properties then those properties
win.
The fontsize that is used in MS for determing the defaults is always
the CJK fontsize even if the text is not in that language, in OOo the
largest fontsize used in the field is the one we should take, but
whatever we do, word will actually render using the fontsize set for
CJK text. Nevertheless we attempt to guess whether the script is in
asian or western text based up on the first character and use the
font size of that script as our default.
*/
sal_uInt16 nScript;
if( pBreakIt->GetBreakIter().is() )
nScript = pBreakIt->GetBreakIter()->getScriptType( pFld->GetPar1(), 0);
else
nScript = i18n::ScriptType::ASIAN;
long nHeight = ((SvxFontHeightItem&)(GetExport().GetItem(
GetWhichOfScript(RES_CHRATR_FONTSIZE,nScript)))).GetHeight();;
nHeight = (nHeight + 10) / 20; //Font Size in points;
/*
Divide the combined char string into its up and down part. Get the
font size and fill in the defaults as up == half the font size and
down == a fifth the font size
*/
xub_StrLen nAbove = (pFld->GetPar1().Len()+1)/2;
sStr = FieldString(ww::eEQ);
sStr.APPEND_CONST_ASC("\\o (\\s\\up ");
sStr += String::CreateFromInt32(nHeight/2);
sStr.Append('(');
sStr += String(pFld->GetPar1(),0,nAbove);
sStr.APPEND_CONST_ASC("), \\s\\do ");
sStr += String::CreateFromInt32(nHeight/5);
sStr.Append('(');
sStr += String(pFld->GetPar1(),nAbove,pFld->GetPar1().Len()-nAbove);
sStr.APPEND_CONST_ASC("))");
GetExport().OutputField(pFld, ww::eEQ, sStr);
}
break;
case RES_DROPDOWN:
bWriteExpand = DropdownField( pFld );
break;
case RES_CHAPTERFLD:
bWriteExpand = true;
if (GetExport().bOutKF && rField.GetTxtFld())
{
const SwTxtNode *pTxtNd = GetExport().GetHdFtPageRoot();
if (!pTxtNd)
{
if (const SwNode *pNd = GetExport().pCurPam->GetNode())
pTxtNd = pNd->GetTxtNode();
}
if (pTxtNd)
{
SwChapterField aCopy(*(const SwChapterField*)pFld);
aCopy.ChangeExpansion(*pTxtNd, false);
WriteExpand( &aCopy );
bWriteExpand = false;
}
}
break;
case RES_HIDDENTXTFLD:
{
String sExpand(pFld->GetPar2());
if (sExpand.Len())
{
HiddenField( *pFld );
}
}
break;
default:
bWriteExpand = true;
break;
}
if (bWriteExpand)
WriteExpand( pFld );
}
void AttributeOutputBase::TextFlyContent( const SwFmtFlyCnt& rFlyContent )
{
if ( GetExport().pOutFmtNode && GetExport().pOutFmtNode->ISA( SwCntntNode ) )
{
SwTxtNode* pTxtNd = (SwTxtNode*)GetExport().pOutFmtNode;
Point aLayPos;
aLayPos = pTxtNd->FindLayoutRect( false, &aLayPos ).Pos();
SwPosition aPos( *pTxtNd );
sw::Frame aFrm( *rFlyContent.GetFrmFmt(), aPos );
OutputFlyFrame_Impl( aFrm, aLayPos );
}
}
// TOXMarks fehlen noch
// Detaillierte Einstellungen zur Trennung erlaubt WW nur dokumentenweise.
// Man koennte folgende Mimik einbauen: Die Werte des Style "Standard" werden,
// falls vorhanden, in die Document Properties ( DOP ) gesetzt.
// ---
// ACK. Dieser Vorschlag passt exakt zu unserer Implementierung des Import,
// daher setze ich das gleich mal um. (KHZ, 07/15/2000)
void WW8AttributeOutput::ParaHyphenZone( const SvxHyphenZoneItem& rHyphenZone )
{
// sprmPFNoAutoHyph
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PFNoAutoHyph );
else
m_rWW8Export.pO->push_back( 44 );
m_rWW8Export.pO->push_back( rHyphenZone.IsHyphen() ? 0 : 1 );
}
void WW8AttributeOutput::ParaScriptSpace( const SfxBoolItem& rScriptSpace )
{
sal_uInt16 nId = 0;
if ( m_rWW8Export.bWrtWW8 )
switch ( rScriptSpace.Which() )
{
case RES_PARATR_SCRIPTSPACE: nId = NS_sprm::LN_PFAutoSpaceDE; break;
case RES_PARATR_HANGINGPUNCTUATION: nId = NS_sprm::LN_PFOverflowPunct; break;
case RES_PARATR_FORBIDDEN_RULES: nId = NS_sprm::LN_PFKinsoku; break;
}
if ( nId )
{
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( nId );
else
m_rWW8Export.pO->push_back( (sal_uInt8)nId );
m_rWW8Export.pO->push_back( rScriptSpace.GetValue() ? 1 : 0 );
}
}
void WW8AttributeOutput::ParaSnapToGrid( const SvxParaGridItem& rGrid )
{
// sprmPFUsePgsuSettings
// 97+ only
if ( !m_rWW8Export.bWrtWW8 )
return;
m_rWW8Export.InsUInt16( NS_sprm::LN_PFUsePgsuSettings );
m_rWW8Export.pO->push_back( rGrid.GetValue() );
}
void WW8AttributeOutput::ParaVerticalAlign( const SvxParaVertAlignItem& rAlign )
{
// sprmPWAlignFont
// 97+ only
if( !m_rWW8Export.bWrtWW8 )
return;
m_rWW8Export.InsUInt16( NS_sprm::LN_PWAlignFont );
sal_Int16 nVal = rAlign.GetValue();
switch ( nVal )
{
case SvxParaVertAlignItem::BASELINE:
nVal = 2;
break;
case SvxParaVertAlignItem::TOP:
nVal = 0;
break;
case SvxParaVertAlignItem::CENTER:
nVal = 1;
break;
case SvxParaVertAlignItem::BOTTOM:
nVal = 3;
break;
case SvxParaVertAlignItem::AUTOMATIC:
nVal = 4;
break;
default:
nVal = 4;
OSL_FAIL( "Unknown vert alignment" );
break;
}
m_rWW8Export.InsUInt16( nVal );
}
// NoHyphen: ich habe keine Entsprechung in der SW-UI und WW-UI gefunden
// RefMark, NoLineBreakHere fehlen noch
void WW8Export::WriteFtnBegin( const SwFmtFtn& rFtn, ww::bytes* pOutArr )
{
ww::bytes aAttrArr;
bool bAutoNum = !rFtn.GetNumStr().Len(); // Auto-Nummer
if( bAutoNum )
{
if( bWrtWW8 )
{
static const sal_uInt8 aSpec[] =
{
0x03, 0x6a, 0, 0, 0, 0, // sprmCObjLocation
0x55, 0x08, 1 // sprmCFSpec
};
aAttrArr.insert(aAttrArr.end(), aSpec, aSpec+sizeof(aSpec));
}
else
{
static sal_uInt8 const aSpec[] =
{
117, 1, // sprmCFSpec
68, 4, 0, 0, 0, 0 // sprmCObjLocation
};
aAttrArr.insert(aAttrArr.end(), aSpec, aSpec+sizeof(aSpec));
}
}
// sprmCIstd
const SwEndNoteInfo* pInfo;
if( rFtn.IsEndNote() )
pInfo = &pDoc->GetEndNoteInfo();
else
pInfo = &pDoc->GetFtnInfo();
const SwCharFmt* pCFmt = pOutArr
? pInfo->GetAnchorCharFmt( *pDoc )
: pInfo->GetCharFmt( *pDoc );
if( bWrtWW8 )
SwWW8Writer::InsUInt16( aAttrArr, NS_sprm::LN_CIstd );
else
aAttrArr.push_back( 80 );
SwWW8Writer::InsUInt16( aAttrArr, GetId( *pCFmt ) );
// fSpec-Attribut true
// Fuer Auto-Nummer muss ein Spezial-Zeichen
// in den Text und darum ein fSpec-Attribut
pChpPlc->AppendFkpEntry( Strm().Tell() );
if( bAutoNum )
WriteChar( 0x02 ); // Auto-Nummer-Zeichen
else
// User-Nummerierung
OutSwString( rFtn.GetNumStr(), 0, rFtn.GetNumStr().Len(),
IsUnicode(), RTL_TEXTENCODING_MS_1252 );
if( pOutArr )
{
// insert at start of array, so the "hard" attribute overrule the
// attributes of the character template
pOutArr->insert( pOutArr->begin(), aAttrArr.begin(), aAttrArr.end() );
}
else
{
ww::bytes aOutArr;
// insert at start of array, so the "hard" attribute overrule the
// attributes of the character template
aOutArr.insert( aOutArr.begin(), aAttrArr.begin(), aAttrArr.end() );
// write for the ftn number in the content, the font of the anchor
const SwTxtFtn* pTxtFtn = rFtn.GetTxtFtn();
if( pTxtFtn )
{
ww::bytes* pOld = pO;
pO = &aOutArr;
SfxItemSet aSet( pDoc->GetAttrPool(), RES_CHRATR_FONT,
RES_CHRATR_FONT );
pCFmt = pInfo->GetCharFmt( *pDoc );
aSet.Set( pCFmt->GetAttrSet() );
pTxtFtn->GetTxtNode().GetAttr( aSet, *pTxtFtn->GetStart(),
(*pTxtFtn->GetStart()) + 1 );
m_pAttrOutput->OutputItem( aSet.Get( RES_CHRATR_FONT ) );
pO = pOld;
}
pChpPlc->AppendFkpEntry( Strm().Tell(), aOutArr.size(),
aOutArr.data() );
}
}
static bool lcl_IsAtTxtEnd(const SwFmtFtn& rFtn)
{
bool bRet = true;
if( rFtn.GetTxtFtn() )
{
sal_uInt16 nWh = static_cast< sal_uInt16 >(rFtn.IsEndNote() ? RES_END_AT_TXTEND
: RES_FTN_AT_TXTEND);
const SwSectionNode* pSectNd = rFtn.GetTxtFtn()->GetTxtNode().
FindSectionNode();
while( pSectNd && FTNEND_ATPGORDOCEND ==
((const SwFmtFtnAtTxtEnd&)pSectNd->GetSection().GetFmt()->
GetFmtAttr( nWh, true)).GetValue() )
pSectNd = pSectNd->StartOfSectionNode()->FindSectionNode();
if (!pSectNd)
bRet = false; // the is ftn/end collected at Page- or Doc-End
}
return bRet;
}
void AttributeOutputBase::TextFootnote( const SwFmtFtn& rFtn )
{
sal_uInt16 nTyp;
if ( rFtn.IsEndNote() )
{
nTyp = REF_ENDNOTE;
if ( GetExport().bEndAtTxtEnd )
GetExport().bEndAtTxtEnd = lcl_IsAtTxtEnd( rFtn );
}
else
{
nTyp = REF_FOOTNOTE;
if ( GetExport().bFtnAtTxtEnd )
GetExport().bFtnAtTxtEnd = lcl_IsAtTxtEnd( rFtn );
}
// if any reference to this footnote/endnote then insert an internal
// Bookmark.
String sBkmkNm;
if ( GetExport().HasRefToObject( nTyp, 0, rFtn.GetTxtFtn()->GetSeqRefNo() ))
{
sBkmkNm = GetExport().GetBookmarkName( nTyp, 0,
rFtn.GetTxtFtn()->GetSeqRefNo() );
GetExport().AppendBookmark( sBkmkNm );
}
TextFootnote_Impl( rFtn );
if ( sBkmkNm.Len() )
GetExport().AppendBookmark( sBkmkNm ); // FIXME: Why is it added twice? Shouldn't this one go to WW8AttributeOuput::TextFootnote_Impl()?
}
void WW8AttributeOutput::TextFootnote_Impl( const SwFmtFtn& rFtn )
{
WW8_WrPlcFtnEdn* pFtnEnd;
if ( rFtn.IsEndNote() )
pFtnEnd = m_rWW8Export.pEdn;
else
pFtnEnd = m_rWW8Export.pFtn;
pFtnEnd->Append( m_rWW8Export.Fc2Cp( m_rWW8Export.Strm().Tell() ), rFtn );
m_rWW8Export.WriteFtnBegin( rFtn, m_rWW8Export.pO );
}
void WW8AttributeOutput::TextCharFormat( const SwFmtCharFmt& rCharFmt )
{
if( rCharFmt.GetCharFmt() )
{
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_CIstd );
else
m_rWW8Export.pO->push_back( 80 );
m_rWW8Export.InsUInt16( m_rWW8Export.GetId( *rCharFmt.GetCharFmt() ) );
}
}
/*
See ww8par6.cxx Read_DoubleLine for some more info
*/
void WW8AttributeOutput::CharTwoLines( const SvxTwoLinesItem& rTwoLines )
{
// #i28331# - check that bOn is set
if ( rTwoLines.GetValue() )
{
//97+ only
if( !m_rWW8Export.bWrtWW8 )
return;
m_rWW8Export.InsUInt16( NS_sprm::LN_CEastAsianLayout );
m_rWW8Export.pO->push_back( (sal_uInt8)0x06 ); //len 6
m_rWW8Export.pO->push_back( (sal_uInt8)0x02 );
sal_Unicode cStart = rTwoLines.GetStartBracket();
sal_Unicode cEnd = rTwoLines.GetEndBracket();
/*
As per usual we have problems. We can have seperate left and right brackets
in OOo, it doesn't appear that you can in word. Also in word there appear
to only be a limited number of possibilities, we can use pretty much
anything.
So if we have none, we export none, if either bracket is set to a known
word type we export both as that type (with the bracket winning out in
the case of a conflict simply being the order of test here.
Upshot being a documented created in word will be reexported with no
ill effects.
*/
sal_uInt16 nType;
if (!cStart && !cEnd)
nType = 0;
else if ((cStart == '{') || (cEnd == '}'))
nType = 4;
else if ((cStart == '<') || (cEnd == '>'))
nType = 3;
else if ((cStart == '[') || (cEnd == ']'))
nType = 2;
else
nType = 1;
m_rWW8Export.InsUInt16( nType );
static const sal_uInt8 aZeroArr[ 3 ] = { 0, 0, 0 };
m_rWW8Export.pO->insert( m_rWW8Export.pO->end(), aZeroArr, aZeroArr+3);
}
}
void AttributeOutputBase::ParaNumRule( const SwNumRuleItem& rNumRule )
{
const SwTxtNode* pTxtNd = 0;
sal_uInt16 nNumId;
sal_uInt8 nLvl = 0;
if ( rNumRule.GetValue().Len() )
{
const SwNumRule* pRule = GetExport().pDoc->FindNumRulePtr(
rNumRule.GetValue() );
if ( pRule && USHRT_MAX != ( nNumId = GetExport().GetId( *pRule ) ) )
{
++nNumId;
if ( GetExport().pOutFmtNode )
{
if ( GetExport().pOutFmtNode->ISA( SwCntntNode ) )
{
pTxtNd = (SwTxtNode*)GetExport().pOutFmtNode;
if( pTxtNd->IsCountedInList())
{
nLvl = static_cast< sal_uInt8 >(pTxtNd->GetActualListLevel());
if ( pTxtNd->IsListRestart() )
{
sal_uInt16 nStartWith = static_cast< sal_uInt16 >( pTxtNd->GetActualListStartValue() );
nNumId = GetExport().DuplicateNumRule( pRule, nLvl, nStartWith );
if ( USHRT_MAX != nNumId )
++nNumId;
}
}
else
{
// #i44815# adjust numbering for numbered paragraphs
// without number (NO_NUMLEVEL). These paragaphs
// will receive a list id 0, which WW interprets as
// 'no number'.
nNumId = 0;
}
}
else if ( GetExport().pOutFmtNode->ISA( SwTxtFmtColl ) )
{
const SwTxtFmtColl* pC = (SwTxtFmtColl*)GetExport().pOutFmtNode;
if ( pC && pC->IsAssignedToListLevelOfOutlineStyle() )
nLvl = static_cast< sal_uInt8 >( pC->GetAssignedOutlineStyleLevel() ); //<-end,zhaojianwei
}
}
}
else
nNumId = USHRT_MAX;
}
else
nNumId = 0;
if ( USHRT_MAX != nNumId )
{
if ( nLvl >= WW8ListManager::nMaxLevel )
nLvl = WW8ListManager::nMaxLevel - 1;
ParaNumRule_Impl( pTxtNd, nLvl, nNumId );
}
}
void WW8AttributeOutput::ParaNumRule_Impl( const SwTxtNode* pTxtNd, sal_Int32 nLvl, sal_Int32 nNumId )
{
if ( m_rWW8Export.bWrtWW8 )
{
// write sprmPIlvl and sprmPIlfo
SwWW8Writer::InsUInt16( *m_rWW8Export.pO, NS_sprm::LN_PIlvl );
m_rWW8Export.pO->push_back( ::sal::static_int_cast<sal_uInt8>(nLvl) );
SwWW8Writer::InsUInt16( *m_rWW8Export.pO, NS_sprm::LN_PIlfo );
SwWW8Writer::InsUInt16( *m_rWW8Export.pO, ::sal::static_int_cast<sal_uInt16>(nNumId) );
}
else if ( pTxtNd && m_rWW8Export.Out_SwNum( pTxtNd ) ) // NumRules
m_rWW8Export.pSepx->SetNum( pTxtNd );
}
/* File FRMATR.HXX */
void WW8AttributeOutput::FormatFrameSize( const SwFmtFrmSize& rSize )
{
if( m_rWW8Export.bOutFlyFrmAttrs ) // Flys
{
if( m_rWW8Export.bOutGrf )
return; // Fly um Grafik -> Auto-Groesse
//???? was ist bei Prozentangaben ???
if ( rSize.GetWidth() && rSize.GetWidthSizeType() == ATT_FIX_SIZE)
{
//"sprmPDxaWidth"
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PDxaWidth );
else
m_rWW8Export.pO->push_back( 28 );
m_rWW8Export.InsUInt16( (sal_uInt16)rSize.GetWidth() );
}
if ( rSize.GetHeight() )
{
// sprmPWHeightAbs
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PWHeightAbs );
else
m_rWW8Export.pO->push_back( 45 );
sal_uInt16 nH = 0;
switch ( rSize.GetHeightSizeType() )
{
case ATT_VAR_SIZE: break;
case ATT_FIX_SIZE: nH = (sal_uInt16)rSize.GetHeight() & 0x7fff; break;
default: nH = (sal_uInt16)rSize.GetHeight() | 0x8000; break;
}
m_rWW8Export.InsUInt16( nH );
}
}
else if( m_rWW8Export.bOutPageDescs ) // PageDesc : Breite + Hoehe
{
if( m_rWW8Export.pAktPageDesc->GetLandscape() )
{
/*sprmSBOrientation*/
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SBOrientation );
else
m_rWW8Export.pO->push_back( 162 );
m_rWW8Export.pO->push_back( 2 );
}
/*sprmSXaPage*/
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SXaPage );
else
m_rWW8Export.pO->push_back( 164 );
m_rWW8Export.InsUInt16(
msword_cast<sal_uInt16>(SvxPaperInfo::GetSloppyPaperDimension(rSize.GetWidth())));
/*sprmSYaPage*/
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SYaPage );
else
m_rWW8Export.pO->push_back( 165 );
m_rWW8Export.InsUInt16(
msword_cast<sal_uInt16>(SvxPaperInfo::GetSloppyPaperDimension(rSize.GetHeight())));
}
}
// FillOrder fehlt noch
// ReplaceCr() wird fuer Pagebreaks und Pagedescs gebraucht. Es wird ein
// bereits geschriebenes CR durch ein Break-Zeichen ersetzt. Replace muss
// direkt nach Schreiben des CR gerufen werden.
// Rueckgabe: FilePos des ersetzten CRs + 1 oder 0 fuer nicht ersetzt
sal_uLong WW8Export::ReplaceCr( sal_uInt8 nChar )
{
OSL_ENSURE( nChar, "gegen 0 ersetzt bringt WW97/95 zum Absturz" );
bool bReplaced = false;
SvStream& rStrm = Strm();
sal_uLong nRetPos = 0, nPos = rStrm.Tell();
//If there is at least two characters already output
if (nPos - (IsUnicode() ? 2 : 1) >= sal_uLong(pFib->fcMin))
{
sal_uInt8 nBCode=0;
sal_uInt16 nUCode=0;
rStrm.SeekRel(IsUnicode() ? -2 : -1);
if (IsUnicode())
rStrm >> nUCode;
else
{
rStrm >> nBCode;
nUCode = nBCode;
}
//If the last char was a cr
if (nUCode == 0x0d) // CR ?
{
if ((nChar == 0x0c) &&
(nPos - (IsUnicode() ? 4 : 2) >= sal_uLong(pFib->fcMin)))
{
rStrm.SeekRel( IsUnicode() ? -4 : -2 );
if (IsUnicode())
rStrm >> nUCode;
else
{
rStrm >> nUCode;
nUCode = nBCode;
}
}
else
{
rStrm.SeekRel( IsUnicode() ? -2 : -1 );
nUCode = 0x0;
}
//And the para is not of len 0, then replace this cr with the mark
if( nChar == 0x0e || nUCode == 0x0d )
bReplaced = false;
else
{
bReplaced = true;
WriteChar(nChar);
nRetPos = nPos;
}
}
else if ((nUCode == 0x0c) && (nChar == 0x0e))
{
// a column break after a section has no effect in writer
bReplaced = true;
}
rStrm.Seek( nPos );
}
else
bReplaced = true;
if (!bReplaced)
{
// then write as normal char
WriteChar(nChar);
pPiece->SetParaBreak();
pPapPlc->AppendFkpEntry(rStrm.Tell());
pChpPlc->AppendFkpEntry(rStrm.Tell());
nRetPos = rStrm.Tell();
}
return nRetPos;
}
void WW8AttributeOutput::TableRowEnd(sal_uInt32 nDepth)
{
if ( nDepth == 1 )
m_rWW8Export.WriteChar( (sal_uInt8)0x07 );
else if ( nDepth > 1 )
m_rWW8Export.WriteChar( (sal_uInt8)0x0d );
//Technically in a word document this is a different value for a row ends
//that are not row ends directly after a cell with a graphic. But it
//doesn't seem to make a difference
//pMagicTable->Append(Fc2Cp(Strm().Tell()),0x1B6);
}
void AttributeOutputBase::FormatPageDescription( const SwFmtPageDesc& rPageDesc )
{
if ( GetExport().bStyDef && GetExport().pOutFmtNode && GetExport().pOutFmtNode->ISA( SwTxtFmtColl ) )
{
const SwTxtFmtColl* pC = (SwTxtFmtColl*)GetExport().pOutFmtNode;
if ( (SFX_ITEM_SET != pC->GetItemState( RES_BREAK, false ) ) && rPageDesc.KnowsPageDesc() )
FormatBreak( SvxFmtBreakItem( SVX_BREAK_PAGE_BEFORE, RES_BREAK ) );
}
}
void WW8AttributeOutput::PageBreakBefore( bool bBreak )
{
// sprmPPageBreakBefore/sprmPFPageBreakBefore
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PFPageBreakBefore );
else
m_rWW8Export.pO->push_back( 9 );
m_rWW8Export.pO->push_back( bBreak ? 1 : 0 );
}
// Breaks schreiben nichts in das Ausgabe-Feld rWrt.pO,
// sondern nur in den Text-Stream ( Bedingung dafuer, dass sie von Out_Break...
// gerufen werden duerfen )
void AttributeOutputBase::FormatBreak( const SvxFmtBreakItem& rBreak )
{
if ( GetExport().bStyDef )
{
switch ( rBreak.GetBreak() )
{
case SVX_BREAK_NONE:
case SVX_BREAK_PAGE_BEFORE:
case SVX_BREAK_PAGE_BOTH:
PageBreakBefore( rBreak.GetValue() );
break;
default:
break;
}
}
else if ( !GetExport().mpParentFrame )
{
sal_uInt8 nC = 0;
bool bBefore = false;
// #i76300# - Note: Can only be <true>, if <bBefore> equals <false>.
bool bCheckForFollowPageDesc = false;
switch ( rBreak.GetBreak() )
{
case SVX_BREAK_NONE: // Ausgeschaltet
if ( !GetExport().bBreakBefore )
PageBreakBefore( false );
return;
case SVX_BREAK_COLUMN_BEFORE: // ColumnBreak
bBefore = true;
// no break;
case SVX_BREAK_COLUMN_AFTER:
case SVX_BREAK_COLUMN_BOTH:
if ( GetExport().Sections().CurrentNumberOfColumns( *GetExport().pDoc ) > 1 )
{
nC = msword::ColumnBreak;
}
break;
case SVX_BREAK_PAGE_BEFORE: // PageBreak
// From now on(fix for #i77900#) we prefer to save a page break as
// paragraph attribute, this has to be done after the export of the
// paragraph ( => !GetExport().bBreakBefore )
if ( !GetExport().bBreakBefore )
PageBreakBefore( true );
break;
case SVX_BREAK_PAGE_AFTER:
case SVX_BREAK_PAGE_BOTH:
nC = msword::PageBreak;
// #i76300# - check for follow page description,
// if current writing attributes of a paragraph.
if ( dynamic_cast< const SwTxtNode* >( GetExport().pOutFmtNode ) &&
GetExport().GetCurItemSet() )
{
bCheckForFollowPageDesc = true;
}
break;
default:
break;
}
if ( ( bBefore == GetExport().bBreakBefore ) && nC )
{
// #i76300#
bool bFollowPageDescWritten = false;
if ( bCheckForFollowPageDesc && !bBefore )
{
bFollowPageDescWritten =
GetExport().OutputFollowPageDesc( GetExport().GetCurItemSet(),
dynamic_cast<const SwTxtNode*>( GetExport().pOutFmtNode ) );
}
if ( !bFollowPageDescWritten )
{
SectionBreak( nC );
}
}
}
}
void WW8AttributeOutput::SectionBreak( sal_uInt8 nC, const WW8_SepInfo* /*pSectionInfo*/ )
{
m_rWW8Export.ReplaceCr( nC );
}
sal_uInt32 AttributeOutputBase::GridCharacterPitch( const SwTextGridItem& rGrid ) const
{
MSWordStyles * pStyles = GetExport().pStyles;
SwFmt * pSwFmt = pStyles->GetSwFmt();
sal_uInt32 nPageCharSize = 0;
if (pSwFmt != NULL)
{
nPageCharSize = ItemGet<SvxFontHeightItem>
(*pSwFmt, RES_CHRATR_FONTSIZE).GetHeight();
}
sal_uInt16 nPitch = rGrid.IsSquaredMode() ? rGrid.GetBaseHeight() :
rGrid.GetBaseWidth( );
sal_Int32 nCharWidth = nPitch - nPageCharSize;
sal_Int32 nFraction = nCharWidth % 20;
if ( nCharWidth < 0 )
nFraction = 20 + nFraction;
nFraction = ( nFraction * 0xFFF ) / 20;
nFraction = ( nFraction & 0x00000FFF );
sal_Int32 nMain = nCharWidth / 20;
if ( nCharWidth < 0 )
nMain -= 1;
nMain = nMain * 0x1000;
nMain = ( nMain & 0xFFFFF000 );
return sal_uInt32( nFraction + nMain );
}
void WW8AttributeOutput::FormatTextGrid( const SwTextGridItem& rGrid )
{
if ( m_rWW8Export.bOutPageDescs && m_rWW8Export.bWrtWW8 )
{
sal_uInt16 nGridType = 0;
switch ( rGrid.GetGridType() )
{
default:
OSL_FAIL("Unknown grid type");
case GRID_NONE:
nGridType = 0;
break;
case GRID_LINES_ONLY:
nGridType = 2;
break;
case GRID_LINES_CHARS:
if ( rGrid.IsSnapToChars() )
nGridType = 3;
else
nGridType = 1;
break;
}
m_rWW8Export.InsUInt16( NS_sprm::LN_SClm );
m_rWW8Export.InsUInt16( nGridType );
sal_uInt16 nHeight = rGrid.GetBaseHeight() + rGrid.GetRubyHeight();
m_rWW8Export.InsUInt16( NS_sprm::LN_SDyaLinePitch );
m_rWW8Export.InsUInt16( nHeight );
m_rWW8Export.InsUInt16( NS_sprm::LN_SDxtCharSpace );
m_rWW8Export.InsUInt32( GridCharacterPitch( rGrid ) );
}
}
void WW8AttributeOutput::FormatPaperBin( const SvxPaperBinItem& rPaperBin )
{
if ( m_rWW8Export.bOutPageDescs )
{
sal_uInt16 nVal;
switch ( rPaperBin.GetValue() )
{
case 0: nVal = 15; break; // Automatically select
case 1: nVal = 1; break; // Upper paper tray
case 2: nVal = 4; break; // Manual paper feed
default: nVal = 0; break;
}
if ( nVal )
{
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( m_rWW8Export.bOutFirstPage? NS_sprm::LN_SDmBinFirst: NS_sprm::LN_SDmBinOther );
else
m_rWW8Export.pO->push_back( m_rWW8Export.bOutFirstPage? 140: 141 );
m_rWW8Export.InsUInt16( nVal );
}
}
}
void WW8AttributeOutput::FormatLRSpace( const SvxLRSpaceItem& rLR )
{
// Flys fehlen noch ( siehe RTF )
if ( m_rWW8Export.bOutFlyFrmAttrs ) // Flys
{
// sprmPDxaFromText10
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PDxaFromText10 );
else
m_rWW8Export.pO->push_back( 49 );
// Mittelwert nehmen, da WW nur 1 Wert kennt
m_rWW8Export.InsUInt16( (sal_uInt16) ( ( rLR.GetLeft() + rLR.GetRight() ) / 2 ) );
}
else if ( m_rWW8Export.bOutPageDescs ) // PageDescs
{
sal_uInt16 nLDist, nRDist;
const SfxPoolItem* pItem = m_rWW8Export.HasItem( RES_BOX );
if ( pItem )
{
nRDist = ((SvxBoxItem*)pItem)->CalcLineSpace( BOX_LINE_LEFT );
nLDist = ((SvxBoxItem*)pItem)->CalcLineSpace( BOX_LINE_RIGHT );
}
else
nLDist = nRDist = 0;
nLDist = nLDist + (sal_uInt16)rLR.GetLeft();
nRDist = nRDist + (sal_uInt16)rLR.GetRight();
// sprmSDxaLeft
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SDxaLeft );
else
m_rWW8Export.pO->push_back( 166 );
m_rWW8Export.InsUInt16( nLDist );
// sprmSDxaRight
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SDxaRight );
else
m_rWW8Export.pO->push_back( 167 );
m_rWW8Export.InsUInt16( nRDist );
}
else
{ // normale Absaetze
// sprmPDxaLeft
if( m_rWW8Export.bWrtWW8 )
{
m_rWW8Export.InsUInt16( 0x845E ); //asian version ?
m_rWW8Export.InsUInt16( (sal_uInt16)rLR.GetTxtLeft() );
}
else
{
m_rWW8Export.pO->push_back( 17 );
m_rWW8Export.InsUInt16( (sal_uInt16)rLR.GetTxtLeft() );
}
// sprmPDxaRight
if( m_rWW8Export.bWrtWW8 )
{
m_rWW8Export.InsUInt16( 0x845D ); //asian version ?
m_rWW8Export.InsUInt16( (sal_uInt16)rLR.GetRight() );
}
else
{
m_rWW8Export.pO->push_back( 16 );
m_rWW8Export.InsUInt16( (sal_uInt16)rLR.GetRight() );
}
// sprmPDxaLeft1
if( m_rWW8Export.bWrtWW8 )
{
m_rWW8Export.InsUInt16( 0x8460 ); //asian version ?
m_rWW8Export.InsUInt16( rLR.GetTxtFirstLineOfst() );
}
else
{
m_rWW8Export.pO->push_back( 19 );
m_rWW8Export.InsUInt16( rLR.GetTxtFirstLineOfst() );
}
}
}
void WW8AttributeOutput::FormatULSpace( const SvxULSpaceItem& rUL )
{
// Flys fehlen noch ( siehe RTF )
if ( m_rWW8Export.bOutFlyFrmAttrs ) // Flys
{
// sprmPDyaFromText
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PDyaFromText );
else
m_rWW8Export.pO->push_back( 48 );
// Mittelwert nehmen, da WW nur 1 Wert kennt
m_rWW8Export.InsUInt16( (sal_uInt16) ( ( rUL.GetUpper() + rUL.GetLower() ) / 2 ) );
}
else if ( m_rWW8Export.bOutPageDescs ) // Page-UL
{
OSL_ENSURE( m_rWW8Export.GetCurItemSet(), "Impossible" );
if ( !m_rWW8Export.GetCurItemSet() )
return;
HdFtDistanceGlue aDistances( *m_rWW8Export.GetCurItemSet() );
if ( aDistances.HasHeader() )
{
//sprmSDyaHdrTop
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SDyaHdrTop );
else
m_rWW8Export.pO->push_back( 156 );
m_rWW8Export.InsUInt16( aDistances.dyaHdrTop );
}
// sprmSDyaTop
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SDyaTop );
else
m_rWW8Export.pO->push_back( 168 );
m_rWW8Export.InsUInt16( aDistances.dyaTop );
if ( aDistances.HasFooter() )
{
//sprmSDyaHdrBottom
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SDyaHdrBottom );
else
m_rWW8Export.pO->push_back( 157 );
m_rWW8Export.InsUInt16( aDistances.dyaHdrBottom );
}
//sprmSDyaBottom
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SDyaBottom );
else
m_rWW8Export.pO->push_back( 169 );
m_rWW8Export.InsUInt16( aDistances.dyaBottom );
}
else
{
// sprmPDyaBefore
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PDyaBefore );
else
m_rWW8Export.pO->push_back( 21 );
m_rWW8Export.InsUInt16( rUL.GetUpper() );
// sprmPDyaAfter
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PDyaAfter );
else
m_rWW8Export.pO->push_back( 22 );
m_rWW8Export.InsUInt16( rUL.GetLower() );
}
}
// Print, Opaque, Protect fehlen noch
void WW8AttributeOutput::FormatSurround( const SwFmtSurround& rSurround )
{
if ( m_rWW8Export.bOutFlyFrmAttrs )
{
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PWr );
else
m_rWW8Export.pO->push_back( 37 );
m_rWW8Export.pO->push_back(
( SURROUND_NONE != rSurround.GetSurround() ) ? 2 : 1 );
}
}
void WW8AttributeOutput::FormatVertOrientation( const SwFmtVertOrient& rFlyVert )
{
//!!!! Ankertyp und entsprechende Umrechnung fehlt noch
if ( m_rWW8Export.bOutFlyFrmAttrs )
{
short nPos;
switch( rFlyVert.GetVertOrient() )
{
case text::VertOrientation::NONE:
nPos = (short)rFlyVert.GetPos();
break;
case text::VertOrientation::CENTER:
case text::VertOrientation::LINE_CENTER:
nPos = -8;
break;
case text::VertOrientation::BOTTOM:
case text::VertOrientation::LINE_BOTTOM:
nPos = -12;
break;
case text::VertOrientation::TOP:
case text::VertOrientation::LINE_TOP:
default:
nPos = -4;
break;
}
// sprmPDyaAbs
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PDyaAbs );
else
m_rWW8Export.pO->push_back( 27 );
m_rWW8Export.InsUInt16( nPos );
}
}
void WW8AttributeOutput::FormatHorizOrientation( const SwFmtHoriOrient& rFlyHori )
{
if ( !m_rWW8Export.mpParentFrame )
{
OSL_ENSURE( m_rWW8Export.mpParentFrame, "HoriOrient without mpParentFrame !!" );
return;
}
//!!!! Ankertyp und entsprechende Umrechnung fehlt noch
if ( m_rWW8Export.bOutFlyFrmAttrs )
{
short nPos;
switch( rFlyHori.GetHoriOrient() )
{
case text::HoriOrientation::NONE:
nPos = (short)rFlyHori.GetPos();
if( !nPos )
nPos = 1; // WW: 0 ist reserviert
break;
case text::HoriOrientation::LEFT:
nPos = rFlyHori.IsPosToggle() ? -12 : 0;
break;
case text::HoriOrientation::RIGHT:
nPos = rFlyHori.IsPosToggle() ? -16 : -8;
break;
case text::HoriOrientation::CENTER:
case text::HoriOrientation::FULL: // FULL nur fuer Tabellen
default:
nPos = -4;
break;
}
// sprmPDxaAbs
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PDxaAbs );
else
m_rWW8Export.pO->push_back( 26 );
m_rWW8Export.InsUInt16( nPos );
}
}
void WW8AttributeOutput::FormatAnchor( const SwFmtAnchor& rAnchor )
{
OSL_ENSURE( m_rWW8Export.mpParentFrame, "Anchor without mpParentFrame !!" );
if ( m_rWW8Export.bOutFlyFrmAttrs )
{
sal_uInt8 nP = 0;
switch ( rAnchor.GetAnchorId() )
{
case FLY_AT_PAGE:
// Vert: Page | Horz: Page
nP |= (1 << 4) | (2 << 6);
break;
// Im Fall eine Flys als Zeichen: Absatz-gebunden setzen!!!
case FLY_AT_FLY:
case FLY_AT_CHAR:
case FLY_AT_PARA:
case FLY_AS_CHAR:
// Vert: Page | Horz: Page
nP |= (2 << 4) | (0 << 6);
break;
default:
break;
}
// sprmPPc
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PPc );
else
m_rWW8Export.pO->push_back( 29 );
m_rWW8Export.pO->push_back( nP );
}
}
void WW8AttributeOutput::FormatBackground( const SvxBrushItem& rBrush )
{
// WW cannot have background in a section
if ( !m_rWW8Export.bOutPageDescs )
{
WW8_SHD aSHD;
m_rWW8Export.TransBrush( rBrush.GetColor(), aSHD );
// sprmPShd
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PShd );
else
m_rWW8Export.pO->push_back(47);
m_rWW8Export.InsUInt16( aSHD.GetValue() );
// Quite a few unknowns, some might be transparency or something
// of that nature...
if ( m_rWW8Export.bWrtWW8 )
{
m_rWW8Export.InsUInt16( 0xC64D );
m_rWW8Export.pO->push_back( 10 );
m_rWW8Export.InsUInt32( 0xFF000000 );
m_rWW8Export.InsUInt32( SuitableBGColor( rBrush.GetColor().GetColor() ) );
m_rWW8Export.InsUInt16( 0x0000 );
}
}
}
WW8_BRC WW8Export::TranslateBorderLine(const SvxBorderLine& rLine,
sal_uInt16 nDist, bool bShadow)
{
// M.M. This function writes out border lines to the word format similar to
// what SwRTFWriter::OutRTFBorder does in the RTF filter Eventually it
// would be nice if all this functionality was in the one place
WW8_BRC aBrc;
sal_uInt16 nWidth = rLine.GetWidth();
sal_uInt8 brcType = 0, nColCode = 0;
if( nWidth ) // Linie ?
{
// BRC.brcType
bool bThick = !rLine.isDouble() && !bWrtWW8 && nWidth > 75;
if( bThick )
brcType = 2;
else
{
brcType = 0;
if ( bWrtWW8 )
{
// All the border types values are available on
// http://msdn.microsoft.com/en-us/library/dd908142%28v=office.12%29.aspx
switch ( rLine.GetStyle( ) )
{
case ::editeng::SOLID:
{
if ( rLine.GetWidth( ) == DEF_LINE_WIDTH_0 )
brcType = 5;
else
brcType = 1;
}
break;
case ::editeng::DOTTED:
brcType = 6;
break;
case ::editeng::DASHED:
brcType = 7;
break;
case ::editeng::DOUBLE:
brcType = 3;
break;
case ::editeng::THINTHICK_SMALLGAP:
brcType = 11;
break;
case ::editeng::THINTHICK_MEDIUMGAP:
brcType = 14;
break;
case ::editeng::THINTHICK_LARGEGAP:
brcType = 17;
break;
case ::editeng::THICKTHIN_SMALLGAP:
brcType = 12;
break;
case ::editeng::THICKTHIN_MEDIUMGAP:
brcType = 15;
break;
case ::editeng::THICKTHIN_LARGEGAP:
brcType = 18;
break;
case ::editeng::EMBOSSED:
brcType = 24;
break;
case ::editeng::ENGRAVED:
brcType = 25;
break;
case ::editeng::OUTSET:
brcType = 26;
break;
case ::editeng::INSET:
brcType = 27;
break;
default:
break;
}
}
}
// BRC.dxpLineWidth
if( bThick )
nWidth /= 2;
if( bWrtWW8 )
{
// Angabe in 8tel Punkten, also durch 2.5, da 1 Punkt = 20 Twips
nWidth = (( nWidth * 8 ) + 10 ) / 20;
if( 0xff < nWidth )
nWidth = 0xff;
}
else
{
// Angabe in 0.75 pt
nWidth = ( nWidth + 7 ) / 15;
if( nWidth > 5 )
nWidth = 5;
if ( ::editeng::DOTTED == rLine.GetStyle( ) )
nWidth = 6;
else if ( ::editeng::DASHED == rLine.GetStyle( ) )
nWidth = 7;
}
if( 0 == nWidth ) // ganz duenne Linie
nWidth = 1; // nicht weglassen
// BRC.ico
nColCode = TransCol( rLine.GetColor() );
}
// BRC.dxpSpace
sal_uInt16 nLDist = nDist;
nLDist /= 20; // Masseinheit : pt
if( nLDist > 0x1f )
nLDist = 0x1f;
if( bWrtWW8 )
{
aBrc.aBits1[0] = sal_uInt8(nWidth);
aBrc.aBits1[1] = brcType;
aBrc.aBits2[0] = nColCode;
aBrc.aBits2[1] = sal_uInt8(nLDist);
// fShadow, keine weiteren Einstellungen im WW moeglich
if( bShadow )
aBrc.aBits2[1] |= 0x20;
}
else
{
sal_uInt16 aBits = nWidth + ( brcType << 3 );
aBits |= (nColCode & 0x1f) << 6;
aBits |= nLDist << 11;
// fShadow, keine weiteren Einstellungen im WW moeglich
if( bShadow )
aBits |= 0x20;
ShortToSVBT16( aBits, aBrc.aBits1);
}
return aBrc;
}
// MakeBorderLine() bekommt einen WW8Bytes* uebergeben, um die Funktion
// auch fuer die Tabellen-Umrandungen zu benutzen.
// Wenn nSprmNo == 0, dann wird der Opcode nicht ausgegeben.
// bShadow darf bei Tabellenzellen *nicht* gesetzt sein !
void WW8Export::Out_BorderLine(ww::bytes& rO, const SvxBorderLine* pLine,
sal_uInt16 nDist, sal_uInt16 nSprmNo, bool bShadow)
{
OSL_ENSURE( ( nSprmNo == 0 ) ||
( nSprmNo >= 38 && nSprmNo <= 41 ) ||
( nSprmNo >= NS_sprm::LN_PBrcTop && nSprmNo <= NS_sprm::LN_PBrcRight ) ||
( nSprmNo >= NS_sprm::LN_SBrcTop && nSprmNo <= NS_sprm::LN_SBrcRight ),
"Sprm for border out is of range" );
WW8_BRC aBrc;
if (pLine)
aBrc = TranslateBorderLine( *pLine, nDist, bShadow );
if( bWrtWW8 )
{
// WW97-SprmIds
if ( nSprmNo != 0 )
SwWW8Writer::InsUInt16( rO, nSprmNo );
rO.insert( rO.end(), aBrc.aBits1, aBrc.aBits1+2 );
rO.insert( rO.end(), aBrc.aBits2, aBrc.aBits2+2 );
}
else
{
// WW95-SprmIds
if ( nSprmNo != 0 )
rO.push_back( static_cast<sal_uInt8>( nSprmNo ) );
rO.insert( rO.end(), aBrc.aBits1, aBrc.aBits1+2 );
}
}
// FormatBox1() ist fuer alle Boxen ausser in Tabellen.
// es wird pO des WW8Writers genommen
void WW8Export::Out_SwFmtBox(const SvxBoxItem& rBox, bool bShadow)
{
if ( bOutPageDescs && !bWrtWW8 )
return; // no page ouline in WW6
static const sal_uInt16 aBorders[] =
{
BOX_LINE_TOP, BOX_LINE_LEFT, BOX_LINE_BOTTOM, BOX_LINE_RIGHT
};
static const sal_uInt16 aPBrc[] =
{
NS_sprm::LN_PBrcTop, NS_sprm::LN_PBrcLeft, NS_sprm::LN_PBrcBottom, NS_sprm::LN_PBrcRight
};
static const sal_uInt16 aSBrc[] =
{
NS_sprm::LN_SBrcTop, NS_sprm::LN_SBrcLeft, NS_sprm::LN_SBrcBottom, NS_sprm::LN_SBrcRight
};
static const sal_uInt16 aWW6PBrc[] =
{
38, 39, 40, 41
};
const sal_uInt16* pBrd = aBorders;
for( sal_uInt16 i = 0; i < 4; ++i, ++pBrd )
{
const SvxBorderLine* pLn = rBox.GetLine( *pBrd );
sal_uInt16 nSprmNo = 0;
if ( !bWrtWW8 )
nSprmNo = aWW6PBrc[i];
else if ( bOutPageDescs )
nSprmNo = aSBrc[i];
else
nSprmNo = aPBrc[i];
Out_BorderLine( *pO, pLn, rBox.GetDistance( *pBrd ), nSprmNo, bShadow );
}
}
// FormatBox2() ist fuer TC-Strukturen in Tabellen. Der Sprm-Opcode
// wird nicht geschrieben, da es in der TC-Structur ohne Opcode gepackt ist.
// dxpSpace wird immer 0, da WW das in Tabellen so verlangt
// ( Tabellenumrandungen fransen sonst aus )
// Ein WW8Bytes-Ptr wird als Ausgabe-Parameter uebergeben
void WW8Export::Out_SwFmtTableBox( ww::bytes& rO, const SvxBoxItem * pBox )
{
// moeglich und vielleicht besser waere 0xffff
static const sal_uInt16 aBorders[] =
{
BOX_LINE_TOP, BOX_LINE_LEFT, BOX_LINE_BOTTOM, BOX_LINE_RIGHT
};
static const SvxBorderLine aBorderLine;
const sal_uInt16* pBrd = aBorders;
for( int i = 0; i < 4; ++i, ++pBrd )
{
const SvxBorderLine* pLn;
if (pBox != NULL)
pLn = pBox->GetLine( *pBrd );
else
pLn = & aBorderLine;
Out_BorderLine(rO, pLn, 0, 0, false);
}
}
void WW8AttributeOutput::FormatBox( const SvxBoxItem& rBox )
{
// Fly um Grafik-> keine Umrandung hier, da
// der GrafikHeader bereits die Umrandung hat
if ( !m_rWW8Export.bOutGrf )
{
bool bShadow = false;
const SfxPoolItem* pItem = m_rWW8Export.HasItem( RES_SHADOW );
if ( pItem )
{
const SvxShadowItem* p = (const SvxShadowItem*)pItem;
bShadow = ( p->GetLocation() != SVX_SHADOW_NONE )
&& ( p->GetWidth() != 0 );
}
m_rWW8Export.Out_SwFmtBox( rBox, bShadow );
}
}
SwTwips WW8Export::CurrentPageWidth(SwTwips &rLeft, SwTwips &rRight) const
{
const SwFrmFmt* pFmt = pAktPageDesc ? &pAktPageDesc->GetMaster()
: &const_cast<const SwDoc *>(pDoc)->GetPageDesc(0).GetMaster();
const SvxLRSpaceItem& rLR = pFmt->GetLRSpace();
SwTwips nPageSize = pFmt->GetFrmSize().GetWidth();
rLeft = rLR.GetLeft();
rRight = rLR.GetRight();
return nPageSize;
}
void WW8AttributeOutput::FormatColumns_Impl( sal_uInt16 nCols, const SwFmtCol & rCol, bool bEven, SwTwips nPageSize )
{
// CColumns
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SCcolumns );
else
m_rWW8Export.pO->push_back( 144 );
m_rWW8Export.InsUInt16( nCols - 1 );
// DxaColumns
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SDxaColumns );
else
m_rWW8Export.pO->push_back( 145 );
m_rWW8Export.InsUInt16( rCol.GetGutterWidth( true ) );
// LBetween
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SLBetween );
else
m_rWW8Export.pO->push_back( 158 );
m_rWW8Export.pO->push_back( COLADJ_NONE == rCol.GetLineAdj( )? 0 : 1 );
const SwColumns & rColumns = rCol.GetColumns( );
// FEvenlySpaced
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SFEvenlySpaced );
else
m_rWW8Export.pO->push_back( 138 );
m_rWW8Export.pO->push_back( bEven ? 1 : 0 );
if ( !bEven )
{
for ( sal_uInt16 n = 0; n < nCols; ++n )
{
//sprmSDxaColWidth
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SDxaColWidth );
else
m_rWW8Export.pO->push_back( 136 );
m_rWW8Export.pO->push_back( static_cast<sal_uInt8>(n) );
m_rWW8Export.InsUInt16( rCol.
CalcPrtColWidth( n,
( sal_uInt16 ) nPageSize ) );
if ( n + 1 != nCols )
{
//sprmSDxaColSpacing
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_SDxaColSpacing );
else
m_rWW8Export.pO->push_back( 137 );
m_rWW8Export.pO->push_back( static_cast<sal_uInt8>(n) );
m_rWW8Export.InsUInt16( rColumns[n]->GetRight( ) +
rColumns[n + 1]->GetLeft( ) );
}
}
}
}
void AttributeOutputBase::FormatColumns( const SwFmtCol& rCol )
{
const SwColumns& rColumns = rCol.GetColumns();
sal_uInt16 nCols = rColumns.Count();
if ( 1 < nCols && !GetExport( ).bOutFlyFrmAttrs )
{
// dann besorge mal die Seitenbreite ohne Raender !!
const SwFrmFmt* pFmt = GetExport( ).pAktPageDesc ? &GetExport( ).pAktPageDesc->GetMaster() : &const_cast<const SwDoc *>(GetExport( ).pDoc)->GetPageDesc(0).GetMaster();
const SvxFrameDirectionItem &frameDirection = pFmt->GetFrmDir();
SwTwips nPageSize;
if ( frameDirection.GetValue() == FRMDIR_VERT_TOP_RIGHT || frameDirection.GetValue() == FRMDIR_VERT_TOP_LEFT )
{
const SvxULSpaceItem &rUL = pFmt->GetULSpace();
nPageSize = pFmt->GetFrmSize().GetHeight();
nPageSize -= rUL.GetUpper() + rUL.GetLower();
const SwFmtHeader *header = dynamic_cast<const SwFmtHeader *>(pFmt->GetAttrSet().GetItem(RES_HEADER));
if ( header )
{
const SwFrmFmt *headerFmt = header->GetHeaderFmt();
if (headerFmt)
{
nPageSize -= headerFmt->GetFrmSize().GetHeight();
}
}
const SwFmtFooter *footer = dynamic_cast<const SwFmtFooter *>(pFmt->GetAttrSet().GetItem(RES_FOOTER));
if ( footer )
{
const SwFrmFmt *footerFmt = footer->GetFooterFmt();
if ( footerFmt )
{
nPageSize -= footerFmt->GetFrmSize().GetHeight();
}
}
}
else
{
const SvxLRSpaceItem &rLR = pFmt->GetLRSpace();
nPageSize = pFmt->GetFrmSize().GetWidth();
nPageSize -= rLR.GetLeft() + rLR.GetRight();
}
// Nachsehen, ob alle Spalten gleich sind
bool bEven = true;
sal_uInt16 n;
sal_uInt16 nColWidth = rCol.CalcPrtColWidth( 0, (sal_uInt16)nPageSize );
for ( n = 1; n < nCols; n++ )
{
short nDiff = nColWidth -
rCol.CalcPrtColWidth( n, (sal_uInt16)nPageSize );
if ( nDiff > 10 || nDiff < -10 ) // Toleranz: 10 tw
{
bEven = false;
break;
}
}
FormatColumns_Impl( nCols, rCol, bEven, nPageSize );
}
}
// "Paragraphs together"
void WW8AttributeOutput::FormatKeep( const SvxFmtKeepItem& rKeep )
{
// sprmFKeepFollow
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PFKeepFollow );
else
m_rWW8Export.pO->push_back( 8 );
m_rWW8Export.pO->push_back( rKeep.GetValue() ? 1 : 0 );
}
// exclude a paragraph from Line Numbering
void WW8AttributeOutput::FormatLineNumbering( const SwFmtLineNumber& rNumbering )
{
// sprmPFNoLineNumb
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PFNoLineNumb );
else
m_rWW8Export.pO->push_back( 14 );
m_rWW8Export.pO->push_back( rNumbering.IsCount() ? 0 : 1 );
}
/* File PARATR.HXX */
void WW8AttributeOutput::ParaLineSpacing_Impl( short nSpace, short nMulti )
{
// sprmPDyaLine
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PDyaLine );
else
m_rWW8Export.pO->push_back( 20 );
m_rWW8Export.InsUInt16( nSpace );
m_rWW8Export.InsUInt16( nMulti );
}
void AttributeOutputBase::ParaLineSpacing( const SvxLineSpacingItem& rSpacing )
{
short nSpace = 240, nMulti = 0;
switch ( rSpacing.GetLineSpaceRule() )
{
default:
break;
case SVX_LINE_SPACE_AUTO:
case SVX_LINE_SPACE_FIX:
case SVX_LINE_SPACE_MIN:
{
switch ( rSpacing.GetInterLineSpaceRule() )
{
case SVX_INTER_LINE_SPACE_FIX: // unser Durchschuss
{
// gibt es aber nicht in WW - also wie kommt man an
// die MaxLineHeight heran?
nSpace = (short)rSpacing.GetInterLineSpace();
sal_uInt16 nScript =
i18n::ScriptType::LATIN;
const SwAttrSet *pSet = 0;
if ( GetExport().pOutFmtNode && GetExport().pOutFmtNode->ISA( SwFmt ) )
{
const SwFmt *pFmt = (const SwFmt*)( GetExport().pOutFmtNode );
pSet = &pFmt->GetAttrSet();
}
else if ( GetExport().pOutFmtNode && GetExport().pOutFmtNode->ISA( SwTxtNode ) )
{
const SwTxtNode* pNd = (const SwTxtNode*)GetExport().pOutFmtNode;
pSet = &pNd->GetSwAttrSet();
if ( pBreakIt->GetBreakIter().is() )
{
nScript = pBreakIt->GetBreakIter()->
getScriptType(pNd->GetTxt(), 0);
}
}
OSL_ENSURE( pSet, "No attrset for lineheight :-(" );
if ( pSet )
{
nSpace = nSpace + (short)( AttrSetToLineHeight( *GetExport().pDoc,
*pSet, *Application::GetDefaultDevice(), nScript ) );
}
}
break;
case SVX_INTER_LINE_SPACE_PROP:
nSpace = (short)( ( 240L * rSpacing.GetPropLineSpace() ) / 100L );
nMulti = 1;
break;
default: // z.B. Minimum oder FIX?
if ( SVX_LINE_SPACE_FIX == rSpacing.GetLineSpaceRule() )
nSpace = -(short)rSpacing.GetLineHeight();
else
nSpace = (short)rSpacing.GetLineHeight();
break;
}
}
break;
}
// if nSpace is negative, it is a fixed size in 1/20 of a point
// if nSpace is positive and nMulti is 1, it is 1/240 of a single line height
// otherwise, I have no clue what the heck it is
ParaLineSpacing_Impl( nSpace, nMulti );
}
void WW8AttributeOutput::ParaAdjust( const SvxAdjustItem& rAdjust )
{
// sprmPJc
sal_uInt8 nAdj = 255;
sal_uInt8 nAdjBiDi = 255;
switch ( rAdjust.GetAdjust() )
{
case SVX_ADJUST_LEFT:
nAdj = 0;
nAdjBiDi = 2;
break;
case SVX_ADJUST_RIGHT:
nAdj = 2;
nAdjBiDi = 0;
break;
case SVX_ADJUST_BLOCKLINE:
case SVX_ADJUST_BLOCK:
nAdj = nAdjBiDi = 3;
break;
case SVX_ADJUST_CENTER:
nAdj = nAdjBiDi = 1;
break;
default:
return; // not a supported Attribut
}
if ( 255 != nAdj ) // supported Attribut?
{
if ( m_rWW8Export.bWrtWW8 )
{
m_rWW8Export.InsUInt16( NS_sprm::LN_PJc );
m_rWW8Export.pO->push_back( nAdj );
/*
Sadly for left to right paragraphs both these values are the same,
for right to left paragraphs the bidi one is the reverse of the
normal one.
*/
m_rWW8Export.InsUInt16( NS_sprm::LN_PJcExtra ); //bidi version ?
bool bBiDiSwap = false;
if ( m_rWW8Export.pOutFmtNode )
{
short nDirection = FRMDIR_HORI_LEFT_TOP;
if ( m_rWW8Export.pOutFmtNode->ISA( SwTxtNode ) )
{
SwPosition aPos(*(const SwCntntNode*)m_rWW8Export.pOutFmtNode);
nDirection = m_rWW8Export.pDoc->GetTextDirection(aPos);
}
else if ( m_rWW8Export.pOutFmtNode->ISA( SwTxtFmtColl ) )
{
const SwTxtFmtColl* pC =
(const SwTxtFmtColl*)m_rWW8Export.pOutFmtNode;
const SvxFrameDirectionItem &rItem =
ItemGet<SvxFrameDirectionItem>(*pC, RES_FRAMEDIR);
nDirection = rItem.GetValue();
}
if ( ( nDirection == FRMDIR_HORI_RIGHT_TOP ) ||
( nDirection == FRMDIR_ENVIRONMENT && Application::GetSettings().GetLayoutRTL() ) )
{
bBiDiSwap = true;
}
}
if ( bBiDiSwap )
m_rWW8Export.pO->push_back( nAdjBiDi );
else
m_rWW8Export.pO->push_back( nAdj );
}
else
{
m_rWW8Export.pO->push_back( 5 );
m_rWW8Export.pO->push_back( nAdj );
}
}
}
void WW8AttributeOutput::FormatFrameDirection( const SvxFrameDirectionItem& rDirection )
{
if ( !m_rWW8Export.bWrtWW8 ) //8+ only
return;
sal_uInt16 nTextFlow=0;
bool bBiDi = false;
short nDir = rDirection.GetValue();
if ( nDir == FRMDIR_ENVIRONMENT )
{
if ( m_rWW8Export.bOutPageDescs )
nDir = m_rWW8Export.GetCurrentPageDirection();
else if ( m_rWW8Export.pOutFmtNode )
{
if ( m_rWW8Export.bOutFlyFrmAttrs ) //frame
{
nDir = m_rWW8Export.TrueFrameDirection(
*(const SwFrmFmt*)m_rWW8Export.pOutFmtNode );
}
else if ( m_rWW8Export.pOutFmtNode->ISA( SwCntntNode ) ) //pagagraph
{
const SwCntntNode* pNd =
(const SwCntntNode*)m_rWW8Export.pOutFmtNode;
SwPosition aPos( *pNd );
nDir = m_rWW8Export.pDoc->GetTextDirection( aPos );
}
else if ( m_rWW8Export.pOutFmtNode->ISA( SwTxtFmtColl ) )
nDir = FRMDIR_HORI_LEFT_TOP; //what else can we do :-(
}
if ( nDir == FRMDIR_ENVIRONMENT )
nDir = FRMDIR_HORI_LEFT_TOP; //Set something
}
switch ( nDir )
{
default:
//Can't get an unknown type here
OSL_FAIL("Unknown frame direction");
case FRMDIR_HORI_LEFT_TOP:
nTextFlow = 0;
break;
case FRMDIR_HORI_RIGHT_TOP:
nTextFlow = 0;
bBiDi = true;
break;
case FRMDIR_VERT_TOP_LEFT: //word doesn't have this
case FRMDIR_VERT_TOP_RIGHT:
nTextFlow = 1;
break;
}
if ( m_rWW8Export.bOutPageDescs )
{
m_rWW8Export.InsUInt16( NS_sprm::LN_STextFlow );
m_rWW8Export.InsUInt16( nTextFlow );
m_rWW8Export.InsUInt16( NS_sprm::LN_SFBiDi );
m_rWW8Export.pO->push_back( bBiDi );
}
else if ( !m_rWW8Export.bOutFlyFrmAttrs ) //paragraph/style
{
m_rWW8Export.InsUInt16( NS_sprm::LN_PFBiDi );
m_rWW8Export.pO->push_back( bBiDi );
}
}
// "Separate paragraphs"
void WW8AttributeOutput::ParaSplit( const SvxFmtSplitItem& rSplit )
{
// sprmPFKeep
if ( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PFKeep );
else
m_rWW8Export.pO->push_back( 7 );
m_rWW8Export.pO->push_back( rSplit.GetValue() ? 0 : 1 );
}
// Es wird nur das Item "SvxWidowItem" und nicht die Orphans uebersetzt,
// da es fuer beides im WW nur ein Attribut "Absatzkontrolle" gibt und
// im SW wahrscheinlich vom Anwender immer Beide oder keiner gesetzt werden.
void WW8AttributeOutput::ParaWidows( const SvxWidowsItem& rWidows )
{
// sprmPFWidowControl
if( m_rWW8Export.bWrtWW8 )
m_rWW8Export.InsUInt16( NS_sprm::LN_PFWidowControl );
else
m_rWW8Export.pO->push_back( 51 );
m_rWW8Export.pO->push_back( rWidows.GetValue() ? 1 : 0 );
}
class SwWW8WrTabu
{
sal_uInt8* pDel; // DelArray
sal_uInt8* pAddPos; // AddPos-Array
sal_uInt8* pAddTyp; // AddTyp-Array
sal_uInt16 nAdd; // so viele Tabs kommen hinzu
sal_uInt16 nDel; // so viele Tabs fallen weg
public:
SwWW8WrTabu(sal_uInt16 nDelMax, sal_uInt16 nAddMax);
~SwWW8WrTabu();
void Add(const SvxTabStop &rTS, long nAdjustment);
void Del(const SvxTabStop &rTS, long nAdjustment);
void PutAll(WW8Export& rWW8Wrt);
};
SwWW8WrTabu::SwWW8WrTabu(sal_uInt16 nDelMax, sal_uInt16 nAddMax)
: nAdd(0), nDel(0)
{
pDel = nDelMax ? new sal_uInt8[nDelMax * 2] : 0;
pAddPos = new sal_uInt8[nAddMax * 2];
pAddTyp = new sal_uInt8[nAddMax];
}
SwWW8WrTabu::~SwWW8WrTabu()
{
delete[] pAddTyp;
delete[] pAddPos;
delete[] pDel;
}
// Add( const SvxTabStop & rTS ) fuegt einen Tab in die WW-Struktur ein
void SwWW8WrTabu::Add(const SvxTabStop & rTS, long nAdjustment)
{
// Tab-Position eintragen
ShortToSVBT16(msword_cast<sal_Int16>(rTS.GetTabPos() + nAdjustment),
pAddPos + (nAdd * 2));
// Tab-Typ eintragen
sal_uInt8 nPara = 0;
switch (rTS.GetAdjustment())
{
case SVX_TAB_ADJUST_RIGHT:
nPara = 2;
break;
case SVX_TAB_ADJUST_CENTER:
nPara = 1;
break;
case SVX_TAB_ADJUST_DECIMAL:
/*
Theres nothing we can do btw the the decimal seperator has been
customized, but if you think different remember that different
locales have different seperators, i.e. german is a , while english
is a .
*/
nPara = 3;
break;
default:
break;
}
switch( rTS.GetFill() )
{
case '.': // dotted leader
nPara |= 1 << 3;
break;
case '_': // Single line leader
nPara |= 3 << 3;
break;
case '-': // hyphenated leader
nPara |= 2 << 3;
break;
case '=': // heavy line leader
nPara |= 4 << 3;
break;
}
ByteToSVBT8(nPara, pAddTyp + nAdd);
++nAdd;
}
// Del( const SvxTabStop & rTS ) fuegt einen zu loeschenden Tab
// in die WW-Struktur ein
void SwWW8WrTabu::Del(const SvxTabStop &rTS, long nAdjustment)
{
// Tab-Position eintragen
ShortToSVBT16(msword_cast<sal_Int16>(rTS.GetTabPos() + nAdjustment),
pDel + (nDel * 2));
++nDel;
}
// PutAll( WW8Export& rWW8Wrt ) schreibt das Attribut nach rWrt.pO
void SwWW8WrTabu::PutAll(WW8Export& rWrt)
{
if (!nAdd && !nDel) //It its a no-op
return;
OSL_ENSURE(nAdd <= 255, "more than 255 added tabstops ?");
OSL_ENSURE(nDel <= 255, "more than 244 removed tabstops ?");
if (nAdd > 255)
nAdd = 255;
if (nDel > 255)
nDel = 255;
sal_uInt16 nSiz = 2 * nDel + 3 * nAdd + 2;
if (nSiz > 255)
nSiz = 255;
if (rWrt.bWrtWW8)
rWrt.InsUInt16(NS_sprm::LN_PChgTabsPapx);
else
rWrt.pO->push_back(15);
// cch eintragen
rWrt.pO->push_back(msword_cast<sal_uInt8>(nSiz));
// DelArr schreiben
rWrt.pO->push_back(msword_cast<sal_uInt8>(nDel));
rWrt.OutSprmBytes(pDel, nDel * 2);
// InsArr schreiben
rWrt.pO->push_back(msword_cast<sal_uInt8>(nAdd));
rWrt.OutSprmBytes(pAddPos, 2 * nAdd); // AddPosArray
rWrt.OutSprmBytes(pAddTyp, nAdd); // AddTypArray
}
static void ParaTabStopAdd( WW8Export& rWrt, const SvxTabStopItem& rTStops,
long nLParaMgn )
{
SwWW8WrTabu aTab( 0, rTStops.Count());
for( sal_uInt16 n = 0; n < rTStops.Count(); n++ )
{
const SvxTabStop& rTS = rTStops[n];
// Def-Tabs ignorieren
if (SVX_TAB_ADJUST_DEFAULT != rTS.GetAdjustment())
aTab.Add(rTS, nLParaMgn);
}
aTab.PutAll( rWrt );
}
bool lcl_IsEqual(long nOneLeft, const SvxTabStop &rOne,
long nTwoLeft, const SvxTabStop &rTwo)
{
return(
nOneLeft == nTwoLeft &&
rOne.GetAdjustment() == rTwo.GetAdjustment() &&
rOne.GetDecimal() == rTwo.GetDecimal() &&
rOne.GetFill() == rTwo.GetFill()
);
}
static void ParaTabStopDelAdd( WW8Export& rWrt, const SvxTabStopItem& rTStyle,
long nLStypeMgn, const SvxTabStopItem& rTNew, long nLParaMgn )
{
SwWW8WrTabu aTab(rTStyle.Count(), rTNew.Count());
sal_uInt16 nO = 0; // rTStyle Index
sal_uInt16 nN = 0; // rTNew Index
do {
const SvxTabStop* pTO;
long nOP;
if( nO < rTStyle.Count() ) // alt noch nicht am Ende ?
{
pTO = &rTStyle[ nO ];
nOP = pTO->GetTabPos() + nLStypeMgn;
if( SVX_TAB_ADJUST_DEFAULT == pTO->GetAdjustment() )
{
nO++; // Default-Tab ignorieren
continue;
}
}
else
{
pTO = 0;
nOP = LONG_MAX;
}
const SvxTabStop* pTN;
long nNP;
if( nN < rTNew.Count() ) // neu noch nicht am Ende
{
pTN = &rTNew[ nN ];
nNP = pTN->GetTabPos() + nLParaMgn;
if( SVX_TAB_ADJUST_DEFAULT == pTN->GetAdjustment() )
{
nN++; // Default-Tab ignorieren
continue;
}
}
else
{
pTN = 0;
nNP = LONG_MAX;
}
if( nOP == LONG_MAX && nNP == LONG_MAX )
break; // alles fertig
if( nOP < nNP ) // naechster Tab ist alt
{
aTab.Del(*pTO, nLStypeMgn); // muss geloescht werden
nO++;
}
else if( nNP < nOP ) // naechster Tab ist neu
{
aTab.Add(*pTN, nLParaMgn); // muss eigefuegt werden
nN++;
}
else if (lcl_IsEqual(nOP, *pTO, nNP, *pTN)) // Tabs sind gleich:
{
nO++; // nichts zu tun
nN++;
}
else // Tabs selbe Pos, diff Typ
{
aTab.Del(*pTO, nLStypeMgn); // alten loeschen
aTab.Add(*pTN, nLParaMgn); // neuen einfuegen
nO++;
nN++;
}
} while( 1 );
aTab.PutAll( rWrt );
}
void WW8AttributeOutput::ParaTabStop( const SvxTabStopItem& rTabStops )
{
bool bTabsRelativeToIndex = m_rWW8Export.pCurPam->GetDoc()->get( IDocumentSettingAccess::TABS_RELATIVE_TO_INDENT );
long nCurrentLeft = 0;
if ( bTabsRelativeToIndex )
{
const SfxPoolItem* pLR = m_rWW8Export.HasItem( RES_LR_SPACE );
if ( pLR != NULL )
nCurrentLeft = ((const SvxLRSpaceItem*)pLR)->GetTxtLeft();
}
// #i100264#
if ( m_rWW8Export.bStyDef &&
m_rWW8Export.pCurrentStyle != NULL &&
m_rWW8Export.pCurrentStyle->DerivedFrom() != NULL )
{
SvxTabStopItem aTabs( 0, 0, SVX_TAB_ADJUST_DEFAULT, RES_PARATR_TABSTOP );
const SwFmt *pParentStyle = m_rWW8Export.pCurrentStyle->DerivedFrom();
const SvxTabStopItem* pParentTabs = HasItem<SvxTabStopItem>( pParentStyle->GetAttrSet(), RES_PARATR_TABSTOP );
if ( pParentTabs )
{
aTabs.Insert( pParentTabs );
}
ParaTabStopDelAdd( m_rWW8Export, aTabs, 0, rTabStops, 0 );
return;
}
// StyleDef -> "einfach" eintragen || keine Style-Attrs -> dito
const SvxTabStopItem* pStyleTabs = 0;
if ( !m_rWW8Export.bStyDef && m_rWW8Export.pStyAttr )
{
pStyleTabs =
HasItem<SvxTabStopItem>( *m_rWW8Export.pStyAttr, RES_PARATR_TABSTOP );
}
if ( !pStyleTabs )
ParaTabStopAdd(m_rWW8Export, rTabStops, nCurrentLeft);
else
{
long nStyleLeft = 0;
if (bTabsRelativeToIndex)
{
const SvxLRSpaceItem &rStyleLR =
ItemGet<SvxLRSpaceItem>(*m_rWW8Export.pStyAttr, RES_LR_SPACE);
nStyleLeft = rStyleLR.GetTxtLeft();
}
ParaTabStopDelAdd(m_rWW8Export, *pStyleTabs, nStyleLeft, rTabStops,
nCurrentLeft);
}
}
//-----------------------------------------------------------------------
void AttributeOutputBase::OutputItem( const SfxPoolItem& rHt )
{
// FIXME maybe use 'item_cast', like 'item_cast<SvxCharHiddenItem>( rHt )'?
switch ( rHt.Which() )
{
case RES_CHRATR_CASEMAP:
CharCaseMap( static_cast< const SvxCaseMapItem& >( rHt ) );
break;
case RES_CHRATR_COLOR:
CharColor( static_cast< const SvxColorItem& >( rHt ) );
break;
case RES_CHRATR_CONTOUR:
CharContour( static_cast< const SvxContourItem& >( rHt ) );
break;
case RES_CHRATR_CROSSEDOUT:
CharCrossedOut( static_cast< const SvxCrossedOutItem& >( rHt ) );
break;
case RES_CHRATR_ESCAPEMENT:
CharEscapement( static_cast< const SvxEscapementItem& >( rHt ) );
break;
case RES_CHRATR_FONT:
CharFont( static_cast< const SvxFontItem& >( rHt ) );
break;
case RES_CHRATR_FONTSIZE:
CharFontSize( static_cast< const SvxFontHeightItem& >( rHt ) );
break;
case RES_CHRATR_KERNING:
CharKerning( static_cast< const SvxKerningItem& >( rHt ) );
break;
case RES_CHRATR_LANGUAGE:
CharLanguage( static_cast< const SvxLanguageItem& >( rHt ) );
break;
case RES_CHRATR_POSTURE:
CharPosture( static_cast< const SvxPostureItem& >( rHt ) );
break;
case RES_CHRATR_SHADOWED:
CharShadow( static_cast< const SvxShadowedItem& >( rHt ) );
break;
case RES_CHRATR_UNDERLINE:
CharUnderline( static_cast< const SvxUnderlineItem& >( rHt ) );
break;
case RES_CHRATR_WEIGHT:
CharWeight( static_cast< const SvxWeightItem& >( rHt ) );
break;
case RES_CHRATR_AUTOKERN:
CharAutoKern( static_cast< const SvxAutoKernItem& >( rHt ) );
break;
case RES_CHRATR_BLINK:
CharAnimatedText( static_cast< const SvxBlinkItem& >( rHt ) );
break;
case RES_CHRATR_BACKGROUND:
CharBackground( static_cast< const SvxBrushItem& >( rHt ) );
break;
case RES_CHRATR_CJK_FONT:
CharFontCJK( static_cast< const SvxFontItem& >( rHt ) );
break;
case RES_CHRATR_CJK_FONTSIZE:
CharFontSizeCJK( static_cast< const SvxFontHeightItem& >( rHt ) );
break;
case RES_CHRATR_CJK_LANGUAGE:
CharLanguageCJK( static_cast< const SvxLanguageItem& >( rHt ) );
break;
case RES_CHRATR_CJK_POSTURE:
CharPostureCJK( static_cast< const SvxPostureItem& >( rHt ) );
break;
case RES_CHRATR_CJK_WEIGHT:
CharWeightCJK( static_cast< const SvxWeightItem& >( rHt ) );
break;
case RES_CHRATR_CTL_FONT:
CharFontCTL( static_cast< const SvxFontItem& >( rHt ) );
break;
case RES_CHRATR_CTL_FONTSIZE:
CharFontSizeCTL( static_cast< const SvxFontHeightItem& >( rHt ) );
break;
case RES_CHRATR_CTL_LANGUAGE:
CharLanguageCTL( static_cast< const SvxLanguageItem& >( rHt ) );
break;
case RES_CHRATR_CTL_POSTURE:
CharPostureCTL( static_cast< const SvxPostureItem& >( rHt ) );
break;
case RES_CHRATR_CTL_WEIGHT:
CharWeightCTL( static_cast< const SvxWeightItem& >( rHt ) );
break;
case RES_CHRATR_ROTATE:
CharRotate( static_cast< const SvxCharRotateItem& >( rHt ) );
break;
case RES_CHRATR_EMPHASIS_MARK:
CharEmphasisMark( static_cast< const SvxEmphasisMarkItem& >( rHt ) );
break;
case RES_CHRATR_TWO_LINES:
CharTwoLines( static_cast< const SvxTwoLinesItem& >( rHt ) );
break;
case RES_CHRATR_SCALEW:
CharScaleWidth( static_cast< const SvxCharScaleWidthItem& >( rHt ) );
break;
case RES_CHRATR_RELIEF:
CharRelief( static_cast< const SvxCharReliefItem& >( rHt ) );
break;
case RES_CHRATR_HIDDEN:
CharHidden( static_cast< const SvxCharHiddenItem& >( rHt ) );
break;
case RES_TXTATR_INETFMT:
TextINetFormat( static_cast< const SwFmtINetFmt& >( rHt ) );
break;
case RES_TXTATR_CHARFMT:
TextCharFormat( static_cast< const SwFmtCharFmt& >( rHt ) );
break;
case RES_TXTATR_FIELD:
TextField( static_cast< const SwFmtFld& >( rHt ) );
break;
case RES_TXTATR_FLYCNT:
TextFlyContent( static_cast< const SwFmtFlyCnt& >( rHt ) );
break;
case RES_TXTATR_FTN:
TextFootnote( static_cast< const SwFmtFtn& >( rHt ) );
break;
case RES_PARATR_LINESPACING:
ParaLineSpacing( static_cast< const SvxLineSpacingItem& >( rHt ) );
break;
case RES_PARATR_ADJUST:
ParaAdjust( static_cast< const SvxAdjustItem& >( rHt ) );
break;
case RES_PARATR_SPLIT:
ParaSplit( static_cast< const SvxFmtSplitItem& >( rHt ) );
break;
case RES_PARATR_WIDOWS:
ParaWidows( static_cast< const SvxWidowsItem& >( rHt ) );
break;
case RES_PARATR_TABSTOP:
ParaTabStop( static_cast< const SvxTabStopItem& >( rHt ) );
break;
case RES_PARATR_HYPHENZONE:
ParaHyphenZone( static_cast< const SvxHyphenZoneItem& >( rHt ) );
break;
case RES_PARATR_NUMRULE:
ParaNumRule( static_cast< const SwNumRuleItem& >( rHt ) );
break;
case RES_PARATR_SCRIPTSPACE:
ParaScriptSpace( static_cast< const SfxBoolItem& >( rHt ) );
break;
case RES_PARATR_HANGINGPUNCTUATION:
ParaHangingPunctuation( static_cast< const SfxBoolItem& >( rHt ) );
break;
case RES_PARATR_FORBIDDEN_RULES:
ParaForbiddenRules( static_cast< const SfxBoolItem& >( rHt ) );
break;
case RES_PARATR_VERTALIGN:
ParaVerticalAlign( static_cast< const SvxParaVertAlignItem& >( rHt ) );
break;
case RES_PARATR_SNAPTOGRID:
ParaSnapToGrid( static_cast< const SvxParaGridItem& >( rHt ) );
break;
case RES_FRM_SIZE:
FormatFrameSize( static_cast< const SwFmtFrmSize& >( rHt ) );
break;
case RES_PAPER_BIN:
FormatPaperBin( static_cast< const SvxPaperBinItem& >( rHt ) );
break;
case RES_LR_SPACE:
FormatLRSpace( static_cast< const SvxLRSpaceItem& >( rHt ) );
break;
case RES_UL_SPACE:
FormatULSpace( static_cast< const SvxULSpaceItem& >( rHt ) );
break;
case RES_PAGEDESC:
FormatPageDescription( static_cast< const SwFmtPageDesc& >( rHt ) );
break;
case RES_BREAK:
FormatBreak( static_cast< const SvxFmtBreakItem& >( rHt ) );
break;
case RES_SURROUND:
FormatSurround( static_cast< const SwFmtSurround& >( rHt ) );
break;
case RES_VERT_ORIENT:
FormatVertOrientation( static_cast< const SwFmtVertOrient& >( rHt ) );
break;
case RES_HORI_ORIENT:
FormatHorizOrientation( static_cast< const SwFmtHoriOrient& >( rHt ) );
break;
case RES_ANCHOR:
FormatAnchor( static_cast< const SwFmtAnchor& >( rHt ) );
break;
case RES_BACKGROUND:
FormatBackground( static_cast< const SvxBrushItem& >( rHt ) );
break;
case RES_BOX:
FormatBox( static_cast< const SvxBoxItem& >( rHt ) );
break;
case RES_COL:
FormatColumns( static_cast< const SwFmtCol& >( rHt ) );
break;
case RES_KEEP:
FormatKeep( static_cast< const SvxFmtKeepItem& >( rHt ) );
break;
case RES_TEXTGRID:
FormatTextGrid( static_cast< const SwTextGridItem& >( rHt ) );
break;
case RES_LINENUMBER:
FormatLineNumbering( static_cast< const SwFmtLineNumber& >( rHt ) );
break;
case RES_FRAMEDIR:
FormatFrameDirection( static_cast< const SvxFrameDirectionItem& >( rHt ) );
break;
default:
OSL_TRACE("Unhandled SfxPoolItem with id %d.", rHt.Which() );
break;
}
}
void AttributeOutputBase::OutputStyleItemSet( const SfxItemSet& rSet, sal_Bool bDeep, sal_Bool bTestForDefault )
{
// based on OutputItemSet() from wrt_fn.cxx
const SfxItemPool& rPool = *rSet.GetPool();
const SfxItemSet* pSet = &rSet;
if ( !pSet->Count() )
{
if ( !bDeep )
return;
while ( 0 != ( pSet = pSet->GetParent() ) && !pSet->Count() )
;
if ( !pSet )
return;
}
const SfxPoolItem* pItem;
if ( !bDeep || !pSet->GetParent() )
{
OSL_ENSURE( rSet.Count(), "Wurde doch schon behandelt oder?" );
SfxItemIter aIter( *pSet );
pItem = aIter.GetCurItem();
do {
OutputItem( *pItem );
} while ( !aIter.IsAtEnd() && 0 != ( pItem = aIter.NextItem() ) );
}
else
{
SfxWhichIter aIter( *pSet );
sal_uInt16 nWhich = aIter.FirstWhich();
while ( nWhich )
{
if ( SFX_ITEM_SET == pSet->GetItemState( nWhich, bDeep, &pItem ) &&
( !bTestForDefault ||
*pItem != rPool.GetDefaultItem( nWhich ) ||
( pSet->GetParent() && *pItem != pSet->GetParent()->Get( nWhich ) ) ) )
{
OutputItem( *pItem );
}
nWhich = aIter.NextWhich();
}
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|