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
|
2000-02-03 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/lyxrow.h: make sure that all Row variables are initialized.
* src/text2.C (TextHandleUndo): comment out a delete, this might
introduce a memory leak, but should also help us to not try to
read freed memory. We need to look at this one.
* src/paragraph.C (SimpleDocBookOneTablePar): initialize column to 0
(LyXParagraph): initalize footnotekind.
* src/lyxrc.C (output): added case RC_DATE_INSERT_FORMAT. Jug
forgot this when applying the patch. Please heed the warnings.
* src/BufferView.C (buffer): a fix for the buffer-reload problem
(aka. reformat problem)
* src/bufferlist.C (exists): made const, and use const_iterator
(isLoaded): new func.
(release): use std::find to find the correct buffer.
* src/bufferlist.h: made getState a const func.
made empty a const func.
made exists a const func.
new func: isLoaded
2000-02-01 Juergen Vigna <jug@sad.it>
* src/lyxfunc.C lyxrc.C: changed from insert-date to date-insert
* po/it.po: updated a bit the italian po file and also changed the
'file nuovo' for newfile to 'filenuovo' without a space, this did
annoy me a lot :)
* src/lyxrc.C (LyXRC): added support for a default insert_date_format
for the new insert_date command.
* src/lyxfunc.C (Dispatch): added support for a insert_date function
from jdblair, to insert a date into the current text conforming to
a strftime format (for now only considering the locale-set and not
the document-language).
2000-01-28 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyxfont.C (textWidth): hopefully better fix for the Array
Bounds Read error seen by purify. The problem was that islower is
a macros which takes an unsigned char and uses it as an index for
in array of characters properties (and is thus subject to the
above error).
(drawText): ditto.
* src/lyx_cb.C (UpdateLayoutDocument): use a switch to set
correctly the paper sides radio buttons.
(UpdateDocumentButtons): ditto.
2000-01-27 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyxfunc.C (processKeyEvent): fix a the buffer returned by
LyXLookupString to be zero-terminated. Really fixes problems seen
by purify, I think.
2000-01-27 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/lyxfunc.C (processKeyEvent): "fix" so that we never try to
write a (char*)0 to the lyxerr stream.
* src/lastfiles.C: move algorithm before the using statemets.
2000-01-26 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lastfiles.C: move using directives in global scope (egcs 1.x
complains otherwise).
* src/table.C: ditto
* lib/reLyX/reLyX.in: use variable @LYX_DIR@ as built-in data
directory.
* lib/reLyX/configure.in (LYX_DIR): re-introduce this variable
that I removed earlier... It is really needed.
* lib/examples/multicol.lyx: new file, splitted from Extended.lyx.
2000-01-25 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* INSTALL: update xforms home page URL.
* lib/configure.m4: fix a bug with unreadable layout files.
* src/table.C (calculate_width_of_column): add "using std::max"
directive.
2000-01-25 Lars Gullik Bjnnes <larsbj@lyx.org>
* several files: marked several lines with "DEL LINE", this is
lines that can be deleted without changing anything.
if (<ptr>) // DEL LINE /* this line is _never_ needed. Delete
checks this anyway */
delete <ptr>
* src/insets/insetlatexaccent.C: Changed some debugs to Debug::KEY
* src/DepTable.C (update): add a "+" at the end when the checksum
is different. (debugging string only)
* src/paragraph.C (ReturnNextInsetPointer): fix bug that caused
the next inset to not be displayed. This should also fix the list
of labels in the "Insert Crossreference" dialog.
2000-01-24 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/LSubstring.C (LSubstring): set pos to string::npos
when regex was not found.
* src/support/lstrings.C (lowercase): use handcoded transform always.
(uppercase): ditto
* src/text.C (Delete): fixed the crash. cursor.par->prev and
old_cursor.par->prev could be 0.
* several files: changed post inc/dec to pre inc/dec
* src/lastfiles.C (writeFile): use ostream_iterator and copy to
write the lastfiles to file.
* src/BufferView.C (buffer): only show TextCache info when debugging
(buffer): ditto
(resizeCurrentBuffer): ditto
(workAreaExpose): ditto
* lib/kbd/iso8859-7.cdef: changed to new quoting scheme
* lib/kbd/iso8859-2.cdef: changed to new quoting scheme
* src/insets/insetlatexaccent.C (Draw): make the display of UMLAUT
a bit better by removing the special case for \i and \j.
2000-01-24 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyx_main.C (easyParse): remove test for bad comand line
options, since this broke all xforms-related parsing.
* src/kbmap.C (getsym): set return type to unsigned long, as
declared in header. On an alpha, long is _not_ the same as int.
* src/support/LOstream.h: add a "using std::flush;"
* src/insets/figinset.C: ditto.
2000-01-21 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/bufferlist.C (write): use blinding fast file copy instead of
"a char at a time", now we are doing it the C++ way.
* src/insets/figinset.C: get rid of struct pidwaitpit, use a
std::list<int> instead.
(addpidwait): reflect move to std::list<int>
(sigchldchecker): ditto
* src/bmtable.c (fl_set_bmtable_file): have arguments in the X r5
version also.
* src/paragraph.C (FirstPhysicalPar): remove assert and comment
that obviously was wrong...
* src/lyxfont.C (textWidth): have c as char c[2] instead of char
c, this avoids warnings with purify and islower.
* src/insets/figinset.C: rename struct queue to struct
queue_element and rewrite to use a std::queue. gsqueue is now a
std::queue<queue_element>
(runqueue): reflect move to std::queue
(addwait): ditto
* src/support/lstrings.h (tostr): specialize for bool, otherwise
we would get "1" "0" instead of "true" "false. Also make the tostr
functions inline.
2000-01-21 Juergen Vigna <jug@sad.it>
* src/buffer.C (writeFileAscii): Disabled code for special groff
handling of tabulars till I fix this in table.C
2000-01-21 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/support/mkdir.C (mkdir): change second argument of mkdir to
unsigned long int.
* src/support/lyxlib.h: ditto.
2000-01-20 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/insets/insetlatexaccent.C (Draw): make accents on top of 'i'
and 'j' look better. This might fix the "macron" bug that has been
observed.
* src/support/lstrings.[Ch] (tostr): reimplement all the tostr
functions as one template function. Delete the old versions.
* src/support/lyxsum.C: move using std::ifstream inside
MODERN_STL_STREAMS
* src/support/Makefile.am (libsupport_la_SOURCES): added mkdir.C
and putenv.C
* src/mathed/formulamacro.C: delete #include "bufferlist.h" never used
* src/mathed/formula.C: delete #include "bufferlist.h" never used
* src/insets/figinset.C (InitFigures): use new instead of malloc
to allocate memory for figures and bitmaps.
(DoneFigures): use delete[] instead of free to deallocate memory
for figures and bitmaps.
(runqueue): use new to allocate
(getfigdata): use new/delete[] instead of malloc/free
(RegisterFigure): ditto
* some files: moved some declarations closer to first use, small
whitespace changes use preincrement instead of postincrement where
it does not make a difference.
* src/kbmap.[Ch]: delete code according to define NO_HASH, it is a
step on the way to use stl::containers for key maps.
* src/bufferlist.h: add a typedef for const_iterator and const
versions of begin and end.
* src/bufferlist.[Ch]: change name of member variable _state to
state_. (avoid reserved names)
(makePup): removed
(getFileNames): returns the filenames of the buffers in a vector.
* configure.in (ALL_LINGUAS): added ro
* src/support/putenv.C: new file
* src/support/mkdir.C: new file
2000-01-20 Allan Rae <rae@lyx.org>
* lib/layouts/IEEEtran.layout: Added several theorem environments
* lib/templates/IEEEtran.lyx: Example theorem environments and a
couple of minor additions.
* lib/doc/LaTeXConfig.lyx.in: Use URL insets for ftp sites
(except for those in footnotes of course)
2000-01-19 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/lyxlookup.C (CloseLyXLookup): set xic=0; after destruction.
* src/mathed/math_utils.C (MathedLookupBOP): rewrite to use
std::sort and std::lower_bound instead of qsort and handwritten
binarysearch.
(struct compara): struct that holds the functors used by std::sort
and std::lower_bound in MathedLookupBOP.
2000-01-19 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/support/LAssert.h: do not do partial specialization. We do
not really need it.
* src/support/lyxlib.h: note that lyx::getUserName() and
lyx::date() are not in use right now. Should these be suppressed?
* src/buffer.C (makeLaTeXFile): we do not need the user name here.
(makeLinuxDocFile): do not put date and user name in linuxdoc
headers.
* src/support/lyxlib.h (kill): change first argument to long int,
since that's what solaris uses.
* src/support/kill.C (kill): fix declaration to match prototype.
* config/lyxinclude.m4 (LYX_CXX_NAMESPACES): fix the macro to
actually check whether namespaces are supported. This is not what
it used to do.
* src/support/lyxsum.C: add a using directive.
2000-01-17 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/kill.C: if we have namespace support we don't have
to include lyxlib.h.
* src/support/lyxlib.h: use namespace lyx if supported.
2000-01-14 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/date.C: new file
* src/support/chdir.C: new file
* src/support/getUserName.C: new file
* src/support/getcwd.C: new file
* src/support/abort.C: new file
* src/support/kill.C: new file
* src/support/lyxlib.h: moved all the functions in this file
insede struct lyx. Added also kill and abort to this struct. This
is a way to avoid the "kill is not defined in <csignal>", we make
C++ wrappers for functions that are not ANSI C or ANSI C++.
* src/support/lyxsum.C (sum): use #ifdef MODERN_STL_STREAMS
instead of #if __GLIBCPP__. Since lyxsum is now put inside struct
lyx it has been renamed to sum.
2000-01-14 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/text.C: add using directives for std::min and std::max.
2000-01-13 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/texrow.C (getIdFromRow): actually return something useful in
id and pos. Hopefully fixes the bug with positionning of errorbox
insets.
* src/lyx_main.C (easyParse): output an error and exit if an
incorrect command line option has been given.
* src/spellchecker.C (ispell_check_word): document a memory leak.
* src/bufferlist.C (write): fix mismatched allocation/deletion,
where a "struct utimbuf" is allocated with "new" and deleted with
"delete[]".
2000-01-13 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/text2.C (CutSelection): don't delete double spaces.
(PasteSelection): ditto
(CopySelection): ditto
* src/text.C (Backspace): don't delete double spaces.
* src/lyxlex.C (next): fix a bug that were only present with
conformant std::istream::get to read comment lines, use
std::istream::getline instead. This seems to fix the problem.
2000-01-12 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/text2.C (DeleteEmptyParagraphMechanism): fix for the "not
allowed to insert space before space" editing problem. Please read
commends at the beginning of the function. Comments about usage
are very welcome.
* src/text.C (InsertChar): fix for the "not allowed to insert
space before space" editing problem.
* src/text2.C (DeleteEmptyParagraphMechanism): when
IsEmptyTableRow can only return false this last "else if" will
always be a no-op. Commented out.
* src/text.C (RedoParagraph): As far as I can understand tmp
cursor is not really needed.
* src/lyxtext.[Ch] (IsEmptyTableCell): commented out. As used at
present it could only return false anyway.
(several functions): Did something not so smart...added a const
specifier on a lot of methods.
* src/paragraph.C (BreakParagraph): removed the tmp->text.reserve
and add a tmp->text.resize. The LyXParagraph constructor does the
resize for us.
(BreakParagraphConservative): ditto
* src/support/path.h (Path): add a define so that the wrong usage
"Path("/tmp") will be flagged as a compilation error:
"`unnamed_Path' undeclared (first use this function)"
2000-01-12 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* config/lyxinclude.m4 (LYX_FUNC_PUTENV_ARGTYPE): fix the macro,
which was bogus for several reasons.
* src/LaTeX.C (scanAux): fix the regular expression used to scan
.aux files.
(runBibTeX): ditto.
* autogen.sh: do not use "type -path" (what's that anyway?).
* src/support/filetools.C (findtexfile): remove extraneous space
which caused a kpsewhich warning (at least with kpathsea version
3.0).
2000-01-11 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/mathed/Makefile.am (noinst_LTLIBRARIES): use .la
* src/insets/Makefile.am (noinst_LTLIBRARIES): use .la
* src/Makefile.am (lyx_DEPENDENCIES): switch back to .la libs
2000-01-11 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/paragraph.C (BreakParagraph): do not reserve space on text
if we don't need to (otherwise, if pos_end < pos, we end up
reserving huge amounts of memory due to bad unsigned karma).
(BreakParagraphConservative): ditto, although I have not seen
evidence the bug can happen here.
* src/lyxparagraph.h: add a using std::list.
2000-01-11 Juergen Vigna <jug@sad.it>
* src/menus.C (MenuDocu): output an Alert if the documentation-file
could not be found.
2000-01-11 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/vc-backend.C (doVCCommand): change to be static and take one
more parameter: the path to chdir too be fore executing the command.
(retrive): new function equiv to "co -r"
* src/bufferlist.C (loadLyXFile): implement the missing parts if
file_not_found_hook is true.
* src/lyxvc.C (file_not_found_hook): implement file_not_found_hook.
* src/support/filetools.C (IsFileWriteable): use FileInfo to check
if a file is readwrite,readonly...anything else.
2000-01-10 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/lyx_cb.C (MakeLaTeXOutput): name change from MakeDVIOutput
(CreatePostscript): name change from MenuRunDVIPS (or something)
(PreviewPostscript): name change from MenuPreviewPS
(PreviewDVI): name change from MenuPreviewDVI
* lib/lyxrc.example: added \pdflatex_command, \pdf_mode,
\view_pdf_command., \pdf_to_ps_command
* lib/configure.m4: added search for PDF viewer, and search for
PDF to PS converter.
(lyxrc.defaults output): add \pdflatex_command,
\view_pdf_command and \pdf_to_ps_command.
* src/lyx_cb.C (MenuPreviewDVI): renamed from MenuPreview.
* src/bufferlist.C (write): we don't use blocksize for anything so
I removed it.
2000-01-10 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/support/block.h: disable operator T* (), since it causes
problems with both compilers I tried. See comments in the file.
* lib/reLyX/configure.in: do not define LYX_DIR. support flag
--with-lyxname.
* lib/reLyX/reLyX.in: change LYX_DIR to pkgdatadir; change env.
variable LYX_DIR_10x to LYX_DIR_11x.
* src/Makefile.am: replace variable LYX_DIR with pkgdatadir.
* INSTALL: document --with-lyxname.
* NEWS: ditto.
* configure.in: new configure flag --with-lyxname which allows to
choose the name under which lyx is installed. Default is "lyx", of
course. It used to be possible to do this with --program-suffix,
but the later has in fact a different meaning for autoconf.
* src/support/lstrings.h (lstrchr): reformat a bit.
* src/lyxlex.h: include LIstream.h, for Sun CC this time.
* src/mathed/math_defs.h: ditto.
2000-01-09 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/lyxrc.[Ch]: New tag and variable "\make_backup". Defaults to
true, decides if we create a backup file or not when saving. New
tag and variable \pdf_mode, defaults to false. New tag and
variable \pdflatex_command, defaults to pdflatex. New tag and
variable \view_pdf_command, defaults to xpdf. New tag and variable
\pdf_to_ps_command, defaults to pdf2ps.
2000-01-08 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/bufferlist.C (close): don't call insetUnlock if the buffer
does not have a BufferView.
(unlockInset): ditto + don't access the_locking_inset if the
buffer does not have a BufferView.
* src/LyXView.C (KeyPressMask_raw_callback): add a XSync in
certain circumstances so that we don't continue a keyboard
operation long after the key was released. Try f.ex. to load a
large document, press PageDown for some seconds and then release
it. Before this change the document would contine to scroll for
some time, with this change it stops imidiatly.
* src/support/block.h: don't allocate more space than needed. As
long as we don't try to write to the arr[x] in a array_type arr[x]
it is perfectly ok. (if you write to it you might segfault).
added operator value_type*() so that is possible to pass the array
to functions expecting a C-pointer.
* lib/Makefile.am (dist-hook): don't fail completely if unable to
cvs.
* intl/*: updated to gettext 0.10.35, tried to add our own
required modifications. Please verify.
* po/*: updated to gettext 0.10.35, tried to add our own required
modifications. Please verify.
* src/support/lstrings.C (tostr): go at fixing the problem with
cxx and stringstream. When stringstream is used return
oss.str().c_str() so that problems with lyxstring and basic_string
are avoided. Note that the best solution would be for cxx to use
basic_string all the way, but it is not conformant yet. (it seems)
* src/lyx_cb.C + other files: moved several global functions to
class BufferView, some have been moved to BufferView.[Ch] others
are still located in lyx_cb.C. Code changes because of this. (part
of "get rid of current_view project".)
* src/buffer.C + other files: moved several Buffer functions to
class BufferView, the functions are still present in buffer.C.
Code changes because of this.
* config/lcmessage.m4: updated to most recent. used when creating
acinclude.m4.
* config/progtest.m4: updated to most recent. used when creating
acinclude.m4.
* config/gettext.m4: updated to most recent. applied patch for
tmplinguas.
* config/gettext.m4.patch: new file that shows what changes we
have done to the local copy of gettext.m4.
* config/libtool.m4: new file, used in creation of acinclude.m4
* config/lyxinclude.m4: new file, this is the lyx created m4
macros, used in making acinclude.m4.
* autogen.sh: GNU m4 discovered as a separate task not as part of
the lib/configure creation.
Generate acinlucde from files in config. Actually cat
lyxinclude.m4, libtool.m4 and gettext.m4 together. This makes it
easier to upgrade .m4 files that really are external.
* src/Spacing.h: moved using std::istringstream to right after
<sstream>. This should fix the problem seen with some compilers.
2000-01-06 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/lyx_cb.C: began some work to remove the dependency a lot of
functions have on BufferView::text, even if not really needed.
(GetCurrentTextClass): removed this func, it only hid the
current_view.
* src/Makefile.am (lyx_DEPENDENCIES): use support/libsupport.la I
forgot this in last commit.
* src/Bullet.C (bulletEntry): use static char const *[] for the
tables, becuase of this the return arg had to change to string.
(bulletSize): ditto
(~Bullet): removed unneeded destructor
* src/BufferView.C (beforeChange): moved from lyx_cb.C
(insetSleep): moved from Buffer
(insetWakeup): moved from Buffer
(insetUnlock): moved from Buffer
* buffer.[Ch], BufferView.[Ch] + others: moved the_locking_inset
from Buffer to BufferView.
* acinclude.m4: include libtool.m4 from libtool 1.3.4.
* config/ltmain.sh: updated to version 1.3.4 of libtool
* config/ltconfig: updated to version 1.3.4 of libtool
2000-01-06 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/buffer.C (pop_tag): fix a dubious for() loop initialization.
Did I get that right?
* src/lyxlex.h: add a "using" directive or two.
* src/Spacing.h: ditto.
* src/insets/figinset.C: ditto.
* src/support/filetools.C: ditto.
* src/support/lstrings.C: ditto.
* src/BufferView.C: ditto.
* src/bufferlist.C: ditto.
* src/lyx_cb.C: ditto.
* src/lyxlex.C: ditto.
* NEWS: add some changes for 1.1.4.
2000-01-06 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/BufferView.C: first go at a TextCache to speed up switching
between documents.
2000-01-05 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lib/examples/ItemizeBullets.lyx: update from Tino Meinen.
* lib/examples/nl_voorbeeld_ruw.lyx: ditto.
* lib/examples/nl_voorbeeld_verlyxt.lyx: ditto.
* lib/examples/nl_opsommingstekens.lyx: new translation from Tino
Meinen.
* src/mathed/math_defs.h (MathedRowSt): make sure that all
members of the struct are correctly initialized to 0 (detected by
purify)
* src/lyxrc.C (LyXRC): ditto for print_adapt_output.
* src/insets/figinset.C (InsetFig): ditto for pswid and pshgh.
* src/insets/figinset.C (sigchldchecker): use "delete" to free a
pidwait, since it was allocated with "new". This was potentially
very bad. Thanks to Michael Schmitt for running purify for us.
2000-01-04 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyx_gui_misc.C: add a 'using std::make_pair;' statement.
* src/lyx_gui_misc.h: add a 'using std::pair;' statement.
1999-12-30 Allan Rae <rae@lyx.org>
* lib/templates/IEEEtran.lyx: minor change
* src/lyxvc.C (registrer, checkIn), src/lyx_cb.C (MenuInsertLabel),
src/mathed/formula.C (LocalDispatch): askForText changes
* src/lyx_gui_misc.[Ch] (askForText): now returns a bool also so we
know when a user has cancelled input. Fixes annoying problems with
inserting labels and version control.
1999-12-29 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/lstrings.C (tostr): rewritten to use strstream and
stringstream
1999-12-28 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/filetools.C (IsFileWriteable): use fstream to check
(IsDirWriteable): use fileinfo to check
* src/support/filetools.h (FilePtr): whole class deleted
* src/insets/figinset.C (GetPSSizes): rewritten to use ifstream.
* src/lyxparagraph.h (readSimpleWholeFile): make arg istream
* src/lyx_cb.C (InsertAsciiFile): use ifstream instead of FilePtr
* src/bufferlist.C (write): use ifstream and ofstream instead of
FILE*
* src/Spacing.h: use istrstream instead of sscanf
* src/mathed/math_defs.h: change first arg to istream from FILE*
* src/buffer.C (insertLyXFile): use ifstream instead of FilePtr
* src/mathed/math_parser.C: have yyis to be an istream
(LexGetArg): use istream (yyis)
(yylex): ditto
(mathed_parse): ditto
(mathed_parser_file): first arg istream instead of FILE*, set yyis
* src/mathed/formula.C (Read): rewritten to use istream
* src/mathed/formulamacro.C (Read): rewritten to use istream
* src/lyxlex.h (~LyXLex): deleted desturctor
(getStream): new function, returns an istream
(getFile): deleted funtion
(IsOK): return is.good();
* src/lyxlex.C (LyXLex): delete file and owns_file
(setFile): open an filebuf and assign that to a istream instead of
using FILE*
(setStream): new function, takes an istream as arg.
(setFile): deleted function
(EatLine): rewritten us use istream instead of FILE*
(next): ditto
(nextToken): ditto
* src/table.C (LyXTable): use istream instead of FILE*
(Read): rewritten to take an istream instead of FILE*
1999-12-28 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/buffer.C (Dispatch): remove an extraneous break statement.
* src/support/filetools.C (QuoteName): change to do simple
'quoting'. More work is necessary. Also changed to do nothing
under emx (needs fix too).
(Putenv): Cast the argument of putenv() with PUTENV_TYPE_ARG.
* acinclude.m4 (STL_STRING_FWD_H_LOCATION): add the comment for
config.h.in to the AC_DEFINE_UNQUOTED() call.
(LYX_FUNC_PUTENV_ARGTYPE): new macro. Checks whether putenv()
needs char * as argument (because Solaris 7 declares it like
that).
* acconfig.h: remove placeholder for STL_STRING_FWD_H_LOCATION;
remove definition of BZERO.
1999-12-24 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/LRegex.C: include <regex.h> if HAVE_REGEX_H is
defined, "lyxregex.h" if not.
* src/support/Makefile.am (noinst_LTLIBRARIES): changed from
pkglib_ to noinst_
(REGEX): new variable that is set to regex.c lyxregex.h when
AM_CONDITIONAL USE_REGEX is set.
(libsupport_la_SOURCES): add $(REGEX)
* src/mathed/Makefile.am (noinst_LTLIBRARIES): changed from
pkglib_ to noinst_
* src/insets/Makefile.am (noinst_LTLIBRARIES): changed from
pkglib_ to noinst_
* configure.in: add call to LYX_REGEX
* acinclude.m4 (LYX_REGEX): checks if we need to use the included
regex or not. Uses a a AM_CONDITIONAL to decide what to compile.
1999-12-22 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lib/bind/fi_menus.bind: new file, from
pauli.virtanen@saunalahti.fi.
* src/buffer.C (getBibkeyList): pass the parameter delim to
InsetInclude::getKeys and InsetBibtex::getKeys.
* src/insets/insetinclude.[Ch] (getKeys): add parameter delim, which
is passed to Buffer::getBibkeyList
* src/insets/insetbib.[Ch] (getKeys): add parameter delim, and use it
instead of the hardcoded comma.
* src/insets/insetbib.C (getKeys): make sure that there are not
leading blanks in bibtex keys. Normal latex does not care, but
harvard.sty seems to dislike blanks at the beginning of citation
keys. In particular, the retturn value of the function is
* INSTALL: make it clear that libstdc++ is needed and that gcc
2.7.x probably does not work.
* src/support/filetools.C (findtexfile): make debug message go to
the LATEX channel
* src/insets/insetbib.C (getKeys): ditto
* src/debug.C (showTags): make sure that the output is correctly
aligned.
* configure.in: add a comment for TWO_COLOR_ICON define.
* acconfig.h: remove all the entries that already defined in
configure.in or acinclude.m4.
* src/buffer.C (makeLaTeXFile): headers of latex file also changed
to avoid user name, date and copyright.
1999-12-21 Juergen Vigna <jug@sad.it>
* src/table.C (Read): Now read bogus row format informations
if the format is < 5 so that afterwards the table can
be read by lyx but without any format-info. Fixed the
crash we experienced when not doing this.
1999-12-21 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/text2.C (RedoHeightOfParagraph): rename arg cursor -> cur
(RedoDrawingOfParagraph): ditto
(RedoParagraphs): ditto
(RemoveTableRow): ditto
* src/text.C (Fill): rename arg paperwidth -> paper_width
* src/buffer.C (insertLyXFile): rename var filename -> fname
(writeFile): rename arg filename -> fname
(writeFileAscii): ditto
(makeLaTeXFile): ditto
(makeLinuxDocFile): ditto
(makeDocBookFile): ditto
* src/LaTeX.C (runMakeIndex): change arg name from file -> f
(runBibTeX): ditto
* src/Makefile.am (lyx_SOURCES): add bmtable.c and remove bmtable.C
* src/bmtable.h: add extern "C" on this file when __cplusplus is
defined.
* src/bmtable.c: new file, a C'ified copy of bmtable.C, this is
compiled by a C compiler not C++.
* src/layout.h (LyXTextClass): added typedef for const_iterator
(LyXTextClassList): added typedef for const_iterator + member
functions begin and end.
* src/LyXView.C (UpdateDocumentClassChoice): rewritten to use
iterators to fill the choice_class.
(updateLayoutChoice): rewritten to use iterators to fill the
layoutlist in the toolbar.
* src/BufferView.h (BufferView::work_area_width): removed unused
variable.
* src/lyx_gui_misc.C (WarnReadonly): added string parameter 'file'
* src/buffer.C (sgmlOpenTag): drop the use of the static space array
(sgmlCloseTag): ditto
* src/support/lstrings.h: return type of countChar changed to
unsigned char.
* src/support/lstrings.C (countChar): use HAVE_STD_COUNT to choose
what version of this func to use. Also made to return unsigned int.
* configure.in: call LYX_STD_COUNT
* acinclude.m4 (LYX_STD_COUNT): new function checks for a standard
conforming std::count.
1999-12-20 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/mathed/math_draw.C (Draw, Metrics): fix a bug where a prime
and a subscript would give bad display (patch from Dekel Tsur
<dekel@math.tau.ac.il>).
* src/insets/insetlatexaccent.h: make sure ACCENT_TYPES is public.
* src/spellchecker.C (create_ispell_pipe): use a const_cast to
please sun CC.
* src/chset.h: add a few 'using' directives
* src/lyxfunc.C (Dispatch): check that LFUN_UNKNOWN_ACTION is not
triggered when no buffer is active
* src/layout.C: removed `break' after `return' in switch(), since
it is unreachable.
* src/lyx_main.C (init): make sure LyX can be ran in place even
when libtool has done its magic with shared libraries. Fix the
test for the case when the system directory has not been found.
* src/lyx_cb.C (MenuMakeLaTeX): make sure to keep the full path
name for the latex file.
(MenuMakeHTML): ditto
* src/buffer.h: add an optional boolean argument, which is passed
to ChangeExtension.
1999-12-20 Allan Rae <rae@lyx.org>
* lib/templates/IEEEtran.lyx: small correction and update.
* configure.in: Attempted to use LYX_PATH_HEADER
* src/stl_string_fwd.h: Don't need HAVE_STL_STRING_FWD_H anymore
* acconfig.h, acinclude.m4 (LYX_STL_STRING_FWD): totally revised after
input from JMarc. Now use preprocessor to find the header.
Also stopped making HAVE_STL_STRING_FWD_H and extended the comments.
(LYX_PATH_HEADER): My, so far, failed attempt to generalize
LYX_STL_STRING_FWD. See comments in file.
1999-12-19 Asger Alstrup Nielsen <alstrup@diku.dk>
* The global MiniBuffer * minibuffer variable is dead.
* The global FD_form_main * fd_form_main variable is dead.
1999-12-17 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/toolbar.C (set): condition #warning on WITH_WARNINGS
* src/table.h: add the LOstream.h header
* src/debug.h: ditto
* src/LyXAction.h: change the explaination of the ReadOnly
attribute: is indicates that the function _can_ be used.
* src/LyXAction.C (init): find-replace _can_ be used in read-only
mode.
1999-12-16 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyxfont.C (ascent): Make sure that char is _always_ used as
unsigned.
(descent): ditto
(lbearing): ditto
(rbearing): ditto
* src/paragraph.C (GetWord): assert on pos>=0
(GetChar): ditto
* src/support/lyxstring.C: condition the use of an invariant on
ENABLE_ASSERTIONS
* src/support/lyxstring.h: ditto
* src/Bullet.[Ch]: replace DEBUG_AS_DEFAULT by ENABLE_ASSERTIONS.
Use LAssert.h instead of plain assert().
* src/support/lstrings.h: add LAssert.h, in case it is needed.
* src/lyxfunc.C: do not include LAssert.h, it is not used.
* src/support/filetools.C: ditto
* src/support/LAssert.h: make Assert a no-op if ENABLE_ASSERTIONS
is not defined.
* INSTALL: document the new configure flags
* configure.in: suppress --with-debug; add --enable-assertions
* acinclude.m4: various changes in alignment of help strings.
1999-12-16 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/kbmap.C: commented out the use of the hash map in kb_map,
beginning of movement to a stl::container.
* several files: removed code that was not in effect when
MOVE_TEXT was defined.
* lib/kbd/iso8859-1.cdef: removed bogus backslashes. Backslashes
for escaping should not be used. We can discuss if the string
should be enclosed in f.ex. [] instead of "".
* src/trans_mgr.C (insert): use the new returned value from
encodeString to get deadkeys and keymaps done correctly.
* src/chset.C (encodeString): changed to return a pair, to tell
what to use if we know the string.
* src/lyxscreen.h (fillArc): new function.
* src/FontInfo.C (resize): rewritten to use more std::string like
structore, especially string::replace.
* src/insets/insetlatexaccent.C (Draw): use fillArc for the
approp. accents.
* configure.in (chmod +x some scripts): remove config/gcc-hack
1999-12-15 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/buffer.C (writeFile): change once again the top comment in a
.lyx file to point to www.lyx.org and to use LYX_DOCVERSION
instead of an hardcoded version number.
(makeDocBookFile): ditto
* src/version.h: add new define LYX_DOCVERSION
* po/de.po: update from Pit Stterlin
* lib/bind/de_menus.bind: ditto.
* src/lyxfunc.C (Dispatch): call MenuExport()
* src/buffer.C (Dispatch): ditto
* src/lyx_cb.C (MenuMakeHTML): new function, moved from
LyXFunc::Dispatch().
(MenuExport): new function, moved from
LyXFunc::Dispatch().
* src/trans_mgr.C (insert): small cleanup
* src/chset.C (loadFile): ditto
* lib/kbd/iso8859-1.cdef: add missing backslashes
1999-12-15 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/insets/insetlatexaccent.C (Lbearing): new function, used to
help with placing the manually drawn accents better.
(Rbearing): ditto
(Draw): x2 and hg changed to float to minimize rounding errors and
help place the accents better.
* src/lyxfont.C (ascent): fixed faulty static_cast, casting from
unsigned short to char is just wrong...cast the char to unsigned
char instead so that the two values can compare sanely. This
should also make the display of insetlatexaccents better and
perhaps also some other insets.
(descent): ditto
(lbearing): new function
(rbearing): ditto
1999-12-15 Allan Rae <rae@lyx.org>
* src/stl_string_fwd.h, src/Makefile.am (lyx_SOURCES): added new
header that provides a wrapper around the very annoying SGI STL header
of the same name.
* src/support/lyxstring.C, src/LString.h:
removed old SGI-STL-compatability attempts.
* configure.in: Use LYX_STL_STRING_FWD.
* acinclude.m4 (LYX_STL_STRING_FWD), acconfig.h: Test if
stl_string_fwd.h is around and try to determine it's location.
Major improvement over previous SGI STL 3.2 compatability.
Three small problems remain with this function due to my zero
knowledge of autoconf. JMarc and lgb see the comments in the code.
1999-12-14 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/broken_const.h, config/hack-gcc, config/README: removed
* configure.in: remove --with-gcc-hack option; do not call
LYX_CXX_STL_STACK
* INSTALL: remove documentation of --with-broken-const and
--with-gcc-hack
* acconfig.h: remove all trace of BROKEN_CONST define
* src/buffer.C (makeDocBookFile): update version number in output
file.
(SimpleDocBookOnePar): fix an assert when trying to a character
access beyond string length
[Patch from Jose']
1999-12-13 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* po/de.po: fix the Export menu
* lyx.man: update the description of -dbg
* src/lyx_main.C (setDebuggingLevel): call Debug::showLevel()
(commandLineHelp): updated
(easyParse): show list of available debug levels if -dbg is passed
without argument.
* src/Makefile.am: add debug.C
* src/debug.h: moved some code to debug.C
* src/debug.C: new file. Contains code to set and show debug
level.
* src/layout.C: remove 'break' after 'continue' in switch
statements, since these cannot be reached.
1999-12-13 Allan Rae <rae@lyx.org>
* src/mathed/math_hash.C (math_hash): renamed from hash(), name clash.
(in_word_set): hash() -> math_hash()
* src/LString.h: Used USING_EXCEPTIONS in SGI STL-3.2 support
* acconfig.h: Added a test for whether we are using exceptions in the
current compilation run. If so USING_EXCEPTIONS is defined.
* config.in: Check for existance of stl_string_fwd.h
* src/LString.h: If compiling --with-included-string and SGI's
STL version 3.2 is present (see above test) we need to block their
forward declaration of string and supply a __get_c_string().
However, it turns out this is only necessary if compiling with
exceptions enabled so I've a bit more to add yet.
* src/insets/figinset.[Ch], src/insets/insetinclude.C,
src/insets/insetloa.C, src/layout.h, src/lyxparagraph.h,
src/support/LRegex.h, src/undo.h:
Shuffle the order of the included files a little to ensure that
LString.h gets included before anything that includes stl_string_fwd.h
* src/support/lyxstring.C: We need to #include LString.h instead of
lyxstring.h to get the necessary definition of __get_c_string.
(__get_c_string): New function. This is defined static just like SGI's
although why they need to do this I'm not sure. Perhaps it should be
in lstrings.C instead.
* lib/templates/IEEEtran.lyx: New template file.
1999-12-12 Lars Gullik Bjnnes <larsbj@lyx.org>
* Makefile.in.in (MKINSTALLDIRS): use $(srcdir)/@MKINSTALLDIRS@
* intl/Makefile.in (MKINSTALLDIRS): ditto
* src/LyXAction.C (init): changed to hold the LFUN data in a
automatic array in stead of in callso to newFunc, this speeds up
compilation a lot. Also all the memory used by the array is
returned when the init is completed.
* a lot of files: compiled with -Wold-style-cast, changed most of
the reported offenders to C++ style casts. Did not change the
offenders in C files.
* src/trans.h (Match): change argument type to unsigned int.
* src/support/DebugStream.C: fix some types on the streambufs so
that it works on a conforming implementation.
1999-12-10 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lib/examples/example_{raw,lyxified}.lyx: fix embarassing sentence.
* src/support/lyxstring.C: remove the inline added earlier since
they cause a bunch of unsatisfied symbols when linking with dec
cxx. Cxx likes to have the body of inlines at the place where they
are declared.
* src/trans.C (AddDeadkey): add an 'unsigned char' cast to avoid
accessing negative bounds in array. This fixes the crash when
inserting accented characters.
* src/trans.h (Match): ditto
* src/buffer.C (Dispatch): since this is a void, it should not try
to return anything...
1999-12-10 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/buffer.h: removed the two friends from Buffer. Some changes
because of this. Buffer::getFileName and Buffer::setFileName
renamed to Buffer::fileName() and Buffer::fileName(...).
1999-12-09 Lars Gullik Bjnnes <larsbj@lyx.org>
* buffer.[Ch], BufferView.[Ch] + other files: Moved Buffer::text
and Buffer::update(short) to BufferView. This move is currently
controlled by a define MOVE_TEXT, this will be removed when all
shows to be ok. This move paves the way for better separation
between buffer contents and buffer view. One side effect is that
the BufferView needs a rebreak when swiching buffers, if we want
to avoid this we can add a cache that holds pointers to LyXText's
that is not currently in use.
* buffer.[Ch], lyx_main.C: small changes to the "-export" patch by
Andr Pnitz.
1999-11-18 Andr Pnitz <poenitz@mathematik.tu-chemnitz.de>
* buffer.[Ch]: Dispatch() - new dispatcher on the buffer level
* lyx_main.C: new command line option -x (or --execute) and
-e (or --export). Now direct conversion from .lyx to .tex
(.dvi, .ps, ...) is possible ('lyx file.lyx --export latex')
Unfortunately, X is still needed and the GUI pops up during the
process...
1999-12-07 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/Spacing.C: add a using directive to bring stream stuff into
normal namespace.
* src/paragraph.C: ditto
* src/buffer.C: ditto
* NEWS: updated a bit the new features of 1.1.3 (took a few things
from Lars' announcement).
* lib/examples/nl_voorbeeld_{ruw,verlyxt}.lyx: new tutorial
example files from Tino Meinen.
1999-12-06 Allan Rae <rae@lyx.org>
* src/LaTeX.C (runBibTeX): fix typo in accessing submatch pair.
1999-12-07 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/lyxstring.C: added a lot of inline for no good
reason
* src/lyxfont.[Ch]: removed latexWriteStartChanges, and
latexWriteEndChanges, they were not used.
* src/layout.h (operator<<): output operator for PageSides
* src/mathed/math_iter.C (my_memcpy): slightly changed.
* some example files: loaded in LyX 1.0.4 and saved again to update
certain constructs (table format)
* a lot of files: did the change to use fstream/iostream for all
writing of files. Done with a close look at Andre Poenitz's patch.
* some files: whitespace changes.
1999-12-06 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/mathed/math_iter.C (my_memcpy): new function. Since the
built-in memcpy() is broken on egcs and gcc 2.95 for alpha
architecture, we provide our own. It is used unconditionnally, but
I do not think this is a performance problem. Thanks to Angus
Leeming <a.leeming@ic.ac.uk> for the code (and again to Michal
Jaegermann <michal@ellpspace.math.ualberta.ca> for finding it the
first time).
(GetInset): use my_memcpy.
(Insert): ditto
(Copy): ditto
* lib/chkconfig.ltx: some cleanup of the latex code. I am not sure
it is easier to understand, but it uses less TeX-only constructs now.
* acinclude.m4 (LYX_SEARCH_PROG): make it work when the PATH
elements contain spaces
* lib/configure: regenerated
* lib/configure.m4 (SEARCH_PROG): make it work when the PATH
elements contain spaces; display the list of programs that are
tried.
* autogen.sh: make sure lib/configure is executable
* lib/examples/*: rename the tutorial examples to begin with the
two-letters language code.
* src/lyxfunc.C (getStatus): do not query current font if no
buffer exists.
* src/lyx_cb.C (RunScript): use QuoteName
(MenuRunDvips): ditto
(PrintApplyCB): ditto
* src/support/filetools.[Ch] (QuoteName): new function. Add quotes
around argument, so that it works well with the current shell.
Does not work properly with OS/2 shells currently.
* src/LaTeXLog.C (ShowLatexLog): use Buffer::getLatexName
* src/LyXSendto.C (SendtoApplyCB): ditto
* src/lyxfunc.C (Dispatch): ditto
* src/buffer.C (runLaTeX): ditto
(runLiterate): ditto
(buildProgram): ditto
(runChktex): ditto
* src/lyx_cb.C (RunScript): ditto
(MenuMakeLaTeX): ditto
* src/buffer.h (getLatexName): new method
* src/support/filetools.C (MakeLatexName): renamed from SpaceLess
1999-12-02 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* images/sqrt.xpm: change name of the sqrt icon to sqrt_xpm.
* src/mathed/math_panel.C (mathed_get_pixmap_from_icon): ditto
(create_math_panel): ditto
* src/lyxfunc.C (getStatus): re-activate the code which gets
current font and cursor; add test for export to html.
* src/lyxrc.C (read): remove unreachable break statements; add a
few "using".
* src/bmtable.C (fl_set_bmtable_data): add a const_cast.
1999-12-01 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/mathed/formula.C (LocalDispatch): fix small whitspace bug
introduced by faulty regex.
* src/buffer.C: ditto
* src/lastfiles.C: ditto
* src/paragraph.C: ditto
* src/table.C: ditto
* src/vspace.C: ditto
* src/insets/figinset.C: ditto
Note: most of these is absolutely harmless, except the one in
src/mathed formula.C.
1999-11-30 Kayvan A. Sylvan <kayvan@satyr.sylvan.com>
* src/ImportNoweb.C (documentclass): fixed bounds for substr
operation, yielding correct results for the reLyX command.
1999-12-01 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/filetools.C (ExpandPath): removed an over eager
Assert.
(ReplaceEnvironmentPath): ditto
* src/toolbar.C (BubbleTimerCB): use C++ style casts. This clearly
shows that we are doing something fishy in our code...
(BubblePost): ditto
(ToolbarCB): ditto
* src/lyxrc.C (read): use a double switch trick to get more help
from the compiler. (the same trick is used in layout.C)
(write): new function. opens a ofstream and pass that to output
(output): new function, takes a ostream and writes the lyxrc
elemts to it. uses a dummy switch to make sure no elements are
forgotten.
* src/lyxlex.h: added a struct pushpophelper for use in functions
with more than one exit point.
* src/lyxlex.[Ch] (GetInteger): made it const
(GetFloat): ditto
(GetBool): ditto
* src/lyxfunc.C (Dispatch): added case for LFUN_SAVEPREFERENCES
* src/layout.[hC] : LayoutTags splitted into several enums, new
methods created, better error handling cleaner use of lyxlex. Read
the diff.
* src/bmtable.[Ch]: change some member prototypes because of the
image const changes.
* commandtags.h, src/LyXAction.C (init): new function:
"preferences-save", saves the lyxrc entries into .lyx/preferences.
This file is not read automatically but you can add \input
preferences to your lyxrc if you want to. We need to discuss how
to handle this.
* src/LaTeX.C (runBibTeX): use regex to match for the needed lines
in .aux, also remove .bib and .bst files from dependencies when
running bibtex.
* src/BufferView.C, src/LyXView.C: add const_cast several places
because of changes to images.
* lib/images/*: same change as for images/*
* lib/lyxrc.example: Default for accept_compound is false not no.
* images/*: changed to be const, however I have som misgivings
about this change so it might be changed back.
1999-11-26 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lib/configure, po/POTFILES.in: regenerated
* autogen.sh: autogenerate lib/configure from lib/configure.m4
* config/lib_configure.m4: removed
* lib/configure.m4: new file (was config/lib_configure.m4)
* configure.in: do not test for rtti, since we do not use it.
1999-11-26 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/lyxstring.C (lyxstring::Srep): Changed to use a
doubling of allocated space scheme. This makes it faster for large
strings end to use less memory for small strings. xtra rememoved.
* src/insets/figinset.C (waitalarm): commented out.
(GhostscriptMsg): use static_cast
(GhostscriptMsg): use new instead of malloc to allocate memory for
cmap. also delete the memory after use.
* src/lyx_cb.C (SetXtermCursor): made cursor_undefined a bool
* src/LaTeX.C (scanAux): new method. Scans the .aux file and looks
for changes in bibtex database or style.
(runBibTeX): remove all .bib and .bst files from dep before we
begin.
(run): use scanAuc in when dep file already exist.
* src/DepTable.C (remove_files_with_extension): new method
(exist): new method
* src/DepTable.[Ch]: made many of the methods const.
1999-11-25 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/bufferparams.C: make sure that the default textclass is
"article". It used to be the first one by description order, but
now the first one is "docbook".
* src/lyx_main.C (setDebuggingLevel): change type of argument to
string; call Debug::value.
(easyParse): pass complete argument to setDebuggingLevel().
* src/debug.h (value): fix the code that parses debug levels.
* src/debug.h: add new debug type ACTION, reserved for LyXAction
class.
* src/LyXAction.C: use Debug::ACTION as debug channel.
* src/lyxlookup.C: make the debug statements go to Debug::KEY.
* NEWS: updated for the future 1.1.3 release.
* src/mathed/symbol_def.h: swap the definitions of \varepsilon and
\epsilon. Now \epsilon shows as red text, and \varepsilon shows as
it should. This is of course a controversial change (since many
people will find that their lyx workscreen is suddenly full of
red), but done for the sake of correctness.
* src/mathed/formulamacro.h, src/mathed/math_macro.[Ch],
src/mathed/math_root.[Ch] (Clone): return a MathedInset*
* src/insets/inseterror.h, src/insets/inseturl.h,
src/insets/insetinfo.h, src/insets/figinset.h,
src/mathed/formulamacro.h, src/mathed/math_macro.h
(EditMessage): add a missing const and add _() to make sure that
translation happens
* src/ImportNoweb.C, src/LyXAction.h, src/insets/figinset.C,
src/insets/insetbib.C, src/support/filetools.C: add `using'
directives for cxx.
* src/lyxfunc.C (Dispatch): make sure nothing bad happens when
doing 'Insert index of last word' at the beginning of a paragraph.
1999-11-24 Lars Gullik Bjnnes <larsbj@lyx.org>
* several files: white-space changes.
* src/mathed/formula.C: removed IsAlpha and IsDigit
* src/insets/insetbib.C (getKeys): use findtexfile to look for the
.bib file. use a ifstream instead of FilePtr when parsing the .bib
file for keys.
* src/insets/figinset.C (GetPSSizes): don't break when
"EndComments" is seen. But break when a boundingbox is read.
* all classes inherited from Inset: return value of Clone
changed back to Inset *.
* all classes inherited form MathInset: return value of Clone
changed back to MathedInset *.
* src/insets/figinset.C (runqueue): use a ofstream to output the
gs/ps file. Might need some setpresicion or setw. However I can
see no problem with the current code.
(runqueue): use sleep instead of the alarm/signal code. I just
can't see the difference.
* src/paragraph.C (LyXParagraph): reserve space in the new
paragraph and resize the inserted paragraph to just fit.
* src/lyxfunc.h (operator|=): added operator for func_status.
* src/lyxfunc.C (MenuNew): use FileInfo instead of FilePtr to
check for readable file.
* src/lyx_cb.C (MenuMakeLaTeX): use FileInfo instead of FilePtr to
check for readable file.
(MenuMakeLinuxDoc): ditto
(MenuMakeDocBook): ditto
(MenuMakeAscii): ditto
(InsertAsciiFile): split the test for openable and readable
* src/bmtable.C (draw_bitmaptable): use
fl_state[fl_get_vclass()].depth instead of DefualtScreen.
* src/LaTeX.C, src/support/filetools.[Ch]: moved do_popen and
findtexfile from LaTeX to filetools.
* src/ImportNoweb.C (documentclass): rewrote to use ifstream
instead of FilePtr. Needs to be verified by a literate user.
1999-11-23 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/mathed/formula.[Ch] (GetCursorPos): add a missing 'const'.
(EditMessage): likewise.
* src/paragraph.C (SimpleTeXSpecialChars): output ~ and ^
respectively as \textasciitilde and \textasciicircum.
1999-11-22 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/lyxstring.h: made the methods that take iterators
use const_iterator.
* src/support/lstrings.C (countChar): use std::cound(itr, itr, val)
(regexMatch): made is use the real regex class.
* src/support/Makefile.am: changed to use libtool
* src/support/.cvsignore: added *.lo, .libs and libsupport.la
* src/mathed/math_defs.h: made the mathaligns be in a enum instead
of defines.
(MathIsInset ++): changed several macros to be inline functions
instead.
* src/mathed/Makefile.am: changed to use libtool
* src/mathed/.cvsignore: added *.lo, .libs and libmathed.la
* src/insets/inset* : Clone changed to const and return type is
the true insettype not just Inset*.
* src/insets/Makefile.am: changed to use libtool
* src/insets/.cvsignore: added *.lo, .libs and libinsets.la
* src/undo.[Ch] : added empty() and changed some of the method
names.
* src/texrow.[Ch]: rewrote to store texrow's in a std::list.
* src/lyxparagraph.h: use id() and id(...) instead of getID and
setID use block<> for the bullets array, added const several places.
* src/lyxfunc.C (getStatus): new function
* src/lyxfunc.[Ch] : small changes to take advantage of the new
LyXAction, added const to several funtions.
* src/filedlg.[Ch]: rewrote to store userchache and groupchache in
a std::map, and to store the dir items in a vector.
* src/Makefile.am (lyx_DEPENDENCIES): changed to use libtool files
as dependencies.
* src/LyXView.[Ch] + other files : changed currentView to view.
* src/LyXAction.[Ch] : ported from the old devel branch.
* src/.cvsignore: added .libs and a.out
* configure.in : changes to use libtool.
* acinclude.m4 : inserted libtool.m4
* .cvsignore: added libtool
1999-11-19 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/Makefile.am (lyx_DEPENDENCIES): give the explicit object
file name in insets and mathed directories (otherwise the
dependency is not taken in account under cygwin).
* src/text2.C (InsertString[AB]): make sure that we do not try to
read characters past the string length.
1999-11-18 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lib/doc/LaTeXConfig.lyx.in,
lib/chkconfig.ltx: remove the test for linuxdoc-sgml.sty.
* src/buffer.C (writeFile): Do not add a comment on top of .lyx
file saying who created them and when this heppened; this is
useless and annoys tools like cvs.
* lib/layouts/g-brief-{en,de}.layout,
lib/templates/g-brief-{en,de}.lyx: new versions of the textclass
from Thomas Hartkens <thomas@hartkens.de>.
* src/{insets,mathed}/Makefile.am: do not declare an empty
LDFLAGS, so that it can be set at configure time (useful on Irix
for -n32 flag).
* lib/reLyX/configure.in: make sure that the prefix is set
correctly in LYX_DIR.
1999-11-18 Andr Pnitz <poenitz@mathematik.tu-chemnitz.de>
* src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
be used by 'command-sequence' this allows to bind a key to a
sequence of LyX-commands
(Example: 'command-sequence math-insert alpha; math-insert beta;")
* src/LyXAction.C: add "command-sequence"
* src/LyXFunction.C: handling of "command-sequence"
* src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
&cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
* src/lyxserver.C, src/minibuffer.C: Use this new interface
1999-11-17 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/buffer.C (writeFile): Do not output a comment giving user
and date at the beginning of a .lyx file. This is useless and
annoys cvs anyway; update version number to 1.1.
* src/Makefile.am (LYX_DIR): add this definition, so that a
default path is hardcoded in LyX.
* configure.in: Use LYX_GNU_GETTEXT.
* acinclude.m4 (LYX_GNU_GETTEXT): new macro, essentially a copy of
AM_GNU_GETTEXT with a bug fixed.
* src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
* src/chset.C: add "using std::ifstream;" to please dec cxx.
* src/lyx_main.C (init), INSTALL.OS2: the environment variable
which is used to point to LyX data is now LYX_DIR_11x.
* lyx.man: convert to a unix text file; small updates.
1999-11-15 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/LSubstring.[Ch]: made the second arg of most of the
constructors be a const reference.
* src/mathed/math_parser.C (LexInitCodes): small bug introduced by
me fixed.
* src/support/lyxstring.[Ch] (swap): added missing member function
and specialization of swap(str, str);
* src/menus.C (ShowBufferMenu): to use the new BufferStorage
* src/bufferlist.[Ch]: use the new BufferStorage class and remove all
trace of the old one.
* src/undo.[Ch]: made the undostack use std::list to store undo's in
put the member definitions in undo.C.
* src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
NEW_TEXT and have now only code that was included when this was
defined.
* src/intl.C (LCombo): use static_cast
(LCombo2): ditto
(DispatchCallback): ditto
* src/definitions.h: removed whole file
* src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
* src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
parsing and stores in a std:map. a regex defines the file format.
removed unneeded members.
* src/bufferparams.h: added several enums from definitions.h here.
Removed unsused destructor. Changed some types to use proper enum
types. use block to have the temp_bullets and user_defined_bullets
and to make the whole class assignable.
* src/bufferparams.C (Copy): removed this functions, use a default
assignment instead.
* src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
isLiterate const.
* src/buffer.C (readLyXformat2): commend out all that have with
oldpapersize to do. also comment out all that hve to do with
insetlatex and insetlatexdel.
(setOldPaperStuff): commented out
* src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
* src/LyXAction.C: remove use of inset-latex-insert
* src/mathed/math_panel.C (button_cb): use static_cast
* src/insets/Makefile.am (insets_o_SOURCES): removed
insetlatex.[Ch]
* src/support/lyxstring.C (helper): use the unsigned long
specifier, UL, instead of a static_cast.
* src/support/Makefile.am (libsupport_a_SOURCES): added block.h
* src/support/block.h: new file. to be used as a c-style array in
classes, so that the class can be assignable.
1999-11-15 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyx_gui_misc.C (askForText): when fl_show_input() returns
NULL, make sure to return an empty string (it is not possible to
set a string to NULL).
1999-11-10 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
* src/support/lyxstring.C (helper): fix bogus cast in assertion.
* src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
link line, so that Irix users (for example) can set it explicitely to
"-n32".
* src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
it can be overidden at make time (static or dynamic link, for
example).
* src/vc-backend.C, src/LaTeXFeatures.h,
src/support/LRegex.C, src/support/LRegex.h: add a few "using"
statements to bring templates to global namespace.
1999-11-10 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/lyxstring.C (operator[] const): make it standard
conforming.
* src/minibuffer.C (Init): changed to reflect that more
information is given from the lyxvc and need not be provided here.
* src/lyxvc.[Ch]: rewrote to use the vc-backend.
* src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
* src/LyXView.C (UpdateTimerCB): use static_cast
(KeyPressMask_raw_callback): ditto
* src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
buffer_, a lot of changes because of this. currentBuffer() ->
buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
also changes to other files because of this.
1999-11-09 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/vc-backend.[Ch]: new files. The backends for vc handling,
have no support for RCS and partial support for CVS, will be
improved later.
* src/insets/ several files: changes because of function name
changes in Bufferview and LyXView.
* src/mathed/math_symbols.C (math_insert_symbol): use static_cast
* src/support/LSubstring.[Ch]: new files. These implement a
Substring that can be very convenient to use. i.e. is this
possible:
string a = "Mary had a little sheep";
Substring(a, "sheep") = "lamb";
a is now "Mary has a little lamb".
* src/support/LRegex.[Ch]: a regex class that can be used to pick
out patterns and subpatterns of strings. It is used by LSubstring
and also by vc-backend.C
* src/support/lyxstring.C: went over all the assertions used and
tried to correct the wrong ones and flag which of them is required
by the standard. some bugs found because of this. Also removed a
couple of assertions.
* src/support/Makefile.am (libsupport_a_SOURCES): added
LSubstring.[Ch] and LRegex.[Ch]
* src/support/FileInfo.h: have struct stat buf as an object and
not a pointer to one, some changes because of this.
* src/LaTeXFeatures.C (getTClassPreamble): also use the
information in layout when adding the layouts preamble to the
textclass preamble.
* src/LaTeXFeatures.h: use a vector<bool> to store the layout
usage in.
* configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
because of bug in OS/2.
1999-11-08 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lib/layouts/lyxmacros.inc (lyxcode): set the font with
\verbatim@font instead of \ttfamily, so that it can be redefined.
* src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
src/layout.h, src/text2.C: add 'using' directive to bring the
STL templates we need from the std:: namespace to the global one.
Needed by DEC cxx in strict ansi mode.
* src/support/LIstream.h,src/support/LOstream.h,
src/support/lyxstring.h,src/table.h,
src/lyxlookup.h: do not include <config.h> in header
files. This should be done in the .C files only.
* development/lyx.spec.in: WHATSNEW has been renamed to NEWS
(from Kayvan).
1999-11-05 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
from Kayvan to fix the tth invokation.
* development/lyx.spec.in: updates from Kayvan to reflect the
changes of file names.
1999-11-05 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/text2.C (InsertStringB): use std::copy
(InsertStringA): use std::copy
* src/bufferlist.C: use a vector to store the buffers in. This is
an internal change and should not affect any other thing.
* src/BufferView.C (waitForX): use XSync instead of the lengthy
stuff in waitForX.
* src/text.C (Fill): fix potential bug, one off bug.
1999-11-04 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/Makefile.am (lyx_main.o): add more files it depends on.
* src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
* src/support/lyxstring.C: use size_t for the reference count,
size, reserved memory and xtra.
(internal_compare): new private member function. Now the compare
functions should work for std::strings that have embedded '\0'
characters.
(compare): all compare functions rewritten to use
internal_compare.
1999-11-03 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/lyxstring.C (compare): pass c_str()
(compare): pass c_str
(compare): pass c_str
1999-11-03 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/support/DebugStream.C: <config.h> was not included correctly.
* lib/configure: forgot to re-generate it :( I'll make this file
auto generated soon.
1999-11-03 Lars Gullik Bjnnes <larsbj@lyx.org>
* acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
is used.
* src/support/lyxstring.C: some changes from length() to rep->sz.
avoids a function call.
* src/support/filetools.C (SpaceLess): yet another version of the
algorithm...now per Jean-Marc's suggestions.
1999-11-02 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/layout.C (less_textclass_desc): functor for use in sorting
of textclasses.
(LyXTextClass::Read): sort the textclasses after reading.
* src/support/filetools.C (SpaceLess): new version of the
SpaceLess functions. What problems does this one give? Please
report.
* images/banner_bw.xbm: made the arrays unsigned char *
1999-11-02 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/support/lyxstring.C (find): remove bogus assertion in the
two versions of find where this has not been done yet.
* src/support/lyxlib.h: add missing int return type to
lyx::chdir().
* src/menus.C (ShowFileMenu): disable exporting to html if no
html export command is present.
* config/lib_configure.m4: add a test for an HTML converter. The
programs checked for are, in this order: tth, latex2html and
hevea.
* lib/configure: generated from config/lib_configure.m4.
* src/lyxfunc.C (Dispatch): update and improve the execution of an
html converter. The parameters are now passed through $$FName and
$$OutName, instead of standard input/output.
* src/lyxrc.{C,h}: rename \tth_command to \html_command.
* lib/lyxrc.example: update description of \html_command.
add "quotes" around \screen_font_xxx font setting examples to help
people who use fonts with spaces in their names.
1999-11-02 Lars Gullik Bjnnes <larsbj@lyx.org>
* Distribution files: updates for v1.1.2
* src/support/lyxstring.C (find): remove bogus assert and return
npos for the same condition.
1999-11-01 Lars Gullik Bjnnes <larsbj@lyx.org>
* added patch for OS/2 from SMiyata.
1999-10-29 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/text2.C (CutSelection): make space_wrapped a bool
(CutSelection): dont declare int i until we have to.
(alphaCounter): return a char const *.
1999-10-28 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/support/syscall.C (Systemcalls::kill):
src/support/filetools.C (PutEnv, PutEnvPath):
src/lyx_cb.C (addNewlineAndDepth):
src/FontInfo.C (FontInfo::resize): condition some #warning
directives with WITH_WARNINGS.
1999-10-28 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/layout.[Ch] + several files: access to class variables
limited and made accessor functions instead a lot of code changed
becuase of this. Also instead of returning pointers often a const
reference is returned instead.
* src/form1.C (create_form_Figure): added a couple fo "no-c-format"
* src/Makefile.am (dist-hook): added used to remove the CVS from
cheaders upon creating a dist
(EXTRA_DIST): added cheaders
* src/support/lstrings.C (tostr(char)): fix it to handle param as
a character not as a small integer.
* src/support/lyxstring.C (find): removed Assert and added i >=
rep->sz to the first if.
1999-10-27 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
src/LyXView.C src/buffer.C src/bufferparams.C
src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C
src/text2.C src/insets/insetinclude.C:
lyxlayout renamed to textclasslist.
* src/layout.C: some lyxerr changes.
* src/layout.[Ch] (LyXLayout::Read): changed second paramter to
LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
(LyXLayoutList): removed all traces of this class.
(LyXTextClass::Read): rewrote LT_STYLE
(LyXTextClass::hasLayout): new function
(LyXTextClass::GetLayout): rewritten to return an iterator + has
both const and nonconst version.
(LyXTextClass::delete_layout): new function.
(LyXTextClassList::Style): bug fix. do the right thing if layout
is to big.
(LyXTextClassList::NumberOfLayout): new acces to layoutlist.
(LyXTextClassList::NameOfLayout): ditto
(LyXTextClassList::Load): ditto
* src/buffer.C (makeLaTeXFile): new access to layoutlist
* src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
* src/LyXAction.C (LookupFunc): added a workaround for sun
compiler, on the other hand...we don't know if the current code
compiles on sun at all...
* src/support/filetools.C (CleanupPath): subst fix
* src/insets/insetbib.C (delDatabase): subst fix, this looks
_really_ weird.
* src/support/filetools.C (PutEnvPath): subst fix, how come nobody
complained about this one?
* src/insets/insetinclude.C (Latex): subst fix
* src/insets/insetbib.C (getKeys): subst fix
* src/LyXSendto.C (SendtoApplyCB): subst fix
* src/lyx_main.C (init): subst fix
* src/layout.C (Read): subst fix
* src/lyx_sendfax_main.C (button_send): subst fix
* src/buffer.C (RoffAsciiTable): subst fix
* src/lyx_cb.C (MenuFax): subst fix
(PrintApplyCB): subst fix
1999-10-26 Juergen Vigna <jug@sad.it>
* src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
(Read): Cleaned up this code so now we read only format vestion >= 5
1999-10-26 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/filetools.C (PutEnvPath): subst fix for EMX, how
come nobody has complained about this one?
* src/insets/insetinclude.C (Latex): subst fix
* src/insets/insetbib.C (getKeys): subst fix
* src/lyx_main.C (init): subst fix
* src/layout.C (Read): subst fix
* src/buffer.C (RoffAsciiTable): subst fix
* src/lyx_cb.C (MenuFax): subst fix.
* src/layout.[hC] + some other files: rewrote to use
std::container to store textclasses and layouts in.
Simplified, removed a lot of code. Make all classes
assignable. Further simplifications and review of type
use still to be one.
* src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
lastfiles to create the lastfiles partr of the menu.
* src/lastfiles.[Ch]: rewritten to use deque to store the
lastfiles in. Uses fstream for reading and writing. Simplifies
code.
* src/support/syscall.C: remove explicit cast.
* src/BufferView.C (CursorToggleCB): removed code snippets that
were commented out.
use explicat C++ style casts instead of C style casts. also use
u_vdata instea of passing pointers in longs.
* src/PaperLayout.C: removed code snippets that were commented out.
* src/lyx_gui_misc.C: removed code snippets that were commented out.
* src/lyx_main.C: removed code snippets that wer commented out.
* src/paragraph.C: removed code snippets that were commented out.
* src/lyxvc.C (logClose): use static_cast
(logUpdate): ditto
(viewLog): remove explicit cast to void*
(showLog): removed old commented code
* src/menus.C: use static_cast instead of C style casts. use
u_vdata instead of u_ldata. remove explicit cast to (long) for
pointers. Removed old code that was commented out.
* src/insets/inset.C: removed old commented func
* src/insets/insetref.C (InsetRef): removed old code that had been
commented out for a long time.
(Edit): ditto
(escape): removed C style cast
* src/insets/insetlatexaccent.C (Draw): removed old commented code
* src/insets/insetlatex.C (Draw): removed old commented code
(Read): rewritten to use string
* src/insets/insetlabel.C (escape): removed C style cast
* src/insets/insetindex.h: removed vdata and ldata from FD_index_form
* src/insets/insetindex.C: use static_cast and u_vdata, removed
old commented code.
* src/insets/insetinclude.h: removed a couple of stupid bools
* src/insets/insetinclude.C (include_cb): use static_cast and u_data.
(Clone): remove C style cast
(getKeys): changed list to lst because of std::list
* src/insets/inseterror.C (Draw): removed som old commented code.
* src/insets/insetcommand.C (Draw): removed some old commented code.
* src/insets/insetbib.C (bibitem_cb): removed code that has been
commented out forever.
(bibitem_cb): use static_cast instead of C style cast
use of vdata changed to u_vdata.
* src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
parameter.
(CloseUrlCB): use static_cast instead of C style cast.
(CloseUrlCB): added a fl_free form...it seemed to be missing.
* src/insets/insetinfo.C (Edit): pass object in u_vdata instead
(C_InsetInfo_CloseInfoCB): forward the ob parameter
(CloseInfoCB): static_cast from ob->u_vdata instead.
(Edit): removed bogus arg from fl_set_object_shortcut, set to 1
instead.
* src/insets/inseterror.C (Edit): pass object in u_vdata instead
(C_InsetError_CloseErrorCB): forward the ob parameter
(CloseErrorCB): static_cast from ob->u_vdata instead.
* src/vspace.h: include LString.h since we use string in this class.
* src/vspace.C (lyx_advance): changed name from advance because of
nameclash with stl. And since we cannot use namespaces yet...I
used a lyx_ prefix instead. Expect this to change when we begin
using namespaces.
* src/BufferView.[Ch] (BufferView::~BufferView): removed
* src/BackStack.h: rewrote to use std::stack. made BackStackItem
and removed now defunct constructor and deconstructor.
* src/BufferView.h: have backstack as a object not as a pointer.
removed initialization from constructor. added include for BackStack
* development/lyx.spec.in (%build): add CFLAGS also.
* src/screen.C (drawFrame): removed another warning.
1999-10-25 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
README and ANNOUNCE a bit for the next release. More work is
needed, of course.
* src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
unbreakable if we are in freespacing mode (LyX-Code), but not in
latex mode.
1999-10-25 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/BackStack.h: fixed initialization order in constructor
* Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
* acinclude.m4 (VERSION): new rules for when a version is
development, added also a variable for prerelease.
(warnings): we set with_warnings=yes for prereleases
(lyx_opt): prereleases compile with same optimization as development
(CXXFLAGS): only use pedantic if we are a development version
* src/BufferView.C (restorePosition): don't do anything if the
backstack is empty.
* src/BackStack.h: added member empty, use this to test if there
is anything to pop...
1999-10-25 Juergen Vigna <jug@sad.it>
* forms/form1.fd +
* forms/layout_forms.fd +
* forms/latexoptions.fd +
* lyx.fd: changed for various form resize issues
* src/mathed/math_panel.C +
* src/insets/inseterror.C +
* src/insets/insetinfo.C +
* src/insets/inseturl.C +
* src/insets/inseturl.h +
* src/LaTeXLog.C +
* src/LyXSendto.C +
* src/PaperLayout.C +
* src/ParagraphExtra.C +
* src/TableLayout.C +
* src/form1.C +
* src/layout_forms.C +
* src/lyx.C +
* src/lyx_cb.C +
* src/lyx_gui.C +
* src/lyxfr0.C +
* src/lyxfunc.C +
* src/lyxvc.C +
* src/menus.C: fixed various resize issues. So now forms can be
resized savely or not be resized at all.
* forms/form_url.fd +
* src/insets/form_url.[Ch]: added because it's cleaner and easier
to modify IMO.
* src/insets/Makefile.am: added files form_url.[Ch]
1999-10-25 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* INSTALL: it is now possible to compile LyX with digital C++ 6.1
(and presumably 6.2).
* src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
remaining static member callbacks.
* src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
messages.
* src/support/lyxstring.h: declare struct Srep as friend of
lyxstring, since DEC cxx complains otherwise.
1999-10-24 Lars Gullik Bjnnes <larsbj@lyx.org>
1999-10-24 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/LaTeX.C (run): made run_bibtex also depend on files with
extension ".bst"
(runBibTeX): added scans for "\\bibstyle", now also ".bst" files
are put into the dependency file.
* src/spellchecker.C (create_ispell_pipe): removed old #warning,
the code has shown itself to work
(create_ispell_pipe): removed another warning, added a comment
instead.
* src/minibuffer.C (ExecutingCB): removed code that has been
commented out a long time
* src/lyxfunc.C (processKeyEvent): removed some very old commented
out code + a warning.
* src/support/lyxstring.h: comment out the three private
operators, when compiling with string ansi conforming compilers
they make problems.
* src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
unsigned char *.
(pixmapFromBitmapData): change type of bdata to be unsigned char *
(pixmapFromBitmapData): add a reinterpret_cast in the call to
XCreateImage
* src/mathed/math_panel.h: change 6th arg to AddBitmap to be
unsigned char *
* src/mathed/math_panel.C (create_math_panel): remove explicit
casts
* src/bmtable.h: change last paramter to fl_set_bmtable_data to be
unsigned char *.
* src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
(draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
to XCreatePixmapFromBitmapData
(fl_set_bmtable_data): change the last argument to be unsigned
char *
(fl_set_bmtable_file): change bdata to unsinged char *, change bw
and bh to be unsigned int, remove explicit casts in call to
XReadBitmapFileData.
* images/arrows.xbm: made the arrays unsigned char *
* images/varsz.xbm: ditto
* images/misc.xbm: ditto
* images/greek.xbm: ditto
* images/dots.xbm: ditto
* images/brel.xbm: ditto
* images/bop.xbm: ditto
* Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
* acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed.
(LYX_PROG_CXX): added -pedantic to g++ compile options when
with-warnings, removed the __STRING_ANSI__ hack, seems to not be
needed.
(LYX_CXX_CHEADERS): added <clocale> to the test.
1999-10-23 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
* src/support/lyxstring.C (append): fixed something that must be a
bug, rep->assign was used instead of rep->append.
* src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
and LOstream.h
* src/lyxfunc.C (processKeyEvent): removed faulty line that made
lyx insert double chars. Fix spotted by Kayvan.
1999-10-23 Asger Alstrup Nielsen <alstrup@alstrup.galaxy.dk>
* Fixed the tth support. I messed up with the Emacs patch apply feature
and omitted the changes in lyxrc.C.
1999-10-22 Juergen Vigna <jug@sad.it>
* src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
* src/lyx_cb.C (MenuInsertRef) +
* src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
the form cannot be resized under it limits (fixes a segfault)
* src/lyx.C (create_form_form_ref) +
* forms/lyx.fd: Changed Gravity on name input field so that it is
resized correctly.
1999-10-22 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
<ostream> and <istream>.
* acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
whether <fstream> provides the latest standard features, or if we
have an oldstyle library (like in egcs).
(LYX_CXX_STL_STRING): fix the test.
* src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
code on MODERN_STL_STREAM.
* src/support/lyxstring.h: use L{I,O}stream.h.
* src/support/L{I,O}stream.h: new files, designed to setup
correctly streams for our use
- includes the right header depending on STL capabilities
- puts std::ostream and std::endl (for LOStream.h) or
std::istream (LIStream.h) in toplevel namespace.
1999-10-22 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/LaTeX.C (run): added a check in 0 sumchange so that if it
was a bib file that had been changed we ensure that bibtex is run.
(runBibTeX): enhanced to extract the names of the bib files and
getting their absolute path and enter them into the dep file.
(findtexfile): static func that is used to look for tex-files,
checks for absolute patchs and tries also with kpsewhich.
Alternative ways of finding the correct files are wanted. Will
probably be moved.
(do_popen): function that runs a command using popen and returns
the whole output of that command in a string. Should be moved to
somewhere else.
* src/DepTable.[Ch] (extchanged): new function that returns true if a
file with extension ext has changed.
* src/insets/figinset.C: added ifdef guards around the fl_free
code that jug commented out. Now it is commented out when
compiling with XForms == 0.89.
* src/support/lyxstring.C: moved the definition of lyxstring::Srep
to lyxstring.C, and only keep a forward declaration in
lyxstring.h. Simplifies the header file a bit and should help a
bit on compile time too. Also changes to Srep will not mandate a
recompile of code just using string.
(~lyxstring): definition moved here since it uses srep.
(size): definition moved here since it uses srep.
* src/support/lyxstring.h: removed a couple of "inline" that should
not be there.
1999-10-21 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
the 'ob' argument.
1999-10-21 Juergen Vigna <jug@sad.it>
* src/table.C (SetPWidth): Just a small fix so the alignment is not
set to left if I just remove the width entry (or it is empty).
* src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
paragraph when having dummy paragraphs.
1999-10-20 Juergen Vigna <jug@sad.it>
* src/insets/figinset.C: just commented some fl_free_form calls
and added warnings so that this calls should be activated later
again. This avoids for now a segfault, but we have a memory leak!
* src/lyxfunc.C (processKeyEvent) (Dispatch): changed
'const char * argument' to 'string argument', this should
fix some Asserts() in lyxstring.C.
* src/lyxfunc.h: Removed the function argAsString(const char *)
as it is not used anymore.
1999-10-20 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/lyxstring.C (getline): reads now _all_ chars. uses
get instead of >>
* src/Literate.h: some funcs moved from public to private to make
interface clearer. Unneeded args removed.
* src/Literate.C (scanLiterateLogFile): rewritten to use iostream
instead of lyxlex.
(scanBuildLogFile): ditto
* src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
normal TeX Error. Still room for improvement.
* src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
* src/buffer.C (insertErrors): changes to make the error
desctription show properly.
* src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
could never happen
* src/support/lyxstring.C (helper): changed to use
sizeof(object->rep->ref).
(operator>>): changed to use a pointer instead.
* src/support/lyxstring.h: changed const reference & to value_type
const & lets see if that helps.
1999-10-19 Lars Gullik Bjnnes <larsbj@lyx.org>
* Makefile.am (rpmdist): fixed to have non static package and
verison.
* src/support/lyxstring.C: removed the compilation guards
* src/vspace.C (nextToken): use i + 1 instead of ++i. Maks things
a bit clearer.
* src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
conditional compile of lyxstring.Ch
* acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
stupid check, but it is a lot better than the bastring hack.
(LYX_CXX_STL_STRING): bruker n AM_CONDITIONAL(USE_LYXSTRING
* several files: changed string::erase into string::clear. Not
really needed.
* src/chset.C (encodeString): use a char temporary instead
* src/table.C (TexEndOfCell): added tostr around
column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
(TexEndOfCell): ditto
(TexEndOfCell): ditto
(TexEndOfCell): ditto
(DocBookEndOfCell): ditto
(DocBookEndOfCell): ditto
(DocBookEndOfCell): ditto
(DocBookEndOfCell): ditto
* src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
* src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
* src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
(MenuBuildProg): added tostr around ret
(MenuRunChktex): added tostr around ret
(DocumentApplyCB): added tostr around ret
* src/chset.C (encodeString): added tostr around t->ic
* src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
(makeLaTeXFile): added tostr around tocdepth
(makeLaTeXFile): added tostr around ftcound - 1
* src/insets/insetbib.C (setCounter): added tostr around counter.
* src/support/lyxstring.h: added an operator+=(int) to catch more
mistakes.
* src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
(lyxstring): We DON'T allow NULL pointers.
1999-10-19 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/mathed/math_macro.C (MathMacroArgument::Write,
MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
when writing them out.
* src/LString.C: remove, since it is not used anymore.
* src/support/lyxstring.C: condition the content to
USE_INCLUDED_STRING macro.
* src/mathed/math_symbols.C, src/support/lstrings.C,
src/support/lyxstring.C: add `using' directive to specify what
we need in <algorithm>. I do not think that we need to
conditionalize this, but any thought is appreciated.
* many files: change all callback functions to "C" linkage
functions to please strict C++ compilers like DEC cxx 6.1 in mode
strict_ansi. Those who were static are now global.
The case of callbacks which are static class members is
trickier, since we have to make C wrappers around them (see
InsetError, InsetInfo and InsetUrl). The same holds for friends. I
did not finish this yet, since it defeats the purpose of
encapsulation, and I am not sure what the best route is.
1999-10-19 Juergen Vigna <jug@sad.it>
* src/support/lyxstring.C (lyxstring): we permit to have a null
pointer as assignment value and just don't assign it.
* src/vspace.C (nextToken): corrected this function substituting
find_first(_not)_of with find_last_of.
* src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
(TableOptCloseCB) (TableSpeCloseCB):
inserted fl_set_focus call for problem with fl_hide_form() in
xforms-0.89.
1999-10-19 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
string.
1999-10-18 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
LyXLex::next() and not eatline() to get its argument.
1999-10-17 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/DepTable.[Ch]: rewritten to store the dependencies in a map
instead, use fstreams for io of the depfile, removed unneeded
functions and variables.
* src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
vector instead, removed all functions and variables that is not in
use.
1999-10-16 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/buffer.C (insertErrors): use new interface to TeXError
* Makefile.am (rpmdist): added a rpmdist target
* lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
per Kayvan's instructions.
1999-10-15 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/Makefile.am: add a definition for localedir, so that locales
are found after installation (Kayvan)
1999-10-14 Lars Gullik Bjnnes <larsbj@lyx.org>
* development/.cvsignore: new file.
1999-10-14 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
C++ compiler provides wrappers for C headers and use our alternate
version otherwise.
* configure.in: use LYX_CXX_CHEADERS.
* src/cheader/: new directory, populated with cname headers from
libstdc++-2.8.1. They are a bit old, but probably good enough for
what we want (support compilers who lack them).
* src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
from includes. It turns out is was stupid.
1999-10-14 Lars Gullik Bjnnes <larsbj@lyx.org>
* lib/Makefile.am (install-data-local): forgot a ';'
(install-data-local): forgot a '\'
(libinstalldirs): needed after all. reintroduced.
1999-10-13 Lars Gullik Bjnnes <larsbj@lyx.org>
* configure.in (AC_OUTPUT): added lyx.spec
* development/lyx.spec: removed file
* development/lyx.spec.in: new file
* po/*.po: merged with lyx.pot becuase of make distcheck
* lib/Makefile.am (dist-hook): added dist-hook so that
documentation files will be included when doing a make
dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
(pkgdata_SCRIPTS): added configure.cmd for now, we can use som
conditional later.
more: tried to make install do the right thing, exclude CVS dirs
etc.
* src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
Path would fit in more nicely.
* all files that used to use pathstack: uses now Path instead.
This change was a lot easier than expected.
* src/support/path.h: new file
* src/support/Makefile.am (libsupport_a_SOURCES): added path.h
* src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
* src/support/lyxstring.C (getline): Default arg was given for
para 3. removed.
* Configure.cmd: removed file
1999-10-13 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/support/DebugStream.[Ch]: remove the explicit std:: before
streams classes and types, add the proper 'using' statements when
MODERN_STL is defined.
* src/debug.h: move the << operator definition after the inclusion
of DebugStream.h
* src/support/filetools.C: include "LAssert.h", which is needed
later.
* src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
to includes.
* src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
include "debug.h" to define a proper ostream.
1999-10-12 Asger Alstrup Nielsen <alstrup@alstrup.galaxy.dk>
* src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
method to the SystemCall class which can kill a process, but it's
not fully implemented yet.
* src/*.C: Changed Systemcalls::Startscript() to startscript()
* src/support/FileInfo.h: Better documentation
* src/lyxfunc.C: Added support for buffer-export html
* src/menus.C: Added Export->As HTML...
* lib/bind/*.bind: Added short-cut for buffer-export html
* src/lyxrc.*: Added support for new \tth_command
* lib/lyxrc.example: Added stuff for new \tth_command
1999-10-12 Lars Gullik Bjnnes <larsbj@lyx.org>
* lib/Makefile.am (IMAGES): removed images/README
(pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
installes in correct place. Check permisions is installed
correctly.
* src/LaTeX.C: some no-op changes moved declaration of some
variables around.
* src/LaTeX.h (LATEX_H): changed include guard name
1999-10-12 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lib/reLyX/Makefile.am: install noweb2lyx.
* lib/Makefile.am: install configure.
* lib/reLyX/configure.in: declare a config aux dir; set package
name to lyx (not sure what the best solution is); generate noweb2lyx.
* lib/layouts/egs.layout: fix the bibliography layout.
1999-10-08 Jrgen Vigna <jug@sad.it>
* src/support/filetools.C (FileOpenSearch): Fixed a bug where
when in the PATH was something like /usr/bin;;/bin (note: the ;;)
it returned without continuing to search the path.
1999-10-07 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/insets/insetquotes.C (Draw): Simplified a gread deal. This
also fixes a bug. It is not allowed to do tricks with std::strings
like: string a("hei"); &a[e]; this will not give what you
think... Any reason for the complexity in this func?
1999-10-06 Asger Alstrup Nielsen <alstrup@diku.dk>
* Updated README and INSTALL a bit, mostly to check that my
CVS rights are correctly set up.
1999-10-06 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/lyxstring.C (helper): removed bogus Assert. strlen
does not allow '\0' chars but lyxstring and std::string does.
1999-10-05 Lars Gullik Bjnnes <larsbj@lyx.org>
* autogen.sh (AUTOCONF): let the autogen script create the
POTFILES.in file too. POTFILES.in should perhaps now not be
included in the cvs module.
* some more files changed to use C++ includes instead of C ones.
* src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
not assigned.
(Reread): added tostr to nlink. buggy output otherwise.
(Reread): added a string() around szMode when assigning to Buffer,
without this I got a log of garbled info strings.
* acconfig.h: commented out the PTR_AS_INT macros. They should not
be needed.
* I have added several ostream & operator<<(ostream &, some_type)
functions. This has been done to avoid casting and warnings when
outputting enums to lyxerr. This as thus eliminated a lot of
explicit casts and has made the code clearer. Among the enums
affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
mathed enums, some font enum the Debug::type enum.
* src/support/lyxstring.h (clear): missing method. equivalent of
erase(0, npos).
* all files that contained "stderr": rewrote constructs that used
stderr to use lyxerr instead. (except bmtable)
* src/support/DebugStream.h (level): and the passed t with
Debug::ANY to avoid spurious bits set.
* src/debug.h (Debug::type value): made it accept strings of the
type INFO,INIT,KEY.
* configure.in (Check for programs): Added a check for kpsewhich,
the latex generation will use this later to better the dicovery of
all used files.
* src/BufferView.C (create_view): we don't need to cast this to
(void*) that is done automatically.
(WorkAreaButtonPress): removed some dead code.
1999-10-05 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
is not overwritten when translated (David Sua'rez de Lis).
* lib/CREDITS: Added David Sua'rez de Lis
* lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
* src/bufferparams.C (BufferParams): default input encoding is now
"latin1"
* acinclude.m4 (cross_compiling): comment out macro
LYX_GXX_STRENGTH_REDUCE.
* acconfig.h: make sure that const is not defined (to empty) when
we are compiling C++. Remove commented out code using SIZEOF_xx
macros.
* configure.in : move the test for const and inline as late as
possible so that these C tests do not interefere with C++ ones.
Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
has not been proven.
1999-10-04 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/table.C (getDocBookAlign): remove bad default value for
isColumn parameter.
* src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
shortcut.
(ShowFileMenu2): ditto.
* lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
of files to ignore.
1999-10-04 Lars Gullik Bjnnes <larsbj@lyx.org>
* Most files: finished the change from the old error code to use
DebugStream for all lyxerr debugging. Only minor changes remain
(e.g. the setting of debug levels using strings instead of number)
1999-10-02 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/layout.C (Add): Changed to use compare_no_case instead of
strcasecmp.
* src/FontInfo.C: changed loop variable type too string::size_type.
1999-10-01 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
set ETAGS_ARGS to --c++
1999-09-30 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/table.C (DocBookEndOfCell): commented out two unused variables
* src/paragraph.C: commented out four unused variables.
* src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
insed a if clause with type string::size_type.
* src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
string::size_type.
* src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
* src/lyx_cb.C (ReplaceWord): use string::size_type as loop
variable, also changed loop to go from 0 to lenght + 1, instead of
-1 to length. This should be correct.
* src/LaTeX.C (scanError): use string::size_type as loop variable
type.
* src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
(l.896) since y_tmp and row was not used anyway.
* src/insets/insetref.C (escape): use string::size_type as loop
variable type.
* src/insets/insetquotes.C (Width): use string::size_type as loop
variable type.
(Draw): use string::size_type as loop variable type.
* src/insets/insetlatexaccent.C (checkContents): use
string::size_type as loop variable type.
* src/insets/insetlabel.C (escape): use string::size_type as loop
variable type.
* src/insets/insetinfo.C: added an extern for current_view.
* src/insets/insetcommand.C (scanCommand): use string::size_type
as loop variable type.
* most files: removed the RCS tags. With them we had to recompile
a lot of files after a simple cvs commit. Also we have never used
them for anything meaningful.
* most files: tags-query-replace NULL 0. As adviced several plases
we now use "0" instead of "NULL" in our code.
* src/support/filetools.C (SpaceLess): use string::size_type as
loop variable type.
1999-09-29 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/paragraph.C: fixed up some more string stuff.
1999-09-28 Lars Gullik Bjnnes <larsbj@lyx.org>
* src/support/filetools.h: make modestr a std::string.
* src/filetools.C (GetEnv): made ch really const.
* src/lyxlib.h: removed the Maximum and Minimum inline functions,
made code that used these use max/min from <algorithm> instead.
* changed several c library include files to their equivalent c++
library include files. All is not changed yet.
* created a support subdir in src, put lyxstring and lstrings
there + the extra files atexit, fileblock, strerror. Created
Makefile.am. edited configure.in and src/Makefile.am to use this
new subdir. More files moved to support.
* imported som of the functions from repository lyx, filetools
* ran tags-query-replace on LString -> string, corrected the bogus
cases. Tried to make use of lstrings.[hC], debugged a lot. There
is still some errors in there. This is errors where too much or
too litle get deleted from strings (string::erase, string::substr,
string::replace), there can also be some off by one errors, or
just plain wrong use of functions from lstrings. Viewing of quotes
is wrong.
* LyX is now running fairly well with string, but there are
certainly some bugs yet (see above) also string is quite different
from LString among others in that it does not allow null pointers
passed in and will abort if it gets any.
* Added the revtex4 files I forgot when setting up the repository.
1999-09-27 Lars Gullik Bjnnes <larsbj@lyx.org>
* All over: Tried to clean everything up so that only the files
that we really need are included in the cvs repository.
* Switched to use automake.
* Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
* Install has not been checked.
1999-09-22 Lars Gullik Bjnnes <larsbj@lyx.org>
* po/pt.po: Three errors:
l.533 and l.538 format specification error
l. 402 duplicate entry, I just deleted it.
|