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
|
#ifndef production
static char rcsId[]="$Header: /usr/local/rcs/Newt/XmHTML/RCS/layout.c,v 1.2 1998/04/27 07:00:15 newt Exp newt $";
#endif
/*****
* layout.c : XmHTML layout computation routines
*
* This file Version $Revision: 1.2 $
*
* Creation date: Thu Nov 6 01:35:46 GMT+0100 1997
* Last modification: $Date: 1998/04/27 07:00:15 $
* By: $Author: newt $
* Current State: $State: Exp $
*
* Author: newt
*
* Copyright (C) 1994-1997 by Ripley Software Development
* All Rights Reserved
*
* This file is part of the XmHTML Widget Library
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*****/
/*****
* ChangeLog
* $Log: layout.c,v $
* Revision 1.2 1998/04/27 07:00:15 newt
* Lots of changes, most important: hugely improved table layout
*
* Revision 1.1 1998/04/04 06:27:23 newt
* Initial Revision
*
*****/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <stdio.h>
#include "toolkit.h"
#include XmHTMLPrivateHeader
/*** External Function Prototype Declarations ***/
/*** Public Variable Declarations ***/
/*** Private Datatype Declarations ****/
typedef XmHTMLWord** (*WordProc)(XmHTMLObjectTable, XmHTMLObjectTable, int*);
/*****
* Object bounding box. Used for recursive layout computations in tables
* and text flowing around images.
*****/
typedef struct _PositionBox{
Cardinal x; /* absolute box upper left x position */
Cardinal y; /* absolute box upper left y position */
int lmargin; /* left margin */
int rmargin; /* right margin */
int tmargin; /* top margin */
int bmargin; /* bottom margin */
int width; /* absolute box width */
int height; /* absolute box height */
int min_width; /* minimum box width */
int min_height; /* minimum box height */
int left; /* absolute left position */
int right; /* absolute right position */
int idx; /* index of cell using this box */
int rowspan; /* no of rows spanned by this box */
int colspan; /* no of cells spanned by this box */
}PositionBox;
/*** Private Function Prototype Declarations ****/
static void SetText(XmHTMLWidget html, PositionBox *box,
XmHTMLObjectTableElement start, XmHTMLObjectTableElement end,
Boolean in_pre, Boolean precompute);
static void SetRule(XmHTMLWidget html, PositionBox *box,
XmHTMLObjectTableElement data);
static void SetApplet(XmHTMLWidget html, PositionBox *box,
XmHTMLObjectTableElement data);
static void SetBlock(XmHTMLWidget html, PositionBox *box,
XmHTMLObjectTableElement data);
static void SetNone(XmHTMLWidget html, PositionBox *box,
XmHTMLObjectTableElement data);
static void SetBullet(XmHTMLWidget html, PositionBox *box,
XmHTMLObjectTableElement data);
static void SetBreak(XmHTMLWidget html, PositionBox *box,
XmHTMLObjectTableElement data);
static XmHTMLObjectTableElement SetTable(XmHTMLWidget html,
PositionBox *box, XmHTMLObjectTableElement data);
/*****
* Layout computation routines
*****/
static void ComputeTextLayout(XmHTMLWidget html, PositionBox *box,
XmHTMLWord **words, int nstart, int *nwords, Boolean last_line,
Boolean precompute);
static void ComputeTextLayoutPre(XmHTMLWidget html, PositionBox *box,
XmHTMLWord **words, int nstart, int *nwords, Boolean last_line);
/*****
* Various helper routines
*****/
static XmHTMLWord **getWords(XmHTMLObjectTableElement start,
XmHTMLObjectTableElement end, int *nwords);
static XmHTMLWord **getWordsRtoL(XmHTMLObjectTableElement start,
XmHTMLObjectTableElement end, int *nwords);
static void JustifyText(XmHTMLWidget html, XmHTMLWord *words[],
int word_start, int word_end, Dimension sw, int len, int line_len,
int skip_id);
static void CheckAlignment(XmHTMLWidget html, XmHTMLWord *words[],
int word_start, int word_end, int sw, int line_len, Boolean last_line,
int skip_id);
static void CheckVerticalAlignment(XmHTMLWidget html, PositionBox *box,
XmHTMLObjectTableElement start, XmHTMLObjectTableElement end,
Alignment valign);
static void AdjustBaseline(XmHTMLWord *base_obj, XmHTMLWord **words,
int start, int end, int *lineheight, Boolean last_line,
Boolean only_img);
static void AdjustBaselinePre(XmHTMLWord *base_obj, XmHTMLWord **words,
int start, int end, int *lineheight, Boolean last_line);
static void PreComputeTableLayout(XmHTMLWidget html, PositionBox *parent,
XmHTMLObjectTableElement obj_start, XmHTMLObjectTableElement obj_end);
static void ComputeTableLayout(XmHTMLWidget html, PositionBox *box,
XmHTMLObjectTableElement obj_start, XmHTMLObjectTableElement obj_end);
static void FinalizeTextLayout(XmHTMLWord **words, int nwords, Boolean in_pre);
static void CreateLineTable(XmHTMLWidget html);
/*
* characters that must be flushed against a word. Can't use ispunct since
* that are all printable chars that are not a number or a letter.
*/
#define IS_PUNCT(c) (c == '.' || c == ',' || c == ':' || c == ';' || \
c == '!' || c == '?')
/*** Private Variable Declarations ***/
static int line, last_text_line;
static int max_width;
static XmHTMLWord *baseline_obj;
static Boolean had_break; /* indicates a paragraph had a break */
static XmHTMLWord** (*get_word_func)(XmHTMLObjectTableElement,
XmHTMLObjectTableElement, int *);
static int curr_anchor, named_anchor;
#ifdef DEBUG
static int lines_done;
static int total_iterations;
#endif
#define STORE_ANCHOR(DATA) { \
if(DATA->text_data & TEXT_ANCHOR) \
{ \
/* save anchor data */ \
for(i = 0 ; i < DATA->n_words; i++) \
{ \
/* sanity check */ \
if(curr_anchor == HTML_ATTR(anchor_words)) \
{ \
_XmHTMLWarning(__WFUNC__(html, "_XmHTMLpaint"), XMHTML_MSG_77, \
"normal"); \
curr_anchor--; \
} \
/* copy worddata and adjust y position */ \
HTML_ATTR(anchors[curr_anchor]) = DATA->words[i]; \
if(DATA->words[i].type == OBJ_IMG) \
HTML_ATTR(anchors[curr_anchor].y) = DATA->words[i].y; \
else \
HTML_ATTR(anchors[curr_anchor].y) = \
DATA->words[i].y - DATA->words[i].font->ascent; \
curr_anchor++; \
} \
} \
if(DATA->text_data & TEXT_ANCHOR_INTERN) \
{ \
/* save named anchor location */ \
if(named_anchor == HTML_ATTR(num_named_anchors)) \
{ \
_XmHTMLWarning(__WFUNC__(html, "_XmHTMLpaint"), XMHTML_MSG_77, \
"named"); \
named_anchor--; \
} \
/* copy worddata and adjust y position */ \
HTML_ATTR(named_anchors[named_anchor]) = *DATA; \
named_anchor++; \
} \
}
/**********
***** Layout Computation.
*****
***** The running vertical coordinate specifies the upper left corner
***** of the object to be drawn.
*****
***** So to render each object on a line at the same baseline, the following
***** conventions are used to determine the proper vertical coordinate for
***** each object to be drawn:
*****
***** Text blocks
***** y-coordinate specifies the baseline origin of each text element to
***** be drawn -> y-coordinate given by the running y-coordinate *plus*
***** the ascent of the current font.
***** XDrawString uses the object's x and y coordinates as the baseline
***** origin for the text to be drawn.
***** Images
***** y-coordinate equals running y-coordinate.
***** XCopyArea uses the object's x and y coordinates as the upper-left
***** corner of the image to be drawn.
***** Form and User-Defined elements
***** y-coordinate equals running y-coordinate.
***** Window position uses the object's x and y coordinates as the
***** upper-left corner of the window to be displayed;
***** Horizontal Rules
***** running y-coordinate plus a single linefeed specifies the upper-left
***** corner of the rule. Two linefeeds plus the height of the rule
***** are added to the running y-coordinate.
*****
***** The height of a line is determined by the highest object on a line,
***** and the running y-coordinate is updated accordingly.
**********/
/*****
* Name: _XmHTMLComputeLayout
* Return Type: void
* Description: displays every formatted object on to the screen.
* In:
* w: Widget to display
* Returns:
* nothing.
*****/
void
_XmHTMLComputeLayout(XmHTMLWidget html)
{
XmHTMLObjectTableElement temp, end;
PositionBox box;
int i;
_XmHTMLDebug(5, ("layout.c: _XmHTMLComputeLayout Start\n"));
HTML_ATTR(paint_start) = temp = HTML_ATTR(formatted);
HTML_ATTR(paint_x) = 0;
HTML_ATTR(paint_width) = HTML_ATTR(work_width) + HTML_ATTR(margin_width);
line = last_text_line = 0;
baseline_obj = (XmHTMLWord*)NULL;
max_width = 0;
had_break = False;
curr_anchor = 0, named_anchor = 0;
/*****
* work_width is core width minus one horizontal margin.
* Maximum useable width is core width minus two times the horizontal
* margin.
*****/
box.x = HTML_ATTR(margin_width); /* initial margin */
box.y = HTML_ATTR(margin_height); /* initial margin */
box.lmargin = HTML_ATTR(margin_width); /* absolute left margin */
box.rmargin = HTML_ATTR(work_width); /* absolute right margin*/
box.width = box.rmargin - box.lmargin; /* absolute box width */
box.height = -1; /* unknown height */
box.tmargin = 0; /* top margin */
box.bmargin = HTML_ATTR(margin_height); /* bottom margin */
box.left = box.lmargin; /* initial left offset */
box.right = box.rmargin; /* initial right offset */
/* select appropriate word collector */
if(HTML_ATTR(string_direction) == XmSTRING_DIRECTION_R_TO_L)
get_word_func = getWordsRtoL;
else
get_word_func = getWords;
#ifdef DEBUG
lines_done = 0;
total_iterations = 0;
_XmHTMLDebug(5, ("layout.c: _XmHTMLComputeLayout:\n"
"\tCore offset: %ix%i\n"
"\tmargins: width = %i, height = %i\n"
"\twidget offset: %ix%i\n",
CORE_ATTR(x), CORE_ATTR(y), box.lmargin, box.tmargin, box.x, box.y));
#endif
/* sanity check */
if(temp == NULL)
return; /* fix 01/28/97-06, kdh */
_XmHTMLFullDebug(5, ("layout.c: _XmHTMLComputeLayout, x = %d, y = %d \n",
box.x, box.y));
while(temp != HTML_ATTR(last_formatted))
{
switch(temp->object_type)
{
/*
* To get a proper text layout, we need to do the layout for
* whole blocks of text at a time.
*/
case OBJ_TEXT:
_XmHTMLFullDebug(5, ("layout.c: OBJ_TEXT\n"));
for(end = temp; end->next->object_type == OBJ_TEXT;
end = end->next);
/* go and do text layout */
SetText(html, &box, temp, end->next, False, False);
for(; temp->object_type == OBJ_TEXT; temp = temp->next)
{
STORE_ANCHOR(temp);
}
/* back up one element */
temp = end;
break;
case OBJ_PRE_TEXT:
_XmHTMLFullDebug(5, ("layout.c: OBJ_PRE_TEXT\n"));
for(end = temp; end->next->object_type == OBJ_PRE_TEXT;
end = end->next);
my_assert(end != NULL);
/* go and do text layout */
SetText(html, &box, temp, end->next, True, False);
for(; temp->object_type == OBJ_PRE_TEXT; temp = temp->next)
{
STORE_ANCHOR(temp);
}
/* back up one element */
temp = end;
break;
case OBJ_BULLET:
_XmHTMLFullDebug(5, ("layout.c: OBJ_BULLET\n"));
SetBullet(html, &box, temp);
break;
case OBJ_HRULE:
_XmHTMLFullDebug(5, ("layout.c: OBJ_HRULE\n"));
SetRule(html, &box, temp);
break;
case OBJ_TABLE:
_XmHTMLFullDebug(5, ("layout.c: OBJ_TABLE\n"));
end = SetTable(html, &box, temp);
/*****
* Now store anchor data in this table. We can't do this
* in the table layout routine as the (recursive) computation
* routines for nested tables will repeatedly store anchor data.
*****/
for(; temp != end; temp = temp->next)
{
if(temp->object_type == OBJ_TEXT ||
temp->object_type == OBJ_PRE_TEXT)
{
STORE_ANCHOR(temp);
}
/* empty named anchors can cause this */
else if(temp->text_data & TEXT_ANCHOR_INTERN)
{
/* save named anchor location */
HTML_ATTR(named_anchors[named_anchor]) = *temp;
named_anchor++;
}
}
SetBlock(html, &box, temp);
/* back up one element */
temp = end->prev;
break;
case OBJ_TABLE_FRAME:
_XmHTMLFullDebug(5, ("layout.c: OBJ_TABLE_FRAME\n"));
#ifdef DEBUG
_XmHTMLWarning(__WFUNC__(html, "_XmHTMLComputeLayout"),
"Invalid object OBJ_TABLE_FRAME! (debug)\n");
#endif
break;
case OBJ_APPLET:
_XmHTMLFullDebug(5, ("layout.c: OBJ_APPLET\n"));
SetApplet(html, &box, temp);
SetBreak(html, &box, temp);
break;
case OBJ_BLOCK:
_XmHTMLFullDebug(5, ("layout.c: OBJ_BLOCK\n"));
SetBlock(html, &box, temp);
SetBreak(html, &box, temp);
break;
case OBJ_NONE:
_XmHTMLFullDebug(5, ("layout.c: OBJ_NONE\n"));
SetNone(html, &box, temp);
/* empty named anchors can cause this */
if(temp->text_data & TEXT_ANCHOR_INTERN)
{
/* save named anchor location */
HTML_ATTR(named_anchors[named_anchor]) = *temp;
named_anchor++;
}
break;
default:
_XmHTMLWarning(__WFUNC__(html, "_XmHTMLComputeLayout"),
XMHTML_MSG_78);
}
/* end command for painting the first page */
if((box.y - temp->height > HTML_ATTR(work_height)) ||
(box.y > HTML_ATTR(work_height)))
HTML_ATTR(paint_end) = temp;
if(box.x > max_width)
max_width = box.x;
temp = temp->next;
/* restore original box width */
box.width = box.rmargin - box.lmargin;
}
/*****
* Now adjust width of the anchors.
* If the current anchor word and the next are on the same line, and these
* words belong to the same anchor, the width of the current anchor word
* is adjusted so it will seem to be continue across the whole line when
* the mouse pointer is moved over an anchor.
* We can adjust the width field directly because the html.anchors field is
* only used for anchor lookup, not for rendering.
*****/
for(i = 0 ; i < HTML_ATTR(anchor_words); i++)
HTML_ATTR(anchors[i].x) = HTML_ATTR(anchors[i].self->x);
for(i = 0 ; i < HTML_ATTR(anchor_words); i++)
{
if((HTML_ATTR(anchors[i].owner) == HTML_ATTR(anchors[i+1].owner)) &&
(HTML_ATTR(anchors[i].line) == HTML_ATTR(anchors[i+1].line)))
{
HTML_ATTR(anchors[i].width) =
HTML_ATTR(anchors[i+1].x) - HTML_ATTR(anchors[i].x) + 2;
}
my_assert(HTML_ATTR(anchors[i].base) != NULL);
}
/*****
* store total height for this document. We add the marginheight and
* font descent to get the text nicely centered.
*****/
HTML_ATTR(formatted_height) = box.y + HTML_ATTR(margin_height) +
HTML_ATTR(default_font)->descent;
/* Preferred width for this document, includes horizontal margin once. */
HTML_ATTR(formatted_width) = max_width;
/* store new maximum line number */
HTML_ATTR(nlines) = line;
/*****
* Never adjust top_line, scroll_x or scroll_y. This will make the
* widget jump to the line in question and start drawing at the scroll_x
* and scroll_y positions.
*****/
_XmHTMLDebug(5, ("layout.c: _XmHTMLComputeLayout, x_max = %d, "
"y_max = %d, total lines: %i.\n", HTML_ATTR(formatted_width),
HTML_ATTR(formatted_height), line));
_XmHTMLDebug(5, ("layout.c: _XmHTMLComputeLayout, stored %i/%i "
"anchor words\n", curr_anchor, HTML_ATTR(anchor_words)));
_XmHTMLDebug(5, ("layout.c: _XmHTMLComputeLayout, stored %i/%i "
"named anchors \n", named_anchor, HTML_ATTR(num_named_anchors)));
/* now process any images with an alpha channel (if any) */
if(HTML_ATTR(delayed_creation))
_XmHTMLImageCheckDelayedCreation(html);
#ifdef DEBUG
/* prevent divide by zero */
if(lines_done)
{
_XmHTMLDebug(5, ("outlining stats\n"));
_XmHTMLDebug(5, ("\tlines done: %i\n", lines_done));
_XmHTMLDebug(5, ("\ttotal iterations: %i\n", total_iterations));
_XmHTMLDebug(5, ("\taverage iterations per line: %f\n",
(float)(total_iterations/(float)lines_done)));
}
#endif
CreateLineTable(html);
/* compute clipmask to use for scrolling forms */
_XmHTMLFormCreateClipmask(html);
_XmHTMLDebug(5, ("layout.c: _XmHTMLComputeLayout End\n"));
return;
}
static void
CreateLineTable(XmHTMLWidget html)
{
int nl;
XmHTMLObjectTableElement temp;
XmHTMLLineTable *table;
#ifdef DEBUG
int nused = 0;
#endif
if(HTML_ATTR(line_table))
free(HTML_ATTR(line_table));
HTML_ATTR(line_table) = (XmHTMLLineTable*)NULL;
/* sanity */
if(HTML_ATTR(nlines) == 0)
return;
HTML_ATTR(line_table) =
(XmHTMLLineTable*)calloc(HTML_ATTR(nlines)+1,sizeof(XmHTMLLineTable));
table = HTML_ATTR(line_table);
for(temp = HTML_ATTR(formatted); temp && temp != HTML_ATTR(last_formatted);
temp = temp->next)
{
/* sanity */
my_assert(temp->line < HTML_ATTR(nlines)+1);
if(table[temp->line].used == False)
{
nl = temp->line;
table[nl].used = True;
table[nl].y = temp->y;
table[nl].start = temp;
#ifdef DEBUG
nused++; /* keep usage counter */
#endif
if(temp->n_words > 1 &&
temp->words[0].line != temp->words[temp->n_words-1].line)
{
int k, wl;
for(k = 0 ; k < temp->n_words; k++)
{
/* sanity */
my_assert(temp->words[k].line < HTML_ATTR(nlines)+1);
if(table[temp->words[k].line].used == False)
{
wl = temp->words[k].line;
table[wl].used = True;
table[wl].y = temp->words[k].y;
table[wl].start = temp;
table[wl].end = temp;
#ifdef DEBUG
nused++;
#endif
while(k < temp->n_words && temp->words[k].line != wl)
k++;
}
}
}
/* skip all objects on the same line */
while(temp->next != HTML_ATTR(last_formatted) &&
nl == temp->next->line)
{
temp = temp->next;
if(temp->n_words > 1 &&
temp->words[0].line != temp->words[temp->n_words-1].line)
{
int k, wl;
for(k = 0 ; k < temp->n_words; k++)
{
/* sanity */
my_assert(temp->words[k].line < HTML_ATTR(nlines)+1);
if(table[temp->words[k].line].used == False)
{
wl = temp->words[k].line;
table[wl].used = True;
table[wl].y = temp->words[k].y;
table[wl].start = temp;
table[wl].end = temp;
while(k < temp->n_words &&
temp->words[k].line != wl)
k++;
#ifdef DEBUG
nused++;
#endif
}
}
}
}
}
}
_XmHTMLDebug(5, ("layout.c: CreateLineTable, allocated %i lines and "
"used %i of them\n", HTML_ATTR(nlines), nused));
}
/*****
* Name: JustifyText
* Return Type: void
* Description: adjusts interword spacing to produce fully justified text.
* justification is done on basis of the longest words.
* In:
* start: starting text element
* end: ending text element
* w_start: index in starting text element
* w_end: index in ending text element
* sw: width of a space in the current font
* len: current line length for this text
* line_len: maximum length of a line.
* Returns:
* nothing, but *items contains updated delta fields to reflect the
* required interword spacing.
* Note:
* Words that start with a punctuation character are never adjusted,
* they only get shoved to the right.
* This routine could be much more efficient if the text to be justified
* would be sorted.
*****/
static void
JustifyText(XmHTMLWidget html, XmHTMLWord *words[], int word_start,
int word_end, Dimension sw, int len, int line_len, int skip_id)
{
int word_len, longest_word = 0, nspace = 0, i, j, num_iter = 0;
/* See how many spaces we have to add */
nspace = (int)((line_len - len)/(sw == 0 ? (sw = 3) : sw));
/*
* last line of a block or no spaces to add. Don't adjust it.
* nspace can be negative if there are words that are longer than
* the available linewidth
*/
if(nspace < 1)
return;
/* we need at least two words if we want this to work */
if((word_end - word_start) < 2)
return;
/* no hassling for a line with two words, fix 07/03/97-02, kdh */
if((word_end - word_start) == 2)
{
/* just flush the second word to the right margin */
words[word_start+1]->x += nspace*sw;
return;
}
/* pick up the longest word */
for(i = word_start; i < word_end; i++)
{
if(i == skip_id)
continue;
if(words[i]->len > longest_word)
longest_word = words[i]->len;
}
word_len = longest_word;
/* adjust interword spacing until we run out of spaces to add */
while(nspace && num_iter < XmHTML_MAX_JUSTIFY_ITERATIONS)
{
/* walk all words in search of the longest one */
for(i = word_start ; i < word_end && nspace; i++, num_iter++)
{
if(i == skip_id || words[i]->len == 0)
continue;
/* Found! */
if(words[i]->len == word_len &&
!IS_PUNCT(*(words[i]->word)) &&
!(words[i]->posbits & TEXT_SPACE_NONE))
{
/* see if we are allowed to shift this word */
if(!(words[i]->posbits & TEXT_SPACE_TRAIL) &&
!(words[i]->posbits & TEXT_SPACE_LEAD))
continue;
/*****
* Add a leading space if we may, but always shift all
* following words to the right.
*
* fix 07/03/97-01, kdh
******/
if(words[i]->posbits & TEXT_SPACE_LEAD && i != word_start)
{
for(j = i; j < word_end; j++)
{
if(j == skip_id)
continue;
words[j]->x += sw;
}
nspace--;
}
if(nspace)
{
for(j = i + 1; j < word_end; j++)
{
if(j == skip_id)
continue;
words[j]->x += sw;
}
/* we have only added a space if this is true */
if(j != i+1)
nspace--;
}
}
}
num_iter++;
/* move on to next set of words eligible for space adjustement. */
word_len = (word_len == 0 ? longest_word : word_len - 1);
}
if(num_iter == XmHTML_MAX_JUSTIFY_ITERATIONS)
{
_XmHTMLWarning(__WFUNC__(NULL, "JustifyText"),
XMHTML_MSG_79, "Text justification", XmHTML_MAX_JUSTIFY_ITERATIONS,
words[word_start]->owner->object->line);
}
#ifdef DEBUG
lines_done++;
total_iterations += num_iter;
#endif
}
/*****
* Name: CheckAlignment
* Return Type: void
* Description: adjusts x-position of every word to reflect requested
* alignment.
* In:
* w: XmHTML widget
* start: starting text element
* end: ending text element
* word_start: starting word index in the start element.
* sw: current space width.
* last_line: indicates this is the last line in a text block;
* Returns:
* nothing, but every word in start and end (and any object(s) in between
* them) that belongs to the same line is updated to reflect the alignment.
* This routine just returns if the current alignment matches the default
* alignment.
*****/
static void
CheckAlignment(XmHTMLWidget html, XmHTMLWord *words[], int word_start,
int word_end, int sw, int line_len, Boolean last_line, int skip_id)
{
int i, width, offset;
/* sanity */
if(word_end < 1)
return;
/* total line width occupied by these words */
width = words[word_end-1]->x + words[word_end-1]->width -
words[word_start]->x;
_XmHTMLFullDebug(5, ("layout.c: CheckAlignment, start word: %s, index %i, "
"end word: %s, index %i, width = %i, line length = %i\n",
words[word_start]->word, word_start,
words[word_end-1]->word, word_end-1, width, line_len));
switch(words[word_start]->owner->halign)
{
case XmHALIGN_RIGHT:
offset = line_len - width;
break;
case XmHALIGN_CENTER:
offset = (line_len - width)/2;
break;
case XmHALIGN_LEFT: /* layout computation is always left-sided */
offset = 0;
break;
case XmHALIGN_JUSTIFY:
/* sw == -1 when used for <pre> text */
if(HTML_ATTR(enable_outlining) && !last_line && sw != -1)
{
JustifyText(html, words, word_start, word_end, sw, width,
line_len, (word_start < skip_id ? skip_id : -1));
offset = 0;
break;
}
/* fall thru */
case XmHALIGN_NONE:
default:
/* use specified alignment */
switch(HTML_ATTR(alignment))
{
case XmALIGNMENT_END:
offset = line_len - width;
break;
case XmALIGNMENT_CENTER:
offset = (line_len - width)/2;
break;
case XmALIGNMENT_BEGINNING:
default:
offset = 0;
break;
}
break;
}
/*****
* only adjust with a positive offset. A negative offset indicates
* that the current width is larger than the available width.
* Will ignore alignment setting for pre text that is wider than the
* available window width.
*****/
if(offset <= 0)
return;
for(i = word_start; i < word_end; i++)
words[i]->x += offset;
}
/*****
* Name: getWords
* Return Type: XmHTMLWord**
* Description: creates an array containing all OBJ_TEXT elements between
* start and end.
* In:
* start: element at which to start collecting words;
* end: element at which to end collecting words;
* nwords: no of words collected. Updated upon return;
* Returns:
* an array of XmHTMLWord.
* Note:
* This routine is used by the text layout routines to keep layout computation
* managable.
*****/
static XmHTMLWord**
getWords(XmHTMLObjectTableElement start, XmHTMLObjectTableElement end,
int *nwords)
{
static XmHTMLWord **words;
XmHTMLObjectTableElement tmp;
int i, k, cnt = 0;
for(tmp = start; tmp != end ; tmp = tmp->next)
cnt += tmp->n_words;
words = (XmHTMLWord**)calloc(cnt, sizeof(XmHTMLWord*));
for(tmp = start, k = 0; tmp != end; tmp = tmp->next)
{
for(i = 0 ; i < tmp->n_words; i++)
{
/* store word ptr & reset position to zero */
words[k] = &(tmp->words[i]);
words[k]->x = 0;
words[k]->y = 0;
/* inherit spacing bits */
words[k]->posbits = tmp->words[i].spacing;
words[k]->line = 0;
/* reset baseline object */
words[k++]->base = NULL;
}
}
*nwords = cnt;
return(words);
}
/*****
* Name: getWordsRtoL
* Return Type: XmHTMLWord**
* Description: creates an array containing all OBJ_TEXT elements between
* start and end but reverses the object to properly accomodate
* right-to-left layout.
* In:
* start: element at which to start collecting words;
* end: element at which to end collecting words;
* nwords: no of words collected. Updated upon return;
* Returns:
* an array of XmHTMLWord.
* Note:
* This is a seperate routine for performance reasons.
*****/
static XmHTMLWord**
getWordsRtoL(XmHTMLObjectTableElement start, XmHTMLObjectTableElement end,
int *nwords)
{
static XmHTMLWord **words;
XmHTMLObjectTableElement tmp;
int i, k, cnt = 0;
for(tmp = start; tmp != end ; tmp = tmp->next)
cnt += tmp->n_words;
words = (XmHTMLWord**)calloc(cnt, sizeof(XmHTMLWord*));
/* sanity */
if(end == NULL)
for(end = start; end->next != NULL; end = end->next);
for(tmp = end->prev, k = 0; tmp != start->prev; tmp = tmp->prev)
{
for(i = 0; i < tmp->n_words; i++)
{
/* store word ptr & reset position to zero */
words[k] = &(tmp->words[i]);
words[k]->x = 0;
words[k]->y = 0;
/* inherit spacing bits */
words[k]->posbits = tmp->words[i].spacing;
words[k]->line = 0;
/* reset baseline object */
words[k++]->base = NULL;
}
}
*nwords = cnt;
return(words);
}
/*****
* Name: AdjustBaseline
* Return Type: void
* Description: adjusts the baseline for each word between start and end.
* In:
* base_obj: object which controls the baseline offset;
* **words: array of all words being laid out;
* start: starting word index;
* end: ending word index;
* lineheight: new lineheight (= spacing between to consecutive lines of text)
* last_line: True when called for the last line in paragraph. Used for
* computing the proper vertical offset between the end of this
* paragraph and the object following it;
* only_img..: True if current line only contains images. If it does, baseline
* is adjusted to bottom of the image, otherwise baseline is
* shifted downwards a bit (only for images which align at the
* bottom).
* Returns:
* nothing, but all words between start and end have their baseline adjusted.
*****/
static void
AdjustBaseline(XmHTMLWord *base_obj, XmHTMLWord **words, int start, int end,
int *lineheight, Boolean last_line, Boolean only_img)
{
int i, k, y_offset = 0;
#ifdef NEW_LAYOUT
int rl = lineheight; /* running lineheight */
for(i = start; i < end ; i++)
{
switch(words[i]->type)
{
case OBJ_IMG:
switch(words[i]->image->align)
{
case XmVALIGN_MIDDLE:
y_offset = (*lineheight - words[i]->font->m_ascent)/2.;
/* adjust return value from SetText */
/* fix 07/03/97-04, kdh */
if(last_line && words[i] != words[end-1])
*lineheight = y_offset;
break;
case XmVALIGN_BASELINE:
case XmVALIGN_BOTTOM:
y_offset = *lineheight - words[i]->font->m_ascent;
*lineheight += (only_img ?
0 : words[i]->font->m_ascent/2.);
break;
case XmVALIGN_TOP:
default:
break;
}
break;
case OBJ_FORM:
/* fix 07/04/97-01, kdh */
/* form elements are always aligned in the middle */
y_offset = (*lineheight + words[i]->font->m_ascent)/2.;
/* But they move the baseline down */
*lineheight += words[i]->font->m_ascent/2.;
break;
case OBJ_BLOCK:
default:
/* words are already at baseline */
y_offset = 0;
if(!last_line) /* sanity */
*lineheight = words[end]->height;
break;
}
}
#else
my_assert(base_obj != NULL);
_XmHTMLDebug(5, ("layout.c: AdjustBaseline, lineheight IN: %i\n",
*lineheight));
switch(base_obj->type)
{
case OBJ_IMG:
switch(base_obj->image->align)
{
case XmVALIGN_MIDDLE:
y_offset = (*lineheight - base_obj->font->m_ascent)/2.;
/* adjust return value from SetText */
/* fix 07/03/97-04, kdh */
if(last_line && base_obj != words[end-1])
*lineheight = y_offset;
break;
case XmVALIGN_BASELINE:
case XmVALIGN_BOTTOM:
y_offset = *lineheight - base_obj->font->m_ascent;
*lineheight += (only_img ?
0 : base_obj->font->m_ascent/2.);
break;
case XmVALIGN_TOP:
default:
break;
}
break;
case OBJ_FORM:
/* fix 07/04/97-01, kdh */
/* form elements are always aligned in the middle */
y_offset = (*lineheight + base_obj->font->m_ascent)/2.;
/* But they move the baseline down */
*lineheight += base_obj->font->m_ascent/2.;
break;
case OBJ_BLOCK:
default:
/* words are already at baseline */
y_offset = 0;
if(!last_line) /* sanity */
*lineheight = words[end]->height;
break;
}
/*****
* Now adjust the baseline for every word on this line.
* Split into a y_offset and non y_offset part for performance reasons.
*****/
if(y_offset)
{
for(i = start; i < end; i++)
{
/* only move text objects */
if(words[i]->type == OBJ_TEXT)
words[i]->y += y_offset;
words[i]->base = base_obj;
}
}
else
{
for(i = start; i < end; i++)
words[i]->base = base_obj;
}
_XmHTMLDebug(5, ("layout.c: AdjustBaseline, lineheight OUT: %i\n",
*lineheight));
#endif
}
/*****
* Name: FinalizeTextLayout
* Return Type: void
* Description: stores the final dimensions on the parents of the given
* words.
* In:
* words: array of words for which to update the parents
* nwords: size of array.
* in_pre: True if this is a chunk of <PRE> data.
* Returns:
* nothing.
*****/
static void
FinalizeTextLayout(XmHTMLWord **words, int nwords, Boolean in_pre)
{
int word_start, i;
XmHTMLObjectTableElement current = NULL;
/* Update all ObjectTable elements for these words */
current = NULL;
for(i = 0; i < nwords; i++)
{
if(current != words[i]->owner)
{
word_start = i;
current = words[i]->owner;
current->x = words[i]->x;
current->width = words[i]->width;
current->line = words[i]->line;
/*****
* To get correct screen updates, the vertical position and height
* of this object are that of the baseline object.
* The font is also changed to the font used by the baseline
* object.
*****/
current->y = words[i]->base->y;
current->height = words[i]->base->height;
current->font = words[i]->base->font;
/* get index of last word on the first line of this object. */
for(; i < word_start + current->n_words-1 &&
words[i]->line == words[i+1]->line; i++);
/*****
* Total line width is given by end position of last word on this
* line minus the starting position of the first word on this line.
* (ensures we take interword spacing into account)
*****/
current->width = words[i]->x + words[i]->width - current->x;
/*****
* Lineheight of this object is given by vertical position of last
* word minus vertical position of first word in this block. Only
* valid when this object spans multiple lines.
*****/
if(i != word_start + current->n_words-1)
{
current->height = words[word_start + current->n_words - 1]->y -
words[word_start]->y;
}
else if(in_pre && words[i]->base->spacing)
{
/* vertical line spacing in preformatted text */
current->height = ((int)words[i]->base->spacing) *
words[i]->base->font->height;
}
/* and set i to last word of this object */
i = word_start + current->n_words-1;
_XmHTMLDebug(5, ("layout.c: FinalizeTextLayout, object data: "
"x = %d, y = %d, width = %d, height = %d, line = %i\n",
current->x, current->y, current->width, current->height,
current->line));
}
}
}
/**********
***** This is the main text layout computation driver. It is used for all
***** preformatted text, ordinary paragraphs and layout computation
***** for text inside table cells.
*****
***** For the latter, a special precompute mode is available.
***** In this mode, an estimate of the horizontal size of the cell is to be
***** made. To achieve this, the initial size of the textbox is set
***** to an unlimited value (linewidth will never be exceeded) and only
***** explicit linebreaks will be honored. After the layout routine
***** finishes, the estimed size of the (fully stretched) cell is returned
***** to the caller. The caller repeats this process for each cell in
***** a row. When the caller has all cell widths, it calculates the total
***** row width that would be required to give each cell it's maximum size.
***** When this row width fits in the (total) available width, each cell
***** is granted it's maximum size. When it doesn't fit, the caller
***** distributes the available width accross each cell, using the
***** maximum cell widths as a weighing factor.
***** When each cell has received it's final dimension, the caller calls
***** the cell layout routines once more, but this time in final layout
***** mode.
***** (Actually it is a bit more complex than this because the caller
***** precomputes all rows, then determines the widest cells in each
***** column and uses the widths of these cells to compute the final
***** column dimensions)
**********/
/*****
* Name: SetText
* Return Type: void
* Description: main text layout driver;
* In:
* html: XmHTMLWidget id;
* *x: initial x position, updated to new x position upon return;
* *y: initial y position, updated to new y position upon return;
* start: starting object id;
* end: ending object id;
* in_pre: True if called for preformatted text;
* precompute: True if we are pre-computing the box dimensions (Tables!)
* Returns:
* nothing
*****/
static void
SetText(XmHTMLWidget html, PositionBox *box, XmHTMLObjectTableElement start,
XmHTMLObjectTableElement end, Boolean in_pre, Boolean precompute)
{
XmHTMLWord **words;
int nwords;
PositionBox my_box;
/*****
* to make it ourselves _much_ easier, put all the words starting from
* start and up to end in a single block of words.
*****/
words = get_word_func(start, end, &nwords);
/* sanity */
if(nwords == 0)
return;
_XmHTMLDebug(5, ("layout.c, SetText: initial box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetText: initial box dimensions: %i, %i\n",
box->width, box->height));
/*****
* Set up the initial PositionBox to be used for text layout.
*****/
my_box.x = box->x;
my_box.y = box->y;
my_box.lmargin = box->lmargin;
my_box.rmargin = box->rmargin;
my_box.left = box->left;
my_box.right = box->rmargin;
my_box.width = my_box.right - my_box.left;
my_box.tmargin = precompute ? 0 : box->tmargin;
my_box.min_width = -1;
my_box.height = -1;
/* do text layout */
if(in_pre)
ComputeTextLayoutPre(html, &my_box, words, 0, &nwords, True);
else
ComputeTextLayout(html, &my_box, words, 0, &nwords, True, precompute);
_XmHTMLDebug(5, ("layout.c, SetText: updated box position: %i, %i\n",
my_box.x, my_box.y));
_XmHTMLDebug(5, ("layout.c, SetText: updated box dimensions: %i, %i\n",
my_box.width, my_box.height));
if(precompute)
{
/* update return values */
box->x = my_box.x;
box->y = my_box.y;
if(my_box.width > box->width || box->width == -1)
box->width = my_box.width;
if(my_box.min_width < box->min_width || box->min_width == -1)
box->min_width = my_box.min_width;
if(my_box.height > box->height || box->height == -1)
box->height = my_box.height;
/* no longer needed */
free(words);
/* done precomputing */
return;
}
/* Update all ObjectTable elements for these words */
FinalizeTextLayout(words, nwords, in_pre);
/* update return values */
box->x = my_box.x;
box->y = my_box.y;
/* free words */
free(words);
}
#define UPDATE_WORD(W) { \
/* images and forms need to have the font ascent substracted to get a */ \
/* proper vertical alignment. */ \
(W)->line = line; \
(W)->x = x_pos + e_space; \
if((W)->type != OBJ_TEXT && (W)->type != OBJ_BLOCK) \
{ \
have_object = True; \
(W)->y = y_pos + (W)->owner->y_offset; \
} else \
(W)->y = y_pos + (W)->owner->y_offset + base_obj->font->m_ascent; \
x_pos = (W)->x + (W)->width + (W)->owner->x_offset; \
_XmHTMLDebug(5, ("layout.c: UPDATE_WORD, word: %s, x = %i, " \
"y = %i\n", (W)->word, (W)->x, (W)->y)); \
}
/*****
* Name: ComputeTextLayout
* Return Type: void
* Description: orders the given textdata into single lines, breaking and
* moving up to the next line if necessary.
* In:
* w: widget for which to do this;
* box: bounding box to be used for computing text layout;
* words: array of words to be laid out;
* nstart: starting idx;
* nwords: ending idx, can be updated upon return;
* last_line: indicates that this routine is called for the the last line in
* a paragraph.
* precomp..: True when *precomputing* cell layout (ignores linebreaks,
* unless they are explicit).
* Returns:
* nothing
* Note:
* This function does the layout of complete paragraphs at once.
* A paragraph is given by all text elements between start and end.
*
* This is a rather complex routine. Things it does are the following:
* - considers images, HTML form members and text as the same objects;
* - adjusts baseline according to the highest object on a line;
* - adjusts space width if font changes;
* - performs horizontal alignment;
* - performs text outlining if required;
* - glues words together if required (interword spacing);
*****/
static void
ComputeTextLayout(XmHTMLWidget html, PositionBox *box, XmHTMLWord **words,
int nstart, int *nwords, Boolean last_line, Boolean precompute)
{
XmHTMLfont *basefont, *font;
XmHTMLWord *base_obj;
Cardinal x_pos, y_pos, x_start, y_start;
int i, k, sw, e_space = 0, word_start, word_width;
int lineheight = 0, p_height = 0;
Boolean have_object = False, first_line = True, done = False;
Boolean in_line = True, only_img = True;
Boolean need_baseline_adjustment = False;
int skip_id = -1, left, right, width, height;
int min_box_width = 0, max_box_width = 0, max_box_height;
/* initial offsets */
left = box->left;
right = box->right;
x_start = left;
x_pos = x_start;
y_pos = box->y + box->tmargin;
width = box->width;
height = box->height;
_XmHTMLDebug(5, ("layout.c: ComputeTextLayout, left = %i, right = %i, "
"width = %i, height = %i\n", left, right, width, height));
basefont = font = words[nstart]->font;
/* interword spacing */
e_space = sw = font->isp;
had_break = False;
/*****
* Proper baseline continuation of lines consisting of words with different
* properties (font, fontstyle, images, form members or anchors) require us
* to check if we are still on the same line. If we are, we use the baseline
* object of that line. If we are on a new line, we take the first word of
* this line as the baseline object.
*****/
if(!baseline_obj)
base_obj = words[nstart];
else
base_obj = (last_text_line == line ? baseline_obj : words[nstart]);
/* lineheight always comes from the current baseline object */
max_box_height = lineheight = base_obj->height;
word_start = nstart;
/*****
* Text layout:
* we keep walking words until we are about to exceed the available
* linewidth. When we are composing a line in this way, we keep track
* of the highest word (which will define the maximum lineheight).
* If a linefeed needs to be inserted, the lineheight is added to
* every word for a line. We then move to the next line (updating the
* vertical offset as we do) and the whole process repeats itself.
*****/
for(i = nstart; i < *nwords; i++)
{
/* skip everything if this is a newline */
if(words[i]->type == OBJ_BLOCK)
goto newline;
/*****
* We must flow text around a left-aligned image. First finish the
* the current line, then adjust the left margin and available
* linewidth and the height we should use.
* We can only honor this attribute if the width of this image is
* less than the available width.
* Multiple left/right aligned images aren't supported (yet).
*****/
else if(words[i]->type == OBJ_IMG)
{
if(words[i]->image->align == XmHALIGN_LEFT ||
words[i]->image->align == XmHALIGN_RIGHT)
{
if(skip_id == -1 && words[i]->width < width)
{
skip_id = i;
/* we are already busy with a line, finish it first */
if(in_line)
continue;
/* start of a line, just proceed */
}
}
}
else
only_img = False;
/* Non-text objects use a different approach of vertical alignment */
if(words[i]->type != OBJ_TEXT)
need_baseline_adjustment = True;
in_line = True; /* we are busy with a line of text */
had_break = False;
/* get new space width if font changes */
if(font != words[i]->font)
{
font = words[i]->font;
sw = font->isp; /* new interword spacing */
/*****
* If this font is larger than the current font it will become
* the baseline font for non-text objects.
*****/
if(font->lineheight > basefont->lineheight)
basefont = font;
}
/*****
* Sigh, need to check if we may break words before we do the
* check on current line width: if the current word doesn't have
* a trailing space, walk all words which don't have a leading
* and trailing space as well and end if we encounter the first word
* which *does* have a trailing space. We then use the total width
* of this word to check against available line width.
*****/
if(words[i]->type == OBJ_TEXT &&
!(words[i]->posbits & TEXT_SPACE_TRAIL) &&
i+1 < *nwords && !(words[i+1]->posbits & TEXT_SPACE_LEAD))
{
int j = i+1;
word_width = words[i]->width;
while(j < *nwords)
{
#if 0
/* don't carry this along linebreaks or series of images */
if(words[j]->type == OBJ_BLOCK ||
(words[j]->type == OBJ_IMG &&
word_width + x_pos + e_space > right))
break;
#endif
if(!(words[j]->posbits & TEXT_SPACE_LEAD))
word_width += words[j]->width;
/* see if this word has a trail space and the next a leading */
if(!(words[j]->posbits & TEXT_SPACE_TRAIL) &&
j+1 < *nwords && !(words[j+1]->posbits & TEXT_SPACE_LEAD))
j++;
else
break;
}
}
else
word_width = words[i]->width;
/* minimum box width must fit the longest non-breakable word */
if(min_box_width < word_width)
min_box_width = word_width;
_XmHTMLDebug(5, ("layout.c: ComputeTextLayout, word: %s, width = %i\n",
words[i]->word, word_width));
newline:
/* Check if we are about to exceed the viewing width */
if((i && x_pos + word_width + e_space >= right) ||
words[i]->type == OBJ_BLOCK)
{
/*****
* If this is a forced linebreak we act as this is the last
* line in a paragraph: no implicit lineheight adjustment and no
* text justification in CheckAlignment.
*****/
Boolean is_break = words[i]->type == OBJ_BLOCK;
/*****
* Previous word (which marks the end of line) can't have a
* trailing space
*****/
if(i)
words[i-1]->posbits &= ~TEXT_SPACE_TRAIL;
/*****
* set font of non-text objects to the largest font of the
* text objects (required for proper anchor drawing)
*****/
if(base_obj->type != OBJ_TEXT)
base_obj->font = basefont;
/* adjust baseline for all words on the current line */
if(need_baseline_adjustment)
AdjustBaseline(base_obj, words, word_start, i, &lineheight,
is_break, only_img);
else /* set baseline object */
for(k = word_start; k < i; k++)
words[k]->base = base_obj;
need_baseline_adjustment = False;
/* Adjust for alignment */
CheckAlignment(html, words, word_start, i, sw, width, is_break,
skip_id);
/* increment absolute height */
y_pos += lineheight;
/* increment absolute box height */
max_box_height += lineheight;
/* insert linebreak */
if(is_break)
{
/*****
* Additional vertical spacing to be inserted.
* For breaks, the line_data field specifies the no of
* newlines to be inserted. We only add this extra
* spacing if the total amount of vertical spacing
* to be inserted is larger than the current lineheight.
*****/
if(words[i]->line_data > 1)
{
int h;
h = (int)((words[i]->line_data)*base_obj->font->lineheight);
/* no negative linebreaks! */
if((h -= lineheight) < 0)
h = 0; /* no negative breaks! */
y_pos += h;
max_box_height += h;
}
/*****
* This word was a break and therefore the next word can't have
* a leading space (if it has it will mess up text
* justification).
* Fix 12/15/97-02, kdh
*****/
if(i+1 != *nwords)
words[i+1]->posbits &= ~TEXT_SPACE_LEAD;
/* just skip it */
e_space = 0;
UPDATE_WORD(words[i]);
/*****
* Next line starts on a new line, unless this is the last
* object in a line, then there is no line to start.
*****/
word_start = i == *nwords - 1 ? i : i+1;
/* baseline object is the word itself */
words[i]->base = base_obj;
_XmHTMLFullDebug(5, ("layout.c: ComputeTextLayout, linefeed "
"(explicit break) x = %d, y = %d, lineheight = %i.\n",
x_pos, y_pos, lineheight));
}
else
word_start = i; /* next word starts on a new line */
/* update maximum box width */
if(x_pos - x_start > max_box_width)
max_box_width = x_pos - x_start;
x_pos = x_start;
line++;
lineheight = words[i]->height;
base_obj = words[i];
have_object = False; /* object has been done */
first_line = False; /* no longer the first line */
in_line = False; /* done with current line */
_XmHTMLFullDebug(5, ("layout.c: ComputeTextLayout, linefeed, "
"x = %d, y = %d, lineheight = %i.\n", x_pos, y_pos,lineheight));
/* line is finished, set all margins for proper text flowing */
if(skip_id != -1)
{
/* start of text flowing */
if(height == -1)
{
/* save all info for this word */
words[skip_id]->line = line;
have_object = True;
words[skip_id]->y = y_pos +
words[skip_id]->owner->y_offset +
words[skip_id]->font->m_ascent;
/* this word sets the baseline for itself */
words[skip_id]->base = words[skip_id];
/* set appropriate margins */
if(words[skip_id]->image->align == XmHALIGN_RIGHT)
{
/* flush to the right margin */
words[skip_id]->x = right - words[skip_id]->width;
right = words[skip_id]->x;
}
else
{
/*****
* Flush to the left margin, it's the first word on
* this line, so no leading space is required.
*****/
words[skip_id]->x = x_pos;
x_pos = words[skip_id]->x + words[skip_id]->width;
left = x_pos + e_space;
}
p_height = 0;
height = words[skip_id]->height;
width = box->width - words[skip_id]->width - sw - e_space;
}
else /* increment height of this paragraph */
p_height += lineheight;
/*****
* If this is True, we are at the bottom of the image
* Restore margins and continue.
*****/
if(p_height >= height)
{
skip_id = -1;
height = -1;
left = box->left;
right = box->right;
width = box->width;
x_pos = x_start;
}
}
only_img = True;
/* ignore remainder if this is a break */
if(is_break)
continue;
}
/* Check if lineheight should change */
if(lineheight < words[i]->height)
{
int k = word_start; /* fix 07/03/97-03, kdh */
int y_offset = 0;
/*****
* We need to shift the baseline of all words already placed
* downwards.
*****/
if(words[i]->type != OBJ_TEXT)
{
/*****
* Non-text objects have a meaningless font member. We only
* need to adjust the lineheight to get correct linespacing.
* Vertical alignment for non-text objects is performed in
* the AdjustBaseline routine.
*****/
lineheight = words[i]->height;
base_obj = words[i];
}
else
{
/* save new lineheight and baseline object */
lineheight = words[i]->height;
base_obj = words[i];
/* new vertical position */
y_offset = y_pos + base_obj->font->m_ascent;
/* shift 'em down. No need to check skip_id */
for(; k < i; k++)
{
if(words[k]->type == OBJ_TEXT)
words[k]->y = y_offset + words[k]->owner->y_offset;
else /* non-text objects don't have a usefull font */
words[k]->y = y_pos + words[k]->owner->y_offset;
}
}
}
/*****
* Interword Spacing.
* 1. word starts at beginning of a line, don't space it at all.
* (box->lmargin includes indentation as well)
* 2. previous word does not have a trailing spacing:
* a. current word does have leading space, space it.
* b. current word does not have a leading space, don't space it.
* 3. previous word does have a trailing space:
* a. always space current word.
* 4. previous word does not have any spacing:
* a. current word has leading space, space it.
* b. current word does not have a leading space, don't space it.
* Note: if the previous word does not have a trailing space and the
* current word does not have a leading space, these words are
* ``glued'' together.
*****/
e_space = 0;
if(i != 0 && x_pos != left)
{
if(!(words[i-1]->posbits & TEXT_SPACE_TRAIL))
{
if(words[i]->posbits & TEXT_SPACE_LEAD)
e_space = sw;
}
else if(words[i-1]->posbits & TEXT_SPACE_TRAIL)
e_space = sw;
else if(words[i]->posbits & TEXT_SPACE_LEAD)
e_space = sw;
/* additional end-of-line spacing? */
if(e_space && words[i]->word[words[i]->len-1] == '.')
e_space += font->eol_sp;
}
/* no leading space if at left border */
else if (x_pos == left)
words[i]->posbits &= ~TEXT_SPACE_LEAD;
/*****
* save linenumber, x and y positions for this word or for
* multiple words needing to be ``glued'' together.
*****/
if(!(words[i]->posbits & TEXT_SPACE_TRAIL) &&
i+1 < *nwords && !(words[i+1]->posbits & TEXT_SPACE_LEAD) &&
words[i+1]->type == OBJ_TEXT)
#if 0
words[i+1]->type != OBJ_BLOCK)
#endif
{
/* first word must take spacing into account */
UPDATE_WORD(words[i]);
/* all other words are glued, so no spacing! */
e_space = 0;
i++;
while(i < *nwords)
{
/* don't take left/right flushed image into account */
if(i == skip_id)
continue;
/* connected word, save line, x and y pos. */
if(!(words[i]->posbits & TEXT_SPACE_LEAD))
UPDATE_WORD(words[i])
/*****
* Look ahead for leading spaces and explicit linebreaks.
* Presence of spacing and explicit linebreaks break the glue
* process.
*****/
if(!(words[i]->posbits & TEXT_SPACE_TRAIL) &&
i+1 < *nwords && !(words[i+1]->posbits & TEXT_SPACE_LEAD)
&& words[i+1]->type != OBJ_BLOCK)
i++;
else
break;
}
}
else /* save line, x and y pos for this word. */
UPDATE_WORD(words[i])
my_assert(base_obj != NULL);
}
/*****
* If we've got an image left, update it. We only have an image left if
* it's position hasn't been updated in the above loop, it will be
* positioned otherwise, but we ran out of text before we reached the
* box's height. So we need to update y_pos to move the baseline properly
* down. The box itself isn't restored as we have to check the alignment
* for this last line as well.
*****/
if(skip_id != -1)
{
if(words[skip_id]->x == 0 && words[skip_id]->y == 0)
{
UPDATE_WORD(words[skip_id]);
}
else /* update y_pos */
y_pos += height - p_height;
}
/*****
* How do we know we are at the end of this block of text objects??
* If the calling routine set last_line to True, we know we are done
* and we can consider the layout computation done.
* If last_line is False, we can be sure that other text is coming so
* we must continue layout computation on the next call to this routine.
* If we haven't finished computing the layout for all words, we were
* flowing text around an object (currently only images), and we need
* to adjust the number of words done *and* be able to restart computation
* on the next call to this routine.
*****/
if(i == *nwords)
{
if(last_line)
done = True;
else
done = False;
}
/* also adjust baseline for the last line */
if(base_obj->type != OBJ_TEXT)
base_obj->font = basefont;
AdjustBaseline(base_obj, words, word_start, i, &lineheight, done, only_img);
/* also adjust alignment for the last line */
CheckAlignment(html, words, word_start, *nwords, sw, box->width, done,
skip_id);
/* save initial vertical offset */
y_start = box->y;
/* store box offsets */
box->y = y_pos;
box->x = x_pos;
/* store final box height */
if(first_line || (box->height = box->y - y_start) == 0)
{
if(lineheight > base_obj->font->lineheight)
box->height = lineheight;
else
box->height = base_obj->font->lineheight;
}
else
box->height = max_box_height;
/* special precomputing stuff */
if(precompute)
{
/*****
* Add font descent to height of box if the last line only contained
* text.
*****/
if(!have_object)
box->height += base_obj->font->m_ascent;
/*****
* Need to add an artificial linebreak if we haven't finished the
* current chunk of data.
*****/
if(in_line || word_start != *nwords)
box->y += lineheight;
}
else if(have_object)
{
box->y += lineheight; /* objects always cause a linebreak */
had_break = True;
}
/* check maximum box width again */
if(x_pos - x_start > max_box_width)
max_box_width = x_pos - x_start;
/* store minimum and maximum box width */
box->width = max_box_width > min_box_width ? max_box_width : min_box_width;
box->min_width = min_box_width;
/* why is this happening? */
if(base_obj->type == OBJ_TEXT)
{
box->width += base_obj->font->m_lbearing;
box->min_width += base_obj->font->m_lbearing;
}
/* and check against document maximum width */
if(max_box_width > max_width)
max_width = max_box_width;
/* last text line and baseline object for this piece of text */
last_text_line = line;
baseline_obj = base_obj;
/*****
* If we haven't done a full line, we must increase linenumbering
* anyway as we've inserted a linebreak.
*****/
if(first_line)
line++;
_XmHTMLDebug(5, ("layout.c: ComputeTextLayout, returned box dimensions: "
"min_width = %i, max_width = %i\n", box->width, box->min_width));
}
/*****
* Name: AdjustBaselinePre
* Return Type: void
* Description: see AdjustBaseline
* In:
*
* Returns:
* nothing.
*****/
static void
AdjustBaselinePre(XmHTMLWord *base_obj, XmHTMLWord **words, int start, int end,
int *lineheight, Boolean last_line)
{
int i, y_offset = 0;
switch(base_obj->type)
{
case OBJ_IMG:
switch(base_obj->image->align)
{
/******
* lineheight specifies the height of the image. All adjustments
* to be made are relative to this image.
******/
case XmVALIGN_MIDDLE:
y_offset = (*lineheight - base_obj->font->m_ascent)/2.;
#if 0
y_offset = *lineheight/2;
#endif
/* adjust return value from SetText */
/* fix 07/03/97-04, kdh */
if(last_line && base_obj != words[end-1])
*lineheight = y_offset;
break;
case XmVALIGN_BASELINE:
case XmVALIGN_BOTTOM:
y_offset = *lineheight ; /* + base_obj->font->m_ascent; */
*lineheight += 0.5*base_obj->font->m_ascent;
break;
case XmVALIGN_TOP:
default:
y_offset = -base_obj->font->m_ascent;
break;
}
break;
case OBJ_FORM:
/* fix 07/04/97-01, kdh */
/* form elements are always aligned in the middle */
#if 0
y_offset = 0.5*(*lineheight + base_obj->font->m_ascent);
#endif
y_offset = *lineheight/2;
/* But they move the baseline down */
*lineheight += base_obj->font->m_ascent/2;
break;
default:
/* everything is already at baseline */
break;
}
/* Now adjust the baseline offset for every word on this line. */
if(y_offset)
{
for(i = start; i < end; i++)
{
/* only move text objects */
if(words[i]->type == OBJ_TEXT)
words[i]->y += y_offset;
}
}
}
/*****
* Name: ComputeTextLayoutPre
* Return Type: void
* Description: main text layout engine for preformatted text.
* In:
* html: XmHTMLWidget id;
* box: bounding box to be used for computing text layout;
* words: array of words to be laid out;
* nstart: starting idx;
* nwords: ending idx, can be updated upon return;
* last_line: indicates that this routine is called for the the last line in
* a paragraph.
* Returns:
* nothing, but all words between start and end now have a screen position
* and a line number.
*****/
static void
ComputeTextLayoutPre(XmHTMLWidget html, PositionBox *box, XmHTMLWord **words,
int nstart, int *nwords, Boolean last_line)
{
XmHTMLfont *basefont, *font;
XmHTMLWord *base_obj;
Cardinal x_pos, y_pos, y_start;
int i, word_start;
int lineheight = 0, y_offset, p_height = 0;
Boolean have_object = False, first_line = True, done = False;
int max_box_width = 0;
/* initial starting point */
x_pos = box->left;
y_pos = box->y;
/*****
* Baseline stuff. Always initialize to the first word of this para.
*****/
base_obj = words[0];
basefont = font = words[0]->font;
word_start = 0;
y_offset = basefont->m_ascent;
/* initial lineheight equals height of the baseline object */
lineheight = base_obj->height;
/*****
* Text layout:
* we keep walking words until we are about to insert a newline.
* Newlines are marked by words width a non-zero spacing field.
* When we are composing a line in this way, we keep track
* of the highest word (which will define the maximum lineheight).
* If a linefeed needs to be inserted, the lineheight is added to
* every word for a line. We then move to the next line (updating the
* vertical offset as we do) and the whole process repeats itself.
*****/
for(i = nstart; i < *nwords && !done; i++)
{
/* compute new line spacing if font changes */
if(font != words[i]->font)
{
font = words[i]->font;
/*****
* If this font is larger than the current font it will become
* the baseline font for non-text objects.
* Must use maxbounds fontheight for fixed width fonts.
*****/
if(font->lineheight > basefont->lineheight)
{
basefont = font;
y_offset = basefont->m_ascent;
lineheight = basefont->lineheight;
}
}
/* check maximum lineheight */
if(lineheight < words[i]->height)
{
/* this becomes the new baseline object */
base_obj = words[i];
/*****
* Shift all words already placed on this line down. Don't do
* it for the first line in a paragraph and if this word is
* actually an image as this is already taken into account
* (paragraph spacing)
******/
if(!first_line && words[i]->type != OBJ_IMG)
{
/* fix 07/03/97-03, kdh */
int k = word_start; /* idx of first word on this line */
/* new vertical position of all words in the current line */
y_pos += (words[i]->height - lineheight);
/* shift 'em down */
for(; k < i; k++)
{
words[k]->y = y_pos;
words[k]->base = base_obj;
}
}
/* Store new lineheight */
lineheight = words[i]->height;
}
/*****
* save line, x and y pos for this word.
* We don't do any interword spacing for <PRE> objects, they
* already have it. Images and forms need to have the font ascent
* substracted to get a proper vertical alignment.
*****/
words[i]->line = line; /* fix 04/26/97-01, kdh */
words[i]->x = x_pos;
words[i]->base = base_obj;
words[i]->y = y_pos + words[i]->owner->y_offset +
words[i]->font->m_ascent;
/*****
* Required for proper baseline adjustment of the last line in this
* paragraph: non-text objects move the baseline downward.
******/
if(words[i]->type != OBJ_TEXT)
have_object = True;
x_pos += words[i]->width;
/* we must insert a newline */
if(words[i]->spacing != 0)
{
int y_shift = lineheight;
/*****
* Adjust font of non-text objects to the largest font of the
* text objects (required for proper anchor drawing)
*****/
if(base_obj->type != OBJ_TEXT)
base_obj->font = basefont;
/*****
* Adjust baseline for all words on the current line.
*****/
AdjustBaselinePre(base_obj, words, word_start, i+1, &y_shift,
False);
/*****
* If this is a textblock, set vertical adjustment to the
* no of newlines to add.
*****/
if(base_obj->type == OBJ_TEXT)
y_shift = (((int)words[i]->spacing) * y_offset);
y_pos += y_shift;
/* increment height of this paragraph */
p_height += y_shift;
/* Adjust for alignment */
CheckAlignment(html, words, word_start, i, -1, box->width, False,
-1);
if(x_pos > max_box_width)
max_box_width = x_pos;
x_pos = box->left;
line++;
word_start = i+1; /* next word starts on a new line */
base_obj = words[i];
basefont = base_obj->font;
y_offset = basefont->m_ascent;
lineheight = basefont->lineheight;
have_object = False;
first_line = False;
_XmHTMLFullDebug(5, ("layout.c: ComputeTextLayoutPre, linefeed, "
"x = %d, y = %d.\n", x_pos, y_pos));
if(box->height != -1 && p_height >= box->height)
done = True;
}
}
/* sanity, can be true for short <pre></pre> paragraphs. */
if(word_start == *nwords)
word_start--;
if(i == *nwords)
{
if(last_line)
done = True;
else
done = False;
}
else if(done)
{
*nwords = i;
done = False;
}
/* also adjust baseline for the last line */
AdjustBaselinePre(base_obj, words,
(word_start == nstart ? nstart : word_start - 1), i, &lineheight, done);
/* also adjust alignment for the last line */
CheckAlignment(html, words, word_start, *nwords, -1, box->width, done, -1);
y_start = box->y;
/* non-text objects (images & form members) move the baseline downward */
if(have_object)
{
box->y = y_pos + lineheight;
had_break = True;
}
else
box->y = y_pos;
box->x = x_pos;
/* store final box height */
if((box->height = box->y - y_start) == 0)
box->height = lineheight;
/* check maximum box width again */
if(x_pos > max_box_width)
max_box_width = x_pos;
/*
* store box width. Minimum width is same as maximum width for
* preformatted text.
*/
box->width = box->min_width = max_box_width;
/* and check against document maximum width */
if(max_box_width > max_width)
max_width = max_box_width;
/* make sure we have a linefeed */
if(first_line)
line++;
/* all done */
}
/*****
* Name: SetApplet
* Return Type: inserts a dummy applet marker.
* Description:
* In:
* html: XmHTMLWidget id;
* box: current minipage;
* data: element data.
* Returns:
* nothing.
*****/
static void
SetApplet(XmHTMLWidget html, PositionBox *box, XmHTMLObjectTableElement data)
{
XmHTMLfont *font = (data->font ? data->font : HTML_ATTR(default_font));
_XmHTMLDebug(5, ("layout.c, SetApplet: initial box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetApplet: initial box dimensions: %i, %i\n",
box->width, box->height));
data->x = box->x;
data->y = box->y + font->m_ascent;
data->height = font->lineheight;
data->line = line;
box->y += data->height;
_XmHTMLDebug(5, ("layout.c, SetApplet: updated box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetApplet: updated box dimensions: %i, %i\n",
box->width, box->height));
}
/*****
* Name: SetBlock
* Return Type: void
* Description: inserts a block marker (which does have a height)
* In:
* html: XmHTMLWidget id;
* box: current minipage;
* data: element data.
* Returns:
* nothing.
*****/
static void
SetBlock(XmHTMLWidget html, PositionBox *box, XmHTMLObjectTableElement data)
{
_XmHTMLDebug(5, ("layout.c, SetBlock: initial box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetBlock: initial box dimensions: %i, %i\n",
box->width, box->height));
data->x = box->x;
data->y = box->y + data->font->m_ascent;
data->height = 0;
data->line = line;
_XmHTMLDebug(5, ("layout.c, SetBlock: updated box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetBlock: updated box dimensions: %i, %i\n",
box->width, box->height));
}
/*****
* Name: SetNone
* Return Type: void
* Description: inserts a dummy marker (which doesn't have a height)
* In:
* html: XmHTMLWidget id;
* box: current minipage;
* data: element data.
* Returns:
* nothing.
*****/
static void
SetNone(XmHTMLWidget html, PositionBox *box, XmHTMLObjectTableElement data)
{
_XmHTMLDebug(5, ("layout.c, SetNone: initial box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetNone: initial box dimensions: %i, %i\n",
box->width, box->height));
data->x = box->x;
data->y = box->y;
data->height = 0;
data->line = line;
_XmHTMLDebug(5, ("layout.c, SetNone: updated box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetNone: updated box dimensions: %i, %i\n",
box->width, box->height));
}
/*****
* Name: SetRule
* Return Type: computes the offsets & position of a horizontal rule.
* Description:
* In:
* html: XmHTMLWidget id;
* box: current minipage;
* data: element data.
* Returns:
* nothing.
*****/
static void
SetRule(XmHTMLWidget html, PositionBox *box, XmHTMLObjectTableElement data)
{
int width = box->width;
int left = box->lmargin;
int y_offset;
_XmHTMLDebug(5, ("layout.c, SetRule: initial box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetRule: initial box dimensions: %i, %i\n",
box->width, box->height));
/* horizontal offset */
box->x = left + data->ident;
/* See if we have a width specification */
if(data->len != 0)
{
if(data->len < 0) /* % spec */
width *= (float)(-1*data->len/100.);
else /* pixel spec, cut if wider than available */
width = (data->len > width ? width : data->len);
/* alignment is only honored if there is a width spec */
switch(data->halign)
{
case XmHALIGN_RIGHT:
box->x = left + box->width - width;
break;
case XmHALIGN_CENTER:
box->x = left + (box->width - width - left)/2;
default: /* shutup compiler */
break;
}
}
/* Save position and width */
data->x = box->x;
data->line = line;
data->width = width;
/* Rules always reset to the x-position to the left margin */
box->x = left;
/*****
* Rules are always centered between lines
*
* ---> |--
* ---> | } line 1 ---| rule upper side ---|
* ---> |-- | | box height
* ---> |-- | |
* ---> | } line 2 ---| rule lower side ---|
* ---> |--
*
* Baseline of line 1 is given by box->y.
*****/
/*****
* Linefeeds in rules are divided accross the rule: half above and
* half below.
*****/
if(data->linefeed)
y_offset = data->linefeed/2;
else
y_offset = data->font->height/2;
data->y = box->y + y_offset;
/* take height of rule into account as well */
y_offset += data->height/2;
/* full height of the box */
box->height = 2*y_offset;
box->y += box->height;
/* a line above and one below */
line += 2;
_XmHTMLDebug(5, ("layout.c, SetRule: updated box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetRule: updated box dimensions: %i, %i\n",
box->width, box->height));
}
/*****
* Name: SetBullet
* Return Type: void
* Description: computes the position & offsets for a list leader (can be a
* bullet or number).
* In:
* html: XmHTMLWidget id;
* box: current minipage;
* data: element data.
* Returns:
* nothing. Upon return the current element has it's position set.
* Note:
* Bullets always carry indentation within them. This indentation is the
* *total* indentation from the left margin and therefore the x-position
* is computed using the left margin, and not the left position. As we
* want all bullets to be right aligned, the x-position of a bullet is
* computed as the left margin *plus* any indentation. When being rendered,
* the real position is the computed position *minus* the width of the bullet,
* making them right-aligned.
*****/
static void
SetBullet(XmHTMLWidget html, PositionBox *box, XmHTMLObjectTableElement data)
{
_XmHTMLDebug(5, ("layout.c, SetBullet: initial box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetBullet: initial box dimensions: %i, %i\n",
box->width, box->height));
/* save vertical position */
data->y = box->y + data->font->m_ascent;
/* linefeed if not at left margin */
if(box->x != box->lmargin)
line++;
box->y += data->linefeed;
box->x = box->lmargin + data->ident;
/* we have a left offset */
box->left = box->x;
data->x = box->x;
data->line = line;
_XmHTMLDebug(5, ("layout.c, SetBullet: updated box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetBullet: updated box dimensions: %i, %i\n",
box->width, box->height));
}
/*****
* Name: SetBreak
* Return Type: void
* Description: inserts a linebreak and increments the vertical offset
* In:
* html: XmHTMLWidget id;
* box: current minipage;
* data: element data.
* Returns:
* nothing.
*****/
static void
SetBreak(XmHTMLWidget html, PositionBox *box, XmHTMLObjectTableElement data)
{
int linefeed = data->linefeed;
int dh;
_XmHTMLDebug(5, ("layout.c, SetBreak: initial box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetBreak: initial box dimensions: %i, %i\n",
box->width, box->height));
/* position of this break */
data->y = box->y + data->font->m_ascent;
data->x = box->x;
/* check if this is a real linebreak or just a margin reset */
if(linefeed)
{
/* if we already had a linefeed, we can substract one */
if(had_break && baseline_obj)
{
linefeed -= baseline_obj->font->lineheight;
had_break = False;
}
/* no negative linefeeds!! */
if(linefeed > 0)
{
line++;
box->y += data->linefeed;
/* update box height */
box->height = linefeed;
}
}
/* reset margin */
box->x = box->lmargin + data->ident;
box->left = box->x;
data->line = line;
/* height of this linefeed */
if((dh = box->y - data->y) < 0) /* happens if we don't have a linefeed */
data->height = 0;
else
data->height = dh;
_XmHTMLDebug(5, ("layout.c, SetBreak: updated box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(5, ("layout.c, SetBreak: updated box dimensions: %i, %i\n",
box->width, box->height));
}
/*****
* Name:
* Return Type:
* Description:
* In:
*
* Returns:
*
*****/
static XmHTMLObjectTableElement
SetTable(XmHTMLWidget html, PositionBox *box, XmHTMLObjectTableElement data)
{
XmHTMLTable *table;
TableRow *row = NULL;
TableCell *cell = NULL;
PositionBox **boxes = NULL; /* 2D position matrix */
int *rows = NULL; /* maximum row heights */
int *min_cols = NULL; /* minimum width column dimensions */
int *max_cols = NULL; /* maximum width column dimensions */
int i, j, k, idx;
int max_twidth = 0, min_twidth = 0, max_theight = 0;
int twidth, ncols, nrows, hpad, vpad, hspace, vspace, bwidth;
int full_twidth, usable_twidth;
Cardinal x_pos, y_pos, x_start;
int save_line, max_line;
Boolean needs_height_adjustment = False;
static int depth;
/* pick up table data */
table = data->table;
/*****
* The first table in a stack of tables contains all data for all
* table childs it contains. The first table child is the master
* table itself. So when a table doesn't have a child table it *is*
* a child table itself and thus we should add the left offset
* to the initial horizontal position.
*****/
if(table->childs)
{
table = &(table->childs[0]);
x_start = box->x;
}
else
x_start = box->left;
/* table position */
data->x = x_start;
data->y = box->y;
/* reserve room for outer table border */
x_start += table->props->border;
_XmHTMLDebug(17, ("layout.c: ------ Table Layout Starts -----\n"));
_XmHTMLDebug(17, ("layout.c: table starts near line %i and ends at line "
"%i in input).\n", table->start->object->line,
table->end->object->line));
_XmHTMLDebug(17, ("layout.c: initial box position: %i, %i\n",
box->x, box->y));
_XmHTMLDebug(17, ("layout.c: initial box dimensions: %i, %i\n",
box->width, box->height));
_XmHTMLDebug(17, ("layout.c: table has %i rows and %i columns.\n",
table->nrows, table->ncols));
_XmHTMLDebug(17, ("layout.c: table depth: %i\n", depth + 1));
depth++;
/* compute correct indentation */
if(box->x > box->lmargin + data->ident)
i = box->x;
else
i = box->lmargin + data->ident;
/*****
* Set maximum table width.
* Note that we ignore any percentage width if the width of the given
* box is negative: this can happen when we are performing nested
* layout calculations for tables (or cells) which don't have a set width.
* Also note that this can only happen when *precomputing* the table
* layout of the parent table (or cell), and that's why we don't
* check the validity of the box width in the second part of this
* conditional: if the given width is negative, it will always be
* -1 (indicating an unknown table width).
*****/
if(table->width > 0 || (table->width < 0 && box->width > 0))
{
/* width < 0 : percentage width */
if(table->width < 0)
twidth = (int)((-table->width * box->width)/100.);
else
twidth = table->width;
}
else
{
/* if this is a child table, assume a 100% width */
if(!table->childs)
twidth = box->width;
else
{
/* parent table, use whatever we can get our hands on */
if((twidth = box->width - i) <= 0)
twidth = -1;
}
}
_XmHTMLDebug(17, ("layout.c: initial table width: %i, ident: %i\n",
twidth, data->ident));
/* save current line number count */
save_line = line;
/* total no of rows and columns this table is made up of */
nrows = table->nrows;
ncols = table->ncols;
if(ncols == 0 || nrows == 0)
{
_XmHTMLWarning(__WFUNC__(html, "SetTable"), XMHTML_MSG_80);
return(table->end);
}
/*****
* Sanity Check: check all cells in search of a rowspan attribute. If
* we detect a rowspan in the *last* cell of a row, we must add a bogus
* cell to this row. If we don't do this, any cells falling in this row
* will be skipped, causing text to disappear (at the least, in the worst
* case it will cause a crash 'cause any in the skipped text anchors
* are never detected).
*****/
for(i = 0; i < table->nrows; i++)
{
row = &(table->rows[i]);
for(j = 0; j < row->ncells; j++)
{
if(row->cells[j].rowspan > 1 && (j+1) == ncols)
ncols++;
}
}
/* allocate a box for each row in this table */
boxes = (PositionBox**)calloc(nrows, sizeof(PositionBox*));
/* allocate a range of boxes spanning all columns */
for(i = 0; i < nrows; i++)
boxes[i] = (PositionBox*)calloc(ncols, sizeof(PositionBox));
/*****
* Step One: check if we have cells spanning multiple rows or columns.
* We always assume the table is rectangular: each row has the same
* amount of columns. If a cell is really being used, it will have a
* positive box index. A box with a negative index value means that
* this is a bogus cell spanned by it's neighbouring cells (which can be
* in another row).
*****/
_XmHTMLDebug(17, ("Checking for spanned cells\n"));
for(i = 0; i < nrows; i++)
{
row = &(table->rows[i]);
for(j = 0, idx = 0; j < ncols && idx < row->ncells; j++)
{
/* can happen when a cell spans multiple rows */
if(boxes[i][j].idx == -1)
continue;
cell = &(row->cells[idx]);
/* adjust col & rowspan if not set or incorrect */
if(cell->colspan <= 0 || cell->colspan > ncols)
cell->colspan = ncols;
if(cell->rowspan <= 0 || cell->rowspan > nrows)
cell->rowspan = nrows;
boxes[i][j].idx = idx;
boxes[i][j].colspan = cell->colspan;
boxes[i][j].rowspan = cell->rowspan;
if(cell->colspan != 1)
{
_XmHTMLDebug(17, ("Cell(%i,%i,%i): horizontal span leader, "
"(%i columns)\n", depth, i, j, cell->colspan));
/* subsequent cells are spanned by this cell */
for(k = 1; (j + k) < ncols && k < cell->colspan; k++)
{
_XmHTMLDebug(17, ("Cell(%i,%i,%i): horizontal span\n",
depth, i, j+k));
boxes[i][j + k].idx = -1;
boxes[i][j + k].colspan = - 1;
}
/* update cell counter to last spanned cell */
j += (k-1);
}
if(cell->rowspan != 1)
{
_XmHTMLDebug(17, ("Cell(%i,%i,%i): vertical span leader, "
"(%i rows)\n", depth, i, j, cell->rowspan));
/* subsequent rows are spanned by this cell */
for(k = 1; (i + k) < nrows && k < cell->rowspan; k++)
{
_XmHTMLDebug(17, ("Cell(%i,%i,%i): vertical span\n",
depth, i+k, j));
boxes[i + k][j].idx = -1;
boxes[i + k][j].rowspan = - 1;
}
}
#ifdef DEBUG
if(cell->rowspan == 1 && cell->colspan == 1)
{
_XmHTMLDebug(17, ("Cell(%i,%i,%i): not spanned\n",
depth, i, j));
}
#endif
idx++;
}
/* can happen for empty rows */
if(j != ncols)
{
for(; j < ncols; j++)
{
boxes[i][j].idx = -1;
_XmHTMLDebug(17, ("Cell(%i,%i,%i): unknown spanning\n",
depth, i, j));
}
}
}
/*****
* Step Two: compute minimum and maximum width of each cell.
* All precomputation is done without *any* margins, they will be
* added later.
*****/
_XmHTMLDebug(17, ("layout.c: ------ Table Precomputation Starts -----\n"));
_XmHTMLDebug(17, ("Cell(table depth, row, column)\n"));
_XmHTMLDebug(17, ("layout.c: Precomputing table dimensions:\n"));
for(i = 0; i < nrows; i++)
{
row = &(table->rows[i]);
/* compute desired cell dimensions */
for(j = 0; j < ncols; j++)
{
/* skip if this is a spanned cell */
if((idx = boxes[i][j].idx) != -1)
cell = &(row->cells[idx]);
else
{
_XmHTMLDebug(17, ("Cell(%i,%i,%i): spanned\n", depth, i, j));
continue;
}
/*****
* Offsets unused since these do not apply to the actual
* cell contents
*****/
/* do we have a width? */
if(cell->width)
{
/* is it relative to table width? */
if(cell->width < 0)
{
/* yes it is, do we have a table width? */
if(twidth != -1)
boxes[i][j].width = (-cell->width * twidth)/100.;
else
boxes[i][j].width = -1;
}
else /* absolute cell width */
boxes[i][j].width = cell->width;
_XmHTMLDebug(17, ("layout.c: Cell(%i,%i,%i) has initial width "
"%i\n", depth, i, j, boxes[i][j].width));
}
else
boxes[i][j].width = -1;
boxes[i][j].lmargin = 0;
boxes[i][j].rmargin = boxes[i][j].width;
boxes[i][j].min_width = boxes[i][j].width;
/*****
* Do we have a cell height? If so, it must be an absolute
* number. Can't do anything with relative heights.
*****/
boxes[i][j].height = cell->height > 0 ? cell->height : -1;
/*****
* Precompute the required dimensions for this cell.
* Upon return, the PositionBox will have updated values for
* width, min_width and height.
*****/
PreComputeTableLayout(html, &boxes[i][j], cell->start,
cell->end);
_XmHTMLDebug(17, ("Cell(%i,%i,%i): width = %i, min_width = %i, "
"height = %i %s\n", depth, i, j, boxes[i][j].width,
boxes[i][j].min_width, boxes[i][j].height,
cell->props->nowrap ? "(nowrap enabled)" : ""));
}
}
/*****
* Step Three: compute minimum and maximum row widths.
* The table layout is contained in the PositionBox matrix.
*****/
/* allocate room for minimum row dimensions */
rows = (int*)malloc(nrows * sizeof(int));
/* allocate room to store min & max column dimensions */
min_cols = (int*)malloc(ncols * sizeof(int));
max_cols = (int*)malloc(ncols * sizeof(int));
/* initialize to unknown sizes */
rows = (int*)memset(rows, -1, nrows * sizeof(int));
min_cols = (int*)memset(min_cols, -1, ncols * sizeof(int));
max_cols = (int*)memset(max_cols, -1, ncols * sizeof(int));
/*****
* Compute raw (content only, no margins, padding or border taken
* into account) minimum & maximum column widths and row heights
*****/
for(i = 0; i < nrows; i++)
{
int row_max_height = 0;
/* get current row */
row = &(table->rows[i]);
/* walk all cells in this row */
for(j = 0; j < ncols; j++)
{
/* skip if this is a spanned cell */
if((idx = boxes[i][j].idx) != -1)
cell = &(row->cells[idx]);
else
continue;
/*****
* If this cell spans multiple columns, check if the sum of the
* next columns can accomodate the minimum width required for
* displaying the contents of this cell.
* If it can, skip this cell (ensures all columns do get their
* minimum width, looks a lot nicer).
*****/
if(cell->colspan != 1)
{
int z, cwmin = 0;
for(z = j; z < ncols && z < (j + cell->colspan); z++)
{
cwmin += min_cols[z];
}
/*****
* Get maximum row height before checking, we don't want
* this row to have a zero height if it spans the entire
* table!
*****/
if(row_max_height < boxes[i][j].height)
row_max_height = boxes[i][j].height;
if(boxes[i][j].min_width < cwmin)
continue;
}
/*****
* Get largest minimum column width.
* If nowrap is in effect for this cell, compare against
* maximum cell width.
*****/
if(cell->props->nowrap)
{
if(min_cols[j] < boxes[i][j].width)
min_cols[j] = boxes[i][j].width;
}
else
{
if(min_cols[j] < boxes[i][j].min_width)
min_cols[j] = boxes[i][j].min_width;
}
/* Get smallest maximum column width */
if(max_cols[j] < boxes[i][j].width)
max_cols[j] = boxes[i][j].width;
/* get maximum row height */
if(row_max_height < boxes[i][j].height)
row_max_height = boxes[i][j].height;
}
/* store height for this row */
rows[i] = row_max_height;
/* and update table height */
max_theight += row_max_height;
}
/*****
* Compute room available for cell width adjustment, which is given by
* the set table width (if any) minus all spacing.
*
* Spacing: external cell spacing for left, right, top and bottom (border to
* border). This represents the cellspacing table attribute.
*
* Vertical Spacing Rules
* ---------------------
* First row:
* - full top spacing
* - half bottom spacing;
* Last row:
* - half top spacing;
* - full bottom spacing;
* Other rows:
* - half top spacing;
* - half bottom spacing;
*
* Horizontal Spacing Rules
* ------------------------
* First column:
* - full left spacing;
* - half right spacing;
* Last column:
* - half left spacing;
* - full right spacing;
* Other columns:
* - half left spacing;
* - half right spacing;
*
* Padding: internal cell spacing for left, right, top and bottom (text to
* border). This represents the cellpadding table attribute.
* Rule: Add twice for each cell (left & right, top & bottom).
*
* Border: outer table and inner cell border width.
* Use of innercell borders is influenced by the presence of cellspacing:
* if cellspacing is present, inner cell borders aren't used since they
* will be overlapped by the cellspacing.
*
* Vertical Border Rules
* ---------------------
* First row:
* - full top borderwidth;
* - single bottom borderwidth;
* Last Row:
* - single top borderwidth;
* - full bottom borderwidth;
* Other Rows, no vertical cellspacing:
* - single top borderwidth;
* - single bottom borderwidth;
* Otherwise:
* - zero top borderwidth;
* - zero bottom borderwidth;
*
* Horizontal Border Rules
* -----------------------
* First Column:
* - full left borderwidth;
* - single right borderwidth;
* Last Column:
* - single left borderwidth;
* - full right borderwidth;
* Other Columns, no horizontal cellspacing:
* - single left borderwidth;
* - single right borderwidth;
* Otherwise:
* - zero left borderwidth;
* - zero right borderwidth;
*****/
hspace = table->hmargin;
vspace = table->vmargin;
hpad = table->hpadding;
vpad = table->vpadding;
max_twidth = 0;
min_twidth = 0;
/* inner cell spacing */
bwidth = table->props->border > 0 ? 1 : 0;
/* maximum & minimum table width, no margins */
for(i = 0; i < ncols; i++)
{
max_twidth += max_cols[i];
min_twidth += min_cols[i];
}
/* almost impossible but check anyway */
if(max_twidth < 1)
{
_XmHTMLWarning(__WFUNC__(html, "SetTable"),
"Overall maximum table width equal to or less than zero!\n");
max_twidth = 1;
}
if(min_twidth < 1)
{
_XmHTMLWarning(__WFUNC__(html, "SetTable"),
"Overall minimum table width equal to or less than zero!\n");
min_twidth = 1;
}
/* add inner cell border */
hspace += bwidth;
/* Add space taken up by all spacing and inner cell borders */
i = (ncols * (2*hpad + hspace)) + hspace;
/*****
* left & right *table* borders use full border width (and substracts
* one for the left & right most cells which was added above)
*****/
i += 2*(table->props->border - bwidth);
/*****
* Protect against underflow: set table width too small to include
* all requested spacing
*****/
if((usable_twidth = twidth - i) < min_twidth)
usable_twidth = min_twidth; /* use minimum table width */
#ifdef DEBUG
_XmHTMLDebug(17, ("layout.c: Computed table dimensions:\n"));
_XmHTMLDebug(17, ("layout.c: twidth = %i\n", twidth));
_XmHTMLDebug(17, ("layout.c: usable twidth = %i\n", usable_twidth));
_XmHTMLDebug(17, ("layout.c: max_twidth = %i\n", max_twidth));
_XmHTMLDebug(17, ("layout.c: min_twidth = %i\n", min_twidth));
_XmHTMLDebug(17, ("layout.c: max_theight = %i\n", max_theight));
_XmHTMLDebug(17, ("layout.c: Column widths:\n"));
for(i = 0; i < ncols; i++)
{
_XmHTMLDebug(17, ("layout.c: column %i, min_width = %i, max_width = "
"%i\n", i, min_cols[i], max_cols[i]));
}
_XmHTMLDebug(17, ("layout.c: Row heights:\n"));
for(i = 0; i < nrows; i++)
{
_XmHTMLDebug(17, ("layout.c: row %i, height = %i\n", i, rows[i]));
}
#endif
/*****
* Step Four: compute column widths.
*****/
/*****
* case 1: minimum width equal or wider than total width
* For nested tables, twidth can be -1 if the table with wasn't set
* to an absolute number. In this case set all columns to their minimum
* width.
*****/
if(twidth == -1 || min_twidth >= usable_twidth)
{
#ifdef DEBUG
if(twidth == -1)
{
_XmHTMLDebug(17, ("layout.c: twidth unknown, using minimum "
"column widths.\n"));
twidth = min_twidth;
}
else
_XmHTMLDebug(17, ("layout.c: min_twidth > usable_twidth\n"));
#endif
if(twidth == -1)
twidth = min_twidth;
/* assign each column it's minimum width */
for(i = 0; i < ncols; i++)
max_cols[i] = min_cols[i];
/* maximum table width */
usable_twidth = max_twidth = min_twidth;
/* needs a re-evaluation of row heights */
needs_height_adjustment = True;
}
/* case 2: maximum width less than total width */
else if(max_twidth < usable_twidth)
{
_XmHTMLDebug(17, ("layout.c: max_twidth < usable_twidth\n"));
/*****
* When a table has an absolute width (table->width nonzero), we
* stretch all columns so the available width is used up
* almost entirely (roundoff errors).
*****/
if(table->width)
{
min_twidth = 0;
for(i = 0; i < ncols; i++)
{
/* compute width percentage used by this column */
float pwidth = (float)max_cols[i]/(float)max_twidth;
max_cols[i] = (int)(pwidth*usable_twidth);
min_twidth += max_cols[i];
}
_XmHTMLDebug(17, ("layout.c: %i pixels short\n",
usable_twidth - min_twidth));
/* total width has been used */
max_twidth = min_twidth = usable_twidth;
}
}
/* case 3: max width exceeds available width while min width fits.*/
else
{
int nloop = 0;
/*****
* Loop this until the table fits the available width or we
* exceed the allowed no of iterations.
*****/
while(max_twidth > usable_twidth && nloop < XmHTML_MAX_TABLE_ITERATIONS)
{
/* Difference between available space and minimum table width */
float w_diff = (float)(usable_twidth - min_twidth);
/* Difference between maximum and minimum table width */
float m_diff = (float)(max_twidth - min_twidth);
/* prevent divide by zero */
if(m_diff == 0.0)
m_diff = 1.0;
_XmHTMLDebug(17, ("layout.c: min_twidth < usable_twidth && "
"max_twidth > usable_twidth\n"));
_XmHTMLDebug(17, ("layout.c: min_twidth = %i, max_twidth = %i, "
"usable_twidth = %i\n", min_twidth, max_twidth, usable_twidth));
_XmHTMLDebug(17, ("layout.c: w_diff = %.3f, m_diff = %.3f\n",
w_diff, m_diff));
/*****
* For each column, get the difference between minimum and maximum
* column width and scale using the above differences.
*****/
max_twidth = 0;
for(i = 0; i < ncols; i++)
{
float c_diff = max_cols[i] - min_cols[i];
max_cols[i] = min_cols[i] + (int)(c_diff * (w_diff/m_diff));
/* update maximum width: add spacing */
max_twidth += max_cols[i];
_XmHTMLDebug(17, ("layout.c: Column %i, c_diff = %.3f, "
"width = %i\n", i, c_diff, max_cols[i]));
}
nloop++;
}
if(nloop == XmHTML_MAX_TABLE_ITERATIONS)
{
_XmHTMLWarning(__WFUNC__(NULL, "SetTable"),
XMHTML_MSG_79, "Table Layout", XmHTML_MAX_TABLE_ITERATIONS,
table->start->object->line);
}
usable_twidth = max_twidth;
/* needs a re-evaluation of row heights */
needs_height_adjustment = True;
}
/*****
* Step Five: recompute row heights if required.
* For a number of cells, the width will be less than the maximum cell
* width and thus lines will be broken. If we don't recompute the
* required box height, the table will overflow vertically.
*****/
if(needs_height_adjustment)
{
_XmHTMLDebug(17, ("layout.c: adjusting cell heights:\n"));
for(i = 0; i < nrows; i++)
{
int row_max_height = 0;
row = &(table->rows[i]);
for(j = 0; j < ncols; j++)
{
int row_max_width = 0;
/* skip if this is a spanned cell */
if((idx = boxes[i][j].idx) != -1)
cell = &(row->cells[idx]);
else
{
_XmHTMLDebug(17,("Cell(%i,%i,%i): spanned\n",
depth, i, j));
continue;
}
/* box to wide, will be broken */
if(boxes[i][j].width > max_cols[j] ||
boxes[i][j].height == -1 ||
boxes[i][j].width == -1)
{
/* offsets unused */
boxes[i][j].x = 0;
boxes[i][j].y = 0;
boxes[i][j].left = 0;
boxes[i][j].right = 0;
/* set margins */
boxes[i][j].lmargin = 0;
/* set right margin */
if(cell->colspan == 1)
boxes[i][j].rmargin = max_cols[j];
else
{
/* spans multiple columns, add up column widths */
int k;
boxes[i][j].rmargin = 0;
for(k = j; k < j + cell->colspan && k < ncols; k++)
boxes[i][j].rmargin += max_cols[k];
}
boxes[i][j].width = boxes[i][j].rmargin -
boxes[i][j].lmargin;
boxes[i][j].height= -1;
PreComputeTableLayout(html, &boxes[i][j], cell->start,
cell->end);
_XmHTMLDebug(17,("Cell(%i,%i,%i): "
"width = %i, height = %i\n", depth, i, j,
boxes[i][j].width, boxes[i][j].height));
}
else
_XmHTMLDebug(17, ("Cell(%i,%i,%i): no change\n",
depth, i, j));
/* update maximum row width */
row_max_width += boxes[i][j].width;
/* update maximum row height, taking spacing into account */
if(cell->rowspan == 1 && row_max_height < boxes[i][j].height)
row_max_height = boxes[i][j].height;
/*****
* Update table width if we're exceeding it, which should
* not be really happening as the cell width will only
* decrease: each cell already has it's minimum width.
*****/
if(max_twidth < row_max_width)
{
_XmHTMLDebug(17, ("layout.c: updating maximum table "
"width from %i to %i\n", max_twidth, row_max_width));
max_twidth = row_max_width;
}
}
rows[i] = row_max_height;
}
#ifdef DEBUG
for(i = 0; i < nrows; i++)
{
_XmHTMLDebug(17, ("layout.c: row %i, height = %i\n", i, rows[i]));
}
#endif
}
/*****
* Step Six: adjust row heights to account for rowspan attributes.
*
* Each (filled) cell has it's dimensions set. We now need to adjust
* the row heights to properly account for any rowspan attributes set.
* The way we do this is as follows: for each row, check if it contains
* a cell with the rowspan attribute set and get the one which spans the
* most rows. When found, compute the total height of all spanned rows
* and then compute the difference between this height and the height of
* the spanning cell. If this difference is negative, we can keep the
* current row heights. If it's positive however, we distribute this
* difference evenly accross the height of all spanned rows.
*****/
if(needs_height_adjustment)
{
_XmHTMLDebug(17, ("layout.c: rowspan in effect, re-adjusting row "
"heights :\n"));
for(i = 0; i < nrows; i++)
{
int max_span = 1;
int span_cell = -1;
row = &(table->rows[i]);
for(j = 0; j < ncols; j++)
{
/* skip if this is a spanned cell */
if((idx = boxes[i][j].idx) != -1)
cell = &(row->cells[idx]);
else
continue;
if(cell->rowspan > max_span)
{
max_span = cell->rowspan;
span_cell = j;
}
}
if(span_cell != -1 && span_cell < ncols)
{
/* height of spanning cell */
int max_h = boxes[i][span_cell].height;
/* compute height of all spanned rows */
int span_h = 0;
for(k = i; k < nrows && k < i + max_span; k++)
span_h += rows[k];
/* spanned height greater than occupied height, adjust rows */
if((max_h - span_h) > 0)
{
int extra = (max_h - span_h)/(float)max_span;
for(k = i; k < nrows && k < i + max_span; k++)
rows[k] += extra;
}
}
}
#ifdef DEBUG
for(i = 0; i < nrows; i++)
{
_XmHTMLDebug(17, ("layout.c: row %i, height = %i\n", i, rows[i]));
}
#endif
}
_XmHTMLDebug(17, ("layout.c: ------ Table Precomputation End -----\n"));
/*****
* Step Seven: assign box dimensions for each cell.
*****/
_XmHTMLDebug(17, ("layout.c: Final Cell Dimensions:\n"));
/*****
* Compute *full* table width. Full table width takes all spacing into
* account. Spacing is added as follows:
*****/
hspace = table->hmargin;
vspace = table->vmargin;
hpad = table->hpadding;
vpad = table->vpadding;
/* inner cell spacing */
bwidth = table->props->border > 0 ? 1 : 0;
/* Add space taken up by all spacing */
hspace += bwidth;
i = (ncols * (2*hpad + hspace)) + hspace;
/* Correct for outer border */
i += 2*(table->props->border - bwidth);
full_twidth = max_twidth + i;
/* reset */
hspace = table->hmargin;
#ifdef DEBUG
_XmHTMLDebug(17, ("layout.c: Computed table dimensions:\n"));
_XmHTMLDebug(17, ("layout.c: twidth = %i\n", twidth));
_XmHTMLDebug(17, ("layout.c: usable twidth = %i\n", usable_twidth));
_XmHTMLDebug(17, ("layout.c: max_twidth = %i\n", max_twidth));
_XmHTMLDebug(17, ("layout.c: cell spacing = %i\n", table->hmargin));
_XmHTMLDebug(17, ("layout.c: cell padding = %i\n", table->hpadding));
_XmHTMLDebug(17, ("layout.c: inner border = %i\n", bwidth));
_XmHTMLDebug(17, ("layout.c: outer border = %i\n", table->props->border));
_XmHTMLDebug(17, ("layout.c: full_twidth = %i\n", full_twidth));
_XmHTMLDebug(17, ("layout.c: Column widths:\n"));
for(i = 0; i < ncols; i++)
{
_XmHTMLDebug(17, ("layout.c: column %i, max_width = %i\n", i,
max_cols[i]));
}
_XmHTMLDebug(17, ("layout.c: Row heights:\n"));
for(i = 0; i < nrows; i++)
{
_XmHTMLDebug(17, ("layout.c: row %i, height = %i\n", i, rows[i]));
}
#endif
/*****
* Check horizontal *table* alignment and compute initial
* horizontal offset.
*****/
_XmHTMLDebug(17, ("layout.c: checking horizontal alignment.\n"));
_XmHTMLDebug(17, ("layout.c: x_start = %i, max_twidth = %i, "
"twidth = %i\n", x_start, max_twidth, twidth));
switch((table->props->halign == XmHALIGN_NONE ?
HTML_ATTR(alignment) : table->props->halign))
{
case XmHALIGN_RIGHT:
x_start += (box->width - data->ident) > full_twidth ?
(box->width - data->ident) - full_twidth : 0;
break;
case XmHALIGN_CENTER:
x_start += (box->width - data->ident) > full_twidth ?
((box->width - data->ident) - full_twidth)/2 : 0;
break;
case XmHALIGN_LEFT: /* computation is always left-oriented */
case XmHALIGN_JUSTIFY: /* useless for tables */
default:
break;
}
_XmHTMLDebug(17, ("layout.c: computed x_start to be %i\n", x_start));
max_theight = 0;
max_twidth = 0;
/*****
* Adjust upper left corner of table:
* vertical cellspacing moves the vertical offset downwards
*****/
x_pos = x_start + hspace;
y_pos = box->y + table->props->border + vspace;
for(i = 0; i < nrows; i++)
{
int tw = 0;
int hleft, hright, vtop, vbottom;
/*****
* Vertical Spacing Rules
* ---------------------
* First row:
* - full top spacing
* - half bottom spacing;
* Last row:
* - half top spacing;
* - full bottom spacing;
* Other rows:
* - half top spacing;
* - half bottom spacing;
*****/
if(i == 0)
{
/* vertical spacing and borderwidth already accounted for */
vtop = vpad + 1;
vbottom = 0.5*vspace + vpad + (vspace ? 0 : bwidth);
}
else if(i == nrows - 1)
{
vtop = 0.5*vspace + vpad + (vspace ? 0 : bwidth);
vbottom = vspace + vpad + table->props->border;
}
else
{
vtop = 0.5*vspace + vpad + (vspace ? 0 : bwidth);
vbottom = 0.5*vspace + vpad + (vspace ? 0 : bwidth);
}
/* pick up current row */
row = &(table->rows[i]);
/* top-left row positions */
x_pos = x_start;
row->owner->x = x_pos;
row->owner->y = y_pos;
for(j = 0; j < ncols; j++)
{
int cwidth = 0, cheight = 0;
/*****
* Horizontal Spacing Rules
* ------------------------
* First column:
* - full left spacing;
* - half right spacing;
* Last column:
* - half left spacing;
* - full right spacing;
* Other columns:
* - half left spacing;
* - half right spacing;
*****/
if(j == 0)
{
/* borderwidth already accounted for (x_pos) */
hleft = hspace + hpad;
hright = 0.5*hspace + hpad + (hspace ? 0 : bwidth);
}
else if(j == ncols - 1)
{
hleft = 0.5*hspace + hpad + (hspace ? 0 : bwidth);
/* borderwidth already accounted for (x_pos) */
hright = hspace + hpad;
}
else
{
hleft = 0.5*hspace + hpad + (hspace ? 0 : bwidth);
hright = 0.5*hspace + hpad + (hspace ? 0 : bwidth);
}
/* pick up current cell if not a spanned cell */
if((idx = boxes[i][j].idx) != -1)
cell = &(row->cells[idx]);
/*****
* Initial start positions for this box. First cell in a row
* uses the set table border while all other cells use 1 or 0
*****/
boxes[i][j].x = x_pos;
boxes[i][j].y = y_pos;
/*****
* Set correct left & right margin
* Left & right margin take horizontal spacing into account.
*****/
boxes[i][j].lmargin = x_pos + hleft;
if(idx == -1 || cell->colspan == 1)
{
/* set right margin */
boxes[i][j].rmargin = boxes[i][j].lmargin + max_cols[j]+hright;
/* total cell width */
cwidth = max_cols[j] + hleft + hright;
}
else
{
/* spans multiple columns, add up column sizes */
int k;
boxes[i][j].rmargin = boxes[i][j].lmargin;
for(k = j; k < j + cell->colspan && k < ncols; k++)
{
/* left & right padding */
boxes[i][j].rmargin += (max_cols[k] + hleft + hright);
/* total cell width */
cwidth += max_cols[k] + hleft + hright;
}
}
/* set available cell width */
boxes[i][j].width = boxes[i][j].rmargin - boxes[i][j].lmargin;
boxes[i][j].left = boxes[i][j].lmargin;
boxes[i][j].right = boxes[i][j].rmargin;
/* Set correct cell height. */
if(idx == -1 || cell->rowspan == 1)
{
boxes[i][j].height = rows[i] + vtop;
cheight = boxes[i][j].height + vtop ; /* + vbottom; */
}
else
{
/* spans multiple rows, add up the row heights it occupies */
int k;
boxes[i][j].height = 0;
for(k = i; k < i + cell->rowspan && k < nrows; k++)
{
boxes[i][j].height += rows[k] + vtop;
cheight += rows[k] + vtop + vbottom;
}
}
/*
* FIXME: update for vertical positioning: get content height,
* substract box height and shift down by difference (bottom
* alignment) or by half the difference (middle alignment)
* Should be done in next step!
*/
/* set vertical margins */
boxes[i][j].tmargin = vtop;
boxes[i][j].bmargin = boxes[i][j].height;
/*****
* Store bounding box dimensions for proper frame rendering, but
* *never* do this if the current cell is a spanned one. If we
* would do this the offsets would be horribly wrong...
*****/
if(idx != -1)
{
cell->owner->x = x_pos;
cell->owner->y = y_pos;
cell->owner->width = cwidth;
cell->owner->height = cheight;
}
/*****
* advance x position to next column. Must include any padding &
* spacing.
*****/
x_pos += max_cols[j] + hleft + hright;
tw += max_cols[j] + hleft + hright;
_XmHTMLDebug(17, ("Cell(%i,%i,%i): x = %i, y = %i, w = %i, "
"h = %i, left = %i, right = %i %s\n\thleft = %i, hright = %i "
"htop = %i, hbottom = %i\n", depth, i, j,
boxes[i][j].x, boxes[i][j].y, boxes[i][j].width,
boxes[i][j].height, boxes[i][j].left, boxes[i][j].right,
idx == -1 ? "(spanned)" : "",
hleft, hright, vtop, vbottom));
}
/* update max_width if necessary */
if(x_pos > max_width)
{
/* adjust maximum document width */
max_width = x_pos;
_XmHTMLDebug(17, ("layout.c: adjusted max_width to %i\n",
max_width));
}
if(max_twidth < tw)
max_twidth = tw;
/* move to next row, row height already includes padding */
y_pos += rows[i] + vtop + vbottom;
max_theight += rows[i] + vtop + vbottom;
/* save row dimensions */
row->owner->width = x_pos - row->owner->x;
row->owner->height = y_pos - row->owner->y;
}
/* surrounding border */
max_twidth += 2*table->props->border;
max_theight += 2*table->props->border;
/* Final table height */
#ifdef DEBUG
if(max_theight != (y_pos - box->y))
{
_XmHTMLDebug(17, ("layout.c: Adjusted table height "
"from %i to %i\n", max_theight, y_pos - box->y));
max_theight = y_pos - box->y;
}
/* Final table height */
if(full_twidth != max_twidth)
{
_XmHTMLDebug(17, ("layout.c: Adjusted table width "
"from %i to %i\n", full_twidth, max_twidth));
full_twidth = max_twidth;
}
#else
max_theight = y_pos - box->y;
full_twidth = max_twidth;
#endif
/* restore line count */
line = save_line;
/* save start line for this table for both the data & owning object */
data->line = table->start->line = line;
/*****
* Step Eight: compute real text layout using the computed box dimensions.
*****/
for(i = 0; i < table->nrows; i++)
{
row = &(table->rows[i]);
/* restore line count for each row */
line = save_line;
/* set line for this row on both owner and start object */
row->owner->line = row->start->line = line;
max_line = 0;
/* layout all cells in this row */
for(j = 0; j < ncols; j++)
{
/* skip if this is a spanned cell */
if((idx = boxes[i][j].idx) != -1)
cell = &(row->cells[idx]);
else
continue;
/* set line number for owner as well! */
cell->owner->line = line = save_line;
_XmHTMLDebug(17, ("layout.c: Cell(%i,%i,%i): computing final "
"layout for box at (%i,%i) with size %ix%i\n", depth, i, j,
boxes[i][j].x, boxes[i][j].y,
boxes[i][j].width, boxes[i][j].height));
/* compute final layout for the current cell */
ComputeTableLayout(html, &boxes[i][j], cell->start, cell->end);
_XmHTMLDebug(17, ("layout.c: Cell(%i,%i,%i): done computing final "
"layout\n", depth, i, j));
/* adjust cell contents vertically if not aligned at cell top */
if(cell->props->valign != XmVALIGN_TOP)
CheckVerticalAlignment(html, &boxes[i][j], cell->start,
cell->end, cell->props->valign);
/*****
* Update line number from the last valid object: the end of
* a cell is a non-renderable object but is used to get and
* set the document position. Therefore, the line number of
* the cell end should be equal to the last renderable object.
*****/
if(cell->end && cell->end->prev &&
cell->end->prev->object_type != OBJ_NONE)
cell->end->line = cell->end->prev->line;
/* store maximum line count in this row */
/* fix 09/23/98-01, dw */
if(max_line < line - save_line)
max_line = line - save_line;
}
/* save dimensions on end object for this row */
if(row->end == row->start)
{
/* empty row! */
row->start->x = row->owner->x;
row->start->y = row->owner->y;
row->start->height = row->owner->height;
row->start->line = row->owner->line;
}
else if(row->end)
{
row->end->x = row->start->x;
row->end->y = row->start->y + row->start->height;
row->end->height = 0;
/*****
* Get line number from the last valid object: the end of
* a row is a non-renderable object but is used to get and
* set the document position. Therefore, the line number of
* the row end should be equal to the last renderable object.
*****/
if(row->end->prev && row->end->prev->object_type != OBJ_NONE)
row->end->line = row->end->prev->line;
else
row->end->line = save_line + max_line;
}
/*****
* Row done, adjust linecount. Each row advances line count
* with at least 1 line!!!
*****/
save_line += max_line ? max_line : 1;
}
#ifdef DEBUG
_XmHTMLDebug(17, ("layout.c: dumping final cell dimensions\n"));
k = 0;
for(i = 0; i < table->nrows; i++)
{
k += boxes[i][0].height;
for(j = 0; j < ncols; j++)
{
_XmHTMLDebug(17, ("layout.c: Cell(%i,%i,%i): x = %i, y = %i, "
"w = %i, h = %i\n", depth, i, j,
boxes[i][j].x, boxes[i][j].y,
boxes[i][j].width, boxes[i][j].height));
}
}
_XmHTMLDebug(17, ("layout.c: max_theight = %i, sum of rows = %i\n",
max_theight, k));
_XmHTMLDebug(17, ("layout.c: done dumping final cell dimensions\n"));
#endif
/* all done, set correct linenumber */
line = save_line;
/* All done, free the allocated boxes */
for(i = 0; i < table->nrows; i++)
{
/* all cells in this row */
free(boxes[i]);
}
free(boxes);
/* free row & column size storage */
free(rows);
free(max_cols);
free(min_cols);
/* store return dimensions, box->x is not touched */
box->y += max_theight;
box->height = max_theight;
/* save dimensions on end object for this table */
if(table->end)
{
table->end->x = data->x;
table->end->y = data->y + max_theight;
table->end->height = max_theight;
table->end->line = line;
}
/* only adjust box width if initial width wasn't preset */
if(box->width != -1 || box->width < full_twidth)
{
box->width = full_twidth;
box->min_width = full_twidth;
}
/*****
* update x position of owning object, it might have shifted due to
* horizontal alignment adjustment at table level.
*****/
data->x = x_start - table->props->border;
/* final (absolute) table dimensions */
data->height = max_theight;
data->width = full_twidth;
/* adjust maximum document width */
if(box->x + full_twidth > max_width)
{
max_width = box->x + full_twidth;
_XmHTMLDebug(17, ("layout.c: adjusted max_width to %i\n", max_width));
}
_XmHTMLDebug(17, ("layout.c: table at depth %i finished, table width: %i, "
"table height: %i\n", depth, max_twidth, max_theight));
_XmHTMLDebug(17, ("layout.c: next box starts at: %i, %i\n",
box->x, box->y));
depth--;
_XmHTMLDebug(17, ("layout.c, SetTable end, dept = %i, return box:\n"
"x = %i, y = %i, width = %i, height = %i,\n"
"left = %i, right = %i, lmargin = %i, rmargin = %i\n",
depth, box->x, box->y, box->width, box->height, box->left, box->right,
box->lmargin, box->rmargin));
_XmHTMLDebug(17, ("layout.c: end of table started near line %i and ending "
"at line %i in input).\n", table->start->object->line,
table->end->object->line));
_XmHTMLDebug(17, ("layout.c: ------ Table Layout Ends -----\n"));
/* all done! */
return(table->end);
}
/*****
* Name:
* Return Type:
* Description:
* In:
*
* Returns:
*
*****/
static void
PreComputeTableLayout(XmHTMLWidget html, PositionBox *parent,
XmHTMLObjectTableElement obj_start, XmHTMLObjectTableElement obj_end)
{
XmHTMLObjectTableElement tmp, end;
int max_width_save;
PositionBox box, box_return;
int y_start = parent->y;
memcpy(&box, parent, sizeof(PositionBox));
memcpy(&box_return, parent, sizeof(PositionBox));
/*****
* Save current max_width, it's possible it will be changed in
* CellSetText (or any of the routines it calls) but if it does it's a bogus
* value (width is ignored when precomputing cell widths).
*****/
max_width_save = max_width;
had_break = False;
baseline_obj = NULL;
box.y = 0;
box.x = 0;
for(tmp = obj_start; tmp && tmp != obj_end; tmp = tmp->next)
{
switch(tmp->object_type)
{
case OBJ_TEXT:
/* collect all words */
for(end = tmp; end->next->object_type == OBJ_TEXT;
end = end->next);
/* go and do text layout */
SetText(html, &box, tmp, end->next, False, True);
/* back up one element */
tmp = end;
break;
case OBJ_PRE_TEXT:
/* collect all words */
for(end = tmp; end->next->object_type == OBJ_PRE_TEXT;
end = end->next);
/* go and do text layout */
SetText(html, &box, tmp, end->next, True, True);
/* back up one element */
tmp = end;
break;
case OBJ_BULLET:
SetBullet(html, &box, tmp);
break;
case OBJ_HRULE:
SetRule(html, &box, tmp);
break;
case OBJ_TABLE:
_XmHTMLDebug(17, ("Precompute: nested table, current "
"box dimensions:\nwidth = %i, min_width = %i, "
"height = %i %s\n", box.width, box.min_width, box.height));
SetBlock(html, &box, tmp);
tmp = SetTable(html, &box, tmp);
break;
case OBJ_TABLE_FRAME:
break;
case OBJ_APPLET:
SetApplet(html, &box, tmp);
SetBreak(html, &box, tmp);
break;
case OBJ_BLOCK:
SetBlock(html, &box, tmp);
SetBreak(html, &box, tmp);
break;
case OBJ_NONE:
SetBlock(html, &box, tmp);
break;
default:
_XmHTMLWarning(__WFUNC__(html, "PreComputeLayout"),
XMHTML_MSG_78);
}
/* store maximum box width */
if(box_return.width < box.width)
box_return.width = box.width;
/* store minimum box width (ignore empty boxes) */
if(box.min_width > 0 && box_return.min_width < box.min_width)
box_return.min_width = box.min_width;
/*****
* Reset box width to default value for each object being
* precomputed: text layout stores the maximum width, which can
* give evil results for nested tables.
*****/
box.width = parent->width;
box.min_width = parent->min_width;
}
/* Done precomputing, update return values */
/* maximum box width */
if(parent->width == -1)
{
parent->width = box_return.width;
parent->min_width = box_return.min_width;
}
else
{
/* initial width provided. Only update if it's smaller */
if(parent->width < box_return.width)
parent->width = box_return.width;
if(parent->min_width < box_return.min_width)
parent->min_width = box_return.min_width;
}
/*****
* Update box height if the computed height is larger than the set
* height (can only happen for cells with the height attribute set).
*****/
if(box_return.height != -1)
{
/* don't ask me how this is possible, but it *does* happen */
if(box_return.height < 0)
parent->height = box.y - (y_start + box_return.height);
else
if(box.y - y_start > parent->height)
parent->height = box.y - y_start;
}
else
parent->height = box.y - y_start;
box.y = 0;
box.x = 0;
/* and restore max_width */
max_width = max_width_save;
}
/*****
* Name:
* Return Type:
* Description:
* In:
*
* Returns:
*
*****/
static void
ComputeTableLayout(XmHTMLWidget html, PositionBox *box,
XmHTMLObjectTableElement obj_start, XmHTMLObjectTableElement obj_end)
{
XmHTMLObjectTableElement tmp, end;
int max_width_save, bw_save, bh_save;
/*****
* max_width also to be restored, it's final value is governed by the
* total width of the enclosing table.
* We also *must* reset the baseline object: it only applies *per*
* box (= cell). Not resetting it would transfer the baseline object
* to another cell, which is not very desirable...
*****/
max_width_save = max_width;
had_break = False;
baseline_obj = NULL;
/*****
* Save width & height of current box. Since we are performing the final
* table layout, the width & height of the box must stay fixed and may not
* be modified when we encounter a nested table.
*****/
bw_save = box->width;
bh_save = box->height;
for(tmp = obj_start; tmp && tmp != obj_end; tmp = tmp->next)
{
switch(tmp->object_type)
{
/* collect all words */
case OBJ_TEXT:
for(end = tmp; end->next->object_type == OBJ_TEXT;
end = end->next);
/* go and do text layout */
SetText(html, box, tmp, end->next, False, False);
/* back up one element */
tmp = end;
break;
case OBJ_PRE_TEXT:
for(end = tmp; end->next->object_type == OBJ_PRE_TEXT;
end = end->next);
/* go and do text layout */
SetText(html, box, tmp, end->next, True, False);
/* back up one element */
tmp = end;
break;
case OBJ_BULLET:
SetBullet(html, box, tmp);
break;
case OBJ_HRULE:
SetRule(html, box, tmp);
break;
case OBJ_TABLE:
/* nested table hehehehehehe */
SetBlock(html, box, tmp);
tmp = SetTable(html, box, tmp);
/*****
* Restore width & height, it might have been modified. This is
* essential for nested tables: not restoring this will
* lead to a decreasing width and increasing height of each
* nested table that needs to be processed and could even
* lead to a *negative* cell width!
*****/
box->width = bw_save;
box->height = bh_save;
break;
case OBJ_TABLE_FRAME:
SetBlock(html, box, tmp);
break;
case OBJ_APPLET:
SetApplet(html, box, tmp);
SetBreak(html, box, tmp);
break;
case OBJ_BLOCK:
SetBlock(html, box, tmp);
SetBreak(html, box, tmp);
break;
case OBJ_NONE:
SetBlock(html, box, tmp);
break;
default:
_XmHTMLWarning(__WFUNC__(html, "PreComputeLayout"),
XMHTML_MSG_78);
}
}
/*****
* Last object in a tablecell is a valid element (although it is of type
* OBJ_NONE), so it must be set as well.
* Not doing so would seriously mess up screen refreshment.
*****/
if(obj_end)
SetBlock(html, box, obj_end);
max_width = max_width_save;
}
/*****
* Name:
* Return Type:
* Description:
* In:
*
* Returns:
*
*****/
static void
CheckVerticalAlignment(XmHTMLWidget html, PositionBox *box,
XmHTMLObjectTableElement start, XmHTMLObjectTableElement end,
Alignment valign)
{
/*****
* INSERT CODE
* to shift all objects down
*****/
}
#ifdef DEBUG
/*
* Routine to dump all objects to file, can be called from within a
* debugger.
*/
/* all possible object types */
static String obj_names[] = {"none", "text", "ptext", "bullet",
"hrule", "table", "tframe", "img", "form", "applet",
"block"};
/*****
* Name: dumpLines
* Return Type: void
* Description: dumps a list of all XmHTMLObjectTable elements, displaying
* it's type, coordinates, line number on display and in input
* file and it's pointer value.
* In:
* html: XmHTMLWidget id;
* file: name of file to dump to. If "" stdout is used.
* Returns:
* nothing
*****/
void
dumpLines(XmHTMLWidget html, String file)
{
XmHTMLLineTable *tmp;
FILE *out = stdout;
int cnt = 0, nused = 0;
int i;
char key;
if(HTML_ATTR(line_table) == NULL)
{
fprintf(out, "No line table found\n");
return;
}
if(file != NULL)
{
if((out = fopen(file, "w")) == NULL)
{
perror(file);
out = stdout;
fprintf(out, "Reverting to stdout\n");
}
else
printf("Dumping linetable to %s\n", file);
}
else
fprintf(out, "No output file given, dumping to stdout\n");
fprintf(out, "Line\ty\t\tStart Ptr\tEnd Ptr\n");
fflush(stdout);
tmp = HTML_ATTR(line_table);
for(i = 0; i < HTML_ATTR(nlines); i++)
{
if(tmp[i].used)
{
fprintf(out, "%i\t%i\t\t%p\t%p\n",
i, tmp[i].y, tmp[i].start, tmp[i].end);
nused++;
}
else
fprintf(out, "%i\t(unused)\n", i);
cnt++;
if(out == stdout && !(cnt % 21))
{
fprintf(out, "--- Press Q to quit or Return to continue (%i "
"elements shown ---):", cnt);
fflush(out);
key = getchar();
if(key == 'q' || key == 'Q')
return;
fprintf(out, "Line\ty\t\tStart Ptr\tEnd Ptr\n");
}
}
if(out == stdout)
return;
fclose(out);
printf("Done, dumped %i lines of which %i are used\n", cnt, nused);
fflush(stdout);
}
/*****
* Name: checkObjects
* Return Type: void
* Description: checks the entire XmHTMLObjectTable element list for elements
* with zero coordinates and/or display line number.
* In:
* html: XmHTMLWidget id;
* Returns:
* nothing.
*****/
void
checkObjects(XmHTMLWidget html)
{
XmHTMLObjectTable *tmp;
int cnt = 0, err = 0;
int nl = 0;
printf("Checking for objects with zero coordinates and/or linenumber.\n");
nl = HTML_ATTR(formatted)->line;
for(tmp = HTML_ATTR(formatted); tmp != NULL; tmp = tmp->next)
{
if(tmp->x == 0 && tmp->y == 0)
{
printf("Object %s %p has zero coordinates\n",
obj_names[tmp->object_type], tmp);
err++;
}
if(tmp->line == 0 && tmp->y == 0)
{
printf("Object %s %p has zero line number\n",
obj_names[tmp->object_type], tmp);
err++;
}
if(tmp->line < nl)
printf("Object %s %p: bad line number: got %i, expected %i or "
"more\n", obj_names[tmp->object_type], tmp, tmp->line, nl);
if(tmp->line > nl)
nl = tmp->line;
cnt++;
}
printf("Done, checked %i objects, %i errors found\n", cnt, err);
}
/*****
* Name: dumpLines
* Return Type: void
* Description: dumps a list of all XmHTMLObjectTable elements, displaying
* it's type, coordinates, line number on display and in input
* file and it's pointer value.
* In:
* html: XmHTMLWidget id;
* file: name of file to dump to. If "" stdout is used.
* Returns:
* nothing
*****/
void
dumpObjects(XmHTMLWidget html, String file)
{
XmHTMLObjectTable *tmp;
FILE *out = stdout;
int cnt = 0;
char key;
if(file != NULL)
{
if((out = fopen(file, "w")) == NULL)
{
perror(file);
out = stdout;
fprintf(out, "Reverting to stdout\n");
}
else
printf("Dumping objecttable to %s\n", file);
}
else
fprintf(out, "No output file given, dumping to stdout\n");
fprintf(out, "Object\t\tx\ty\tw\th\tline\tinput line\tObject Ptr\n");
fflush(stdout);
for(tmp = HTML_ATTR(formatted); tmp != NULL; tmp = tmp->next)
{
if(tmp->object)
fprintf(out, "%s\t\t%i\t%i\t%i\t%i\t%i\t%i\t\t%p\n",
obj_names[tmp->object_type],
tmp->x, tmp->y, tmp->width, tmp->height, tmp->line,
tmp->object->line, tmp);
else
fprintf(out, "%s\t\t%i\t%i\t%i\t%i\t%i\t(?)\t\t%p\n",
obj_names[tmp->object_type], tmp->x, tmp->y, tmp->width,
tmp->height, tmp->line, tmp);
cnt++;
if(out == stdout && !(cnt % 21))
{
fprintf(out, "--- Press Q to quit or Return to continue (%i "
"elements shown ---):", cnt);
fflush(out);
key = getchar();
if(key == 'q' || key == 'Q')
return;
fprintf(out, "Object\t\tx\ty\t\tw\th\tline\tinput line\tObject Ptr\n");
}
}
if(out == stdout)
return;
fclose(out);
printf("Done, dumped %i objects\n", cnt);
fflush(stdout);
}
#endif
|