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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include <ctype.h> // tolower
#include <stdio.h> // sscanf()
#include <sal/types.h>
#include <tools/solar.h>
#include <comphelper/storagehelper.hxx>
#include <comphelper/string.hxx>
#include <sot/storinfo.hxx>
#include <com/sun/star/embed/XStorage.hpp>
#include <com/sun/star/embed/ElementModes.hpp>
#include <com/sun/star/embed/XTransactedObject.hpp>
#include <com/sun/star/io/XStream.hpp>
#include <com/sun/star/ucb/XCommandEnvironment.hpp>
#include <svl/urihelper.hxx>
#include <svl/zforlist.hxx>
#include <svl/zformat.hxx>
#include <sfx2/linkmgr.hxx>
#include <ucbhelper/content.hxx>
#include <ucbhelper/contentbroker.hxx>
#include <ucbhelper/commandenvironment.hxx>
#include <com/sun/star/i18n/ScriptType.hdl>
#include <hintids.hxx>
#include <editeng/fontitem.hxx>
#include <editeng/fhgtitem.hxx>
#include <editeng/langitem.hxx>
#include <fmtfld.hxx>
#include <fmtanchr.hxx>
#include <pam.hxx> // fuer SwPam
#include <doc.hxx>
#include <charatr.hxx> // class SwFmtFld
#include <flddat.hxx> // class SwDateTimeField
#include <docufld.hxx> // class SwPageNumberField
#include <reffld.hxx> // class SwGetRefField
#include <IMark.hxx>
#include <expfld.hxx> // class SwSetExpField
#include <dbfld.hxx> // class SwDBField
#include <usrfld.hxx>
#include <tox.hxx>
#include <section.hxx> // class SwSection
#include <ndtxt.hxx>
#include <fmtinfmt.hxx>
#include <chpfld.hxx>
#include <ftnidx.hxx>
#include <txtftn.hxx>
#include <viewsh.hxx>
#include <shellres.hxx>
#include <fmtruby.hxx>
#include <charfmt.hxx>
#include <txtatr.hxx>
#include <breakit.hxx>
#include <fmtclds.hxx>
#include <pagedesc.hxx>
#include <SwStyleNameMapper.hxx>
#include "ww8scan.hxx" // WW8FieldDesc
#include "ww8par.hxx"
#include "ww8par2.hxx"
#include "writerhelper.hxx"
#include "fields.hxx"
#include <unotools/fltrcfg.hxx>
#include <xmloff/odffields.hxx>
#include <algorithm> // #i24377#
//#define WW_NATIVE_TOC 0
#define MAX_FIELDLEN 64000
#define WW8_TOX_LEVEL_DELIM ':'
using namespace ::com::sun::star;
using namespace sw::util;
using namespace sw::mark;
using namespace std; // #i24377#
using namespace nsSwDocInfoSubType;
class _ReadFieldParams
{
private:
String aData;
xub_StrLen nLen, nFnd, nNext, nSavPtr;
public:
_ReadFieldParams( const String& rData );
~_ReadFieldParams();
xub_StrLen GoToTokenParam();
long SkipToNextToken();
xub_StrLen GetTokenSttPtr() const { return nFnd; }
xub_StrLen FindNextStringPiece( xub_StrLen _nStart = STRING_NOTFOUND );
bool GetTokenSttFromTo(xub_StrLen* _pFrom, xub_StrLen* _pTo,
xub_StrLen _nMax);
String GetResult() const;
};
_ReadFieldParams::_ReadFieldParams( const String& _rData )
: aData( _rData ), nLen( _rData.Len() ), nNext( 0 )
{
/*
erstmal nach einer oeffnenden Klammer oder einer Leerstelle oder einem
Anfuehrungszeichen oder einem Backslash suchen, damit der Feldbefehl
(also INCLUDEPICTURE bzw EINFUeGENGRAFIK bzw ...) ueberlesen wird
*/
while( (nLen > nNext) && (aData.GetChar( nNext ) == ' ') )
++nNext;
sal_Unicode c;
while( nLen > nNext
&& (c = aData.GetChar( nNext )) != ' '
&& c != '"'
&& c != '\\'
&& c != 132
&& c != 0x201c )
++nNext;
nFnd = nNext;
nSavPtr = nNext;
}
_ReadFieldParams::~_ReadFieldParams()
{
}
String _ReadFieldParams::GetResult() const
{
return (STRING_NOTFOUND == nFnd)
? aEmptyStr
: aData.Copy( nFnd, (nSavPtr - nFnd) );
}
xub_StrLen _ReadFieldParams::GoToTokenParam()
{
xub_StrLen nOld = nNext;
if( -2 == SkipToNextToken() )
return GetTokenSttPtr();
nNext = nOld;
return STRING_NOTFOUND;
}
// ret: -2: NOT a '\' parameter but normal Text
long _ReadFieldParams::SkipToNextToken()
{
long nRet = -1; // Ende
if (
(STRING_NOTFOUND != nNext) && (nLen > nNext) &&
STRING_NOTFOUND != (nFnd = FindNextStringPiece(nNext))
)
{
nSavPtr = nNext;
if ('\\' == aData.GetChar(nFnd) && '\\' != aData.GetChar(nFnd + 1))
{
nRet = aData.GetChar(++nFnd);
nNext = ++nFnd; // und dahinter setzen
}
else
{
nRet = -2;
if (
(STRING_NOTFOUND != nSavPtr ) &&
(
('"' == aData.GetChar(nSavPtr - 1)) ||
(0x201d == aData.GetChar(nSavPtr - 1))
)
)
{
--nSavPtr;
}
}
}
return nRet;
}
// FindNextPara sucht naechsten Backslash-Parameter oder naechste Zeichenkette
// bis zum Blank oder naechsten "\" oder zum schliessenden Anfuehrungszeichen
// oder zum String-Ende von pStr.
//
// Ausgabe ppNext (falls ppNext != 0) Suchbeginn fuer naechsten Parameter bzw. 0
//
// Returnwert: 0 falls String-Ende erreicht,
// ansonsten Anfang des Paramters bzw. der Zeichenkette
//
xub_StrLen _ReadFieldParams::FindNextStringPiece(const xub_StrLen nStart)
{
xub_StrLen n = ( STRING_NOTFOUND == nStart ) ? nFnd : nStart; // Anfang
xub_StrLen n2; // Ende
nNext = STRING_NOTFOUND; // Default fuer nicht gefunden
while( (nLen > n) && (aData.GetChar( n ) == ' ') )
++n;
if ( aData.GetChar( n ) == 0x13 )
{
// Skip the nested field code since it's not supported
while ( ( nLen > n ) && ( aData.GetChar( n ) != 0x14 ) )
n++;
}
if( nLen == n )
return STRING_NOTFOUND; // String End reached!
if( (aData.GetChar( n ) == '"') // Anfuehrungszeichen vor Para?
|| (aData.GetChar( n ) == 0x201c)
|| (aData.GetChar( n ) == 132)
|| (aData.GetChar( n ) == 0x14) )
{
n++; // Anfuehrungszeichen ueberlesen
n2 = n; // ab hier nach Ende suchen
while( (nLen > n2)
&& (aData.GetChar( n2 ) != '"')
&& (aData.GetChar( n2 ) != 0x201d)
&& (aData.GetChar( n2 ) != 147)
&& (aData.GetChar( n2 ) != 0x15) )
n2++; // Ende d. Paras suchen
}
else // keine Anfuehrungszeichen
{
n2 = n; // ab hier nach Ende suchen
while( (nLen > n2) && (aData.GetChar( n2 ) != ' ') ) // Ende d. Paras suchen
{
if( aData.GetChar( n2 ) == '\\' )
{
if( aData.GetChar( n2+1 ) == '\\' )
n2 += 2; // Doppel-Backslash -> OK
else
{
if( n2 > n )
n2--;
break; // einfach-Backslash -> Ende
}
}
else
n2++; // kein Backslash -> OK
}
}
if( nLen > n2 )
{
if(aData.GetChar( n2 ) != ' ') n2++;
nNext = n2;
}
return n;
}
// read parameters "1-3" or 1-3 with both values between 1 and nMax
bool _ReadFieldParams::GetTokenSttFromTo(sal_uInt16* pFrom, sal_uInt16* pTo, sal_uInt16 nMax)
{
sal_uInt16 nStart = 0;
sal_uInt16 nEnd = 0;
xub_StrLen n = GoToTokenParam();
if( STRING_NOTFOUND != n )
{
String sParams( GetResult() );
xub_StrLen nIndex = 0;
String sStart( sParams.GetToken(0, '-', nIndex) );
if( STRING_NOTFOUND != nIndex )
{
nStart = static_cast<sal_uInt16>(sStart.ToInt32());
nEnd = static_cast<sal_uInt16>(sParams.Copy(nIndex).ToInt32());
}
}
if( pFrom ) *pFrom = nStart;
if( pTo ) *pTo = nEnd;
return nStart && nEnd && (nMax >= nStart) && (nMax >= nEnd);
}
//----------------------------------------
// Bookmarks
//----------------------------------------
long SwWW8ImplReader::Read_Book(WW8PLCFManResult*)
{
// muesste auch ueber pRes.nCo2OrIdx gehen
WW8PLCFx_Book* pB = pPlcxMan->GetBook();
if( !pB )
{
OSL_ENSURE( pB, "WW8PLCFx_Book - Pointer nicht da" );
return 0;
}
eBookStatus eB = pB->GetStatus();
if (eB & BOOK_IGNORE)
return 0; // Bookmark zu ignorieren
if (pB->GetIsEnd())
{
pReffedStck->SetAttr(*pPaM->GetPoint(), RES_FLTR_BOOKMARK, true,
pB->GetHandle(), (eB & BOOK_FIELD)!=0);
return 0;
}
//"_Toc*" and "_Hlt*" are unnecessary
const String* pName = pB->GetName();
#if !defined(WW_NATIVE_TOC)
if( !pName || pName->EqualsIgnoreCaseAscii( "_Toc", 0, 4 )
|| pName->EqualsIgnoreCaseAscii( "_Hlt", 0, 4 ) )
return 0;
#endif
//ToUpper darf auf keinen Fall gemacht werden, weil der Bookmark- name ein Hyperlink-Ziel sein kann!
String aVal;
if( SwFltGetFlag( nFieldFlags, SwFltControlStack::BOOK_TO_VAR_REF ) )
{
// Fuer UEbersetzung Bookmark -> Variable setzen
long nLen = pB->GetLen();
if( nLen > MAX_FIELDLEN )
nLen = MAX_FIELDLEN;
long nOldPos = pStrm->Tell();
nLen = pSBase->WW8ReadString( *pStrm, aVal, pB->GetStartPos(), nLen,
eStructCharSet );
pStrm->Seek( nOldPos );
// now here the implementation of the old "QuoteString" and
// I hope with a better performance as before. It's also only
// needed if the filterflags say we will convert bookmarks
// to SetExpFields! And this the exception!
String sHex(CREATE_CONST_ASC( "\\x" ));
bool bSetAsHex;
bool bAllowCr = SwFltGetFlag(nFieldFlags,
SwFltControlStack::ALLOW_FLD_CR) ? true : false;
sal_Unicode cChar;
for( xub_StrLen nI = 0;
nI < aVal.Len() && aVal.Len() < (MAX_FIELDLEN - 4); ++nI )
{
switch( cChar = aVal.GetChar( nI ) )
{
case 0x0b:
case 0x0c:
case 0x0d:
if( bAllowCr )
aVal.SetChar( nI, '\n' ), bSetAsHex = false;
else
bSetAsHex = true;
break;
case 0xFE:
case 0xFF:
bSetAsHex = true;
break;
default:
bSetAsHex = 0x20 > cChar;
break;
}
if( bSetAsHex )
{
//all Hex-Numbers with \x before
String sTmp( sHex );
if( cChar < 0x10 )
sTmp += '0';
sTmp += String::CreateFromInt32( cChar, 16 );
aVal.Replace( nI, 1 , sTmp );
nI += sTmp.Len() - 1;
}
}
if( aVal.Len() > (MAX_FIELDLEN - 4))
aVal.Erase( MAX_FIELDLEN - 4 );
}
//e.g. inserting bookmark around field result, so we need to put
//it around the entire writer field, as we don't have the seperation
//of field and field result of word, see #i16941#
SwPosition aStart(*pPaM->GetPoint());
if (!maFieldStack.empty())
{
const FieldEntry &rTest = maFieldStack.back();
aStart = rTest.maStartPos;
}
pReffedStck->NewAttr(aStart, SwFltBookmark(BookmarkToWriter(*pName), aVal,
pB->GetHandle(), 0));
return 0;
}
//----------------------------------------------------------------------
// allgemeine Hilfsroutinen zum Auseinanderdroeseln der Parameter
//----------------------------------------------------------------------
// ConvertFFileName uebersetzt FeldParameter-Namen u. ae. in den
// System-Zeichensatz.
// Gleichzeitig werden doppelte Backslashes in einzelne uebersetzt.
void SwWW8ImplReader::ConvertFFileName( String& rName, const String& rOrg )
{
rName = rOrg;
rName.SearchAndReplaceAllAscii( "\\\\", String( '\\' ));
rName.SearchAndReplaceAllAscii( "%20", String( ' ' ));
// ggfs. anhaengende Anfuehrungszeichen entfernen
if( rName.Len() && '"' == rName.GetChar( rName.Len()-1 ))
rName.Erase( rName.Len()-1, 1);
// Need the more sophisticated url converter. cmc
if (rName.Len())
rName = URIHelper::SmartRel2Abs(
INetURLObject(sBaseURL), rName, Link(), false);
}
// ConvertUFNneme uebersetzt FeldParameter-Namen u. ae. in den
// System-Zeichensatz und Upcased sie ( z.B. fuer Ref-Felder )
namespace
{
void ConvertUFName( String& rName )
{
GetAppCharClass().toUpper( rName );
}
}
static void lcl_ConvertSequenceName(String& rSequenceName)
{
ConvertUFName(rSequenceName);
if ('0' <= rSequenceName.GetChar(0) && '9' >= rSequenceName.GetChar(0))
rSequenceName.Insert('_', 0);
}
// FindParaStart() finds 1st Parameter that follows '\' and cToken
// and returns start of this parameter or STRING_NOT_FOUND.
xub_StrLen FindParaStart( const String& rStr, sal_Unicode cToken, sal_Unicode cToken2 )
{
bool bStr = false; // innerhalb String ignorieren
for( xub_StrLen nBuf=0; nBuf+1 < rStr.Len(); nBuf++ )
{
if( rStr.GetChar( nBuf ) == '"' )
bStr = !bStr;
if( !bStr
&& rStr.GetChar( nBuf ) == '\\'
&& ( rStr.GetChar( nBuf + 1 ) == cToken
|| rStr.GetChar( nBuf + 1 ) == cToken2 ) )
{
nBuf += 2;
// skip spaces between cToken and it's parameters
while( nBuf < rStr.Len()
&& rStr.GetChar( nBuf ) == ' ' )
nBuf++;
// return start of parameters
return nBuf < rStr.Len() ? nBuf : STRING_NOTFOUND;
}
}
return STRING_NOTFOUND;
}
// FindPara() findet den ersten Parameter mit '\' und cToken. Es wird
// ein neuer String allokiert ( der vom Aufrufer deallokiert werden muss )
// und alles, was zum Parameter gehoert, wird in ihm zurueckgeliefert.
String FindPara( const String& rStr, sal_Unicode cToken, sal_Unicode cToken2 )
{
xub_StrLen n2; // Ende
xub_StrLen n = FindParaStart( rStr, cToken, cToken2 ); // Anfang
if( STRING_NOTFOUND == n )
return aEmptyStr;
if( rStr.GetChar( n ) == '"'
|| rStr.GetChar( n ) == 132 )
{ // Anfuehrungszeichen vor Para
n++; // Anfuehrungszeichen ueberlesen
n2 = n; // ab hier nach Ende suchen
while( n2 < rStr.Len()
&& rStr.GetChar( n2 ) != 147
&& rStr.GetChar( n2 ) != '"' )
n2++; // Ende d. Paras suchen
}
else
{ // keine Anfuehrungszeichen
n2 = n; // ab hier nach Ende suchen
while( n2 < rStr.Len()
&& rStr.GetChar( n2 ) != ' ' )
n2++; // Ende d. Paras suchen
}
return rStr.Copy( n, n2-n );
}
static SvxExtNumType GetNumTypeFromName(const String& rStr,
bool bAllowPageDesc = false)
{
SvxExtNumType eTyp = bAllowPageDesc ? SVX_NUM_PAGEDESC : SVX_NUM_ARABIC;
if( rStr.EqualsIgnoreCaseAscii( "Arabi", 0, 5 ) ) // Arabisch, Arabic
eTyp = SVX_NUM_ARABIC;
else if( rStr.EqualsAscii( "misch", 2, 5 ) ) // r"omisch
eTyp = SVX_NUM_ROMAN_LOWER;
else if( rStr.EqualsAscii( "MISCH", 2, 5 ) ) // R"OMISCH
eTyp = SVX_NUM_ROMAN_UPPER;
else if( rStr.EqualsIgnoreCaseAscii( "alphabeti", 0, 9 ) )// alphabetisch, alphabetic
eTyp = ( rStr.GetChar( 0 ) == 'A' )
? SVX_NUM_CHARS_UPPER_LETTER_N
: SVX_NUM_CHARS_LOWER_LETTER_N;
else if( rStr.EqualsIgnoreCaseAscii( "roman", 0, 5 ) ) // us
eTyp = ( rStr.GetChar( 0 ) == 'R' )
? SVX_NUM_ROMAN_UPPER
: SVX_NUM_ROMAN_LOWER;
return eTyp;
}
static SvxExtNumType GetNumberPara(String& rStr, bool bAllowPageDesc = false)
{
String s( FindPara( rStr, '*', '*' ) ); // Ziffernart
SvxExtNumType aType = GetNumTypeFromName( s, bAllowPageDesc );
return aType;
}
bool SwWW8ImplReader::ForceFieldLanguage(SwField &rFld, sal_uInt16 nLang)
{
bool bRet(false);
const SvxLanguageItem *pLang =
(const SvxLanguageItem*)GetFmtAttr(RES_CHRATR_LANGUAGE);
OSL_ENSURE(pLang, "impossible");
sal_uInt16 nDefault = pLang ? pLang->GetValue() : LANGUAGE_ENGLISH_US;
if (nLang != nDefault)
{
rFld.SetAutomaticLanguage(false);
rFld.SetLanguage(nLang);
bRet = true;
}
return bRet;
}
String GetWordDefaultDateStringAsUS(SvNumberFormatter* pFormatter, sal_uInt16 nLang)
{
//Get the system date in the correct final language layout, convert to
//a known language and modify the 2 digit year part to be 4 digit, and
//convert back to the correct language layout.
sal_uLong nIndex = pFormatter->GetFormatIndex(NF_DATE_SYSTEM_SHORT, nLang);
SvNumberformat aFormat = const_cast<SvNumberformat &>
(*(pFormatter->GetEntry(nIndex)));
aFormat.ConvertLanguage(*pFormatter, nLang, LANGUAGE_ENGLISH_US);
String sParams(aFormat.GetFormatstring());
// #i36594#
// Fix provided by mloiseleur@openoffice.org.
// A default date can have already 4 year digits, in some case
const xub_StrLen pos = sParams.Search( CREATE_CONST_ASC("YYYY") );
if ( pos == STRING_NOTFOUND )
{
sParams.SearchAndReplace(CREATE_CONST_ASC("YY"), CREATE_CONST_ASC("YYYY"));
}
return sParams;
}
short SwWW8ImplReader::GetTimeDatePara(String& rStr, sal_uInt32& rFormat,
sal_uInt16 &rLang, int nWhichDefault, bool bHijri)
{
bool bRTL = false;
if (pPlcxMan && !bVer67)
{
const sal_uInt8 *pResult = pPlcxMan->HasCharSprm(0x85A);
if (pResult && *pResult)
bRTL = true;
}
RES_CHRATR eLang = bRTL ? RES_CHRATR_CTL_LANGUAGE : RES_CHRATR_LANGUAGE;
const SvxLanguageItem *pLang = (SvxLanguageItem*)GetFmtAttr( static_cast< sal_uInt16 >(eLang));
OSL_ENSURE(pLang, "impossible");
rLang = pLang ? pLang->GetValue() : LANGUAGE_ENGLISH_US;
SvNumberFormatter* pFormatter = rDoc.GetNumberFormatter();
String sParams( FindPara( rStr, '@', '@' ) );// Date/Time
if (!sParams.Len())
{
bool bHasTime = false;
switch (nWhichDefault)
{
case ww::ePRINTDATE:
case ww::eSAVEDATE:
sParams = GetWordDefaultDateStringAsUS(pFormatter, rLang);
sParams.APPEND_CONST_ASC(" HH:MM:SS AM/PM");
bHasTime = true;
break;
case ww::eCREATEDATE:
sParams.ASSIGN_CONST_ASC("DD/MM/YYYY HH:MM:SS");
bHasTime = true;
break;
default:
case ww::eDATE:
sParams = GetWordDefaultDateStringAsUS(pFormatter, rLang);
break;
}
if (bHijri)
sParams.Insert(CREATE_CONST_ASC("[~hijri]"), 0);
sal_uInt16 nCheckPos = 0;
sal_Int16 nType = NUMBERFORMAT_DEFINED;
rFormat = 0;
pFormatter->PutandConvertEntry(sParams, nCheckPos, nType, rFormat,
LANGUAGE_ENGLISH_US, rLang);
return bHasTime ? NUMBERFORMAT_DATETIME : NUMBERFORMAT_DATE;
}
sal_uLong nFmtIdx =
sw::ms::MSDateTimeFormatToSwFormat(sParams, pFormatter, rLang, bHijri,
GetFib().lid);
short nNumFmtType = NUMBERFORMAT_UNDEFINED;
if (nFmtIdx)
nNumFmtType = pFormatter->GetType(nFmtIdx);
rFormat = nFmtIdx;
return nNumFmtType;
}
//-----------------------------------------
// Felder
//-----------------------------------------
// Am Ende des Einlesens entsprechende Felder updaten ( z.Zt. die Referenzen )
void SwWW8ImplReader::UpdateFields()
{
rDoc.SetUpdateExpFldStat(true); // JP: neu fuer alles wichtige
rDoc.SetInitDBFields(true); // Datenbank-Felder auch
}
sal_uInt16 SwWW8ImplReader::End_Field()
{
sal_uInt16 nRet = 0;
WW8PLCFx_FLD* pF = pPlcxMan->GetFld();
OSL_ENSURE(pF, "WW8PLCFx_FLD - Pointer nicht da");
if (!pF || !pF->EndPosIsFieldEnd())
return nRet;
const SvtFilterOptions &rOpt = SvtFilterOptions::Get();
sal_Bool bUseEnhFields = rOpt.IsUseEnhancedFields();
OSL_ENSURE(!maFieldStack.empty(), "Empty field stack\n");
if (!maFieldStack.empty())
{
/*
only hyperlinks currently need to be handled like this, for the other
cases we have inserted a field not an attribute with an unknown end
point
*/
nRet = maFieldStack.back().mnFieldId;
switch (nRet)
{
case 70:
if (bUseEnhFields && pPaM!=NULL && pPaM->GetPoint()!=NULL) {
SwPosition aEndPos = *pPaM->GetPoint();
SwPaM aFldPam( maFieldStack.back().GetPtNode(), maFieldStack.back().GetPtCntnt(), aEndPos.nNode, aEndPos.nContent.GetIndex());
IDocumentMarkAccess* pMarksAccess = rDoc.getIDocumentMarkAccess( );
IFieldmark *pFieldmark = dynamic_cast<IFieldmark*>( pMarksAccess->makeFieldBookmark(
aFldPam, maFieldStack.back().GetBookmarkName(), ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(ODF_FORMTEXT )) ) );
OSL_ENSURE(pFieldmark!=NULL, "hmmm; why was the bookmark not created?");
if (pFieldmark!=NULL) {
const IFieldmark::parameter_map_t& pParametersToAdd = maFieldStack.back().getParameters();
pFieldmark->GetParameters()->insert(pParametersToAdd.begin(), pParametersToAdd.end());
}
}
break;
#if defined(WW_NATIVE_TOC)
case 8: // TOX_INDEX
case 13: // TOX_CONTENT
case 88: // HYPERLINK
case 37: // REF
if (pPaM!=NULL && pPaM->GetPoint()!=NULL) {
SwPosition aEndPos = *pPaM->GetPoint();
SwPaM aFldPam( maFieldStack.back().GetPtNode(), maFieldStack.back().GetPtCntnt(), aEndPos.nNode, aEndPos.nContent.GetIndex());
SwFieldBookmark *pFieldmark=(SwFieldBookmark*)rDoc.makeFieldBookmark(aFldPam, maFieldStack.back().GetBookmarkName(), maFieldStack.back().GetBookmarkType());
OSL_ENSURE(pFieldmark!=NULL, "hmmm; why was the bookmark not created?");
if (pFieldmark!=NULL) {
const IFieldmark::parameter_map_t& pParametersToAdd = maFieldStack.back().getParameters();
pFieldmark->GetParameters()->insert(pParameters.begin(), pParameters.end());
}
}
break;
#else
case 88:
pCtrlStck->SetAttr(*pPaM->GetPoint(),RES_TXTATR_INETFMT);
break;
#endif
case 36:
case 68:
//Move outside the section associated with this type of field
*pPaM->GetPoint() = maFieldStack.back().maStartPos;
break;
default:
rtl::OUString aCode = maFieldStack.back().GetBookmarkCode();
if ( aCode.getLength() > 0 )
{
// Unhandled field with stored code
SwPosition aEndPos = *pPaM->GetPoint();
SwPaM aFldPam(
maFieldStack.back().GetPtNode(), maFieldStack.back().GetPtCntnt(),
aEndPos.nNode, aEndPos.nContent.GetIndex());
IDocumentMarkAccess* pMarksAccess = rDoc.getIDocumentMarkAccess( );
IFieldmark* pFieldmark = pMarksAccess->makeFieldBookmark(
aFldPam,
maFieldStack.back().GetBookmarkName(),
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( ODF_UNHANDLED )) );
if ( pFieldmark )
{
const IFieldmark::parameter_map_t& pParametersToAdd = maFieldStack.back().getParameters();
pFieldmark->GetParameters()->insert(pParametersToAdd.begin(), pParametersToAdd.end());
rtl::OUString sFieldId = rtl::OUString::valueOf( sal_Int32( maFieldStack.back().mnFieldId ) );
pFieldmark->GetParameters()->insert(
std::pair< rtl::OUString, uno::Any > (
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( ODF_ID_PARAM )),
uno::makeAny( sFieldId ) ) );
pFieldmark->GetParameters()->insert(
std::pair< rtl::OUString, uno::Any > (
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( ODF_CODE_PARAM )),
uno::makeAny( aCode ) ) );
if ( maFieldStack.back().mnObjLocFc > 0 )
{
// Store the OLE object as an internal link
String sOleId = '_';
sOleId += String::CreateFromInt32( maFieldStack.back().mnObjLocFc );
SvStorageRef xSrc0 = pStg->OpenSotStorage(CREATE_CONST_ASC(SL::aObjectPool));
SvStorageRef xSrc1 = xSrc0->OpenSotStorage( sOleId, STREAM_READ );
// Store it now!
uno::Reference< embed::XStorage > xDocStg = GetDoc().GetDocStorage();
if (xDocStg.is())
{
uno::Reference< embed::XStorage > xOleStg = xDocStg->openStorageElement(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("OLELinks")), embed::ElementModes::WRITE );
SotStorageRef xObjDst = SotStorage::OpenOLEStorage( xOleStg, sOleId );
if ( xObjDst.Is() )
{
xSrc1->CopyTo( xObjDst );
if ( !xObjDst->GetError() )
xObjDst->Commit();
}
uno::Reference< embed::XTransactedObject > xTransact( xOleStg, uno::UNO_QUERY );
if ( xTransact.is() )
xTransact->commit();
}
// Store the OLE Id as a parameter
pFieldmark->GetParameters()->insert(
std::pair< rtl::OUString, uno::Any >(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( ODF_OLE_PARAM )),
uno::makeAny( rtl::OUString( sOleId ) ) ) );
}
}
}
break;
}
maFieldStack.pop_back();
}
return nRet;
}
bool AcceptableNestedField(sal_uInt16 nFieldCode)
{
switch (nFieldCode)
{
#if defined(WW_NATIVE_TOC)
case 8: // allow recursive field in TOC...
case 13: // allow recursive field in TOC...
#endif
case 36:
case 68:
case 79:
case 88:
// Accept AutoTextList field as nested field.
// Thus, the field result is imported as plain text.
case 89:
return true;
default:
return false;
}
}
FieldEntry::FieldEntry(SwPosition &rPos, sal_uInt16 nFieldId) throw()
: maStartPos(rPos), mnFieldId(nFieldId), mnObjLocFc(0)
{
}
FieldEntry::FieldEntry(const FieldEntry &rOther) throw()
: maStartPos(rOther.maStartPos), mnFieldId(rOther.mnFieldId), mnObjLocFc(rOther.mnObjLocFc)
{
}
void FieldEntry::Swap(FieldEntry &rOther) throw()
{
std::swap(maStartPos, rOther.maStartPos);
std::swap(mnFieldId, rOther.mnFieldId);
}
FieldEntry &FieldEntry::operator=(const FieldEntry &rOther) throw()
{
FieldEntry aTemp(rOther);
Swap(aTemp);
return *this;
}
::rtl::OUString FieldEntry::GetBookmarkName()
{
return msBookmarkName;
}
::rtl::OUString FieldEntry::GetBookmarkType()
{
return msMarkType;
}
::rtl::OUString FieldEntry::GetBookmarkCode()
{
return msMarkCode;
}
void FieldEntry::SetBookmarkName(::rtl::OUString bookmarkName)
{
msBookmarkName=bookmarkName;
}
void FieldEntry::SetBookmarkType(::rtl::OUString bookmarkType)
{
msMarkType=bookmarkType;
}
void FieldEntry::SetBookmarkCode(::rtl::OUString bookmarkCode)
{
msMarkCode = bookmarkCode;
}
::sw::mark::IFieldmark::parameter_map_t& FieldEntry::getParameters() {
return maParams;
}
// Read_Field liest ein Feld ein oder, wenn es nicht gelesen werden kann,
// wird 0 zurueckgegeben, so dass das Feld vom Aufrufer textuell gelesen wird.
// Returnwert: Gesamtlaenge des Feldes ( zum UEberlesen )
long SwWW8ImplReader::Read_Field(WW8PLCFManResult* pRes)
{
typedef eF_ResT (SwWW8ImplReader:: *FNReadField)( WW8FieldDesc*, String& );
enum Limits {eMax = 96};
static FNReadField aWW8FieldTab[eMax+1] =
{
0,
&SwWW8ImplReader::Read_F_Input,
0,
&SwWW8ImplReader::Read_F_Ref, // 3
0,
0,
&SwWW8ImplReader::Read_F_Set, // 6
0,
&SwWW8ImplReader::Read_F_Tox, // 8
0,
0,
0,
&SwWW8ImplReader::Read_F_Seq, // 12
&SwWW8ImplReader::Read_F_Tox, // 13
&SwWW8ImplReader::Read_F_DocInfo, // 14
&SwWW8ImplReader::Read_F_DocInfo, // 15
&SwWW8ImplReader::Read_F_DocInfo, // 16
&SwWW8ImplReader::Read_F_Author, // 17
&SwWW8ImplReader::Read_F_DocInfo, // 18
&SwWW8ImplReader::Read_F_DocInfo, // 19
&SwWW8ImplReader::Read_F_DocInfo, // 20
&SwWW8ImplReader::Read_F_DocInfo, // 21
&SwWW8ImplReader::Read_F_DocInfo, // 22
&SwWW8ImplReader::Read_F_DocInfo, // 23
&SwWW8ImplReader::Read_F_DocInfo, // 24
&SwWW8ImplReader::Read_F_DocInfo, // 25
&SwWW8ImplReader::Read_F_Anz, // 26
&SwWW8ImplReader::Read_F_Anz, // 27
&SwWW8ImplReader::Read_F_Anz, // 28
&SwWW8ImplReader::Read_F_FileName, // 29
&SwWW8ImplReader::Read_F_TemplName, // 30
&SwWW8ImplReader::Read_F_DateTime, // 31
&SwWW8ImplReader::Read_F_DateTime, // 32
&SwWW8ImplReader::Read_F_CurPage, // 33
0,
0,
&SwWW8ImplReader::Read_F_IncludeText, // 36
&SwWW8ImplReader::Read_F_PgRef, // 37
&SwWW8ImplReader::Read_F_InputVar, // 38
&SwWW8ImplReader::Read_F_Input, // 39
0,
&SwWW8ImplReader::Read_F_DBNext, // 41
0,
0,
&SwWW8ImplReader::Read_F_DBNum, // 44
0,
0,
0,
0,
&SwWW8ImplReader::Read_F_Equation, // 49
0,
&SwWW8ImplReader::Read_F_Macro, // 51
&SwWW8ImplReader::Read_F_ANumber, // 52
&SwWW8ImplReader::Read_F_ANumber, // 53
&SwWW8ImplReader::Read_F_ANumber, // 54
0,
0, // 56
&SwWW8ImplReader::Read_F_Symbol, // 57
&SwWW8ImplReader::Read_F_Embedd, // 58
&SwWW8ImplReader::Read_F_DBField, // 59
0,
0,
0,
0,
0,
0,
0,
&SwWW8ImplReader::Read_F_IncludePicture, // 67
&SwWW8ImplReader::Read_F_IncludeText, // 68
0,
&SwWW8ImplReader::Read_F_FormTextBox, // 70
&SwWW8ImplReader::Read_F_FormCheckBox, // 71
&SwWW8ImplReader::Read_F_NoteReference, // 72
0, /*&SwWW8ImplReader::Read_F_Tox*/
0,
0,
0,
0,
0,
0,
0,
0,
0,
&SwWW8ImplReader::Read_F_FormListBox, // 83
0, // 84
&SwWW8ImplReader::Read_F_DocInfo, // 85
0, // 86
&SwWW8ImplReader::Read_F_OCX, // 87
&SwWW8ImplReader::Read_F_Hyperlink, // 88
0, // 89
0, // 90
&SwWW8ImplReader::Read_F_HTMLControl, // 91
0, // 92
0, // 93
0, // 94
&SwWW8ImplReader::Read_F_Shape, // 95
0 // eMax - Dummy leer Methode
};
OSL_ENSURE( ( sizeof( aWW8FieldTab ) / sizeof( *aWW8FieldTab ) == eMax+1 ),
"FeldFunc-Tabelle stimmt nicht" );
WW8PLCFx_FLD* pF = pPlcxMan->GetFld();
OSL_ENSURE(pF, "WW8PLCFx_FLD - Pointer nicht da");
if (!pF || !pF->StartPosIsFieldStart())
return 0;
bool bNested = false;
if (!maFieldStack.empty())
{
mycFieldIter aEnd = maFieldStack.end();
for(mycFieldIter aIter = maFieldStack.begin(); aIter != aEnd; ++aIter)
{
bNested = !AcceptableNestedField(aIter->mnFieldId);
if (bNested)
break;
}
}
WW8FieldDesc aF;
bool bOk = pF->GetPara(pRes->nCp2OrIdx, aF);
OSL_ENSURE(bOk, "WW8: Bad Field!\n");
if (aF.nId == 33) aF.bCodeNest=false; // do not recurse into nested page fields
bool bCodeNest = aF.bCodeNest;
if ( aF.nId == 6 ) bCodeNest = false; // We can handle them and loose the inner data
maFieldStack.push_back(FieldEntry(*pPaM->GetPoint(), aF.nId));
if (bNested)
return 0;
sal_uInt16 n = ( aF.nId <= eMax ) ? aF.nId : static_cast< sal_uInt16 >(eMax); // alle > 91 werden 92
sal_uInt16 nI = n / 32; // # des sal_uInt32
sal_uLong nMask = 1 << ( n % 32 ); // Maske fuer Bits
if( nFieldTagAlways[nI] & nMask ) // Flag: Tag it
return Read_F_Tag( &aF ); // Resultat nicht als Text
if( !bOk || !aF.nId ) // Feld kaputt
return aF.nLen; // -> ignorieren
if( aF.nId > eMax - 1) // WW: Nested Field
{
if( nFieldTagBad[nI] & nMask ) // Flag: Tag it when bad
return Read_F_Tag( &aF ); // Resultat nicht als Text
else
return aF.nLen;
}
//Only one type of field (hyperlink) in drawing textboxes exists
if (aF.nId != 88 && pPlcxMan && pPlcxMan->GetDoingDrawTextBox())
return aF.nLen;
// keine Routine vorhanden
if (bNested || !aWW8FieldTab[aF.nId] || bCodeNest)
{
if( nFieldTagBad[nI] & nMask ) // Flag: Tag it when bad
return Read_F_Tag( &aF ); // Resultat nicht als Text
// Lese nur Resultat
if (aF.bResNest && !AcceptableNestedField(aF.nId))
return aF.nLen; // Result nested -> nicht brauchbar
long nOldPos = pStrm->Tell();
String aStr;
aF.nLCode = pSBase->WW8ReadString( *pStrm, aStr, pPlcxMan->GetCpOfs()+
aF.nSCode, aF.nLCode, eTextCharSet );
pStrm->Seek( nOldPos );
// field codes which contain '/' or '.' are not displayed in WinWord
xub_StrLen nSpacePos = aStr.Search( ' ', 1 );
if ( STRING_NOTFOUND == nSpacePos )
nSpacePos = aStr.Len( );
xub_StrLen nSearchPos = STRING_NOTFOUND;
if ( !( aStr.EqualsAscii( "=", 1, 1 ) ) && (
( ( nSearchPos = aStr.Search('.') ) != STRING_NOTFOUND && nSearchPos < nSpacePos ) ||
( ( nSearchPos = aStr.Search('/') ) != STRING_NOTFOUND && nSearchPos < nSpacePos ) ) )
return aF.nLen;
else
{
// Link fields aren't supported, but they are bound to an OLE object
// that needs to be roundtripped
if ( aF.nId == 56 )
bEmbeddObj = true;
// Field not supported: store the field code for later use
maFieldStack.back().SetBookmarkCode( aStr );
return aF.nLen - aF.nLRes - 1; // so viele ueberlesen, das Resultfeld
// wird wie Haupttext eingelesen
}
}
else
{ // Lies Feld
long nOldPos = pStrm->Tell();
String aStr;
if ( aF.nId == 6 && aF.bCodeNest )
{
// TODO Extract the whole code string using the nested codes
aF.nLCode = pSBase->WW8ReadString( *pStrm, aStr, pPlcxMan->GetCpOfs() +
aF.nSCode, aF.nSRes - aF.nSCode - 1, eTextCharSet );
}
else
{
aF.nLCode = pSBase->WW8ReadString( *pStrm, aStr, pPlcxMan->GetCpOfs()+
aF.nSCode, aF.nLCode, eTextCharSet );
}
// #i51312# - graphics inside field code not supported by Writer.
// Thus, delete character 0x01, which stands for such a graphic.
if (aF.nId==51) //#i56768# only do it for the MACROBUTTON field, since DropListFields need the 0x01.
{
aStr = comphelper::string::remove(aStr, 0x01);
}
eF_ResT eRes = (this->*aWW8FieldTab[aF.nId])( &aF, aStr );
pStrm->Seek( nOldPos );
switch ( eRes )
{
case FLD_OK:
return aF.nLen; // alles OK
case FLD_TAGTXT:
if ((nFieldTagBad[nI] & nMask)) // Flag: Tag bad
return Read_F_Tag(&aF); // Taggen
//fall through...
case FLD_TEXT:
// so viele ueberlesen, das Resultfeld wird wie Haupttext
// eingelesen
// attributes can start at char 0x14 so skip one
// char more back == "-2"
if (aF.nLRes)
return aF.nLen - aF.nLRes - 2;
else
return aF.nLen;
case FLD_TAGIGN:
if( ( nFieldTagBad[nI] & nMask ) ) // Flag: Tag bad
return Read_F_Tag( &aF ); // Taggen
return aF.nLen; // oder ignorieren
case FLD_READ_FSPA:
return aF.nLen - aF.nLRes - 2; // auf Char 1 positionieren
default:
return aF.nLen; // ignorieren
}
}
}
//-----------------------------------------
// Felder Taggen
//-----------------------------------------
// MakeTagString() gibt als Returnwert die Position des ersten
// CR / Zeilenende / Seitenumbruch in pText und wandelt auch nur bis dort
// Wenn keins dieser Sonderzeichen enthalten ist, wird 0 zurueckgeliefert.
void SwWW8ImplReader::MakeTagString( String& rStr, const String& rOrg )
{
String sHex( CREATE_CONST_ASC( "\\x" ));
bool bAllowCr = SwFltGetFlag( nFieldFlags, SwFltControlStack::TAGS_IN_TEXT )
|| SwFltGetFlag( nFieldFlags, SwFltControlStack::ALLOW_FLD_CR );
sal_Unicode cChar;
rStr = rOrg;
for( xub_StrLen nI = 0;
nI < rStr.Len() && rStr.Len() < (MAX_FIELDLEN - 4); ++nI )
{
bool bSetAsHex = false;
switch( cChar = rStr.GetChar( nI ) )
{
case 132: // Typographische Anfuehrungszeichen
case 148: // gegen normale tauschen
case 147:
rStr.SetChar( nI, '"' );
break;
case 19:
rStr.SetChar( nI, '{' );
break; // 19..21 zu {|}
case 20:
rStr.SetChar( nI, '|' );
break;
case 21:
rStr.SetChar( nI, '}' );
break;
case '\\': // \{|} per \ Taggen
case '{':
case '|':
case '}':
rStr.Insert( nI, '\\' );
++nI;
break;
case 0x0b:
case 0x0c:
case 0x0d:
if( bAllowCr )
rStr.SetChar( nI, '\n' );
else
bSetAsHex = true;
break;
case 0xFE:
case 0xFF:
bSetAsHex = true;
break;
default:
bSetAsHex = 0x20 > cChar;
break;
}
if( bSetAsHex )
{
//all Hex-Numbers with \x before
String sTmp( sHex );
if( cChar < 0x10 )
sTmp += '0';
sTmp += String::CreateFromInt32( cChar, 16 );
rStr.Replace( nI, 1 , sTmp );
nI += sTmp.Len() - 1;
}
}
if( rStr.Len() > (MAX_FIELDLEN - 4))
rStr.Erase( MAX_FIELDLEN - 4 );
}
void SwWW8ImplReader::InsertTagField( const sal_uInt16 nId, const String& rTagText )
{
String aName( CREATE_CONST_ASC( "WwFieldTag" ) );
if( SwFltGetFlag( nFieldFlags, SwFltControlStack::TAGS_DO_ID ) ) // Nummer?
aName += String::CreateFromInt32( nId ); // ausgeben ?
if( SwFltGetFlag(nFieldFlags, SwFltControlStack::TAGS_IN_TEXT))
{
aName += rTagText; // als Txt taggen
rDoc.InsertString(*pPaM, aName,
IDocumentContentOperations::INS_NOHINTEXPAND);
}
else
{ // normal tagggen
SwFieldType* pFT = rDoc.InsertFldType(
SwSetExpFieldType( &rDoc, aName, nsSwGetSetExpType::GSE_STRING ) );
SwSetExpField aFld( (SwSetExpFieldType*)pFT, rTagText ); // SUB_INVISIBLE
sal_uInt16 nSubType = ( SwFltGetFlag( nFieldFlags, SwFltControlStack::TAGS_VISIBLE ) ) ? 0 : nsSwExtendedSubType::SUB_INVISIBLE;
aFld.SetSubType(nSubType | nsSwGetSetExpType::GSE_STRING);
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
}
}
long SwWW8ImplReader::Read_F_Tag( WW8FieldDesc* pF )
{
long nOldPos = pStrm->Tell();
WW8_CP nStart = pF->nSCode - 1; // mit 0x19 am Anfang
long nL = pF->nLen; // Gesamtlaenge mit Resultat u. Nest
if( nL > MAX_FIELDLEN )
nL = MAX_FIELDLEN; // MaxLaenge, durch Quoten
// max. 4* so gross
String sFTxt;
nL = pSBase->WW8ReadString( *pStrm, sFTxt,
pPlcxMan->GetCpOfs() + nStart, nL, eStructCharSet);
String aTagText;
MakeTagString( aTagText, sFTxt );
InsertTagField( pF->nId, aTagText );
pStrm->Seek( nOldPos );
return pF->nLen;
}
//-----------------------------------------
// normale Felder
//-----------------------------------------
eF_ResT SwWW8ImplReader::Read_F_Input( WW8FieldDesc* pF, String& rStr )
{
String aDef;
String aQ;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if( !aQ.Len() )
aQ = aReadParam.GetResult();
break;
case 'd':
case 'D':
{
xub_StrLen n = aReadParam.GoToTokenParam();
if( STRING_NOTFOUND != n )
aDef = aReadParam.GetResult();
}
break;
}
}
if( !aDef.Len() )
aDef = GetFieldResult( pF );
if ( pF->nId != 0x01 ) // 0x01 fields have no result
{
SwInputField aFld( (SwInputFieldType*)rDoc.GetSysFldType( RES_INPUTFLD ),
aDef, aQ, INP_TXT, 0 ); // sichtbar ( geht z.Zt. nicht anders )
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
}
return FLD_OK;
}
// GetFieldResult alloziert einen String und liest das Feld-Resultat ein
String SwWW8ImplReader::GetFieldResult( WW8FieldDesc* pF )
{
long nOldPos = pStrm->Tell();
WW8_CP nStart = pF->nSRes; // Start Resultat
long nL = pF->nLRes; // Laenge Resultat
if( !nL )
return aEmptyStr; // kein Resultat
if( nL > MAX_FIELDLEN )
nL = MAX_FIELDLEN; // MaxLaenge, durch Quoten
// max. 4* so gross
String sRes;
nL = pSBase->WW8ReadString( *pStrm, sRes, pPlcxMan->GetCpOfs() + nStart,
nL, eStructCharSet );
pStrm->Seek( nOldPos );
//replace CR 0x0D with LF 0x0A
sRes.SearchAndReplaceAll(0x0D, 0x0A);
//replace VT 0x0B with LF 0x0A
sRes.SearchAndReplaceAll(0x0B, 0x0A);
return sRes;
}
/*
Bookmarks can be set with fields SET and ASK, and they can be referenced with
REF. When set, they behave like variables in writer, otherwise they behave
like normal bookmarks. We can check whether we should use a show variable
instead of a normal bookmark ref by converting to "show variable" at the end
of the document those refs which look for the content of a bookmark but whose
bookmarks were set with SET or ASK. (See SwWW8FltRefStack)
The other piece of the puzzle is that refs that point to the "location" of the
bookmark will in word actually point to the last location where the bookmark
was set with SET or ASK, not the actual bookmark. This is only noticable when
a document sets the bookmark more than once. This is because word places the
true bookmark at the location of the last set, but the refs will display the
position of the first set before the ref.
So what we will do is
1) keep a list of all bookmarks that were set, any bookmark names mentioned
here that are refed by content will be converted to show variables.
2) create pseudo bookmarks for every position that a bookmark is set with SET
or ASK but has no existing bookmark. We can then keep a map from the original
bookmark name to the new one. As we parse the document new pseudo names will
replace the older ones, so the map always contains the bookmark of the
location that msword itself would use.
3) word's bookmarks are case insensitive, writers are not. So we need to
map case different versions together, regardless of whether they are
variables or not.
4) when a reference is (first) SET or ASK, the bookmark associated with it
is placed around the 0x14 0x15 result part of the field. We will fiddle
the placement to be the writer equivalent of directly before and after
the field, which gives the same effect and meaning, to do so we must
get any bookmarks in the field range, and begin them immediately before
the set/ask field, and end them directly afterwards. MapBookmarkVariables
returns an identifier of the bookmark attribute to close after inserting
the appropiate set/ask field.
*/
long SwWW8ImplReader::MapBookmarkVariables(const WW8FieldDesc* pF,
String &rOrigName, const String &rData)
{
OSL_ENSURE(pPlcxMan,"No pPlcxMan");
long nNo;
/*
If there was no bookmark associated with this set field, then we create a
pseudo one and insert it in the document.
*/
sal_uInt16 nIndex;
pPlcxMan->GetBook()->MapName(rOrigName);
String sName = pPlcxMan->GetBook()->GetBookmark(
pF->nSCode, pF->nSCode + pF->nLen, nIndex);
if (sName.Len())
{
pPlcxMan->GetBook()->SetStatus(nIndex, BOOK_IGNORE);
nNo = nIndex;
}
else
{
sName = CREATE_CONST_ASC("WWSetBkmk");
nNo = pReffingStck->aFieldVarNames.size()+1;
sName += String::CreateFromInt32(nNo);
nNo += pPlcxMan->GetBook()->GetIMax();
}
pReffedStck->NewAttr(*pPaM->GetPoint(),
SwFltBookmark(BookmarkToWriter(sName), rData, nNo, 0));
pReffingStck->aFieldVarNames[rOrigName] = sName;
return nNo;
}
/*
Word can set a bookmark with set or with ask, such a bookmark is equivalent to
our variables, but until the end of a document we cannot be sure if a bookmark
is a variable or not, at the end we will have a list of reference names which
were set or asked, all bookmarks using the content of those bookmarks are
converted to show variables, those that reference the position of the field
can be left as references, because a bookmark is also inserted at the position
of a set or ask field, either by word, or in some special cases by the import
filter itself.
*/
SwFltStackEntry *SwWW8FltRefStack::RefToVar(const SwField* pFld,
SwFltStackEntry &rEntry)
{
SwFltStackEntry *pRet=0;
if (pFld && RES_GETREFFLD == pFld->Which())
{
//Get the name of the ref field, and see if actually a variable
const String &rName = pFld->GetPar1();
::std::map<String,String,SwWW8FltRefStack::ltstr>::const_iterator
aResult = aFieldVarNames.find(rName);
if (aResult != aFieldVarNames.end())
{
SwGetExpField aFld( (SwGetExpFieldType*)
pDoc->GetSysFldType(RES_GETEXPFLD), rName, nsSwGetSetExpType::GSE_STRING, 0);
delete rEntry.pAttr;
SwFmtFld aTmp(aFld);
rEntry.pAttr = aTmp.Clone();
pRet = &rEntry;
}
}
return pRet;
}
String SwWW8ImplReader::GetMappedBookmark(const String &rOrigName)
{
String sName(BookmarkToWriter(rOrigName));
OSL_ENSURE(pPlcxMan,"no pPlcxMan");
pPlcxMan->GetBook()->MapName(sName);
//See if there has been a variable set with this name, if so get
//the pseudo bookmark name that was set with it.
::std::map<String,String,SwWW8FltRefStack::ltstr>::const_iterator aResult =
pReffingStck->aFieldVarNames.find(sName);
const String &rBkmName = (aResult == pReffingStck->aFieldVarNames.end())
? sName : (*aResult).second;
return rBkmName;
}
// "ASK"
eF_ResT SwWW8ImplReader::Read_F_InputVar( WW8FieldDesc* pF, String& rStr )
{
String sOrigName;
String aQ;
String aDef;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if (!sOrigName.Len())
sOrigName = aReadParam.GetResult();
else if( !aQ.Len() )
aQ = aReadParam.GetResult();
break;
case 'd':
case 'D':
if (STRING_NOTFOUND != aReadParam.GoToTokenParam())
aDef = aReadParam.GetResult();
break;
}
}
if( !sOrigName.Len() )
return FLD_TAGIGN; // macht ohne Textmarke keinen Sinn
String aResult(GetFieldResult(pF));
//#i24377#, munge Default Text into title as we have only one slot
//available for aResult and aDef otherwise
if (aDef.Len())
{
if (aQ.Len())
aQ.APPEND_CONST_ASC(" - ");
aQ.Append(aDef);
}
long nNo = MapBookmarkVariables(pF, sOrigName, aResult);
SwSetExpFieldType* pFT = (SwSetExpFieldType*)rDoc.InsertFldType(
SwSetExpFieldType(&rDoc, sOrigName, nsSwGetSetExpType::GSE_STRING));
SwSetExpField aFld(pFT, aResult);
aFld.SetSubType(nsSwExtendedSubType::SUB_INVISIBLE | nsSwGetSetExpType::GSE_STRING);
aFld.SetInputFlag(true);
aFld.SetPromptText( aQ );
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
pReffedStck->SetAttr(*pPaM->GetPoint(), RES_FLTR_BOOKMARK, true, nNo);
return FLD_OK;
}
// "AUTONR"
eF_ResT SwWW8ImplReader::Read_F_ANumber( WW8FieldDesc*, String& rStr )
{
if( !pNumFldType ){ // 1. Mal
SwSetExpFieldType aT( &rDoc, CREATE_CONST_ASC("AutoNr"), nsSwGetSetExpType::GSE_SEQ );
pNumFldType = rDoc.InsertFldType( aT );
}
SwSetExpField aFld( (SwSetExpFieldType*)pNumFldType, aEmptyStr,
GetNumberPara( rStr ) );
aFld.SetValue( ++nFldNum );
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
return FLD_OK;
}
// "SEQ"
eF_ResT SwWW8ImplReader::Read_F_Seq( WW8FieldDesc*, String& rStr )
{
String aSequenceName;
String aBook;
bool bCountOn = true;
String sStart;
SvxExtNumType eNumFormat = SVX_NUM_ARABIC;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if( !aSequenceName.Len() )
aSequenceName = aReadParam.GetResult();
else if( !aBook.Len() )
aBook = aReadParam.GetResult();
break;
case 'h':
break;
case '*':
nRet = aReadParam.SkipToNextToken();
if( -2 == nRet )
eNumFormat = GetNumTypeFromName( aReadParam.GetResult() );
break;
case 'r':
bCountOn = false;
nRet = aReadParam.SkipToNextToken();
if( -2 == nRet )
sStart = aReadParam.GetResult();
break;
case 'c':
bCountOn = false;
break;
case 'n':
bCountOn = true; // Nummer um eins erhoehen (default)
break;
case 's': // Outline Level
//#i19682, what am I to do with this value
break;
}
}
if (!aSequenceName.Len() && !aBook.Len())
return FLD_TAGIGN;
SwSetExpFieldType* pFT = (SwSetExpFieldType*)rDoc.InsertFldType(
SwSetExpFieldType( &rDoc, aSequenceName, nsSwGetSetExpType::GSE_SEQ ) );
SwSetExpField aFld( pFT, aEmptyStr, eNumFormat );
if (sStart.Len())
aFld.SetFormula( ( aSequenceName += '=' ) += sStart );
else if (!bCountOn)
aFld.SetFormula(aSequenceName);
rDoc.InsertPoolItem(*pPaM, SwFmtFld(aFld), 0);
return FLD_OK;
}
eF_ResT SwWW8ImplReader::Read_F_DocInfo( WW8FieldDesc* pF, String& rStr )
{
sal_uInt16 nSub=0;
// RegInfoFormat, DefaultFormat fuer DocInfoFelder
sal_uInt16 nReg = DI_SUB_AUTHOR;
bool bDateTime = false;
if( 85 == pF->nId )
{
String aDocProperty;
_ReadFieldParams aReadParam( rStr );
long nRet;
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if( !aDocProperty.Len() )
aDocProperty = aReadParam.GetResult();
break;
case '*':
//Skip over MERGEFORMAT
aReadParam.SkipToNextToken();
break;
}
}
aDocProperty = comphelper::string::remove(aDocProperty, '"');
/*
There are up to 26 fields that may be meant by 'DocumentProperty'.
Which of them is to be inserted here ?
This Problem can only be solved by implementing a name matching
method that compares the given Parameter String with the four
possible name sets (english, german, french, spanish)
*/
static const sal_Char* aName10 = "\x0F"; // SW field code
static const sal_Char* aName11 // German
= "TITEL";
static const sal_Char* aName12 // French
= "TITRE";
static const sal_Char* aName13 // English
= "TITLE";
static const sal_Char* aName14 // Spanish
= "TITRO";
static const sal_Char* aName20 = "\x15"; // SW filed code
static const sal_Char* aName21 // German
= "ERSTELLDATUM";
static const sal_Char* aName22 // French
= "CR\xC9\xC9";
static const sal_Char* aName23 // English
= "CREATED";
static const sal_Char* aName24 // Spanish
= "CREADO";
static const sal_Char* aName30 = "\x16"; // SW filed code
static const sal_Char* aName31 // German
= "ZULETZTGESPEICHERTZEIT";
static const sal_Char* aName32 // French
= "DERNIERENREGISTREMENT";
static const sal_Char* aName33 // English
= "SAVED";
static const sal_Char* aName34 // Spanish
= "MODIFICADO";
static const sal_Char* aName40 = "\x17"; // SW filed code
static const sal_Char* aName41 // German
= "ZULETZTGEDRUCKT";
static const sal_Char* aName42 // French
= "DERNI\xC8" "REIMPRESSION";
static const sal_Char* aName43 // English
= "LASTPRINTED";
static const sal_Char* aName44 // Spanish
= "HUPS PUPS";
static const sal_Char* aName50 = "\x18"; // SW filed code
static const sal_Char* aName51 // German
= "\xDC" "BERARBEITUNGSNUMMER";
static const sal_Char* aName52 // French
= "NUM\xC9" "RODEREVISION";
static const sal_Char* aName53 // English
= "REVISIONNUMBER";
static const sal_Char* aName54 // Spanish
= "SNUBBEL BUBBEL";
static const sal_uInt16 nFldCnt = 5;
// additional fields are to be coded soon! :-)
static const sal_uInt16 nLangCnt = 4;
static const sal_Char *aNameSet_26[nFldCnt][nLangCnt+1] =
{
{aName10, aName11, aName12, aName13, aName14},
{aName20, aName21, aName22, aName23, aName24},
{aName30, aName31, aName32, aName33, aName34},
{aName40, aName41, aName42, aName43, aName44},
{aName50, aName51, aName52, aName53, aName54}
};
bool bFldFound= false;
sal_uInt16 nFIdx;
for(sal_uInt16 nLIdx=1; !bFldFound && (nLangCnt > nLIdx); ++nLIdx)
{
for(nFIdx = 0; !bFldFound && (nFldCnt > nFIdx); ++nFIdx)
{
if( aDocProperty.Equals( String( aNameSet_26[nFIdx][nLIdx],
RTL_TEXTENCODING_MS_1252 ) ) )
{
bFldFound = true;
pF->nId = aNameSet_26[nFIdx][0][0];
}
}
}
if( !bFldFound )
{
SwDocInfoField aFld( (SwDocInfoFieldType*)
rDoc.GetSysFldType( RES_DOCINFOFLD ), DI_CUSTOM|nReg, aDocProperty, GetFieldResult( pF ) );
rDoc.InsertPoolItem(*pPaM, SwFmtFld(aFld), 0);
return FLD_OK;
}
}
switch( pF->nId )
{
case 14:
/* kann alle INFO-Vars!! */
nSub = DI_KEYS;
break;
case 15:
nSub = DI_TITEL;
break;
case 16:
nSub = DI_THEMA;
break;
case 18:
nSub = DI_KEYS;
break;
case 19:
nSub = DI_COMMENT;
break;
case 20:
nSub = DI_CHANGE;
nReg = DI_SUB_AUTHOR;
break;
case 21:
nSub = DI_CREATE;
nReg = DI_SUB_DATE;
bDateTime = true;
break;
case 23:
nSub = DI_PRINT;
nReg = DI_SUB_DATE;
bDateTime = true;
break;
case 24:
nSub = DI_DOCNO;
break;
case 22:
nSub = DI_CHANGE;
nReg = DI_SUB_DATE;
bDateTime = true;
break;
case 25:
nSub = DI_CHANGE;
nReg = DI_SUB_TIME;
bDateTime = true;
break;
}
sal_uInt32 nFormat = 0;
sal_uInt16 nLang(0);
if (bDateTime)
{
short nDT = GetTimeDatePara(rStr, nFormat, nLang, pF->nId);
switch (nDT)
{
case NUMBERFORMAT_DATE:
nReg = DI_SUB_DATE;
break;
case NUMBERFORMAT_TIME:
nReg = DI_SUB_TIME;
break;
case NUMBERFORMAT_DATETIME:
nReg = DI_SUB_DATE;
break;
default:
nReg = DI_SUB_DATE;
break;
}
}
SwDocInfoField aFld( (SwDocInfoFieldType*)
rDoc.GetSysFldType( RES_DOCINFOFLD ), nSub|nReg, String(), nFormat );
if (bDateTime)
ForceFieldLanguage(aFld, nLang);
rDoc.InsertPoolItem(*pPaM, SwFmtFld(aFld), 0);
return FLD_OK;
}
eF_ResT SwWW8ImplReader::Read_F_Author( WW8FieldDesc*, String& )
{
// SH: Das SwAuthorField bezeichnet nicht den urspruenglichen
// Autor, sondern den aktuellen Benutzer, also besser ueber DocInfo
SwDocInfoField aFld( (SwDocInfoFieldType*)
rDoc.GetSysFldType( RES_DOCINFOFLD ),
DI_CREATE|DI_SUB_AUTHOR, String() );
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
return FLD_OK;
}
eF_ResT SwWW8ImplReader::Read_F_TemplName( WW8FieldDesc*, String& )
{
SwTemplNameField aFld( (SwTemplNameFieldType*)
rDoc.GetSysFldType( RES_TEMPLNAMEFLD ), FF_NAME );
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
return FLD_OK;
}
// Sowohl das Datum- wie auch das Uhrzeit-Feld kann fuer Datum, fuer Uhrzeit
// oder fuer beides benutzt werden.
eF_ResT SwWW8ImplReader::Read_F_DateTime( WW8FieldDesc*pF, String& rStr )
{
bool bHijri = false;
_ReadFieldParams aReadParam(rStr);
long nTok;
while (-1 != (nTok = aReadParam.SkipToNextToken()))
{
switch (nTok)
{
default:
case 'l':
case -2:
break;
case 'h':
bHijri = true;
break;
case 's':
//Saka Calendar, should we do something with this ?
break;
}
}
sal_uInt32 nFormat = 0;
sal_uInt16 nLang(0);
short nDT = GetTimeDatePara(rStr, nFormat, nLang, ww::eDATE, bHijri);
if( NUMBERFORMAT_UNDEFINED == nDT ) // no D/T-Formatstring
{
if (32 == pF->nId)
{
nDT = NUMBERFORMAT_TIME;
nFormat = rDoc.GetNumberFormatter()->GetFormatIndex(
NF_TIME_START, LANGUAGE_SYSTEM );
}
else
{
nDT = NUMBERFORMAT_DATE;
nFormat = rDoc.GetNumberFormatter()->GetFormatIndex(
NF_DATE_START, LANGUAGE_SYSTEM );
}
}
if (nDT & NUMBERFORMAT_DATE)
{
SwDateTimeField aFld((SwDateTimeFieldType*)
rDoc.GetSysFldType(RES_DATETIMEFLD ), DATEFLD, nFormat);
ForceFieldLanguage(aFld, nLang);
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
}
else if (nDT == NUMBERFORMAT_TIME)
{
SwDateTimeField aFld((SwDateTimeFieldType*)
rDoc.GetSysFldType(RES_DATETIMEFLD), TIMEFLD, nFormat);
ForceFieldLanguage(aFld, nLang);
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
}
return FLD_OK;
}
eF_ResT SwWW8ImplReader::Read_F_FileName(WW8FieldDesc*, String &rStr)
{
SwFileNameFormat eType = FF_NAME;
long nRet;
_ReadFieldParams aReadParam(rStr);
while (-1 != (nRet = aReadParam.SkipToNextToken()))
{
switch (nRet)
{
case 'p':
eType = FF_PATHNAME;
break;
case '*':
//Skip over MERGEFORMAT
aReadParam.SkipToNextToken();
break;
default:
OSL_ENSURE(!this, "unknown option in FileName field");
break;
}
}
SwFileNameField aFld(
(SwFileNameFieldType*)rDoc.GetSysFldType(RES_FILENAMEFLD), eType);
rDoc.InsertPoolItem(*pPaM, SwFmtFld(aFld), 0);
return FLD_OK;
}
eF_ResT SwWW8ImplReader::Read_F_Anz( WW8FieldDesc* pF, String& rStr )
{ // SeitenZahl - Feld
sal_uInt16 nSub = DS_PAGE;
switch ( pF->nId ){
case 27: nSub = DS_WORD; break; // Wordzahl
case 28: nSub = DS_CHAR; break; // Zeichenzahl
}
SwDocStatField aFld( (SwDocStatFieldType*)
rDoc.GetSysFldType( RES_DOCSTATFLD ), nSub,
GetNumberPara( rStr ) );
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
return FLD_OK;
}
eF_ResT SwWW8ImplReader::Read_F_CurPage( WW8FieldDesc*, String& rStr )
{
// Seitennummer
SwPageNumberField aFld( (SwPageNumberFieldType*)
rDoc.GetSysFldType( RES_PAGENUMBERFLD ), PG_RANDOM,
GetNumberPara(rStr, true));
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
return FLD_OK;
}
eF_ResT SwWW8ImplReader::Read_F_Symbol( WW8FieldDesc*, String& rStr )
{
//e.g. #i20118#
String aQ;
String aName;
sal_Int32 nSize = 0;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if( !aQ.Len() )
aQ = aReadParam.GetResult();
break;
case 'f':
case 'F':
{
xub_StrLen n = aReadParam.GoToTokenParam();
if( STRING_NOTFOUND != n )
aName = aReadParam.GetResult();
}
break;
case 's':
case 'S':
{
String aSiz;
xub_StrLen n = aReadParam.GoToTokenParam();
if (STRING_NOTFOUND != n)
aSiz = aReadParam.GetResult();
if (aSiz.Len())
nSize = aSiz.ToInt32() * 20; // pT -> twip
}
break;
}
}
if( !aQ.Len() )
return FLD_TAGIGN; // -> kein 0-Zeichen in Text
if (sal_Unicode cChar = static_cast<sal_Unicode>(aQ.ToInt32()))
{
if (aName.Len()) // Font Name set ?
{
SvxFontItem aFont(FAMILY_DONTKNOW, aName, aEmptyStr,
PITCH_DONTKNOW, RTL_TEXTENCODING_SYMBOL, RES_CHRATR_FONT);
NewAttr(aFont); // new Font
}
if (nSize > 0) //#i20118#
{
SvxFontHeightItem aSz(nSize, 100, RES_CHRATR_FONTSIZE);
NewAttr(aSz);
}
rDoc.InsertString(*pPaM, cChar);
if (nSize > 0)
pCtrlStck->SetAttr(*pPaM->GetPoint(), RES_CHRATR_FONTSIZE);
if (aName.Len())
pCtrlStck->SetAttr(*pPaM->GetPoint(), RES_CHRATR_FONT);
}
else
{
rDoc.InsertString(*pPaM, CREATE_CONST_ASC("###"));
}
return FLD_OK;
}
// "EINBETTEN"
eF_ResT SwWW8ImplReader::Read_F_Embedd( WW8FieldDesc*, String& rStr )
{
String sHost;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
sHost = aReadParam.GetResult();
break;
case 's':
// use ObjectSize
break;
}
}
if( bObj && nPicLocFc )
nObjLocFc = nPicLocFc;
bEmbeddObj = true;
return FLD_TEXT;
}
// "SET"
eF_ResT SwWW8ImplReader::Read_F_Set( WW8FieldDesc* pF, String& rStr )
{
String sOrigName;
String sVal;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if( !sOrigName.Len() )
sOrigName = aReadParam.GetResult();
else if( !sVal.Len() )
sVal = aReadParam.GetResult();
break;
}
}
long nNo = MapBookmarkVariables(pF,sOrigName,sVal);
SwFieldType* pFT = rDoc.InsertFldType( SwSetExpFieldType( &rDoc, sOrigName,
nsSwGetSetExpType::GSE_STRING ) );
SwSetExpField aFld( (SwSetExpFieldType*)pFT, sVal, ULONG_MAX );
aFld.SetSubType(nsSwExtendedSubType::SUB_INVISIBLE | nsSwGetSetExpType::GSE_STRING);
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
pReffedStck->SetAttr(*pPaM->GetPoint(), RES_FLTR_BOOKMARK, true, nNo);
return FLD_OK;
}
// "REF"
eF_ResT SwWW8ImplReader::Read_F_Ref( WW8FieldDesc*, String& rStr )
{ // Reference - Field
String sOrigBkmName;
REFERENCEMARK eFormat = REF_CONTENT;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if( !sOrigBkmName.Len() ) // get name of bookmark
sOrigBkmName = aReadParam.GetResult();
break;
/* References to numbers in Word could be either to a numbered
paragraph or to a chapter number. However Word does not seem to
have the capability we do, of refering to the chapter number some
other bookmark is in. As a result, cross-references to chapter
numbers in a word document will be cross-references to a numbered
paragraph, being the chapter heading paragraph. As it happens, our
cross-references to numbered paragraphs will do the right thing
when the target is a numbered chapter heading, so there is no need
for us to use the REF_CHAPTER bookmark format on import.
*/
case 'n':
eFormat = REF_NUMBER_NO_CONTEXT;
break;
case 'r':
eFormat = REF_NUMBER;
break;
case 'w':
eFormat = REF_NUMBER_FULL_CONTEXT;
break;
case 'p':
eFormat = REF_UPDOWN;
break;
case 'h':
break;
default:
// unimplemented switch: just do 'nix nought nothing' :-)
break;
}
}
String sBkmName(GetMappedBookmark(sOrigBkmName));
SwGetRefField aFld(
(SwGetRefFieldType*)rDoc.GetSysFldType( RES_GETREFFLD ),
sBkmName,REF_BOOKMARK,0,eFormat);
if (eFormat == REF_CONTENT)
{
/*
If we are just inserting the contents of the bookmark, then it
is possible that the bookmark is actually a variable, so we
must store it until the end of the document to see if it was,
in which case we'll turn it into a show variable
*/
pReffingStck->NewAttr( *pPaM->GetPoint(), SwFmtFld(aFld) );
pReffingStck->SetAttr( *pPaM->GetPoint(), RES_TXTATR_FIELD);
}
else
{
rDoc.InsertPoolItem(*pPaM, SwFmtFld(aFld), 0);
}
return FLD_OK;
}
// Note Reference - Field
eF_ResT SwWW8ImplReader::Read_F_NoteReference( WW8FieldDesc*, String& rStr )
{
String aBkmName;
bool bAboveBelow = false;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if( !aBkmName.Len() ) // get name of foot/endnote
aBkmName = aReadParam.GetResult();
break;
case 'r':
// activate flag 'Chapter Number'
break;
case 'p':
bAboveBelow = true;
break;
case 'h':
break;
default:
// unimplemented switch: just do 'nix nought nothing' :-)
break;
}
}
// set Sequence No of corresponding Foot-/Endnote to Zero
// (will be corrected in
SwGetRefField aFld( (SwGetRefFieldType*)
rDoc.GetSysFldType( RES_GETREFFLD ), aBkmName, REF_FOOTNOTE, 0,
REF_ONLYNUMBER );
pReffingStck->NewAttr(*pPaM->GetPoint(), SwFmtFld(aFld));
pReffingStck->SetAttr(*pPaM->GetPoint(), RES_TXTATR_FIELD);
if (bAboveBelow)
{
SwGetRefField aFld2( (SwGetRefFieldType*)
rDoc.GetSysFldType( RES_GETREFFLD ),aBkmName, REF_FOOTNOTE, 0,
REF_UPDOWN );
pReffingStck->NewAttr(*pPaM->GetPoint(), SwFmtFld(aFld2));
pReffingStck->SetAttr(*pPaM->GetPoint(), RES_TXTATR_FIELD);
}
return FLD_OK;
}
// "SEITENREF"
eF_ResT SwWW8ImplReader::Read_F_PgRef( WW8FieldDesc*, String& rStr )
{
String sOrigName;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if( !sOrigName.Len() )
sOrigName = aReadParam.GetResult();
break;
}
}
String sName(GetMappedBookmark(sOrigName));
#if defined(WW_NATIVE_TOC)
if (1) {
::rtl::OUString aBookmarkName=(RTL_CONSTASCII_USTRINGPARAM("_REF"));
maFieldStack.back().SetBookmarkName(aBookmarkName);
maFieldStack.back().SetBookmarkType(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(ODF_PAGEREF)));
maFieldStack.back().AddParam(rtl::OUString(), sName);
return FLD_TEXT;
}
#endif
SwGetRefField aFld(
(SwGetRefFieldType*)rDoc.GetSysFldType( RES_GETREFFLD ), sName,
REF_BOOKMARK, 0, REF_PAGE );
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
return FLD_OK;
}
// "MACROSCHALTFL"ACHE"
eF_ResT SwWW8ImplReader::Read_F_Macro( WW8FieldDesc*, String& rStr)
{
String aName;
String aVText;
long nRet;
bool bNewVText = true;
bool bBracket = false;
_ReadFieldParams aReadParam( rStr );
xub_StrLen nOffset = 0;
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if( !aName.Len() )
aName = aReadParam.GetResult();
else if( !aVText.Len() || bBracket )
{
nOffset = aReadParam.GetTokenSttPtr() + 1;
if( bBracket )
aVText += ' ';
aVText += aReadParam.GetResult();
if (bNewVText)
{
bBracket = aVText.EqualsIgnoreCaseAscii('[', 1, 0)
? true : false;
bNewVText = false;
}
else if( aVText.GetChar( aVText.Len()-1 ) == ']' )
bBracket = false;
}
break;
}
}
if( !aName.Len() )
return FLD_TAGIGN; // makes no sense without Makro-Name
aName.InsertAscii( "StarOffice.Standard.Modul1.", 0 );
SwMacroField aFld( (SwMacroFieldType*)
rDoc.GetSysFldType( RES_MACROFLD ), aName, aVText );
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
WW8_CP nOldCp = pPlcxMan->Where();
WW8_CP nCp = nOldCp + nOffset;
SwPaM aPaM(*pPaM);
aPaM.SetMark();
aPaM.Move(fnMoveBackward);
aPaM.Exchange();
mpPostProcessAttrsInfo = new WW8PostProcessAttrsInfo(nCp, nCp, aPaM);
return FLD_OK;
}
WW8PostProcessAttrsInfo::WW8PostProcessAttrsInfo(WW8_CP nCpStart, WW8_CP nCpEnd,
SwPaM & rPaM)
: mbCopy(false),
mnCpStart(nCpStart),
mnCpEnd(nCpEnd),
mPaM(*rPaM.GetPoint(), *rPaM.GetMark()),
mItemSet(rPaM.GetDoc()->GetAttrPool(), RES_CHRATR_BEGIN, RES_PARATR_END - 1)
{
}
bool CanUseRemoteLink(const String &rGrfName)
{
bool bUseRemote = false;
try
{
::ucbhelper::Content aCnt(rGrfName,
uno::Reference<
ucb::XCommandEnvironment >() );
rtl::OUString aTitle;
aCnt.getPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Title")))
>>= aTitle;
bUseRemote = (aTitle.getLength() > 0);
}
catch ( ... )
{
// this file did not exist, so we will not set this as graphiclink
bUseRemote = false;
}
return bUseRemote;
}
// "EINF"UGENGRAFIK"
eF_ResT SwWW8ImplReader::Read_F_IncludePicture( WW8FieldDesc*, String& rStr )
{
String aGrfName;
bool bEmbedded = true;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if (!aGrfName.Len())
ConvertFFileName(aGrfName, aReadParam.GetResult());
break;
case 'd':
bEmbedded = false; // Embedded-Flag deaktivieren
break;
case 'c':// den Converter-Namen ueberlesen
aReadParam.FindNextStringPiece();
break;
}
}
if (!bEmbedded)
bEmbedded = !CanUseRemoteLink(aGrfName);
if (!bEmbedded)
{
/*
Besonderheit:
Wir setzen jetzt den Link ins Doc und merken uns den SwFlyFrmFmt.
Da wir ja unten auf jjeden Fall mit Return-Wert FLD_READ_FSPA enden,
wird der Skip-Wert so bemessen, dass das folgende Char-1 eingelesen
wird.
Wenn wir dann in SwWW8ImplReader::ImportGraf() reinlaufen, wird
erkannt, dass wir soeben einen Grafik-Link inserted haben und
das passende SwAttrSet wird ins Frame-Format eingesetzt.
*/
SfxItemSet aFlySet( rDoc.GetAttrPool(), RES_FRMATR_BEGIN,
RES_FRMATR_END-1 );
aFlySet.Put( SwFmtAnchor( FLY_AS_CHAR ) );
aFlySet.Put( SwFmtVertOrient( 0, text::VertOrientation::TOP, text::RelOrientation::FRAME ));
pFlyFmtOfJustInsertedGraphic = rDoc.Insert( *pPaM,
aGrfName,
aEmptyStr,
0, // Graphic*
&aFlySet,
0, 0); // SwFrmFmt*
maGrfNameGenerator.SetUniqueGraphName(pFlyFmtOfJustInsertedGraphic,
INetURLObject(aGrfName).GetBase());
}
return FLD_READ_FSPA;
}
String wwSectionNamer::UniqueName()
{
String aName(msFileLinkSeed);
aName += String::CreateFromInt32(++mnFileSectionNo);
return mrDoc.GetUniqueSectionName(&aName);
}
// "EINFUEGENTEXT"
eF_ResT SwWW8ImplReader::Read_F_IncludeText( WW8FieldDesc* /*pF*/, String& rStr )
{
String aPara;
String aBook;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if( !aPara.Len() )
aPara = aReadParam.GetResult();
else if( !aBook.Len() )
aBook = aReadParam.GetResult();
break;
case '*':
//Skip over MERGEFORMAT
aReadParam.SkipToNextToken();
break;
}
}
ConvertFFileName(aPara, aPara);
if (aBook.Len() && aBook.GetChar( 0 ) != '\\')
{
// Bereich aus Quelle ( kein Switch ) ?
ConvertUFName(aBook);
aPara += sfx2::cTokenSeperator;
aPara += sfx2::cTokenSeperator;
aPara += aBook;
}
/*
##509##
What we will do is insert a section to be linked to a file, but just in
case the file is not available we will fill in the section with the stored
content of this winword field as a fallback.
*/
SwPosition aTmpPos(*pPaM->GetPoint());
SwSectionData aSection(FILE_LINK_SECTION,
maSectionNameGenerator.UniqueName());
aSection.SetLinkFileName( aPara );
aSection.SetProtectFlag(true);
SwSection *const pSection =
rDoc.InsertSwSection(*pPaM, aSection, 0, 0, false);
OSL_ENSURE(pSection, "no section inserted");
if (!pSection)
return FLD_TEXT;
const SwSectionNode* pSectionNode = pSection->GetFmt()->GetSectionNode();
OSL_ENSURE(pSectionNode, "no section node!");
if (!pSectionNode)
return FLD_TEXT;
pPaM->GetPoint()->nNode = pSectionNode->GetIndex()+1;
pPaM->GetPoint()->nContent.Assign(pPaM->GetCntntNode(), 0 );
//we have inserted a section before this point, so adjust pos
//for future page/section segment insertion
maSectionManager.PrependedInlineNode(aTmpPos, *pPaM->GetNode());
return FLD_TEXT;
}
// "SERIENDRUCKFELD"
eF_ResT SwWW8ImplReader::Read_F_DBField( WW8FieldDesc* pF, String& rStr )
{
String aName;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if( !aName.Len() )
aName = aReadParam.GetResult();
break;
}
}
SwDBFieldType aD( &rDoc, aName, SwDBData() ); // Datenbank: Nichts
SwFieldType* pFT = rDoc.InsertFldType( aD );
SwDBField aFld( (SwDBFieldType*)pFT );
aFld.SetFieldCode( rStr );
String aResult;
pSBase->WW8ReadString( *pStrm, aResult, pPlcxMan->GetCpOfs()+
pF->nSRes, pF->nLRes, eTextCharSet );
aFld.InitContent(aResult);
rDoc.InsertPoolItem(*pPaM, SwFmtFld( aFld ), 0);
return FLD_OK;
}
// "N"ACHSTER"
eF_ResT SwWW8ImplReader::Read_F_DBNext( WW8FieldDesc*, String& )
{
SwDBNextSetFieldType aN;
SwFieldType* pFT = rDoc.InsertFldType( aN );
SwDBNextSetField aFld( (SwDBNextSetFieldType*)pFT, aEmptyStr, aEmptyStr,
SwDBData() ); // Datenbank: Nichts
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
return FLD_OK;
}
// "DATENSATZ"
eF_ResT SwWW8ImplReader::Read_F_DBNum( WW8FieldDesc*, String& )
{
SwDBSetNumberFieldType aN;
SwFieldType* pFT = rDoc.InsertFldType( aN );
SwDBSetNumberField aFld( (SwDBSetNumberFieldType*)pFT,
SwDBData() ); // Datenbank: Nichts
rDoc.InsertPoolItem( *pPaM, SwFmtFld( aFld ), 0 );
return FLD_OK;
}
/*
EQ , only the usage for
a. Combined Characters supported, must be exactly in the form that word
only accepts as combined charactersm, i.e.
eq \o(\s\up Y(XXX),\s\do Y(XXX))
b. Ruby Text supported, must be in the form that word recognizes as being
ruby text
...
*/
eF_ResT SwWW8ImplReader::Read_F_Equation( WW8FieldDesc*, String& rStr )
{
_ReadFieldParams aReadParam( rStr );
long cChar = aReadParam.SkipToNextToken();
if ('o' == cChar)
Read_SubF_Combined(aReadParam);
else if ('*' == cChar)
Read_SubF_Ruby(aReadParam);
return FLD_OK;
}
void SwWW8ImplReader::Read_SubF_Combined( _ReadFieldParams& rReadParam)
{
String sCombinedCharacters;
if ((-2 == rReadParam.SkipToNextToken()) &&
rReadParam.GetResult().EqualsIgnoreCaseAscii('(', 1, 0))
{
for (int i=0;i<2;i++)
{
if ('s' == rReadParam.SkipToNextToken())
{
long cChar = rReadParam.SkipToNextToken();
if (-2 != rReadParam.SkipToNextToken())
break;
String sF = rReadParam.GetResult();
if ((('u' == cChar) && sF.EqualsIgnoreCaseAscii('p', 1, 0))
|| (('d' == cChar) && sF.EqualsIgnoreCaseAscii('o', 1, 0)))
{
if (-2 == rReadParam.SkipToNextToken())
{
String sPart = rReadParam.GetResult();
xub_StrLen nBegin = sPart.Search('(');
//Word disallows brackets in this field, which
//aids figuring out the case of an end of )) vs )
xub_StrLen nEnd = sPart.Search(')');
if ((nBegin != STRING_NOTFOUND) &&
(nEnd != STRING_NOTFOUND))
{
sCombinedCharacters +=
sPart.Copy(nBegin+1,nEnd-nBegin-1);
}
}
}
}
}
}
if (sCombinedCharacters.Len())
{
SwCombinedCharField aFld((SwCombinedCharFieldType*)
rDoc.GetSysFldType(RES_COMBINED_CHARS),sCombinedCharacters);
rDoc.InsertPoolItem(*pPaM, SwFmtFld(aFld), 0);
}
}
void SwWW8ImplReader::Read_SubF_Ruby( _ReadFieldParams& rReadParam)
{
sal_uInt16 nJustificationCode=0;
String sFontName;
sal_uInt32 nFontSize=0;
String sRuby;
String sText;
long nRet;
while( -1 != ( nRet = rReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
{
String sTemp = rReadParam.GetResult();
if( sTemp.EqualsIgnoreCaseAscii( "jc", 0, 2 ) )
{
sTemp.Erase(0,2);
nJustificationCode = static_cast<sal_uInt16>(sTemp.ToInt32());
}
else if( sTemp.EqualsIgnoreCaseAscii( "hps", 0, 3 ) )
{
sTemp.Erase(0,3);
nFontSize= static_cast<sal_uInt32>(sTemp.ToInt32());
}
else if( sTemp.EqualsIgnoreCaseAscii( "Font:", 0, 5 ) )
{
sTemp.Erase(0,5);
sFontName = sTemp;
}
}
break;
case '*':
break;
case 'o':
while( -1 != ( nRet = rReadParam.SkipToNextToken() ))
{
if ('u' == nRet)
{
if (-2 == rReadParam.SkipToNextToken() &&
(rReadParam.GetResult().EqualsIgnoreCaseAscii('p', 1, 0)))
{
if (-2 == rReadParam.SkipToNextToken())
{
String sPart = rReadParam.GetResult();
xub_StrLen nBegin = sPart.Search('(');
//Word disallows brackets in this field,
xub_StrLen nEnd = sPart.Search(')');
if ((nBegin != STRING_NOTFOUND) &&
(nEnd != STRING_NOTFOUND))
{
sRuby = sPart.Copy(nBegin+1,nEnd-nBegin-1);
}
if (STRING_NOTFOUND ==
(nBegin = sPart.Search(',',nEnd)))
{
nBegin = sPart.Search(';',nEnd);
}
nEnd = sPart.SearchBackward(')');
if ((nBegin != STRING_NOTFOUND) &&
(nEnd != STRING_NOTFOUND))
{
sText = sPart.Copy(nBegin+1,nEnd-nBegin-1);
}
}
}
}
}
break;
}
}
//Translate and apply
if (sRuby.Len() && sText.Len() && sFontName.Len() && nFontSize)
{
switch (nJustificationCode)
{
case 0:
nJustificationCode=1;
break;
case 1:
nJustificationCode=3;
break;
case 2:
nJustificationCode=4;
break;
default:
case 3:
nJustificationCode=0;
break;
case 4:
nJustificationCode=2;
break;
}
SwFmtRuby aRuby(sRuby);
const SwCharFmt *pCharFmt=0;
//Make a guess at which of asian of western we should be setting
sal_uInt16 nScript;
if (pBreakIt->GetBreakIter().is())
nScript = pBreakIt->GetBreakIter()->getScriptType(sRuby, 0);
else
nScript = i18n::ScriptType::ASIAN;
//Check to see if we already have a ruby charstyle that this fits
std::vector<const SwCharFmt*>::const_iterator aEnd =
aRubyCharFmts.end();
for(std::vector<const SwCharFmt*>::const_iterator aIter
= aRubyCharFmts.begin(); aIter != aEnd; ++aIter)
{
const SvxFontHeightItem &rFH =
ItemGet<SvxFontHeightItem>(*(*aIter),
GetWhichOfScript(RES_CHRATR_FONTSIZE,nScript));
if (rFH.GetHeight() == nFontSize*10)
{
const SvxFontItem &rF = ItemGet<SvxFontItem>(*(*aIter),
GetWhichOfScript(RES_CHRATR_FONT,nScript));
if (rF.GetFamilyName().Equals(sFontName))
{
pCharFmt=*aIter;
break;
}
}
}
//Create a new char style if necessary
if (!pCharFmt)
{
SwCharFmt *pFmt=0;
String aNm;
//Take this as the base name
SwStyleNameMapper::FillUIName(RES_POOLCHR_RUBYTEXT,aNm);
aNm+=String::CreateFromInt32(aRubyCharFmts.size()+1);
pFmt = rDoc.MakeCharFmt(aNm,(SwCharFmt*)rDoc.GetDfltCharFmt());
SvxFontHeightItem aHeightItem(nFontSize*10, 100, RES_CHRATR_FONTSIZE);
SvxFontItem aFontItem(FAMILY_DONTKNOW,sFontName,
aEmptyStr,PITCH_DONTKNOW,RTL_TEXTENCODING_DONTKNOW, RES_CHRATR_FONT);
aHeightItem.SetWhich(GetWhichOfScript(RES_CHRATR_FONTSIZE,nScript));
aFontItem.SetWhich(GetWhichOfScript(RES_CHRATR_FONT,nScript));
pFmt->SetFmtAttr(aHeightItem);
pFmt->SetFmtAttr(aFontItem);
aRubyCharFmts.push_back(pFmt);
pCharFmt = pFmt;
}
//Set the charstyle and justification
aRuby.SetCharFmtName(pCharFmt->GetName());
aRuby.SetCharFmtId(pCharFmt->GetPoolFmtId());
aRuby.SetAdjustment(nJustificationCode);
NewAttr(aRuby);
rDoc.InsertString( *pPaM, sText );
pCtrlStck->SetAttr( *pPaM->GetPoint(), RES_TXTATR_CJK_RUBY );
}
}
//-----------------------------------------
// Verzeichnis-Felder
//-----------------------------------------
void lcl_toxMatchACSwitch( SwWW8ImplReader& /*rReader*/,
SwDoc& rDoc,
SwTOXBase& rBase,
_ReadFieldParams& rParam,
SwCaptionDisplay eCaptionType)
{
xub_StrLen n = rParam.GoToTokenParam();
if( STRING_NOTFOUND != n )
{
SwTOXType* pType = (SwTOXType*)rDoc.GetTOXType( TOX_ILLUSTRATIONS, 0);
rBase.RegisterToTOXType( *pType );
rBase.SetCaptionDisplay( eCaptionType );
// Read Sequence Name and store in TOXBase
String sSeqName( rParam.GetResult() );
lcl_ConvertSequenceName( sSeqName );
rBase.SetSequenceName( sSeqName );
}
}
//For all outline styles that are not in the outline numbering add them here as
//custom extra styles
bool SwWW8ImplReader::AddExtraOutlinesAsExtraStyles(SwTOXBase& rBase)
{
bool bExtras = false;
//This is the case if the winword outline numbering is set while the
//writer one is not
for (sal_uInt16 nI = 0; nI < vColl.size(); ++nI)
{
SwWW8StyInf& rSI = vColl[nI];
if (rSI.IsOutline())
{
const SwTxtFmtColl *pFmt = (const SwTxtFmtColl*)(rSI.pFmt);
sal_uInt16 nStyleLevel = rSI.nOutlineLevel;
sal_uInt16 nMaxLevel = rBase.GetLevel();
if (
nStyleLevel != (pFmt->GetAttrOutlineLevel()-1) && //<-end,zhaojianwei
nStyleLevel < nMaxLevel
)
{
String sStyles(rBase.GetStyleNames(rSI.nOutlineLevel));
if( sStyles.Len())
sStyles += TOX_STYLE_DELIMITER;
sStyles += pFmt->GetName();
rBase.SetStyleNames(sStyles, rSI.nOutlineLevel);
bExtras = true;
}
}
}
return bExtras;
}
static void EnsureMaxLevelForTemplates(SwTOXBase& rBase)
{
//If the TOC contains Template entries at levels > the evaluation level
//that was initially taken from the max normal outline level of the word TOC
//then we cannot use that for the evaluation level because writer cuts off
//all styles above that level, while word just cuts off the "standard"
//outline styles, we have no option but to expand to the highest level
//Word included.
if ((rBase.GetLevel() != MAXLEVEL) && (nsSwTOXElement::TOX_TEMPLATE & rBase.GetCreateType()))
{
for (sal_uInt16 nI = MAXLEVEL; nI > 0; --nI)
{
String sStyles(rBase.GetStyleNames(nI-1));
if (rBase.GetStyleNames(nI-1).Len())
{
rBase.SetLevel(nI);
break;
}
}
}
}
void lcl_toxMatchTSwitch(SwWW8ImplReader& rReader, SwTOXBase& rBase,
_ReadFieldParams& rParam)
{
xub_StrLen n = rParam.GoToTokenParam();
if( STRING_NOTFOUND != n )
{
String sParams( rParam.GetResult() );
if( sParams.Len() )
{
xub_StrLen nIndex = 0;
// Delimiters between styles and style levels appears to allow both ; and ,
String sTemplate( sParams.GetToken(0, ';', nIndex) );
if( STRING_NOTFOUND == nIndex )
{
nIndex=0;
sTemplate = sParams.GetToken(0, ',', nIndex);
}
if( STRING_NOTFOUND == nIndex )
{
const SwFmt* pStyle = rReader.GetStyleWithOrgWWName(sTemplate);
if( pStyle )
sTemplate = pStyle->GetName();
// Store Style for Level 0 into TOXBase
rBase.SetStyleNames( sTemplate, 0 );
}
else while( STRING_NOTFOUND != nIndex )
{
xub_StrLen nOldIndex=nIndex;
sal_uInt16 nLevel = static_cast<sal_uInt16>(
sParams.GetToken(0, ';', nIndex).ToInt32());
if( STRING_NOTFOUND == nIndex )
{
nIndex = nOldIndex;
nLevel = static_cast<sal_uInt16>(
sParams.GetToken(0, ',', nIndex).ToInt32());
}
if( (0 < nLevel) && (MAXLEVEL >= nLevel) )
{
nLevel--;
// Store Style and Level into TOXBase
const SwFmt* pStyle
= rReader.GetStyleWithOrgWWName( sTemplate );
if( pStyle )
sTemplate = pStyle->GetName();
String sStyles( rBase.GetStyleNames( nLevel ) );
if( sStyles.Len() )
sStyles += TOX_STYLE_DELIMITER;
sStyles += sTemplate;
rBase.SetStyleNames( sStyles, nLevel );
}
// read next style name...
nOldIndex = nIndex;
sTemplate = sParams.GetToken(0, ';', nIndex);
if( STRING_NOTFOUND == nIndex )
{
nIndex=nOldIndex;
sTemplate = sParams.GetToken(0, ',', nIndex);
}
}
}
}
}
sal_uInt16 wwSectionManager::CurrentSectionColCount() const
{
sal_uInt16 nIndexCols = 1;
if (!maSegments.empty())
nIndexCols = maSegments.back().maSep.ccolM1 + 1;
return nIndexCols;
}
//Will there be a new pagebreak at this position (don't know what type
//until later)
bool wwSectionManager::WillHavePageDescHere(SwNodeIndex aIdx) const
{
bool bRet = false;
if (!maSegments.empty())
{
if (!maSegments.back().IsContinous() &&
maSegments.back().maStart == aIdx)
{
bRet = true;
}
}
return bRet;
}
sal_uInt16 lcl_GetMaxValidWordTOCLevel(const SwForm &rForm)
{
// GetFormMax() returns level + 1, hence the -1
sal_uInt16 nRet = rForm.GetFormMax()-1;
// If the max of this type of TOC is greater than the max of a word
// possible toc, then clip to the word max
if (nRet > WW8ListManager::nMaxLevel)
nRet = WW8ListManager::nMaxLevel;
return nRet;
}
eF_ResT SwWW8ImplReader::Read_F_Tox( WW8FieldDesc* pF, String& rStr )
{
#if defined(WW_NATIVE_TOC)
if (1) {
::rtl::OUString aBookmarkName=(RTL_CONSTASCII_USTRINGPARAM("_TOC"));
maFieldStack.back().SetBookmarkName(aBookmarkName);
maFieldStack.back().SetBookmarkType(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(ODF_TOC)));
return FLD_TEXT;
}
#endif
if (pF->nLRes < 3)
return FLD_TEXT; // ignore (#i25440#)
TOXTypes eTox; // Baue ToxBase zusammen
switch( pF->nId )
{
case 8:
eTox = TOX_INDEX;
break;
case 13:
eTox = TOX_CONTENT;
break;
default:
eTox = TOX_USER;
break;
}
sal_uInt16 nCreateOf = (eTox == TOX_CONTENT) ? nsSwTOXElement::TOX_OUTLINELEVEL : nsSwTOXElement::TOX_MARK;
sal_uInt16 nIndexCols = 1;
const SwTOXType* pType = rDoc.GetTOXType( eTox, 0 );
SwForm aOrigForm(eTox);
SwTOXBase* pBase = new SwTOXBase( pType, aOrigForm, nCreateOf, aEmptyStr );
pBase->SetProtected(maSectionManager.CurrentSectionIsProtected());
switch( eTox ){
case TOX_INDEX:
{
sal_uInt16 eOptions = nsSwTOIOptions::TOI_SAME_ENTRY | nsSwTOIOptions::TOI_CASE_SENSITIVE;
// TOX_OUTLINELEVEL setzen wir genau dann, wenn
// die Parameter \o in 1 bis 9 liegen
// oder der Parameter \f existiert
// oder GARKEINE Switches Parameter angegeben sind.
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case 'c':
{
xub_StrLen n = aReadParam.GoToTokenParam();
if( STRING_NOTFOUND != n )
{
String sParams( aReadParam.GetResult() );
// if NO String just ignore the \c
if( sParams.Len() )
{
nIndexCols =
static_cast<sal_uInt16>(sParams.ToInt32());
}
}
}
break;
case 'e':
{
xub_StrLen n = aReadParam.GoToTokenParam();
if( STRING_NOTFOUND != n ) // if NO String just ignore the \e
{
String sDelimiter( aReadParam.GetResult() );
SwForm aForm( pBase->GetTOXForm() );
// Attention: if TOX_CONTENT brave
// GetFormMax() returns MAXLEVEL + 1 !!
sal_uInt16 nEnd = aForm.GetFormMax()-1;
for(sal_uInt16 nLevel = 1;
nLevel <= nEnd;
++nLevel)
{
// Levels count from 1
// Level 0 is reserved for CAPTION
// Delimiter statt Tabstop vor der Seitenzahl einsetzen,
// falls es eine Seitenzahl gibt:
FormTokenType ePrevType = TOKEN_END;
FormTokenType eType;
// -> #i21237#
SwFormTokens aPattern =
aForm.GetPattern(nLevel);
SwFormTokens::iterator aIt = aPattern.begin();
do
{
eType = ++aIt == aPattern.end() ? TOKEN_END : aIt->eTokenType;
if (eType == TOKEN_PAGE_NUMS)
{
if (TOKEN_TAB_STOP == ePrevType)
{
--aIt;
if(0x09 == sDelimiter.GetChar(0))
aIt->eTabAlign = SVX_TAB_ADJUST_END;
else
{
SwFormToken aToken(TOKEN_TEXT);
aToken.sText = sDelimiter;
*aIt = aToken;
}
aForm.SetPattern(nLevel, aPattern);
}
eType = TOKEN_END;
}
ePrevType = eType;
}
while (TOKEN_END != eType);
// <- #i21237#
}
pBase->SetTOXForm( aForm );
}
}
break;
case 'h':
{
eOptions |= nsSwTOIOptions::TOI_ALPHA_DELIMITTER;
}
break;
}
}
pBase->SetOptions( eOptions );
}
break;
case TOX_CONTENT:
{
bool bIsHyperlink = false;
// TOX_OUTLINELEVEL setzen wir genau dann, wenn
// die Parameter \o in 1 bis 9 liegen
// oder der Parameter \f existiert
// oder GARKEINE Switches Parameter angegeben sind.
sal_uInt16 eCreateFrom = 0;
sal_uInt16 nMaxLevel = 0;
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case 'h':
bIsHyperlink = true;
break;
case 'a':
case 'c':
lcl_toxMatchACSwitch(*this, rDoc, *pBase, aReadParam,
('c' == nRet)
? CAPTION_COMPLETE
: CAPTION_TEXT );
break;
case 'o':
{
sal_uInt16 nVal;
if( !aReadParam.GetTokenSttFromTo(0, &nVal, WW8ListManager::nMaxLevel) )
nVal = lcl_GetMaxValidWordTOCLevel(aOrigForm);
if( nMaxLevel < nVal )
nMaxLevel = nVal;
eCreateFrom |= nsSwTOXElement::TOX_OUTLINELEVEL;
}
break;
case 'f':
eCreateFrom |= nsSwTOXElement::TOX_MARK;
break;
case 'l':
{
sal_uInt16 nVal;
if( aReadParam.GetTokenSttFromTo(0, &nVal, WW8ListManager::nMaxLevel) )
{
if( nMaxLevel < nVal )
nMaxLevel = nVal;
eCreateFrom |= nsSwTOXElement::TOX_MARK;
}
}
break;
case 't': // paragraphs using special styles shall
// provide the TOX's content
lcl_toxMatchTSwitch(*this, *pBase, aReadParam);
eCreateFrom |= nsSwTOXElement::TOX_TEMPLATE;
break;
case 'p':
{
xub_StrLen n = aReadParam.GoToTokenParam();
if( STRING_NOTFOUND != n ) // if NO String just ignore the \p
{
String sDelimiter( aReadParam.GetResult() );
SwForm aForm( pBase->GetTOXForm() );
// Attention: if TOX_CONTENT brave
// GetFormMax() returns MAXLEVEL + 1 !!
sal_uInt16 nEnd = aForm.GetFormMax()-1;
for(sal_uInt16 nLevel = 1;
nLevel <= nEnd;
++nLevel)
{
// Levels count from 1
// Level 0 is reserved for CAPTION
// Delimiter statt Tabstop vor der Seitenzahl einsetzen,
// falls es eine Seitenzahl gibt:
FormTokenType ePrevType = TOKEN_END;
FormTokenType eType;
// -> #i21237#
SwFormTokens aPattern = aForm.GetPattern(nLevel);
SwFormTokens::iterator aIt = aPattern.begin();
do
{
eType = ++aIt == aPattern.end() ? TOKEN_END : aIt->eTokenType;
if (eType == TOKEN_PAGE_NUMS)
{
if (TOKEN_TAB_STOP == ePrevType)
{
--aIt;
SwFormToken aToken(TOKEN_TEXT);
aToken.sText = sDelimiter;
*aIt = aToken;
aForm.SetPattern(nLevel,
aPattern);
}
eType = TOKEN_END;
}
ePrevType = eType;
}
while( TOKEN_END != eType );
// <- #i21237#
}
pBase->SetTOXForm( aForm );
}
}
break;
case 'n': // don't print page numbers
{
// read START and END param
sal_uInt16 nStart, nEnd;
if( !aReadParam.GetTokenSttFromTo( &nStart, &nEnd,
WW8ListManager::nMaxLevel ) )
{
nStart = 1;
nEnd = aOrigForm.GetFormMax()-1;
}
// remove page numbers from this levels
SwForm aForm( pBase->GetTOXForm() );
if (aForm.GetFormMax() <= nEnd)
nEnd = aForm.GetFormMax()-1;
for (
sal_uInt16 nLevel = nStart; nLevel <= nEnd;
++nLevel
)
{
// Levels count from 1
// Level 0 is reserved for CAPTION
// Seitenzahl und ggfs. davorstehenden Tabstop
// entfernen:
FormTokenType eType;
// -> #i21237#
SwFormTokens aPattern = aForm.GetPattern(nLevel);
SwFormTokens::iterator aIt = aPattern.begin();
do
{
eType = ++aIt == aPattern.end() ? TOKEN_END : aIt->eTokenType;
if (eType == TOKEN_PAGE_NUMS)
{
aIt = aPattern.erase(aIt);
--aIt;
if (
TOKEN_TAB_STOP ==
aIt->eTokenType
)
{
aPattern.erase(aIt);
aForm.SetPattern(nLevel, aPattern);
}
eType = TOKEN_END;
}
}
while (TOKEN_END != eType);
// <- #i21237#
}
pBase->SetTOXForm( aForm );
}
break;
/*
// the following switches are not (yet) supported
// by good old StarWriter:
case 'b':
case 's':
case 'd':
break;
*/
}
}
if (bIsHyperlink)
{
SwForm aForm(pBase->GetTOXForm());
sal_uInt16 nEnd = aForm.GetFormMax()-1;
SwFormToken aLinkStart(TOKEN_LINK_START);
SwFormToken aLinkEnd(TOKEN_LINK_END);
// -> #i21237#
for(sal_uInt16 nLevel = 1; nLevel <= nEnd; ++nLevel)
{
SwFormTokens aPattern = aForm.GetPattern(nLevel);
aPattern.insert(aPattern.begin(), aLinkStart);
aPattern.push_back(aLinkEnd);
aForm.SetPattern(nLevel, aPattern);
}
// <- #i21237#
pBase->SetTOXForm(aForm);
}
if (!nMaxLevel)
nMaxLevel = WW8ListManager::nMaxLevel;
pBase->SetLevel(nMaxLevel);
const TOXTypes eType = pBase->GetTOXType()->GetType();
switch( eType )
{
case TOX_CONTENT:
{
//If we would be created from outlines, either explictly or by default
//then see if we need extra styles added to the outlines
sal_uInt16 eEffectivelyFrom = eCreateFrom ? eCreateFrom : nsSwTOXElement::TOX_OUTLINELEVEL;
if (eEffectivelyFrom & nsSwTOXElement::TOX_OUTLINELEVEL)
{
if (AddExtraOutlinesAsExtraStyles(*pBase))
eCreateFrom |= (nsSwTOXElement::TOX_TEMPLATE | nsSwTOXElement::TOX_OUTLINELEVEL);
// #i19683# Insert a text token " " between the number and entry token.
// In an ideal world we could handle the tab stop between the number and
// the entry correctly, but I currently have no clue how to obtain
// the tab stop position. It is _not_ set at the paragraph style.
SwForm* pForm = 0;
for (sal_uInt16 nI = 0; nI < vColl.size(); ++nI)
{
const SwWW8StyInf& rSI = vColl[nI];
if (rSI.IsOutlineNumbered())
{
sal_uInt16 nStyleLevel = rSI.nOutlineLevel;
const SwNumFmt& rFmt = rSI.GetOutlineNumrule()->Get( nStyleLevel );
if ( SVX_NUM_NUMBER_NONE != rFmt.GetNumberingType() )
{
++nStyleLevel;
if ( !pForm )
pForm = new SwForm( pBase->GetTOXForm() );
SwFormTokens aPattern = pForm->GetPattern(nStyleLevel);
SwFormTokens::iterator aIt =
find_if(aPattern.begin(), aPattern.end(),
SwFormTokenEqualToFormTokenType(TOKEN_ENTRY_NO));
if ( aIt != aPattern.end() )
{
SwFormToken aNumberEntrySeparator( TOKEN_TEXT );
aNumberEntrySeparator.sText = String::CreateFromAscii(" ");
aPattern.insert( ++aIt, aNumberEntrySeparator );
pForm->SetPattern( nStyleLevel, aPattern );
}
}
}
}
if ( pForm )
pBase->SetTOXForm( *pForm );
}
if (eCreateFrom)
pBase->SetCreate(eCreateFrom);
EnsureMaxLevelForTemplates(*pBase);
}
break;
case TOX_ILLUSTRATIONS:
{
if( !eCreateFrom )
eCreateFrom = nsSwTOXElement::TOX_SEQUENCE;
pBase->SetCreate( eCreateFrom );
/*
We don't know until here if we are an illustration
or not, and so have being used a TOX_CONTENT so far
which has 10 levels, while TOX has only two, this
level is set only in the constructor of SwForm, so
create a new one and copy over anything that could
be set in the old one, and remove entries from the
pattern which do not apply to illustration indices
*/
SwForm aOldForm( pBase->GetTOXForm() );
SwForm aForm( eType );
sal_uInt16 nEnd = aForm.GetFormMax()-1;
// #i21237#
for(sal_uInt16 nLevel = 1; nLevel <= nEnd; ++nLevel)
{
SwFormTokens aPattern = aOldForm.GetPattern(nLevel);
SwFormTokens::iterator new_end=remove_if(aPattern.begin(), aPattern.end(),
SwFormTokenEqualToFormTokenType(TOKEN_ENTRY_NO));
// table index imported with wrong page number format
aPattern.erase (new_end, aPattern.end() );
aForm.SetPattern(nLevel, aPattern);
aForm.SetTemplate( nLevel,
aOldForm.GetTemplate(nLevel));
}
pBase->SetTOXForm( aForm );
}
break;
default:
OSL_ENSURE(!this, "Unhandled toc options!");
break;
}
}
break;
case TOX_USER:
break;
default:
OSL_ENSURE(!this, "Unhandled toc options!");
break;
} // ToxBase fertig
// Update fuer TOX anstossen
rDoc.SetUpdateTOX(true);
// #i21237# - propagate tab stops from paragraph styles
// used in TOX to patterns of the TOX
pBase->AdjustTabStops(rDoc, sal_True);
// #i10028# - inserting a toc implicltly acts like a parabreak in word and writer
if (pPaM->GetPoint()->nContent.GetIndex())
AppendTxtNode(*pPaM->GetPoint());
const SwPosition* pPos = pPaM->GetPoint();
SwFltTOX aFltTOX( pBase, nIndexCols );
// test if there is already a break item on this node
if(SwCntntNode* pNd = pPos->nNode.GetNode().GetCntntNode())
{
const SfxItemSet* pSet = pNd->GetpSwAttrSet();
if( pSet )
{
if (SFX_ITEM_SET == pSet->GetItemState(RES_BREAK, false))
aFltTOX.SetHadBreakItem(true);
if (SFX_ITEM_SET == pSet->GetItemState(RES_PAGEDESC, false))
aFltTOX.SetHadPageDescItem(true);
}
}
//Will there be a new pagebreak at this position (don't know what type
//until later)
if (maSectionManager.WillHavePageDescHere(pPos->nNode))
aFltTOX.SetHadPageDescItem(true);
// Setze Anfang in Stack
pReffedStck->NewAttr( *pPos, aFltTOX );
rDoc.InsertTableOf(*pPaM->GetPoint(), *aFltTOX.GetBase());
//inserting a toc inserts a section before this point, so adjust pos
//for future page/section segment insertion
SwPaM aRegion(*pPaM);
aRegion.Move(fnMoveBackward);
OSL_ENSURE(rDoc.GetCurTOX(*aRegion.GetPoint()), "Misunderstood how toc works");
if (SwTOXBase* pBase2 = (SwTOXBase*)rDoc.GetCurTOX(*aRegion.GetPoint()))
{
if(nIndexCols>1)
{
// Set the column number for index
SfxItemSet aSet( rDoc.GetAttrPool(), RES_COL, RES_COL );
SwFmtCol aCol;
aCol.Init( nIndexCols, 708, USHRT_MAX );
aSet.Put( aCol );
pBase2->SetAttrSet( aSet );
}
maSectionManager.PrependedInlineNode(*pPaM->GetPoint(),
*aRegion.GetNode());
}
// Setze Ende in Stack
pReffedStck->SetAttr( *pPos, RES_FLTR_TOX );
if (!maApos.back()) //a para end in apo doesn't count
bWasParaEnd = true;
return FLD_OK;
}
eF_ResT SwWW8ImplReader::Read_F_Shape(WW8FieldDesc* /*pF*/, String& /*rStr*/)
{
/*
#i3958# 0x8 followed by 0x1 where the shape is the 0x8 and its anchoring
to be ignored followed by a 0x1 with an empty drawing. Detect in inserting
the drawing that we are in the Shape field and respond accordingly
*/
return FLD_TEXT;
}
eF_ResT SwWW8ImplReader::Read_F_Hyperlink( WW8FieldDesc* /*pF*/, String& rStr )
{
#if defined(WW_NATIVE_TOC)
if (1) {
::rtl::OUString aBookmarkName=(RTL_CONSTASCII_USTRINGPARAM("_HYPERLINK"));
maFieldStack.back().SetBookmarkName(aBookmarkName);
maFieldStack.back().SetBookmarkType(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(ODF_HYPERLINK)));
return FLD_TEXT;
}
#endif
String sURL, sTarget, sMark;
bool bDataImport = false;
//HYPERLINK "filename" [switches]
bool bOptions=false;
rStr = comphelper::string::stripEnd(rStr, 1);
if (!bDataImport)
{
long nRet;
_ReadFieldParams aReadParam( rStr );
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
{
switch( nRet )
{
case -2:
if (!sURL.Len() & !bOptions)
ConvertFFileName(sURL, aReadParam.GetResult());
break;
case 'n':
sTarget.ASSIGN_CONST_ASC( "_blank" );
bOptions = true;
break;
case 'l':
nRet = aReadParam.SkipToNextToken();
bOptions = true;
if( -2 == nRet )
{
sMark = aReadParam.GetResult();
if( sMark.Len() && '"' == sMark.GetChar( sMark.Len()-1 ))
sMark.Erase( sMark.Len() - 1 );
}
break;
case 't':
nRet = aReadParam.SkipToNextToken();
bOptions = true;
if (-2 == nRet)
sTarget = aReadParam.GetResult();
break;
case 'h':
case 'm':
OSL_ENSURE( !this, "Auswertung fehlt noch - Daten unbekannt" );
case 's': //worthless fake anchor option
bOptions = true;
break;
}
}
}
// das Resultat uebernehmen
OSL_ENSURE((sURL.Len() || sMark.Len()), "WW8: Empty URL");
if( sMark.Len() )
( sURL += INET_MARK_TOKEN ) += sMark;
SwFmtINetFmt aURL( sURL, sTarget );
//As an attribute this needs to be closed, and that'll happen from
//EndExtSprm in conjunction with the maFieldStack If there are are flyfrms
//between the start and begin, their hyperlinks will be set at that time
//as well.
pCtrlStck->NewAttr( *pPaM->GetPoint(), aURL );
return FLD_TEXT;
}
void lcl_ImportTox(SwDoc &rDoc, SwPaM &rPaM, const String &rStr, bool bIdx)
{
TOXTypes eTox = ( !bIdx ) ? TOX_CONTENT : TOX_INDEX; // Default
sal_uInt16 nLevel = 1;
xub_StrLen n;
String sFldTxt;
long nRet;
_ReadFieldParams aReadParam(rStr);
while( -1 != ( nRet = aReadParam.SkipToNextToken() ))
switch( nRet )
{
case -2:
if( !sFldTxt.Len() )
{
// PrimaryKey ohne ":", 2nd dahinter
sFldTxt = aReadParam.GetResult();
}
break;
case 'f':
n = aReadParam.GoToTokenParam();
if( STRING_NOTFOUND != n )
{
String sParams( aReadParam.GetResult() );
if( 'C' != sParams.GetChar(0) && 'c' != sParams.GetChar(0) )
eTox = TOX_USER;
}
break;
case 'l':
n = aReadParam.GoToTokenParam();
if( STRING_NOTFOUND != n )
{
String sParams( aReadParam.GetResult() );
if( sParams.Len() // if NO String just ignore the \l
&& sParams.GetChar( 0 ) > '0'
&& sParams.GetChar( 0 ) <= '9' )
{
nLevel = (sal_uInt16)sParams.ToInt32();
}
}
break;
}
OSL_ENSURE( rDoc.GetTOXTypeCount( eTox ), "Doc.GetTOXTypeCount() == 0 :-(" );
const SwTOXType* pT = rDoc.GetTOXType( eTox, 0 );
SwTOXMark aM( pT );
if( eTox != TOX_INDEX )
aM.SetLevel( nLevel );
else
{
xub_StrLen nFnd = sFldTxt.Search( WW8_TOX_LEVEL_DELIM );
if( STRING_NOTFOUND != nFnd ) // it exist levels
{
aM.SetPrimaryKey( sFldTxt.Copy( 0, nFnd ) );
xub_StrLen nScndFnd =
sFldTxt.Search( WW8_TOX_LEVEL_DELIM, nFnd+1 );
if( STRING_NOTFOUND != nScndFnd )
{
aM.SetSecondaryKey( sFldTxt.Copy( nFnd+1, nScndFnd - nFnd - 1 ));
nFnd = nScndFnd;
}
sFldTxt.Erase( 0, nFnd+1 );
}
}
if (sFldTxt.Len())
{
aM.SetAlternativeText( sFldTxt );
rDoc.InsertPoolItem( rPaM, aM, 0 );
}
}
void sw::ms::ImportXE(SwDoc &rDoc, SwPaM &rPaM, const String &rStr)
{
lcl_ImportTox(rDoc, rPaM, rStr, true);
}
void SwWW8ImplReader::ImportTox( int nFldId, String aStr )
{
bool bIdx = (nFldId != 9);
lcl_ImportTox(rDoc, *pPaM, aStr, bIdx);
}
void SwWW8ImplReader::Read_FldVanish( sal_uInt16, const sal_uInt8*, short nLen )
{
//Meaningless in a style
if (pAktColl || !pPlcxMan)
return;
const int nChunk = 64; //number of characters to read at one time
// Vorsicht: Bei Feldnamen mit Umlauten geht das MEMICMP nicht!
const static sal_Char *aFldNames[] = { "\x06""INHALT", "\x02""XE", // dt.
"\x02""TC" }; // us
const static sal_uInt8 aFldId[] = { 9, 4, 9 };
if( nLen < 0 )
{
bIgnoreText = false;
return;
}
// our methode was called from
// ''Skip attributes of field contents'' loop within ReadTextAttr()
if( bIgnoreText )
return;
bIgnoreText = true;
long nOldPos = pStrm->Tell();
WW8_CP nStartCp = pPlcxMan->Where() + pPlcxMan->GetCpOfs();
String sFieldName;
sal_uInt16 nFieldLen = pSBase->WW8ReadString( *pStrm, sFieldName, nStartCp,
nChunk, eStructCharSet );
nStartCp+=nFieldLen;
xub_StrLen nC = 0;
//If the first chunk did not start with a field start then
//reset the stream position and give up
if( !nFieldLen || (0x13 != sFieldName.GetChar( nC ))) // Field Start Mark
{
// If Field End Mark found
if( nFieldLen && (0x15 == sFieldName.GetChar( nC )))
bIgnoreText = false;
pStrm->Seek( nOldPos );
return; // kein Feld zu finden
}
xub_StrLen nFnd;
//If this chunk does not contain a field end, keep reading chunks
//until we find one, or we run out of text,
while (STRING_NOTFOUND == (nFnd = sFieldName.Search(0x15)))
{
String sTemp;
nFieldLen = pSBase->WW8ReadString( *pStrm, sTemp,
nStartCp, nChunk, eStructCharSet );
sFieldName+=sTemp;
nStartCp+=nFieldLen;
if (!nFieldLen)
break;
}
pStrm->Seek( nOldPos );
//if we have no 0x15 give up, otherwise erase everything from the 0x15
//onwards
if (STRING_NOTFOUND == nFnd)
return;
else
sFieldName.Erase(nFnd);
nC++;
while( ' ' == sFieldName.GetChar( nC ))
nC++;
for( int i = 0; i < 3; i++ )
{
const sal_Char* pName = aFldNames[i];
sal_uInt16 nNameLen = *pName++;
if( sFieldName.EqualsIgnoreCaseAscii( pName, nC, nNameLen ) )
{
ImportTox( aFldId[i], sFieldName.Copy( nC + nNameLen ) );
break; // keine Mehrfachnennungen moeglich
}
}
bIgnoreText = true;
pStrm->Seek( nOldPos );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|