1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sal/config.h>
#include <boost/noncopyable.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/static_assert.hpp>
#include <comphelper/string.hxx>
#include <tools/solar.h>
#include <vcl/vclenum.hxx>
#include <vcl/font.hxx>
#include <hintids.hxx>
#include <editeng/colritem.hxx>
#include <editeng/orphitem.hxx>
#include <editeng/widwitem.hxx>
#include <editeng/brushitem.hxx>
#include <editeng/boxitem.hxx>
#include <editeng/lrspitem.hxx>
#include <editeng/ulspitem.hxx>
#include <editeng/fhgtitem.hxx>
#include <editeng/hyphenzoneitem.hxx>
#include <editeng/frmdiritem.hxx>
#include <editeng/langitem.hxx>
#include <editeng/charrotateitem.hxx>
#include <editeng/pgrditem.hxx>
#include <msfilter.hxx>
#include <pam.hxx>
#include <doc.hxx>
#include <docary.hxx>
#include <ndtxt.hxx>
#include <paratr.hxx>
#include <poolfmt.hxx>
#include <swtable.hxx>
#include <tblsel.hxx>
#include <mdiexp.hxx>
#include <fmtpdsc.hxx>
#include <txtftn.hxx>
#include <frmfmt.hxx>
#include <ftnidx.hxx>
#include <fmtftn.hxx>
#include <charfmt.hxx>
#include <SwStyleNameMapper.hxx>
#include <fltshell.hxx>
#include <fmtanchr.hxx>
#include <fmtrowsplt.hxx>
#include <fmtfollowtextflow.hxx>
#include <numrule.hxx>
#include <sprmids.hxx>
#include "../inc/wwstyles.hxx"
#include "writerhelper.hxx"
#include "ww8struc.hxx"
#include "ww8par.hxx"
#include "ww8par2.hxx"
#include <frmatr.hxx>
#include <iostream>
using namespace ::com::sun::star;
class WW8SelBoxInfo
: public std::vector<SwTableBox*>, private boost::noncopyable
{
public:
short nGroupXStart;
short nGroupWidth;
bool bGroupLocked;
WW8SelBoxInfo(short nXCenter, short nWidth)
: nGroupXStart( nXCenter ), nGroupWidth( nWidth ), bGroupLocked(false)
{}
};
typedef boost::ptr_vector<WW8SelBoxInfo> WW8MergeGroups;
WW8TabBandDesc::WW8TabBandDesc()
{
memset(this, 0, sizeof(*this));
for (size_t i = 0; i < sizeof(maDirections)/sizeof(sal_uInt16); ++i)
maDirections[i] = 4;
}
WW8TabBandDesc::~WW8TabBandDesc()
{
delete[] pTCs;
delete[] pSHDs;
delete[] pNewSHDs;
}
class WW8TabDesc: private boost::noncopyable
{
std::vector<OUString> aNumRuleNames;
sw::util::RedlineStack *mpOldRedlineStack;
SwWW8ImplReader* pIo;
WW8TabBandDesc* pFirstBand;
WW8TabBandDesc* pActBand;
SwPosition* pTmpPos;
SwTableNode* pTblNd; // table node
const SwTableLines* pTabLines; // row array of node
SwTableLine* pTabLine; // current row
SwTableBoxes* pTabBoxes; // boxes array in current row
SwTableBox* pTabBox; // current cell
WW8MergeGroups aMergeGroups; // list of all cells to be merged
WW8_TCell* pAktWWCell;
short nRows;
short nDefaultSwCols;
short nBands;
short nMinLeft;
short nConvertedLeft;
short nMaxRight;
short nSwWidth;
short nPreferredWidth;
short nOrgDxaLeft;
bool bOk;
bool bClaimLineFmt;
sal_Int16 eOri;
bool bIsBiDi;
// 2. common admin info
short nAktRow;
short nAktBandRow; // SW: row of current band
// 3. admin info for writer
short nAktCol;
sal_uInt16 nRowsToRepeat;
// 4. methods
sal_uInt16 GetLogicalWWCol() const;
void SetTabBorders( SwTableBox* pBox, short nIdx );
void SetTabShades( SwTableBox* pBox, short nWwIdx );
void SetTabVertAlign( SwTableBox* pBox, short nWwIdx );
void SetTabDirection( SwTableBox* pBox, short nWwIdx );
void CalcDefaults();
bool SetPamInCell(short nWwCol, bool bPam);
void InsertCells( short nIns );
void AdjustNewBand();
WW8SelBoxInfo* FindMergeGroup(short nX1, short nWidth, bool bExact);
// single box - maybe used in a merge group
// (the merge groups are processed later at once)
SwTableBox* UpdateTableMergeGroup(WW8_TCell& rCell,
WW8SelBoxInfo* pActGroup, SwTableBox* pActBox, sal_uInt16 nCol );
void StartMiserableHackForUnsupportedDirection(short nWwCol);
void EndMiserableHackForUnsupportedDirection(short nWwCol);
public:
const SwTable* pTable; // table
SwPosition* pParentPos;
SwFlyFrmFmt* pFlyFmt;
SfxItemSet aItemSet;
bool IsValidCell(short nCol) const;
bool InFirstParaInCell() const;
WW8TabDesc( SwWW8ImplReader* pIoClass, WW8_CP nStartCp );
bool Ok() const { return bOk; }
void CreateSwTable(SvxULSpaceItem* pULSpaceItem = 0);
void UseSwTable();
void SetSizePosition(SwFrmFmt* pFrmFmt);
void TableCellEnd();
void MoveOutsideTable();
void ParkPaM();
void FinishSwTable();
void MergeCells();
short GetMinLeft() const { return nConvertedLeft; }
~WW8TabDesc();
const WW8_TCell* GetAktWWCell() const { return pAktWWCell; }
short GetAktCol() const { return nAktCol; }
// find name of numrule valid for current WW-COL
OUString GetNumRuleName() const;
void SetNumRuleName( const OUString& rName );
sw::util::RedlineStack* getOldRedlineStack(){ return mpOldRedlineStack; }
};
void sw::util::RedlineStack::close( const SwPosition& rPos,
RedlineType_t eType, WW8TabDesc* pTabDesc )
{
// If the redline type is not found in the redline stack, we have to check if there has been
// a tabledesc and to check its saved redline stack, too. (#136939, #i68139)
if( !close( rPos, eType ) )
{
if( pTabDesc && pTabDesc->getOldRedlineStack() )
{
bool const bResult =
pTabDesc->getOldRedlineStack()->close(rPos, eType);
OSL_ENSURE( bResult, "close without open!");
(void) bResult; // unused in non-debug
}
}
}
void wwSectionManager::SetCurrentSectionHasFootnote()
{
OSL_ENSURE(!maSegments.empty(),
"should not be possible, must be at least one segment");
if (!maSegments.empty())
maSegments.back().mbHasFootnote = true;
}
bool wwSectionManager::CurrentSectionIsVertical() const
{
OSL_ENSURE(!maSegments.empty(),
"should not be possible, must be at least one segment");
if (!maSegments.empty())
return maSegments.back().IsVertical();
return false;
}
bool wwSectionManager::CurrentSectionIsProtected() const
{
OSL_ENSURE(!maSegments.empty(),
"should not be possible, must be at least one segment");
if (!maSegments.empty())
return SectionIsProtected(maSegments.back());
return false;
}
sal_uInt32 wwSectionManager::GetPageLeft() const
{
return !maSegments.empty() ? maSegments.back().nPgLeft : 0;
}
sal_uInt32 wwSectionManager::GetPageRight() const
{
return !maSegments.empty() ? maSegments.back().nPgRight : 0;
}
sal_uInt32 wwSectionManager::GetPageWidth() const
{
return !maSegments.empty() ? maSegments.back().GetPageWidth() : 0;
}
sal_uInt32 wwSectionManager::GetTextAreaWidth() const
{
return !maSegments.empty() ? maSegments.back().GetTextAreaWidth() : 0;
}
sal_uInt32 wwSectionManager::GetWWPageTopMargin() const
{
return !maSegments.empty() ? maSegments.back().maSep.dyaTop : 0;
}
sal_uInt16 SwWW8ImplReader::End_Ftn()
{
/*
Ignoring Footnote outside of the normal Text. People will put footnotes
into field results and field commands.
*/
if (bIgnoreText ||
pPaM->GetPoint()->nNode < rDoc.GetNodes().GetEndOfExtras().GetIndex())
{
return 0;
}
OSL_ENSURE(!maFtnStack.empty(), "footnote end without start");
if (maFtnStack.empty())
return 0;
bool bFtEdOk = false;
const FtnDescriptor &rDesc = maFtnStack.back();
//Get the footnote character and remove it from the txtnode. We'll
//replace it with the footnote
SwTxtNode* pTxt = pPaM->GetNode()->GetTxtNode();
sal_Int32 nPos = pPaM->GetPoint()->nContent.GetIndex();
OUString sChar;
SwTxtAttr* pFN = 0;
//There should have been a footnote char, we will replace this.
if (pTxt && nPos)
{
sChar += OUString(pTxt->GetTxt()[--nPos]);
pPaM->SetMark();
pPaM->GetMark()->nContent--;
rDoc.DeleteRange( *pPaM );
pPaM->DeleteMark();
SwFmtFtn aFtn(rDesc.meType == MAN_EDN);
pFN = pTxt->InsertItem(aFtn, nPos, nPos);
}
OSL_ENSURE(pFN, "Probleme beim Anlegen des Fussnoten-Textes");
if (pFN)
{
SwPosition aTmpPos( *pPaM->GetPoint() ); // remember old cursor position
WW8PLCFxSaveAll aSave;
pPlcxMan->SaveAllPLCFx( aSave );
WW8PLCFMan* pOldPlcxMan = pPlcxMan;
const SwNodeIndex* pSttIdx = ((SwTxtFtn*)pFN)->GetStartNode();
OSL_ENSURE(pSttIdx, "Probleme beim Anlegen des Fussnoten-Textes");
((SwTxtFtn*)pFN)->SetSeqNo( rDoc.GetFtnIdxs().size() );
bool bOld = bFtnEdn;
bFtnEdn = true;
// read content of Ft-/End-Note
Read_HdFtFtnText( pSttIdx, rDesc.mnStartCp, rDesc.mnLen, rDesc.meType);
bFtEdOk = true;
bFtnEdn = bOld;
OSL_ENSURE(sChar.getLength()==1 && ((rDesc.mbAutoNum == (sChar[0] == 2))),
"footnote autonumbering must be 0x02, and everthing else must not be");
// If no automatic numbering use the following char from the main text
// as the footnote number
if (!rDesc.mbAutoNum)
((SwTxtFtn*)pFN)->SetNumber(0, sChar);
/*
Delete the footnote char from the footnote if its at the beginning
as usual. Might not be if the user has already deleted it, e.g.
#i14737#
*/
SwNodeIndex& rNIdx = pPaM->GetPoint()->nNode;
rNIdx = pSttIdx->GetIndex() + 1;
SwTxtNode* pTNd = rNIdx.GetNode().GetTxtNode();
if (pTNd && !pTNd->GetTxt().isEmpty() && !sChar.isEmpty())
{
const OUString &rTxt = pTNd->GetTxt();
if (rTxt[0] == sChar[0])
{
pPaM->GetPoint()->nContent.Assign( pTNd, 0 );
pPaM->SetMark();
// Strip out tabs we may have inserted on export #i24762#
if (rTxt.getLength() > 1 && rTxt[1] == 0x09)
pPaM->GetMark()->nContent++;
pPaM->GetMark()->nContent++;
pReffingStck->Delete(*pPaM);
rDoc.DeleteRange( *pPaM );
pPaM->DeleteMark();
}
}
*pPaM->GetPoint() = aTmpPos; // restore Cursor
pPlcxMan = pOldPlcxMan; // Restore attributes
pPlcxMan->RestoreAllPLCFx( aSave );
}
if (bFtEdOk)
maSectionManager.SetCurrentSectionHasFootnote();
maFtnStack.pop_back();
return 0;
}
long SwWW8ImplReader::Read_Ftn(WW8PLCFManResult* pRes)
{
/*
Ignoring Footnote outside of the normal Text. People will put footnotes
into field results and field commands.
*/
if (bIgnoreText ||
pPaM->GetPoint()->nNode < rDoc.GetNodes().GetEndOfExtras().GetIndex())
{
return 0;
}
FtnDescriptor aDesc;
aDesc.mbAutoNum = true;
if (eEDN == pRes->nSprmId)
{
aDesc.meType = MAN_EDN;
if (pPlcxMan->GetEdn())
aDesc.mbAutoNum = 0 != *(short*)pPlcxMan->GetEdn()->GetData();
}
else
{
aDesc.meType = MAN_FTN;
if (pPlcxMan->GetFtn())
aDesc.mbAutoNum = 0 != *(short*)pPlcxMan->GetFtn()->GetData();
}
aDesc.mnStartCp = pRes->nCp2OrIdx;
aDesc.mnLen = pRes->nMemLen;
maFtnStack.push_back(aDesc);
return 0;
}
bool SwWW8ImplReader::SearchRowEnd(WW8PLCFx_Cp_FKP* pPap, WW8_CP &rStartCp,
int nLevel) const
{
WW8PLCFxDesc aRes;
aRes.pMemPos = 0;
aRes.nEndPos = rStartCp;
while (pPap->HasFkp() && rStartCp != WW8_CP_MAX)
{
if (pPap->Where() != WW8_CP_MAX)
{
const sal_uInt8* pB = pPap->HasSprm(TabRowSprm(nLevel));
if (pB && *pB == 1)
{
const sal_uInt8 *pLevel = 0;
if (0 != (pLevel = pPap->HasSprm(0x6649)))
{
if (nLevel + 1 == *pLevel)
return true;
}
else
{
OSL_ENSURE(!nLevel || pLevel, "sublevel without level sprm");
return true; // RowEnd found
}
}
}
aRes.nStartPos = aRes.nEndPos;
aRes.pMemPos = 0;
//Seek to our next block of properties
if (!(pPap->SeekPos(aRes.nStartPos)))
{
aRes.nEndPos = WW8_CP_MAX;
pPap->SetDirty(true);
}
pPap->GetSprms(&aRes);
pPap->SetDirty(false);
//Update our aRes to get the new starting point of the next properties
rStartCp = aRes.nEndPos;
}
return false;
}
ApoTestResults SwWW8ImplReader::TestApo(int nCellLevel, bool bTableRowEnd,
const WW8_TablePos *pTabPos)
{
const WW8_TablePos *pTopLevelTable = nCellLevel <= 1 ? pTabPos : 0;
ApoTestResults aRet;
// Frame in Style Definition (word appears to ignore them if inside an
// text autoshape)
if (!bTxbxFlySection && nAktColl < vColl.size())
aRet.mpStyleApo = StyleExists(nAktColl) ? vColl[nAktColl].pWWFly : 0;
/*
#i1140#
If I have a table and apply a style to one of its frames that should cause
a paragraph that its applied to it to only exist as a separate floating
frame, then the behavour depends on which cell that it has been applied
to. If its the first cell of a row then the whole table row jumps into the
new frame, if its not then then the paragraph attributes are applied
"except" for the floating frame stuff. i.e. its ignored. So if theres a
table, and we're not in the first cell then we ignore the fact that the
paragraph style wants to be in a different frame.
This sort of mindbending inconsistency is surely why frames are deprecated
in word 97 onwards and hidden away from the user
#i1532# & #i5379#
If we are already a table in a frame then we must grab the para properties
to see if we are still in that frame.
*/
aRet.m_bHasSprm37 = pPlcxMan->HasParaSprm( bVer67 ? 37 : 0x2423 );
const sal_uInt8 *pSrpm29 = pPlcxMan->HasParaSprm( bVer67 ? 29 : 0x261B );
aRet.m_bHasSprm29 = pSrpm29 != NULL;
aRet.m_nSprm29 = pSrpm29 ? *pSrpm29 : 0;
// Is there some frame data here
bool bNowApo = aRet.HasFrame() || pTopLevelTable;
if (bNowApo)
{
if (WW8FlyPara *pTest = ConstructApo(aRet, pTabPos))
delete pTest;
else
bNowApo = false;
}
bool bTestAllowed = !bTxbxFlySection && !bTableRowEnd;
if (bTestAllowed)
{
//Test is allowed if there is no table.
//Otherwise only allowed if we are in the
//first paragraph of the first cell of a row.
//(And only if the row we are inside is at the
//same level as the previous row, think tables
//in tables)
if (nCellLevel == nInTable)
{
if (!nInTable)
bTestAllowed = true;
else
{
if (!pTableDesc)
{
OSL_ENSURE(pTableDesc, "What!");
bTestAllowed = false;
}
else
{
// #i39468#
// If current cell isn't valid, the test is allowed.
// The cell isn't valid, if e.g. there is a new row
// <pTableDesc->nAktRow> >= <pTableDesc->pTabLines->Count()>
bTestAllowed =
pTableDesc->GetAktCol() == 0 &&
( !pTableDesc->IsValidCell( pTableDesc->GetAktCol() ) ||
pTableDesc->InFirstParaInCell() );
}
}
}
}
if (!bTestAllowed)
return aRet;
aRet.mbStartApo = bNowApo && !InAnyApo(); // APO-start
aRet.mbStopApo = InEqualOrHigherApo(nCellLevel) && !bNowApo; // APO-end
//If it happens that we are in a table, then if its not the first cell
//then any attributes that might otherwise cause the contents to jump
//into another frame don't matter, a table row sticks together as one
//unit no matter what else happens. So if we are not in a table at
//all, or if we are in the first cell then test that the last frame
//data is the same as the current one
if (bNowApo && InEqualApo(nCellLevel))
{
// two bordering eachother
if (!TestSameApo(aRet, pTabPos))
aRet.mbStopApo = aRet.mbStartApo = true;
}
return aRet;
}
// helper methods for outline, numbering and bullets
static void SetBaseAnlv(SwNumFmt &rNum, WW8_ANLV &rAV, sal_uInt8 nSwLevel )
{
static const SvxExtNumType eNumA[8] = { SVX_NUM_ARABIC, SVX_NUM_ROMAN_UPPER, SVX_NUM_ROMAN_LOWER,
SVX_NUM_CHARS_UPPER_LETTER_N, SVX_NUM_CHARS_LOWER_LETTER_N, SVX_NUM_ARABIC,
SVX_NUM_ARABIC, SVX_NUM_ARABIC };
static const SvxAdjust eAdjA[4] = { SVX_ADJUST_LEFT,
SVX_ADJUST_RIGHT, SVX_ADJUST_LEFT, SVX_ADJUST_LEFT };
// in fact the following 2, but writer UI does not provide
// SVX_ADJUST_CENTER, SVX_ADJUST_BLOCKLINE };
rNum.SetNumberingType( static_cast< sal_Int16 >(( rAV.nfc < 8 ) ?
eNumA[ rAV.nfc ] : SVX_NUM_NUMBER_NONE) );
if ((rAV.aBits1 & 0x4) >> 2)
rNum.SetIncludeUpperLevels(nSwLevel + 1);
rNum.SetStart( SVBT16ToShort( rAV.iStartAt ) );
rNum.SetNumAdjust( eAdjA[ rAV.aBits1 & 0x3] );
rNum.SetCharTextDistance( SVBT16ToShort( rAV.dxaSpace ) );
sal_Int16 nIndent = std::abs((sal_Int16)SVBT16ToShort( rAV.dxaIndent ));
if( rAV.aBits1 & 0x08 ) //fHang
{
rNum.SetFirstLineOffset( -nIndent );
rNum.SetLSpace( nIndent );
rNum.SetAbsLSpace( nIndent );
}
else
rNum.SetCharTextDistance( nIndent ); // width of number is missing
if( rAV.nfc == 5 || rAV.nfc == 7 )
{
OUString sP = "." + rNum.GetSuffix();
rNum.SetSuffix( sP ); // ordinal number
}
}
void SwWW8ImplReader::SetAnlvStrings(SwNumFmt &rNum, WW8_ANLV &rAV,
const sal_uInt8* pTxt, bool bOutline)
{
bool bInsert = false; // Default
rtl_TextEncoding eCharSet = eStructCharSet;
const WW8_FFN* pF = pFonts->GetFont(SVBT16ToShort(rAV.ftc)); // FontInfo
bool bListSymbol = pF && ( pF->chs == 2 ); // Symbol/WingDings/...
OUString sTxt;
if (bVer67)
{
sTxt = OUString((sal_Char*)pTxt, rAV.cbTextBefore + rAV.cbTextAfter, eCharSet);
}
else
{
for(sal_Int32 i = 0; i < rAV.cbTextBefore + rAV.cbTextAfter; ++i, pTxt += 2)
{
sTxt += OUString(SVBT16ToShort(*(SVBT16*)pTxt));
}
}
if( bOutline )
{ // outline
if( !rNum.GetIncludeUpperLevels() // there are <= 1 number to show
|| rNum.GetNumberingType() == SVX_NUM_NUMBER_NONE ) // or this level has none
{
// if self defined digits
bInsert = true; // then apply character
// replace by simple Bullet ?
if( bListSymbol )
{
// use cBulletChar for correct mapping on MAC
OUStringBuffer aBuf;
comphelper::string::padToLength(aBuf, rAV.cbTextBefore
+ rAV.cbTextAfter, cBulletChar);
sTxt = aBuf.makeStringAndClear();
}
}
}
else
{ // numbering / bullets
bInsert = true;
if( bListSymbol )
{
FontFamily eFamily;
OUString aName;
FontPitch ePitch;
if( GetFontParams( SVBT16ToShort( rAV.ftc ), eFamily, aName,
ePitch, eCharSet ) ){
Font aFont;
aFont.SetName( aName );
aFont.SetFamily( eFamily );
aFont.SetCharSet( eCharSet );
rNum.SetNumberingType(SVX_NUM_CHAR_SPECIAL);
rNum.SetBulletFont( &aFont );
// take only the very first character
if (rAV.cbTextBefore || rAV.cbTextAfter)
rNum.SetBulletChar( sTxt[ 0 ] );
else
rNum.SetBulletChar( 0x2190 );
}
}
}
if( bInsert )
{
if (rAV.cbTextBefore)
{
OUString sP( sTxt.copy( 0, rAV.cbTextBefore ) );
rNum.SetPrefix( sP );
}
if( rAV.cbTextAfter )
{
OUString sP( rNum.GetSuffix() );
sP += sTxt.copy( rAV.cbTextBefore, rAV.cbTextAfter);
rNum.SetSuffix( sP );
}
// The characters before and after multipe digits do not apply because
// those are handled different by the writer and the result is in most
// cases worse than without.
}
}
// SetAnld gets a WW-ANLD-Descriptor and a Level and modifies the NumRules
// which are provided by pNumR. This is used for everything beside
// outline inside the text.
void SwWW8ImplReader::SetAnld(SwNumRule* pNumR, WW8_ANLD* pAD, sal_uInt8 nSwLevel,
bool bOutLine)
{
SwNumFmt aNF;
if (pAD)
{ // there is a Anld-Sprm
bAktAND_fNumberAcross = 0 != pAD->fNumberAcross;
WW8_ANLV &rAV = pAD->eAnlv;
SetBaseAnlv(aNF, rAV, nSwLevel); // set the base format
SetAnlvStrings(aNF, rAV, pAD->rgchAnld, bOutLine ); // set the rest
}
pNumR->Set(nSwLevel, aNF);
}
// chapter numbering and bullets
// Chapter numbering happens in the style definition.
// Sprm 13 provides the level, Sprm 12 the content.
SwNumRule* SwWW8ImplReader::GetStyRule()
{
if( pStyles->pStyRule ) // Bullet-Style already present
return pStyles->pStyRule;
const OUString aBaseName("WW8StyleNum");
const OUString aName( rDoc.GetUniqueNumRuleName( &aBaseName, false) );
// #i86652#
sal_uInt16 nRul = rDoc.MakeNumRule( aName, 0, false,
SvxNumberFormat::LABEL_ALIGNMENT );
pStyles->pStyRule = rDoc.GetNumRuleTbl()[nRul];
// Auto == false-> Nummerierungsvorlage
pStyles->pStyRule->SetAutoRule(false);
return pStyles->pStyRule;
}
// Sprm 13
void SwWW8ImplReader::Read_ANLevelNo( sal_uInt16, const sal_uInt8* pData, short nLen )
{
nSwNumLevel = 0xff; // Default: invalid
if( nLen <= 0 )
return;
// StyleDef ?
if( pAktColl )
{
// only for SwTxtFmtColl, not CharFmt
// WW: 0 = no Numbering
SwWW8StyInf * pColl = GetStyle(nAktColl);
if (pColl != NULL && pColl->bColl && *pData)
{
// Range WW:1..9 -> SW:0..8 no bullets / numbering
if (*pData <= MAXLEVEL && *pData <= 9)
{
nSwNumLevel = *pData - 1;
if (!bNoAttrImport)
((SwTxtFmtColl*)pAktColl)->AssignToListLevelOfOutlineStyle( nSwNumLevel );
// For WW-NoNumbering also NO_NUMBERING could be used.
// ( For normal numberierung NO_NUM has to be used:
// NO_NUM : pauses numbering,
// NO_NUMBERING : no numbering at all )
}
else if( *pData == 10 || *pData == 11 )
{
// remember type, the rest happens at Sprm 12
pStyles->nWwNumLevel = *pData;
}
}
}
else
{
//Not StyleDef
if (!bAnl)
StartAnl(pData); // begin of outline / bullets
NextAnlLine(pData);
}
}
void SwWW8ImplReader::Read_ANLevelDesc( sal_uInt16, const sal_uInt8* pData, short nLen ) // Sprm 12
{
SwWW8StyInf * pStyInf = GetStyle(nAktColl);
if( !pAktColl || nLen <= 0 // only for Styledef
|| (pStyInf && !pStyInf->bColl) // ignore CharFmt ->
|| ( nIniFlags & WW8FL_NO_OUTLINE ) )
{
nSwNumLevel = 0xff;
return;
}
if( nSwNumLevel <= MAXLEVEL // Value range mapping WW:1..9 -> SW:0..8
&& nSwNumLevel <= 9 ){ // No Bullets or Numbering
// If NumRuleItems were set, either directly or through inheritance, disable them now
pAktColl->SetFmtAttr( SwNumRuleItem() );
const OUString aName("Outline");
SwNumRule aNR( rDoc.GetUniqueNumRuleName( &aName ),
SvxNumberFormat::LABEL_WIDTH_AND_POSITION,
OUTLINE_RULE );
aNR = *rDoc.GetOutlineNumRule();
SetAnld(&aNR, (WW8_ANLD*)pData, nSwNumLevel, true);
// Missing Levels need not be replenished
rDoc.SetOutlineNumRule( aNR );
}else if( pStyles->nWwNumLevel == 10 || pStyles->nWwNumLevel == 11 ){
SwNumRule* pNR = GetStyRule();
SetAnld(pNR, (WW8_ANLD*)pData, 0, false);
pAktColl->SetFmtAttr( SwNumRuleItem( pNR->GetName() ) );
pStyInf = GetStyle(nAktColl);
if (pStyInf != NULL)
pStyInf->bHasStyNumRule = true;
}
}
// Numbering / Bullets
// SetNumOlst() carries the Numrules for this cell to SwNumFmt.
// For this the info is fetched from OLST and not from ANLD ( see later )
// ( only for outline inside text; Bullets / numbering use ANLDs )
void SwWW8ImplReader::SetNumOlst(SwNumRule* pNumR, WW8_OLST* pO, sal_uInt8 nSwLevel)
{
SwNumFmt aNF;
WW8_ANLV &rAV = pO->rganlv[nSwLevel];
SetBaseAnlv(aNF, rAV, nSwLevel);
// ... and then the Strings
int nTxtOfs = 0;
sal_uInt8 i;
WW8_ANLV* pAV1; // search String-Positions
for (i = 0, pAV1 = pO->rganlv; i < nSwLevel; ++i, ++pAV1)
nTxtOfs += pAV1->cbTextBefore + pAV1->cbTextAfter;
if (!bVer67)
nTxtOfs *= 2;
SetAnlvStrings(aNF, rAV, pO->rgch + nTxtOfs, true); // and apply
pNumR->Set(nSwLevel, aNF);
}
// The OLST is at the beginning of each section that contains outlines.
// The ANLDs that are connected to each outline-line contain only nonsense,
// so the OLSTs are remembered for the section to have usable information
// when outline-paragraphs occur.
void SwWW8ImplReader::Read_OLST( sal_uInt16, const sal_uInt8* pData, short nLen )
{
delete pNumOlst;
if (nLen <= 0)
{
pNumOlst = 0;
return;
}
pNumOlst = new WW8_OLST;
if( nLen < sal::static_int_cast< sal_Int32 >(sizeof( WW8_OLST )) ) // fill if to short
memset( pNumOlst, 0, sizeof( *pNumOlst ) );
*pNumOlst = *(WW8_OLST*)pData;
}
WW8LvlType GetNumType(sal_uInt8 nWwLevelNo)
{
WW8LvlType nRet = WW8_None;
if( nWwLevelNo == 12 )
nRet = WW8_Pause;
else if( nWwLevelNo == 10 )
nRet = WW8_Numbering;
else if( nWwLevelNo == 11 )
nRet = WW8_Sequence;
else if( nWwLevelNo > 0 && nWwLevelNo <= 9 )
nRet = WW8_Outline;
return nRet;
}
SwNumRule *ANLDRuleMap::GetNumRule(sal_uInt8 nNumType)
{
return (WW8_Numbering == nNumType ? mpNumberingNumRule : mpOutlineNumRule);
}
void ANLDRuleMap::SetNumRule(SwNumRule *pRule, sal_uInt8 nNumType)
{
if (WW8_Numbering == nNumType)
mpNumberingNumRule = pRule;
else
mpOutlineNumRule = pRule;
}
// StartAnl is called at the beginning of a row area that contains
// outline / numbering / bullets
void SwWW8ImplReader::StartAnl(const sal_uInt8* pSprm13)
{
bAktAND_fNumberAcross = false;
sal_uInt8 nT = static_cast< sal_uInt8 >(GetNumType(*pSprm13));
if (nT == WW8_Pause || nT == WW8_None)
return;
nWwNumType = nT;
SwNumRule *pNumRule = maANLDRules.GetNumRule(nWwNumType);
// check for COL numbering:
const sal_uInt8* pS12 = 0;// sprmAnld
OUString sNumRule;
if (pTableDesc)
{
sNumRule = pTableDesc->GetNumRuleName();
if (!sNumRule.isEmpty())
{
pNumRule = rDoc.FindNumRulePtr(sNumRule);
if (!pNumRule)
sNumRule = "";
else
{
// this is ROW numbering ?
pS12 = pPlcxMan->HasParaSprm(bVer67 ? 12 : 0xC63E); // sprmAnld
if (pS12 && 0 != ((WW8_ANLD*)pS12)->fNumberAcross)
sNumRule = "";
}
}
}
SwWW8StyInf * pStyInf = GetStyle(nAktColl);
if (sNumRule.isEmpty() && pStyInf != NULL && pStyInf->bHasStyNumRule)
{
sNumRule = pStyInf->pFmt->GetNumRule().GetValue();
pNumRule = rDoc.FindNumRulePtr(sNumRule);
if (!pNumRule)
sNumRule = "";
}
if (sNumRule.isEmpty())
{
if (!pNumRule)
{
// #i86652#
pNumRule = rDoc.GetNumRuleTbl()[
rDoc.MakeNumRule( sNumRule, 0, false,
SvxNumberFormat::LABEL_ALIGNMENT ) ];
}
if (pTableDesc)
{
if (!pS12)
pS12 = pPlcxMan->HasParaSprm(bVer67 ? 12 : 0xC63E); // sprmAnld
if (!pS12 || !((WW8_ANLD*)pS12)->fNumberAcross)
pTableDesc->SetNumRuleName(pNumRule->GetName());
}
}
bAnl = true;
sNumRule = pNumRule ? pNumRule->GetName() : OUString();
// set NumRules via stack
pCtrlStck->NewAttr(*pPaM->GetPoint(),
SfxStringItem(RES_FLTR_NUMRULE, sNumRule));
maANLDRules.SetNumRule(pNumRule, nWwNumType);
}
// NextAnlLine() is called once for every row of a
// outline / numbering / bullet
void SwWW8ImplReader::NextAnlLine(const sal_uInt8* pSprm13)
{
if (!bAnl)
return;
SwNumRule *pNumRule = maANLDRules.GetNumRule(nWwNumType);
// pNd->UpdateNum ohne Regelwerk gibt GPF spaetestens beim Speichern als
// sdw3
// WW:10 = numberierung -> SW:0 & WW:11 = bullets -> SW:0
if (*pSprm13 == 10 || *pSprm13 == 11)
{
nSwNumLevel = 0;
if (!pNumRule->GetNumFmt(nSwNumLevel))
{
// not defined yet
// sprmAnld o. 0
const sal_uInt8* pS12 = pPlcxMan->HasParaSprm(bVer67 ? 12 : 0xC63E);
SetAnld(pNumRule, (WW8_ANLD*)pS12, nSwNumLevel, false);
}
}
else if( *pSprm13 > 0 && *pSprm13 <= MAXLEVEL ) // range WW:1..9 -> SW:0..8
{
nSwNumLevel = *pSprm13 - 1; // outline
// undefined
if (!pNumRule->GetNumFmt(nSwNumLevel))
{
if (pNumOlst) // there was a OLST
{
//Assure upper levels are set, #i9556#
for (sal_uInt8 nI = 0; nI < nSwNumLevel; ++nI)
{
if (!pNumRule->GetNumFmt(nI))
SetNumOlst(pNumRule, pNumOlst, nI);
}
SetNumOlst(pNumRule, pNumOlst , nSwNumLevel);
}
else // no Olst -> use Anld
{
// sprmAnld
const sal_uInt8* pS12 = pPlcxMan->HasParaSprm(bVer67 ? 12 : 0xC63E);
SetAnld(pNumRule, (WW8_ANLD*)pS12, nSwNumLevel, false);
}
}
}
else
nSwNumLevel = 0xff; // no number
SwTxtNode* pNd = pPaM->GetNode()->GetTxtNode();
if (nSwNumLevel < MAXLEVEL)
pNd->SetAttrListLevel( nSwNumLevel );
else
{
pNd->SetAttrListLevel(0);
pNd->SetCountedInList( false );
}
}
void SwWW8ImplReader::StopAllAnl(bool bGoBack)
{
//Of course we're not restarting, but we'll make use of our knowledge
//of the implementation to do it.
StopAnlToRestart(WW8_None, bGoBack);
}
void SwWW8ImplReader::StopAnlToRestart(sal_uInt8 nNewType, bool bGoBack)
{
if (bGoBack)
{
SwPosition aTmpPos(*pPaM->GetPoint());
pPaM->Move(fnMoveBackward, fnGoCntnt);
pCtrlStck->SetAttr(*pPaM->GetPoint(), RES_FLTR_NUMRULE);
*pPaM->GetPoint() = aTmpPos;
}
else
pCtrlStck->SetAttr(*pPaM->GetPoint(), RES_FLTR_NUMRULE);
maANLDRules.mpNumberingNumRule = 0;
/*
#i18816#
my take on this problem is that moving either way from an outline to a
numbering doesn't halt the outline, while the numbering is always halted
*/
bool bNumberingNotStopOutline =
(((nWwNumType == WW8_Outline) && (nNewType == WW8_Numbering)) ||
((nWwNumType == WW8_Numbering) && (nNewType == WW8_Outline)));
if (!bNumberingNotStopOutline)
maANLDRules.mpOutlineNumRule = 0;
nSwNumLevel = 0xff;
nWwNumType = WW8_None;
bAnl = false;
}
WW8TabBandDesc::WW8TabBandDesc( WW8TabBandDesc& rBand )
{
*this = rBand;
if( rBand.pTCs )
{
pTCs = new WW8_TCell[nWwCols];
memcpy( pTCs, rBand.pTCs, nWwCols * sizeof( WW8_TCell ) );
}
if( rBand.pSHDs )
{
pSHDs = new WW8_SHD[nWwCols];
memcpy( pSHDs, rBand.pSHDs, nWwCols * sizeof( WW8_SHD ) );
}
if( rBand.pNewSHDs )
{
pNewSHDs = new sal_uInt32[nWwCols];
memcpy(pNewSHDs, rBand.pNewSHDs, nWwCols * sizeof(sal_uInt32));
}
memcpy(aDefBrcs, rBand.aDefBrcs, sizeof(aDefBrcs));
}
// ReadDef reads the cell position and the borders of a band
void WW8TabBandDesc::ReadDef(bool bVer67, const sal_uInt8* pS)
{
if (!bVer67)
pS++;
short nLen = (sal_Int16)SVBT16ToShort( pS - 2 ); // not beautiful
sal_uInt8 nCols = *pS; // number of cells
short nOldCols = nWwCols;
if( nCols > MAX_COL )
return;
nWwCols = nCols;
const sal_uInt8* pT = &pS[1];
nLen --;
int i;
for(i=0; i<=nCols; i++, pT+=2 )
nCenter[i] = (sal_Int16)SVBT16ToShort( pT ); // X-borders
nLen -= 2 * ( nCols + 1 );
if( nCols != nOldCols ) // different column count
{
delete[] pTCs, pTCs = 0;
delete[] pSHDs, pSHDs = 0;
delete[] pNewSHDs, pNewSHDs = 0;
}
short nFileCols = nLen / ( bVer67 ? 10 : 20 ); // really saved
if (!pTCs && nCols)
{
// create empty TCs
pTCs = new WW8_TCell[nCols];
setcelldefaults(pTCs,nCols);
}
short nColsToRead = nFileCols;
if (nColsToRead > nCols)
nColsToRead = nCols;
if( nColsToRead )
{
// read TCs
/*
Attention: Beginning with Ver8 there is an extra ushort per TC
added and the size of the border code is doubled.
Because of this a simple copy (pTCs[i] = *pTc;)
is not possible.
---
Advantage: The work structure suits better.
*/
WW8_TCell* pAktTC = pTCs;
if( bVer67 )
{
WW8_TCellVer6* pTc = (WW8_TCellVer6*)pT;
for(i=0; i<nColsToRead; i++, ++pAktTC,++pTc)
{
if( i < nColsToRead )
{ // TC from file ?
sal_uInt8 aBits1 = pTc->aBits1Ver6;
pAktTC->bFirstMerged = ( ( aBits1 & 0x01 ) != 0 );
pAktTC->bMerged = ( ( aBits1 & 0x02 ) != 0 );
pAktTC->rgbrc[ WW8_TOP ]
= WW8_BRC( pTc->rgbrcVer6[ WW8_TOP ] );
pAktTC->rgbrc[ WW8_LEFT ]
= WW8_BRC( pTc->rgbrcVer6[ WW8_LEFT ] );
pAktTC->rgbrc[ WW8_BOT ]
= WW8_BRC( pTc->rgbrcVer6[ WW8_BOT ] );
pAktTC->rgbrc[ WW8_RIGHT ]
= WW8_BRC( pTc->rgbrcVer6[ WW8_RIGHT ] );
if( ( pAktTC->bMerged )
&& ( i > 0 ) )
{
// Cell merged -> remember
//bWWMergedVer6[i] = true;
pTCs[i-1].rgbrc[ WW8_RIGHT ]
= WW8_BRC( pTc->rgbrcVer6[ WW8_RIGHT ] );
// apply right border to previous cell
// bExist must not be set to false, because WW
// does not count this cells in text boxes....
}
}
}
}
else
{
WW8_TCellVer8* pTc = (WW8_TCellVer8*)pT;
for (int k = 0; k < nColsToRead; ++k, ++pAktTC, ++pTc )
{
sal_uInt16 aBits1 = SVBT16ToShort( pTc->aBits1Ver8 );
pAktTC->bFirstMerged = ( ( aBits1 & 0x0001 ) != 0 );
pAktTC->bMerged = ( ( aBits1 & 0x0002 ) != 0 );
pAktTC->bVertical = ( ( aBits1 & 0x0004 ) != 0 );
pAktTC->bBackward = ( ( aBits1 & 0x0008 ) != 0 );
pAktTC->bRotateFont = ( ( aBits1 & 0x0010 ) != 0 );
pAktTC->bVertMerge = ( ( aBits1 & 0x0020 ) != 0 );
pAktTC->bVertRestart = ( ( aBits1 & 0x0040 ) != 0 );
pAktTC->nVertAlign = ( ( aBits1 & 0x0180 ) >> 7 );
// note: in aBits1 there are 7 bits unused,
// followed by another 16 unused bits
pAktTC->rgbrc[ WW8_TOP ] = pTc->rgbrcVer8[ WW8_TOP ];
pAktTC->rgbrc[ WW8_LEFT ] = pTc->rgbrcVer8[ WW8_LEFT ];
pAktTC->rgbrc[ WW8_BOT ] = pTc->rgbrcVer8[ WW8_BOT ];
pAktTC->rgbrc[ WW8_RIGHT ] = pTc->rgbrcVer8[ WW8_RIGHT ];
}
}
// #i25071 In '97 text direction appears to be only set using TC properties
// not with sprmTTextFlow so we need to cycle through the maDirections and
// double check any non-default directions
for (int k = 0; k < nCols; ++k)
{
if(maDirections[k] == 4)
{
if(pTCs[k].bVertical)
{
if(pTCs[k].bBackward)
maDirections[k] = 3;
else
maDirections[k] = 1;
}
}
}
}
}
void WW8TabBandDesc::ProcessSprmTSetBRC(int nBrcVer, const sal_uInt8* pParamsTSetBRC)
{
if( pParamsTSetBRC && pTCs ) // set one or more cell border(s)
{
sal_uInt8 nitcFirst= pParamsTSetBRC[0];// first col to be changed
sal_uInt8 nitcLim = pParamsTSetBRC[1];// (last col to be changed)+1
sal_uInt8 nFlag = *(pParamsTSetBRC+2);
if (nitcFirst >= nWwCols)
return;
if (nitcLim > nWwCols)
nitcLim = nWwCols;
bool bChangeRight = (nFlag & 0x08) ? true : false;
bool bChangeBottom = (nFlag & 0x04) ? true : false;
bool bChangeLeft = (nFlag & 0x02) ? true : false;
bool bChangeTop = (nFlag & 0x01) ? true : false;
WW8_TCell* pAktTC = pTCs + nitcFirst;
WW8_BRCVer9 brcVer9;
if( nBrcVer == 6 )
brcVer9 = WW8_BRC(*(WW8_BRCVer6*)(pParamsTSetBRC+3));
else if( nBrcVer == 8 )
brcVer9 = *(WW8_BRC*)(pParamsTSetBRC+3);
else
brcVer9 = *(WW8_BRCVer9*)(pParamsTSetBRC+3);
for( int i = nitcFirst; i < nitcLim; ++i, ++pAktTC )
{
if( bChangeTop )
pAktTC->rgbrc[ WW8_TOP ] = brcVer9;
if( bChangeLeft )
pAktTC->rgbrc[ WW8_LEFT ] = brcVer9;
if( bChangeBottom )
pAktTC->rgbrc[ WW8_BOT ] = brcVer9;
if( bChangeRight )
pAktTC->rgbrc[ WW8_RIGHT ] = brcVer9;
}
}
}
void WW8TabBandDesc::ProcessSprmTTableBorders(int nBrcVer, const sal_uInt8* pParams)
{
// sprmTTableBorders
if( nBrcVer == 6 )
{
for( int i = 0; i < 6; ++i )
aDefBrcs[i] = WW8_BRC( ((WW8_BRCVer6*)&pParams)[i] );
}
else if ( nBrcVer == 8 )
{
BOOST_STATIC_ASSERT(sizeof (WW8_BRC) == 4);
for( int i = 0; i < 6; ++i )
aDefBrcs[i] = reinterpret_cast<WW8_BRC const *>(pParams)[i];
}
else
memcpy( aDefBrcs, pParams, sizeof( aDefBrcs ) );
}
void WW8TabBandDesc::ProcessSprmTDxaCol(const sal_uInt8* pParamsTDxaCol)
{
// sprmTDxaCol (opcode 0x7623) changes the width of cells
// whose index is within a certain range to be a certain value.
if( nWwCols && pParamsTDxaCol ) // set one or more cell length(s)
{
sal_uInt8 nitcFirst= pParamsTDxaCol[0]; // first col to be changed
sal_uInt8 nitcLim = pParamsTDxaCol[1]; // (last col to be changed)+1
short nDxaCol = (sal_Int16)SVBT16ToShort( pParamsTDxaCol + 2 );
short nOrgWidth;
short nDelta;
for( int i = nitcFirst; (i < nitcLim) && (i < nWwCols); i++ )
{
nOrgWidth = nCenter[i+1] - nCenter[i];
nDelta = nDxaCol - nOrgWidth;
for( int j = i+1; j <= nWwCols; j++ )
{
nCenter[j] = nCenter[j] + nDelta;
}
}
}
}
void WW8TabBandDesc::ProcessSprmTInsert(const sal_uInt8* pParamsTInsert)
{
if( nWwCols && pParamsTInsert ) // set one or more cell length(s)
{
sal_uInt8 nitcInsert = pParamsTInsert[0]; // position at which to insert
if (nitcInsert >= MAX_COL) // cannot insert into cell outside max possible index
return;
sal_uInt8 nctc = pParamsTInsert[1]; // number of cells
sal_uInt16 ndxaCol = SVBT16ToShort( pParamsTInsert+2 );
short nNewWwCols;
if (nitcInsert > nWwCols)
{
nNewWwCols = nitcInsert+nctc;
//if new count would be outside max possible count, clip it, and calc a new replacement
//legal nctc
if (nNewWwCols > MAX_COL)
{
nNewWwCols = MAX_COL;
nctc = ::sal::static_int_cast<sal_uInt8>(nNewWwCols-nitcInsert);
}
}
else
{
nNewWwCols = nWwCols+nctc;
//if new count would be outside max possible count, clip it, and calc a new replacement
//legal nctc
if (nNewWwCols > MAX_COL)
{
nNewWwCols = MAX_COL;
nctc = ::sal::static_int_cast<sal_uInt8>(nNewWwCols-nWwCols);
}
}
WW8_TCell *pTC2s = new WW8_TCell[nNewWwCols];
setcelldefaults(pTC2s, nNewWwCols);
if (pTCs)
{
memcpy( pTC2s, pTCs, nWwCols * sizeof( WW8_TCell ) );
delete[] pTCs;
}
pTCs = pTC2s;
//If we have to move some cells
if (nitcInsert <= nWwCols)
{
// adjust the left x-position of the dummy at the very end
nCenter[nWwCols + nctc] = nCenter[nWwCols]+nctc*ndxaCol;
for( int i = nWwCols-1; i >= nitcInsert; i--)
{
// adjust the left x-position
nCenter[i + nctc] = nCenter[i]+nctc*ndxaCol;
// adjust the cell's borders
pTCs[i + nctc] = pTCs[i];
}
}
//if itcMac is larger than full size, fill in missing ones first
for( int i = nWwCols; i > nitcInsert+nWwCols; i--)
nCenter[i] = i ? (nCenter[i - 1]+ndxaCol) : 0;
//now add in our new cells
for( int j = 0;j < nctc; j++)
nCenter[j + nitcInsert] = (j + nitcInsert) ? (nCenter[j + nitcInsert -1]+ndxaCol) : 0;
nWwCols = nNewWwCols;
}
}
void WW8TabBandDesc::ProcessDirection(const sal_uInt8* pParams)
{
sal_uInt8 nStartCell = *pParams++;
sal_uInt8 nEndCell = *pParams++;
sal_uInt16 nCode = SVBT16ToShort(pParams);
OSL_ENSURE(nStartCell < nEndCell, "not as I thought");
OSL_ENSURE(nEndCell < MAX_COL + 1, "not as I thought");
if (nStartCell > MAX_COL)
return;
if (nEndCell > MAX_COL + 1)
nEndCell = MAX_COL + 1;
for (;nStartCell < nEndCell; ++nStartCell)
maDirections[nStartCell] = nCode;
}
void WW8TabBandDesc::ProcessSpacing(const sal_uInt8* pParams)
{
sal_uInt8 nLen = pParams ? *(pParams - 1) : 0;
OSL_ENSURE(nLen == 6, "Unexpected spacing len");
if (nLen != 6)
return;
mbHasSpacing=true;
#if OSL_DEBUG_LEVEL > 0
sal_uInt8 nWhichCell = *pParams;
OSL_ENSURE(nWhichCell == 0, "Expected cell to be 0!");
#endif
++pParams; //Skip which cell
++pParams; //unknown byte
sal_uInt8 nSideBits = *pParams++;
OSL_ENSURE(nSideBits < 0x10, "Unexpected value for nSideBits");
++pParams; //unknown byte
sal_uInt16 nValue = SVBT16ToShort( pParams );
for (int i = wwTOP; i <= wwRIGHT; i++)
{
switch (nSideBits & (1 << i))
{
case 1 << wwTOP:
mnDefaultTop = nValue;
break;
case 1 << wwLEFT:
mnDefaultLeft = nValue;
break;
case 1 << wwBOTTOM:
mnDefaultBottom = nValue;
break;
case 1 << wwRIGHT:
mnDefaultRight = nValue;
break;
case 0:
break;
default:
OSL_ENSURE(!this, "Impossible");
break;
}
}
}
void WW8TabBandDesc::ProcessSpecificSpacing(const sal_uInt8* pParams)
{
sal_uInt8 nLen = pParams ? *(pParams - 1) : 0;
OSL_ENSURE(nLen == 6, "Unexpected spacing len");
if (nLen != 6)
return;
sal_uInt8 nWhichCell = *pParams++;
OSL_ENSURE(nWhichCell < MAX_COL + 1, "Cell out of range in spacings");
if (nWhichCell >= MAX_COL + 1)
return;
++pParams; //unknown byte
sal_uInt8 nSideBits = *pParams++;
OSL_ENSURE(nSideBits < 0x10, "Unexpected value for nSideBits");
nOverrideSpacing[nWhichCell] |= nSideBits;
OSL_ENSURE(nOverrideSpacing[nWhichCell] < 0x10,
"Unexpected value for nSideBits");
#if OSL_DEBUG_LEVEL > 0
sal_uInt8 nUnknown2 = *pParams;
OSL_ENSURE(nUnknown2 == 0x3, "Unexpected value for spacing2");
#endif
++pParams;
sal_uInt16 nValue = SVBT16ToShort( pParams );
for (int i=0; i < 4; i++)
{
if (nSideBits & (1 << i))
nOverrideValues[nWhichCell][i] = nValue;
}
}
void WW8TabBandDesc::ProcessSprmTDelete(const sal_uInt8* pParamsTDelete)
{
if( nWwCols && pParamsTDelete ) // set one or more cell length(s)
{
sal_uInt8 nitcFirst= pParamsTDelete[0]; // first col to be deleted
if (nitcFirst >= nWwCols) // first index to delete from doesn't exist
return;
sal_uInt8 nitcLim = pParamsTDelete[1]; // (last col to be deleted)+1
if (nitcLim <= nitcFirst) // second index to delete to is not greater than first index
return;
/*
* sprmTDelete causes any rgdxaCenter and rgtc entries whose index is
* greater than or equal to itcLim to be moved
*/
int nShlCnt = nWwCols - nitcLim; // count of cells to be shifted
if (nShlCnt >= 0) //There exist entries whose index is greater than or equal to itcLim
{
WW8_TCell* pAktTC = pTCs + nitcFirst;
int i = 0;
while( i < nShlCnt )
{
// adjust the left x-position
nCenter[nitcFirst + i] = nCenter[nitcLim + i];
// adjust the cell's borders
*pAktTC = pTCs[ nitcLim + i];
++i;
++pAktTC;
}
// adjust the left x-position of the dummy at the very end
nCenter[nitcFirst + i] = nCenter[nitcLim + i];
}
short nCellsDeleted = nitcLim - nitcFirst;
//clip delete request to available number of cells
if (nCellsDeleted > nWwCols)
nCellsDeleted = nWwCols;
nWwCols -= nCellsDeleted;
}
}
// ReadShd reads the background color of a cell
// ReadDef must be called before
void WW8TabBandDesc::ReadShd(const sal_uInt8* pS )
{
sal_uInt8 nLen = pS ? *(pS - 1) : 0;
if( !nLen )
return;
if( !pSHDs )
{
pSHDs = new WW8_SHD[nWwCols];
memset( pSHDs, 0, nWwCols * sizeof( WW8_SHD ) );
}
short nAnz = nLen >> 1;
if (nAnz > nWwCols)
nAnz = nWwCols;
SVBT16* pShd;
int i;
for(i=0, pShd = (SVBT16*)pS; i<nAnz; i++, pShd++ )
pSHDs[i].SetWWValue( *pShd );
}
void WW8TabBandDesc::ReadNewShd(const sal_uInt8* pS, bool bVer67)
{
sal_uInt8 nLen = pS ? *(pS - 1) : 0;
if (!nLen)
return;
if (!pNewSHDs)
pNewSHDs = new sal_uInt32[nWwCols];
short nAnz = nLen / 10; //10 bytes each
if (nAnz > nWwCols)
nAnz = nWwCols;
int i=0;
while (i < nAnz)
pNewSHDs[i++] = SwWW8ImplReader::ExtractColour(pS, bVer67);
while (i < nWwCols)
pNewSHDs[i++] = COL_AUTO;
}
void WW8TabBandDesc::setcelldefaults(WW8_TCell *pCells, short nCols)
{
memset( pCells, 0, nCols * sizeof( WW8_TCell ) );
}
const sal_uInt8 *HasTabCellSprm(WW8PLCFx_Cp_FKP* pPap, bool bVer67)
{
const sal_uInt8 *pParams;
if (bVer67)
pParams = pPap->HasSprm(24);
else
{
if (0 == (pParams = pPap->HasSprm(0x244B)))
pParams = pPap->HasSprm(0x2416);
}
return pParams;
}
enum wwTableSprm
{
sprmNil,
sprmTTableWidth, sprmTTextFlow, sprmTFCantSplit, sprmTJc, sprmTFBiDi,
sprmTDefTable, sprmTDyaRowHeight, sprmTDefTableShd, sprmTDxaLeft,
sprmTSetBrc, sprmTSetBrc90, sprmTDxaCol, sprmTInsert, sprmTDelete,
sprmTTableHeader, sprmTDxaGapHalf, sprmTTableBorders, sprmTTableBorders90,
sprmTDefTableNewShd, sprmTCellPadding, sprmTCellPaddingDefault
};
wwTableSprm GetTableSprm(sal_uInt16 nId, ww::WordVersion eVer)
{
switch (eVer)
{
case ww::eWW8:
switch (nId)
{
case NS_sprm::LN_TTableWidth:
return sprmTTableWidth;
case NS_sprm::LN_TTextFlow:
return sprmTTextFlow;
case NS_sprm::LN_TTableHeader:
return sprmTTableHeader;
case NS_sprm::LN_TFCantSplit:
return sprmTFCantSplit;
case NS_sprm::LN_TJc90:
return sprmTJc;
case NS_sprm::LN_TFBiDi:
return sprmTFBiDi;
case NS_sprm::LN_TDelete:
return sprmTDelete;
case NS_sprm::LN_TInsert:
return sprmTInsert;
case NS_sprm::LN_TDxaCol:
return sprmTDxaCol;
case NS_sprm::LN_TDyaRowHeight:
return sprmTDyaRowHeight;
case NS_sprm::LN_TDxaLeft:
return sprmTDxaLeft;
case NS_sprm::LN_TDxaGapHalf:
return sprmTDxaGapHalf;
case NS_sprm::LN_TTableBorders80:
return sprmTTableBorders;
case NS_sprm::LN_TDefTable:
return sprmTDefTable;
case NS_sprm::LN_TDefTableShd80:
return sprmTDefTableShd;
case NS_sprm::LN_TDefTableShd:
return sprmTDefTableNewShd;
case NS_sprm::LN_TTableBorders:
return sprmTTableBorders90;
case NS_sprm::LN_TSetBrc80:
return sprmTSetBrc;
case NS_sprm::LN_TSetBrc:
return sprmTSetBrc90;
case NS_sprm::LN_TCellPadding:
return sprmTCellPadding;
case NS_sprm::LN_TCellPaddingDefault:
return sprmTCellPaddingDefault;
}
break;
case ww::eWW7:
case ww::eWW6:
switch (nId)
{
case 182:
return sprmTJc;
case 183:
return sprmTDxaLeft;
case 184:
return sprmTDxaGapHalf;
case 186:
return sprmTTableHeader;
case 187:
return sprmTTableBorders;
case 189:
return sprmTDyaRowHeight;
case 190:
return sprmTDefTable;
case 191:
return sprmTDefTableShd;
case 193:
return sprmTSetBrc;
case 194:
return sprmTInsert;
case 195:
return sprmTDelete;
case 196:
return sprmTDxaCol;
}
break;
case ww::eWW2:
switch (nId)
{
case 146:
return sprmTJc;
case 147:
return sprmTDxaLeft;
case 148:
return sprmTDxaGapHalf;
case 153:
return sprmTDyaRowHeight;
case 154:
return sprmTDefTable;
case 155:
return sprmTDefTableShd;
case 157:
return sprmTSetBrc;
case 158:
return sprmTInsert;
case 159:
return sprmTDelete;
case 160:
return sprmTDxaCol;
}
break;
}
return sprmNil;
}
WW8TabDesc::WW8TabDesc(SwWW8ImplReader* pIoClass, WW8_CP nStartCp) :
mpOldRedlineStack(0),
pIo(pIoClass),
pFirstBand(0),
pActBand(0),
pTmpPos(0),
pTblNd(0),
pTabLines(0),
pTabLine(0),
pTabBoxes(0),
pTabBox(0),
pAktWWCell(0),
nRows(0),
nDefaultSwCols(0),
nBands(0),
nMinLeft(0),
nConvertedLeft(0),
nMaxRight(0),
nSwWidth(0),
nPreferredWidth(0),
nOrgDxaLeft(0),
bOk(true),
bClaimLineFmt(false),
eOri(text::HoriOrientation::NONE),
bIsBiDi(false),
nAktRow(0),
nAktBandRow(0),
nAktCol(0),
nRowsToRepeat(0),
pTable(0),
pParentPos(0),
pFlyFmt(0),
aItemSet(pIo->rDoc.GetAttrPool(),RES_FRMATR_BEGIN,RES_FRMATR_END-1)
{
pIo->bAktAND_fNumberAcross = false;
static const sal_Int16 aOriArr[] =
{
text::HoriOrientation::LEFT, text::HoriOrientation::CENTER, text::HoriOrientation::RIGHT, text::HoriOrientation::CENTER
};
bool bOldVer = ww::IsSevenMinus(pIo->GetFib().GetFIBVersion());
WW8_TablePos aTabPos;
WW8PLCFxSave1 aSave;
pIo->pPlcxMan->GetPap()->Save( aSave );
WW8PLCFx_Cp_FKP* pPap = pIo->pPlcxMan->GetPapPLCF();
eOri = text::HoriOrientation::LEFT;
WW8TabBandDesc* pNewBand = new WW8TabBandDesc;
wwSprmParser aSprmParser(pIo->GetFib().GetFIBVersion());
// process pPap until end of table found
do
{
short nTabeDxaNew = SHRT_MAX;
bool bTabRowJustRead = false;
const sal_uInt8* pShadeSprm = 0;
const sal_uInt8* pNewShadeSprm = 0;
const sal_uInt8* pTableBorders = 0;
const sal_uInt8* pTableBorders90 = 0;
std::vector<const sal_uInt8*> aTSetBrcs, aTSetBrc90s;
WW8_TablePos *pTabPos = 0;
// search end of a tab row
if(!(pIo->SearchRowEnd(pPap, nStartCp, pIo->nInTable)))
{
bOk = false;
break;
}
// Get the SPRM chains:
// first from PAP and then from PCD (of the Piece Table)
WW8PLCFxDesc aDesc;
pPap->GetSprms( &aDesc );
WW8SprmIter aSprmIter(aDesc.pMemPos, aDesc.nSprmsLen, aSprmParser);
for (int nLoop = 0; nLoop < 2; ++nLoop)
{
bool bRepeatedSprm = false;
const sal_uInt8* pParams;
while (aSprmIter.GetSprms() && 0 != (pParams = aSprmIter.GetAktParams()))
{
sal_uInt16 nId = aSprmIter.GetAktId();
wwTableSprm eSprm = GetTableSprm(nId, pIo->GetFib().GetFIBVersion());
switch (eSprm)
{
case sprmTTableWidth:
{
const sal_uInt8 b0 = pParams[0];
const sal_uInt8 b1 = pParams[1];
const sal_uInt8 b2 = pParams[2];
if (b0 == 3) // Twips
nPreferredWidth = b2 * 0x100 + b1;
}
break;
case sprmTTextFlow:
pNewBand->ProcessDirection(pParams);
break;
case sprmTFCantSplit:
pNewBand->bCantSplit = *pParams;
bClaimLineFmt = true;
break;
case sprmTTableBorders:
pTableBorders = pParams; // process at end
break;
case sprmTTableBorders90:
pTableBorders90 = pParams; // process at end
break;
case sprmTTableHeader:
if (!bRepeatedSprm)
{
nRowsToRepeat++;
bRepeatedSprm = true;
}
break;
case sprmTJc:
// sprmTJc - Justification Code
if (nRows == 0)
eOri = aOriArr[*pParams & 0x3];
break;
case sprmTFBiDi:
bIsBiDi = SVBT16ToShort(pParams) ? true : false;
break;
case sprmTDxaGapHalf:
pNewBand->nGapHalf = (sal_Int16)SVBT16ToShort( pParams );
break;
case sprmTDyaRowHeight:
pNewBand->nLineHeight = (sal_Int16)SVBT16ToShort( pParams );
bClaimLineFmt = true;
break;
case sprmTDefTable:
pNewBand->ReadDef(bOldVer, pParams);
bTabRowJustRead = true;
break;
case sprmTDefTableShd:
pShadeSprm = pParams;
break;
case sprmTDefTableNewShd:
pNewShadeSprm = pParams;
break;
case sprmTDxaLeft:
// our Writer cannot shift single table lines
// horizontally so we have to find the smallest
// parameter (meaning the left-most position) and then
// shift the whole table to that margin (see below)
{
short nDxaNew = (sal_Int16)SVBT16ToShort( pParams );
nOrgDxaLeft = nDxaNew;
if( nDxaNew < nTabeDxaNew )
nTabeDxaNew = nDxaNew;
}
break;
case sprmTSetBrc:
aTSetBrcs.push_back(pParams); // process at end
break;
case sprmTSetBrc90:
aTSetBrc90s.push_back(pParams); // process at end
break;
case sprmTDxaCol:
pNewBand->ProcessSprmTDxaCol(pParams);
break;
case sprmTInsert:
pNewBand->ProcessSprmTInsert(pParams);
break;
case sprmTDelete:
pNewBand->ProcessSprmTDelete(pParams);
break;
case sprmTCellPaddingDefault:
pNewBand->ProcessSpacing(pParams);
break;
case sprmTCellPadding:
pNewBand->ProcessSpecificSpacing(pParams);
break;
default:
;
}
aSprmIter.advance();
}
if( !nLoop )
{
pPap->GetPCDSprms( aDesc );
aSprmIter.SetSprms( aDesc.pMemPos, aDesc.nSprmsLen );
}
}
// WW-Tables can contain Fly-changes. For this abort tables here
// and start again. *pPap is still before TabRowEnd, so TestApo()
// can be called with the last parameter set to false and therefore
// take effect.
if (bTabRowJustRead)
{
// Some SPRMs need to be processed *after* ReadDef is called
// so they were saved up until here
if (pShadeSprm)
pNewBand->ReadShd(pShadeSprm);
if (pNewShadeSprm)
pNewBand->ReadNewShd(pNewShadeSprm, bOldVer);
if (pTableBorders90)
pNewBand->ProcessSprmTTableBorders(9, pTableBorders90);
else if (pTableBorders)
pNewBand->ProcessSprmTTableBorders(bOldVer ? 6 : 8,
pTableBorders);
std::vector<const sal_uInt8*>::const_iterator iter;
for (iter = aTSetBrcs.begin(); iter != aTSetBrcs.end(); ++iter)
pNewBand->ProcessSprmTSetBRC(bOldVer ? 6 : 8, *iter);
for (iter = aTSetBrc90s.begin(); iter != aTSetBrc90s.end(); ++iter)
pNewBand->ProcessSprmTSetBRC(9, *iter);
}
if( nTabeDxaNew < SHRT_MAX )
{
short* pCenter = pNewBand->nCenter;
short firstDxaCenter = *pCenter;
for( int i = 0; i < pNewBand->nWwCols; i++, ++pCenter )
{
// #i30298# Use sprmTDxaLeft to adjust the left indent
// #i40461# Use dxaGapHalf during calculation
*pCenter +=
(nTabeDxaNew - (firstDxaCenter + pNewBand->nGapHalf));
}
}
if (!pActBand)
pActBand = pFirstBand = pNewBand;
else
{
pActBand->pNextBand = pNewBand;
pActBand = pNewBand;
}
nBands++;
pNewBand = new WW8TabBandDesc;
nRows++;
pActBand->nRows++;
//Seek our pap to its next block of properties
WW8PLCFxDesc aRes;
aRes.pMemPos = 0;
aRes.nStartPos = nStartCp;
if (!(pPap->SeekPos(aRes.nStartPos)))
{
aRes.nEndPos = WW8_CP_MAX;
pPap->SetDirty(true);
}
pPap->GetSprms(&aRes);
pPap->SetDirty(false);
//Are we at the end of available properties
if (
!pPap->HasFkp() || pPap->Where() == WW8_CP_MAX ||
aRes.nStartPos == WW8_CP_MAX
)
{
bOk = false;
break;
}
//Are we still in a table cell
const sal_uInt8* pParams = HasTabCellSprm(pPap, bOldVer);
const sal_uInt8 *pLevel = pPap->HasSprm(0x6649);
// InTable
if (!pParams || (1 != *pParams) ||
(pLevel && (*pLevel <= pIo->nInTable)))
{
break;
}
//Get the end of row new table positioning data
WW8_CP nMyStartCp=nStartCp;
if (pIo->SearchRowEnd(pPap, nMyStartCp, pIo->nInTable))
if (pIo->ParseTabPos(&aTabPos, pPap))
pTabPos = &aTabPos;
//Move back to this cell
aRes.pMemPos = 0;
aRes.nStartPos = nStartCp;
// PlcxMan currently points too far ahead so we need to bring
// it back to where we are trying to make a table
pIo->pPlcxMan->GetPap()->nOrigStartPos = aRes.nStartPos;
if (!(pPap->SeekPos(aRes.nStartPos)))
{
aRes.nEndPos = WW8_CP_MAX;
pPap->SetDirty(true);
}
pPap->GetSprms(&aRes);
pPap->SetDirty(false);
//Does this row match up with the last row closely enough to be
//considered part of the same table
ApoTestResults aApo = pIo->TestApo(pIo->nInTable + 1, false, pTabPos);
/*
##513##, #79474# If this is not sufficient, then we should look at
sprmPD{y|x}aAbs as our indicator that the following set of rows is not
part of this table, but instead is an absolutely positioned table
outside of this one
*/
if (aApo.mbStopApo)
break;
if (aApo.mbStartApo)
{
//if there really is a fly here, and not a "null" fly then break.
WW8FlyPara *pNewFly = pIo->ConstructApo(aApo, pTabPos);
if (pNewFly)
delete pNewFly;
else
break;
}
nStartCp = aRes.nEndPos;
}
while(true);
if( bOk )
{
if( pActBand->nRows > 1 )
{
// last band has more than 1 cell
delete pNewBand;
pNewBand = new WW8TabBandDesc( *pActBand ); // create new
pActBand->nRows--; // wegen Sonderbehandlung Raender-Defaults
pNewBand->nRows = 1;
pActBand->pNextBand = pNewBand; // am Ende einschleifen
nBands++;
pNewBand = 0; // do not delete
}
CalcDefaults();
}
delete pNewBand;
pIo->pPlcxMan->GetPap()->Restore( aSave );
}
WW8TabDesc::~WW8TabDesc()
{
WW8TabBandDesc* pR = pFirstBand;
while(pR)
{
WW8TabBandDesc* pR2 = pR->pNextBand;
delete pR;
pR = pR2;
}
delete pParentPos;
}
void WW8TabDesc::CalcDefaults()
{
short nMinCols = SHRT_MAX;
WW8TabBandDesc* pR;
nMinLeft = SHRT_MAX;
nMaxRight = SHRT_MIN;
/*
If we are an honestly inline centered table, then the normal rules of
engagement for left and right margins do not apply. The multiple rows are
centered regardless of the actual placement of rows, so we cannot have
mismatched rows as is possible in other configurations.
e.g. change the example bugdoc in word from text wrapping of none (inline)
to around (in frame (bApo)) and the table splits into two very disjoint
rows as the beginning point of each row are very different
*/
if ((!pIo->InLocalApo()) && (eOri == text::HoriOrientation::CENTER))
{
for (pR = pFirstBand; pR; pR = pR->pNextBand)
for( short i = pR->nWwCols; i >= 0; --i)
pR->nCenter[i] = pR->nCenter[i] - pR->nCenter[0];
}
// 1. Durchlauf: aeusserste L- und R-Grenzen finden
for( pR = pFirstBand; pR; pR = pR->pNextBand )
{
if( pR->nCenter[0] < nMinLeft )
nMinLeft = pR->nCenter[0];
for( short i = 0; i < pR->nWwCols; i++ )
{
/*
If the margins are so large as to make the displayable
area inside them smaller than the minimum allowed then adjust the
width to fit. But only do it if the two cells are not the exact
same value, if they are then the cell does not really exist and will
be blended together into the same cell through the use of the
nTrans(late) array.
#i28333# If the nGapHalf is greater than the cell width best to ignore it
*/
int nCellWidth = pR->nCenter[i+1] - pR->nCenter[i];
if (nCellWidth && ((nCellWidth - pR->nGapHalf*2) < MINLAY) && pR->nGapHalf < nCellWidth)
{
pR->nCenter[i+1] = pR->nCenter[i]+MINLAY+pR->nGapHalf * 2;
}
}
if( pR->nCenter[pR->nWwCols] > nMaxRight )
nMaxRight = pR->nCenter[pR->nWwCols];
}
nSwWidth = nMaxRight - nMinLeft;
// If the table is right aligned we need to align all rows to the
// row that has the furthest right point
if(eOri == text::HoriOrientation::RIGHT)
{
for( pR = pFirstBand; pR; pR = pR->pNextBand )
{
int adjust = nMaxRight - pR->nCenter[pR->nWwCols];
for( short i = 0; i < pR->nWwCols + 1; i++ )
{
pR->nCenter[i] = static_cast< short >(pR->nCenter[i] + adjust);
}
}
}
// 2. pass: Detect number of writer columns. This can exceed the count
// of columns in WW by 2, because SW in constrast to WW does not provide
// fringed left and right borders and has to fill with empty boxes.
// Non exisitent cells can reduce the number of columns.
// 3. pass: Replace border with defaults if needed
nConvertedLeft = nMinLeft;
short nLeftMaxThickness = 0, nRightMaxThickness=0;
for( pR = pFirstBand ; pR; pR = pR->pNextBand )
{
if( !pR->pTCs )
{
pR->pTCs = new WW8_TCell[ pR->nWwCols ];
memset( pR->pTCs, 0, pR->nWwCols * sizeof( WW8_TCell ) );
}
for (int k = 0; k < pR->nWwCols; ++k)
{
WW8_TCell* pT = &pR->pTCs[k];
int i, j;
for( i = 0; i < 4; i ++ )
{
if (pT->rgbrc[i].brcType()==0)
{
// if shadow is set, its invalid
j = i;
switch( i )
{
case 0:
// outer top / horizontally inside
j = (pR == pFirstBand) ? 0 : 4;
break;
case 1:
// outer left / vertically inside
j = k ? 5 : 1;
break;
case 2:
// outer bottom / horizontally inside
j = pR->pNextBand ? 4 : 2;
break;
case 3:
// outer right / vertically inside
j = (k == pR->nWwCols - 1) ? 3 : 5;
break;
}
// mangel mit Defaults ueber
pT->rgbrc[i] = pR->aDefBrcs[j];
}
}
}
if (pR->nWwCols)
{
/*
Similar to graphics and other elements word does not totally
factor the width of the border into its calculations of size, we
do so we must adjust out widths and other dimensions to fit. It
appears that what occurs is that the last cell's right margin if
the margin width that is not calculated into winwords table
dimensions, so in that case increase the table to include the
extra width of the right margin.
*/
if ( ! pR->pTCs[pR->nWwCols-1].rgbrc[3].fShadow() )
{
short nThickness = pR->pTCs[pR->nWwCols-1].rgbrc[3].
DetermineBorderProperties();
pR->nCenter[pR->nWwCols] = pR->nCenter[pR->nWwCols] + nThickness;
if (nThickness > nRightMaxThickness)
nRightMaxThickness = nThickness;
}
/*
The left space of the table is in nMinLeft, but again this
does not consider the margin thickness to its left in the
placement value, so get the thickness of the left border,
half is placed to the left of the nominal left side, and
half to the right.
*/
if ( ! pR->pTCs[0].rgbrc[1].fShadow() )
{
short nThickness = pR->pTCs[0].rgbrc[1].
DetermineBorderProperties();
if (nThickness > nLeftMaxThickness)
nLeftMaxThickness = nThickness;
}
}
}
nSwWidth = nSwWidth + nRightMaxThickness;
nMaxRight = nMaxRight + nRightMaxThickness;
nConvertedLeft = nMinLeft-(nLeftMaxThickness/2);
for( pR = pFirstBand; pR; pR = pR->pNextBand )
{
pR->nSwCols = pR->nWwCols;
pR->bLEmptyCol = pR->nCenter[0] - nMinLeft >= MINLAY;
pR->bREmptyCol = (nMaxRight - pR->nCenter[pR->nWwCols] - nRightMaxThickness) >= MINLAY;
short nAddCols = short(pR->bLEmptyCol) + short(pR->bREmptyCol);
sal_uInt16 i;
sal_uInt16 j = ( pR->bLEmptyCol ) ? 1 : 0;
for (i = 0; i < pR->nWwCols; ++i)
{
pR->nTransCell[i] = (sal_Int8)j;
if ( pR->nCenter[i] < pR->nCenter[i+1] )
{
pR->bExist[i] = true;
j++;
}
else
{
pR->bExist[i] = false;
nAddCols--;
}
}
OSL_ENSURE(i,"no columns in row ?");
/*
If the last cell was "false" then there is no valid cell following it,
so the default mapping forward wont't work. So map it (and
contiguous invalid cells backwards to the last valid cell instead.
*/
if (i && pR->bExist[i-1] == false)
{
sal_uInt16 k=i-1;
while (k && pR->bExist[k] == false)
k--;
for (sal_uInt16 n=k+1;n<i;n++)
pR->nTransCell[n] = pR->nTransCell[k];
}
pR->nTransCell[i++] = (sal_Int8)(j++); // Can exceed by 2 among other
pR->nTransCell[i] = (sal_Int8)j; // things because of bREmptyCol
pR->nSwCols = pR->nSwCols + nAddCols;
if( pR->nSwCols < nMinCols )
nMinCols = pR->nSwCols;
}
/*
#i9718#
Find the largest of the borders on cells that adjoin top bottom and remove
the val from the top and put in on the bottom cell. I can't seem to make
disjoint upper and lowers to see what happens there.
*/
if ((nMinLeft && !bIsBiDi && text::HoriOrientation::LEFT == eOri) ||
(nMinLeft != -108 && bIsBiDi && text::HoriOrientation::RIGHT == eOri)) // Word sets the first nCenter value to -108 when no indent is used
eOri = text::HoriOrientation::LEFT_AND_WIDTH; // absolutely positioned
nDefaultSwCols = nMinCols; // because inserting cells is cheaper than merging
if( nDefaultSwCols == 0 )
bOk = false;
pActBand = pFirstBand;
nAktBandRow = 0;
OSL_ENSURE( pActBand, "pActBand ist 0" );
}
void WW8TabDesc::SetSizePosition(SwFrmFmt* pFrmFmt)
{
SwFrmFmt* pApply = pFrmFmt;
if (!pApply )
pApply = pTable->GetFrmFmt();
OSL_ENSURE(pApply,"No frame");
pApply->SetFmtAttr(aItemSet);
if (pFrmFmt)
{
SwFmtFrmSize aSize = pFrmFmt->GetFrmSize();
aSize.SetHeightSizeType(ATT_MIN_SIZE);
aSize.SetHeight(MINLAY);
pFrmFmt->SetFmtAttr(aSize);
pTable->GetFrmFmt()->SetFmtAttr(SwFmtHoriOrient(0,text::HoriOrientation::FULL));
}
}
void wwSectionManager::PrependedInlineNode(const SwPosition &rPos,
const SwNode &rNode)
{
OSL_ENSURE(!maSegments.empty(),
"should not be possible, must be at least one segment");
if ((!maSegments.empty()) && (maSegments.back().maStart == rPos.nNode))
maSegments.back().maStart = SwNodeIndex(rNode);
}
void WW8TabDesc::CreateSwTable(SvxULSpaceItem* pULSpaceItem)
{
::SetProgressState(pIo->nProgress, pIo->mpDocShell); // Update
// if there is already some content on the Node append new node to ensure
// that this content remains ABOVE the table
SwPosition* pPoint = pIo->pPaM->GetPoint();
bool bInsNode = pPoint->nContent.GetIndex() ? true : false;
bool bSetMinHeight = false;
/*
#i8062#
Set fly anchor to its anchor pos, so that if a table starts immediately
at this position a new node will be inserted before inserting the table.
*/
if (!bInsNode && pIo->pFmtOfJustInsertedApo)
{
const SwPosition* pAPos =
pIo->pFmtOfJustInsertedApo->GetAnchor().GetCntntAnchor();
if (pAPos && &pAPos->nNode.GetNode() == &pPoint->nNode.GetNode())
{
bInsNode = true;
bSetMinHeight = true;
SwFmtSurround aSur(pIo->pFmtOfJustInsertedApo->GetSurround());
aSur.SetAnchorOnly(true);
pIo->pFmtOfJustInsertedApo->SetFmtAttr(aSur);
}
}
if (bSetMinHeight == true)
{
// minimize Fontsize to minimize height growth of the header/footer
// set font size to 1 point to minimize y-growth of Hd/Ft
SvxFontHeightItem aSz(20, 100, RES_CHRATR_FONTSIZE);
pIo->NewAttr( aSz );
pIo->pCtrlStck->SetAttr(*pPoint, RES_CHRATR_FONTSIZE);
}
if (bInsNode)
pIo->AppendTxtNode(*pPoint);
pTmpPos = new SwPosition( *pIo->pPaM->GetPoint() );
// The table is small: The number of columns is the lowest count of
// columns of the origin, because inserting is faster than deleting.
// The number of rows is the count of bands because (identically)
// rows of a band can be duplicated easy.
pTable = pIo->rDoc.InsertTable(
SwInsertTableOptions( tabopts::HEADLINE_NO_BORDER, 0 ),
*pTmpPos, nBands, nDefaultSwCols, eOri, 0, 0, false, true );
OSL_ENSURE(pTable && pTable->GetFrmFmt(), "insert table failed");
if (!pTable || !pTable->GetFrmFmt())
return;
if (pULSpaceItem && pULSpaceItem->GetUpper() != 0)
aItemSet.Put(*pULSpaceItem);
SwTableNode* pTableNode = pTable->GetTableNode();
OSL_ENSURE(pTableNode, "no table node!");
if (pTableNode)
{
pIo->maSectionManager.PrependedInlineNode(*pIo->pPaM->GetPoint(),
*pTableNode);
}
// Check if the node into which the table should be inserted already
// contains a Pagedesc. If so that Pagedesc would be moved to the
// row after the table, whats wrong. So delete and
// set later to the table format.
if (SwTxtNode *const pNd = pTmpPos->nNode.GetNode().GetTxtNode())
{
if (const SfxItemSet* pSet = pNd->GetpSwAttrSet())
{
SfxPoolItem *pSetAttr = 0;
const SfxPoolItem* pItem;
if (SFX_ITEM_SET == pSet->GetItemState(RES_BREAK, false, &pItem))
{
pSetAttr = new SvxFmtBreakItem( *(SvxFmtBreakItem*)pItem );
pNd->ResetAttr( RES_BREAK );
}
// eventually set the PageDesc/Break now to the table
if (pSetAttr)
{
aItemSet.Put(*pSetAttr);
delete pSetAttr;
}
}
}
// total width of table
if( nMaxRight - nMinLeft > MINLAY * nDefaultSwCols )
{
pTable->GetFrmFmt()->SetFmtAttr(SwFmtFrmSize(ATT_FIX_SIZE, nSwWidth));
aItemSet.Put(SwFmtFrmSize(ATT_FIX_SIZE, nSwWidth));
}
SvxFrameDirectionItem aDirection(
bIsBiDi ? FRMDIR_HORI_RIGHT_TOP : FRMDIR_HORI_LEFT_TOP, RES_FRAMEDIR );
pTable->GetFrmFmt()->SetFmtAttr(aDirection);
if (text::HoriOrientation::LEFT_AND_WIDTH == eOri)
{
if (!pIo->nInTable && pIo->InLocalApo() && pIo->pSFlyPara->pFlyFmt &&
GetMinLeft())
{
//If we are inside a frame and we have a border, the frames
//placement does not consider the tables border, which word
//displays outside the frame, so adjust here.
SwFmtHoriOrient aHori(pIo->pSFlyPara->pFlyFmt->GetHoriOrient());
sal_Int16 eHori = aHori.GetHoriOrient();
if ((eHori == text::HoriOrientation::NONE) || (eHori == text::HoriOrientation::LEFT) ||
(eHori == text::HoriOrientation::LEFT_AND_WIDTH))
{
//With multiple table, use last table settings. Perhaps
//the maximum is what word does ?
aHori.SetPos(pIo->pSFlyPara->nXPos + GetMinLeft());
aHori.SetHoriOrient(text::HoriOrientation::NONE);
pIo->pSFlyPara->pFlyFmt->SetFmtAttr(aHori);
}
}
else
{
//If bApo is set, then this table is being placed in a floating
//frame, and the frame matches the left and right *lines* of the
//table, so the space to the left of the table isn't to be used
//inside the frame, in word the dialog involved greys out the
//ability to set the margin.
SvxLRSpaceItem aL( RES_LR_SPACE );
// set right to original DxaLeft (i28656)
long nLeft = 0;
if (!bIsBiDi)
nLeft = GetMinLeft();
else
{
if (nPreferredWidth)
{
nLeft = pIo->maSectionManager.GetTextAreaWidth();
nLeft = nLeft - nPreferredWidth - nOrgDxaLeft;
}
else
nLeft = -GetMinLeft();
}
aL.SetLeft(nLeft);
aItemSet.Put(aL);
}
}
mpOldRedlineStack = pIo->mpRedlineStack;
pIo->mpRedlineStack = new sw::util::RedlineStack(pIo->rDoc);
}
void WW8TabDesc::UseSwTable()
{
// init global Vars
pTabLines = &pTable->GetTabLines();
nAktRow = nAktCol = nAktBandRow = 0;
pTblNd = (SwTableNode*)(*pTabLines)[0]->GetTabBoxes()[0]->
GetSttNd()->FindTableNode();
OSL_ENSURE( pTblNd, "wo ist mein TabellenNode" );
// #i69519# - Restrict rows to repeat to a decent value
if ( nRowsToRepeat == static_cast<sal_uInt16>(nRows) )
nRowsToRepeat = 1;
pTblNd->GetTable().SetRowsToRepeat( nRowsToRepeat );
// insert extra cells if needed and something like this
AdjustNewBand();
WW8DupProperties aDup(pIo->rDoc,pIo->pCtrlStck);
pIo->pCtrlStck->SetAttr(*pIo->pPaM->GetPoint(), 0, false);
// now set the correct PaM and prepare first merger group if any
SetPamInCell(nAktCol, true);
aDup.Insert(*pIo->pPaM->GetPoint());
pIo->bWasTabRowEnd = false;
pIo->bWasTabCellEnd = false;
}
void WW8TabDesc::MergeCells()
{
short nRow;
for (pActBand=pFirstBand, nRow=0; pActBand; pActBand=pActBand->pNextBand)
{
// insert current box into merge group if appropriate
if( pActBand->pTCs )
{
for( short j = 0; j < pActBand->nRows; j++, nRow++ )
for( short i = 0; i < pActBand->nWwCols; i++ )
{
WW8SelBoxInfo* pActMGroup = 0;
// start a new merge group if appropriate
OSL_ENSURE(nRow < (sal_uInt16)pTabLines->size(),
"Too few lines, table ended early");
if (nRow >= (sal_uInt16)pTabLines->size())
return;
pTabLine = (*pTabLines)[ nRow ];
pTabBoxes = &pTabLine->GetTabBoxes();
sal_uInt16 nCol = pActBand->nTransCell[ i ];
if (!pActBand->bExist[i])
continue;
OSL_ENSURE(nCol < pTabBoxes->size(),
"Too few columns, table ended early");
if (nCol >= pTabBoxes->size())
return;
pTabBox = (*pTabBoxes)[nCol];
WW8_TCell& rCell = pActBand->pTCs[ i ];
// is this the left upper cell of a merge group ?
bool bMerge = false;
if ( rCell.bVertRestart && !rCell.bMerged )
bMerge = true;
else if (rCell.bFirstMerged && pActBand->bExist[i])
{
// Some tests to avoid merging cells which previously were
// declared invalid because of sharing the exact same dimensions
// as their previous cell
//If theres anything underneath/above we're ok.
if (rCell.bVertMerge || rCell.bVertRestart)
bMerge = true;
else
{
//If it's a hori merge only, and the only things in
//it are invalid cells then it's already taken care
//of, so don't merge.
for (sal_uInt16 i2 = i+1; i2 < pActBand->nWwCols; i2++ )
if (pActBand->pTCs[ i2 ].bMerged &&
!pActBand->pTCs[ i2 ].bFirstMerged )
{
if (pActBand->bExist[i2])
{
bMerge = true;
break;
}
}
else
break;
}
}
if (bMerge)
{
short nX1 = pActBand->nCenter[ i ];
short nWidth = pActBand->nWidth[ i ];
// 2. create current merge group
pActMGroup = new WW8SelBoxInfo( nX1, nWidth );
// determine size of new merge group
// before inserted the new merge group.
// Needed to correctly locked previously created merge groups.
// Calculate total width and set
short nSizCell = pActBand->nWidth[ i ];
for (sal_uInt16 i2 = i+1; i2 < pActBand->nWwCols; i2++ )
if (pActBand->pTCs[ i2 ].bMerged &&
!pActBand->pTCs[ i2 ].bFirstMerged )
{
nSizCell = nSizCell + pActBand->nWidth[ i2 ];
}
else
break;
pActMGroup->nGroupWidth = nSizCell;
// locked previously created merge groups,
// after determining the size for the new merge group.
// 1. If necessary close old merge group(s) that overlap
// the X-area of the new group
for (;;)
{
WW8SelBoxInfo* p = FindMergeGroup(
nX1, pActMGroup->nGroupWidth, false );
if (p == 0)
{
break;
}
p->bGroupLocked = true;
}
// 3. push to group array
aMergeGroups.push_back(pActMGroup);
}
// if necessary add the current box to a merge group
// (that can be a newly created or another group)
UpdateTableMergeGroup( rCell, pActMGroup, pTabBox, i );
}
}
}
}
//There is a limbo area in word at the end of the row marker
//where properties can live in word, there is no location in
//writer equivalent, so try and park the cursor in the best
//match, see #i23022#/#i18644#
void WW8TabDesc::ParkPaM()
{
SwTableBox *pTabBox2 = 0;
short nRow = nAktRow + 1;
if (nRow < (sal_uInt16)pTabLines->size())
{
if (SwTableLine *pLine = (*pTabLines)[nRow])
{
SwTableBoxes &rBoxes = pLine->GetTabBoxes();
pTabBox2 = rBoxes.empty() ? 0 : rBoxes.front();
}
}
if (!pTabBox2 || !pTabBox2->GetSttNd())
{
MoveOutsideTable();
return;
}
if (pIo->pPaM->GetPoint()->nNode != pTabBox2->GetSttIdx() + 1)
{
pIo->pPaM->GetPoint()->nNode = pTabBox2->GetSttIdx() + 1;
pIo->pPaM->GetPoint()->nContent.Assign(pIo->pPaM->GetCntntNode(), 0);
pIo->rDoc.SetTxtFmtColl(*pIo->pPaM, (SwTxtFmtColl*)pIo->pDfltTxtFmtColl);
}
}
void WW8TabDesc::MoveOutsideTable()
{
OSL_ENSURE(pTmpPos && pIo, "I've forgotten where the table is anchored");
if (pTmpPos && pIo)
*pIo->pPaM->GetPoint() = *pTmpPos;
}
void WW8TabDesc::FinishSwTable()
{
pIo->mpRedlineStack->closeall(*pIo->pPaM->GetPoint());
delete pIo->mpRedlineStack;
pIo->mpRedlineStack = mpOldRedlineStack;
mpOldRedlineStack = 0;
WW8DupProperties aDup(pIo->rDoc,pIo->pCtrlStck);
pIo->pCtrlStck->SetAttr( *pIo->pPaM->GetPoint(), 0, false);
MoveOutsideTable();
delete pTmpPos, pTmpPos = 0;
aDup.Insert(*pIo->pPaM->GetPoint());
pIo->bWasTabRowEnd = false;
pIo->bWasTabCellEnd = false;
pIo->maInsertedTables.InsertTable(*pTblNd, *pIo->pPaM);
MergeCells();
// if needed group cells together that should be merged
if( !aMergeGroups.empty() )
{
// process all merge groups one by one
for (
WW8MergeGroups::iterator groupIt = aMergeGroups.begin();
groupIt != aMergeGroups.end();
++groupIt)
{
sal_uInt16 nActBoxCount = groupIt->size();
if( ( 1 < nActBoxCount ) && (*groupIt)[0] )
{
const sal_uInt16 nRowSpan = groupIt->size();
for (sal_uInt16 n = 0; n < nRowSpan; ++n)
{
SwTableBox* pCurrentBox = (*groupIt)[n];
const long nRowSpanSet = n == 0 ?
nRowSpan :
((-1) * (nRowSpan - n));
pCurrentBox->setRowSpan( nRowSpanSet );
}
}
}
pIo->pFmtOfJustInsertedApo = 0;
aMergeGroups.clear();
}
}
// browse aMergeGroups, detect the index of the first fitting group or -1 otherwise
// Parameter: nXcenter = center position of asking box
// nWidth = width of asking box
// bExact = flag, if box has to fit into group
// or only has to touch
WW8SelBoxInfo* WW8TabDesc::FindMergeGroup(short nX1, short nWidth, bool bExact)
{
if( !aMergeGroups.empty() )
{
// still valid area near the boundery
const short nToleranz = 4;
// box boundery
short nX2 = nX1 + nWidth;
// approximate group boundery
short nGrX1;
short nGrX2;
// improvement: search backwards
for ( short iGr = aMergeGroups.size() - 1; iGr >= 0; --iGr )
{
// the currently inspected group
WW8SelBoxInfo& rActGroup = aMergeGroups[ iGr ];
if (!rActGroup.bGroupLocked)
{
// approximate group boundery with room (tolerance) to the *outside*
nGrX1 = rActGroup.nGroupXStart - nToleranz;
nGrX2 = rActGroup.nGroupXStart
+rActGroup.nGroupWidth + nToleranz;
// If box fits report success
if( ( nX1 > nGrX1 ) && ( nX2 < nGrX2 ) )
{
return &rActGroup;
}
// does the box share areas with the group?
if( !bExact )
{
// successful if nX1 *or* nX2 are inside the group
if( ( ( nX1 > nGrX1 )
&& ( nX1 < nGrX2 - 2*nToleranz ) )
|| ( ( nX2 > nGrX1 + 2*nToleranz )
&& ( nX2 < nGrX2 ) )
// or nX1 and nX2 surround the group
|| ( ( nX1 <=nGrX1 )
&& ( nX2 >=nGrX2 ) ) )
{
return &rActGroup;
}
}
}
}
}
return 0;
}
bool WW8TabDesc::IsValidCell(short nCol) const
{
return (static_cast<size_t>(nCol) < SAL_N_ELEMENTS(pActBand->bExist)) &&
pActBand->bExist[nCol] &&
(sal_uInt16)nAktRow < pTabLines->size();
}
bool WW8TabDesc::InFirstParaInCell() const
{
//e.g. #i19718#
if (!pTabBox || !pTabBox->GetSttNd())
{
OSL_FAIL("Problem with table");
return false;
}
if (!IsValidCell(GetAktCol()))
return false;
if (pIo->pPaM->GetPoint()->nNode == pTabBox->GetSttIdx() + 1)
return true;
return false;
}
void WW8TabDesc::StartMiserableHackForUnsupportedDirection(short nWwCol)
{
OSL_ENSURE(pActBand, "Impossible");
if (pActBand && pActBand->maDirections[nWwCol] == 3)
{
pIo->pCtrlStck->NewAttr(*pIo->pPaM->GetPoint(),
SvxCharRotateItem(900, false, RES_CHRATR_ROTATE));
}
}
void WW8TabDesc::EndMiserableHackForUnsupportedDirection(short nWwCol)
{
OSL_ENSURE(pActBand, "Impossible");
if (pActBand && pActBand->maDirections[nWwCol] == 3)
pIo->pCtrlStck->SetAttr(*pIo->pPaM->GetPoint(), RES_CHRATR_ROTATE);
}
bool WW8TabDesc::SetPamInCell(short nWwCol, bool bPam)
{
OSL_ENSURE( pActBand, "pActBand ist 0" );
if (!pActBand)
return false;
sal_uInt16 nCol = pActBand->transCell(nWwCol);
if ((sal_uInt16)nAktRow >= pTabLines->size())
{
OSL_ENSURE(!this, "Actual row bigger than expected." );
if (bPam)
MoveOutsideTable();
return false;
}
pTabLine = (*pTabLines)[nAktRow];
pTabBoxes = &pTabLine->GetTabBoxes();
if (nCol >= pTabBoxes->size())
{
if (bPam)
{
// The first paragraph in a cell with upper autospacing has upper
// spacing set to 0
if (
pIo->bParaAutoBefore && pIo->bFirstPara &&
!pIo->pWDop->fDontUseHTMLAutoSpacing
)
{
pIo->SetUpperSpacing(*pIo->pPaM, 0);
}
// The last paragraph in a cell with lower autospacing has lower
// spacing set to 0
if (pIo->bParaAutoAfter && !pIo->pWDop->fDontUseHTMLAutoSpacing)
pIo->SetLowerSpacing(*pIo->pPaM, 0);
ParkPaM();
}
return false;
}
pTabBox = (*pTabBoxes)[nCol];
if( !pTabBox->GetSttNd() )
{
OSL_ENSURE(pTabBox->GetSttNd(), "Probleme beim Aufbau der Tabelle");
if (bPam)
MoveOutsideTable();
return false;
}
if (bPam)
{
pAktWWCell = &pActBand->pTCs[ nWwCol ];
// The first paragraph in a cell with upper autospacing has upper spacing set to 0
if(pIo->bParaAutoBefore && pIo->bFirstPara && !pIo->pWDop->fDontUseHTMLAutoSpacing)
pIo->SetUpperSpacing(*pIo->pPaM, 0);
// The last paragraph in a cell with lower autospacing has lower spacing set to 0
if(pIo->bParaAutoAfter && !pIo->pWDop->fDontUseHTMLAutoSpacing)
pIo->SetLowerSpacing(*pIo->pPaM, 0);
//We need to set the pPaM on the first cell, invalid
//or not so that we can collect paragraph proproties over
//all the cells, but in that case on the valid cell we do not
//want to reset the fmt properties
if (pIo->pPaM->GetPoint()->nNode != pTabBox->GetSttIdx() + 1)
{
pIo->pPaM->GetPoint()->nNode = pTabBox->GetSttIdx() + 1;
pIo->pPaM->GetPoint()->nContent.Assign(pIo->pPaM->GetCntntNode(), 0);
// Precautionally set now, otherwise the style is not set for cells
// that are inserted for margin balancing.
pIo->rDoc.SetTxtFmtColl(*pIo->pPaM, (SwTxtFmtColl*)pIo->pDfltTxtFmtColl);
// because this cells are invisible helper constructions only to simulate
// the frayed view of WW-tables we do NOT need SetTxtFmtCollAndListLevel()
}
// Better to turn Snap to Grid off for all paragraphs in tables
if(SwTxtNode *pNd = pIo->pPaM->GetNode()->GetTxtNode())
{
const SfxPoolItem &rItm = pNd->SwCntntNode::GetAttr(RES_PARATR_SNAPTOGRID);
SvxParaGridItem &rSnapToGrid = (SvxParaGridItem&)(rItm);
if(rSnapToGrid.GetValue())
{
SvxParaGridItem aGridItem( rSnapToGrid );
aGridItem.SetValue(false);
SwPosition* pGridPos = pIo->pPaM->GetPoint();
const sal_Int32 nEnd = pGridPos->nContent.GetIndex();
pGridPos->nContent.Assign(pIo->pPaM->GetCntntNode(), 0);
pIo->pCtrlStck->NewAttr(*pGridPos, aGridItem);
pGridPos->nContent.Assign(pIo->pPaM->GetCntntNode(), nEnd);
pIo->pCtrlStck->SetAttr(*pGridPos, RES_PARATR_SNAPTOGRID);
}
}
StartMiserableHackForUnsupportedDirection(nWwCol);
}
return true;
}
void WW8TabDesc::InsertCells( short nIns )
{
pTabLine = (*pTabLines)[nAktRow];
pTabBoxes = &pTabLine->GetTabBoxes();
pTabBox = (*pTabBoxes)[0];
pIo->rDoc.GetNodes().InsBoxen( pTblNd, pTabLine, (SwTableBoxFmt*)pTabBox->GetFrmFmt(),
(SwTxtFmtColl*)pIo->pDfltTxtFmtColl, 0, pTabBoxes->size(), nIns );
// The third parameter contains the FrmFmt of the boxes.
// Here it is possible to optimize to save (reduce) FrmFmts.
}
void WW8TabDesc::SetTabBorders(SwTableBox* pBox, short nWwIdx)
{
if( nWwIdx < 0 || nWwIdx >= pActBand->nWwCols )
return; // faked cells -> no border
SvxBoxItem aFmtBox( RES_BOX );
if (pActBand->pTCs) // neither Cell Border nor Default Border defined ?
{
WW8_TCell* pT = &pActBand->pTCs[nWwIdx];
if (pIo->IsBorder(pT->rgbrc))
pIo->SetBorder(aFmtBox, pT->rgbrc);
}
if (pActBand->nOverrideSpacing[nWwIdx] & (1 << WW8TabBandDesc::wwTOP))
{
aFmtBox.SetDistance(
pActBand->nOverrideValues[nWwIdx][WW8TabBandDesc::wwTOP],
BOX_LINE_TOP);
}
else
aFmtBox.SetDistance(pActBand->mnDefaultTop, BOX_LINE_TOP);
if (pActBand->nOverrideSpacing[nWwIdx] & (1 << WW8TabBandDesc::wwBOTTOM))
{
aFmtBox.SetDistance(
pActBand->nOverrideValues[nWwIdx][WW8TabBandDesc::wwBOTTOM],
BOX_LINE_BOTTOM);
}
else
aFmtBox.SetDistance(pActBand->mnDefaultBottom,BOX_LINE_BOTTOM);
// nGapHalf for WW is a *horizontal* gap between table cell and content.
short nLeftDist =
pActBand->mbHasSpacing ? pActBand->mnDefaultLeft : pActBand->nGapHalf;
short nRightDist =
pActBand->mbHasSpacing ? pActBand->mnDefaultRight : pActBand->nGapHalf;
if (pActBand->nOverrideSpacing[nWwIdx] & (1 << WW8TabBandDesc::wwLEFT))
{
aFmtBox.SetDistance(
pActBand->nOverrideValues[nWwIdx][WW8TabBandDesc::wwLEFT],
BOX_LINE_LEFT);
}
else
aFmtBox.SetDistance(nLeftDist, BOX_LINE_LEFT);
if (pActBand->nOverrideSpacing[nWwIdx] & (1 << WW8TabBandDesc::wwRIGHT))
{
aFmtBox.SetDistance(
pActBand->nOverrideValues[nWwIdx][WW8TabBandDesc::wwRIGHT],
BOX_LINE_RIGHT);
}
else
aFmtBox.SetDistance(nRightDist,BOX_LINE_RIGHT);
pBox->GetFrmFmt()->SetFmtAttr(aFmtBox);
}
void WW8TabDesc::SetTabShades( SwTableBox* pBox, short nWwIdx )
{
if( nWwIdx < 0 || nWwIdx >= pActBand->nWwCols )
return; // faked cells -> no color
bool bFound=false;
if (pActBand->pNewSHDs && pActBand->pNewSHDs[nWwIdx] != COL_AUTO)
{
Color aColor(pActBand->pNewSHDs[nWwIdx]);
pBox->GetFrmFmt()->SetFmtAttr(SvxBrushItem(aColor, RES_BACKGROUND));
bFound = true;
}
//If there was no new shades, or no new shade setting
if (pActBand->pSHDs && !bFound)
{
WW8_SHD& rSHD = pActBand->pSHDs[nWwIdx];
if (!rSHD.GetValue()) // auto
return;
SwWW8Shade aSh( pIo->bVer67, rSHD );
pBox->GetFrmFmt()->SetFmtAttr(SvxBrushItem(aSh.aColor, RES_BACKGROUND));
}
}
SvxFrameDirection MakeDirection(sal_uInt16 nCode, bool bIsBiDi)
{
SvxFrameDirection eDir = FRMDIR_ENVIRONMENT;
// 1: Asian layout with rotated CJK characters
// 5: Asian layout
// 3: Western layout rotated by 90 degrees
// 4: Western layout
switch (nCode)
{
default:
OSL_ENSURE(eDir == 4, "unknown direction code, maybe it's a bitfield");
//fall-through
case 3:
eDir = bIsBiDi ? FRMDIR_HORI_RIGHT_TOP : FRMDIR_HORI_LEFT_TOP; // #i38158# - Consider RTL tables
break;
case 5:
eDir = FRMDIR_VERT_TOP_RIGHT;
break;
case 1:
eDir = FRMDIR_VERT_TOP_RIGHT;
break;
case 4:
eDir = bIsBiDi ? FRMDIR_HORI_RIGHT_TOP : FRMDIR_HORI_LEFT_TOP; // #i38158# - Consider RTL tables
break;
}
return eDir;
}
void WW8TabDesc::SetTabDirection(SwTableBox* pBox, short nWwIdx)
{
if (nWwIdx < 0 || nWwIdx >= pActBand->nWwCols)
return;
SvxFrameDirectionItem aItem(MakeDirection(pActBand->maDirections[nWwIdx], bIsBiDi), RES_FRAMEDIR);
pBox->GetFrmFmt()->SetFmtAttr(aItem);
}
void WW8TabDesc::SetTabVertAlign( SwTableBox* pBox, short nWwIdx )
{
if( nWwIdx < 0 || nWwIdx >= pActBand->nWwCols )
return;
sal_Int16 eVertOri=text::VertOrientation::TOP;
if( pActBand->pTCs )
{
WW8_TCell* pT = &pActBand->pTCs[nWwIdx];
switch (pT->nVertAlign)
{
case 0:
default:
eVertOri = text::VertOrientation::TOP;
break;
case 1:
eVertOri = text::VertOrientation::CENTER;
break;
case 2:
eVertOri = text::VertOrientation::BOTTOM;
break;
}
}
pBox->GetFrmFmt()->SetFmtAttr( SwFmtVertOrient(0,eVertOri) );
}
void WW8TabDesc::AdjustNewBand()
{
if( pActBand->nSwCols > nDefaultSwCols ) // split cells
InsertCells( pActBand->nSwCols - nDefaultSwCols );
SetPamInCell( 0, false);
OSL_ENSURE( pTabBoxes && pTabBoxes->size() == (sal_uInt16)pActBand->nSwCols,
"Falsche Spaltenzahl in Tabelle" );
if( bClaimLineFmt )
{
pTabLine->ClaimFrmFmt(); // necessary because of cell height
SwFmtFrmSize aF( ATT_MIN_SIZE, 0, 0 ); // default
if (pActBand->nLineHeight == 0) // 0 = Auto
aF.SetHeightSizeType( ATT_VAR_SIZE );
else
{
if (pActBand->nLineHeight < 0) // positive = min, negative = exact
{
aF.SetHeightSizeType(ATT_FIX_SIZE);
pActBand->nLineHeight = -pActBand->nLineHeight;
}
if (pActBand->nLineHeight < MINLAY) // invalid cell height
pActBand->nLineHeight = MINLAY;
aF.SetHeight(pActBand->nLineHeight);// set min/exact height
}
pTabLine->GetFrmFmt()->SetFmtAttr(aF);
}
//Word stores 1 for bCantSplit if the row cannot be split, we set true if
//we can split the row
bool bSetCantSplit = pActBand->bCantSplit;
pTabLine->GetFrmFmt()->SetFmtAttr(SwFmtRowSplit(!bSetCantSplit));
short i; // SW-Index
short j; // WW-Index
short nW; // Width
SwFmtFrmSize aFS( ATT_FIX_SIZE );
j = pActBand->bLEmptyCol ? -1 : 0;
for( i = 0; i < pActBand->nSwCols; i++ )
{
// set cell width
if( j < 0 )
nW = pActBand->nCenter[0] - nMinLeft;
else
{
//Set j to first non invalid cell
while ((j < pActBand->nWwCols) && (!pActBand->bExist[j]))
j++;
if( j < pActBand->nWwCols )
nW = pActBand->nCenter[j+1] - pActBand->nCenter[j];
else
nW = nMaxRight - pActBand->nCenter[j];
pActBand->nWidth[ j ] = nW;
}
SwTableBox* pBox = (*pTabBoxes)[i];
// could be reduced further by intelligent moving of FrmFmts
pBox->ClaimFrmFmt();
SetTabBorders(pBox, j);
// #i18128# word has only one line between adjoining vertical cells
// we have to mimick this in the filter by picking the larger of the
// sides and using that one on one side of the line (right)
SvxBoxItem aCurrentBox(sw::util::ItemGet<SvxBoxItem>(*(pBox->GetFrmFmt()), RES_BOX));
const ::editeng::SvxBorderLine *pLeftLine = aCurrentBox.GetLine(BOX_LINE_LEFT);
int nCurrentRightLineWidth = 0;
if(pLeftLine)
nCurrentRightLineWidth = pLeftLine->GetScaledWidth();
if (i != 0)
{
SwTableBox* pBox2 = (*pTabBoxes)[i-1];
SvxBoxItem aOldBox(sw::util::ItemGet<SvxBoxItem>(*(pBox2->GetFrmFmt()), RES_BOX));
const ::editeng::SvxBorderLine *pRightLine = aOldBox.GetLine(BOX_LINE_RIGHT);
int nOldBoxRightLineWidth = 0;
if(pRightLine)
nOldBoxRightLineWidth = pRightLine->GetScaledWidth();
if(nOldBoxRightLineWidth>nCurrentRightLineWidth)
aCurrentBox.SetLine(aOldBox.GetLine(BOX_LINE_RIGHT), BOX_LINE_LEFT);
aOldBox.SetLine(0, BOX_LINE_RIGHT);
pBox2->GetFrmFmt()->SetFmtAttr(aOldBox);
}
pBox->GetFrmFmt()->SetFmtAttr(aCurrentBox);
SetTabVertAlign(pBox, j);
SetTabDirection(pBox, j);
if( pActBand->pSHDs || pActBand->pNewSHDs)
SetTabShades(pBox, j);
j++;
aFS.SetWidth( nW );
pBox->GetFrmFmt()->SetFmtAttr( aFS );
// skip non existing cells
while( ( j < pActBand->nWwCols ) && !pActBand->bExist[j] )
{
pActBand->nWidth[j] = pActBand->nCenter[j+1] - pActBand->nCenter[j];
j++;
}
}
}
void WW8TabDesc::TableCellEnd()
{
::SetProgressState(pIo->nProgress, pIo->mpDocShell); // Update
EndMiserableHackForUnsupportedDirection(nAktCol);
// new line/row
if( pIo->bWasTabRowEnd )
{
// bWasTabRowEnd will be deactivated in
// SwWW8ImplReader::ProcessSpecial()
sal_uInt16 iCol = GetLogicalWWCol();
if (iCol < aNumRuleNames.size())
{
aNumRuleNames.erase(aNumRuleNames.begin() + iCol,
aNumRuleNames.end());
}
nAktCol = 0;
nAktRow++;
nAktBandRow++;
OSL_ENSURE( pActBand , "pActBand ist 0" );
if( pActBand )
{
if( nAktRow >= nRows ) // nothing to at end of table
return;
bool bNewBand = nAktBandRow >= pActBand->nRows;
if( bNewBand )
{ // new band needed ?
pActBand = pActBand->pNextBand;
nAktBandRow = 0;
OSL_ENSURE( pActBand, "pActBand ist 0" );
AdjustNewBand();
}
else
{
SwTableBox* pBox = (*pTabBoxes)[0];
SwSelBoxes aBoxes;
pIo->rDoc.InsertRow( pTable->SelLineFromBox( pBox, aBoxes ) );
}
}
}
else
{ // new column ( cell )
nAktCol++;
}
SetPamInCell(nAktCol, true);
// finish Annotated Level Numbering ?
if (pIo->bAnl && !pIo->bAktAND_fNumberAcross)
pIo->StopAllAnl(IsValidCell(nAktCol));
}
// if necessary register the box for the merge group for this column
SwTableBox* WW8TabDesc::UpdateTableMergeGroup( WW8_TCell& rCell,
WW8SelBoxInfo* pActGroup,
SwTableBox* pActBox,
sal_uInt16 nCol )
{
// set default for return
SwTableBox* pResult = 0;
// check if the box has to be merged
// If cell is the first one to be merged, a new merge group has to be provided.
// E.g., it could be that a cell is the first one to be merged, but no
// new merge group is provided, because the potential other cell to be merged
// doesn't exist - see method <WW8TabDesc::MergeCells>.
if ( pActBand->bExist[ nCol ] &&
( ( rCell.bFirstMerged && pActGroup ) ||
rCell.bMerged ||
rCell.bVertMerge ||
rCell.bVertRestart ) )
{
// detect appropriate merge group
WW8SelBoxInfo* pTheMergeGroup = 0;
if( pActGroup )
// assign group
pTheMergeGroup = pActGroup;
else
{
// find group
pTheMergeGroup = FindMergeGroup(
pActBand->nCenter[ nCol ], pActBand->nWidth[ nCol ], true );
}
if( pTheMergeGroup )
{
// add current box to merge group
pTheMergeGroup->push_back(pActBox);
// return target box
pResult = (*pTheMergeGroup)[ 0 ];
}
}
return pResult;
}
sal_uInt16 WW8TabDesc::GetLogicalWWCol() const // returns number of col as INDICATED within WW6 UI status line -1
{
sal_uInt16 nCol = 0;
if( pActBand && pActBand->pTCs)
{
for( sal_uInt16 iCol = 1; iCol <= nAktCol && iCol <= pActBand->nWwCols; ++iCol )
{
if( !pActBand->pTCs[ iCol-1 ].bMerged )
++nCol;
}
}
return nCol;
}
// find name of numrule valid for current WW-COL
OUString WW8TabDesc::GetNumRuleName() const
{
sal_uInt16 nCol = GetLogicalWWCol();
if (nCol < aNumRuleNames.size())
return aNumRuleNames[nCol];
return OUString();
}
void WW8TabDesc::SetNumRuleName( const OUString& rName )
{
sal_uInt16 nCol = GetLogicalWWCol();
for (sal_uInt16 nSize = static_cast< sal_uInt16 >(aNumRuleNames.size()); nSize <= nCol; ++nSize)
aNumRuleNames.push_back(OUString());
aNumRuleNames[nCol] = rName;
}
bool SwWW8ImplReader::StartTable(WW8_CP nStartCp, SvxULSpaceItem* pULSpaceItem)
{
// Entering a table so make sure the FirstPara flag gets set
bFirstPara = true;
// keine rekursiven Tabellen Nicht bei EinfuegenDatei in Tabelle oder
// Fussnote
if (bReadNoTbl)
return false;
if (pTableDesc)
maTableStack.push(pTableDesc);
// #i33818# - determine absolute position object attributes,
// if possible. It's needed for nested tables.
WW8FlyPara* pTableWFlyPara( 0L );
WW8SwFlyPara* pTableSFlyPara( 0L );
// #i45301# - anchor nested table inside Writer fly frame
// only at-character, if absolute position object attributes are available.
// Thus, default anchor type is as-character anchored.
RndStdIds eAnchor( FLY_AS_CHAR );
if ( nInTable )
{
WW8_TablePos* pNestedTabPos( 0L );
WW8_TablePos aNestedTabPos;
WW8PLCFxSave1 aSave;
pPlcxMan->GetPap()->Save( aSave );
WW8PLCFx_Cp_FKP* pPap = pPlcxMan->GetPapPLCF();
WW8_CP nMyStartCp = nStartCp;
if ( SearchRowEnd( pPap, nMyStartCp, nInTable ) &&
ParseTabPos( &aNestedTabPos, pPap ) )
{
pNestedTabPos = &aNestedTabPos;
}
pPlcxMan->GetPap()->Restore( aSave );
if ( pNestedTabPos )
{
ApoTestResults aApo = TestApo( nInTable + 1, false, pNestedTabPos );
pTableWFlyPara = ConstructApo( aApo, pNestedTabPos );
if ( pTableWFlyPara )
{
// <WW8SwFlyPara> constructor has changed - new 4th parameter
// containing WW8 page top margin.
pTableSFlyPara = new WW8SwFlyPara(*pPaM, *this, *pTableWFlyPara,
maSectionManager.GetWWPageTopMargin(),
maSectionManager.GetPageLeft(), maSectionManager.GetTextAreaWidth(),
nIniFlyDx, nIniFlyDy);
// #i45301# - anchor nested table Writer fly frame at-character
eAnchor = FLY_AT_CHAR;
}
}
}
pTableDesc = new WW8TabDesc( this, nStartCp );
if( pTableDesc->Ok() )
{
int nNewInTable = nInTable + 1;
if ((eAnchor == FLY_AT_CHAR)
&& !maTableStack.empty() && !InEqualApo(nNewInTable) )
{
pTableDesc->pParentPos = new SwPosition(*pPaM->GetPoint());
SfxItemSet aItemSet(rDoc.GetAttrPool(),
RES_FRMATR_BEGIN, RES_FRMATR_END-1);
// #i33818# - anchor the Writer fly frame for the nested table at-character.
// #i45301#
SwFmtAnchor aAnchor( eAnchor );
aAnchor.SetAnchor( pTableDesc->pParentPos );
aItemSet.Put( aAnchor );
pTableDesc->pFlyFmt = rDoc.MakeFlySection( eAnchor,
pTableDesc->pParentPos, &aItemSet);
OSL_ENSURE( pTableDesc->pFlyFmt->GetAnchor().GetAnchorId() == eAnchor,
"Not the anchor type requested!" );
MoveInsideFly(pTableDesc->pFlyFmt);
}
pTableDesc->CreateSwTable(pULSpaceItem);
if (pTableDesc->pFlyFmt)
{
pTableDesc->SetSizePosition(pTableDesc->pFlyFmt);
// #i33818# - Use absolute position object attributes,
// if existing, and apply them to the created Writer fly frame.
if ( pTableWFlyPara && pTableSFlyPara )
{
WW8FlySet aFlySet( *this, pTableWFlyPara, pTableSFlyPara, false );
SwFmtAnchor aAnchor( FLY_AT_CHAR );
aAnchor.SetAnchor( pTableDesc->pParentPos );
aFlySet.Put( aAnchor );
pTableDesc->pFlyFmt->SetFmtAttr( aFlySet );
}
else
{
SwFmtHoriOrient aHori =
pTableDesc->pTable->GetFrmFmt()->GetHoriOrient();
pTableDesc->pFlyFmt->SetFmtAttr(aHori);
pTableDesc->pFlyFmt->SetFmtAttr( SwFmtSurround( SURROUND_NONE ) );
}
// #i33818# - The nested table doesn't have to leave
// the table cell. Thus, the Writer fly frame has to follow the text flow.
pTableDesc->pFlyFmt->SetFmtAttr( SwFmtFollowTextFlow( true ) );
}
else
pTableDesc->SetSizePosition(0);
pTableDesc->UseSwTable();
}
else
PopTableDesc();
// #i33818#
delete pTableWFlyPara;
delete pTableSFlyPara;
return 0 != pTableDesc;
}
void SwWW8ImplReader::TabCellEnd()
{
if (nInTable && pTableDesc)
pTableDesc->TableCellEnd();
bFirstPara = true; // We have come to the end of a cell so FirstPara flag
bReadTable = false;
mpTableEndPaM.reset();
}
void SwWW8ImplReader::Read_TabCellEnd( sal_uInt16, const sal_uInt8* pData, short nLen)
{
if( ( nLen > 0 ) && ( *pData == 1 ) )
bWasTabCellEnd = true;
}
void SwWW8ImplReader::Read_TabRowEnd( sal_uInt16, const sal_uInt8* pData, short nLen ) // Sprm25
{
if( ( nLen > 0 ) && ( *pData == 1 ) )
bWasTabRowEnd = true;
}
void SwWW8ImplReader::PopTableDesc()
{
if (pTableDesc && pTableDesc->pFlyFmt)
{
MoveOutsideFly(pTableDesc->pFlyFmt,*pTableDesc->pParentPos);
}
delete pTableDesc;
if (maTableStack.empty())
pTableDesc = 0;
else
{
pTableDesc = maTableStack.top();
maTableStack.pop();
}
}
void SwWW8ImplReader::StopTable()
{
OSL_ENSURE(pTableDesc, "Panic, stop table with no table!");
if (!pTableDesc)
return;
// We are leaving a table so make sure the next paragraph doesn't think
// it's the first paragraph
bFirstPara = false;
pTableDesc->FinishSwTable();
PopTableDesc();
bReadTable = true;
// #i101116# - Keep PaM on table end only for nested tables
if ( nInTable > 1 )
{
mpTableEndPaM.reset(new SwPaM(*pPaM));
}
}
// GetTableLeft() is needed for graphic objects bound to paragraphs in tables.
// For indented tables the base for WW is the margin that would be used without
// the table; SW uses the left table margin.
short SwWW8ImplReader::GetTableLeft()
{
return (pTableDesc) ? pTableDesc->GetMinLeft() : 0;
}
bool SwWW8ImplReader::IsInvalidOrToBeMergedTabCell() const
{
if( !pTableDesc )
return false;
const WW8_TCell* pCell = pTableDesc->GetAktWWCell();
return !pTableDesc->IsValidCell( pTableDesc->GetAktCol() )
|| ( pCell
&& ( !pCell->bFirstMerged
&& ( pCell->bMerged
|| ( pCell->bVertMerge
&& !pCell->bVertRestart
)
)
)
);
}
sal_uInt16 SwWW8ImplReader::StyleUsingLFO( sal_uInt16 nLFOIndex ) const
{
sal_uInt16 nRes = USHRT_MAX;
if( !vColl.empty() )
{
for(sal_uInt16 nI = 0; nI < pStyles->GetCount(); nI++ )
if( vColl[ nI ].bValid
&& (nLFOIndex == vColl[ nI ].nLFOIndex) )
nRes = nI;
}
return nRes;
}
const SwFmt* SwWW8ImplReader::GetStyleWithOrgWWName( OUString& rName ) const
{
SwFmt* pRet = 0;
if( !vColl.empty() )
{
for(sal_uInt16 nI = 0; nI < pStyles->GetCount(); nI++ )
if( vColl[ nI ].bValid
&& (rName.equals( vColl[ nI ].GetOrgWWName())) )
{
pRet = vColl[ nI ].pFmt;
break;
}
}
return pRet;
}
// class WW8RStyle
const sal_uInt8* WW8RStyle::HasParaSprm( sal_uInt16 nId ) const
{
if( !pParaSprms || !nSprmsLen )
return 0;
return maSprmParser.findSprmData(nId, pParaSprms, nSprmsLen);
}
void WW8RStyle::ImportSprms(sal_uInt8 *pSprms, short nLen, bool bPap)
{
if (!nLen)
return;
if( bPap )
{
pParaSprms = pSprms; // for HasParaSprms()
nSprmsLen = nLen;
}
WW8SprmIter aSprmIter(pSprms, nLen, maSprmParser);
while (const sal_uInt8* pSprm = aSprmIter.GetSprms())
{
pIo->ImportSprm(pSprm);
aSprmIter.advance();
}
pParaSprms = 0;
nSprmsLen = 0;
}
void WW8RStyle::ImportSprms(sal_Size nPosFc, short nLen, bool bPap)
{
if (!nLen)
return;
if (checkSeek(*pStStrm, nPosFc))
{
sal_uInt8 *pSprms = new sal_uInt8[nLen];
nLen = pStStrm->Read(pSprms, nLen);
ImportSprms(pSprms, nLen, bPap);
delete[] pSprms;
}
}
static inline short WW8SkipOdd(SvStream* pSt )
{
if ( pSt->Tell() & 0x1 )
{
sal_uInt8 c;
return pSt->Read( &c, 1 );
}
return 0;
}
static inline short WW8SkipEven(SvStream* pSt )
{
if (!(pSt->Tell() & 0x1))
{
sal_uInt8 c;
return pSt->Read( &c, 1 );
}
return 0;
}
short WW8RStyle::ImportUPX(short nLen, bool bPAP, bool bOdd)
{
if( 0 < nLen ) // Empty ?
{
if (bOdd)
nLen = nLen - WW8SkipEven( pStStrm );
else
nLen = nLen - WW8SkipOdd( pStStrm );
sal_Int16 cbUPX(0);
pStStrm->ReadInt16( cbUPX );
nLen-=2;
if ( cbUPX > nLen )
cbUPX = nLen; // shrink cbUPX to nLen
if( (1 < cbUPX) || ( (0 < cbUPX) && !bPAP ) )
{
if( bPAP )
{
sal_uInt16 id;
pStStrm->ReadUInt16( id );
cbUPX-= 2;
nLen-= 2;
}
if( 0 < cbUPX )
{
sal_Size nPos = pStStrm->Tell(); // if something is interpreted wrong,
// this should make it work again
ImportSprms( nPos, cbUPX, bPAP );
if ( pStStrm->Tell() != nPos + cbUPX )
pStStrm->Seek( nPos+cbUPX );
nLen = nLen - cbUPX;
}
}
}
return nLen;
}
void WW8RStyle::ImportGrupx(short nLen, bool bPara, bool bOdd)
{
if( nLen <= 0 )
return;
if (bOdd)
nLen = nLen - WW8SkipEven( pStStrm );
else
nLen = nLen - WW8SkipOdd( pStStrm );
if( bPara ) // Grupx.Papx
nLen = ImportUPX(nLen, true, bOdd);
ImportUPX(nLen, false, bOdd); // Grupx.Chpx
}
WW8RStyle::WW8RStyle(WW8Fib& _rFib, SwWW8ImplReader* pI)
: WW8Style(*pI->pTableStream, _rFib)
, maSprmParser(_rFib.GetFIBVersion())
, pIo(pI)
, pStStrm(pI->pTableStream)
, pStyRule(0)
, pParaSprms(0)
, nSprmsLen(0)
, nWwNumLevel(0)
, bTxtColChanged(false)
, bFontChanged(false)
, bCJKFontChanged(false)
, bCTLFontChanged(false)
, bFSizeChanged(false)
, bFCTLSizeChanged(false)
, bWidowsChanged(false)
{
pIo->vColl.resize(cstd);
}
void WW8RStyle::Set1StyleDefaults()
{
// see #i25247#, #i25561#, #i48064#, #i92341# for default font
if (!bCJKFontChanged) // Style no CJK Font? set the default
pIo->SetNewFontAttr(ftcFE, true, RES_CHRATR_CJK_FONT);
if (!bCTLFontChanged) // Style no CTL Font? set the default
pIo->SetNewFontAttr(ftcBi, true, RES_CHRATR_CTL_FONT);
// western 2nd to make western charset conversion the default
if (!bFontChanged) // Style has no Font? set the default,
pIo->SetNewFontAttr(ftcAsci, true, RES_CHRATR_FONT);
if( !pIo->bNoAttrImport )
{
// Style has no text color set, winword default is auto
if ( !bTxtColChanged )
pIo->pAktColl->SetFmtAttr(SvxColorItem(Color(COL_AUTO), RES_CHRATR_COLOR));
// Style has no FontSize ? WinWord Default is 10pt for western and asian
if( !bFSizeChanged )
{
SvxFontHeightItem aAttr(200, 100, RES_CHRATR_FONTSIZE);
pIo->pAktColl->SetFmtAttr(aAttr);
aAttr.SetWhich(RES_CHRATR_CJK_FONTSIZE);
pIo->pAktColl->SetFmtAttr(aAttr);
}
// Style has no FontSize ? WinWord Default is 10pt for western and asian
if( !bFCTLSizeChanged )
{
SvxFontHeightItem aAttr(200, 100, RES_CHRATR_FONTSIZE);
aAttr.SetWhich(RES_CHRATR_CTL_FONTSIZE);
pIo->pAktColl->SetFmtAttr(aAttr);
}
if( !bWidowsChanged ) // Widows ?
{
pIo->pAktColl->SetFmtAttr( SvxWidowsItem( 2, RES_PARATR_WIDOWS ) );
pIo->pAktColl->SetFmtAttr( SvxOrphansItem( 2, RES_PARATR_ORPHANS ) );
}
}
}
bool WW8RStyle::PrepareStyle(SwWW8StyInf &rSI, ww::sti eSti, sal_uInt16 nThisStyle, sal_uInt16 nNextStyle)
{
SwFmt* pColl;
bool bStyExist;
if (rSI.bColl)
{
// Para-Style
sw::util::ParaStyleMapper::StyleResult aResult =
pIo->maParaStyleMapper.GetStyle(rSI.GetOrgWWName(), eSti);
pColl = aResult.first;
bStyExist = aResult.second;
}
else
{
// Char-Style
sw::util::CharStyleMapper::StyleResult aResult =
pIo->maCharStyleMapper.GetStyle(rSI.GetOrgWWName(), eSti);
pColl = aResult.first;
bStyExist = aResult.second;
}
bool bImport = !bStyExist || pIo->mbNewDoc; // import content ?
// Do not override character styles the list import code created earlier.
if (bImport && bStyExist && rSI.GetOrgWWName().startsWith("WW8Num"))
bImport = false;
bool bOldNoImp = pIo->bNoAttrImport;
rSI.bImportSkipped = !bImport;
if( !bImport )
pIo->bNoAttrImport = true;
else
{
if (bStyExist)
{
pColl->ResetAllFmtAttr(); // #i73790# - method renamed
}
pColl->SetAuto(false); // suggested by JP
} // but changes the UI
pIo->pAktColl = pColl;
rSI.pFmt = pColl; // remember translation WW->SW
rSI.bImportSkipped = !bImport;
// Set Based on style
sal_uInt16 j = rSI.nBase;
if (j != nThisStyle && j < cstd )
{
SwWW8StyInf* pj = &pIo->vColl[j];
if (rSI.pFmt && pj->pFmt && rSI.bColl == pj->bColl)
{
rSI.pFmt->SetDerivedFrom( pj->pFmt ); // ok, set Based on
rSI.eLTRFontSrcCharSet = pj->eLTRFontSrcCharSet;
rSI.eRTLFontSrcCharSet = pj->eRTLFontSrcCharSet;
rSI.eCJKFontSrcCharSet = pj->eCJKFontSrcCharSet;
rSI.n81Flags = pj->n81Flags;
rSI.n81BiDiFlags = pj->n81BiDiFlags;
rSI.nOutlineLevel = pj->nOutlineLevel;
rSI.bParaAutoBefore = pj->bParaAutoBefore;
rSI.bParaAutoAfter = pj->bParaAutoAfter;
if (pj->pWWFly)
rSI.pWWFly = new WW8FlyPara(pIo->bVer67, pj->pWWFly);
}
}
else if( pIo->mbNewDoc && bStyExist )
rSI.pFmt->SetDerivedFrom(0);
rSI.nFollow = nNextStyle; // remember Follow
pStyRule = 0; // recreate if necessary
bTxtColChanged = bFontChanged = bCJKFontChanged = bCTLFontChanged =
bFSizeChanged = bFCTLSizeChanged = bWidowsChanged = false;
pIo->SetNAktColl( nThisStyle );
pIo->bStyNormal = nThisStyle == 0;
return bOldNoImp;
}
void WW8RStyle::PostStyle(SwWW8StyInf &rSI, bool bOldNoImp)
{
// Reset attribute flags, because there are no style-ends.
pIo->bHasBorder = pIo->bShdTxtCol = pIo->bCharShdTxtCol
= pIo->bSpec = pIo->bObj = pIo->bSymbol = false;
pIo->nCharFmt = -1;
// If Style basiert auf Nichts oder Basis ignoriert
if ((rSI.nBase >= cstd || pIo->vColl[rSI.nBase].bImportSkipped) && rSI.bColl)
{
// If Char-Styles does not work
// -> set hard WW-Defaults
Set1StyleDefaults();
}
pStyRule = 0; // to be on the safe side
pIo->bStyNormal = false;
pIo->SetNAktColl( 0 );
pIo->bNoAttrImport = bOldNoImp;
// reset the list-remember-fields, if used when reading styles
pIo->nLFOPosition = USHRT_MAX;
pIo->nListLevel = WW8ListManager::nMaxLevel;
}
void WW8RStyle::Import1Style( sal_uInt16 nNr )
{
if (nNr >= pIo->vColl.size())
return;
SwWW8StyInf &rSI = pIo->vColl[nNr];
if( rSI.bImported || !rSI.bValid )
return;
rSI.bImported = true; // set flag now to avoid endless loops
// valid and not NUL and not yet imported
if( rSI.nBase < cstd && !pIo->vColl[rSI.nBase].bImported )
Import1Style( rSI.nBase );
pStStrm->Seek( rSI.nFilePos );
short nSkip, cbStd;
OUString sName;
boost::scoped_ptr<WW8_STD> xStd(Read1Style(nSkip, &sName, &cbStd));// read Style
if (xStd)
rSI.SetOrgWWIdent( sName, xStd->sti );
// either no Name or unused Slot or unknown Style
if ( !xStd || sName.isEmpty() || ((1 != xStd->sgc) && (2 != xStd->sgc)) )
{
pStStrm->SeekRel( nSkip );
return;
}
bool bOldNoImp = PrepareStyle(rSI, static_cast<ww::sti>(xStd->sti), nNr, xStd->istdNext);
// if something is interpreted wrong, this should make it work again
long nPos = pStStrm->Tell();
//Variable parts of the STD start at even byte offsets, but "inside
//the STD", which I take to meaning even in relation to the starting
//position of the STD, which matches findings in #89439#, generally it
//doesn't matter as the STSHI starts off nearly always on an even
//offset
//Import of the Style Contents
ImportGrupx(nSkip, xStd->sgc == 1, rSI.nFilePos & 1);
PostStyle(rSI, bOldNoImp);
pStStrm->Seek( nPos+nSkip );
}
void WW8RStyle::RecursiveReg(sal_uInt16 nNr)
{
if (nNr >= pIo->vColl.size())
return;
SwWW8StyInf &rSI = pIo->vColl[nNr];
if( rSI.bImported || !rSI.bValid )
return;
rSI.bImported = true;
if( rSI.nBase < cstd && !pIo->vColl[rSI.nBase].bImported )
RecursiveReg(rSI.nBase);
pIo->RegisterNumFmtOnStyle(nNr);
}
/*
After all styles are imported then we can recursively apply numbering
styles to them, and change their tab stop settings if they turned out
to have special first line indentation.
*/
void WW8RStyle::PostProcessStyles()
{
sal_uInt16 i;
/*
Clear all imported flags so that we can recursively apply numbering
formats and use it to mark handled ones
*/
for (i=0; i < cstd; ++i)
pIo->vColl[i].bImported = false;
/*
Register the num formats and tabstop changes on the styles recursively.
*/
/*
In the same loop apply the tabstop changes required because we need to
change their location if theres a special indentation for the first line,
By avoiding making use of each styles margins during reading of their
tabstops we don't get problems with doubly adjusting tabstops that
are inheritied.
*/
for (i=0; i < cstd; ++i)
{
if (pIo->vColl[i].bValid)
{
RecursiveReg(i);
}
}
}
void WW8RStyle::ScanStyles() // investigate style dependencies
{ // and detect Filepos for each Style
for (sal_uInt16 i = 0; i < cstd; ++i)
{
short nSkip;
SwWW8StyInf &rSI = pIo->vColl[i];
rSI.nFilePos = pStStrm->Tell(); // remember FilePos
WW8_STD* pStd = Read1Style( nSkip, 0, 0 ); // read STD
rSI.bValid = (0 != pStd);
if (rSI.bValid)
{
rSI.nBase = pStd->istdBase; // remember Basis
rSI.bColl = ( pStd->sgc == 1 ); // Para-Style
}
else
rSI = SwWW8StyInf();
delete pStd;
pStStrm->SeekRel( nSkip ); // skip Names and Sprms
}
}
std::vector<sal_uInt8> ChpxToSprms(const Word2CHPX &rChpx)
{
std::vector<sal_uInt8> aRet;
aRet.push_back(60);
aRet.push_back( static_cast< sal_uInt8 >(128 + rChpx.fBold) );
aRet.push_back(61);
aRet.push_back( static_cast< sal_uInt8 >(128 + rChpx.fItalic) );
aRet.push_back(62);
aRet.push_back( static_cast< sal_uInt8 >(128 + rChpx.fStrike) );
aRet.push_back(63);
aRet.push_back( static_cast< sal_uInt8 >(128 + rChpx.fOutline) );
aRet.push_back(65);
aRet.push_back( static_cast< sal_uInt8 >(128 + rChpx.fSmallCaps) );
aRet.push_back(66);
aRet.push_back( static_cast< sal_uInt8 >(128 + rChpx.fCaps) );
aRet.push_back(67);
aRet.push_back( static_cast< sal_uInt8 >(128 + rChpx.fVanish) );
if (rChpx.fsFtc)
{
aRet.push_back(68);
SVBT16 a;
ShortToSVBT16(rChpx.ftc, a);
aRet.push_back(a[1]);
aRet.push_back(a[0]);
}
if (rChpx.fsKul)
{
aRet.push_back(69);
aRet.push_back(rChpx.kul);
}
if (rChpx.fsLid)
{
aRet.push_back(72);
SVBT16 a;
ShortToSVBT16(rChpx.lid, a);
aRet.push_back(a[1]);
aRet.push_back(a[0]);
}
if (rChpx.fsIco)
{
aRet.push_back(73);
aRet.push_back(rChpx.ico);
}
if (rChpx.fsHps)
{
aRet.push_back(74);
SVBT16 a;
ShortToSVBT16(rChpx.hps, a);
aRet.push_back(a[0]);
}
if (rChpx.fsPos)
{
aRet.push_back(76);
aRet.push_back(rChpx.hpsPos);
}
aRet.push_back(80);
aRet.push_back( static_cast< sal_uInt8 >(128 + rChpx.fBoldBi) );
aRet.push_back(81);
aRet.push_back( static_cast< sal_uInt8 >(128 + rChpx.fItalicBi) );
if (rChpx.fsFtcBi)
{
aRet.push_back(82);
SVBT16 a;
ShortToSVBT16(rChpx.fsFtcBi, a);
aRet.push_back(a[1]);
aRet.push_back(a[0]);
}
if (rChpx.fsLidBi)
{
aRet.push_back(83);
SVBT16 a;
ShortToSVBT16(rChpx.lidBi, a);
aRet.push_back(a[1]);
aRet.push_back(a[0]);
}
if (rChpx.fsIcoBi)
{
aRet.push_back(84);
aRet.push_back(rChpx.icoBi);
}
if (rChpx.fsHpsBi)
{
aRet.push_back(85);
SVBT16 a;
ShortToSVBT16(rChpx.hpsBi, a);
aRet.push_back(a[1]);
aRet.push_back(a[0]);
}
return aRet;
}
Word2CHPX ReadWord2Chpx(SvStream &rSt, sal_Size nOffset, sal_uInt8 nSize)
{
Word2CHPX aChpx;
if (!nSize)
return aChpx;
rSt.Seek(nOffset);
sal_uInt8 nCount=0;
while (true)
{
sal_uInt8 nFlags8;
rSt.ReadUChar( nFlags8 );
nCount++;
aChpx.fBold = nFlags8 & 0x01;
aChpx.fItalic = (nFlags8 & 0x02) >> 1;
aChpx.fRMarkDel = (nFlags8 & 0x04) >> 2;
aChpx.fOutline = (nFlags8 & 0x08) >> 3;
aChpx.fFldVanish = (nFlags8 & 0x10) >> 4;
aChpx.fSmallCaps = (nFlags8 & 0x20) >> 5;
aChpx.fCaps = (nFlags8 & 0x40) >> 6;
aChpx.fVanish = (nFlags8 & 0x80) >> 7;
if (nCount >= nSize) break;
rSt.ReadUChar( nFlags8 );
nCount++;
aChpx.fRMark = nFlags8 & 0x01;
aChpx.fSpec = (nFlags8 & 0x02) >> 1;
aChpx.fStrike = (nFlags8 & 0x04) >> 2;
aChpx.fObj = (nFlags8 & 0x08) >> 3;
aChpx.fBoldBi = (nFlags8 & 0x10) >> 4;
aChpx.fItalicBi = (nFlags8 & 0x20) >> 5;
aChpx.fBiDi = (nFlags8 & 0x40) >> 6;
aChpx.fDiacUSico = (nFlags8 & 0x80) >> 7;
if (nCount >= nSize) break;
rSt.ReadUChar( nFlags8 );
nCount++;
aChpx.fsIco = nFlags8 & 0x01;
aChpx.fsFtc = (nFlags8 & 0x02) >> 1;
aChpx.fsHps = (nFlags8 & 0x04) >> 2;
aChpx.fsKul = (nFlags8 & 0x08) >> 3;
aChpx.fsPos = (nFlags8 & 0x10) >> 4;
aChpx.fsSpace = (nFlags8 & 0x20) >> 5;
aChpx.fsLid = (nFlags8 & 0x40) >> 6;
aChpx.fsIcoBi = (nFlags8 & 0x80) >> 7;
if (nCount >= nSize) break;
rSt.ReadUChar( nFlags8 );
nCount++;
aChpx.fsFtcBi = nFlags8 & 0x01;
aChpx.fsHpsBi = (nFlags8 & 0x02) >> 1;
aChpx.fsLidBi = (nFlags8 & 0x04) >> 2;
if (nCount >= nSize) break;
rSt.ReadUInt16( aChpx.ftc );
nCount+=2;
if (nCount >= nSize) break;
rSt.ReadUInt16( aChpx.hps );
nCount+=2;
if (nCount >= nSize) break;
rSt.ReadUChar( nFlags8 );
nCount++;
aChpx.qpsSpace = nFlags8 & 0x3F;
aChpx.fSysVanish = (nFlags8 & 0x40) >> 6;
aChpx.fNumRun = (nFlags8 & 0x80) >> 7;
if (nCount >= nSize) break;
rSt.ReadUChar( nFlags8 );
nCount++;
aChpx.ico = nFlags8 & 0x1F;
aChpx.kul = (nFlags8 & 0xE0) >> 5;
if (nCount >= nSize) break;
rSt.ReadUChar( aChpx.hpsPos );
nCount++;
if (nCount >= nSize) break;
rSt.ReadUChar( aChpx.icoBi );
nCount++;
if (nCount >= nSize) break;
rSt.ReadUInt16( aChpx.lid );
nCount+=2;
if (nCount >= nSize) break;
rSt.ReadUInt16( aChpx.ftcBi );
nCount+=2;
if (nCount >= nSize) break;
rSt.ReadUInt16( aChpx.hpsBi );
nCount+=2;
if (nCount >= nSize) break;
rSt.ReadUInt16( aChpx.lidBi );
nCount+=2;
if (nCount >= nSize) break;
rSt.ReadUInt32( aChpx.fcPic );
nCount+=4;
break;
}
rSt.SeekRel(nSize-nCount);
return aChpx;
}
namespace
{
struct pxoffset { sal_Size mnOffset; sal_uInt8 mnSize; };
}
void WW8RStyle::ImportOldFormatStyles()
{
for (sal_uInt16 i=0; i < cstd; ++i)
{
pIo->vColl[i].bColl = true;
//every chain must end eventually at the null style (style code 222)
pIo->vColl[i].nBase = 222;
}
rtl_TextEncoding eStructChrSet = WW8Fib::GetFIBCharset(
pIo->pWwFib->chseTables);
sal_uInt16 cstcStd;
rSt.ReadUInt16( cstcStd );
sal_uInt16 cbName;
rSt.ReadUInt16( cbName );
sal_uInt16 nByteCount = 2;
sal_uInt16 stcp=0;
while (nByteCount < cbName)
{
sal_uInt8 nCount;
rSt.ReadUChar( nCount );
nByteCount++;
sal_uInt8 stc = static_cast< sal_uInt8 >((stcp - cstcStd) & 255);
if (stc >=pIo->vColl.size())
continue;
SwWW8StyInf &rSI = pIo->vColl[stc];
if (nCount != 0xFF) // undefined style
{
OUString sName;
if (nCount == 0) // inbuilt style
{
ww::sti eSti = ww::GetCanonicalStiFromStc(stc);
if (const sal_Char *pStr = GetEnglishNameFromSti(eSti))
sName = OUString(pStr, strlen(pStr), RTL_TEXTENCODING_ASCII_US);
else
sName = "Unknown";
}
else // user style
{
OString aTmp = read_uInt8s_ToOString(rSt, nCount);
nByteCount += aTmp.getLength();
sName = OStringToOUString(aTmp, eStructChrSet);
}
rSI.SetOrgWWIdent(sName, stc);
rSI.bImported = true;
}
else
{
ww::sti eSti = ww::GetCanonicalStiFromStc(stc);
if (const sal_Char *pStr = GetEnglishNameFromSti(eSti))
{
OUString sName = OUString(pStr, strlen(pStr), RTL_TEXTENCODING_ASCII_US);
rSI.SetOrgWWIdent(sName, stc);
}
}
stcp++;
}
sal_uInt16 nStyles=stcp;
std::vector<pxoffset> aCHPXOffsets(stcp);
sal_uInt16 cbChpx;
rSt.ReadUInt16( cbChpx );
nByteCount = 2;
stcp=0;
std::vector< std::vector<sal_uInt8> > aConvertedChpx;
while (nByteCount < cbChpx)
{
sal_uInt8 cb;
rSt.ReadUChar( cb );
nByteCount++;
aCHPXOffsets[stcp].mnSize = 0;
if (cb != 0xFF)
{
sal_uInt8 nRemainder = cb;
aCHPXOffsets[stcp].mnOffset = rSt.Tell();
aCHPXOffsets[stcp].mnSize = nRemainder;
Word2CHPX aChpx = ReadWord2Chpx(rSt, aCHPXOffsets[stcp].mnOffset,
aCHPXOffsets[stcp].mnSize);
aConvertedChpx.push_back( ChpxToSprms(aChpx) );
nByteCount += nRemainder;
}
else
aConvertedChpx.push_back( std::vector<sal_uInt8>() );
stcp++;
if (stcp == nStyles)
{
rSt.SeekRel(cbChpx-nByteCount);
nByteCount += cbChpx-nByteCount;
}
}
std::vector<pxoffset> aPAPXOffsets(stcp);
sal_uInt16 cbPapx;
rSt.ReadUInt16( cbPapx );
nByteCount = 2;
stcp=0;
while (nByteCount < cbPapx)
{
sal_uInt8 cb;
rSt.ReadUChar( cb );
nByteCount++;
aPAPXOffsets[stcp].mnSize = 0;
if (cb != 0xFF)
{
sal_uInt8 stc2;
rSt.ReadUChar( stc2 );
rSt.SeekRel(6);
nByteCount+=7;
sal_uInt8 nRemainder = cb-7;
aPAPXOffsets[stcp].mnOffset = rSt.Tell();
aPAPXOffsets[stcp].mnSize = nRemainder;
rSt.SeekRel(nRemainder);
nByteCount += nRemainder;
}
stcp++;
if (stcp == nStyles)
{
rSt.SeekRel(cbPapx-nByteCount);
nByteCount += cbPapx-nByteCount;
}
}
sal_uInt16 iMac;
rSt.ReadUInt16( iMac );
if (iMac > nStyles) iMac = nStyles;
for (stcp = 0; stcp < iMac; ++stcp)
{
sal_uInt8 stcNext, stcBase;
rSt.ReadUChar( stcNext );
rSt.ReadUChar( stcBase );
sal_uInt8 stc = static_cast< sal_uInt8 >((stcp - cstcStd) & 255);
/*
#i64557# style based on itself
every chain must end eventually at the null style (style code 222)
*/
if (stc == stcBase)
stcBase = 222;
SwWW8StyInf &rSI = pIo->vColl[stc];
rSI.nBase = stcBase;
ww::sti eSti = ww::GetCanonicalStiFromStc(stc);
if (eSti == ww::stiNil)
continue;
rSI.bValid = true;
if (ww::StandardStiIsCharStyle(eSti) && !aPAPXOffsets[stcp].mnSize)
pIo->vColl[stc].bColl = false;
bool bOldNoImp = PrepareStyle(rSI, eSti, stc, stcNext);
ImportSprms(aPAPXOffsets[stcp].mnOffset, aPAPXOffsets[stcp].mnSize,
true);
if (aConvertedChpx[stcp].size() > 0)
ImportSprms(&(aConvertedChpx[stcp][0]),
static_cast< short >(aConvertedChpx[stcp].size()),
false);
PostStyle(rSI, bOldNoImp);
}
}
void WW8RStyle::ImportNewFormatStyles()
{
ScanStyles(); // Scan Based On
for (sal_uInt16 i = 0; i < cstd; ++i) // import Styles
if (pIo->vColl[i].bValid)
Import1Style( i );
}
void WW8RStyle::ImportStyles()
{
if (ww::eWW2 == pIo->pWwFib->GetFIBVersion())
ImportOldFormatStyles();
else
ImportNewFormatStyles();
}
void WW8RStyle::Import()
{
pIo->pDfltTxtFmtColl = pIo->rDoc.GetDfltTxtFmtColl();
pIo->pStandardFmtColl =
pIo->rDoc.GetTxtCollFromPool(RES_POOLCOLL_STANDARD, false);
if( pIo->nIniFlags & WW8FL_NO_STYLES )
return;
ImportStyles();
for (sal_uInt16 i = 0; i < cstd; ++i)
{
// Follow chain
SwWW8StyInf* pi = &pIo->vColl[i];
sal_uInt16 j = pi->nFollow;
if( j < cstd )
{
SwWW8StyInf* pj = &pIo->vColl[j];
if ( j != i // rational Index ?
&& pi->pFmt // Format ok ?
&& pj->pFmt // Derived-Format ok ?
&& pi->bColl // only possible for paragraph templates (WW)
&& pj->bColl ){ // identical Typ ?
( (SwTxtFmtColl*)pi->pFmt )->SetNextTxtFmtColl(
*(SwTxtFmtColl*)pj->pFmt ); // ok, register
}
}
}
// Missing special handling for default character template
// "Absatz-Standardschriftart" ( Style-ID 65 ).
// That is empty by default ( WW6 dt and US ) and not changeable
// via WW-UI so this does not matter.
// This could be done by:
// if( bNew ) rDoc.SetDefault( pDefCharFmt->GetAttrSet() );
// for e.g. tables an always valid Std-Style is necessary
if( pIo->StyleExists(0) && !pIo->vColl.empty() &&
pIo->vColl[0].pFmt && pIo->vColl[0].bColl && pIo->vColl[0].bValid )
pIo->pDfltTxtFmtColl = (SwTxtFmtColl*)pIo->vColl[0].pFmt;
else
pIo->pDfltTxtFmtColl = pIo->rDoc.GetDfltTxtFmtColl();
// set Hyphenation flag on BASIC para-style
if (pIo->mbNewDoc && pIo->pStandardFmtColl)
{
if (pIo->pWDop->fAutoHyphen
&& SFX_ITEM_SET != pIo->pStandardFmtColl->GetItemState(
RES_PARATR_HYPHENZONE, false) )
{
SvxHyphenZoneItem aAttr(true, RES_PARATR_HYPHENZONE);
aAttr.GetMinLead() = 2;
aAttr.GetMinTrail() = 2;
aAttr.GetMaxHyphens() = 0;
pIo->pStandardFmtColl->SetFmtAttr( aAttr );
}
/*
Word defaults to ltr not from environment like writer. Regardless of
the page/sections rtl setting the standard style lack of rtl still
means ltr
*/
if (SFX_ITEM_SET != pIo->pStandardFmtColl->GetItemState(RES_FRAMEDIR,
false))
{
pIo->pStandardFmtColl->SetFmtAttr(
SvxFrameDirectionItem(FRMDIR_HORI_LEFT_TOP, RES_FRAMEDIR));
}
}
// we do not read styles anymore:
pIo->pAktColl = 0;
}
rtl_TextEncoding SwWW8StyInf::GetCharSet() const
{
if ((pFmt) && (pFmt->GetFrmDir().GetValue() == FRMDIR_HORI_RIGHT_TOP))
return eRTLFontSrcCharSet;
return eLTRFontSrcCharSet;
}
rtl_TextEncoding SwWW8StyInf::GetCJKCharSet() const
{
if ((pFmt) && (pFmt->GetFrmDir().GetValue() == FRMDIR_HORI_RIGHT_TOP))
return eRTLFontSrcCharSet;
return eCJKFontSrcCharSet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|