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 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <com/sun/star/document/XDocumentPropertiesSupplier.hpp>
#include <com/sun/star/drawing/XEnhancedCustomShapeDefaulter.hpp>
#include <com/sun/star/graphic/GraphicProvider.hpp>
#include <com/sun/star/io/UnexpectedEOFException.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/text/XTextFrame.hpp>
#include <com/sun/star/text/SizeType.hpp>
#include <com/sun/star/text/HoriOrientation.hpp>
#include <com/sun/star/text/VertOrientation.hpp>
#include <com/sun/star/text/RelOrientation.hpp>
#include <com/sun/star/text/WrapTextMode.hpp>
#include <com/sun/star/text/TextContentAnchorType.hpp>
#include <rtl/tencinfo.h>
#include <svl/lngmisc.hxx>
#include <unotools/ucbstreamhelper.hxx>
#include <unotools/streamwrap.hxx>
#include <com/sun/star/drawing/XDrawPageSupplier.hpp>
#include <rtl/ustring.hxx>
#include <svtools/grfmgr.hxx>
#include <vcl/graph.hxx>
#include <vcl/outdev.hxx>
#include <vcl/svapp.hxx>
#include <vcl/wmf.hxx>
#include <vcl/settings.hxx>
#include <filter/msfilter/util.hxx>
#include <filter/msfilter/escherex.hxx>
#include <comphelper/string.hxx>
#include <tools/globname.hxx>
#include <tools/datetimeutils.hxx>
#include <tools/mapunit.hxx>
#include <comphelper/classids.hxx>
#include <comphelper/embeddedobjectcontainer.hxx>
#include <sfx2/sfxbasemodel.hxx>
#include <oox/mathml/import.hxx>
#include <ooxml/resourceids.hxx>
#include <ooxml/OOXMLFastTokens.hxx>
#include <oox/token/namespaces.hxx>
#include <oox/token/tokens.hxx>
#include <dmapper/GraphicHelpers.hxx>
#include <rtfsdrimport.hxx>
#include <rtftokenizer.hxx>
#include <rtflookahead.hxx>
#include <rtfcharsets.hxx>
#include <rtfreferenceproperties.hxx>
#include <rtfskipdestination.hxx>
#include <rtffly.hxx>
#define MM100_TO_EMU(MM100) (MM100 * 360)
namespace writerfilter
{
namespace rtftok
{
static Id lcl_getParagraphBorder(sal_uInt32 nIndex)
{
static const Id aBorderIds[] =
{
NS_ooxml::LN_CT_PBdr_top, NS_ooxml::LN_CT_PBdr_left, NS_ooxml::LN_CT_PBdr_bottom, NS_ooxml::LN_CT_PBdr_right
};
return aBorderIds[nIndex];
}
static void lcl_putNestedAttribute(RTFSprms& rSprms, Id nParent, Id nId, RTFValue::Pointer_t pValue,
RTFOverwrite eOverwrite = OVERWRITE_YES, bool bAttribute = true)
{
RTFValue::Pointer_t pParent = rSprms.find(nParent, /*bFirst=*/true, /*bForWrite=*/true);
if (!pParent.get())
{
RTFSprms aAttributes;
if (nParent == NS_ooxml::LN_CT_TcPrBase_shd)
{
// RTF default is 'auto', see writerfilter::dmapper::CellColorHandler
aAttributes.set(NS_ooxml::LN_CT_Shd_color, RTFValue::Pointer_t(new RTFValue(0x0a)));
aAttributes.set(NS_ooxml::LN_CT_Shd_fill, RTFValue::Pointer_t(new RTFValue(0x0a)));
}
RTFValue::Pointer_t pParentValue(new RTFValue(aAttributes));
rSprms.set(nParent, pParentValue, eOverwrite);
pParent = pParentValue;
}
RTFSprms& rAttributes = (bAttribute ? pParent->getAttributes() : pParent->getSprms());
rAttributes.set(nId, pValue, eOverwrite);
}
static void lcl_putNestedSprm(RTFSprms& rSprms, Id nParent, Id nId, RTFValue::Pointer_t pValue, RTFOverwrite eOverwrite = OVERWRITE_NO_APPEND)
{
lcl_putNestedAttribute(rSprms, nParent, nId, pValue, eOverwrite, false);
}
static RTFValue::Pointer_t lcl_getNestedAttribute(RTFSprms& rSprms, Id nParent, Id nId)
{
RTFValue::Pointer_t pParent = rSprms.find(nParent);
if (!pParent)
return RTFValue::Pointer_t();
RTFSprms& rAttributes = pParent->getAttributes();
return rAttributes.find(nId);
}
static bool lcl_eraseNestedAttribute(RTFSprms& rSprms, Id nParent, Id nId)
{
RTFValue::Pointer_t pParent = rSprms.find(nParent);
if (!pParent.get())
// It doesn't even have a parent, we're done!
return false;
RTFSprms& rAttributes = pParent->getAttributes();
return rAttributes.erase(nId);
}
static RTFSprms& lcl_getLastAttributes(RTFSprms& rSprms, Id nId)
{
RTFValue::Pointer_t p = rSprms.find(nId);
if (p.get() && p->getSprms().size())
return p->getSprms().back().second->getAttributes();
else
{
SAL_WARN("writerfilter", "trying to set property when no type is defined");
return rSprms;
}
}
static void
lcl_putBorderProperty(RTFStack& aStates, Id nId, RTFValue::Pointer_t pValue)
{
RTFSprms* pAttributes = 0;
if (aStates.top().nBorderState == BORDER_PARAGRAPH_BOX)
for (int i = 0; i < 4; i++)
{
RTFValue::Pointer_t p = aStates.top().aParagraphSprms.find(lcl_getParagraphBorder(i));
if (p.get())
{
RTFSprms& rAttributes = p->getAttributes();
rAttributes.set(nId, pValue);
}
}
else if (aStates.top().nBorderState == BORDER_CHARACTER)
{
RTFValue::Pointer_t pPointer = aStates.top().aCharacterSprms.find(NS_ooxml::LN_EG_RPrBase_bdr);
if (pPointer.get())
{
RTFSprms& rAttributes = pPointer->getAttributes();
rAttributes.set(nId, pValue);
}
}
// Attributes of the last border type
else if (aStates.top().nBorderState == BORDER_PARAGRAPH)
pAttributes = &lcl_getLastAttributes(aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PrBase_pBdr);
else if (aStates.top().nBorderState == BORDER_CELL)
pAttributes = &lcl_getLastAttributes(aStates.top().aTableCellSprms, NS_ooxml::LN_CT_TcPrBase_tcBorders);
else if (aStates.top().nBorderState == BORDER_PAGE)
pAttributes = &lcl_getLastAttributes(aStates.top().aSectionSprms, NS_ooxml::LN_EG_SectPrContents_pgBorders);
if (pAttributes)
pAttributes->set(nId, pValue);
}
static OString lcl_DTTM22OString(long lDTTM)
{
return DateTimeToOString(msfilter::util::DTTM2DateTime(lDTTM));
}
static writerfilter::Reference<Properties>::Pointer_t lcl_getBookmarkProperties(int nPos, OUString& rString)
{
RTFSprms aAttributes;
RTFValue::Pointer_t pPos(new RTFValue(nPos));
if (!rString.isEmpty())
{
// If present, this should be sent first.
RTFValue::Pointer_t pString(new RTFValue(rString));
aAttributes.set(NS_ooxml::LN_CT_Bookmark_name, pString);
}
aAttributes.set(NS_ooxml::LN_CT_MarkupRangeBookmark_id, pPos);
return writerfilter::Reference<Properties>::Pointer_t(new RTFReferenceProperties(aAttributes));
}
static writerfilter::Reference<Properties>::Pointer_t lcl_getBookmarkProperties(int nPos)
{
OUString aStr;
return lcl_getBookmarkProperties(nPos, aStr);
}
static const char* lcl_RtfToString(RTFKeyword nKeyword)
{
for (int i = 0; i < nRTFControlWords; i++)
{
if (nKeyword == aRTFControlWords[i].nIndex)
return aRTFControlWords[i].sKeyword;
}
return NULL;
}
static util::DateTime lcl_getDateTime(RTFParserState& aState)
{
return util::DateTime(0 /*100sec*/, 0 /*sec*/, aState.nMinute, aState.nHour,
aState.nDay, aState.nMonth, aState.nYear, false);
}
static void lcl_DestinationToMath(OUStringBuffer& rDestinationText, oox::formulaimport::XmlStreamBuilder& rMathBuffer, bool& rMathNor)
{
OUString aStr = rDestinationText.makeStringAndClear();
if (!aStr.isEmpty())
{
rMathBuffer.appendOpeningTag(M_TOKEN(r));
if (rMathNor)
{
rMathBuffer.appendOpeningTag(M_TOKEN(rPr));
// Same as M_TOKEN(lit)
rMathBuffer.appendOpeningTag(M_TOKEN(nor));
rMathBuffer.appendClosingTag(M_TOKEN(nor));
rMathBuffer.appendClosingTag(M_TOKEN(rPr));
rMathNor = false;
}
rMathBuffer.appendOpeningTag(M_TOKEN(t));
rMathBuffer.appendCharacters(aStr);
rMathBuffer.appendClosingTag(M_TOKEN(t));
rMathBuffer.appendClosingTag(M_TOKEN(r));
}
}
RTFDocumentImpl::RTFDocumentImpl(uno::Reference<uno::XComponentContext> const& xContext,
uno::Reference<io::XInputStream> const& xInputStream,
uno::Reference<lang::XComponent> const& xDstDoc,
uno::Reference<frame::XFrame> const& xFrame,
uno::Reference<task::XStatusIndicator> const& xStatusIndicator)
: m_xContext(xContext),
m_xInputStream(xInputStream),
m_xDstDoc(xDstDoc),
m_xFrame(xFrame),
m_xStatusIndicator(xStatusIndicator),
m_pMapperStream(NULL),
m_aDefaultState(this),
m_bSkipUnknown(false),
m_aFontIndexes(),
m_aColorTable(),
m_bFirstRun(true),
m_bNeedPap(true),
m_bNeedCr(false),
m_bNeedCrOrig(false),
m_bNeedPar(true),
m_bNeedFinalPar(false),
m_aListTableSprms(),
m_aSettingsTableAttributes(),
m_aSettingsTableSprms(),
m_xStorage(),
m_nNestedCells(0),
m_nTopLevelCells(0),
m_nInheritingCells(0),
m_nNestedCurrentCellX(0),
m_nTopLevelCurrentCellX(0),
m_nBackupTopLevelCurrentCellX(0),
m_aTableBufferStack(1), // create top-level buffer already
m_aSuperBuffer(),
m_bHasFootnote(false),
m_pSuperstream(0),
m_nStreamType(0),
m_nHeaderFooterPositions(),
m_nGroupStartPos(0),
m_aBookmarks(),
m_aAuthors(),
m_aFormfieldSprms(),
m_aFormfieldAttributes(),
m_nFormFieldType(FORMFIELD_NONE),
m_aObjectSprms(),
m_aObjectAttributes(),
m_bObject(false),
m_aFontTableEntries(),
m_nCurrentFontIndex(0),
m_nCurrentEncoding(0),
m_nDefaultFontIndex(-1),
m_aStyleTableEntries(),
m_nCurrentStyleIndex(0),
m_bFormField(false),
m_bIsInFrame(false),
m_aUnicodeBuffer(),
m_aHexBuffer(),
m_bMathNor(false),
m_bIgnoreNextContSectBreak(false),
m_nResetBreakOnSectBreak(RTF_invalid),
m_bNeedSect(false), // done by checkFirstRun
m_bWasInFrame(false),
m_bHadPicture(false),
m_bHadSect(false),
m_nCellxMax(0),
m_nListPictureId(0)
{
OSL_ASSERT(xInputStream.is());
m_pInStream.reset(utl::UcbStreamHelper::CreateStream(xInputStream, true));
m_xModelFactory.set(m_xDstDoc, uno::UNO_QUERY);
uno::Reference<document::XDocumentPropertiesSupplier> xDocumentPropertiesSupplier(m_xDstDoc, uno::UNO_QUERY);
if (xDocumentPropertiesSupplier.is())
m_xDocumentProperties.set(xDocumentPropertiesSupplier->getDocumentProperties(), uno::UNO_QUERY);
m_pGraphicHelper.reset(new oox::GraphicHelper(m_xContext, xFrame, m_xStorage));
m_pTokenizer.reset(new RTFTokenizer(*this, m_pInStream.get(), m_xStatusIndicator));
m_pSdrImport.reset(new RTFSdrImport(*this, m_xDstDoc));
}
RTFDocumentImpl::~RTFDocumentImpl()
{
}
SvStream& RTFDocumentImpl::Strm()
{
return *m_pInStream;
}
Stream& RTFDocumentImpl::Mapper()
{
return *m_pMapperStream;
}
void RTFDocumentImpl::setSuperstream(RTFDocumentImpl* pSuperstream)
{
m_pSuperstream = pSuperstream;
}
void RTFDocumentImpl::setStreamType(Id nId)
{
m_nStreamType = nId;
}
void RTFDocumentImpl::setAuthor(OUString& rAuthor)
{
m_aAuthor = rAuthor;
}
void RTFDocumentImpl::setAuthorInitials(OUString& rAuthorInitials)
{
m_aAuthorInitials = rAuthorInitials;
}
bool RTFDocumentImpl::isSubstream() const
{
return m_pSuperstream != 0;
}
void RTFDocumentImpl::finishSubstream()
{
checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
}
void RTFDocumentImpl::setIgnoreFirst(OUString& rIgnoreFirst)
{
m_aIgnoreFirst = rIgnoreFirst;
}
void RTFDocumentImpl::resolveSubstream(sal_Size nPos, Id nId)
{
OUString aStr;
resolveSubstream(nPos, nId, aStr);
}
void RTFDocumentImpl::resolveSubstream(sal_Size nPos, Id nId, OUString& rIgnoreFirst)
{
sal_Size nCurrent = Strm().Tell();
// Seek to header position, parse, then seek back.
RTFDocumentImpl::Pointer_t pImpl(new RTFDocumentImpl(m_xContext, m_xInputStream, m_xDstDoc, m_xFrame, m_xStatusIndicator));
pImpl->setSuperstream(this);
pImpl->setStreamType(nId);
pImpl->setIgnoreFirst(rIgnoreFirst);
if (!m_aAuthor.isEmpty())
{
pImpl->setAuthor(m_aAuthor);
m_aAuthor = "";
}
if (!m_aAuthorInitials.isEmpty())
{
pImpl->setAuthorInitials(m_aAuthorInitials);
m_aAuthorInitials = "";
}
pImpl->m_nDefaultFontIndex = m_nDefaultFontIndex;
pImpl->seek(nPos);
SAL_INFO("writerfilter", "substream start");
Mapper().substream(nId, pImpl);
SAL_INFO("writerfilter", "substream end");
Strm().Seek(nCurrent);
nPos = 0;
}
void RTFDocumentImpl::checkFirstRun()
{
if (m_bFirstRun)
{
// output settings table
writerfilter::Reference<Properties>::Pointer_t const pProp(new RTFReferenceProperties(m_aSettingsTableAttributes, m_aSettingsTableSprms));
RTFReferenceTable::Entries_t aSettingsTableEntries;
aSettingsTableEntries.insert(make_pair(0, pProp));
writerfilter::Reference<Table>::Pointer_t const pTable(new RTFReferenceTable(aSettingsTableEntries));
Mapper().table(NS_ooxml::LN_settings_settings, pTable);
// start initial paragraph
m_bFirstRun = false;
assert(!m_bNeedSect);
setNeedSect(); // first call that succeeds
// set the requested default font, if there are none
RTFValue::Pointer_t pFont = lcl_getNestedAttribute(m_aDefaultState.aCharacterSprms, NS_ooxml::LN_EG_RPrBase_rFonts, NS_ooxml::LN_CT_Fonts_ascii);
RTFValue::Pointer_t pCurrentFont = lcl_getNestedAttribute(m_aStates.top().aCharacterSprms, NS_ooxml::LN_EG_RPrBase_rFonts, NS_ooxml::LN_CT_Fonts_ascii);
if (pFont && !pCurrentFont)
lcl_putNestedAttribute(m_aStates.top().aCharacterSprms, NS_ooxml::LN_EG_RPrBase_rFonts, NS_ooxml::LN_CT_Fonts_ascii, pFont);
}
}
bool RTFDocumentImpl::getFirstRun()
{
return m_bFirstRun;
}
void RTFDocumentImpl::setNeedPar(bool bNeedPar)
{
m_bNeedPar = bNeedPar;
}
void RTFDocumentImpl::setNeedSect(bool bNeedSect)
{
// ignore setting before checkFirstRun - every keyword calls setNeedSect!
if (!m_bNeedSect && bNeedSect && !m_bFirstRun)
{
if (!m_pSuperstream) // no sections in header/footer!
{
Mapper().startSectionGroup();
}
// set flag in substream too - otherwise multiple startParagraphGroup
m_bNeedSect = bNeedSect;
Mapper().startParagraphGroup();
setNeedPar(true);
}
else if (m_bNeedSect && !bNeedSect)
{
m_bNeedSect = bNeedSect;
}
}
writerfilter::Reference<Properties>::Pointer_t RTFDocumentImpl::getProperties(RTFSprms& rAttributes, RTFSprms& rSprms)
{
int nStyle = m_aStates.top().nCurrentStyleIndex;
RTFReferenceTable::Entries_t::iterator it = m_aStyleTableEntries.find(nStyle);
if (it != m_aStyleTableEntries.end())
{
RTFReferenceProperties& rProps = *(RTFReferenceProperties*)it->second.get();
// Get rid of direct formatting what is already in the style.
RTFSprms const sprms(
rSprms.cloneAndDeduplicate(rProps.getSprms()));
RTFSprms const attributes(
rAttributes.cloneAndDeduplicate(rProps.getAttributes()));
return writerfilter::Reference<Properties>::Pointer_t(
new RTFReferenceProperties(attributes, sprms));
}
writerfilter::Reference<Properties>::Pointer_t pRet(new RTFReferenceProperties(rAttributes, rSprms));
return pRet;
}
void RTFDocumentImpl::checkNeedPap()
{
if (m_bNeedPap)
{
m_bNeedPap = false; // reset early, so we can avoid recursion when calling ourselves
if (m_aStates.empty())
return;
if (!m_aStates.top().pCurrentBuffer)
{
writerfilter::Reference<Properties>::Pointer_t const pParagraphProperties(
getProperties(m_aStates.top().aParagraphAttributes, m_aStates.top().aParagraphSprms)
);
// Writer will ignore a page break before a text frame, so guard it with empty paragraphs
bool hasBreakBeforeFrame = m_aStates.top().aFrame.hasProperties() &&
m_aStates.top().aParagraphSprms.find(NS_ooxml::LN_CT_PPrBase_pageBreakBefore).get();
if (hasBreakBeforeFrame)
{
dispatchSymbol(RTF_PAR);
m_bNeedPap = false;
}
Mapper().props(pParagraphProperties);
if (hasBreakBeforeFrame)
dispatchSymbol(RTF_PAR);
if (m_aStates.top().aFrame.hasProperties())
{
writerfilter::Reference<Properties>::Pointer_t const pFrameProperties(
new RTFReferenceProperties(RTFSprms(), m_aStates.top().aFrame.getSprms()));
Mapper().props(pFrameProperties);
}
}
else
{
RTFValue::Pointer_t pValue(new RTFValue(m_aStates.top().aParagraphAttributes, m_aStates.top().aParagraphSprms));
m_aStates.top().pCurrentBuffer->push_back(
Buf_t(BUFFER_PROPS, pValue));
}
}
}
void RTFDocumentImpl::runProps()
{
if (!m_aStates.top().pCurrentBuffer)
{
writerfilter::Reference<Properties>::Pointer_t const pProperties = getProperties(m_aStates.top().aCharacterAttributes, m_aStates.top().aCharacterSprms);
Mapper().props(pProperties);
}
else
{
RTFValue::Pointer_t pValue(new RTFValue(m_aStates.top().aCharacterAttributes, m_aStates.top().aCharacterSprms));
m_aStates.top().pCurrentBuffer->push_back(Buf_t(BUFFER_PROPS, pValue));
}
// Delete the sprm, so the trackchange range will be started only once.
// OTOH set a boolean flag, so we'll know we need to end the range later.
RTFValue::Pointer_t pTrackchange = m_aStates.top().aCharacterSprms.find(NS_ooxml::LN_trackchange);
if (pTrackchange.get())
{
m_aStates.top().bStartedTrackchange = true;
m_aStates.top().aCharacterSprms.erase(NS_ooxml::LN_trackchange);
}
}
void RTFDocumentImpl::runBreak()
{
sal_uInt8 sBreak[] = { 0xd };
Mapper().text(sBreak, 1);
m_bNeedCr = false;
}
void RTFDocumentImpl::tableBreak()
{
runBreak();
Mapper().endParagraphGroup();
Mapper().startParagraphGroup();
}
void RTFDocumentImpl::parBreak()
{
checkFirstRun();
checkNeedPap();
// end previous paragraph
Mapper().startCharacterGroup();
runBreak();
Mapper().endCharacterGroup();
Mapper().endParagraphGroup();
m_bHadPicture = false;
// start new one
Mapper().startParagraphGroup();
}
void RTFDocumentImpl::sectBreak(bool bFinal = false)
{
SAL_INFO("writerfilter", OSL_THIS_FUNC << ": final? " << bFinal << ", needed? " << m_bNeedSect);
bool bNeedSect = m_bNeedSect;
RTFValue::Pointer_t pBreak = m_aStates.top().aSectionSprms.find(NS_ooxml::LN_EG_SectPrContents_type);
bool bContinuous = pBreak.get() && pBreak->getInt() == 0;
// If there is no paragraph in this section, then insert a dummy one, as required by Writer,
// unless this is the end of the doc, we had nothing since the last section break and this is not a continuous one.
if (m_bNeedPar && !(bFinal && !m_bNeedSect && !bContinuous) && !isSubstream())
dispatchSymbol(RTF_PAR);
// It's allowed to not have a non-table paragraph at the end of an RTF doc, add it now if required.
if (m_bNeedFinalPar && bFinal)
{
dispatchFlag(RTF_PARD);
dispatchSymbol(RTF_PAR);
m_bNeedSect = bNeedSect;
}
while (!m_nHeaderFooterPositions.empty())
{
std::pair<Id, sal_Size> aPair = m_nHeaderFooterPositions.front();
m_nHeaderFooterPositions.pop();
resolveSubstream(aPair.second, aPair.first);
}
// Normally a section break at the end of the doc is necessary. Unless the
// last control word in the document is a section break itself.
if (!bNeedSect || !m_bHadSect)
{
// In case the last section is a continuous one, we don't need to output a section break.
if (bFinal && bContinuous)
m_aStates.top().aSectionSprms.erase(NS_ooxml::LN_EG_SectPrContents_type);
}
// Section properties are a paragraph sprm.
RTFValue::Pointer_t pValue(new RTFValue(m_aStates.top().aSectionAttributes, m_aStates.top().aSectionSprms));
RTFSprms aAttributes;
RTFSprms aSprms;
aSprms.set(NS_ooxml::LN_CT_PPr_sectPr, pValue);
writerfilter::Reference<Properties>::Pointer_t const pProperties(
new RTFReferenceProperties(aAttributes, aSprms)
);
// The trick is that we send properties of the previous section right now, which will be exactly what dmapper expects.
Mapper().props(pProperties);
Mapper().endParagraphGroup();
if (!m_pSuperstream)
Mapper().endSectionGroup();
m_bNeedPar = false;
m_bNeedSect = false;
}
void RTFDocumentImpl::seek(sal_Size nPos)
{
Strm().Seek(nPos);
}
sal_uInt32 RTFDocumentImpl::getColorTable(sal_uInt32 nIndex)
{
if (!m_pSuperstream)
{
if (nIndex < m_aColorTable.size())
return m_aColorTable[nIndex];
return 0;
}
else
return m_pSuperstream->getColorTable(nIndex);
}
rtl_TextEncoding RTFDocumentImpl::getEncoding(int nFontIndex)
{
if (!m_pSuperstream)
{
std::map<int, rtl_TextEncoding>::iterator it = m_aFontEncodings.find(nFontIndex);
if (it != m_aFontEncodings.end())
return it->second;
return msfilter::util::getBestTextEncodingFromLocale(Application::GetSettings().GetLanguageTag().getLocale());
}
else
return m_pSuperstream->getEncoding(nFontIndex);
}
OUString RTFDocumentImpl::getFontName(int nIndex)
{
if (!m_pSuperstream)
return m_aFontNames[nIndex];
else
return m_pSuperstream->getFontName(nIndex);
}
int RTFDocumentImpl::getFontIndex(int nIndex)
{
if (!m_pSuperstream)
return std::find(m_aFontIndexes.begin(), m_aFontIndexes.end(), nIndex) - m_aFontIndexes.begin();
else
return m_pSuperstream->getFontIndex(nIndex);
}
OUString RTFDocumentImpl::getStyleName(int nIndex)
{
if (!m_pSuperstream)
{
OUString aRet;
if (m_aStyleNames.find(nIndex) != m_aStyleNames.end())
aRet = m_aStyleNames[nIndex];
return aRet;
}
else
return m_pSuperstream->getStyleName(nIndex);
}
RTFParserState& RTFDocumentImpl::getDefaultState()
{
if (!m_pSuperstream)
return m_aDefaultState;
else
return m_pSuperstream->getDefaultState();
}
oox::GraphicHelper& RTFDocumentImpl::getGraphicHelper()
{
return *m_pGraphicHelper;
}
void RTFDocumentImpl::resolve(Stream& rMapper)
{
m_pMapperStream = &rMapper;
switch (m_pTokenizer->resolveParse())
{
case ERROR_OK:
SAL_INFO("writerfilter", OSL_THIS_FUNC << ": finished without errors");
break;
case ERROR_GROUP_UNDER:
SAL_INFO("writerfilter", OSL_THIS_FUNC << ": unmatched '}'");
break;
case ERROR_GROUP_OVER:
SAL_INFO("writerfilter", OSL_THIS_FUNC << ": unmatched '{'");
throw io::WrongFormatException(m_pTokenizer->getPosition(), uno::Reference< uno::XInterface >());
break;
case ERROR_EOF:
SAL_INFO("writerfilter", OSL_THIS_FUNC << ": unexpected end of file");
throw io::WrongFormatException(m_pTokenizer->getPosition(), uno::Reference< uno::XInterface >());
break;
case ERROR_HEX_INVALID:
SAL_INFO("writerfilter", OSL_THIS_FUNC << ": invalid hex char");
throw io::WrongFormatException(m_pTokenizer->getPosition(), uno::Reference< uno::XInterface >());
break;
case ERROR_CHAR_OVER:
SAL_INFO("writerfilter", OSL_THIS_FUNC << ": characters after last '}'");
break;
}
}
int RTFDocumentImpl::resolvePict(bool const bInline,
uno::Reference<drawing::XShape> const& i_xShape)
{
SvMemoryStream aStream;
SvStream* pStream = 0;
if (!m_pBinaryData.get())
{
pStream = &aStream;
int b = 0, count = 2;
// Feed the destination text to a stream.
OString aStr = OUStringToOString(
m_aStates.top().aDestinationText.makeStringAndClear(),
RTL_TEXTENCODING_ASCII_US);
const char* str = aStr.getStr();
for (int i = 0; i < aStr.getLength(); ++i)
{
char ch = str[i];
if (ch != 0x0d && ch != 0x0a && ch != 0x20)
{
b = b << 4;
sal_Int8 parsed = m_pTokenizer->asHex(ch);
if (parsed == -1)
return ERROR_HEX_INVALID;
b += parsed;
count--;
if (!count)
{
aStream.WriteChar((char)b);
count = 2;
b = 0;
}
}
}
}
else
pStream = m_pBinaryData.get();
if (!pStream->Tell())
// No destination text? Then we'll get it later.
return 0;
// Store, and get its URL.
pStream->Seek(0);
uno::Reference<io::XInputStream> xInputStream(new utl::OInputStreamWrapper(pStream));
WMF_EXTERNALHEADER aExtHeader;
aExtHeader.mapMode = m_aStates.top().aPicture.eWMetafile;
aExtHeader.xExt = m_aStates.top().aPicture.nWidth;
aExtHeader.yExt = m_aStates.top().aPicture.nHeight;
WMF_EXTERNALHEADER* pExtHeader = &aExtHeader;
uno::Reference<lang::XServiceInfo> xServiceInfo(m_aStates.top().aDrawingObject.xShape, uno::UNO_QUERY);
if (xServiceInfo.is() && xServiceInfo->supportsService("com.sun.star.text.TextFrame"))
pExtHeader = 0;
OUString aGraphicUrl = m_pGraphicHelper->importGraphicObject(xInputStream, pExtHeader);
if (m_aStates.top().aPicture.nStyle != BMPSTYLE_NONE)
{
// In case of PNG/JPEG, the real size is known, don't use the values
// provided by picw and pich.
OString aURLBS(OUStringToOString(aGraphicUrl, RTL_TEXTENCODING_UTF8));
const char aURLBegin[] = "vnd.sun.star.GraphicObject:";
if (aURLBS.compareTo(aURLBegin, RTL_CONSTASCII_LENGTH(aURLBegin)) == 0)
{
Graphic aGraphic = GraphicObject(aURLBS.copy(RTL_CONSTASCII_LENGTH(aURLBegin))).GetTransformedGraphic();
Size aSize(aGraphic.GetPrefSize());
MapMode aMap(MAP_100TH_MM);
if (aGraphic.GetPrefMapMode().GetMapUnit() == MAP_PIXEL)
aSize = Application::GetDefaultDevice()->PixelToLogic(aSize, aMap);
else
aSize = OutputDevice::LogicToLogic(aSize, aGraphic.GetPrefMapMode(), aMap);
m_aStates.top().aPicture.nWidth = aSize.Width();
m_aStates.top().aPicture.nHeight = aSize.Height();
}
}
// Wrap it in an XShape.
uno::Reference<drawing::XShape> xShape(i_xShape);
if (xShape.is())
{
uno::Reference<lang::XServiceInfo> xSI(xShape, uno::UNO_QUERY_THROW);
if (!xSI->supportsService("com.sun.star.drawing.GraphicObjectShape"))
{
//fdo37691-1.rtf
SAL_WARN("writerfilter.rtf", "cannot set graphic on existing shape, creating a new GraphicObjectShape");
xShape.set(NULL);
}
}
if (!xShape.is())
{
if (m_xModelFactory.is())
xShape.set(m_xModelFactory->createInstance(
"com.sun.star.drawing.GraphicObjectShape"), uno::UNO_QUERY);
uno::Reference<drawing::XDrawPageSupplier> const xDrawSupplier(
m_xDstDoc, uno::UNO_QUERY);
if (xDrawSupplier.is())
{
uno::Reference<drawing::XShapes> xShapes(
xDrawSupplier->getDrawPage(), uno::UNO_QUERY);
if (xShapes.is())
xShapes->add(xShape);
}
}
uno::Reference<beans::XPropertySet> xPropertySet(xShape, uno::UNO_QUERY);
// check if the picture is in an OLE object and if the \objdata element is used
// (see RTF_OBJECT in RTFDocumentImpl::dispatchDestination)
if (m_bObject)
{
// Set bitmap
beans::PropertyValues aMediaProperties(1);
aMediaProperties[0].Name = "URL";
aMediaProperties[0].Value <<= aGraphicUrl;
uno::Reference<graphic::XGraphicProvider> xGraphicProvider(graphic::GraphicProvider::create(m_xContext));
uno::Reference<graphic::XGraphic> xGraphic = xGraphicProvider->queryGraphic(aMediaProperties);
xPropertySet->setPropertyValue("Graphic", uno::Any(xGraphic));
// Set the object size
awt::Size aSize;
aSize.Width = (m_aStates.top().aPicture.nGoalWidth ? m_aStates.top().aPicture.nGoalWidth : m_aStates.top().aPicture.nWidth);
aSize.Height = (m_aStates.top().aPicture.nGoalHeight ? m_aStates.top().aPicture.nGoalHeight : m_aStates.top().aPicture.nHeight);
xShape->setSize(aSize);
// Replacement graphic is inline by default, see oox::vml::SimpleShape::implConvertAndInsert().
xPropertySet->setPropertyValue("AnchorType", uno::makeAny(text::TextContentAnchorType_AS_CHARACTER));
RTFValue::Pointer_t pShapeValue(new RTFValue(xShape));
m_aObjectAttributes.set(NS_ooxml::LN_shape, pShapeValue);
return 0;
}
if (xPropertySet.is())
xPropertySet->setPropertyValue("GraphicURL", uno::Any(aGraphicUrl));
if (m_aStates.top().bInListpicture)
{
// Send the shape directly, no section is started, to additional properties will be ignored anyway.
Mapper().startShape(xShape);
Mapper().endShape();
return 0;
}
// Send it to the dmapper.
RTFSprms aSprms;
RTFSprms aAttributes;
// shape attribute
RTFSprms aPicAttributes;
RTFValue::Pointer_t pShapeValue(new RTFValue(xShape));
aPicAttributes.set(NS_ooxml::LN_shape, pShapeValue);
// pic sprm
RTFSprms aGraphicDataAttributes;
RTFSprms aGraphicDataSprms;
RTFValue::Pointer_t pPicValue(new RTFValue(aPicAttributes));
aGraphicDataSprms.set(NS_ooxml::LN_pic_pic, pPicValue);
// graphicData sprm
RTFSprms aGraphicAttributes;
RTFSprms aGraphicSprms;
RTFValue::Pointer_t pGraphicDataValue(new RTFValue(aGraphicDataAttributes, aGraphicDataSprms));
aGraphicSprms.set(NS_ooxml::LN_CT_GraphicalObject_graphicData, pGraphicDataValue);
// graphic sprm
RTFValue::Pointer_t pGraphicValue(new RTFValue(aGraphicAttributes, aGraphicSprms));
// extent sprm
RTFSprms aExtentAttributes;
int nXExt, nYExt;
nXExt = (m_aStates.top().aPicture.nGoalWidth ? m_aStates.top().aPicture.nGoalWidth : m_aStates.top().aPicture.nWidth);
nYExt = (m_aStates.top().aPicture.nGoalHeight ? m_aStates.top().aPicture.nGoalHeight : m_aStates.top().aPicture.nHeight);
if (m_aStates.top().aPicture.nScaleX != 100)
nXExt = (((long)m_aStates.top().aPicture.nScaleX) * (nXExt - (m_aStates.top().aPicture.nCropL + m_aStates.top().aPicture.nCropR))) / 100L;
if (m_aStates.top().aPicture.nScaleY != 100)
nYExt = (((long)m_aStates.top().aPicture.nScaleY) * (nYExt - (m_aStates.top().aPicture.nCropT + m_aStates.top().aPicture.nCropB))) / 100L;
RTFValue::Pointer_t pXExtValue(new RTFValue(MM100_TO_EMU(nXExt)));
RTFValue::Pointer_t pYExtValue(new RTFValue(MM100_TO_EMU(nYExt)));
aExtentAttributes.set(NS_ooxml::LN_CT_PositiveSize2D_cx, pXExtValue);
aExtentAttributes.set(NS_ooxml::LN_CT_PositiveSize2D_cy, pYExtValue);
RTFValue::Pointer_t pExtentValue(new RTFValue(aExtentAttributes));
// docpr sprm
RTFSprms aDocprAttributes;
for (RTFSprms::Iterator_t i = m_aStates.top().aCharacterAttributes.begin(); i != m_aStates.top().aCharacterAttributes.end(); ++i)
if (i->first == NS_ooxml::LN_CT_NonVisualDrawingProps_name || i->first == NS_ooxml::LN_CT_NonVisualDrawingProps_descr)
aDocprAttributes.set(i->first, i->second);
RTFValue::Pointer_t pDocprValue(new RTFValue(aDocprAttributes));
if (bInline)
{
RTFSprms aInlineAttributes;
aInlineAttributes.set(NS_ooxml::LN_CT_Inline_distT, RTFValue::Pointer_t(new RTFValue(0)));
aInlineAttributes.set(NS_ooxml::LN_CT_Inline_distB, RTFValue::Pointer_t(new RTFValue(0)));
aInlineAttributes.set(NS_ooxml::LN_CT_Inline_distL, RTFValue::Pointer_t(new RTFValue(0)));
aInlineAttributes.set(NS_ooxml::LN_CT_Inline_distR, RTFValue::Pointer_t(new RTFValue(0)));
RTFSprms aInlineSprms;
aInlineSprms.set(NS_ooxml::LN_CT_Inline_extent, pExtentValue);
aInlineSprms.set(NS_ooxml::LN_CT_Inline_docPr, pDocprValue);
aInlineSprms.set(NS_ooxml::LN_graphic_graphic, pGraphicValue);
// inline sprm
RTFValue::Pointer_t pValue(new RTFValue(aInlineAttributes, aInlineSprms));
aSprms.set(NS_ooxml::LN_inline_inline, pValue);
}
else // anchored
{
// wrap sprm
RTFSprms aAnchorWrapAttributes;
RTFSprms aAnchorAttributes;
RTFSprms aAnchorSprms;
for (RTFSprms::Iterator_t i = m_aStates.top().aCharacterAttributes.begin(); i != m_aStates.top().aCharacterAttributes.end(); ++i)
{
if (i->first == NS_ooxml::LN_CT_WrapSquare_wrapText)
aAnchorWrapAttributes.set(i->first, i->second);
}
for (RTFSprms::Iterator_t i = m_aStates.top().aCharacterSprms.begin(); i != m_aStates.top().aCharacterSprms.end(); ++i)
{
if (i->first == NS_ooxml::LN_EG_WrapType_wrapNone)
aAnchorSprms.set(i->first, i->second);
}
RTFValue::Pointer_t pAnchorWrapValue(new RTFValue(aAnchorWrapAttributes));
aAnchorSprms.set(NS_ooxml::LN_CT_Anchor_extent, pExtentValue);
if (aAnchorWrapAttributes.size())
aAnchorSprms.set(NS_ooxml::LN_EG_WrapType_wrapSquare, pAnchorWrapValue);
// See OOXMLFastContextHandler::positionOffset(), we can't just put offset values in an RTFValue.
RTFSprms aPoshSprms;
if (m_aStates.top().aShape.nHoriOrientRelationToken > 0)
aPoshSprms.set(NS_ooxml::LN_CT_PosH_relativeFrom, RTFValue::Pointer_t(new RTFValue(m_aStates.top().aShape.nHoriOrientRelationToken)));
if (m_aStates.top().aShape.nLeft != 0)
writerfilter::dmapper::PositionHandler::setPositionOffset(OUString::number(MM100_TO_EMU(m_aStates.top().aShape.nLeft)), false);
aAnchorSprms.set(NS_ooxml::LN_CT_Anchor_positionH, RTFValue::Pointer_t(new RTFValue(aPoshSprms)));
RTFSprms aPosvSprms;
if (m_aStates.top().aShape.nVertOrientRelationToken > 0)
aPosvSprms.set(NS_ooxml::LN_CT_PosV_relativeFrom, RTFValue::Pointer_t(new RTFValue(m_aStates.top().aShape.nVertOrientRelationToken)));
if (m_aStates.top().aShape.nTop != 0)
writerfilter::dmapper::PositionHandler::setPositionOffset(OUString::number(MM100_TO_EMU(m_aStates.top().aShape.nTop)), true);
aAnchorSprms.set(NS_ooxml::LN_CT_Anchor_positionV, RTFValue::Pointer_t(new RTFValue(aPosvSprms)));
aAnchorSprms.set(NS_ooxml::LN_CT_Anchor_docPr, pDocprValue);
aAnchorSprms.set(NS_ooxml::LN_graphic_graphic, pGraphicValue);
// anchor sprm
RTFValue::Pointer_t pValue(new RTFValue(aAnchorAttributes, aAnchorSprms));
aSprms.set(NS_ooxml::LN_anchor_anchor, pValue);
}
writerfilter::Reference<Properties>::Pointer_t const pProperties(new RTFReferenceProperties(aAttributes, aSprms));
checkFirstRun();
if (!m_aStates.top().pCurrentBuffer)
{
Mapper().props(pProperties);
// Make sure we don't lose these properties with a too early reset.
m_bHadPicture = true;
}
else
{
RTFValue::Pointer_t pValue(new RTFValue(aAttributes, aSprms));
m_aStates.top().pCurrentBuffer->push_back(Buf_t(BUFFER_PROPS, pValue));
}
return 0;
}
int RTFDocumentImpl::resolveChars(char ch)
{
if (m_aStates.top().nInternalState == INTERNAL_BIN)
{
m_pBinaryData.reset(new SvMemoryStream());
m_pBinaryData->WriteChar(ch);
for (int i = 0; i < m_aStates.top().nBinaryToRead - 1; ++i)
{
Strm().ReadChar(ch);
m_pBinaryData->WriteChar(ch);
}
m_aStates.top().nInternalState = INTERNAL_NORMAL;
return 0;
}
if (m_aStates.top().nInternalState != INTERNAL_HEX)
checkUnicode(/*bUnicode =*/ false, /*bHex =*/ true);
OStringBuffer aBuf;
bool bUnicodeChecked = false;
bool bSkipped = false;
while (!Strm().IsEof() && (m_aStates.top().nInternalState == INTERNAL_HEX
|| (ch != '{' && ch != '}' && ch != '\\')))
{
if (m_aStates.top().nInternalState == INTERNAL_HEX || (ch != 0x0d && ch != 0x0a))
{
if (m_aStates.top().nCharsToSkip == 0)
{
if (!bUnicodeChecked)
{
checkUnicode(/*bUnicode =*/ true, /*bHex =*/ false);
bUnicodeChecked = true;
}
aBuf.append(ch);
}
else
{
bSkipped = true;
m_aStates.top().nCharsToSkip--;
}
}
// read a single char if we're in hex mode
if (m_aStates.top().nInternalState == INTERNAL_HEX)
break;
if (RTL_TEXTENCODING_MS_932 == m_aStates.top().nCurrentEncoding)
{
unsigned char uch = ch;
if ((uch >= 0x80 && uch <= 0x9F) || uch >= 0xE0)
{
// read second byte of 2-byte Shift-JIS - may be \ { }
Strm().ReadChar(ch);
if (m_aStates.top().nCharsToSkip == 0)
{
// fdo#79384: Word will reject Shift-JIS following \loch
// but apparently OOo could read and (worse) write such documents
SAL_INFO_IF(m_aStates.top().eRunType != RTFParserState::DBCH, "writerfilter.rtf", "invalid Shift-JIS without DBCH");
assert(bUnicodeChecked);
aBuf.append(ch);
}
else
{
assert(bSkipped);
// anybody who uses \ucN with Shift-JIS is insane
m_aStates.top().nCharsToSkip--;
}
}
}
Strm().ReadChar(ch);
}
if (m_aStates.top().nInternalState != INTERNAL_HEX && !Strm().IsEof())
Strm().SeekRel(-1);
if (m_aStates.top().nInternalState == INTERNAL_HEX && m_aStates.top().nDestinationState != DESTINATION_LEVELNUMBERS)
{
if (!bSkipped)
m_aHexBuffer.append(ch);
return 0;
}
if (m_aStates.top().nDestinationState == DESTINATION_SKIP)
return 0;
OString aStr = aBuf.makeStringAndClear();
if (m_aStates.top().nDestinationState == DESTINATION_LEVELNUMBERS)
{
if (aStr.toChar() != ';')
m_aStates.top().aLevelNumbers.push_back(sal_Int32(ch));
return 0;
}
OUString aOUStr(OStringToOUString(aStr, m_aStates.top().nCurrentEncoding));
SAL_INFO("writerfilter", OSL_THIS_FUNC << ": collected '" << aOUStr << "'");
if (m_aStates.top().nDestinationState == DESTINATION_COLORTABLE)
{
// we hit a ';' at the end of each color entry
sal_uInt32 color = (m_aStates.top().aCurrentColor.nRed << 16) | (m_aStates.top().aCurrentColor.nGreen << 8)
| m_aStates.top().aCurrentColor.nBlue;
m_aColorTable.push_back(color);
// set components back to zero
m_aStates.top().aCurrentColor = RTFColorTableEntry();
}
else if (!aOUStr.isEmpty())
text(aOUStr);
return 0;
}
bool RTFFrame::inFrame()
{
return nW > 0
|| nH > 0
|| nX > 0
|| nY > 0;
}
void RTFDocumentImpl::singleChar(sal_uInt8 nValue, bool bRunProps)
{
sal_uInt8 sValue[] = { nValue };
RTFBuffer_t* pCurrentBuffer = m_aStates.top().pCurrentBuffer;
if (!pCurrentBuffer)
{
Mapper().startCharacterGroup();
// Should we send run properties?
if (bRunProps)
runProps();
Mapper().text(sValue, 1);
Mapper().endCharacterGroup();
}
else
{
pCurrentBuffer->push_back(Buf_t(BUFFER_STARTRUN));
RTFValue::Pointer_t pValue(new RTFValue(*sValue));
pCurrentBuffer->push_back(Buf_t(BUFFER_TEXT, pValue));
pCurrentBuffer->push_back(Buf_t(BUFFER_ENDRUN));
}
}
void RTFDocumentImpl::text(OUString& rString)
{
if (rString.getLength() == 1 && m_aStates.top().nDestinationState != DESTINATION_DOCCOMM)
{
// No cheating! Tokenizer ignores bare \r and \n, their hex \'0d / \'0a form doesn't count, either.
sal_Unicode ch = rString[0];
if (ch == 0x0d || ch == 0x0a)
return;
}
bool bRet = true;
switch (m_aStates.top().nDestinationState)
{
// Note: in fonttbl there may or may not be groups; in stylesheet
// and revtbl groups are mandatory
case DESTINATION_FONTTABLE:
case DESTINATION_FONTENTRY:
case DESTINATION_STYLEENTRY:
case DESTINATION_REVISIONENTRY:
{
// ; is the end of the entry
bool bEnd = false;
if (rString.endsWithAsciiL(";", 1))
{
rString = rString.copy(0, rString.getLength() - 1);
bEnd = true;
}
m_aStates.top().pDestinationText->append(rString);
if (bEnd)
{
// always clear, necessary in case of group-less fonttable
OUString const aName = m_aStates.top().pDestinationText->makeStringAndClear();
switch (m_aStates.top().nDestinationState)
{
case DESTINATION_FONTTABLE:
case DESTINATION_FONTENTRY:
{
m_aFontNames[m_nCurrentFontIndex] = aName;
if (m_nCurrentEncoding > 0)
{
m_aFontEncodings[m_nCurrentFontIndex] = m_nCurrentEncoding;
m_nCurrentEncoding = 0;
}
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_Font_name, RTFValue::Pointer_t(new RTFValue(aName)));
writerfilter::Reference<Properties>::Pointer_t const pProp(
new RTFReferenceProperties(m_aStates.top().aTableAttributes, m_aStates.top().aTableSprms)
);
//See fdo#47347 initial invalid font entry properties are inserted first,
//so when we attempt to insert the correct ones, there's already an
//entry in the map for them, so the new ones aren't inserted.
RTFReferenceTable::Entries_t::iterator lb = m_aFontTableEntries.lower_bound(m_nCurrentFontIndex);
if (lb != m_aFontTableEntries.end() && !(m_aFontTableEntries.key_comp()(m_nCurrentFontIndex, lb->first)))
lb->second = pProp;
else
m_aFontTableEntries.insert(lb, make_pair(m_nCurrentFontIndex, pProp));
}
break;
case DESTINATION_STYLEENTRY:
if (m_aStates.top().aTableAttributes.find(NS_ooxml::LN_CT_Style_type))
{
m_aStyleNames[m_nCurrentStyleIndex] = aName;
RTFValue::Pointer_t pValue(new RTFValue(aName));
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_Style_styleId, pValue);
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Style_name, pValue);
writerfilter::Reference<Properties>::Pointer_t const pProp(
createStyleProperties()
);
m_aStyleTableEntries.insert(make_pair(m_nCurrentStyleIndex, pProp));
}
else
SAL_INFO("writerfilter", "no RTF style type defined, ignoring");
break;
case DESTINATION_REVISIONENTRY:
m_aAuthors[m_aAuthors.size()] = aName;
break;
default:
break;
}
resetAttributes();
resetSprms();
}
}
break;
case DESTINATION_LEVELTEXT:
case DESTINATION_SHAPEPROPERTYNAME:
case DESTINATION_SHAPEPROPERTYVALUE:
case DESTINATION_BOOKMARKEND:
case DESTINATION_PICT:
case DESTINATION_SHAPEPROPERTYVALUEPICT:
case DESTINATION_FORMFIELDNAME:
case DESTINATION_FORMFIELDLIST:
case DESTINATION_DATAFIELD:
case DESTINATION_AUTHOR:
case DESTINATION_KEYWORDS:
case DESTINATION_OPERATOR:
case DESTINATION_COMPANY:
case DESTINATION_COMMENT:
case DESTINATION_OBJDATA:
case DESTINATION_ANNOTATIONDATE:
case DESTINATION_ANNOTATIONAUTHOR:
case DESTINATION_ANNOTATIONREFERENCE:
case DESTINATION_FALT:
case DESTINATION_PARAGRAPHNUMBERING_TEXTAFTER:
case DESTINATION_PARAGRAPHNUMBERING_TEXTBEFORE:
case DESTINATION_TITLE:
case DESTINATION_SUBJECT:
case DESTINATION_DOCCOMM:
case DESTINATION_ATNID:
case DESTINATION_ANNOTATIONREFERENCESTART:
case DESTINATION_ANNOTATIONREFERENCEEND:
case DESTINATION_MR:
case DESTINATION_MCHR:
case DESTINATION_MPOS:
case DESTINATION_MVERTJC:
case DESTINATION_MSTRIKEH:
case DESTINATION_MDEGHIDE:
case DESTINATION_MBEGCHR:
case DESTINATION_MSEPCHR:
case DESTINATION_MENDCHR:
case DESTINATION_MSUBHIDE:
case DESTINATION_MSUPHIDE:
case DESTINATION_MTYPE:
case DESTINATION_MGROW:
m_aStates.top().pDestinationText->append(rString);
break;
default:
bRet = false;
break;
}
if (bRet)
return;
if (!m_aIgnoreFirst.isEmpty() && m_aIgnoreFirst.equals(rString))
{
m_aIgnoreFirst = "";
return;
}
// Are we in the middle of the table definition? (No cell defs yet, but we already have some cell props.)
if (m_aStates.top().aTableCellSprms.find(NS_ooxml::LN_CT_TcPrBase_vAlign).get() &&
m_nTopLevelCells == 0)
{
m_aTableBufferStack.back().push_back(
Buf_t(BUFFER_UTEXT, RTFValue::Pointer_t(new RTFValue(rString))));
return;
}
checkFirstRun();
checkNeedPap();
// Don't return earlier, a bookmark start has to be in a paragraph group.
if (m_aStates.top().nDestinationState == DESTINATION_BOOKMARKSTART)
{
m_aStates.top().pDestinationText->append(rString);
return;
}
RTFBuffer_t* pCurrentBuffer = m_aStates.top().pCurrentBuffer;
if (!pCurrentBuffer && m_aStates.top().nDestinationState != DESTINATION_FOOTNOTE)
Mapper().startCharacterGroup();
else if (pCurrentBuffer)
{
RTFValue::Pointer_t pValue;
pCurrentBuffer->push_back(Buf_t(BUFFER_STARTRUN, pValue));
}
if (m_aStates.top().nDestinationState == DESTINATION_NORMAL
|| m_aStates.top().nDestinationState == DESTINATION_FIELDRESULT
|| m_aStates.top().nDestinationState == DESTINATION_SHAPETEXT)
runProps();
if (!pCurrentBuffer)
Mapper().utext(reinterpret_cast<sal_uInt8 const*>(rString.getStr()), rString.getLength());
else
{
RTFValue::Pointer_t pValue(new RTFValue(rString));
pCurrentBuffer->push_back(Buf_t(BUFFER_UTEXT, pValue));
}
m_bNeedCr = true;
if (!pCurrentBuffer && m_aStates.top().nDestinationState != DESTINATION_FOOTNOTE)
Mapper().endCharacterGroup();
else if (pCurrentBuffer)
{
RTFValue::Pointer_t pValue;
pCurrentBuffer->push_back(Buf_t(BUFFER_ENDRUN, pValue));
}
}
void RTFDocumentImpl::prepareProperties(
RTFParserState& rState,
writerfilter::Reference<Properties>::Pointer_t& o_rpParagraphProperties,
writerfilter::Reference<Properties>::Pointer_t& o_rpFrameProperties,
writerfilter::Reference<Properties>::Pointer_t& o_rpTableRowProperties,
int const nCells, int const nCurrentCellX)
{
o_rpParagraphProperties = getProperties(
rState.aParagraphAttributes, rState.aParagraphSprms);
if (rState.aFrame.hasProperties())
{
o_rpFrameProperties.reset(new RTFReferenceProperties(
RTFSprms(), rState.aFrame.getSprms()));
}
// Table width.
RTFValue::Pointer_t const pUnitValue(new RTFValue(3));
lcl_putNestedAttribute(rState.aTableRowSprms,
NS_ooxml::LN_CT_TblPrBase_tblW, NS_ooxml::LN_CT_TblWidth_type,
pUnitValue);
RTFValue::Pointer_t const pWValue(new RTFValue(nCurrentCellX));
lcl_putNestedAttribute(rState.aTableRowSprms,
NS_ooxml::LN_CT_TblPrBase_tblW, NS_ooxml::LN_CT_TblWidth_w, pWValue);
RTFValue::Pointer_t const pRowValue(new RTFValue(1));
if (nCells > 0)
rState.aTableRowSprms.set(NS_ooxml::LN_tblRow, pRowValue);
RTFValue::Pointer_t const pCellMar =
rState.aTableRowSprms.find(NS_ooxml::LN_CT_TblPrBase_tblCellMar);
if (!pCellMar.get())
{
// If no cell margins are defined, the default left/right margin is 0 in Word, but not in Writer.
RTFSprms aAttributes;
aAttributes.set(NS_ooxml::LN_CT_TblWidth_type, RTFValue::Pointer_t(
new RTFValue(NS_ooxml::LN_Value_ST_TblWidth_dxa)));
aAttributes.set(NS_ooxml::LN_CT_TblWidth_w,
RTFValue::Pointer_t(new RTFValue(0)));
lcl_putNestedSprm(rState.aTableRowSprms,
NS_ooxml::LN_CT_TblPrBase_tblCellMar,
NS_ooxml::LN_CT_TblCellMar_left,
RTFValue::Pointer_t(new RTFValue(aAttributes)));
lcl_putNestedSprm(rState.aTableRowSprms,
NS_ooxml::LN_CT_TblPrBase_tblCellMar,
NS_ooxml::LN_CT_TblCellMar_right,
RTFValue::Pointer_t(new RTFValue(aAttributes)));
}
o_rpTableRowProperties.reset(new RTFReferenceProperties(
rState.aTableRowAttributes, rState.aTableRowSprms));
}
void RTFDocumentImpl::sendProperties(
writerfilter::Reference<Properties>::Pointer_t const& pParagraphProperties,
writerfilter::Reference<Properties>::Pointer_t const& pFrameProperties,
writerfilter::Reference<Properties>::Pointer_t const& pTableRowProperties)
{
Mapper().props(pParagraphProperties);
if (pFrameProperties)
{
Mapper().props(pFrameProperties);
}
Mapper().props(pTableRowProperties);
tableBreak();
}
void RTFDocumentImpl::replayRowBuffer(
RTFBuffer_t& rBuffer,
::std::deque<RTFSprms>& rCellsSrpms,
::std::deque<RTFSprms>& rCellsAttributes,
int const nCells)
{
for (int i = 0; i < nCells; ++i)
{
replayBuffer(rBuffer, &rCellsSrpms.front(), &rCellsAttributes.front());
rCellsSrpms.pop_front();
rCellsAttributes.pop_front();
}
for (size_t i = 0; i < rBuffer.size(); ++i)
{
SAL_WARN_IF(BUFFER_CELLEND == boost::get<0>(rBuffer[i]),
"writerfilter.rtf", "dropping table cell!");
}
assert(0 == rCellsSrpms.size());
assert(0 == rCellsAttributes.size());
}
void RTFDocumentImpl::replayBuffer(RTFBuffer_t& rBuffer,
RTFSprms* const pSprms, RTFSprms const* const pAttributes)
{
while (rBuffer.size())
{
Buf_t aTuple(rBuffer.front());
rBuffer.pop_front();
if (boost::get<0>(aTuple) == BUFFER_PROPS)
{
writerfilter::Reference<Properties>::Pointer_t const pProp(
new RTFReferenceProperties(
boost::get<1>(aTuple)->getAttributes(),
boost::get<1>(aTuple)->getSprms())
);
Mapper().props(pProp);
}
else if (boost::get<0>(aTuple) == BUFFER_NESTROW)
{
TableRowBuffer& rRowBuffer(*boost::get<2>(aTuple));
replayRowBuffer(rRowBuffer.buffer, rRowBuffer.cellsSprms,
rRowBuffer.cellsAttributes, rRowBuffer.nCells);
sendProperties(rRowBuffer.pParaProperties,
rRowBuffer.pFrameProperties, rRowBuffer.pRowProperties);
}
else if (boost::get<0>(aTuple) == BUFFER_CELLEND)
{
assert(pSprms && pAttributes);
RTFValue::Pointer_t pValue(new RTFValue(1));
pSprms->set(NS_ooxml::LN_tblCell, pValue);
writerfilter::Reference<Properties>::Pointer_t const pTableCellProperties(
new RTFReferenceProperties(*pAttributes, *pSprms));
Mapper().props(pTableCellProperties);
tableBreak();
break;
}
else if (boost::get<0>(aTuple) == BUFFER_STARTRUN)
Mapper().startCharacterGroup();
else if (boost::get<0>(aTuple) == BUFFER_TEXT)
{
sal_uInt8 const nValue = boost::get<1>(aTuple)->getInt();
Mapper().text(&nValue, 1);
}
else if (boost::get<0>(aTuple) == BUFFER_UTEXT)
{
OUString const aString(boost::get<1>(aTuple)->getString());
Mapper().utext(reinterpret_cast<sal_uInt8 const*>(aString.getStr()), aString.getLength());
}
else if (boost::get<0>(aTuple) == BUFFER_ENDRUN)
Mapper().endCharacterGroup();
else if (boost::get<0>(aTuple) == BUFFER_PAR)
parBreak();
else if (boost::get<0>(aTuple) == BUFFER_STARTSHAPE)
m_pSdrImport->resolve(boost::get<1>(aTuple)->getShape(), false,
RTFSdrImport::SHAPE);
else if (boost::get<0>(aTuple) == BUFFER_ENDSHAPE)
m_pSdrImport->close();
else
assert(false);
}
}
int RTFDocumentImpl::dispatchDestination(RTFKeyword nKeyword)
{
setNeedSect();
checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
RTFSkipDestination aSkip(*this);
// special case \upr: ignore everything except nested \ud
if (DESTINATION_UPR == m_aStates.top().nDestinationState
&& RTF_UD != nKeyword)
{
m_aStates.top().nDestinationState = DESTINATION_SKIP;
aSkip.setParsed(false);
}
else switch (nKeyword)
{
case RTF_RTF:
break;
case RTF_FONTTBL:
m_aStates.top().nDestinationState = DESTINATION_FONTTABLE;
break;
case RTF_COLORTBL:
m_aStates.top().nDestinationState = DESTINATION_COLORTABLE;
break;
case RTF_STYLESHEET:
m_aStates.top().nDestinationState = DESTINATION_STYLESHEET;
break;
case RTF_FIELD:
m_aStates.top().nDestinationState = DESTINATION_FIELD;
break;
case RTF_FLDINST:
{
// Look for the field type
sal_Size nPos = Strm().Tell();
OStringBuffer aBuf;
char ch = 0;
bool bFoundCode = false;
bool bInKeyword = false;
while (!bFoundCode && ch != '}')
{
Strm().ReadChar(ch);
if ('\\' == ch)
bInKeyword = true;
if (!bInKeyword && isalnum(ch))
aBuf.append(ch);
else if (bInKeyword && isspace(ch))
bInKeyword = false;
if (!aBuf.isEmpty() && !isalnum(ch))
bFoundCode = true;
}
Strm().Seek(nPos);
// Form data should be handled only for form fields if any
if (aBuf.toString().indexOf(OString("FORM")) != -1)
m_bFormField = true;
singleChar(0x13);
m_aStates.top().nDestinationState = DESTINATION_FIELDINSTRUCTION;
}
break;
case RTF_FLDRSLT:
m_aStates.top().nDestinationState = DESTINATION_FIELDRESULT;
break;
case RTF_LISTTABLE:
m_aStates.top().nDestinationState = DESTINATION_LISTTABLE;
break;
case RTF_LISTPICTURE:
m_aStates.top().nDestinationState = DESTINATION_LISTPICTURE;
m_aStates.top().bInListpicture = true;
break;
case RTF_LIST:
m_aStates.top().nDestinationState = DESTINATION_LISTENTRY;
break;
case RTF_LFOLEVEL:
m_aStates.top().nDestinationState = DESTINATION_LFOLEVEL;
m_aStates.top().aTableSprms.clear();
break;
case RTF_LISTOVERRIDETABLE:
m_aStates.top().nDestinationState = DESTINATION_LISTOVERRIDETABLE;
break;
case RTF_LISTOVERRIDE:
m_aStates.top().nDestinationState = DESTINATION_LISTOVERRIDEENTRY;
break;
case RTF_LISTLEVEL:
m_aStates.top().nDestinationState = DESTINATION_LISTLEVEL;
break;
case RTF_LEVELTEXT:
m_aStates.top().nDestinationState = DESTINATION_LEVELTEXT;
break;
case RTF_LEVELNUMBERS:
m_aStates.top().nDestinationState = DESTINATION_LEVELNUMBERS;
break;
case RTF_SHPPICT:
m_aStates.top().resetFrame();
m_aStates.top().nDestinationState = DESTINATION_SHPPICT;
break;
case RTF_PICT:
if (m_aStates.top().nDestinationState != DESTINATION_SHAPEPROPERTYVALUE)
m_aStates.top().nDestinationState = DESTINATION_PICT; // as character
else
m_aStates.top().nDestinationState = DESTINATION_SHAPEPROPERTYVALUEPICT; // anchored inside a shape
break;
case RTF_PICPROP:
m_aStates.top().nDestinationState = DESTINATION_PICPROP;
break;
case RTF_SP:
m_aStates.top().nDestinationState = DESTINATION_SHAPEPROPERTY;
break;
case RTF_SN:
m_aStates.top().nDestinationState = DESTINATION_SHAPEPROPERTYNAME;
break;
case RTF_SV:
m_aStates.top().nDestinationState = DESTINATION_SHAPEPROPERTYVALUE;
break;
case RTF_SHP:
m_bNeedCrOrig = m_bNeedCr;
m_aStates.top().nDestinationState = DESTINATION_SHAPE;
m_aStates.top().bInShape = true;
break;
case RTF_SHPINST:
m_aStates.top().nDestinationState = DESTINATION_SHAPEINSTRUCTION;
break;
case RTF_NESTTABLEPROPS:
// do not set any properties of outer table at nested table!
m_aStates.top().aTableCellSprms = m_aDefaultState.aTableCellSprms;
m_aStates.top().aTableCellAttributes =
m_aDefaultState.aTableCellAttributes;
m_aNestedTableCellsSprms.clear();
m_aNestedTableCellsAttributes.clear();
m_nNestedCells = 0;
m_aStates.top().nDestinationState = DESTINATION_NESTEDTABLEPROPERTIES;
break;
case RTF_HEADER:
case RTF_FOOTER:
case RTF_HEADERL:
case RTF_HEADERR:
case RTF_HEADERF:
case RTF_FOOTERL:
case RTF_FOOTERR:
case RTF_FOOTERF:
if (!m_pSuperstream)
{
Id nId = 0;
sal_Size nPos = m_nGroupStartPos - 1;
switch (nKeyword)
{
case RTF_HEADER:
nId = NS_ooxml::LN_headerr;
break;
case RTF_FOOTER:
nId = NS_ooxml::LN_footerr;
break;
case RTF_HEADERL:
nId = NS_ooxml::LN_headerl;
break;
case RTF_HEADERR:
nId = NS_ooxml::LN_headerr;
break;
case RTF_HEADERF:
nId = NS_ooxml::LN_headerf;
break;
case RTF_FOOTERL:
nId = NS_ooxml::LN_footerl;
break;
case RTF_FOOTERR:
nId = NS_ooxml::LN_footerr;
break;
case RTF_FOOTERF:
nId = NS_ooxml::LN_footerf;
break;
default:
break;
}
m_nHeaderFooterPositions.push(make_pair(nId, nPos));
m_aStates.top().nDestinationState = DESTINATION_SKIP;
}
break;
case RTF_FOOTNOTE:
if (!m_pSuperstream)
{
Id nId = NS_ooxml::LN_footnote;
// Check if this is an endnote.
OStringBuffer aBuf;
char ch;
for (int i = 0; i < 7; ++i)
{
Strm().ReadChar(ch);
aBuf.append(ch);
}
OString aKeyword = aBuf.makeStringAndClear();
if (aKeyword.equals("\\ftnalt"))
nId = NS_ooxml::LN_endnote;
m_bHasFootnote = true;
if (m_aStates.top().pCurrentBuffer == &m_aSuperBuffer)
m_aStates.top().pCurrentBuffer = 0;
bool bCustomMark = false;
OUString aCustomMark;
while (m_aSuperBuffer.size())
{
Buf_t aTuple = m_aSuperBuffer.front();
m_aSuperBuffer.pop_front();
if (boost::get<0>(aTuple) == BUFFER_UTEXT)
{
aCustomMark = boost::get<1>(aTuple)->getString();
bCustomMark = true;
}
}
m_aStates.top().nDestinationState = DESTINATION_FOOTNOTE;
if (bCustomMark)
Mapper().startCharacterGroup();
resolveSubstream(m_nGroupStartPos - 1, nId, aCustomMark);
if (bCustomMark)
{
m_aStates.top().aCharacterAttributes.clear();
m_aStates.top().aCharacterSprms.clear();
RTFValue::Pointer_t pValue(new RTFValue(1));
m_aStates.top().aCharacterAttributes.set(NS_ooxml::LN_CT_FtnEdnRef_customMarkFollows, pValue);
text(aCustomMark);
Mapper().endCharacterGroup();
}
m_aStates.top().nDestinationState = DESTINATION_SKIP;
}
break;
case RTF_BKMKSTART:
m_aStates.top().nDestinationState = DESTINATION_BOOKMARKSTART;
break;
case RTF_BKMKEND:
m_aStates.top().nDestinationState = DESTINATION_BOOKMARKEND;
break;
case RTF_REVTBL:
m_aStates.top().nDestinationState = DESTINATION_REVISIONTABLE;
break;
case RTF_ANNOTATION:
if (!m_pSuperstream)
{
resolveSubstream(m_nGroupStartPos - 1, NS_ooxml::LN_annotation);
m_aStates.top().nDestinationState = DESTINATION_SKIP;
}
else
{
// If there is an author set, emit it now.
if (!m_aAuthor.isEmpty() || !m_aAuthorInitials.isEmpty())
{
RTFSprms aAttributes;
if (!m_aAuthor.isEmpty())
{
RTFValue::Pointer_t pValue(new RTFValue(m_aAuthor));
aAttributes.set(NS_ooxml::LN_CT_TrackChange_author, pValue);
}
if (!m_aAuthorInitials.isEmpty())
{
RTFValue::Pointer_t pValue(new RTFValue(m_aAuthorInitials));
aAttributes.set(NS_ooxml::LN_CT_Comment_initials, pValue);
}
writerfilter::Reference<Properties>::Pointer_t const pProperties(new RTFReferenceProperties(aAttributes));
Mapper().props(pProperties);
}
}
break;
case RTF_SHPTXT:
case RTF_DPTXBXTEXT:
{
bool bPictureFrame = false;
for (size_t i = 0; i < m_aStates.top().aShape.aProperties.size(); ++i)
{
std::pair<OUString, OUString>& rProperty = m_aStates.top().aShape.aProperties[i];
if (rProperty.first == "shapeType" && rProperty.second == OUString::number(ESCHER_ShpInst_PictureFrame))
{
bPictureFrame = true;
break;
}
}
if (bPictureFrame)
// Skip text on picture frames.
m_aStates.top().nDestinationState = DESTINATION_SKIP;
else
{
m_aStates.top().nDestinationState = DESTINATION_SHAPETEXT;
checkFirstRun();
dispatchFlag(RTF_PARD);
m_bNeedPap = true;
if (nKeyword == RTF_SHPTXT)
{
if (!m_aStates.top().pCurrentBuffer)
m_pSdrImport->resolve(m_aStates.top().aShape, false,
RTFSdrImport::SHAPE);
else
{
RTFValue::Pointer_t pValue(new RTFValue(m_aStates.top().aShape));
m_aStates.top().pCurrentBuffer->push_back(
Buf_t(BUFFER_STARTSHAPE, pValue));
}
}
}
}
break;
case RTF_FORMFIELD:
if (m_aStates.top().nDestinationState == DESTINATION_FIELDINSTRUCTION)
m_aStates.top().nDestinationState = DESTINATION_FORMFIELD;
break;
case RTF_FFNAME:
m_aStates.top().nDestinationState = DESTINATION_FORMFIELDNAME;
break;
case RTF_FFL:
m_aStates.top().nDestinationState = DESTINATION_FORMFIELDLIST;
break;
case RTF_DATAFIELD:
m_aStates.top().nDestinationState = DESTINATION_DATAFIELD;
break;
case RTF_INFO:
m_aStates.top().nDestinationState = DESTINATION_INFO;
break;
case RTF_CREATIM:
m_aStates.top().nDestinationState = DESTINATION_CREATIONTIME;
break;
case RTF_REVTIM:
m_aStates.top().nDestinationState = DESTINATION_REVISIONTIME;
break;
case RTF_PRINTIM:
m_aStates.top().nDestinationState = DESTINATION_PRINTTIME;
break;
case RTF_AUTHOR:
m_aStates.top().nDestinationState = DESTINATION_AUTHOR;
break;
case RTF_KEYWORDS:
m_aStates.top().nDestinationState = DESTINATION_KEYWORDS;
break;
case RTF_OPERATOR:
m_aStates.top().nDestinationState = DESTINATION_OPERATOR;
break;
case RTF_COMPANY:
m_aStates.top().nDestinationState = DESTINATION_COMPANY;
break;
case RTF_COMMENT:
m_aStates.top().nDestinationState = DESTINATION_COMMENT;
break;
case RTF_OBJECT:
{
// beginning of an OLE Object
m_aStates.top().nDestinationState = DESTINATION_OBJECT;
// check if the object is in a special container (e.g. a table)
if (!m_aStates.top().pCurrentBuffer)
{
// the object is in a table or another container.
// Don't try to treate it as an OLE object (fdo#53594).
// Use the \result (RTF_RESULT) element of the object instead,
// the result element contain picture representing the OLE Object.
m_bObject = true;
}
}
break;
case RTF_OBJDATA:
// check if the object is in a special container (e.g. a table)
if (m_aStates.top().pCurrentBuffer)
{
// the object is in a table or another container.
// Use the \result (RTF_RESULT) element of the object instead,
// of the \objdata.
m_aStates.top().nDestinationState = DESTINATION_SKIP;
}
else
{
m_aStates.top().nDestinationState = DESTINATION_OBJDATA;
}
break;
case RTF_RESULT:
m_aStates.top().nDestinationState = DESTINATION_RESULT;
break;
case RTF_ATNDATE:
m_aStates.top().nDestinationState = DESTINATION_ANNOTATIONDATE;
break;
case RTF_ATNAUTHOR:
m_aStates.top().nDestinationState = DESTINATION_ANNOTATIONAUTHOR;
break;
case RTF_ATNREF:
m_aStates.top().nDestinationState = DESTINATION_ANNOTATIONREFERENCE;
break;
case RTF_FALT:
m_aStates.top().nDestinationState = DESTINATION_FALT;
break;
case RTF_FLYMAINCNT:
m_aStates.top().nDestinationState = DESTINATION_FLYMAINCONTENT;
break;
case RTF_LISTTEXT:
// Should be ignored by any reader that understands Word 97 through Word 2007 numbering.
case RTF_NONESTTABLES:
// This destination should be ignored by readers that support nested tables.
m_aStates.top().nDestinationState = DESTINATION_SKIP;
break;
case RTF_DO:
m_aStates.top().nDestinationState = DESTINATION_DRAWINGOBJECT;
break;
case RTF_PN:
m_aStates.top().nDestinationState = DESTINATION_PARAGRAPHNUMBERING;
break;
case RTF_PNTEXT:
// This destination should be ignored by readers that support paragraph numbering.
m_aStates.top().nDestinationState = DESTINATION_SKIP;
break;
case RTF_PNTXTA:
m_aStates.top().nDestinationState = DESTINATION_PARAGRAPHNUMBERING_TEXTAFTER;
break;
case RTF_PNTXTB:
m_aStates.top().nDestinationState = DESTINATION_PARAGRAPHNUMBERING_TEXTBEFORE;
break;
case RTF_TITLE:
m_aStates.top().nDestinationState = DESTINATION_TITLE;
break;
case RTF_SUBJECT:
m_aStates.top().nDestinationState = DESTINATION_SUBJECT;
break;
case RTF_DOCCOMM:
m_aStates.top().nDestinationState = DESTINATION_DOCCOMM;
break;
case RTF_ATRFSTART:
m_aStates.top().nDestinationState = DESTINATION_ANNOTATIONREFERENCESTART;
break;
case RTF_ATRFEND:
m_aStates.top().nDestinationState = DESTINATION_ANNOTATIONREFERENCEEND;
break;
case RTF_ATNID:
m_aStates.top().nDestinationState = DESTINATION_ATNID;
break;
case RTF_MMATH:
case RTF_MOMATHPARA:
// Nothing to do here (just enter the destination) till RTF_MMATHPR is implemented.
break;
case RTF_MR:
m_aStates.top().nDestinationState = DESTINATION_MR;
break;
case RTF_MCHR:
m_aStates.top().nDestinationState = DESTINATION_MCHR;
break;
case RTF_MPOS:
m_aStates.top().nDestinationState = DESTINATION_MPOS;
break;
case RTF_MVERTJC:
m_aStates.top().nDestinationState = DESTINATION_MVERTJC;
break;
case RTF_MSTRIKEH:
m_aStates.top().nDestinationState = DESTINATION_MSTRIKEH;
break;
case RTF_MDEGHIDE:
m_aStates.top().nDestinationState = DESTINATION_MDEGHIDE;
break;
case RTF_MTYPE:
m_aStates.top().nDestinationState = DESTINATION_MTYPE;
break;
case RTF_MGROW:
m_aStates.top().nDestinationState = DESTINATION_MGROW;
break;
case RTF_MHIDETOP:
case RTF_MHIDEBOT:
case RTF_MHIDELEFT:
case RTF_MHIDERIGHT:
// SmOoxmlImport::handleBorderBox will ignore these anyway, so silently ignore for now.
m_aStates.top().nDestinationState = DESTINATION_SKIP;
break;
case RTF_MSUBHIDE:
m_aStates.top().nDestinationState = DESTINATION_MSUBHIDE;
break;
case RTF_MSUPHIDE:
m_aStates.top().nDestinationState = DESTINATION_MSUPHIDE;
break;
case RTF_MBEGCHR:
m_aStates.top().nDestinationState = DESTINATION_MBEGCHR;
break;
case RTF_MSEPCHR:
m_aStates.top().nDestinationState = DESTINATION_MSEPCHR;
break;
case RTF_MENDCHR:
m_aStates.top().nDestinationState = DESTINATION_MENDCHR;
break;
case RTF_UPR:
m_aStates.top().nDestinationState = DESTINATION_UPR;
break;
case RTF_UD:
// Anything inside \ud is just normal Unicode content.
m_aStates.top().nDestinationState = DESTINATION_NORMAL;
break;
case RTF_BACKGROUND:
m_aStates.top().nDestinationState = DESTINATION_BACKGROUND;
m_aStates.top().bInBackground = true;
break;
case RTF_SHPGRP:
{
RTFLookahead aLookahead(Strm(), m_pTokenizer->getGroupStart());
if (!aLookahead.hasTable())
{
uno::Reference<drawing::XShapes> xGroupShape(m_xModelFactory->createInstance("com.sun.star.drawing.GroupShape"), uno::UNO_QUERY);
uno::Reference<drawing::XDrawPageSupplier> xDrawSupplier(m_xDstDoc, uno::UNO_QUERY);
if (xDrawSupplier.is())
{
uno::Reference<drawing::XShape> xShape(xGroupShape, uno::UNO_QUERY);
xDrawSupplier->getDrawPage()->add(xShape);
}
m_pSdrImport->pushParent(xGroupShape);
m_aStates.top().bCreatedShapeGroup = true;
}
m_aStates.top().nDestinationState = DESTINATION_SHAPEGROUP;
m_aStates.top().bInShapeGroup = true;
}
break;
case RTF_FTNSEP:
m_aStates.top().nDestinationState = DESTINATION_FOOTNOTESEPARATOR;
m_aStates.top().aCharacterAttributes.set(NS_ooxml::LN_CT_FtnEdn_type, RTFValue::Pointer_t(new RTFValue(NS_ooxml::LN_Value_wordprocessingml_ST_FtnEdn_separator)));
break;
default:
{
// Check if it's a math token.
RTFMathSymbol aSymbol;
aSymbol.eKeyword = nKeyword;
if (RTFTokenizer::lookupMathKeyword(aSymbol))
{
m_aMathBuffer.appendOpeningTag(aSymbol.nToken);
m_aStates.top().nDestinationState = aSymbol.eDestination;
return 0;
}
SAL_INFO("writerfilter", "TODO handle destination '" << lcl_RtfToString(nKeyword) << "'");
// Make sure we skip destinations (even without \*) till we don't handle them
m_aStates.top().nDestinationState = DESTINATION_SKIP;
aSkip.setParsed(false);
}
break;
}
// new destination => use new destination text
m_aStates.top().pDestinationText = &m_aStates.top().aDestinationText;
return 0;
}
int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
{
setNeedSect();
if (nKeyword != RTF_HEXCHAR)
checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
else
checkUnicode(/*bUnicode =*/ true, /*bHex =*/ false);
RTFSkipDestination aSkip(*this);
if (RTF_LINE == nKeyword)
{
// very special handling since text() will eat lone '\n'
singleChar('\n');
return 0;
}
// Trivial symbols
sal_uInt8 cCh = 0;
switch (nKeyword)
{
case RTF_TAB:
cCh = '\t';
break;
case RTF_BACKSLASH:
cCh = '\\';
break;
case RTF_LBRACE:
cCh = '{';
break;
case RTF_RBRACE:
cCh = '}';
break;
case RTF_EMDASH:
cCh = 151;
break;
case RTF_ENDASH:
cCh = 150;
break;
case RTF_BULLET:
cCh = 149;
break;
case RTF_LQUOTE:
cCh = 145;
break;
case RTF_RQUOTE:
cCh = 146;
break;
case RTF_LDBLQUOTE:
cCh = 147;
break;
case RTF_RDBLQUOTE:
cCh = 148;
break;
default:
break;
}
if (cCh > 0)
{
OUString aStr(OStringToOUString(OString(cCh), RTL_TEXTENCODING_MS_1252));
text(aStr);
return 0;
}
switch (nKeyword)
{
case RTF_IGNORE:
{
m_bSkipUnknown = true;
aSkip.setReset(false);
return 0;
}
break;
case RTF_PAR:
{
if (m_aStates.top().nDestinationState == DESTINATION_FOOTNOTESEPARATOR)
break; // just ignore it - only thing we read in here is CHFTNSEP
checkFirstRun();
bool bNeedPap = m_bNeedPap;
checkNeedPap();
if (bNeedPap)
runProps();
if (!m_aStates.top().pCurrentBuffer)
{
parBreak();
// Not in table? Reset max width.
m_nCellxMax = 0;
}
else if (m_aStates.top().nDestinationState != DESTINATION_SHAPETEXT)
{
RTFValue::Pointer_t pValue;
m_aStates.top().pCurrentBuffer->push_back(
Buf_t(BUFFER_PAR, pValue));
}
// but don't emit properties yet, since they may change till the first text token arrives
m_bNeedPap = true;
if (!m_aStates.top().aFrame.inFrame())
m_bNeedPar = false;
m_bNeedFinalPar = false;
}
break;
case RTF_SECT:
{
m_bHadSect = true;
if (m_bIgnoreNextContSectBreak)
m_bIgnoreNextContSectBreak = false;
else
{
sectBreak();
if (m_nResetBreakOnSectBreak != RTF_invalid)
{
// this should run on _second_ \sect after \page
dispatchSymbol(m_nResetBreakOnSectBreak); // lazy reset
m_nResetBreakOnSectBreak = RTF_invalid;
m_bNeedSect = false; // dispatchSymbol set it
}
}
}
break;
case RTF_NOBREAK:
{
OUString aStr(SVT_HARD_SPACE);
text(aStr);
}
break;
case RTF_NOBRKHYPH:
{
OUString aStr(SVT_HARD_HYPHEN);
text(aStr);
}
break;
case RTF_OPTHYPH:
{
OUString aStr(SVT_SOFT_HYPHEN);
text(aStr);
}
break;
case RTF_HEXCHAR:
m_aStates.top().nInternalState = INTERNAL_HEX;
break;
case RTF_CELL:
case RTF_NESTCELL:
{
checkFirstRun();
if (m_bNeedPap)
{
// There were no runs in the cell, so we need to send paragraph and character properties here.
RTFValue::Pointer_t pPValue(new RTFValue(m_aStates.top().aParagraphAttributes, m_aStates.top().aParagraphSprms));
m_aTableBufferStack.back().push_back(
Buf_t(BUFFER_PROPS, pPValue));
RTFValue::Pointer_t pCValue(new RTFValue(m_aStates.top().aCharacterAttributes, m_aStates.top().aCharacterSprms));
m_aTableBufferStack.back().push_back(
Buf_t(BUFFER_PROPS, pCValue));
}
RTFValue::Pointer_t pValue;
m_aTableBufferStack.back().push_back(
Buf_t(BUFFER_CELLEND, pValue));
m_bNeedPap = true;
}
break;
case RTF_NESTROW:
{
boost::shared_ptr<TableRowBuffer> const pBuffer(
new TableRowBuffer(
m_aTableBufferStack.back(),
m_aNestedTableCellsSprms,
m_aNestedTableCellsAttributes,
m_nNestedCells));
prepareProperties(m_aStates.top(),
pBuffer->pParaProperties,
pBuffer->pFrameProperties,
pBuffer->pRowProperties,
m_nNestedCells, m_nNestedCurrentCellX);
assert(m_aStates.top().pCurrentBuffer == &m_aTableBufferStack.back());
if (m_aTableBufferStack.size() == 1)
{
throw io::WrongFormatException(
"mismatch between \\itap and number of \\nestrow", 0);
}
// note: there may be several states pointing to table buffer!
for (size_t i = 0; i < m_aStates.size(); ++i)
{
if (m_aStates[i].pCurrentBuffer == &m_aTableBufferStack.back())
{
m_aStates[i].pCurrentBuffer =
&m_aTableBufferStack[m_aTableBufferStack.size()-2];
}
}
m_aTableBufferStack.pop_back();
m_aTableBufferStack.back().push_back(
Buf_t(BUFFER_NESTROW, RTFValue::Pointer_t(), pBuffer));
m_aNestedTableCellsSprms.clear();
m_aNestedTableCellsAttributes.clear();
m_nNestedCells = 0;
m_bNeedPap = true;
}
break;
case RTF_ROW:
{
bool bRestored = false;
// Ending a row, but no cells defined?
// See if there was an invalid table row reset, so we can restore cell infos to help invalid documents.
if (!m_nTopLevelCurrentCellX && m_nBackupTopLevelCurrentCellX)
{
restoreTableRowProperties();
bRestored = true;
}
// If the right edge of the last cell (row width) is smaller than the width of some other row, mimic WW8TabDesc::CalcDefaults(): add a fake cell.
const int MINLAY = 23; // sw/inc/swtypes.hxx, minimal possible size of frames.
if ((m_nCellxMax - m_nTopLevelCurrentCellX) >= MINLAY)
dispatchValue(RTF_CELLX, m_nCellxMax);
if (m_nTopLevelCells)
{
// Make a backup before we start popping elements
m_aTableInheritingCellsSprms = m_aTopLevelTableCellsSprms;
m_aTableInheritingCellsAttributes = m_aTopLevelTableCellsAttributes;
m_nInheritingCells = m_nTopLevelCells;
}
else
{
// No table definition? Then inherit from the previous row
m_aTopLevelTableCellsSprms = m_aTableInheritingCellsSprms;
m_aTopLevelTableCellsAttributes = m_aTableInheritingCellsAttributes;
m_nTopLevelCells = m_nInheritingCells;
}
while (m_aTableBufferStack.size() > 1)
{
SAL_WARN("writerfilter.rtf", "dropping extra table buffer");
// note: there may be several states pointing to table buffer!
for (size_t i = 0; i < m_aStates.size(); ++i)
{
if (m_aStates[i].pCurrentBuffer == &m_aTableBufferStack.back())
{
m_aStates[i].pCurrentBuffer =
&m_aTableBufferStack.front();
}
}
m_aTableBufferStack.pop_back();
}
replayRowBuffer(m_aTableBufferStack.back(),
m_aTopLevelTableCellsSprms, m_aTopLevelTableCellsAttributes,
m_nTopLevelCells);
m_aStates.top().aTableCellSprms = m_aDefaultState.aTableCellSprms;
m_aStates.top().aTableCellAttributes = m_aDefaultState.aTableCellAttributes;
writerfilter::Reference<Properties>::Pointer_t paraProperties;
writerfilter::Reference<Properties>::Pointer_t frameProperties;
writerfilter::Reference<Properties>::Pointer_t rowProperties;
prepareProperties(m_aStates.top(),
paraProperties, frameProperties, rowProperties,
m_nTopLevelCells, m_nTopLevelCurrentCellX);
sendProperties(paraProperties, frameProperties, rowProperties);
m_bNeedPap = true;
m_bNeedFinalPar = true;
m_aTableBufferStack.back().clear();
m_nTopLevelCells = 0;
if (bRestored)
// We restored cell definitions, clear these now.
// This is necessary, as later cell definitions want to overwrite the restored ones.
resetTableRowProperties();
}
break;
case RTF_COLUMN:
{
bool bColumns = false; // If we have multiple columns
RTFValue::Pointer_t pCols = m_aStates.top().aSectionSprms.find(NS_ooxml::LN_EG_SectPrContents_cols);
if (pCols.get())
{
RTFValue::Pointer_t pNum = pCols->getAttributes().find(NS_ooxml::LN_CT_Columns_num);
if (pNum.get() && pNum->getInt() > 1)
bColumns = true;
}
if (bColumns)
{
sal_uInt8 sBreak[] = { 0xe };
Mapper().startCharacterGroup();
Mapper().text(sBreak, 1);
Mapper().endCharacterGroup();
}
else
dispatchSymbol(RTF_PAGE);
}
break;
case RTF_CHFTN:
// Nothing to do, dmapper assumes this is the default.
break;
case RTF_PAGE:
{
// Ignore page breaks inside tables.
if (m_aStates.top().pCurrentBuffer == &m_aTableBufferStack.back())
break;
// If we're inside a continuous section, we should send a section break, not a page one.
RTFValue::Pointer_t pBreak = m_aStates.top().aSectionSprms.find(NS_ooxml::LN_EG_SectPrContents_type);
// Unless we're on a title page.
RTFValue::Pointer_t pTitlePg = m_aStates.top().aSectionSprms.find(NS_ooxml::LN_EG_SectPrContents_titlePg);
if (((pBreak.get() && !pBreak->getInt())
|| m_nResetBreakOnSectBreak == RTF_SBKNONE)
&& !(pTitlePg.get() && pTitlePg->getInt()))
{
if (m_bWasInFrame)
{
dispatchSymbol(RTF_PAR);
m_bWasInFrame = false;
}
sectBreak();
// note: this will not affect the following section break
// but the one just pushed
dispatchFlag(RTF_SBKPAGE);
if (m_bNeedPar)
dispatchSymbol(RTF_PAR);
m_bIgnoreNextContSectBreak = true;
// arrange to clean up the syntetic RTF_SBKPAGE
m_nResetBreakOnSectBreak = RTF_SBKNONE;
}
else
{
checkFirstRun();
checkNeedPap();
sal_uInt8 sBreak[] = { 0xc };
Mapper().text(sBreak, 1);
if (!m_bNeedPap)
{
parBreak();
m_bNeedPap = true;
}
m_bNeedCr = true;
}
}
break;
case RTF_CHPGN:
{
OUString aStr("PAGE");
singleChar(0x13);
text(aStr);
singleChar(0x14, true);
singleChar(0x15);
}
break;
case RTF_CHFTNSEP:
{
static const sal_Unicode uFtnEdnSep = 0x3;
Mapper().utext((const sal_uInt8*)&uFtnEdnSep, 1);
}
break;
default:
{
SAL_INFO("writerfilter", "TODO handle symbol '" << lcl_RtfToString(nKeyword) << "'");
aSkip.setParsed(false);
}
break;
}
return 0;
}
// Checks if rName is contained at least once in rProperties as a key.
bool lcl_findPropertyName(const std::vector<beans::PropertyValue>& rProperties, const OUString& rName)
{
for (std::vector<beans::PropertyValue>::const_iterator it = rProperties.begin(); it != rProperties.end(); ++it)
{
if (it->Name == rName)
return true;
}
return false;
}
void RTFDocumentImpl::backupTableRowProperties()
{
if (m_nTopLevelCurrentCellX)
{
m_aBackupTableRowSprms = m_aStates.top().aTableRowSprms;
m_aBackupTableRowAttributes = m_aStates.top().aTableRowAttributes;
m_nBackupTopLevelCurrentCellX = m_nTopLevelCurrentCellX;
}
}
void RTFDocumentImpl::restoreTableRowProperties()
{
m_aStates.top().aTableRowSprms = m_aBackupTableRowSprms;
m_aStates.top().aTableRowAttributes = m_aBackupTableRowAttributes;
m_nTopLevelCurrentCellX = m_nBackupTopLevelCurrentCellX;
}
void RTFDocumentImpl::resetTableRowProperties()
{
m_aStates.top().aTableRowSprms = m_aDefaultState.aTableRowSprms;
m_aStates.top().aTableRowSprms.set(NS_ooxml::LN_CT_TblGridBase_gridCol, RTFValue::Pointer_t(new RTFValue(-1)), OVERWRITE_NO_APPEND);
m_aStates.top().aTableRowAttributes = m_aDefaultState.aTableRowAttributes;
if (DESTINATION_NESTEDTABLEPROPERTIES == m_aStates.top().nDestinationState)
m_nNestedCurrentCellX = 0;
else
m_nTopLevelCurrentCellX = 0;
}
int RTFDocumentImpl::dispatchFlag(RTFKeyword nKeyword)
{
setNeedSect();
checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
RTFSkipDestination aSkip(*this);
int nParam = -1;
int nSprm = -1;
// Map all underline flags to a single sprm.
switch (nKeyword)
{
case RTF_ULD:
nSprm = 4;
break;
case RTF_ULW:
nSprm = 2;
break;
default:
break;
}
if (nSprm >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(nSprm));
m_aStates.top().aCharacterAttributes.set(NS_ooxml::LN_CT_Underline_val, pValue);
return 0;
}
// Indentation
switch (nKeyword)
{
case RTF_QC:
nParam = 1;
break;
case RTF_QJ:
nParam = 3;
break;
case RTF_QL:
nParam = 0;
break;
case RTF_QR:
nParam = 2;
break;
case RTF_QD:
nParam = 4;
break;
default:
break;
}
if (nParam >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(nParam));
m_aStates.top().aParagraphSprms.set(NS_ooxml::LN_CT_PPrBase_jc, pValue);
m_bNeedPap = true;
return 0;
}
// Font Alignment
switch (nKeyword)
{
case RTF_FAFIXED:
case RTF_FAAUTO:
nParam = NS_ooxml::LN_Value_wordprocessingml_ST_TextAlignment_auto;
break;
case RTF_FAHANG:
nParam = NS_ooxml::LN_Value_wordprocessingml_ST_TextAlignment_top;
break;
case RTF_FACENTER:
nParam = NS_ooxml::LN_Value_wordprocessingml_ST_TextAlignment_center;
break;
case RTF_FAROMAN:
nParam = NS_ooxml::LN_Value_wordprocessingml_ST_TextAlignment_baseline;
break;
case RTF_FAVAR:
nParam = NS_ooxml::LN_Value_wordprocessingml_ST_TextAlignment_bottom;
break;
default:
break;
}
if (nParam >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(nParam));
m_aStates.top().aParagraphSprms.set(NS_ooxml::LN_CT_PPrBase_textAlignment, pValue);
return 0;
}
// Tab kind.
switch (nKeyword)
{
case RTF_TQR:
nParam = 2;
break;
case RTF_TQC:
nParam = 1;
break;
case RTF_TQDEC:
nParam = 3;
break;
default:
break;
}
if (nParam >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(nParam));
m_aStates.top().aTabAttributes.set(NS_ooxml::LN_CT_TabStop_val, pValue);
return 0;
}
// Tab lead.
switch (nKeyword)
{
case RTF_TLDOT:
nParam = 1;
break;
case RTF_TLMDOT:
nParam = NS_ooxml::LN_Value_ST_TabTlc_middleDot;
break;
case RTF_TLHYPH:
nParam = 2;
break;
case RTF_TLUL:
nParam = 3;
break;
case RTF_TLTH:
nParam = 2;
break; // thick line is not supported by dmapper, this is just a hack
case RTF_TLEQ:
nParam = 0;
break; // equal sign isn't, either
default:
break;
}
if (nParam >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(nParam));
m_aStates.top().aTabAttributes.set(NS_ooxml::LN_CT_TabStop_leader, pValue);
return 0;
}
// Border types
{
switch (nKeyword)
{
// brdrhair and brdrs are the same, brdrw will make a difference
// map to values in ooxml/model.xml resource ST_Border
case RTF_BRDRHAIR:
nParam = 5;
break;
case RTF_BRDRS:
nParam = 1;
break;
case RTF_BRDRDOT:
nParam = 6;
break;
case RTF_BRDRDASH:
nParam = 7;
break;
case RTF_BRDRDB:
nParam = 3;
break;
case RTF_BRDRTNTHSG:
nParam = 11;
break;
case RTF_BRDRTNTHMG:
nParam = 14;
break;
case RTF_BRDRTNTHLG:
nParam = 17;
break;
case RTF_BRDRTHTNSG:
nParam = 12;
break;
case RTF_BRDRTHTNMG:
nParam = 15;
break;
case RTF_BRDRTHTNLG:
nParam = 18;
break;
case RTF_BRDREMBOSS:
nParam = 24;
break;
case RTF_BRDRENGRAVE:
nParam = 25;
break;
case RTF_BRDROUTSET:
nParam = 26;
break;
case RTF_BRDRINSET:
nParam = 27;
break;
case RTF_BRDRNONE:
nParam = 0;
break;
default:
break;
}
if (nParam >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(nParam));
lcl_putBorderProperty(m_aStates, NS_ooxml::LN_CT_Border_val, pValue);
return 0;
}
}
// Section breaks
switch (nKeyword)
{
case RTF_SBKNONE:
nParam = 0;
break;
case RTF_SBKCOL:
nParam = 1;
break;
case RTF_SBKPAGE:
nParam = 2;
break;
case RTF_SBKEVEN:
nParam = 3;
break;
case RTF_SBKODD:
nParam = 4;
break;
default:
break;
}
if (nParam >= 0)
{
if (m_nResetBreakOnSectBreak != RTF_invalid)
{
m_nResetBreakOnSectBreak = nKeyword;
}
RTFValue::Pointer_t pValue(new RTFValue(nParam));
m_aStates.top().aSectionSprms.set(NS_ooxml::LN_EG_SectPrContents_type, pValue);
return 0;
}
// Footnote numbering
switch (nKeyword)
{
case RTF_FTNNAR:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_decimal;
break;
case RTF_FTNNALC:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_lowerLetter;
break;
case RTF_FTNNAUC:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_upperLetter;
break;
case RTF_FTNNRLC:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_lowerRoman;
break;
case RTF_FTNNRUC:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_upperRoman;
break;
case RTF_FTNNCHI:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_chicago;
break;
default:
break;
}
if (nParam >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(nParam));
lcl_putNestedSprm(m_aDefaultState.aParagraphSprms, NS_ooxml::LN_EG_SectPrContents_footnotePr, NS_ooxml::LN_CT_FtnProps_numFmt, pValue);
return 0;
}
// Footnote restart type
switch (nKeyword)
{
case RTF_FTNRSTPG:
nParam = NS_ooxml::LN_Value_ST_RestartNumber_eachPage;
break;
case RTF_FTNRESTART:
nParam = NS_ooxml::LN_Value_ST_RestartNumber_eachSect;
break;
case RTF_FTNRSTCONT:
nParam = NS_ooxml::LN_Value_ST_RestartNumber_continuous;
break;
default:
break;
}
if (nParam >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(nParam));
lcl_putNestedSprm(m_aDefaultState.aParagraphSprms, NS_ooxml::LN_EG_SectPrContents_footnotePr, NS_ooxml::LN_EG_FtnEdnNumProps_numRestart, pValue);
return 0;
}
// Endnote numbering
switch (nKeyword)
{
case RTF_AFTNNAR:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_decimal;
break;
case RTF_AFTNNALC:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_lowerLetter;
break;
case RTF_AFTNNAUC:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_upperLetter;
break;
case RTF_AFTNNRLC:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_lowerRoman;
break;
case RTF_AFTNNRUC:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_upperRoman;
break;
case RTF_AFTNNCHI:
nParam = NS_ooxml::LN_Value_ST_NumberFormat_chicago;
break;
default:
break;
}
if (nParam >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(nParam));
lcl_putNestedSprm(m_aDefaultState.aParagraphSprms, NS_ooxml::LN_EG_SectPrContents_endnotePr, NS_ooxml::LN_CT_EdnProps_numFmt, pValue);
return 0;
}
switch (nKeyword)
{
case RTF_TRQL:
nParam = 0;
break;
case RTF_TRQC:
nParam = 1;
break;
case RTF_TRQR:
nParam = 2;
break;
default:
break;
}
if (nParam >= 0)
{
RTFValue::Pointer_t const pValue(new RTFValue(nParam));
m_aStates.top().aTableRowSprms.set(NS_ooxml::LN_CT_TrPrBase_jc, pValue);
return 0;
}
// Cell Text Flow
switch (nKeyword)
{
case RTF_CLTXLRTB:
nParam = 0;
break;
case RTF_CLTXTBRL:
nParam = 1;
break;
case RTF_CLTXBTLR:
nParam = 3;
break;
case RTF_CLTXLRTBV:
nParam = 4;
break;
case RTF_CLTXTBRLV:
nParam = 5;
break;
default:
break;
}
if (nParam >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(nParam));
m_aStates.top().aTableCellSprms.set(NS_ooxml::LN_CT_TcPrBase_textDirection, pValue);
}
// Trivial paragraph flags
switch (nKeyword)
{
case RTF_KEEP:
if (m_aStates.top().pCurrentBuffer != &m_aTableBufferStack.back())
nParam = NS_ooxml::LN_CT_PPrBase_keepLines;
break;
case RTF_KEEPN:
if (m_aStates.top().pCurrentBuffer != &m_aTableBufferStack.back())
nParam = NS_ooxml::LN_CT_PPrBase_keepNext;
break;
case RTF_INTBL:
{
m_aStates.top().pCurrentBuffer = &m_aTableBufferStack.back();
nParam = NS_ooxml::LN_inTbl;
}
break;
case RTF_PAGEBB:
nParam = NS_ooxml::LN_CT_PPrBase_pageBreakBefore;
break;
default:
break;
}
if (nParam >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(1));
m_aStates.top().aParagraphSprms.erase(NS_ooxml::LN_inTbl);
m_aStates.top().aParagraphSprms.set(nParam, pValue);
return 0;
}
switch (nKeyword)
{
case RTF_FNIL:
case RTF_FROMAN:
case RTF_FSWISS:
case RTF_FMODERN:
case RTF_FSCRIPT:
case RTF_FDECOR:
case RTF_FTECH:
case RTF_FBIDI:
// TODO ooxml:CT_Font_family seems to be ignored by the domain mapper
break;
case RTF_ANSI:
m_aStates.top().nCurrentEncoding = RTL_TEXTENCODING_MS_1252;
break;
case RTF_PLAIN:
{
m_aStates.top().aCharacterSprms = getDefaultState().aCharacterSprms;
m_aStates.top().nCurrentEncoding = getEncoding(getFontIndex(m_nDefaultFontIndex));
m_aStates.top().aCharacterAttributes = getDefaultState().aCharacterAttributes;
}
break;
case RTF_PARD:
if (m_bHadPicture)
dispatchSymbol(RTF_PAR);
// \pard is allowed between \cell and \row, but in that case it should not reset the fact that we're inside a table.
m_aStates.top().aParagraphSprms = m_aDefaultState.aParagraphSprms;
m_aStates.top().aParagraphAttributes = m_aDefaultState.aParagraphAttributes;
if (m_nTopLevelCells == 0 && m_nNestedCells == 0)
{
// Reset that we're in a table.
m_aStates.top().pCurrentBuffer = 0;
}
else
{
// We are still in a table.
m_aStates.top().aParagraphSprms.set(NS_ooxml::LN_inTbl, RTFValue::Pointer_t(new RTFValue(1)));
}
m_aStates.top().resetFrame();
// Reset currently selected paragraph style as well.
// By default the style with index 0 is applied.
{
OUString const aName = getStyleName(0);
if (!aName.isEmpty())
{
m_aStates.top().aParagraphSprms.set(NS_ooxml::LN_CT_PPrBase_pStyle,
RTFValue::Pointer_t(new RTFValue(aName)));
m_aStates.top().nCurrentStyleIndex = 0;
}
else
{
m_aStates.top().nCurrentStyleIndex = -1;
}
}
break;
case RTF_SECTD:
{
m_aStates.top().aSectionSprms = m_aDefaultState.aSectionSprms;
m_aStates.top().aSectionAttributes = m_aDefaultState.aSectionAttributes;
}
break;
case RTF_TROWD:
{
// Back these up, in case later we still need this info.
backupTableRowProperties();
resetTableRowProperties();
// In case the table definition is in the middle of the row
// (invalid), make sure table definition is emitted.
m_bNeedPap = true;
}
break;
case RTF_WIDCTLPAR:
case RTF_NOWIDCTLPAR:
{
RTFValue::Pointer_t pValue(new RTFValue(int(nKeyword == RTF_WIDCTLPAR)));
m_aStates.top().aParagraphSprms.set(NS_ooxml::LN_CT_PPrBase_widowControl, pValue);
}
break;
case RTF_BOX:
{
RTFSprms aAttributes;
RTFValue::Pointer_t pValue(new RTFValue(aAttributes));
for (int i = 0; i < 4; i++)
m_aStates.top().aParagraphSprms.set(lcl_getParagraphBorder(i), pValue);
m_aStates.top().nBorderState = BORDER_PARAGRAPH_BOX;
}
break;
case RTF_LTRSECT:
case RTF_RTLSECT:
{
RTFValue::Pointer_t pValue(new RTFValue(nKeyword == RTF_LTRSECT ? 0 : 1));
m_aStates.top().aParagraphSprms.set(NS_ooxml::LN_EG_SectPrContents_textDirection, pValue);
}
break;
case RTF_LTRPAR:
case RTF_RTLPAR:
{
RTFValue::Pointer_t pValue(new RTFValue(nKeyword == RTF_LTRPAR ? 0 : 1));
m_aStates.top().aParagraphSprms.set(NS_ooxml::LN_CT_PPrBase_textDirection, pValue);
}
break;
case RTF_LTRROW:
case RTF_RTLROW:
// dmapper does not support these.
break;
case RTF_LTRCH:
// dmapper does not support this.
m_aStates.top().isRightToLeft = false;
break;
case RTF_RTLCH:
m_aStates.top().isRightToLeft = true;
if (m_aDefaultState.nCurrentEncoding == RTL_TEXTENCODING_MS_1255)
m_aStates.top().nCurrentEncoding = m_aDefaultState.nCurrentEncoding;
break;
case RTF_ULNONE:
{
RTFValue::Pointer_t pValue(new RTFValue(0));
m_aStates.top().aCharacterAttributes.set(NS_ooxml::LN_CT_Underline_val, pValue);
}
break;
case RTF_NONSHPPICT:
case RTF_MMATHPICT: // Picture group used by readers not understanding \moMath group
m_aStates.top().nDestinationState = DESTINATION_SKIP;
break;
case RTF_CLBRDRT:
case RTF_CLBRDRL:
case RTF_CLBRDRB:
case RTF_CLBRDRR:
{
RTFSprms aAttributes;
RTFSprms aSprms;
RTFValue::Pointer_t pValue(new RTFValue(aAttributes, aSprms));
switch (nKeyword)
{
case RTF_CLBRDRT:
nParam = NS_ooxml::LN_CT_TcBorders_top;
break;
case RTF_CLBRDRL:
nParam = NS_ooxml::LN_CT_TcBorders_left;
break;
case RTF_CLBRDRB:
nParam = NS_ooxml::LN_CT_TcBorders_bottom;
break;
case RTF_CLBRDRR:
nParam = NS_ooxml::LN_CT_TcBorders_right;
break;
default:
break;
}
lcl_putNestedSprm(m_aStates.top().aTableCellSprms, NS_ooxml::LN_CT_TcPrBase_tcBorders, nParam, pValue);
m_aStates.top().nBorderState = BORDER_CELL;
}
break;
case RTF_PGBRDRT:
case RTF_PGBRDRL:
case RTF_PGBRDRB:
case RTF_PGBRDRR:
{
RTFSprms aAttributes;
RTFSprms aSprms;
RTFValue::Pointer_t pValue(new RTFValue(aAttributes, aSprms));
switch (nKeyword)
{
case RTF_PGBRDRT:
nParam = NS_ooxml::LN_CT_PageBorders_top;
break;
case RTF_PGBRDRL:
nParam = NS_ooxml::LN_CT_PageBorders_left;
break;
case RTF_PGBRDRB:
nParam = NS_ooxml::LN_CT_PageBorders_bottom;
break;
case RTF_PGBRDRR:
nParam = NS_ooxml::LN_CT_PageBorders_right;
break;
default:
break;
}
lcl_putNestedSprm(m_aStates.top().aSectionSprms, NS_ooxml::LN_EG_SectPrContents_pgBorders, nParam, pValue);
m_aStates.top().nBorderState = BORDER_PAGE;
}
break;
case RTF_BRDRT:
case RTF_BRDRL:
case RTF_BRDRB:
case RTF_BRDRR:
{
RTFSprms aAttributes;
RTFSprms aSprms;
RTFValue::Pointer_t pValue(new RTFValue(aAttributes, aSprms));
switch (nKeyword)
{
case RTF_BRDRT:
nParam = lcl_getParagraphBorder(0);
break;
case RTF_BRDRL:
nParam = lcl_getParagraphBorder(1);
break;
case RTF_BRDRB:
nParam = lcl_getParagraphBorder(2);
break;
case RTF_BRDRR:
nParam = lcl_getParagraphBorder(3);
break;
default:
break;
}
lcl_putNestedSprm(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PrBase_pBdr, nParam, pValue);
m_aStates.top().nBorderState = BORDER_PARAGRAPH;
}
break;
case RTF_CHBRDR:
{
RTFSprms aAttributes;
RTFValue::Pointer_t pValue(new RTFValue(aAttributes));
m_aStates.top().aCharacterSprms.set(NS_ooxml::LN_EG_RPrBase_bdr, pValue);
m_aStates.top().nBorderState = BORDER_CHARACTER;
}
break;
case RTF_CLMGF:
{
RTFValue::Pointer_t pValue(new RTFValue(NS_ooxml::LN_Value_ST_Merge_restart));
m_aStates.top().aTableCellSprms.set(NS_ooxml::LN_CT_TcPrBase_hMerge, pValue);
}
break;
case RTF_CLMRG:
{
RTFValue::Pointer_t pValue(new RTFValue(NS_ooxml::LN_Value_ST_Merge_continue));
m_aStates.top().aTableCellSprms.set(NS_ooxml::LN_CT_TcPrBase_hMerge, pValue);
}
break;
case RTF_CLVMGF:
{
RTFValue::Pointer_t pValue(new RTFValue(NS_ooxml::LN_Value_ST_Merge_restart));
m_aStates.top().aTableCellSprms.set(NS_ooxml::LN_CT_TcPrBase_vMerge, pValue);
}
break;
case RTF_CLVMRG:
{
RTFValue::Pointer_t pValue(new RTFValue(NS_ooxml::LN_Value_ST_Merge_continue));
m_aStates.top().aTableCellSprms.set(NS_ooxml::LN_CT_TcPrBase_vMerge, pValue);
}
break;
case RTF_CLVERTALT:
case RTF_CLVERTALC:
case RTF_CLVERTALB:
{
switch (nKeyword)
{
case RTF_CLVERTALT:
nParam = 0;
break;
case RTF_CLVERTALC:
nParam = 1;
break;
case RTF_CLVERTALB:
nParam = 3;
break;
default:
break;
}
RTFValue::Pointer_t pValue(new RTFValue(nParam));
m_aStates.top().aTableCellSprms.set(NS_ooxml::LN_CT_TcPrBase_vAlign, pValue);
}
break;
case RTF_TRKEEP:
{
RTFValue::Pointer_t pValue(new RTFValue(1));
m_aStates.top().aTableRowSprms.set(NS_ooxml::LN_CT_TrPrBase_cantSplit, pValue);
}
break;
case RTF_SECTUNLOCKED:
{
RTFValue::Pointer_t pValue(new RTFValue(int(!nParam)));
m_aStates.top().aSectionSprms.set(NS_ooxml::LN_EG_SectPrContents_formProt, pValue);
}
break;
case RTF_PGNDEC:
case RTF_PGNUCRM:
case RTF_PGNLCRM:
case RTF_PGNUCLTR:
case RTF_PGNLCLTR:
case RTF_PGNBIDIA:
case RTF_PGNBIDIB:
// These should be mapped to NS_ooxml::LN_EG_SectPrContents_pgNumType, but dmapper has no API for that at the moment.
break;
case RTF_LOCH:
// Noop, dmapper detects this automatically.
m_aStates.top().eRunType = RTFParserState::LOCH;
break;
case RTF_HICH:
m_aStates.top().eRunType = RTFParserState::HICH;
break;
case RTF_DBCH:
m_aStates.top().eRunType = RTFParserState::DBCH;
break;
case RTF_TITLEPG:
{
RTFValue::Pointer_t pValue(new RTFValue(1));
m_aStates.top().aSectionSprms.set(NS_ooxml::LN_EG_SectPrContents_titlePg, pValue);
}
break;
case RTF_SUPER:
{
if (!m_aStates.top().pCurrentBuffer)
m_aStates.top().pCurrentBuffer = &m_aSuperBuffer;
RTFValue::Pointer_t pValue(new RTFValue("superscript"));
m_aStates.top().aCharacterSprms.set(NS_ooxml::LN_EG_RPrBase_vertAlign, pValue);
}
break;
case RTF_SUB:
{
RTFValue::Pointer_t pValue(new RTFValue("subscript"));
m_aStates.top().aCharacterSprms.set(NS_ooxml::LN_EG_RPrBase_vertAlign, pValue);
}
break;
case RTF_NOSUPERSUB:
{
if (m_aStates.top().pCurrentBuffer == &m_aSuperBuffer)
{
replayBuffer(m_aSuperBuffer, 0, 0);
m_aStates.top().pCurrentBuffer = 0;
}
m_aStates.top().aCharacterSprms.erase(NS_ooxml::LN_EG_RPrBase_vertAlign);
}
break;
case RTF_LINEPPAGE:
case RTF_LINECONT:
{
RTFValue::Pointer_t pValue(new RTFValue(nKeyword == RTF_LINEPPAGE ? 0 : 2));
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_lnNumType, NS_ooxml::LN_CT_LineNumber_restart, pValue);
}
break;
case RTF_AENDDOC:
// Noop, this is the default in Writer.
break;
case RTF_AENDNOTES:
// Noop, Writer does not support having endnotes at the end of section.
break;
case RTF_AFTNRSTCONT:
// Noop, this is the default in Writer.
break;
case RTF_AFTNRESTART:
// Noop, Writer does not support restarting endnotes at each section.
break;
case RTF_FTNBJ:
// Noop, this is the default in Writer.
break;
case RTF_ENDDOC:
{
RTFValue::Pointer_t pValue(new RTFValue(NS_ooxml::LN_Value_ST_RestartNumber_eachSect));
lcl_putNestedSprm(m_aDefaultState.aParagraphSprms,
NS_ooxml::LN_EG_SectPrContents_footnotePr,
NS_ooxml::LN_EG_FtnEdnNumProps_numRestart, pValue);
}
break;
case RTF_NOLINE:
lcl_eraseNestedAttribute(m_aStates.top().aSectionSprms, NS_ooxml::LN_EG_SectPrContents_lnNumType, NS_ooxml::LN_CT_LineNumber_distance);
break;
case RTF_FORMSHADE:
// Noop, this is the default in Writer.
break;
case RTF_PNGBLIP:
m_aStates.top().aPicture.nStyle = BMPSTYLE_PNG;
break;
case RTF_JPEGBLIP:
m_aStates.top().aPicture.nStyle = BMPSTYLE_JPEG;
break;
case RTF_POSYT:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_yAlign, NS_ooxml::LN_Value_wordprocessingml_ST_YAlign_top);
break;
case RTF_POSYB:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_yAlign, NS_ooxml::LN_Value_wordprocessingml_ST_YAlign_bottom);
break;
case RTF_POSYC:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_yAlign, NS_ooxml::LN_Value_wordprocessingml_ST_YAlign_center);
break;
case RTF_POSYIN:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_yAlign, NS_ooxml::LN_Value_wordprocessingml_ST_YAlign_inside);
break;
case RTF_POSYOUT:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_yAlign, NS_ooxml::LN_Value_wordprocessingml_ST_YAlign_outside);
break;
case RTF_POSYIL:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_yAlign, NS_ooxml::LN_Value_wordprocessingml_ST_YAlign_inline);
break;
case RTF_PHMRG:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_hAnchor, NS_ooxml::LN_Value_wordprocessingml_ST_HAnchor_margin);
break;
case RTF_PVMRG:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_vAnchor, NS_ooxml::LN_Value_wordprocessingml_ST_VAnchor_margin);
break;
case RTF_PHPG:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_hAnchor, NS_ooxml::LN_Value_wordprocessingml_ST_HAnchor_page);
break;
case RTF_PVPG:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_vAnchor, NS_ooxml::LN_Value_wordprocessingml_ST_VAnchor_page);
break;
case RTF_PHCOL:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_hAnchor, NS_ooxml::LN_Value_wordprocessingml_ST_HAnchor_text);
break;
case RTF_PVPARA:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_vAnchor, NS_ooxml::LN_Value_wordprocessingml_ST_VAnchor_text);
break;
case RTF_POSXC:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_xAlign, NS_ooxml::LN_Value_wordprocessingml_ST_XAlign_center);
break;
case RTF_POSXI:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_xAlign, NS_ooxml::LN_Value_wordprocessingml_ST_XAlign_inside);
break;
case RTF_POSXO:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_xAlign, NS_ooxml::LN_Value_wordprocessingml_ST_XAlign_outside);
break;
case RTF_POSXL:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_xAlign, NS_ooxml::LN_Value_wordprocessingml_ST_XAlign_left);
break;
case RTF_POSXR:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_xAlign, NS_ooxml::LN_Value_wordprocessingml_ST_XAlign_right);
break;
case RTF_DPLINE:
case RTF_DPRECT:
case RTF_DPELLIPSE:
case RTF_DPTXBX:
case RTF_DPPOLYLINE:
{
sal_Int32 nType = 0;
switch (nKeyword)
{
case RTF_DPLINE:
m_aStates.top().aDrawingObject.xShape.set(getModelFactory()->createInstance("com.sun.star.drawing.LineShape"), uno::UNO_QUERY);
break;
case RTF_DPPOLYLINE:
// The reason this is not a simple CustomShape is that in the old syntax we have no ViewBox info.
m_aStates.top().aDrawingObject.xShape.set(getModelFactory()->createInstance("com.sun.star.drawing.PolyLineShape"), uno::UNO_QUERY);
break;
case RTF_DPRECT:
m_aStates.top().aDrawingObject.xShape.set(getModelFactory()->createInstance("com.sun.star.drawing.RectangleShape"), uno::UNO_QUERY);
break;
case RTF_DPELLIPSE:
nType = ESCHER_ShpInst_Ellipse;
break;
case RTF_DPTXBX:
{
m_aStates.top().aDrawingObject.xShape.set(getModelFactory()->createInstance("com.sun.star.text.TextFrame"), uno::UNO_QUERY);
std::vector<beans::PropertyValue> aDefaults = m_pSdrImport->getTextFrameDefaults(false);
for (size_t i = 0; i < aDefaults.size(); ++i)
{
if (!lcl_findPropertyName(m_aStates.top().aDrawingObject.aPendingProperties, aDefaults[i].Name))
m_aStates.top().aDrawingObject.aPendingProperties.push_back(aDefaults[i]);
}
checkFirstRun();
Mapper().startShape(m_aStates.top().aDrawingObject.xShape);
m_aStates.top().aDrawingObject.bHadShapeText = true;
}
break;
default:
break;
}
if (nType)
m_aStates.top().aDrawingObject.xShape.set(getModelFactory()->createInstance("com.sun.star.drawing.CustomShape"), uno::UNO_QUERY);
uno::Reference<drawing::XDrawPageSupplier> xDrawSupplier(m_xDstDoc, uno::UNO_QUERY);
if (xDrawSupplier.is())
{
uno::Reference<drawing::XShapes> xShapes(xDrawSupplier->getDrawPage(), uno::UNO_QUERY);
if (xShapes.is() && nKeyword != RTF_DPTXBX)
xShapes->add(m_aStates.top().aDrawingObject.xShape);
}
if (nType)
{
uno::Reference<drawing::XEnhancedCustomShapeDefaulter> xDefaulter(m_aStates.top().aDrawingObject.xShape, uno::UNO_QUERY);
xDefaulter->createCustomShapeDefaults(OUString::number(nType));
}
m_aStates.top().aDrawingObject.xPropertySet.set(m_aStates.top().aDrawingObject.xShape, uno::UNO_QUERY);
std::vector<beans::PropertyValue>& rPendingProperties = m_aStates.top().aDrawingObject.aPendingProperties;
for (std::vector<beans::PropertyValue>::iterator i = rPendingProperties.begin(); i != rPendingProperties.end(); ++i)
m_aStates.top().aDrawingObject.xPropertySet->setPropertyValue(i->Name, i->Value);
m_pSdrImport->resolveDhgt(m_aStates.top().aDrawingObject.xPropertySet, m_aStates.top().aDrawingObject.nDhgt, /*bOldStyle=*/true);
}
break;
case RTF_DOBXMARGIN:
case RTF_DOBYMARGIN:
{
beans::PropertyValue aPropertyValue;
aPropertyValue.Name = (nKeyword == RTF_DOBXMARGIN ? OUString("HoriOrientRelation") : OUString("VertOrientRelation"));
aPropertyValue.Value <<= text::RelOrientation::PAGE_PRINT_AREA;
m_aStates.top().aDrawingObject.aPendingProperties.push_back(aPropertyValue);
}
break;
case RTF_DOBXPAGE:
case RTF_DOBYPAGE:
{
beans::PropertyValue aPropertyValue;
aPropertyValue.Name = (nKeyword == RTF_DOBXPAGE ? OUString("HoriOrientRelation") : OUString("VertOrientRelation"));
aPropertyValue.Value <<= text::RelOrientation::PAGE_FRAME;
m_aStates.top().aDrawingObject.aPendingProperties.push_back(aPropertyValue);
}
break;
case RTF_DOBYPARA:
{
beans::PropertyValue aPropertyValue;
aPropertyValue.Name = "VertOrientRelation";
aPropertyValue.Value <<= text::RelOrientation::FRAME;
m_aStates.top().aDrawingObject.aPendingProperties.push_back(aPropertyValue);
}
break;
case RTF_CONTEXTUALSPACE:
{
RTFValue::Pointer_t pValue(new RTFValue(1));
m_aStates.top().aParagraphSprms.set(NS_ooxml::LN_CT_PPrBase_contextualSpacing, pValue);
}
break;
case RTF_LINKSTYLES:
{
RTFValue::Pointer_t pValue(new RTFValue(1));
m_aSettingsTableSprms.set(NS_ooxml::LN_CT_Settings_linkStyles, pValue);
}
break;
case RTF_PNLVLBODY:
{
RTFValue::Pointer_t pValue(new RTFValue(2));
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_AbstractNum_nsid, pValue);
}
break;
case RTF_PNDEC:
{
RTFValue::Pointer_t pValue(new RTFValue(0)); // decimal, same as \levelnfc0
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Lvl_numFmt, pValue);
}
break;
case RTF_PNLVLBLT:
{
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_AbstractNum_nsid, RTFValue::Pointer_t(new RTFValue(1)));
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Lvl_numFmt, RTFValue::Pointer_t(new RTFValue(23))); // bullets, same as \levelnfc23
}
break;
case RTF_LANDSCAPE:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms, NS_ooxml::LN_EG_SectPrContents_pgSz, NS_ooxml::LN_CT_PageSz_orient, RTFValue::Pointer_t(new RTFValue(1)));
break;
case RTF_FACINGP:
m_aSettingsTableSprms.set(NS_ooxml::LN_CT_Settings_evenAndOddHeaders, RTFValue::Pointer_t(new RTFValue(1)));
break;
case RTF_SHPBXPAGE:
m_aStates.top().aShape.nHoriOrientRelation = text::RelOrientation::PAGE_FRAME;
m_aStates.top().aShape.nHoriOrientRelationToken = NS_ooxml::LN_Value_wordprocessingDrawing_ST_RelFromH_page;
break;
case RTF_SHPBYPAGE:
m_aStates.top().aShape.nVertOrientRelation = text::RelOrientation::PAGE_FRAME;
m_aStates.top().aShape.nVertOrientRelationToken = NS_ooxml::LN_Value_wordprocessingDrawing_ST_RelFromV_page;
break;
case RTF_DPLINEHOLLOW:
m_aStates.top().aDrawingObject.nFLine = 0;
break;
case RTF_DPROUNDR:
if (m_aStates.top().aDrawingObject.xPropertySet.is())
// Seems this old syntax has no way to specify a custom radius, and this is the default
m_aStates.top().aDrawingObject.xPropertySet->setPropertyValue("CornerRadius", uno::makeAny(sal_Int32(83)));
break;
case RTF_NOWRAP:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_wrap, NS_ooxml::LN_Value_wordprocessingml_ST_Wrap_notBeside);
break;
case RTF_MNOR:
m_bMathNor = true;
break;
case RTF_REVISIONS:
m_aSettingsTableSprms.set(NS_ooxml::LN_CT_Settings_trackRevisions, RTFValue::Pointer_t(new RTFValue(1)));
break;
case RTF_BRDRSH:
lcl_putBorderProperty(m_aStates, NS_ooxml::LN_CT_Border_shadow, RTFValue::Pointer_t(new RTFValue(1)));
break;
default:
{
SAL_INFO("writerfilter", "TODO handle flag '" << lcl_RtfToString(nKeyword) << "'");
aSkip.setParsed(false);
}
break;
}
return 0;
}
int RTFDocumentImpl::dispatchValue(RTFKeyword nKeyword, int nParam)
{
setNeedSect();
checkUnicode(/*bUnicode =*/ nKeyword != RTF_U, /*bHex =*/ true);
RTFSkipDestination aSkip(*this);
int nSprm = 0;
RTFValue::Pointer_t pIntValue(new RTFValue(nParam));
// Trivial table sprms.
switch (nKeyword)
{
case RTF_LEVELJC:
nSprm = NS_ooxml::LN_CT_Lvl_lvlJc;
break;
case RTF_LEVELNFC:
nSprm = NS_ooxml::LN_CT_Lvl_numFmt;
break;
case RTF_LEVELSTARTAT:
nSprm = NS_ooxml::LN_CT_Lvl_start;
break;
case RTF_LEVELPICTURE:
nSprm = NS_ooxml::LN_CT_Lvl_lvlPicBulletId;
break;
case RTF_SBASEDON:
nSprm = NS_ooxml::LN_CT_Style_basedOn;
pIntValue.reset(new RTFValue(getStyleName(nParam)));
break;
default:
break;
}
if (nSprm > 0)
{
m_aStates.top().aTableSprms.set(nSprm, pIntValue);
return 0;
}
// Trivial character sprms.
switch (nKeyword)
{
case RTF_FS:
case RTF_AFS:
nSprm = (m_aStates.top().isRightToLeft
|| m_aStates.top().eRunType == RTFParserState::HICH)
? NS_ooxml::LN_EG_RPrBase_szCs
: NS_ooxml::LN_EG_RPrBase_sz;
break;
case RTF_ANIMTEXT:
nSprm = NS_ooxml::LN_EG_RPrBase_effect;
break;
case RTF_EXPNDTW:
nSprm = NS_ooxml::LN_EG_RPrBase_spacing;
break;
case RTF_KERNING:
nSprm = NS_ooxml::LN_EG_RPrBase_kern;
break;
case RTF_CHARSCALEX:
nSprm = NS_ooxml::LN_EG_RPrBase_w;
break;
default:
break;
}
if (nSprm > 0)
{
m_aStates.top().aCharacterSprms.set(nSprm, pIntValue);
return 0;
}
// Trivial character attributes.
switch (nKeyword)
{
case RTF_LANG:
case RTF_ALANG:
if (m_aStates.top().isRightToLeft || m_aStates.top().eRunType == RTFParserState::HICH)
{
nSprm = NS_ooxml::LN_CT_Language_bidi;
}
else if (m_aStates.top().eRunType == RTFParserState::DBCH)
{
nSprm = NS_ooxml::LN_CT_Language_eastAsia;
}
else
{
assert(m_aStates.top().eRunType == RTFParserState::LOCH);
nSprm = NS_ooxml::LN_CT_Language_val;
}
break;
case RTF_LANGFE: // this one is always CJK apparently
nSprm = NS_ooxml::LN_CT_Language_eastAsia;
break;
default:
break;
}
if (nSprm > 0)
{
LanguageTag aTag((LanguageType)nParam);
RTFValue::Pointer_t pValue(new RTFValue(aTag.getBcp47()));
lcl_putNestedAttribute(m_aStates.top().aCharacterSprms, NS_ooxml::LN_EG_RPrBase_lang, nSprm, pValue);
// Language is a character property, but we should store it at a paragraph level as well for fields.
if (nKeyword == RTF_LANG && m_bNeedPap)
lcl_putNestedAttribute(m_aStates.top().aParagraphSprms, NS_ooxml::LN_EG_RPrBase_lang, nSprm, pValue);
return 0;
}
// Trivial paragraph sprms.
switch (nKeyword)
{
case RTF_ITAP:
nSprm = NS_ooxml::LN_tblDepth;
break;
default:
break;
}
if (nSprm > 0)
{
m_aStates.top().aParagraphSprms.set(nSprm, pIntValue);
if (nKeyword == RTF_ITAP && nParam > 0)
{
while (m_aTableBufferStack.size() < sal::static_int_cast<size_t>(nParam))
{
m_aTableBufferStack.push_back(RTFBuffer_t());
}
// Invalid tables may omit INTBL after ITAP
dispatchFlag(RTF_INTBL); // sets newly pushed buffer as current
assert(m_aStates.top().pCurrentBuffer == &m_aTableBufferStack.back());
}
return 0;
}
// Info group.
switch (nKeyword)
{
case RTF_YR:
{
m_aStates.top().nYear = nParam;
nSprm = 1;
}
break;
case RTF_MO:
{
m_aStates.top().nMonth = nParam;
nSprm = 1;
}
break;
case RTF_DY:
{
m_aStates.top().nDay = nParam;
nSprm = 1;
}
break;
case RTF_HR:
{
m_aStates.top().nHour = nParam;
nSprm = 1;
}
break;
case RTF_MIN:
{
m_aStates.top().nMinute = nParam;
nSprm = 1;
}
break;
default:
break;
}
if (nSprm > 0)
return 0;
// Frame size / position.
Id nId = 0;
switch (nKeyword)
{
case RTF_ABSW:
nId = NS_ooxml::LN_CT_FramePr_w;
break;
case RTF_ABSH:
nId = NS_ooxml::LN_CT_FramePr_h;
break;
case RTF_POSX:
{
nId = NS_ooxml::LN_CT_FramePr_x;
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_xAlign, 0);
}
break;
case RTF_POSY:
{
nId = NS_ooxml::LN_CT_FramePr_y;
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_yAlign, 0);
}
break;
default:
break;
}
if (nId > 0)
{
m_bNeedPap = true;
// Don't try to support text frames inside tables for now.
if (m_aStates.top().pCurrentBuffer != &m_aTableBufferStack.back())
m_aStates.top().aFrame.setSprm(nId, nParam);
return 0;
}
// Then check for the more complex ones.
switch (nKeyword)
{
case RTF_F:
case RTF_AF:
if (m_aStates.top().isRightToLeft
|| m_aStates.top().eRunType == RTFParserState::HICH)
{
nSprm = NS_ooxml::LN_CT_Fonts_cs;
}
else if (m_aStates.top().eRunType == RTFParserState::DBCH)
{
nSprm = NS_ooxml::LN_CT_Fonts_eastAsia;
}
else
{
assert(m_aStates.top().eRunType == RTFParserState::LOCH);
nSprm = NS_ooxml::LN_CT_Fonts_ascii;
}
if (m_aStates.top().nDestinationState == DESTINATION_FONTTABLE || m_aStates.top().nDestinationState == DESTINATION_FONTENTRY)
{
m_aFontIndexes.push_back(nParam);
m_nCurrentFontIndex = getFontIndex(nParam);
}
else if (m_aStates.top().nDestinationState == DESTINATION_LISTLEVEL)
{
RTFSprms aFontAttributes;
aFontAttributes.set(nSprm, RTFValue::Pointer_t(new RTFValue(m_aFontNames[getFontIndex(nParam)])));
RTFSprms aRunPropsSprms;
aRunPropsSprms.set(NS_ooxml::LN_EG_RPrBase_rFonts, RTFValue::Pointer_t(new RTFValue(aFontAttributes)));
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Lvl_rPr,
RTFValue::Pointer_t(new RTFValue(RTFSprms(), aRunPropsSprms)),
OVERWRITE_NO_APPEND);
}
else
{
m_nCurrentFontIndex = getFontIndex(nParam);
RTFValue::Pointer_t pValue(new RTFValue(getFontName(m_nCurrentFontIndex)));
lcl_putNestedAttribute(m_aStates.top().aCharacterSprms, NS_ooxml::LN_EG_RPrBase_rFonts, nSprm, pValue);
if (nKeyword == RTF_F)
m_aStates.top().nCurrentEncoding = getEncoding(m_nCurrentFontIndex);
}
break;
case RTF_RED:
m_aStates.top().aCurrentColor.nRed = nParam;
break;
case RTF_GREEN:
m_aStates.top().aCurrentColor.nGreen = nParam;
break;
case RTF_BLUE:
m_aStates.top().aCurrentColor.nBlue = nParam;
break;
case RTF_FCHARSET:
{
// we always send text to the domain mapper in OUString, so no
// need to send encoding info
int i;
for (i = 0; i < nRTFEncodings; i++)
{
if (aRTFEncodings[i].charset == nParam)
break;
}
if (i == nRTFEncodings)
// not found
return 0;
m_nCurrentEncoding = rtl_getTextEncodingFromWindowsCodePage(aRTFEncodings[i].codepage);
m_aStates.top().nCurrentEncoding = m_nCurrentEncoding;
}
break;
case RTF_ANSICPG:
{
m_aDefaultState.nCurrentEncoding = rtl_getTextEncodingFromWindowsCodePage(nParam);
m_aStates.top().nCurrentEncoding = rtl_getTextEncodingFromWindowsCodePage(nParam);
}
break;
case RTF_CPG:
m_nCurrentEncoding = rtl_getTextEncodingFromWindowsCodePage(nParam);
m_aStates.top().nCurrentEncoding = m_nCurrentEncoding;
break;
case RTF_CF:
{
RTFSprms aAttributes;
RTFValue::Pointer_t pValue(new RTFValue(getColorTable(nParam)));
aAttributes.set(NS_ooxml::LN_CT_Color_val, pValue);
m_aStates.top().aCharacterSprms.set(NS_ooxml::LN_EG_RPrBase_color, RTFValue::Pointer_t(new RTFValue(aAttributes)));
}
break;
case RTF_S:
{
m_aStates.top().nCurrentStyleIndex = nParam;
if (m_aStates.top().nDestinationState == DESTINATION_STYLESHEET || m_aStates.top().nDestinationState == DESTINATION_STYLEENTRY)
{
m_nCurrentStyleIndex = nParam;
RTFValue::Pointer_t pValue(new RTFValue(1));
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_Style_type, pValue); // paragraph style
}
else
{
OUString aName = getStyleName(nParam);
if (!aName.isEmpty())
m_aStates.top().aParagraphSprms.set(NS_ooxml::LN_CT_PPrBase_pStyle, RTFValue::Pointer_t(new RTFValue(aName)));
}
}
break;
case RTF_CS:
if (m_aStates.top().nDestinationState == DESTINATION_STYLESHEET || m_aStates.top().nDestinationState == DESTINATION_STYLEENTRY)
{
m_nCurrentStyleIndex = nParam;
RTFValue::Pointer_t pValue(new RTFValue(2));
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_Style_type, pValue); // character style
}
else
{
OUString aName = getStyleName(nParam);
if (!aName.isEmpty())
m_aStates.top().aCharacterSprms.set(NS_ooxml::LN_EG_RPrBase_rStyle, RTFValue::Pointer_t(new RTFValue(aName)));
}
break;
case RTF_DS:
if (m_aStates.top().nDestinationState == DESTINATION_STYLESHEET || m_aStates.top().nDestinationState == DESTINATION_STYLEENTRY)
{
m_nCurrentStyleIndex = nParam;
RTFValue::Pointer_t pValue(new RTFValue(-42)); // TODO no value in enum StyleType?
m_aStates.top().aTableAttributes.set(
NS_ooxml::LN_CT_Style_type, pValue); // section style
}
break;
case RTF_TS:
if (m_aStates.top().nDestinationState == DESTINATION_STYLESHEET || m_aStates.top().nDestinationState == DESTINATION_STYLEENTRY)
{
m_nCurrentStyleIndex = nParam;
RTFValue::Pointer_t pValue(new RTFValue(-43)); // FIXME the correct value would be 3 but maybe table styles mess things up in dmapper, be cautious and disable them for now
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_Style_type, pValue); // table style
}
break;
case RTF_DEFF:
m_nDefaultFontIndex = nParam;
break;
case RTF_DEFLANG:
case RTF_ADEFLANG:
{
LanguageTag aTag((LanguageType)nParam);
RTFValue::Pointer_t pValue(new RTFValue(aTag.getBcp47()));
lcl_putNestedAttribute(m_aStates.top().aCharacterSprms, (nKeyword == RTF_DEFLANG ? NS_ooxml::LN_EG_RPrBase_lang : NS_ooxml::LN_CT_Language_bidi), nSprm, pValue);
}
break;
case RTF_CHCBPAT:
{
RTFValue::Pointer_t pValue(new RTFValue(nParam ? getColorTable(nParam) : COL_AUTO));
lcl_putNestedAttribute(m_aStates.top().aCharacterSprms, NS_ooxml::LN_EG_RPrBase_shd, NS_ooxml::LN_CT_Shd_fill, pValue);
}
break;
case RTF_CLCBPAT:
{
RTFValue::Pointer_t pValue(new RTFValue(getColorTable(nParam)));
lcl_putNestedAttribute(m_aStates.top().aTableCellSprms,
NS_ooxml::LN_CT_TcPrBase_shd, NS_ooxml::LN_CT_Shd_fill, pValue);
}
break;
case RTF_CBPAT:
if (nParam)
{
RTFValue::Pointer_t pValue(new RTFValue(getColorTable(nParam)));
lcl_putNestedAttribute(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PrBase_shd, NS_ooxml::LN_CT_Shd_fill, pValue);
}
break;
case RTF_ULC:
{
RTFValue::Pointer_t pValue(new RTFValue(getColorTable(nParam)));
m_aStates.top().aCharacterSprms.set(0x6877, pValue);
}
break;
case RTF_HIGHLIGHT:
{
RTFValue::Pointer_t pValue(new RTFValue(nParam ? getColorTable(nParam) : COL_AUTO));
m_aStates.top().aCharacterSprms.set(NS_ooxml::LN_EG_RPrBase_highlight, pValue);
}
break;
case RTF_UP:
case RTF_DN:
{
RTFValue::Pointer_t pValue(new RTFValue(nParam * (nKeyword == RTF_UP ? 1 : -1)));
m_aStates.top().aCharacterSprms.set(NS_ooxml::LN_EG_RPrBase_position, pValue);
}
break;
case RTF_HORZVERT:
{
RTFValue::Pointer_t pValue(new RTFValue(int(true)));
m_aStates.top().aCharacterAttributes.set(NS_ooxml::LN_CT_EastAsianLayout_vert, pValue);
if (nParam)
// rotate fits to a single line
m_aStates.top().aCharacterAttributes.set(NS_ooxml::LN_CT_EastAsianLayout_vertCompress, pValue);
}
break;
case RTF_EXPND:
{
RTFValue::Pointer_t pValue(new RTFValue(nParam/5));
m_aStates.top().aCharacterSprms.set(NS_ooxml::LN_EG_RPrBase_spacing, pValue);
}
break;
case RTF_TWOINONE:
{
RTFValue::Pointer_t pValue(new RTFValue(int(true)));
m_aStates.top().aCharacterAttributes.set(NS_ooxml::LN_CT_EastAsianLayout_combine, pValue);
if (nParam > 0)
m_aStates.top().aCharacterAttributes.set(NS_ooxml::LN_CT_EastAsianLayout_combineBrackets, pIntValue);
}
break;
case RTF_SL:
{
// This is similar to RTF_ABSH, negative value means 'exact', positive means 'at least'.
RTFValue::Pointer_t pValue(new RTFValue(NS_ooxml::LN_Value_wordprocessingml_ST_LineSpacingRule_atLeast));
if (nParam < 0)
{
pValue.reset(new RTFValue(NS_ooxml::LN_Value_wordprocessingml_ST_LineSpacingRule_exact));
pIntValue.reset(new RTFValue(-nParam));
}
m_aStates.top().aParagraphAttributes.set(NS_ooxml::LN_CT_Spacing_lineRule, pValue);
m_aStates.top().aParagraphAttributes.set(NS_ooxml::LN_CT_Spacing_line, pIntValue);
}
break;
case RTF_SLMULT:
if (nParam > 0)
{
RTFValue::Pointer_t pValue(new RTFValue(NS_ooxml::LN_Value_wordprocessingml_ST_LineSpacingRule_auto));
m_aStates.top().aParagraphAttributes.set(NS_ooxml::LN_CT_Spacing_lineRule, pValue);
}
break;
case RTF_BRDRW:
{
// dmapper expects it in 1/8 pt, we have it in twip - but avoid rounding 1 to 0
if (nParam > 1)
nParam = nParam * 2 / 5;
RTFValue::Pointer_t pValue(new RTFValue(nParam));
lcl_putBorderProperty(m_aStates, NS_ooxml::LN_CT_Border_sz, pValue);
}
break;
case RTF_BRDRCF:
{
RTFValue::Pointer_t pValue(new RTFValue(getColorTable(nParam)));
lcl_putBorderProperty(m_aStates, NS_ooxml::LN_CT_Border_color, pValue);
}
break;
case RTF_BRSP:
{
// dmapper expects it in points, we have it in twip
RTFValue::Pointer_t pValue(new RTFValue(nParam / 20));
lcl_putBorderProperty(m_aStates, NS_ooxml::LN_CT_Border_space, pValue);
}
break;
case RTF_TX:
{
m_aStates.top().aTabAttributes.set(NS_ooxml::LN_CT_TabStop_pos, pIntValue);
RTFValue::Pointer_t pValue(new RTFValue(m_aStates.top().aTabAttributes));
lcl_putNestedSprm(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PPrBase_tabs, NS_ooxml::LN_CT_Tabs_tab, pValue);
m_aStates.top().aTabAttributes.clear();
}
break;
case RTF_ILVL:
lcl_putNestedSprm(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PPrBase_numPr, NS_ooxml::LN_CT_NumPr_ilvl, pIntValue);
break;
case RTF_LISTTEMPLATEID:
// This one is not referenced anywhere, so it's pointless to store it at the moment.
break;
case RTF_LISTID:
{
if (m_aStates.top().nDestinationState == DESTINATION_LISTENTRY)
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_AbstractNum_abstractNumId, pIntValue);
else if (m_aStates.top().nDestinationState == DESTINATION_LISTOVERRIDEENTRY)
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Num_abstractNumId, pIntValue);
}
break;
case RTF_LS:
{
if (m_aStates.top().nDestinationState == DESTINATION_LISTOVERRIDEENTRY)
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_AbstractNum_nsid, pIntValue);
else
lcl_putNestedSprm(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PPrBase_tabs, NS_ooxml::LN_CT_NumPr_numId, pIntValue);
}
break;
case RTF_UC:
if ((SAL_MIN_INT16 <= nParam) && (nParam <= SAL_MAX_INT16))
m_aStates.top().nUc = nParam;
break;
case RTF_U:
// sal_Unicode is unsigned 16-bit, RTF may represent that as a
// signed SAL_MIN_INT16..SAL_MAX_INT16 or 0..SAL_MAX_UINT16. The
// static_cast() will do the right thing.
if ((SAL_MIN_INT16 <= nParam) && (nParam <= SAL_MAX_UINT16))
{
if (m_aStates.top().nDestinationState == DESTINATION_LEVELNUMBERS)
{
if (nParam != ';')
m_aStates.top().aLevelNumbers.push_back(sal_Int32(nParam));
}
else
m_aUnicodeBuffer.append(static_cast<sal_Unicode>(nParam));
m_aStates.top().nCharsToSkip = m_aStates.top().nUc;
}
break;
case RTF_LEVELFOLLOW:
{
OUString sValue;
switch (nParam)
{
case 0:
sValue = "tab";
break;
case 1:
sValue = "space";
break;
case 2:
sValue = "nothing";
break;
}
if (!sValue.isEmpty())
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Lvl_suff, RTFValue::Pointer_t(new RTFValue(sValue)));
}
break;
case RTF_FPRQ:
{
sal_Int32 nValue = 0;
switch (nParam)
{
case 0:
nValue = NS_ooxml::LN_Value_ST_Pitch_default;
break;
case 1:
nValue = NS_ooxml::LN_Value_ST_Pitch_fixed;
break;
case 2:
nValue = NS_ooxml::LN_Value_ST_Pitch_variable;
break;
}
if (nValue)
{
RTFSprms aAttributes;
aAttributes.set(NS_ooxml::LN_CT_Pitch_val, RTFValue::Pointer_t(new RTFValue(nValue)));
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Font_pitch, RTFValue::Pointer_t(new RTFValue(aAttributes)));
}
}
break;
case RTF_LISTOVERRIDECOUNT:
// Ignore this for now, the exporter always emits it with a zero parameter.
break;
case RTF_PICSCALEX:
m_aStates.top().aPicture.nScaleX = nParam;
break;
case RTF_PICSCALEY:
m_aStates.top().aPicture.nScaleY = nParam;
break;
case RTF_PICW:
m_aStates.top().aPicture.nWidth = nParam;
break;
case RTF_PICH:
m_aStates.top().aPicture.nHeight = nParam;
break;
case RTF_PICWGOAL:
m_aStates.top().aPicture.nGoalWidth = convertTwipToMm100(nParam);
break;
case RTF_PICHGOAL:
m_aStates.top().aPicture.nGoalHeight = convertTwipToMm100(nParam);
break;
case RTF_PICCROPL:
m_aStates.top().aPicture.nCropL = convertTwipToMm100(nParam);
break;
case RTF_PICCROPR:
m_aStates.top().aPicture.nCropR = convertTwipToMm100(nParam);
break;
case RTF_PICCROPT:
m_aStates.top().aPicture.nCropT = convertTwipToMm100(nParam);
break;
case RTF_PICCROPB:
m_aStates.top().aPicture.nCropB = convertTwipToMm100(nParam);
break;
case RTF_SHPWRK:
{
int nValue = 0;
switch (nParam)
{
case 0:
nValue = NS_ooxml::LN_Value_wordprocessingDrawing_ST_WrapText_bothSides;
break;
case 1:
nValue = NS_ooxml::LN_Value_wordprocessingDrawing_ST_WrapText_left;
break;
case 2:
nValue = NS_ooxml::LN_Value_wordprocessingDrawing_ST_WrapText_right;
break;
case 3:
nValue = NS_ooxml::LN_Value_wordprocessingDrawing_ST_WrapText_largest;
break;
default:
break;
}
RTFValue::Pointer_t pValue(new RTFValue(nValue));
m_aStates.top().aCharacterAttributes.set(NS_ooxml::LN_CT_WrapSquare_wrapText, pValue);
}
break;
case RTF_SHPWR:
{
switch (nParam)
{
case 1:
m_aStates.top().aShape.nWrap = com::sun::star::text::WrapTextMode_NONE;
break;
case 2:
m_aStates.top().aShape.nWrap = com::sun::star::text::WrapTextMode_PARALLEL;
break;
case 3:
m_aStates.top().aShape.nWrap = com::sun::star::text::WrapTextMode_THROUGHT;
break;
case 4:
m_aStates.top().aShape.nWrap = com::sun::star::text::WrapTextMode_PARALLEL;
break;
case 5:
m_aStates.top().aShape.nWrap = com::sun::star::text::WrapTextMode_THROUGHT;
break;
}
}
break;
case RTF_CELLX:
{
int& rCurrentCellX((DESTINATION_NESTEDTABLEPROPERTIES ==
m_aStates.top().nDestinationState)
? m_nNestedCurrentCellX
: m_nTopLevelCurrentCellX);
int nCellX = nParam - rCurrentCellX;
const int COL_DFLT_WIDTH = 41; // sw/source/filter/inc/wrtswtbl.hxx, minimal possible width of cells.
if (!nCellX)
nCellX = COL_DFLT_WIDTH;
// If there is a negative left margin, then the first cellx is relative to that.
RTFValue::Pointer_t pTblInd = m_aStates.top().aTableRowSprms.find(NS_ooxml::LN_CT_TblPrBase_tblInd);
if (rCurrentCellX == 0 && pTblInd.get())
{
RTFValue::Pointer_t pWidth = pTblInd->getAttributes().find(NS_ooxml::LN_CT_TblWidth_w);
if (pWidth.get() && pWidth->getInt() < 0)
nCellX = -1 * (pWidth->getInt() - nParam);
}
rCurrentCellX = nParam;
RTFValue::Pointer_t pXValue(new RTFValue(nCellX));
m_aStates.top().aTableRowSprms.set(NS_ooxml::LN_CT_TblGridBase_gridCol, pXValue, OVERWRITE_NO_APPEND);
if (DESTINATION_NESTEDTABLEPROPERTIES == m_aStates.top().nDestinationState)
{
m_nNestedCells++;
// Push cell properties.
m_aNestedTableCellsSprms.push_back(
m_aStates.top().aTableCellSprms);
m_aNestedTableCellsAttributes.push_back(
m_aStates.top().aTableCellAttributes);
}
else
{
m_nTopLevelCells++;
// Push cell properties.
m_aTopLevelTableCellsSprms.push_back(
m_aStates.top().aTableCellSprms);
m_aTopLevelTableCellsAttributes.push_back(
m_aStates.top().aTableCellAttributes);
}
m_aStates.top().aTableCellSprms = m_aDefaultState.aTableCellSprms;
m_aStates.top().aTableCellAttributes = m_aDefaultState.aTableCellAttributes;
// We assume text after a row definition always belongs to the table, to handle text before the real INTBL token
dispatchFlag(RTF_INTBL);
m_nCellxMax = std::max(m_nCellxMax, nParam);
}
break;
case RTF_TRRH:
{
OUString hRule("auto");
if (nParam < 0)
{
RTFValue::Pointer_t pAbsValue(new RTFValue(-nParam));
pIntValue.swap(pAbsValue);
hRule = "exact";
}
else if (nParam > 0)
hRule = "atLeast";
lcl_putNestedAttribute(m_aStates.top().aTableRowSprms,
NS_ooxml::LN_CT_TrPrBase_trHeight, NS_ooxml::LN_CT_Height_val, pIntValue);
RTFValue::Pointer_t pHRule(new RTFValue(hRule));
lcl_putNestedAttribute(m_aStates.top().aTableRowSprms,
NS_ooxml::LN_CT_TrPrBase_trHeight, NS_ooxml::LN_CT_Height_hRule, pHRule);
}
break;
case RTF_TRLEFT:
{
// the value is in twips
lcl_putNestedAttribute(m_aStates.top().aTableRowSprms,
NS_ooxml::LN_CT_TblPrBase_tblInd, NS_ooxml::LN_CT_TblWidth_type,
RTFValue::Pointer_t(new RTFValue(NS_ooxml::LN_Value_ST_TblWidth_dxa)));
lcl_putNestedAttribute(m_aStates.top().aTableRowSprms,
NS_ooxml::LN_CT_TblPrBase_tblInd, NS_ooxml::LN_CT_TblWidth_w,
RTFValue::Pointer_t(new RTFValue(nParam)));
}
break;
case RTF_COLS:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_cols, NS_ooxml::LN_CT_Columns_num, pIntValue);
break;
case RTF_COLSX:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_cols, NS_ooxml::LN_CT_Columns_space, pIntValue);
break;
case RTF_COLNO:
lcl_putNestedSprm(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_cols, NS_ooxml::LN_CT_Columns_col, pIntValue);
break;
case RTF_COLW:
case RTF_COLSR:
{
RTFSprms& rAttributes = lcl_getLastAttributes(m_aStates.top().aSectionSprms, NS_ooxml::LN_EG_SectPrContents_cols);
rAttributes.set((nKeyword == RTF_COLW ? NS_ooxml::LN_CT_Column_w : NS_ooxml::LN_CT_Column_space), pIntValue);
}
break;
case RTF_PAPERH: // fall through: set the default + current value
lcl_putNestedAttribute(m_aDefaultState.aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgSz, NS_ooxml::LN_CT_PageSz_h, pIntValue, OVERWRITE_YES);
case RTF_PGHSXN:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgSz, NS_ooxml::LN_CT_PageSz_h, pIntValue, OVERWRITE_YES);
break;
case RTF_PAPERW: // fall through: set the default + current value
lcl_putNestedAttribute(m_aDefaultState.aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgSz, NS_ooxml::LN_CT_PageSz_w, pIntValue, OVERWRITE_YES);
case RTF_PGWSXN:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgSz, NS_ooxml::LN_CT_PageSz_w, pIntValue, OVERWRITE_YES);
break;
case RTF_MARGL: // fall through: set the default + current value
lcl_putNestedAttribute(m_aDefaultState.aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgMar, NS_ooxml::LN_CT_PageMar_left, pIntValue, OVERWRITE_YES);
case RTF_MARGLSXN:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgMar, NS_ooxml::LN_CT_PageMar_left, pIntValue, OVERWRITE_YES);
break;
case RTF_MARGR: // fall through: set the default + current value
lcl_putNestedAttribute(m_aDefaultState.aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgMar, NS_ooxml::LN_CT_PageMar_right, pIntValue, OVERWRITE_YES);
case RTF_MARGRSXN:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgMar, NS_ooxml::LN_CT_PageMar_right, pIntValue, OVERWRITE_YES);
break;
case RTF_MARGT: // fall through: set the default + current value
lcl_putNestedAttribute(m_aDefaultState.aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgMar, NS_ooxml::LN_CT_PageMar_top, pIntValue, OVERWRITE_YES);
case RTF_MARGTSXN:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgMar, NS_ooxml::LN_CT_PageMar_top, pIntValue, OVERWRITE_YES);
break;
case RTF_MARGB: // fall through: set the default + current value
lcl_putNestedAttribute(m_aDefaultState.aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgMar, NS_ooxml::LN_CT_PageMar_bottom, pIntValue, OVERWRITE_YES);
case RTF_MARGBSXN:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgMar, NS_ooxml::LN_CT_PageMar_bottom, pIntValue, OVERWRITE_YES);
break;
case RTF_HEADERY:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgMar, NS_ooxml::LN_CT_PageMar_header, pIntValue, OVERWRITE_YES);
break;
case RTF_FOOTERY:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_pgMar, NS_ooxml::LN_CT_PageMar_footer, pIntValue, OVERWRITE_YES);
break;
case RTF_DEFTAB:
m_aSettingsTableSprms.set(NS_ooxml::LN_CT_Settings_defaultTabStop, pIntValue);
break;
case RTF_LINEMOD:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_lnNumType, NS_ooxml::LN_CT_LineNumber_countBy, pIntValue);
break;
case RTF_LINEX:
if (nParam)
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_lnNumType, NS_ooxml::LN_CT_LineNumber_distance, pIntValue);
break;
case RTF_LINESTARTS:
lcl_putNestedAttribute(m_aStates.top().aSectionSprms,
NS_ooxml::LN_EG_SectPrContents_lnNumType, NS_ooxml::LN_CT_LineNumber_start, pIntValue);
break;
case RTF_REVAUTH:
case RTF_REVAUTHDEL:
{
RTFValue::Pointer_t pValue(new RTFValue(m_aAuthors[nParam]));
lcl_putNestedAttribute(m_aStates.top().aCharacterSprms,
NS_ooxml::LN_trackchange, NS_ooxml::LN_CT_TrackChange_author, pValue);
}
break;
case RTF_REVDTTM:
case RTF_REVDTTMDEL:
{
OUString aStr(OStringToOUString(lcl_DTTM22OString(nParam), m_aStates.top().nCurrentEncoding));
RTFValue::Pointer_t pValue(new RTFValue(aStr));
lcl_putNestedAttribute(m_aStates.top().aCharacterSprms,
NS_ooxml::LN_trackchange, NS_ooxml::LN_CT_TrackChange_date, pValue);
}
break;
case RTF_SHPLEFT:
m_aStates.top().aShape.nLeft = convertTwipToMm100(nParam);
break;
case RTF_SHPTOP:
m_aStates.top().aShape.nTop = convertTwipToMm100(nParam);
break;
case RTF_SHPRIGHT:
m_aStates.top().aShape.nRight = convertTwipToMm100(nParam);
break;
case RTF_SHPBOTTOM:
m_aStates.top().aShape.nBottom = convertTwipToMm100(nParam);
break;
case RTF_SHPZ:
m_aStates.top().aShape.oZ.reset(nParam);
break;
case RTF_FFTYPE:
switch (nParam)
{
case 0:
m_nFormFieldType = FORMFIELD_TEXT;
break;
case 1:
m_nFormFieldType = FORMFIELD_CHECKBOX;
break;
case 2:
m_nFormFieldType = FORMFIELD_LIST;
break;
default:
m_nFormFieldType = FORMFIELD_NONE;
break;
}
break;
case RTF_FFDEFRES:
if (m_nFormFieldType == FORMFIELD_CHECKBOX)
m_aFormfieldSprms.set(NS_ooxml::LN_CT_FFCheckBox_default, pIntValue);
else if (m_nFormFieldType == FORMFIELD_LIST)
m_aFormfieldSprms.set(NS_ooxml::LN_CT_FFDDList_default, pIntValue);
break;
case RTF_FFRES:
if (m_nFormFieldType == FORMFIELD_CHECKBOX)
m_aFormfieldSprms.set(NS_ooxml::LN_CT_FFCheckBox_checked, pIntValue);
else if (m_nFormFieldType == FORMFIELD_LIST)
m_aFormfieldSprms.set(NS_ooxml::LN_CT_FFDDList_result, pIntValue);
break;
case RTF_EDMINS:
if (m_xDocumentProperties.is())
m_xDocumentProperties->setEditingDuration(nParam);
break;
case RTF_NOFPAGES:
case RTF_NOFWORDS:
case RTF_NOFCHARS:
case RTF_NOFCHARSWS:
if (m_xDocumentProperties.is())
{
uno::Sequence<beans::NamedValue> aSet = m_xDocumentProperties->getDocumentStatistics();
OUString aName;
switch (nKeyword)
{
case RTF_NOFPAGES:
aName = "PageCount";
nParam = 99;
break;
case RTF_NOFWORDS:
aName = "WordCount";
break;
case RTF_NOFCHARS:
aName = "CharacterCount";
break;
case RTF_NOFCHARSWS:
aName = "NonWhitespaceCharacterCount";
break;
default:
break;
}
if (!aName.isEmpty())
{
bool bFound = false;
int nLen = aSet.getLength();
for (int i = 0; i < nLen; ++i)
if (aSet[i].Name.equals(aName))
aSet[i].Value = uno::makeAny(sal_Int32(nParam));
if (!bFound)
{
aSet.realloc(nLen + 1);
aSet[nLen].Name = aName;
aSet[nLen].Value = uno::makeAny(sal_Int32(nParam));
}
m_xDocumentProperties->setDocumentStatistics(aSet);
}
}
break;
case RTF_VERSION:
if (m_xDocumentProperties.is())
m_xDocumentProperties->setEditingCycles(nParam);
break;
case RTF_VERN:
// Ignore this for now, later the RTF writer version could be used to add hacks for older buggy writers.
break;
case RTF_FTNSTART:
lcl_putNestedSprm(m_aDefaultState.aParagraphSprms,
NS_ooxml::LN_EG_SectPrContents_footnotePr, NS_ooxml::LN_EG_FtnEdnNumProps_numStart, pIntValue);
break;
case RTF_AFTNSTART:
lcl_putNestedSprm(m_aDefaultState.aParagraphSprms,
NS_ooxml::LN_EG_SectPrContents_endnotePr, NS_ooxml::LN_EG_FtnEdnNumProps_numStart, pIntValue);
break;
case RTF_DFRMTXTX:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_hSpace, nParam);
break;
case RTF_DFRMTXTY:
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_vSpace, nParam);
break;
case RTF_DXFRTEXT:
{
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_hSpace, nParam);
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_vSpace, nParam);
}
break;
case RTF_FLYVERT:
{
RTFVertOrient aVertOrient(nParam);
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_yAlign, aVertOrient.GetAlign());
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_vAnchor, aVertOrient.GetAnchor());
}
break;
case RTF_FLYHORZ:
{
RTFHoriOrient aHoriOrient(nParam);
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_xAlign, aHoriOrient.GetAlign());
m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_hAnchor, aHoriOrient.GetAnchor());
}
break;
case RTF_FLYANCHOR:
m_aStates.top().aFrame.nAnchorType = nParam;
break;
case RTF_WMETAFILE:
m_aStates.top().aPicture.eWMetafile = nParam;
break;
case RTF_SB:
lcl_putNestedAttribute(m_aStates.top().aParagraphSprms,
NS_ooxml::LN_CT_PPrBase_spacing, NS_ooxml::LN_CT_Spacing_before, pIntValue, OVERWRITE_YES);
break;
case RTF_SA:
lcl_putNestedAttribute(m_aStates.top().aParagraphSprms,
NS_ooxml::LN_CT_PPrBase_spacing, NS_ooxml::LN_CT_Spacing_after, pIntValue, OVERWRITE_YES);
break;
case RTF_DPX:
m_aStates.top().aDrawingObject.nLeft = convertTwipToMm100(nParam);
break;
case RTF_DPY:
m_aStates.top().aDrawingObject.nTop = convertTwipToMm100(nParam);
break;
case RTF_DPXSIZE:
m_aStates.top().aDrawingObject.nRight = convertTwipToMm100(nParam);
break;
case RTF_DPYSIZE:
m_aStates.top().aDrawingObject.nBottom = convertTwipToMm100(nParam);
break;
case RTF_PNSTART:
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Lvl_start, pIntValue);
break;
case RTF_PNF:
{
RTFValue::Pointer_t pValue(new RTFValue(m_aFontNames[getFontIndex(nParam)]));
RTFSprms aAttributes;
aAttributes.set(NS_ooxml::LN_CT_Fonts_ascii, pValue);
lcl_putNestedSprm(m_aStates.top().aTableSprms, NS_ooxml::LN_CT_Lvl_rPr, NS_ooxml::LN_EG_RPrBase_rFonts, RTFValue::Pointer_t(new RTFValue(aAttributes)));
}
break;
case RTF_VIEWSCALE:
m_aSettingsTableAttributes.set(NS_ooxml::LN_CT_Zoom_percent, pIntValue);
break;
case RTF_BIN:
{
m_aStates.top().nInternalState = INTERNAL_BIN;
m_aStates.top().nBinaryToRead = nParam;
}
break;
case RTF_DPLINECOR:
m_aStates.top().aDrawingObject.nLineColorR = nParam;
m_aStates.top().aDrawingObject.bHasLineColor = true;
break;
case RTF_DPLINECOG:
m_aStates.top().aDrawingObject.nLineColorG = nParam;
m_aStates.top().aDrawingObject.bHasLineColor = true;
break;
case RTF_DPLINECOB:
m_aStates.top().aDrawingObject.nLineColorB = nParam;
m_aStates.top().aDrawingObject.bHasLineColor = true;
break;
case RTF_DPFILLBGCR:
m_aStates.top().aDrawingObject.nFillColorR = nParam;
m_aStates.top().aDrawingObject.bHasFillColor = true;
break;
case RTF_DPFILLBGCG:
m_aStates.top().aDrawingObject.nFillColorG = nParam;
m_aStates.top().aDrawingObject.bHasFillColor = true;
break;
case RTF_DPFILLBGCB:
m_aStates.top().aDrawingObject.nFillColorB = nParam;
m_aStates.top().aDrawingObject.bHasFillColor = true;
break;
case RTF_CLSHDNG:
{
int nValue = -1;
switch (nParam)
{
case 500:
nValue = 2;
break;
case 1000:
nValue = 3;
break;
case 1200:
nValue = 37;
break;
case 1500:
nValue = 38;
break;
case 2000:
nValue = 4;
break;
case 2500:
nValue = 5;
break;
case 3000:
nValue = 6;
break;
case 3500:
nValue = 43;
break;
case 3700:
nValue = 44;
break;
case 4000:
nValue = 7;
break;
case 4500:
nValue = 46;
break;
case 5000:
nValue = 8;
break;
case 5500:
nValue = 49;
break;
case 6000:
nValue = 9;
break;
case 6200:
nValue = 51;
break;
case 6500:
nValue = 52;
break;
case 7000:
nValue = 10;
break;
case 7500:
nValue = 11;
break;
case 8000:
nValue = 12;
break;
case 8500:
nValue = 57;
break;
case 8700:
nValue = 58;
break;
case 9000:
nValue = 13;
break;
case 9500:
nValue = 60;
break;
default:
break;
}
if (nValue != -1)
lcl_putNestedAttribute(m_aStates.top().aTableCellSprms,
NS_ooxml::LN_CT_TcPrBase_shd, NS_ooxml::LN_CT_Shd_val, RTFValue::Pointer_t(new RTFValue(nValue)));
}
break;
case RTF_DODHGT:
m_aStates.top().aDrawingObject.nDhgt = nParam;
break;
case RTF_DPPOLYCOUNT:
if (nParam >= 0)
{
m_aStates.top().aDrawingObject.nPolyLineCount = nParam;
m_aStates.top().aDrawingObject.aPolyLinePoints.realloc(nParam);
}
break;
case RTF_DPPTX:
{
RTFDrawingObject& rDrawingObject = m_aStates.top().aDrawingObject;
if (!rDrawingObject.aPolyLinePoints.hasElements())
dispatchValue(RTF_DPPOLYCOUNT, 2);
rDrawingObject.aPolyLinePoints[rDrawingObject.aPolyLinePoints.getLength() - rDrawingObject.nPolyLineCount].X = convertTwipToMm100(nParam);
}
break;
case RTF_DPPTY:
{
RTFDrawingObject& rDrawingObject = m_aStates.top().aDrawingObject;
if (rDrawingObject.aPolyLinePoints.hasElements())
{
rDrawingObject.aPolyLinePoints[rDrawingObject.aPolyLinePoints.getLength() - rDrawingObject.nPolyLineCount].Y = convertTwipToMm100(nParam);
rDrawingObject.nPolyLineCount--;
if (rDrawingObject.nPolyLineCount == 0)
{
uno::Sequence< uno::Sequence<awt::Point> >aPointSequenceSequence(1);
aPointSequenceSequence[0] = rDrawingObject.aPolyLinePoints;
rDrawingObject.xPropertySet->setPropertyValue("PolyPolygon", uno::Any(aPointSequenceSequence));
}
}
}
break;
case RTF_SHPFBLWTXT:
if (nParam == 1)
{
// Shape is below text -> send it to the background.
m_aStates.top().aCharacterAttributes.erase(NS_ooxml::LN_CT_WrapSquare_wrapText);
m_aStates.top().aCharacterSprms.set(NS_ooxml::LN_EG_WrapType_wrapNone, RTFValue::Pointer_t(new RTFValue()));
}
break;
case RTF_CLPADB:
case RTF_CLPADL:
case RTF_CLPADR:
case RTF_CLPADT:
{
RTFSprms aAttributes;
aAttributes.set(NS_ooxml::LN_CT_TblWidth_type, RTFValue::Pointer_t(new RTFValue(NS_ooxml::LN_Value_ST_TblWidth_dxa)));
aAttributes.set(NS_ooxml::LN_CT_TblWidth_w, RTFValue::Pointer_t(new RTFValue(nParam)));
switch (nKeyword)
{
case RTF_CLPADB:
nSprm = NS_ooxml::LN_CT_TcMar_bottom;
break;
case RTF_CLPADL:
nSprm = NS_ooxml::LN_CT_TcMar_left;
break;
case RTF_CLPADR:
nSprm = NS_ooxml::LN_CT_TcMar_right;
break;
case RTF_CLPADT:
nSprm = NS_ooxml::LN_CT_TcMar_top;
break;
default:
break;
}
lcl_putNestedSprm(m_aStates.top().aTableCellSprms, NS_ooxml::LN_CT_TcPrBase_tcMar, nSprm, RTFValue::Pointer_t(new RTFValue(aAttributes)));
}
break;
case RTF_FI:
lcl_putNestedAttribute(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PPrBase_ind, NS_ooxml::LN_CT_Ind_firstLine, pIntValue);
break;
case RTF_LI:
{
lcl_putNestedAttribute(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PPrBase_ind, NS_ooxml::LN_CT_Ind_left, pIntValue);
// It turns out \li should reset the \fi inherited from the stylesheet.
// So set the direct formatting to zero, if we don't have such direct formatting yet.
lcl_putNestedAttribute(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PPrBase_ind, NS_ooxml::LN_CT_Ind_firstLine, RTFValue::Pointer_t(new RTFValue(0)),
OVERWRITE_NO_IGNORE, /*bAttribute=*/true);
}
break;
case RTF_RI:
lcl_putNestedAttribute(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PPrBase_ind, NS_ooxml::LN_CT_Ind_right, pIntValue);
break;
case RTF_LIN:
lcl_putNestedAttribute(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PPrBase_ind, NS_ooxml::LN_CT_Ind_start, pIntValue);
break;
case RTF_RIN:
lcl_putNestedAttribute(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PPrBase_ind, NS_ooxml::LN_CT_Ind_end, pIntValue);
break;
case RTF_OUTLINELEVEL:
m_aStates.top().aParagraphSprms.set(NS_ooxml::LN_CT_PPrBase_outlineLvl, pIntValue);
break;
default:
{
SAL_INFO("writerfilter", "TODO handle value '" << lcl_RtfToString(nKeyword) << "'");
aSkip.setParsed(false);
}
break;
}
return 0;
}
int RTFDocumentImpl::dispatchToggle(RTFKeyword nKeyword, bool bParam, int nParam)
{
setNeedSect();
checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
RTFSkipDestination aSkip(*this);
int nSprm = -1;
RTFValue::Pointer_t pBoolValue(new RTFValue(int(!bParam || nParam != 0)));
// Map all underline toggles to a single sprm.
switch (nKeyword)
{
case RTF_UL:
nSprm = 1;
break;
case RTF_ULDASH:
nSprm = 7;
break;
case RTF_ULDASHD:
nSprm = 9;
break;
case RTF_ULDASHDD:
nSprm = 10;
break;
case RTF_ULDB:
nSprm = 3;
break;
case RTF_ULHWAVE:
nSprm = 27;
break;
case RTF_ULLDASH:
nSprm = 39;
break;
case RTF_ULTH:
nSprm = 6;
break;
case RTF_ULTHD:
nSprm = 20;
break;
case RTF_ULTHDASH:
nSprm = 23;
break;
case RTF_ULTHDASHD:
nSprm = 25;
break;
case RTF_ULTHDASHDD:
nSprm = 26;
break;
case RTF_ULTHLDASH:
nSprm = 55;
break;
case RTF_ULULDBWAVE:
nSprm = 43;
break;
case RTF_ULWAVE:
nSprm = 11;
break;
default:
break;
}
if (nSprm >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue((!bParam || nParam != 0) ? nSprm : 0));
m_aStates.top().aCharacterAttributes.set(NS_ooxml::LN_CT_Underline_val, pValue);
return 0;
}
// Accent characters (over dot / over coma).
switch (nKeyword)
{
case RTF_ACCNONE:
nSprm = 0;
break;
case RTF_ACCDOT:
nSprm = 1;
break;
case RTF_ACCCOMMA:
nSprm = 2;
break;
case RTF_ACCCIRCLE:
nSprm = 3;
break;
case RTF_ACCUNDERDOT:
nSprm = 4;
break;
default:
break;
}
if (nSprm >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue((!bParam || nParam != 0) ? nSprm : 0));
m_aStates.top().aCharacterSprms.set(NS_ooxml::LN_EG_RPrBase_em, pValue);
return 0;
}
// Trivial character sprms.
switch (nKeyword)
{
case RTF_B:
case RTF_AB:
nSprm = (m_aStates.top().isRightToLeft
|| m_aStates.top().eRunType == RTFParserState::HICH)
? NS_ooxml::LN_EG_RPrBase_bCs
: NS_ooxml::LN_EG_RPrBase_b;
break;
case RTF_I:
case RTF_AI:
nSprm = (m_aStates.top().isRightToLeft
|| m_aStates.top().eRunType == RTFParserState::HICH)
? NS_ooxml::LN_EG_RPrBase_iCs
: NS_ooxml::LN_EG_RPrBase_i;
break;
case RTF_OUTL:
nSprm = NS_ooxml::LN_EG_RPrBase_outline;
break;
case RTF_SHAD:
nSprm = NS_ooxml::LN_EG_RPrBase_shadow;
break;
case RTF_V:
nSprm = NS_ooxml::LN_EG_RPrBase_vanish;
break;
case RTF_STRIKE:
nSprm = NS_ooxml::LN_EG_RPrBase_strike;
break;
case RTF_STRIKED:
nSprm = NS_ooxml::LN_EG_RPrBase_dstrike;
break;
case RTF_SCAPS:
nSprm = NS_ooxml::LN_EG_RPrBase_smallCaps;
break;
case RTF_IMPR:
nSprm = NS_ooxml::LN_EG_RPrBase_imprint;
break;
case RTF_CAPS:
nSprm = NS_ooxml::LN_EG_RPrBase_caps;
break;
default:
break;
}
if (nSprm >= 0)
{
m_aStates.top().aCharacterSprms.set(nSprm, pBoolValue);
return 0;
}
switch (nKeyword)
{
case RTF_ASPALPHA:
m_aStates.top().aParagraphSprms.set(NS_ooxml::LN_CT_PPrBase_autoSpaceDE, pBoolValue);
break;
case RTF_DELETED:
case RTF_REVISED:
{
RTFValue::Pointer_t pValue(new RTFValue(nKeyword == RTF_DELETED ? OOXML_del : OOXML_ins));
lcl_putNestedAttribute(m_aStates.top().aCharacterSprms,
NS_ooxml::LN_trackchange, NS_ooxml::LN_token, pValue);
}
break;
default:
{
SAL_INFO("writerfilter", "TODO handle toggle '" << lcl_RtfToString(nKeyword) << "'");
aSkip.setParsed(false);
}
break;
}
return 0;
}
int RTFDocumentImpl::pushState()
{
//SAL_INFO("writerfilter", OSL_THIS_FUNC << " before push: " << m_pTokenizer->getGroup());
checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
m_nGroupStartPos = Strm().Tell();
if (m_aStates.empty())
m_aStates.push(m_aDefaultState);
else
{
if (m_aStates.top().nDestinationState == DESTINATION_MR)
lcl_DestinationToMath(*m_aStates.top().pDestinationText, m_aMathBuffer, m_bMathNor);
m_aStates.push(m_aStates.top());
}
m_aStates.top().aDestinationText.setLength(0); // was copied: always reset!
m_pTokenizer->pushGroup();
switch (m_aStates.top().nDestinationState)
{
case DESTINATION_FONTTABLE:
// this is a "faked" destination for the font entry
m_aStates.top().pDestinationText = &m_aStates.top().aDestinationText;
m_aStates.top().nDestinationState = DESTINATION_FONTENTRY;
break;
case DESTINATION_STYLESHEET:
// this is a "faked" destination for the style sheet entry
m_aStates.top().pDestinationText = &m_aStates.top().aDestinationText;
m_aStates.top().nDestinationState = DESTINATION_STYLEENTRY;
{
// the *default* is \s0 i.e. paragraph style default
// this will be overwritten by \sN \csN \dsN \tsN
m_nCurrentStyleIndex = 0;
RTFValue::Pointer_t pValue(new RTFValue(1));
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_Style_type, pValue);
}
break;
case DESTINATION_FIELDRESULT:
case DESTINATION_SHAPETEXT:
case DESTINATION_FORMFIELD:
case DESTINATION_FIELDINSTRUCTION:
case DESTINATION_PICT:
m_aStates.top().nDestinationState = DESTINATION_NORMAL;
break;
case DESTINATION_MNUM:
case DESTINATION_MDEN:
case DESTINATION_ME:
case DESTINATION_MFNAME:
case DESTINATION_MLIM:
case DESTINATION_MSUB:
case DESTINATION_MSUP:
case DESTINATION_MDEG:
case DESTINATION_MOMATH:
m_aStates.top().nDestinationState = DESTINATION_MR;
break;
case DESTINATION_REVISIONTABLE:
// this is a "faked" destination for the revision table entry
m_aStates.top().pDestinationText = &m_aStates.top().aDestinationText;
m_aStates.top().nDestinationState = DESTINATION_REVISIONENTRY;
break;
default:
break;
}
return 0;
}
writerfilter::Reference<Properties>::Pointer_t
RTFDocumentImpl::createStyleProperties()
{
RTFValue::Pointer_t const pParaProps(
new RTFValue(m_aStates.top().aParagraphAttributes, m_aStates.top().aParagraphSprms));
RTFValue::Pointer_t const pCharProps(
new RTFValue(m_aStates.top().aCharacterAttributes, m_aStates.top().aCharacterSprms));
// resetSprms will clean up this modification
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Style_pPr, pParaProps);
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Style_rPr, pCharProps);
writerfilter::Reference<Properties>::Pointer_t const pProps(
new RTFReferenceProperties(m_aStates.top().aTableAttributes, m_aStates.top().aTableSprms));
return pProps;
}
void RTFDocumentImpl::resetSprms()
{
m_aStates.top().aTableSprms.clear();
m_aStates.top().aCharacterSprms.clear();
m_aStates.top().aParagraphSprms.clear();
}
void RTFDocumentImpl::resetAttributes()
{
m_aStates.top().aTableAttributes.clear();
m_aStates.top().aCharacterAttributes.clear();
m_aStates.top().aParagraphAttributes.clear();
}
int RTFDocumentImpl::popState()
{
//SAL_INFO("writerfilter", OSL_THIS_FUNC << " before pop: m_pTokenizer->getGroup() " << m_pTokenizer->getGroup() <<
// ", dest state: " << m_aStates.top().nDestinationState);
checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
RTFParserState aState(m_aStates.top());
m_bWasInFrame = aState.aFrame.inFrame();
switch (aState.nDestinationState)
{
case DESTINATION_FONTTABLE:
{
writerfilter::Reference<Table>::Pointer_t const pTable(new RTFReferenceTable(m_aFontTableEntries));
Mapper().table(NS_ooxml::LN_FONTTABLE, pTable);
if (m_nDefaultFontIndex >= 0)
{
RTFValue::Pointer_t pValue(new RTFValue(m_aFontNames[getFontIndex(m_nDefaultFontIndex)]));
lcl_putNestedAttribute(m_aDefaultState.aCharacterSprms, NS_ooxml::LN_EG_RPrBase_rFonts, NS_ooxml::LN_CT_Fonts_ascii, pValue);
}
}
break;
case DESTINATION_STYLESHEET:
{
writerfilter::Reference<Table>::Pointer_t const pTable(new RTFReferenceTable(m_aStyleTableEntries));
Mapper().table(NS_ooxml::LN_STYLESHEET, pTable);
}
break;
case DESTINATION_LISTOVERRIDETABLE:
{
RTFSprms aListTableAttributes;
writerfilter::Reference<Properties>::Pointer_t const pProp(new RTFReferenceProperties(aListTableAttributes, m_aListTableSprms));
RTFReferenceTable::Entries_t aListTableEntries;
aListTableEntries.insert(make_pair(0, pProp));
writerfilter::Reference<Table>::Pointer_t const pTable(new RTFReferenceTable(aListTableEntries));
Mapper().table(NS_ooxml::LN_NUMBERING, pTable);
}
break;
case DESTINATION_LISTENTRY:
for (RTFSprms::Iterator_t i = aState.aListLevelEntries.begin(); i != aState.aListLevelEntries.end(); ++i)
aState.aTableSprms.set(i->first, i->second, OVERWRITE_NO_APPEND);
break;
case DESTINATION_FIELDINSTRUCTION:
{
RTFValue::Pointer_t pValue(new RTFValue(m_aFormfieldAttributes, m_aFormfieldSprms));
RTFSprms aFFAttributes;
RTFSprms aFFSprms;
aFFSprms.set(NS_ooxml::LN_ffdata, pValue);
writerfilter::Reference<Properties>::Pointer_t const pProperties(new RTFReferenceProperties(aFFAttributes, aFFSprms));
Mapper().props(pProperties);
m_aFormfieldAttributes.clear();
m_aFormfieldSprms.clear();
singleChar(0x14);
}
break;
case DESTINATION_FIELDRESULT:
singleChar(0x15);
break;
case DESTINATION_LEVELTEXT:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
OUString aStr = m_aStates.top().pDestinationText->makeStringAndClear();
// The first character is the length of the string (the rest should be ignored).
sal_Int32 nLength(aStr.toChar());
OUString aValue;
if (nLength < aStr.getLength())
aValue = aStr.copy(1, nLength);
else
aValue = aStr;
RTFValue::Pointer_t pValue(new RTFValue(aValue, true));
aState.aTableAttributes.set(NS_ooxml::LN_CT_LevelText_val, pValue);
}
break;
case DESTINATION_LEVELNUMBERS:
if (aState.aTableSprms.find(NS_ooxml::LN_CT_Lvl_lvlText))
{
RTFSprms& rAttributes = aState.aTableSprms.find(NS_ooxml::LN_CT_Lvl_lvlText)->getAttributes();
RTFValue::Pointer_t pValue = rAttributes.find(NS_ooxml::LN_CT_LevelText_val);
OUString aOrig = pValue->getString();
OUStringBuffer aBuf;
sal_Int32 nReplaces = 1;
for (int i = 0; i < aOrig.getLength(); i++)
{
if (std::find(aState.aLevelNumbers.begin(), aState.aLevelNumbers.end(), i+1)
!= aState.aLevelNumbers.end())
{
aBuf.append('%');
// '1.1.1' -> '%1.%2.%3', but '1.' (with '2.' prefix omitted) is %2.
aBuf.append(sal_Int32(nReplaces++ + aState.nListLevelNum + 1 - aState.aLevelNumbers.size()));
}
else
aBuf.append(aOrig.copy(i, 1));
}
pValue->setString(aBuf.makeStringAndClear());
}
break;
case DESTINATION_SHAPEPROPERTYNAME:
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
aState.aShape.aProperties.push_back(make_pair(
m_aStates.top().pDestinationText->makeStringAndClear(), OUString()));
break;
case DESTINATION_SHAPEPROPERTYVALUE:
if (aState.aShape.aProperties.size())
{
aState.aShape.aProperties.back().second = m_aStates.top().pDestinationText->makeStringAndClear();
if (m_aStates.top().bHadShapeText)
m_pSdrImport->append(aState.aShape.aProperties.back().first, aState.aShape.aProperties.back().second);
else if (aState.bInShapeGroup && !aState.bInShape && aState.aShape.aProperties.back().first == "rotation")
{
// Rotation should be applied on the groupshape itself, not on each shape.
aState.aShape.aGroupProperties.push_back(aState.aShape.aProperties.back());
aState.aShape.aProperties.pop_back();
}
}
break;
case DESTINATION_PICPROP:
case DESTINATION_SHAPEINSTRUCTION:
// Don't trigger a shape import in case we're only leaving the \shpinst of the groupshape itself.
if (!m_bObject && !aState.bInListpicture && !aState.bHadShapeText && !(aState.bInShapeGroup && !aState.bInShape))
{
m_pSdrImport->resolve(m_aStates.top().aShape, true,
(aState.nDestinationState == DESTINATION_SHAPEINSTRUCTION)
? RTFSdrImport::SHAPE : RTFSdrImport::PICT);
}
else if (aState.bInShapeGroup && !aState.bInShape)
{
// End of a groupshape, as we're in shapegroup, but not in a real shape.
for (std::vector< std::pair<OUString, OUString> >::iterator i = aState.aShape.aGroupProperties.begin(); i != aState.aShape.aGroupProperties.end(); ++i)
m_pSdrImport->appendGroupProperty(i->first, i->second);
aState.aShape.aGroupProperties.clear();
}
break;
case DESTINATION_BOOKMARKSTART:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
OUString aStr = m_aStates.top().pDestinationText->makeStringAndClear();
int nPos = m_aBookmarks.size();
m_aBookmarks[aStr] = nPos;
Mapper().props(lcl_getBookmarkProperties(nPos, aStr));
}
break;
case DESTINATION_BOOKMARKEND:
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
Mapper().props(lcl_getBookmarkProperties(m_aBookmarks[m_aStates.top().pDestinationText->makeStringAndClear()]));
break;
case DESTINATION_FORMFIELDNAME:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
RTFValue::Pointer_t pValue(new RTFValue(m_aStates.top().pDestinationText->makeStringAndClear()));
m_aFormfieldSprms.set(NS_ooxml::LN_CT_FFData_name, pValue);
}
break;
case DESTINATION_FORMFIELDLIST:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
RTFValue::Pointer_t pValue(new RTFValue(m_aStates.top().pDestinationText->makeStringAndClear()));
m_aFormfieldSprms.set(NS_ooxml::LN_CT_FFDDList_listEntry, pValue);
}
break;
case DESTINATION_DATAFIELD:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
OString aStr = OUStringToOString(m_aStates.top().pDestinationText->makeStringAndClear(), aState.nCurrentEncoding);
// decode hex dump
OStringBuffer aBuf;
const char* str = aStr.getStr();
int b = 0, count = 2;
for (int i = 0; i < aStr.getLength(); ++i)
{
char ch = str[i];
if (ch != 0x0d && ch != 0x0a)
{
b = b << 4;
sal_Int8 parsed = m_pTokenizer->asHex(ch);
if (parsed == -1)
return ERROR_HEX_INVALID;
b += parsed;
count--;
if (!count)
{
aBuf.append((char)b);
count = 2;
b = 0;
}
}
}
aStr = aBuf.makeStringAndClear();
// ignore the first bytes
if (aStr.getLength() > 8)
aStr = aStr.copy(8);
// extract name
sal_Int32 nLength = aStr.toChar();
if (!aStr.isEmpty())
aStr = aStr.copy(1);
nLength = std::min(nLength, aStr.getLength());
OString aName = aStr.copy(0, nLength);
if (aStr.getLength() > nLength)
aStr = aStr.copy(nLength+1); // zero-terminated string
else
aStr = OString();
// extract default text
nLength = aStr.toChar();
if (!aStr.isEmpty())
aStr = aStr.copy(1);
RTFValue::Pointer_t pNValue(new RTFValue(OStringToOUString(aName, aState.nCurrentEncoding)));
m_aFormfieldSprms.set(NS_ooxml::LN_CT_FFData_name, pNValue);
if (nLength > 0)
{
OString aDefaultText = aStr.copy(0, std::min(nLength, aStr.getLength()));
RTFValue::Pointer_t pDValue(new RTFValue(OStringToOUString(aDefaultText, aState.nCurrentEncoding)));
m_aFormfieldSprms.set(NS_ooxml::LN_CT_FFTextInput_default, pDValue);
}
m_bFormField = false;
}
break;
case DESTINATION_CREATIONTIME:
if (m_xDocumentProperties.is())
m_xDocumentProperties->setCreationDate(lcl_getDateTime(aState));
break;
case DESTINATION_REVISIONTIME:
if (m_xDocumentProperties.is())
m_xDocumentProperties->setModificationDate(lcl_getDateTime(aState));
break;
case DESTINATION_PRINTTIME:
if (m_xDocumentProperties.is())
m_xDocumentProperties->setPrintDate(lcl_getDateTime(aState));
break;
case DESTINATION_AUTHOR:
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
if (m_xDocumentProperties.is())
m_xDocumentProperties->setAuthor(m_aStates.top().pDestinationText->makeStringAndClear());
break;
case DESTINATION_KEYWORDS:
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
if (m_xDocumentProperties.is())
m_xDocumentProperties->setKeywords(comphelper::string::convertCommaSeparated(m_aStates.top().pDestinationText->makeStringAndClear()));
break;
case DESTINATION_COMMENT:
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
if (m_xDocumentProperties.is())
m_xDocumentProperties->setGenerator(m_aStates.top().pDestinationText->makeStringAndClear());
break;
case DESTINATION_SUBJECT:
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
if (m_xDocumentProperties.is())
m_xDocumentProperties->setSubject(m_aStates.top().pDestinationText->makeStringAndClear());
break;
case DESTINATION_TITLE:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
if (m_xDocumentProperties.is())
m_xDocumentProperties->setTitle(aState.pDestinationText->makeStringAndClear());
}
break;
case DESTINATION_DOCCOMM:
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
if (m_xDocumentProperties.is())
m_xDocumentProperties->setDescription(m_aStates.top().pDestinationText->makeStringAndClear());
break;
case DESTINATION_OPERATOR:
case DESTINATION_COMPANY:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
OUString aName = aState.nDestinationState == DESTINATION_OPERATOR ? OUString("Operator") : OUString("Company");
uno::Any aValue = uno::makeAny(m_aStates.top().pDestinationText->makeStringAndClear());
if (m_xDocumentProperties.is())
{
uno::Reference<beans::XPropertyContainer> xUserDefinedProperties = m_xDocumentProperties->getUserDefinedProperties();
uno::Reference<beans::XPropertySet> xPropertySet(xUserDefinedProperties, uno::UNO_QUERY);
uno::Reference<beans::XPropertySetInfo> xPropertySetInfo = xPropertySet->getPropertySetInfo();
if (xPropertySetInfo->hasPropertyByName(aName))
xPropertySet->setPropertyValue(aName, aValue);
else
xUserDefinedProperties->addProperty(aName, beans::PropertyAttribute::REMOVABLE, aValue);
}
}
break;
case DESTINATION_OBJDATA:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
m_pObjectData.reset(new SvMemoryStream());
int b = 0, count = 2;
// Feed the destination text to a stream.
OString aStr = OUStringToOString(m_aStates.top().pDestinationText->makeStringAndClear(), RTL_TEXTENCODING_ASCII_US);
const char* str = aStr.getStr();
for (int i = 0; i < aStr.getLength(); ++i)
{
char ch = str[i];
if (ch != 0x0d && ch != 0x0a)
{
b = b << 4;
sal_Int8 parsed = m_pTokenizer->asHex(ch);
if (parsed == -1)
return ERROR_HEX_INVALID;
b += parsed;
count--;
if (!count)
{
m_pObjectData->WriteChar((char)b);
count = 2;
b = 0;
}
}
}
if (m_pObjectData->Tell())
{
m_pObjectData->Seek(0);
// Skip ObjectHeader
sal_uInt32 nData;
m_pObjectData->ReadUInt32(nData); // OLEVersion
m_pObjectData->ReadUInt32(nData); // FormatID
m_pObjectData->ReadUInt32(nData); // ClassName
m_pObjectData->SeekRel(nData);
m_pObjectData->ReadUInt32(nData); // TopicName
m_pObjectData->SeekRel(nData);
m_pObjectData->ReadUInt32(nData); // ItemName
m_pObjectData->SeekRel(nData);
m_pObjectData->ReadUInt32(nData); // NativeDataSize
}
uno::Reference<io::XInputStream> xInputStream(new utl::OInputStreamWrapper(m_pObjectData.get()));
RTFValue::Pointer_t pStreamValue(new RTFValue(xInputStream));
RTFSprms aOLEAttributes;
aOLEAttributes.set(NS_ooxml::LN_inputstream, pStreamValue);
RTFValue::Pointer_t pValue(new RTFValue(aOLEAttributes));
m_aObjectSprms.set(NS_ooxml::LN_OLEObject_OLEObject, pValue);
}
break;
case DESTINATION_OBJECT:
{
if (!m_bObject)
{
// if the object is in a special container we will use the \result
// element instead of the \objdata
// (see RTF_OBJECT in RTFDocumentImpl::dispatchDestination)
break;
}
RTFSprms aObjAttributes;
RTFSprms aObjSprms;
RTFValue::Pointer_t pValue(new RTFValue(m_aObjectAttributes, m_aObjectSprms));
aObjSprms.set(NS_ooxml::LN_object, pValue);
writerfilter::Reference<Properties>::Pointer_t const pProperties(new RTFReferenceProperties(aObjAttributes, aObjSprms));
uno::Reference<drawing::XShape> xShape;
RTFValue::Pointer_t pShape = m_aObjectAttributes.find(NS_ooxml::LN_shape);
OSL_ASSERT(pShape.get());
if (pShape.get())
pShape->getAny() >>= xShape;
Mapper().startShape(xShape);
Mapper().props(pProperties);
Mapper().endShape();
m_aObjectAttributes.clear();
m_aObjectSprms.clear();
m_bObject = false;
}
break;
case DESTINATION_ANNOTATIONDATE:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
OUString aStr(OStringToOUString(lcl_DTTM22OString(m_aStates.top().pDestinationText->makeStringAndClear().toInt32()),
aState.nCurrentEncoding));
RTFValue::Pointer_t pValue(new RTFValue(aStr));
RTFSprms aAnnAttributes;
aAnnAttributes.set(NS_ooxml::LN_CT_TrackChange_date, pValue);
writerfilter::Reference<Properties>::Pointer_t const pProperties(new RTFReferenceProperties(aAnnAttributes));
Mapper().props(pProperties);
}
break;
case DESTINATION_ANNOTATIONAUTHOR:
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
m_aAuthor = m_aStates.top().pDestinationText->makeStringAndClear();
break;
case DESTINATION_ATNID:
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
m_aAuthorInitials = m_aStates.top().pDestinationText->makeStringAndClear();
break;
case DESTINATION_ANNOTATIONREFERENCESTART:
case DESTINATION_ANNOTATIONREFERENCEEND:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
OUString aStr = m_aStates.top().pDestinationText->makeStringAndClear();
RTFValue::Pointer_t pValue(new RTFValue(aStr.toInt32()));
RTFSprms aAttributes;
if (aState.nDestinationState == DESTINATION_ANNOTATIONREFERENCESTART)
aAttributes.set(NS_ooxml::LN_EG_RangeMarkupElements_commentRangeStart, pValue);
else
aAttributes.set(NS_ooxml::LN_EG_RangeMarkupElements_commentRangeEnd, pValue);
writerfilter::Reference<Properties>::Pointer_t pProperties(new RTFReferenceProperties(aAttributes));
Mapper().props(pProperties);
}
break;
case DESTINATION_ANNOTATIONREFERENCE:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
OUString aStr = m_aStates.top().pDestinationText->makeStringAndClear();
RTFSprms aAnnAttributes;
aAnnAttributes.set(NS_ooxml::LN_CT_Markup_id, RTFValue::Pointer_t(new RTFValue(aStr.toInt32())));
Mapper().props(writerfilter::Reference<Properties>::Pointer_t(new RTFReferenceProperties(aAnnAttributes)));
}
break;
case DESTINATION_FALT:
{
if (&m_aStates.top().aDestinationText != m_aStates.top().pDestinationText)
break; // not for nested group
OUString aStr(m_aStates.top().pDestinationText->makeStringAndClear());
RTFValue::Pointer_t pValue(new RTFValue(aStr));
aState.aTableSprms.set(NS_ooxml::LN_CT_Font_altName, pValue);
}
break;
case DESTINATION_DRAWINGOBJECT:
if (m_aStates.top().aDrawingObject.xShape.is())
{
RTFDrawingObject& rDrawing = m_aStates.top().aDrawingObject;
uno::Reference<drawing::XShape> xShape(rDrawing.xShape);
uno::Reference<beans::XPropertySet> xPropertySet(rDrawing.xPropertySet);
uno::Reference<lang::XServiceInfo> xServiceInfo(xShape, uno::UNO_QUERY);
bool bTextFrame = xServiceInfo->supportsService("com.sun.star.text.TextFrame");
// The default is certainly not inline, but then what Word supports is just at-character.
xPropertySet->setPropertyValue("AnchorType", uno::makeAny(text::TextContentAnchorType_AT_CHARACTER));
if (bTextFrame)
{
xPropertySet->setPropertyValue("HoriOrientPosition", uno::makeAny((sal_Int32)rDrawing.nLeft));
xPropertySet->setPropertyValue("VertOrientPosition", uno::makeAny((sal_Int32)rDrawing.nTop));
}
else
{
xShape->setPosition(awt::Point(rDrawing.nLeft, rDrawing.nTop));
}
xShape->setSize(awt::Size(rDrawing.nRight, rDrawing.nBottom));
if (rDrawing.bHasLineColor)
xPropertySet->setPropertyValue("LineColor", uno::makeAny(sal_uInt32((rDrawing.nLineColorR<<16) + (rDrawing.nLineColorG<<8) + rDrawing.nLineColorB)));
if (rDrawing.bHasFillColor)
xPropertySet->setPropertyValue("FillColor", uno::makeAny(sal_uInt32((rDrawing.nFillColorR<<16) + (rDrawing.nFillColorG<<8) + rDrawing.nFillColorB)));
else if (!bTextFrame)
// If there is no fill, the Word default is 100% transparency.
xPropertySet->setPropertyValue("FillTransparence", uno::makeAny(sal_Int32(100)));
m_pSdrImport->resolveFLine(xPropertySet, rDrawing.nFLine);
if (!m_aStates.top().aDrawingObject.bHadShapeText)
{
Mapper().startShape(xShape);
}
Mapper().endShape();
}
break;
case DESTINATION_PICT:
// fdo#79319 ignore picture data if it's really a shape
if (!m_pSdrImport->isFakePict())
{
resolvePict(true, m_pSdrImport->getCurrentShape());
}
m_bNeedFinalPar = true;
break;
case DESTINATION_SHAPE:
m_bNeedFinalPar = true;
m_bNeedCr = m_bNeedCrOrig;
if (aState.aFrame.inFrame())
{
// parBreak modify m_aStates.top() so we can't apply resetFrame directly on aState
m_aStates.top().resetFrame();
parBreak();
// Save this state for later use, so we only reset frame status only for the first shape inside a frame.
aState = m_aStates.top();
m_bNeedPap = true;
}
break;
case DESTINATION_MOMATH:
{
m_aMathBuffer.appendClosingTag(M_TOKEN(oMath));
SvGlobalName aGlobalName(SO3_SM_CLASSID);
comphelper::EmbeddedObjectContainer aContainer;
OUString aName;
uno::Reference<embed::XEmbeddedObject> xObject = aContainer.CreateEmbeddedObject(aGlobalName.GetByteSequence(), aName);
uno::Reference<util::XCloseable> xComponent(xObject->getComponent(), uno::UNO_QUERY);
// gcc4.4 (and 4.3 and possibly older) have a problem with dynamic_cast directly to the target class,
// so help it with an intermediate cast. I'm not sure what exactly the problem is, seems to be unrelated
// to RTLD_GLOBAL, so most probably a gcc bug.
oox::FormulaImportBase* pImport = dynamic_cast<oox::FormulaImportBase*>(dynamic_cast<SfxBaseModel*>(xComponent.get()));
assert(pImport != NULL);
if (pImport)
pImport->readFormulaOoxml(m_aMathBuffer);
RTFValue::Pointer_t pValue(new RTFValue(xObject));
RTFSprms aMathAttributes;
aMathAttributes.set(NS_ooxml::LN_starmath, pValue);
writerfilter::Reference<Properties>::Pointer_t const pProperties(new RTFReferenceProperties(aMathAttributes));
Mapper().props(pProperties);
m_aMathBuffer = oox::formulaimport::XmlStreamBuilder();
}
break;
case DESTINATION_MR:
lcl_DestinationToMath(*m_aStates.top().pDestinationText, m_aMathBuffer, m_bMathNor);
break;
case DESTINATION_MF:
m_aMathBuffer.appendClosingTag(M_TOKEN(f));
break;
case DESTINATION_MFPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(fPr));
break;
case DESTINATION_MCTRLPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(ctrlPr));
break;
case DESTINATION_MNUM:
m_aMathBuffer.appendClosingTag(M_TOKEN(num));
break;
case DESTINATION_MDEN:
m_aMathBuffer.appendClosingTag(M_TOKEN(den));
break;
case DESTINATION_MACC:
m_aMathBuffer.appendClosingTag(M_TOKEN(acc));
break;
case DESTINATION_MACCPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(accPr));
break;
case DESTINATION_MCHR:
case DESTINATION_MPOS:
case DESTINATION_MVERTJC:
case DESTINATION_MSTRIKEH:
case DESTINATION_MDEGHIDE:
case DESTINATION_MBEGCHR:
case DESTINATION_MSEPCHR:
case DESTINATION_MENDCHR:
case DESTINATION_MSUBHIDE:
case DESTINATION_MSUPHIDE:
case DESTINATION_MTYPE:
case DESTINATION_MGROW:
{
sal_Int32 nMathToken = 0;
switch (aState.nDestinationState)
{
case DESTINATION_MCHR:
nMathToken = M_TOKEN(chr);
break;
case DESTINATION_MPOS:
nMathToken = M_TOKEN(pos);
break;
case DESTINATION_MVERTJC:
nMathToken = M_TOKEN(vertJc);
break;
case DESTINATION_MSTRIKEH:
nMathToken = M_TOKEN(strikeH);
break;
case DESTINATION_MDEGHIDE:
nMathToken = M_TOKEN(degHide);
break;
case DESTINATION_MBEGCHR:
nMathToken = M_TOKEN(begChr);
break;
case DESTINATION_MSEPCHR:
nMathToken = M_TOKEN(sepChr);
break;
case DESTINATION_MENDCHR:
nMathToken = M_TOKEN(endChr);
break;
case DESTINATION_MSUBHIDE:
nMathToken = M_TOKEN(subHide);
break;
case DESTINATION_MSUPHIDE:
nMathToken = M_TOKEN(supHide);
break;
case DESTINATION_MTYPE:
nMathToken = M_TOKEN(type);
break;
case DESTINATION_MGROW:
nMathToken = M_TOKEN(grow);
break;
default:
break;
}
oox::formulaimport::XmlStream::AttributeList aAttribs;
aAttribs[M_TOKEN(val)] = m_aStates.top().pDestinationText->makeStringAndClear();
m_aMathBuffer.appendOpeningTag(nMathToken, aAttribs);
m_aMathBuffer.appendClosingTag(nMathToken);
}
break;
case DESTINATION_ME:
m_aMathBuffer.appendClosingTag(M_TOKEN(e));
break;
case DESTINATION_MBAR:
m_aMathBuffer.appendClosingTag(M_TOKEN(bar));
break;
case DESTINATION_MBARPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(barPr));
break;
case DESTINATION_MD:
m_aMathBuffer.appendClosingTag(M_TOKEN(d));
break;
case DESTINATION_MDPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(dPr));
break;
case DESTINATION_MFUNC:
m_aMathBuffer.appendClosingTag(M_TOKEN(func));
break;
case DESTINATION_MFUNCPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(funcPr));
break;
case DESTINATION_MFNAME:
m_aMathBuffer.appendClosingTag(M_TOKEN(fName));
break;
case DESTINATION_MLIMLOW:
m_aMathBuffer.appendClosingTag(M_TOKEN(limLow));
break;
case DESTINATION_MLIMLOWPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(limLowPr));
break;
case DESTINATION_MLIM:
m_aMathBuffer.appendClosingTag(M_TOKEN(lim));
break;
case DESTINATION_MM:
m_aMathBuffer.appendClosingTag(M_TOKEN(m));
break;
case DESTINATION_MMPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(mPr));
break;
case DESTINATION_MMR:
m_aMathBuffer.appendClosingTag(M_TOKEN(mr));
break;
case DESTINATION_MNARY:
m_aMathBuffer.appendClosingTag(M_TOKEN(nary));
break;
case DESTINATION_MNARYPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(naryPr));
break;
case DESTINATION_MSUB:
m_aMathBuffer.appendClosingTag(M_TOKEN(sub));
break;
case DESTINATION_MSUP:
m_aMathBuffer.appendClosingTag(M_TOKEN(sup));
break;
case DESTINATION_MLIMUPP:
m_aMathBuffer.appendClosingTag(M_TOKEN(limUpp));
break;
case DESTINATION_MLIMUPPPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(limUppPr));
break;
case DESTINATION_MGROUPCHR:
m_aMathBuffer.appendClosingTag(M_TOKEN(groupChr));
break;
case DESTINATION_MGROUPCHRPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(groupChrPr));
break;
case DESTINATION_MBORDERBOX:
m_aMathBuffer.appendClosingTag(M_TOKEN(borderBox));
break;
case DESTINATION_MBORDERBOXPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(borderBoxPr));
break;
case DESTINATION_MRAD:
m_aMathBuffer.appendClosingTag(M_TOKEN(rad));
break;
case DESTINATION_MRADPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(radPr));
break;
case DESTINATION_MDEG:
m_aMathBuffer.appendClosingTag(M_TOKEN(deg));
break;
case DESTINATION_MSSUB:
m_aMathBuffer.appendClosingTag(M_TOKEN(sSub));
break;
case DESTINATION_MSSUBPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(sSubPr));
break;
case DESTINATION_MSSUP:
m_aMathBuffer.appendClosingTag(M_TOKEN(sSup));
break;
case DESTINATION_MSSUPPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(sSupPr));
break;
case DESTINATION_MSSUBSUP:
m_aMathBuffer.appendClosingTag(M_TOKEN(sSubSup));
break;
case DESTINATION_MSSUBSUPPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(sSubSupPr));
break;
case DESTINATION_MSPRE:
m_aMathBuffer.appendClosingTag(M_TOKEN(sPre));
break;
case DESTINATION_MSPREPR:
m_aMathBuffer.appendClosingTag(M_TOKEN(sPrePr));
break;
case DESTINATION_MBOX:
m_aMathBuffer.appendClosingTag(M_TOKEN(box));
break;
case DESTINATION_MEQARR:
m_aMathBuffer.appendClosingTag(M_TOKEN(eqArr));
break;
case DESTINATION_SHAPEGROUP:
if (aState.bCreatedShapeGroup)
m_pSdrImport->popParent();
break;
default:
break;
}
// See if we need to end a track change
if (aState.bStartedTrackchange)
{
RTFSprms aTCSprms;
RTFValue::Pointer_t pValue(new RTFValue(0));
aTCSprms.set(NS_ooxml::LN_endtrackchange, pValue);
writerfilter::Reference<Properties>::Pointer_t const pProperties(new RTFReferenceProperties(RTFSprms(), aTCSprms));
Mapper().props(pProperties);
}
// This is the end of the doc, see if we need to close the last section.
if (m_pTokenizer->getGroup() == 1 && !m_bFirstRun)
{
// \par means an empty paragraph at the end of footnotes/endnotes, but
// not in case of other substreams, like headers.
if (m_bNeedCr && !(m_nStreamType == NS_ooxml::LN_footnote || m_nStreamType == NS_ooxml::LN_endnote))
dispatchSymbol(RTF_PAR);
if (m_bNeedSect) // may be set by dispatchSymbol above!
sectBreak(true);
}
m_aStates.pop();
m_pTokenizer->popGroup();
// list table
switch (aState.nDestinationState)
{
case DESTINATION_LISTENTRY:
{
RTFValue::Pointer_t pValue(new RTFValue(aState.aTableAttributes, aState.aTableSprms));
m_aListTableSprms.set(NS_ooxml::LN_CT_Numbering_abstractNum, pValue, OVERWRITE_NO_APPEND);
}
break;
case DESTINATION_PARAGRAPHNUMBERING:
{
RTFValue::Pointer_t pIdValue = aState.aTableAttributes.find(NS_ooxml::LN_CT_AbstractNum_nsid);
if (pIdValue.get())
{
// Abstract numbering
RTFSprms aLeveltextAttributes;
OUString aTextValue;
RTFValue::Pointer_t pTextBefore = aState.aTableAttributes.find(NS_ooxml::LN_CT_LevelText_val);
if (pTextBefore.get())
aTextValue += pTextBefore->getString();
aTextValue += "%1";
RTFValue::Pointer_t pTextAfter = aState.aTableAttributes.find(NS_ooxml::LN_CT_LevelSuffix_val);
if (pTextAfter.get())
aTextValue += pTextAfter->getString();
RTFValue::Pointer_t pTextValue(new RTFValue(aTextValue));
aLeveltextAttributes.set(NS_ooxml::LN_CT_LevelText_val, pTextValue);
RTFSprms aLevelAttributes;
RTFSprms aLevelSprms;
RTFValue::Pointer_t pIlvlValue(new RTFValue(0));
aLevelAttributes.set(NS_ooxml::LN_CT_Lvl_ilvl, pIlvlValue);
RTFValue::Pointer_t pFmtValue = aState.aTableSprms.find(NS_ooxml::LN_CT_Lvl_numFmt);
if (pFmtValue.get())
aLevelSprms.set(NS_ooxml::LN_CT_Lvl_numFmt, pFmtValue);
RTFValue::Pointer_t pStartatValue = aState.aTableSprms.find(NS_ooxml::LN_CT_Lvl_start);
if (pStartatValue.get())
aLevelSprms.set(NS_ooxml::LN_CT_Lvl_start, pStartatValue);
RTFValue::Pointer_t pLeveltextValue(new RTFValue(aLeveltextAttributes));
aLevelSprms.set(NS_ooxml::LN_CT_Lvl_lvlText, pLeveltextValue);
RTFValue::Pointer_t pRunProps = aState.aTableSprms.find(NS_ooxml::LN_CT_Lvl_rPr);
if (pRunProps.get())
aLevelSprms.set(NS_ooxml::LN_CT_Lvl_rPr, pRunProps);
RTFSprms aAbstractAttributes;
RTFSprms aAbstractSprms;
aAbstractAttributes.set(NS_ooxml::LN_CT_AbstractNum_abstractNumId, pIdValue);
RTFValue::Pointer_t pLevelValue(new RTFValue(aLevelAttributes, aLevelSprms));
aAbstractSprms.set(NS_ooxml::LN_CT_AbstractNum_lvl, pLevelValue, OVERWRITE_NO_APPEND);
RTFSprms aListTableSprms;
RTFValue::Pointer_t pAbstractValue(new RTFValue(aAbstractAttributes, aAbstractSprms));
// It's important that Numbering_abstractNum and Numbering_num never overwrites previous values.
aListTableSprms.set(NS_ooxml::LN_CT_Numbering_abstractNum, pAbstractValue, OVERWRITE_NO_APPEND);
// Numbering
RTFSprms aNumberingAttributes;
RTFSprms aNumberingSprms;
aNumberingAttributes.set(NS_ooxml::LN_CT_AbstractNum_nsid, pIdValue);
aNumberingSprms.set(NS_ooxml::LN_CT_Num_abstractNumId, pIdValue);
RTFValue::Pointer_t pNumberingValue(new RTFValue(aNumberingAttributes, aNumberingSprms));
aListTableSprms.set(NS_ooxml::LN_CT_Numbering_num, pNumberingValue, OVERWRITE_NO_APPEND);
// Table
RTFSprms aListTableAttributes;
writerfilter::Reference<Properties>::Pointer_t const pProp(new RTFReferenceProperties(aListTableAttributes, aListTableSprms));
RTFReferenceTable::Entries_t aListTableEntries;
aListTableEntries.insert(make_pair(0, pProp));
writerfilter::Reference<Table>::Pointer_t const pTable(new RTFReferenceTable(aListTableEntries));
Mapper().table(NS_ooxml::LN_NUMBERING, pTable);
// Use it
lcl_putNestedSprm(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PPrBase_numPr, NS_ooxml::LN_CT_NumPr_ilvl, pIlvlValue);
lcl_putNestedSprm(m_aStates.top().aParagraphSprms, NS_ooxml::LN_CT_PPrBase_tabs, NS_ooxml::LN_CT_NumPr_numId, pIdValue);
}
}
break;
case DESTINATION_PARAGRAPHNUMBERING_TEXTAFTER:
{
// FIXME: don't use pDestinationText, points to popped state
RTFValue::Pointer_t pValue(new RTFValue(aState.aDestinationText.makeStringAndClear(), true));
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_LevelSuffix_val, pValue);
}
break;
case DESTINATION_PARAGRAPHNUMBERING_TEXTBEFORE:
{
// FIXME: don't use pDestinationText, points to popped state
RTFValue::Pointer_t pValue(new RTFValue(aState.aDestinationText.makeStringAndClear(), true));
m_aStates.top().aTableAttributes.set(NS_ooxml::LN_CT_LevelText_val, pValue);
}
break;
case DESTINATION_LISTLEVEL:
{
RTFValue::Pointer_t pInnerValue(new RTFValue(m_aStates.top().nListLevelNum++));
aState.aTableAttributes.set(NS_ooxml::LN_CT_Lvl_ilvl, pInnerValue);
RTFValue::Pointer_t pValue(new RTFValue(aState.aTableAttributes, aState.aTableSprms));
if (m_aStates.top().nDestinationState != DESTINATION_LFOLEVEL)
m_aStates.top().aListLevelEntries.set(NS_ooxml::LN_CT_AbstractNum_lvl, pValue, OVERWRITE_NO_APPEND);
else
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_NumLvl_lvl, pValue);
}
break;
case DESTINATION_LFOLEVEL:
{
RTFValue::Pointer_t pInnerValue(new RTFValue(m_aStates.top().nListLevelNum++));
aState.aTableAttributes.set(NS_ooxml::LN_CT_NumLvl_ilvl, pInnerValue);
RTFValue::Pointer_t pValue(new RTFValue(aState.aTableAttributes, aState.aTableSprms));
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Num_lvlOverride, pValue);
}
break;
// list override table
case DESTINATION_LISTOVERRIDEENTRY:
{
if (m_aStates.top().nDestinationState == DESTINATION_LISTOVERRIDEENTRY)
{
// copy properties upwards so upper popState inserts it
m_aStates.top().aTableAttributes = aState.aTableAttributes;
m_aStates.top().aTableSprms = aState.aTableSprms;
}
else
{
RTFValue::Pointer_t pValue(new RTFValue(
aState.aTableAttributes, aState.aTableSprms));
m_aListTableSprms.set(NS_ooxml::LN_CT_Numbering_num, pValue, OVERWRITE_NO_APPEND);
}
}
break;
case DESTINATION_LEVELTEXT:
{
RTFValue::Pointer_t pValue(new RTFValue(aState.aTableAttributes));
m_aStates.top().aTableSprms.set(NS_ooxml::LN_CT_Lvl_lvlText, pValue);
}
break;
case DESTINATION_LEVELNUMBERS:
m_aStates.top().aTableSprms = aState.aTableSprms;
break;
case DESTINATION_FIELDINSTRUCTION:
m_aStates.top().nFieldStatus = FIELD_INSTRUCTION;
break;
case DESTINATION_FIELDRESULT:
m_aStates.top().nFieldStatus = FIELD_RESULT;
break;
case DESTINATION_FIELD:
if (aState.nFieldStatus == FIELD_INSTRUCTION)
singleChar(0x15);
break;
case DESTINATION_SHAPEPROPERTYVALUEPICT:
{
m_aStates.top().aPicture = aState.aPicture;
// both \sp and \sv are destinations, copy the text up-ward for later
m_aStates.top().aDestinationText = aState.aDestinationText;
}
break;
case DESTINATION_FALT:
m_aStates.top().aTableSprms = aState.aTableSprms;
break;
case DESTINATION_SHAPEPROPERTYNAME:
case DESTINATION_SHAPEPROPERTYVALUE:
case DESTINATION_SHAPEPROPERTY:
if (!m_aStates.empty())
{
m_aStates.top().aShape = aState.aShape;
m_aStates.top().aPicture = aState.aPicture;
m_aStates.top().aCharacterAttributes = aState.aCharacterAttributes;
}
break;
case DESTINATION_FLYMAINCONTENT:
case DESTINATION_SHPPICT:
case DESTINATION_SHAPE:
m_aStates.top().aFrame = aState.aFrame;
if (aState.nDestinationState == DESTINATION_SHPPICT && !m_aStates.empty() && m_aStates.top().nDestinationState == DESTINATION_LISTPICTURE)
{
RTFSprms aAttributes;
aAttributes.set(NS_ooxml::LN_CT_NumPicBullet_numPicBulletId, RTFValue::Pointer_t(new RTFValue(m_nListPictureId++)));
RTFSprms aSprms;
// Dummy value, real picture is already sent to dmapper.
aSprms.set(NS_ooxml::LN_CT_NumPicBullet_pict, RTFValue::Pointer_t(new RTFValue(0)));
RTFValue::Pointer_t pValue(new RTFValue(aAttributes, aSprms));
m_aListTableSprms.set(NS_ooxml::LN_CT_Numbering_numPicBullet, pValue, OVERWRITE_NO_APPEND);
}
break;
case DESTINATION_SHAPETEXT:
// If we're leaving the shapetext group (it may have nested ones) and this is a shape, not an old drawingobject.
if (m_aStates.top().nDestinationState != DESTINATION_SHAPETEXT && !m_aStates.top().aDrawingObject.bHadShapeText)
{
m_aStates.top().bHadShapeText = true;
if (!m_aStates.top().pCurrentBuffer)
m_pSdrImport->close();
else
m_aStates.top().pCurrentBuffer->push_back(
Buf_t(BUFFER_ENDSHAPE));
}
// It's allowed to declare these inside the the shape text, and they
// are expected to have an effect for the whole shape.
if (aState.aDrawingObject.nLeft)
m_aStates.top().aDrawingObject.nLeft = aState.aDrawingObject.nLeft;
if (aState.aDrawingObject.nTop)
m_aStates.top().aDrawingObject.nTop = aState.aDrawingObject.nTop;
if (aState.aDrawingObject.nRight)
m_aStates.top().aDrawingObject.nRight = aState.aDrawingObject.nRight;
if (aState.aDrawingObject.nBottom)
m_aStates.top().aDrawingObject.nBottom = aState.aDrawingObject.nBottom;
break;
default:
{
if (m_aStates.size() && m_aStates.top().nDestinationState == DESTINATION_PICT)
m_aStates.top().aPicture = aState.aPicture;
}
break;
}
if (aState.pCurrentBuffer == &m_aSuperBuffer)
{
OSL_ASSERT(!m_aStates.empty() && m_aStates.top().pCurrentBuffer == 0);
if (!m_bHasFootnote)
replayBuffer(m_aSuperBuffer, 0, 0);
m_bHasFootnote = false;
}
return 0;
}
::std::string RTFDocumentImpl::getType() const
{
return "RTFDocumentImpl";
}
uno::Reference<lang::XMultiServiceFactory> RTFDocumentImpl::getModelFactory()
{
return m_xModelFactory;
}
bool RTFDocumentImpl::isInBackground()
{
return m_aStates.top().bInBackground;
}
RTFInternalState RTFDocumentImpl::getInternalState()
{
return m_aStates.top().nInternalState;
}
void RTFDocumentImpl::setInternalState(RTFInternalState nInternalState)
{
m_aStates.top().nInternalState = nInternalState;
}
RTFDestinationState RTFDocumentImpl::getDestinationState()
{
return m_aStates.top().nDestinationState;
}
void RTFDocumentImpl::setDestinationState(RTFDestinationState nDestinationState)
{
m_aStates.top().nDestinationState = nDestinationState;
}
// this is a questionably named method that is used only in a very special
// situation where it looks like the "current" buffer is needed?
void RTFDocumentImpl::setDestinationText(OUString& rString)
{
m_aStates.top().aDestinationText.setLength(0);
m_aStates.top().aDestinationText.append(rString);
}
bool RTFDocumentImpl::getSkipUnknown()
{
return m_bSkipUnknown;
}
void RTFDocumentImpl::setSkipUnknown(bool bSkipUnknown)
{
m_bSkipUnknown = bSkipUnknown;
}
void RTFDocumentImpl::checkUnicode(bool bUnicode, bool bHex)
{
if (bUnicode && !m_aUnicodeBuffer.isEmpty())
{
OUString aString = m_aUnicodeBuffer.makeStringAndClear();
text(aString);
}
if (bHex && !m_aHexBuffer.isEmpty())
{
OUString aString = OStringToOUString(m_aHexBuffer.makeStringAndClear(), m_aStates.top().nCurrentEncoding);
text(aString);
}
}
RTFParserState::RTFParserState(RTFDocumentImpl* pDocumentImpl)
: m_pDocumentImpl(pDocumentImpl),
nInternalState(INTERNAL_NORMAL),
nDestinationState(DESTINATION_NORMAL),
nFieldStatus(FIELD_NONE),
nBorderState(BORDER_NONE),
aTableSprms(),
aTableAttributes(),
aCharacterSprms(),
aCharacterAttributes(),
aParagraphSprms(),
aParagraphAttributes(),
aSectionSprms(),
aSectionAttributes(),
aTableRowSprms(),
aTableRowAttributes(),
aTableCellSprms(),
aTableCellAttributes(),
aTabAttributes(),
aCurrentColor(),
nCurrentEncoding(rtl_getTextEncodingFromWindowsCharset(0)),
nUc(1),
nCharsToSkip(0),
nBinaryToRead(0),
nListLevelNum(0),
aListLevelEntries(),
aLevelNumbers(),
aPicture(),
aShape(),
aDrawingObject(),
aFrame(this),
eRunType(LOCH),
isRightToLeft(false),
nYear(0),
nMonth(0),
nDay(0),
nHour(0),
nMinute(0),
pDestinationText(0),
nCurrentStyleIndex(-1),
pCurrentBuffer(0),
bInListpicture(false),
bInBackground(false),
bHadShapeText(false),
bInShapeGroup(false),
bInShape(false),
bCreatedShapeGroup(false),
bStartedTrackchange(false)
{
}
void RTFParserState::resetFrame()
{
aFrame = RTFFrame(this);
}
RTFColorTableEntry::RTFColorTableEntry()
: nRed(0),
nGreen(0),
nBlue(0)
{
}
RTFPicture::RTFPicture()
: nWidth(0),
nHeight(0),
nGoalWidth(0),
nGoalHeight(0),
nScaleX(100),
nScaleY(100),
nCropT(0),
nCropB(0),
nCropL(0),
nCropR(0),
eWMetafile(0),
nStyle(BMPSTYLE_NONE)
{
}
RTFShape::RTFShape()
: nLeft(0),
nTop(0),
nRight(0),
nBottom(0),
nHoriOrientRelation(0),
nVertOrientRelation(0),
nHoriOrientRelationToken(0),
nVertOrientRelationToken(0),
nWrap(-1)
{
}
RTFDrawingObject::RTFDrawingObject()
: nLineColorR(0),
nLineColorG(0),
nLineColorB(0),
bHasLineColor(false),
nFillColorR(0),
nFillColorG(0),
nFillColorB(0),
bHasFillColor(false),
nDhgt(0),
nFLine(-1),
nPolyLineCount(0),
bHadShapeText(false)
{
}
RTFFrame::RTFFrame(RTFParserState* pParserState)
: m_pParserState(pParserState),
nX(0),
nY(0),
nW(0),
nH(0),
nHoriPadding(0),
nVertPadding(0),
nHoriAlign(0),
nHoriAnchor(0),
nVertAlign(0),
nVertAnchor(0),
nHRule(NS_ooxml::LN_Value_wordprocessingml_ST_HeightRule_auto),
nAnchorType(0)
{
}
void RTFFrame::setSprm(Id nId, Id nValue)
{
if (m_pParserState->m_pDocumentImpl->getFirstRun())
{
m_pParserState->m_pDocumentImpl->checkFirstRun();
m_pParserState->m_pDocumentImpl->setNeedPar(false);
}
switch (nId)
{
case NS_ooxml::LN_CT_FramePr_w:
nW = nValue;
break;
case NS_ooxml::LN_CT_FramePr_h:
nH = nValue;
break;
case NS_ooxml::LN_CT_FramePr_x:
nX = nValue;
break;
case NS_ooxml::LN_CT_FramePr_y:
nY = nValue;
break;
case NS_ooxml::LN_CT_FramePr_hSpace:
nHoriPadding = nValue;
break;
case NS_ooxml::LN_CT_FramePr_vSpace:
nVertPadding = nValue;
break;
case NS_ooxml::LN_CT_FramePr_xAlign:
nHoriAlign = nValue;
break;
case NS_ooxml::LN_CT_FramePr_hAnchor:
nHoriAnchor = nValue;
break;
case NS_ooxml::LN_CT_FramePr_yAlign:
nVertAlign = nValue;
break;
case NS_ooxml::LN_CT_FramePr_vAnchor:
nVertAnchor = nValue;
break;
case NS_ooxml::LN_CT_FramePr_wrap:
oWrap = nValue;
break;
default:
break;
}
}
RTFSprms RTFFrame::getSprms()
{
RTFSprms sprms;
static const Id pNames[] =
{
NS_ooxml::LN_CT_FramePr_x,
NS_ooxml::LN_CT_FramePr_y,
NS_ooxml::LN_CT_FramePr_hRule, // Make sure nHRule is processed before nH
NS_ooxml::LN_CT_FramePr_h,
NS_ooxml::LN_CT_FramePr_w,
NS_ooxml::LN_CT_FramePr_hSpace,
NS_ooxml::LN_CT_FramePr_vSpace,
NS_ooxml::LN_CT_FramePr_hAnchor,
NS_ooxml::LN_CT_FramePr_vAnchor,
NS_ooxml::LN_CT_FramePr_xAlign,
NS_ooxml::LN_CT_FramePr_yAlign,
NS_ooxml::LN_CT_FramePr_wrap,
NS_ooxml::LN_CT_FramePr_dropCap,
NS_ooxml::LN_CT_FramePr_lines
};
for (int i = 0, len = SAL_N_ELEMENTS(pNames); i < len; ++i)
{
Id nId = pNames[i];
RTFValue::Pointer_t pValue;
switch (nId)
{
case NS_ooxml::LN_CT_FramePr_x:
if (nX != 0)
pValue.reset(new RTFValue(nX));
break;
case NS_ooxml::LN_CT_FramePr_y:
if (nY != 0)
pValue.reset(new RTFValue(nY));
break;
case NS_ooxml::LN_CT_FramePr_h:
if (nH != 0)
{
if (nHRule == NS_ooxml::LN_Value_wordprocessingml_ST_HeightRule_exact)
pValue.reset(new RTFValue(-nH)); // The negative value just sets nHRule
else
pValue.reset(new RTFValue(nH));
}
break;
case NS_ooxml::LN_CT_FramePr_w:
if (nW != 0)
pValue.reset(new RTFValue(nW));
break;
case NS_ooxml::LN_CT_FramePr_hSpace:
if (nHoriPadding != 0)
pValue.reset(new RTFValue(nHoriPadding));
break;
case NS_ooxml::LN_CT_FramePr_vSpace:
if (nVertPadding != 0)
pValue.reset(new RTFValue(nVertPadding));
break;
case NS_ooxml::LN_CT_FramePr_hAnchor:
{
if (nHoriAnchor == 0)
nHoriAnchor = NS_ooxml::LN_Value_wordprocessingml_ST_HAnchor_margin;
pValue.reset(new RTFValue(nHoriAnchor));
}
break;
case NS_ooxml::LN_CT_FramePr_vAnchor:
{
if (nVertAnchor == 0)
nVertAnchor = NS_ooxml::LN_Value_wordprocessingml_ST_VAnchor_margin;
pValue.reset(new RTFValue(nVertAnchor));
}
break;
case NS_ooxml::LN_CT_FramePr_xAlign:
pValue.reset(new RTFValue(nHoriAlign));
break;
case NS_ooxml::LN_CT_FramePr_yAlign:
pValue.reset(new RTFValue(nVertAlign));
break;
case NS_ooxml::LN_CT_FramePr_hRule:
{
if (nH < 0)
nHRule = NS_ooxml::LN_Value_wordprocessingml_ST_HeightRule_exact;
else if (nH > 0)
nHRule = NS_ooxml::LN_Value_wordprocessingml_ST_HeightRule_atLeast;
pValue.reset(new RTFValue(nHRule));
}
break;
case NS_ooxml::LN_CT_FramePr_wrap:
if (oWrap)
pValue.reset(new RTFValue(*oWrap));
break;
default:
break;
}
if (pValue.get())
sprms.set(nId, pValue);
}
RTFSprms frameprSprms;
RTFValue::Pointer_t pFrameprValue(new RTFValue(sprms));
frameprSprms.set(NS_ooxml::LN_CT_PPrBase_framePr, pFrameprValue);
return frameprSprms;
}
bool RTFFrame::hasProperties()
{
return nX != 0 || nY != 0 || nW != 0 || nH != 0 ||
nHoriPadding != 0 || nVertPadding != 0 ||
nHoriAlign != 0 || nHoriAnchor != 0 || nVertAlign != 0 || nVertAnchor != 0 ||
nAnchorType != 0;
}
} // namespace rtftok
} // namespace writerfilter
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|