1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106
|
2006-08-17 Fred Kiefer <FredKiefer@gmx.de>
* Source/xlib/GSXftFontInfo.m:
changed method signatures to fix typos (lenght->length)
Patch by: Hans Baier <hansfbaier@gmail.com>
2006-08-13 Christopher Armstrong <carmstrong@fastmail.com.au>
* Source/winlib/WIN32GState.m: Fixups to last patch
2006-08-10 Christopher Armstrong (carmstrong@fastmail.com.au)
(patch committed by Greg Casamento)
* Source/winlib/WIN32GState.m: Better 24bit image support, Slightly
extended composite method, Dashed-line handling (for selections)
* Headers/winlin/WIN32FontInfo.m: Changed method
signature draw:length:onDC:at: to correct spelling of length.
2006-08-01 Riccardo Mottola <riccardo@kaffe.org>
* Headers/xlib/XGPrivate.h,
Headers/xlib/GSXftFontInfo.h,
Headers/xlib/XGFontSetFontInfo.h:
changed method signatures to fix bug intruduced by RFM during typo fixes
2006-07-09 Fred Kiefer <FredKiefer@gmx.de>
* Header/x11/XGGeneric.h,
* Source/x11/XGServerWindow.m (-_setupRootWindow, -window::::),
* Source/x11/XGServerEvent.m (-processEvent:):
Impelemented hanlding for _NET_WM_PING.
2006-07-07 Richard Frith-Macdonald <rfm@gnu.org>
* Source/x11/XGServer.m:
Handle SIGTERM by calling ([NSApp terminate: NSApp]) to shut down
cleanly.
2006-07-04 Richard Frith-Macdonald <rfm@gnu.org>
* Source/art/ftfont.m:
* Source/x11/XGServer.m:
* Source/x11/XGDragView.m:
* Source/GSBackend.m:
* Source/gsc/GSGState.m:
* Tools/gpbs.m:
Avoid spurious warnings produced by gcc-4.1
2006-06-22 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/gpbs.m: Fix to get profiling to work for this daemon
2006-05-29 Fred Kiefer <FredKiefer@gmx.de>
* Source/xlib/XGGState.m (-dealloc, -deepen):
Free XFT drawing structures and don't reuse the same ones for
copies of the gstate. Fixes bug #13705.
2006-05-29 Fred Kiefer <FredKiefer@gmx.de>
* Source/xlib/GSXftFontInfo.m (FcFontEnumerator
-defaultSystemFontName, -defaultBoldSystemFontName,
-defaultFixedPitchFontName): Added this methods which return
values similar to the art and cairo backend.
Removed compiler warnings from this file.
* Source/xlib/XGFontSetFontInfo.m (-dealloc): Call super dealloc.
* Source/xlib/XGGeometry.m
* Source/xlib/XGFont.m
* Source/xlib/XGGState.m:
* Tools/font_cacher.m:
Removed compiler warnings.
2006-05-27 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m (-_DPSsetcursor::): Don't set cursor
on root window. Patch by Mircea Trache <aer@shaw.ca>.
2006-05-13 Fred Kiefer <FredKiefer@gmx.de>
* Headers/x11/XGServer.h,
* Source/x11/XGServerWindow.m (-_XFrameToXHints:for:): New method to
compute X hints directly from X frame. Previously the X frame
was converted to an OS frame and from this the X hints were computed.
* Source/x11/XGServerWindow.m, Source/x11/XGServerEvent.m:
Replaced all usages of [_OSFrameToXHints:for:] with [_XFrameToXHints:for:].
2006-05-04 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m (-styleoffsets::::::): New method to
compute window frame offset based on the _NET_FRAME_EXTENTS or
_KDE_NET_WM_FRAME_STRUT property. This is based on a slightly
extended patch by Yen-Ju Chen <yjchenx@hotmail.com>.
Call this new method from [styleoffsets:::::] and [_OSFrameToXHints:].
* Source/x11/XGServerWindow.m (-iconTileImage): Make sure the
window pointer gets freed.
2006-05-03 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m (-nativeWindow:::::): Implemented to
support using an X window for GNUstep drawing.
2006-04-30 David Ayers <d.ayers@inode.at>
* Source/x11/raster.c (RCreateImage): Remove unused variables.
* Source/x11/XGServerEvent.m (gotShmCompletion:) Declare privat
interface for shared memory handling.
2006-03-13 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerWindow.m (titlewindow::): Set NAME and ICON_NAME
WM properties (Patch #5014 from Yen-Ju Chen).
2006-03-12 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/XGCairoGlitzSurface.m
* Headers/cairo/XGCairoGlitzSurface.h:
Rewrote to fit with changed glitz interface.
2006-03-13 Adam Fedor <fedor@gnu.org>
* Version 0.10.3
2006-03-13 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m (-termwindow:): Reset the window
cache, if it points to the terminated window.
2006-03-12 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/NSBezierPathCairo.m
* Source/cairo/NSBezierPathCairo.h
* Source/cairo/CairoDevice.m
* Source/cairo/CairoFontManager.m
* Source/cairo/CairoFreeTypeFontInfo.m
* Headers/cairo/CairoDevice.m
* Headers/cairo/CairoFontManager.m
* Headers/cairo/CairoFreeTypeFontInfo.m:
Removed these files.
* Source/cairo/GNUmakefile:
Removed references to obsolete files.
* Source/cairo/CairoFontInfo.m (-setCacheSize:):
Fill the cache with zeros.
* Source/cairo/CairoFontInfo.m (-setupAttributes):
Free the font options.
* Source/cairo/CairoGState.m (:bezierPath, -GSSendBezierPath:):
Added NSBezierPath methods.
* Source/cairo/XGCairoXImageSurface.m
* Source/cairo/CairoContext.m
* Source/cairo/XGCairoSurface.m
* Source/cairo/CairoSurface.m
* Source/cairo/XGCairoGlitzSurface.m
* Headers/cairo/CairoSurface.h:
Clean up of cairo backend code.
2006-03-07 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoGState.m (-compositeGState:...fraction:,
DPSimage::...:): Handle flipped views correctly.
2006-02-22 Richard Frith-Macdonald <rfm@gnu.org>
* Source/gsc/GSStreamContext.m: Fix opening of file on mingw32
Don't log where we are printingf to unless debugging is on.
2006-02-13 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoGState.m (-copyWithZone:): Handle more of the
state parameters in copy.
* Source/cairo/CairoGState.m (-compositerect:op:): Protect
operator setting with save/restore.
2006-02-12 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoGState.m (-compositeGState:...fraction:): Deal
with flipped views. Also some cleanup in the whole file and a hack
to set alpha.
2006-02-11 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoGState.m (-DPSImage::::::::): Handle missing
parameters, row end padding and destroy the temporary image at the
very end.
2006-02-06 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServer.m (_initXContext): Don't set the environment
value for NSHOST. Patch by Tim MacIntosh <tmcintos@avalon.net>.
See mails on dev mailing list for more explaination.
2006-02-06 Fred Kiefer <FredKiefer@gmx.de>
* Headers/x11/xdnd.h: Declare two more functions used in xpbs.m.
* Tools/gpbs.m: Removed compiler warnings about mismatching declarations.
2006-01-29 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoFontInfo.m (_cairo_extents_for_NSGlyph,
-drawGlyphs:length:on:) Corrected the conversion from NSGlyph to UTF8.
* Source/cairo/CairoFontEnumerator.m:
Use the same default fonts as the art backend.
2006-01-23 Fred Kiefer <FredKiefer@gmx.de>
* Headers/cairo/CairoFaceInfo.h,
* Source/cairo/CairoFaceInfo.m,
* Source/cairo/CairoFontEnumerator.m,
* Source/cairo/CairoFontInfo.m:
Rewrite of all cairo font handling to work with exported cairo
functions and enumerate fonts with the font config library.
2006-01-14 Richard Frith-Macdonald <rfm@gnu.org>
* Source/gsc/GSContext.m:
* Source/x11/XGServer.m:
* Source/x11/XGServerWindow.m:
* Source/x11/XWindowBuffer.m:
* Headers/x11/XGServerWindow.h:
Some fixes for 64bit processor support. In particular, allow for
bug/feature of X that 32bit data supplied in XChangeProperty must
actually be 64bit on a 64bit machine. The X client library discards
the upper 32bits of each value when encoding the data to be sent to
the server. These changes fix WindowMaker interaction on AMD64.
2006-01-09 Richard Frith-Macdonald <rfm@gnu.org>
* Source/win32/WIN32Server.m: Attempt to terminate gracefully when
a quit message is received.
2005-12-22 Adam Fedor <fedor@gnu.org>
* Version 0.10.2
* Source/art/ARTContext (-beep): Removed, unused.
* Source/xdps/NSDPSContext.m (-beep): Idem.
2005-12-20 Adam Fedor <fedor@gnu.org>
* Source/art/ARTContext.m ([ARTContext -beep]): Respect user setting
of bell volume.
* Source/x11/XGServe.m: Idem.
2005-12-16 Adam Fedor <fedor@gnu.org>
* configure.in: Check for Xutf8LookupString
* Source/x11/XIMInputServer.m: Use it.
2005-12-10 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m (-titlewindow::): Use UTF8 window
title where possible.
2005-11-20 Adam Fedor <fedor@gnu.org>
* configure.ac: Check for winlib as well so we don't get invalid
backend.
2005-11-19 21:39 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m (flip_bytes, byte_order)
(-initWithContextInfo:): Detect if the server doesn't have the same
endianness and adjust the color bitmasks if necessary.
2005-11-18 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m (-window::::): Don't use the NET WM
window icon for Window Maker.
* Source/x11/XGServerWindow.m (_createNetIcon:::, _setNetWMIconFor:):
Rewrote this methods to be prepared to use the mini window icon,
when that gets available in back.
2005-11-16 Richard Frith-Macdonald <rfm@gnu.org>
* Source/art/composite.m:
* Source/art/ftfont-old.m:
* Source/art/ftfont.m:
* Source/art/shfill.m:
* Source/cairo/CairoDevice.m:
* Source/cairo/CairoFreeTypeFontInfo.m:
* Source/cairo/CairoGState.m:
* Source/gsc/GSContext.m:
* Source/gsc/GSStreamContext.m:
* Source/win32/GSDisplayServer_details.m:
* Source/win32/WIN32Server.m:
* Source/win32/w32_activate.m:
* Source/win32/w32_debug.m:
* Source/win32/w32_movesize.m:
* Source/win32/w32_notifications.m:
* Source/win32/w32_windowdisplay.m:
* Source/winlib/WIN32GState.m:
* Source/x11/XGGLContext.m:
* Source/x11/XGGLFormat.m:
* Source/x11/XGServerEvent.m:
* Source/x11/XGServerWindow.m:
* Source/xdps/AFMFileFontInfo.m:
* Source/xdps/NSDPSContext.m:
* Source/xdps/NSDPSContextOps.m:
* Source/xlib/XGBitmap.m:
* Source/xlib/XGCommonFont.m:
* Source/xlib/XGFontSetFontInfo.m:
* Source/xlib/XGGState.m:
* Tools/font_cacher.m:
* Tools/xpbs.m:
Some fixups for coding style violations. Should have no effect other
than to render code more consistent/readable.
2005-11-07 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m (_createNetIcon, _setNetWMIconFor:):
New methods to create and set NET WM icon for window.
* Source/x11/XGServerWindow.m (-window::::): Use this methods to
set window icon.
* Source/cairo/CairoGState.m (-DPSImage::::::::): Try to deal with
flipped views.
* Source/cairo/CairoFontInfo.m: Reduced the amount of unexported cairo
functions we use.
2005-10-30 Richard Frith-Macdonald <rfm@gnu.org>
* Source/win32/WIN33Server.m: synchronize defaults so settings are
not lost. Tidy a lot of stuff to conform to coding standards.
Update event handling code to use ET_WINMSG rather than less versatile
deprecated API.
2005-10-23 Adam Fedor <fedor@gnu.org>
* configure.ac: Check for invalid backend graphics name.
Error if no X11 libraries if using x11 server.
2005-10-20 Adam Fedor <fedor@gnu.org>
* Headers/win32/WIN32Server.h: uint -> unsigned int
* Source/win32/...: Idem.
* Source/win32/w32_notifications.m: Comment out unimplmented
windows method.
2005-10-20 Tom MacSween <macsweent@sympatico.ca>
* Source/win32/: Fixed a compile error when debug flags were
activated. Removed detailed documation from MS. Read and
write correctly from defaults.
2005-09-19 Adam Fedor <fedor@gnu.org>
* Version 0.10.1
* configure.ac: Make art the default graphics module.
2005-09-14 Tom MacSween <macsweent@sympatico.ca>
* Restructuring of the windows server to handle various
window and toolbar issues (See Source/win32/RELEASE_NOTES for
more info).
* Headers/win32/WIN32Server.h: Added ivars and flags and methods.
* Headers/winlib/WIN32GState.h: Added method to avoid confliting
types with superclass.
* Source/win32/GNUmakefile: Add new files.
* w32_debug.m, w32_activate.m, w32_create.m, w32_general.m,
w32_movesize.m, w32_text_focus.m, w32_windowdisplay.m,
GSDisplayServer_details.m: New files.
* Source/win32/WIN32Server.m: Large changes. Merged with
WIN32ServerEvent. Lots of documentation.
* Source/winlib/WIN32GState.m: Variable name changes to
avoid shadowing.
2005-08-28 Fred Kiefer <FredKiefer@gmx.de>
* Headers/cairo/CairoSurface.h,
* Source/cairo/CairoSurface.m,
* Source/cairo/XGCairoGlitzSurface.m,
* Source/cairo/XGCairoSurface.m,
* Source/cairo/XGCairoXImageSurface.m,
* Source/cairo/CairoGState.m (-GSSetDevice:::):
Rewrote the device handling to work for resized windows.
* Headers/cairo/CairoFontInfo.h,
* Source/cairo/CairoFontInfo.m (-drawGlyphs:length:on:, -setupAttributes),
* Source/cairo/CairoGState.m (-GSShowGlyphs::):
Moved adjustment of font size and positioning to CairoFontInfo.
* Source/cairo/CairoContext.m:
Clean up.
2005-08-20 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoGState.m (-DPSImage::::::::):
For the ARGB32 case sort the colour fields in the bitmap correctly.
2005-08-20 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoFaceInfo.m (-fontFace): Use
_cairo_toy_font_face_create, as Cairo did rename this function.
* Source/cairo/CairoFontInfo.m (_cairo_glyph_for_NSGlyph): Use
Cairo function _cairo_scaled_font_text_to_glyphs to convert to glyphs.
2005-08-16 Adrian Robert <arobert@cogsci.ucsd.edu>
* Source/art/ftfont.m (-[FTFontInfo drawString:...]):
Initialize index d for delta_data[]. (Already done in ftfont-old.)
2005-07-28 Fred Kiefer <FredKiefer@gmx.de>
* Headers/cairo/CairoFaceInfo.h,
* Headers/cairo/CairoFontEnumerator.h,
* Headers/cairo/CairoFontInfo.h,
* Headers/cairo/CairoSurface.h,
* Headers/cairo/XGCairoSurface.h,
* Source/cairo/CairoContext.m,
* Source/cairo/CairoGState.m,
* Source/cairo/CairoFaceInfo.m,
* Source/cairo/CairoFontInfo.m,
* Source/cairo/CairoFontEnumerator.m,
* Source/cairo/CairoSurface.m,
* Source/cairo/NSBezierPathCairo.m,
* Source/cairo/XGCairoGlitzSurface.m,
* Source/cairo/XGCairoSurface.m,
* Source/cairo/XGCairoXImageSurface.m:
Adopted to changes in latest release of cairo.
* Source/cairo/GNUmakefile:
Removed file CairoFontManager.m
2005-07-22 Adam Fedor <fedor@gnu.org>
* Version 0.10.0
2005-07-17 Adam Fedor <fedor@gnu.org>
* Version: Add interface version number
* Source/GNUmakefile: Use it.
* Source/GNUmakefile.postamble: Idem, add custom Info.plist.
* Source/GNUmakefile.preamble: Update for interface version.
2005-07-14 Adam Fedor <fedor@gnu.org>
* Source/winlib/WIN32GState.m ([WIN32GState -compositeGState:...]):
Fall through to default operation if alpha blend not sucessful.
2005-07-09 Fred Kiefer <FredKiefer@gmx.de>
* Headers/gsc/GSGState.h,
Source/gsc/GSGState.m: New methods
[-compositeGState:fromRect:toPoint:op:fraction:] and
[GSSetPatterColor:]. Also added ivar pattern.
* Source/gsc/GSGState.m (-dealloc, -deepen, -setColor:state:):
Deal with pattern ivar.
* Source/gsc/GSContext.m,
Source/gsc/GSStreamContext.m: New methods
[-GScomposite:toPoint:fromRect:operation:fraction:] and
[-GSSetPatterColor:].
* Source/xlib/XGGState.m: New method
[-compositeGState:fromRect:toPoint:op:fraction:] use this to
implement [-compositeGState:fromRect:toPoint:op:] and
[-dissolveGState:fromRect:toPoint:delta:].
2005-07-04 Adam Fedor <fedor@gnu.org>
* Documentation/news.texi: Update.
2005-07-01 Adam Fedor <fedor@gnu.org>
* Documentation/Back/Back.gsdoc,
Documentation/Back/DefaultsSummary.gsdoc,
Documentation/Back/WindowFocus.gsdoc,
Headers/art/ARTContext.h,
Headers/x11/XGDragView.h,
Headers/xlib/XGFontSetFontInfo.h,
Headers/xlib/XGGeometry.h,
Source/x11/wrasterP.h,
Source/xlib/XGFontSetFontInfo.m,
Source/xlib/linking.m,
Tools/GNUmakefile.postamble,
Tools/GNUmakefile.preamble,
Tools/gpbs.1: Add/fix copyright and licenses.
2005-06-17 Adam Fedor <fedor@gnu.org>
* Tools/gpbs.m ([PasteboardServer -connectionBecameInvalid:]):
Use isKindOfClass.
2005-06-07 Fred Kiefer <FredKiefer@gmx.de>
* Source/winlib/Win32GState.m (GSCreateBitmap): Allow
NSCalibratedRGBColorSpace as well.
(-_compositeGState:fromRect:toPoint:op:fraction:) Removed the
leading underscore of the method name.
2005-05-26 Adam Fedor <fedor@gnu.org>
* Update FSF Address.
2005-05-20 Adrian Robert <arobert@cogsci.ucsd.edu>
* Headers/xlib/XGGState.h, Source/xlib/XGGState.m: Changed
HAVE_LIBXFT #ifdefs to HAVE_XFT.
* configure.ac, config.h.in: Changed comments for HAVE_XFT to
clarify that it is different from HAVE_LIBXFT (latter is just the
runtime lib, while former implies a functional installation).
2005-05-14 Adrian Robert <arobert@cogsci.ucsd.edu>
* Source/xlib/XGGState.m: Added missing #ifdefs to last patch so
compilation on non-libxft system is unaffected.
2005-05-12 Adrian Robert <arobert@cogsci.ucsd.edu>
* Headers/xlib/XGGState.h (xft_draw, xft_alpha_draw, xft_color,
-xftDrawForDrawable, -xftColor): New ivars and methods for caching
Xft (freetype) draw state.
* Source/xlib/XGGState.m (-xftDrawForDrawable:, -xftColor): Cache
Xft draw state.
* Source/xlib/GSXftFontInfo.m: Use cached Xft draw state for rendering.
2005-04-20 Adam Fedor <fedor@gnu.org>
* Fonts/GNUmakefile.postamble: Make sure to install in
$(GNUSTEP_INSTALLATION_DIR).
* GNUmakefile: Add check to not install fonts if fonts=no.
Fixes bug #12749
2005-04-19 Adam Fedor <fedor@gnu.org>
* Source/art/path.m ([ARTGState -_stroke:]): Change floorf->floor.
Fixes bug #12731.
2005-04-16 Fred Kiefer <FredKiefer@gmx.de>
* Source/xlib/XGGState.m
(-_compositeGState:sourcefromRect:fromRecttoPoint:toPointop:opfraction:]):
New way to compute drect. This fixes bug #12459.
2005-04-07 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m (-iconSize): Use XFree to free
xiconsize. Fixes bug #12578.
2005-04-04 Richard Frith-Macdonald <rfm@gnu.org>
* Source/winlib/WIN32GState.m: tunr on alpha blending and swap colors
to correct format.
2005-04-01 Adam Fedor <fedor@gnu.org>
* Source/win32/WIN32Server.m: Re-add 2005-02-23 change.
* Source/xlib/GSXftFontInfo.m (-setupAttributes): Make log message
more verbose.
2005-04-01 Richard Frith-Macdonald <rfm@gnu.org>
* Source/x11/XGDragView.m: Complete code changes to factor out as
much as possible into the superclass and avoid duplication.
2005-03-30 Adam Fedor <fedor@gnu.org>
* Version 0.9.5
* Headers/x11/XGDragView.h, Source/x11/XGDragView.m: Tag previous
version of file for release.
* Source/win32/WIN32Server.m: Revert 2005-02-23 change for this release.
2005-03-29 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/x11/XGDragView.h: Make this a subclass of GSDragView
* Source/x11/XGDragView.m: Rewrite to be a subclass of GSDragView
so that bugfixes from it are in XGDragView. Remove lots of
redundant code. Still quite a bit to do.
* Source/win32/WIN32Server.m: Add code to draw own window decorations
and GSWIN32HandlesWindowDecorations user default to turn it off.
Fixed code for detecting window at a screen point to ignore invisible
windows (fixes crash in DnD).
Altered window type to 'tool' for borderless windows, so that we don't
get a button in the taskbar for every window we create.
2005-03-29 Adrian Robert <arobert@cogsci.ucsd.edu>
* Source/art/ftfont.h, Source/art/ftfont.m, Source/art/ftfont-old.m:
Support DPSxshow, xyshow, ashow, widthshow, and awidthshow in same
drawString:... method that was just implementing DPSshow, and drop
the stub that was slated to handle the former methods.
* Source/art/ARTContext.m: Use the methods defined above.
2005-03-28 Richard Frith-Macdonald <rfm@gnu.org>
* Source/win32/WIN32Server.m: fix for locating window at point.
2005-03-21 Adam Fedor <fedor@gnu.org>
* Source/art/blit.m (artcontext_setup_draw_info): Add mail address
to log message.
2005-02-23 Luis Cabellos
* Source/win32/WIN32Server.m: Use new run loop api under mingw32
2005-02-22 Adam Fedor <fedor@gnu.org>
* configure.ac: Rewrite, avoid setting vars unecessarily. Use
pkg-config if possible. Switch back to xlib/winlib when other backends
don't satisfy dependancies.
* config.make, config.h: Update to match.
* GNUmakefile (SUBPROJECTS): Add Fonts
* Fonts: New folder with default nfont
* Source/x11/GNUmakefile: Remove unneeded file.
2005-02-12 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m (-setalpha::): Support for window
alpha handling on X servers that implement this.
2005-02-12 13:58 Alexander Malmberg <alexander@malmberg.org>
* Headers/x11/XGServerWindow.h: Make the border and depth ivars
unsigned.
2005-02-12 13:54 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XGServerWindow.m (setNormalHints): If the window isn't
resizable, force the min and max sizes to be equal to the current
size.
(-placewindow::): Set the hints after updating xframe.
Fixes bug #11713.
2005-02-10 00:50 Alexander Malmberg <alexander@malmberg.org>
* Tools/gpbs.m (init): Remove the program name from the arguments
passed to the new task.
2005-02-08 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/gpbs.m: Use NSTask to re-execute as daemon.
2005-02-05 00:44 Alexander Malmberg <alexander@malmberg.org>
* Source/art/path.m (-_clip_add_svp:): Handle the case where
no spans are generated for the path.
2005-01-31 07:30 Christian <christian@tenbyten.com>
* Tools/gpbs.m: Correct missplaced bracket when built for windows.
2005-01-21 21:51 Alexander Malmberg <alexander@malmberg.org>
Various warning and whitespace cleanups.
* Headers/x11/XGServerWindow.h,
* Source/art/ftfont.m,
* Source/gsc/GSGState.m,
* Source/win32/WIN32Server.m,
* Source/x11/XGDragView.m,
* Source/x11/XGServerEvent.m,
* Source/x11/XGServerWindow.m: Change signedness of various
variables.
* Tools/gpbs.m: Add missing ctype.h include.
* Source/x11/XGDrawView.m (-_setCursor): Initialize variables.
2005-01-20 22:39 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m (-initWithContextInfo:): Enable stroke
adjusting for the default gstate.
2005-01-20 17:58 Alexander Malmberg <alexander@malmberg.org>
* Source/xlib/XGGState.m (-DPSrectstroke::::): Don't decrease
the width/height.
2005-01-15 Adrian Robert <arobert@cogsci.ucsd.edu>
* Source/x11/XGServerEvent.m (-processEvent:): For XdndPosition
event (ClientMessage), convert the point from root coordinates
using XTranslateCoordinates() instead of relying on cached window
position. Update cached window position from this.
2005-01-12 00:32 Alexander Malmberg <alexander@malmberg.org>
* Source/gsc/GSStreamContext.m (-DPSsetstrokeadjust:):
Give 'setstrokeadjust' a boolean argument.
2005-01-11 21:57 Alexander Malmberg <alexander@malmberg.org>
* Headers/x11/XWindowBuffer.h: Make the pending_rect ivar a struct
of int:s.
* Source/x11/XWindowBuffer.m: Add casts to remove pointer sign
warnings.
(-_exposeRect:, -_gotShmCompletion): Update uses of pending_rect.
2005-01-11 20:27 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTGState.h: Add strokeadjust ivar.
* Source/art/ARTContext.m (-DPScurrentstrokeadjust)
(-DPSsetstrokeadjust): Use the strokeadjust ivar.
* Source/art/path.m (-DPSrectclip::::): Don't use the optimized
path if the clipping path is complex.
(-_stroke::): Remove second argument, rename to ...
(-_stroke:): ... this. If strokeadjust is active, adjust the path
to make it clearer.
(-DPSrectstroke::::): Update _stroke::: call. Remove dash adjustment
code.
(-DPSstroke): Update _stroke:: call.
* Source/art/composite.m: Fix comment typo. Remove some old
debugging code.
2005-01-11 16:15 Alexander Malmberg <alexander@malmberg.org>
* Source/art/blit.m: Remove #warning:s.
* Source/art/blit_scrapheap.m: Add mmx implementation of 15/16bpp
blit_alpha_opaque.
2005-01-11 16:01 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Copy old contents to ftfont-old.m and
include that file if the freetype version is <2.1.8. Rewrite
this file to work with freetype >=2.1.8.
* Source/art/ftfont-old.m: New file.
2004-12-30 18:38 Gregory John Casamento <greg_casamento@yahoo.com>
* Source/x11/XGDragView.m: _handleDrag: method correction for
bug#11352 and for fixes to allow compilation with gcc < 3.0.
2004-12-09 Fred Kiefer <FredKiefer@gmx.de>
* Source/win32/WIN32Server.m (-standardcursor:): Don't set
default cursor, when no standard cursor is available.
* Source/x11/XGServerWindow.m (-standardcursor:): Don't set
default cursor, when no standard cursor is available.
Replaced the usage of the type xgps_cursor_id_t with Cursor
throughout this file.
2004-12-06 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m (-setwindowlevel::): Stop using
the KDE override atom for window levels. The old behaviour may be
reactivated via the define USE_KDE_OVERRIDE.
2004-11-28 Matt Rice <ratmice@yahoo.com>
* Source/x11/XGGLFormat.m (-initWithAttributes:,append,append1): Add
missing curly brackets, fix append and append1 macros so they can safely
be used without curly brackets.
2004-11-28 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/gpbs.m: When run as daemon, re-execute with --no-fork flag
so that we can work with threading using pth library (default on
some BSD versions).
2004-11-10 18:41 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XWindowBuffer.m (test_xshm): New function.
(test_xshm_error_handler): New function.
(+windowBufferForWindow:depthInfo:): Move XShm detection code
to test_xshm and use it to decide whether to use XShm or not.
(+initialize): Move use_xshm setting code to test_xshm.
(+_gotShmCompletion:): Don't warn if we can't find an XWindowBuffer
for the event.
2004-11-10 Matt Rice <ratmice@yahoo.com>
* Source/x11/XGServerWindow.m (-iconSize): Implement new method.
(-iconTileImage:): ditto.
2004-11-09 22:42 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XGBitmapImageRep.m: Remove dead file.
* Source/x11/GNUmakefile: Remove reference.
2004-11-09 22:15 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m (fix_path): Don't prepend the path to absolute
file names.
(-initWithFontName:matrix:screenFont:): Initialize cachedGlyph.
(-advancementForGlyph:): Handle NSNullGlyph.
(-glyphForCharacter:): Return NSNullGlyph if there's no glyph for
the character.
2004-11-09 19:00 Alexander Malmberg <alexander@malmberg.org>
* Tools/gpbs.m (main): If we get a -GSStartupNotification argument,
post the notification after initializing. Fixes bug #10876.
2004-11-04 Adrian Robert <arobert@cogsci.ucsd.edu>
* Source/x11/XGServerEvent.m (process_key_event): Modifier detection:
If default "GSModifiersAreKeys" is YES, ignore 'shift' and/or other
state and just map keypress to first modifier for they key.
* Documentation/Back/DefaultsSummary.gsdoc: Document new default
"GSModifiersAreKeys".
* Source/xlib/XGBitmap.m (_bitmap_combine_alpha()): corrected typo
in error message.
2004-10-30 Fred Kiefer <FredKiefer@gmx.de>
* Source/xlib/XGContext.m (+initializeBackend): Use anti-aliaesd
fonts when available and not specified otherwise.
* Documentation/Back/DefaultsSummary.gsdoc: Document that AA fonts
are now the default for xlib.
2004-09-28 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerEvent.m (initialize_keyboard): Corrected typo
reported by Benhur Stein <benhur.stein@gmail.com>.
2004-09-24 Adrian Robert <arobert@cogsci.ucsd.edu>
* Source/x11/XGServerEvent.m: Improvement of earlier update to
determine modifiers from KeySyms rather than KeyCodes: in
process_key_event, KeySym is now looked up taking shift/compose
modifier state into account, while in handling of KeyMapNotify in
processEvent: this state is also considered in the majority of cases.
Base on suggestions by Kazunobu Kuriyama (kazunobu.kuriyama@nifty.com).
2004-09-23 Adam Fedor <fedor@gnu.org>
* Version 0.9.4
* Documentation/news.texi: Update
2004-09-21 19:19 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Add lineHeight ivar to FTFontInfo.
(+defaultLineHeightForFont): Implement.
(-initWithFontName:matrix:screenFont:): Set lineHeight.
2004-09-19 Fred Kiefer <FredKiefer@gmx.de>
* Source/win32/WIN32Server.m: Added missing include for new Cygwin
event pooling.
2004-09-17 Fred Kiefer <FredKiefer@gmx.de>
* Source/winlib/Win32GState.m (-_compositeGState:...fraction:):
Made the use of AlphaBlend depend on a define, which by default is missing.
2004-09-09 Fred Kiefer <FredKiefer@gmx.de>
* Tools/xpbs.m (-[XPbOwner getSelectionData:type:], -[XPbOwner
xProvideSelection:]): Removed some compiler warnings.
* Source/cairo/CairoGState.m (-DPSimage:...:): Slightly improved.
(-compositeGState:fromRect:toPoint:op:fraction:) New method
(-compositeGState:fromRect:toPoint:op:,
-dissolveGState:fromRect:toPoint:delta:) Implemented via new method.
Added all missing colour conversions.
(GSShowGlyphs::) Use new method on CairoFontInfo.
* Header/cairo/CairoFontInfo.h (-drawGlyphs:length:on:atX:y:) New method.
* Source/cairo/CairoFontInfo.m (-drawGlyphs:length:on:atX:y:) New method.
Moved some includes from header to here, extracted method
[setupAttributes] and other cleanup.
2004-09-08 Adam Fedor <fedor@gnu.org>
* Headers/x11/XGServer.h: Add 8bit fast drawing.
* Source/x11/XGServer.m ([XGScreenContext
-initForDisplay:screen:]): For 8bit, test for RGB_BEST_MAP.
* Source/xlib/XGBitmap.m (_pixmap_combine_alpha,
_bitmap_combine_alpha, _pixmap_read_alpha): Add 8 bit case.
(patch from Paul Secchia <paul@worldnet.att.net>).
* Documentation/Back/DefaultsSummary.gsdoc: Document it.
* Documentation/news.texi: Update for new release.
2004-09-05 00:05 Alexander Malmberg <alexander@malmberg.org>
* Tools/GNUmakefile.preamble: Compile with -Wall.
* Tools/xpbs.m: Rename to +initializePasteboard. Return NO iff
XOpenDisplay fails.
* Tools/win32pbs.m (+initialize): Rename to +initializePasteboard.
Return YES.
* Tools/gpbs.m ([PasteboardServer -init]): Call +initializePasteboard
instead of +class. Set xPbClass to nil if the call fails.
2004-09-01 Adam Fedor <fedor@gnu.org>
* configure.ac: Prepend don't overwrite CFLAGS and LDFLAGS given
in environment.
2004-08-31 Adrian Robert <arobert@cogsci.ucsd.edu>
* Source/x11/XGServerEvent.m: Changed mapping of GNUstep modifier
keys to X11 KeySyms instead of KeyCodes. (Added check_key(); updated
check_modifier(), -processEvent: (KeyMapNotify), changed
default_key_code() to key_sym_from_defaults(), updated
initialize_keyboard().)
2004-08-30 Fred Kiefer <FredKiefer@gmx.de>
* Source/xlib/GSXftFontInfo.m: Changed usage of CString for font
name and family into UTF8String for XFT. Patch by Yen-Ju Chen
<yjchenx@hotmail.com>.
2004-08-24 Fred Kiefer <FredKiefer@gmx.de>
* Source/win32/WIN32Server.m (-windowbounds:): Corrected variable
name, so the fiel compiles again.
(-setupRunLoopInputSourcesForMode:): Added new event polling code
for Cygwin.
* Source/cairo/CairoContext.m (-NSReadPixel:, beep): Removed methods.
2004-08-23 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoContext.m (-DPScurrentalpha:,
-DPSsetoffset::): Removed methods.
* Source/cairo/CairoGState.m (-offset, -setoffset:): Added methods.
(-forwardInvocation:): Improved output.
(-GSSetDevice:::) Commented out NSLog calls.
* Source/gsc/GSGState.m (-_showString:lenght:): Removed this
method which was a left over from last patch.
2004-08-09 14:38 Alexander Malmberg <alexander@malmberg.org>
* Source/win32/WIN32Server.m, Source/win32/WIN32ServerEvent.m,
Headers/win32/WIN32Geometry.h (MSScreenRectToGS, GSScreenRectToMS):
The 'GS' rect is, in the terminology of NSWindow.h, the window frame,
not the screen frame. make the conversions match this and update
the callers.
* Source/x11/XGServerWindow.m (-_OSFrameToXFrame:for:,
-_OSFrameToXHints:for:, -_XFrameToOSFrame:for:): Update conversions.
(-windowdevice:): Remove artificial delays and geometry querying.
Update based on the frame from the last ConfigureNotify.
(-placewindow::): Remove event coordinate adjustments. Always send
move/resize events to -gui right away.
2004-08-03 Fred Kiefer <FredKiefer@gmx.de>
* Header/cairo/*:
* Source/cairo/*:
* Source/GSBackend.m:
* configure.ac:
* configure:
Added cairo backend from Banlu Kemiyatorn <object@gmail.com>.
2004-07-30 15:52 Alexander Malmberg <alexander@malmberg.org>
* Headers/gsc/GSCStateOps.h, Source/gsc/GSContext.m,
Source/gsc/GSGState.m (-GSReadRect:): New method.
* Source/art/GNUmakefile: Add ReadRect.m.
* Source/art/ReadRect.m: New file.
* Source/art/blit.m, Source/art/blit.h: Add read_pixels_a and
read_pixels_o. Fix spurious low bits in BLEAN_READ for 16bpp and
15bpp modes.
* Source/xlib/XGContext.m (-GSReadRect:): Remove.
* Source/xlib/XGGState.m (-GSReadRect:): Update key names and set all
keys even if the rectangle is degenerate. Return nil if the image
can't be read. Set the Matrix key.
2004-07-26 15:37 Matt Rice <ratmice@yahoo.com>
Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XGServerWindow.m (-_createAppIconPixmaps): New method.
(-orderwindow:::): Use -_createAppIconPixmaps to set IconPixmapHint
if we're using windowmaker.
2004-07-14 Adam Fedor <fedor@gnu.org>
* Documentation/Back/Standards.txt: update.
2004-07-13 03:11 Alexander Malmberg <alexander@malmberg.org>
* Source/art/shfill.m (function_setup, -DPSshfill:): NSDebugLLog
helpful error messages if something was wrong in the shader
dictionary.
2004-07-09 Adam Fedor <fedor@gnu.org>
* Documentation/Back/Standards.txt: New EWMH file.
2004-07-06 Fred Kiefer <FredKiefer@gmx.de>
* Source/winlib/Win32GState.m (-_compositeGState:...fraction:):
Applied alpha blending patch by MA Garcias <lists@tragnarion.com>.
Disabled GDI_WIDELINE_BEZIERPATH_BUG.
* configure.ac: Added test for msimg32, needed for AlphaBlend.
* configure: Regenerated.
* Source/xlib/XGGState.m: Moved additional show methods to super class.
* Source/gsc/GSGState.m: Implemented additional show methods based
on (-showGlyphs::) and simple glyph conversion.
2004-06-19 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m (-standardcursor::): Added more
standard cursors.
* Source/win32/WIN32Server.m (-standardcursor::): Added more
standard cursors.
2004-06-28 00:45 Alexander Malmberg <alexander@malmberg.org>
* Headers/x11/XGServerWindow.h: Add buffer_width and buffer_height
ivars.
* Source/x11/XGServerWindow.m (-windowdevice:): Use buffer_width and
buffer_height instead of xframe to keep track of the size of the
buffer and alpha_buffer.
2004-06-28 00:41 Alexander Malmberg <alexander@malmberg.org>
* Source/xlib/XGGState.m (-setWindowDevice:): Remove use of
cast-as-lvalue.
2004-06-26 13:04 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XGServerEvent.m (-processEvent: ConfigureNotify):
Don't ignore the event for unmapped windows. Use XTranslateCoordinates
to get the size and position right for both real and artificial
events. Only update the position hints if we're mapped.
* Source/x11/XGServerWindow.m: Add handlesWindowDecorations variable.
(-handlesWindowDecorations): New method.
(setWindowHintsForStyle, -styleoffsets:::::): If we aren't handling
window decorations, treat all windows as borderless.
(-stylewindow::, -setinputstate::): Assert that we're handling window
decorations.
(-window::::): Create the window structure earlier so it can be used
to convert frames.
(-_setupRootWindow): Set handlesWindowDecorations based on the
GSX11HandlesWindowDecorations defaults value.
* Documentation/Back/DefaultsSummary.gsdoc: Document
GSX11HandlesWindowDecorations.
2004-06-19 Fred Kiefer <FredKiefer@gmx.de>
* Source/win32/WIN32Server.m (-findWindowAt:windowRef:excluding:)
New method for D&D. (-dragInfo), (-slideImage:from:to:) Removed.
2004-06-11 Adam Fedor <fedor@gnu.org>
* Version 0.9.3
* Documentation/news.texi: Update.
* configure.ac: Remove WindowMaker/libwraster check
2004-05-27 Fred Kiefer <FredKiefer@gmx.de>
* Source/win32/WIN32ServerEvent.m (-windowEventProc:::) Added
handling of size and move events and extracted end of resize event
handling into the same new method. PAINT now always validates the
whole window.
Patch by MA Garcias <lists@tragnarion.com>.
New method [-resizeBackingStoreFor:] used for end of resize events.
2004-05-13 17:11 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m (-advancementForGlyph:): Return a zero size for
control glyphs.
(-positionOfGlyph:precededByGlyph:isNominal:): Check if either glyph
is a control glyph before converting to freetype glyph indices.
2004-05-12 Fred Kiefer <FredKiefer@gmx.de>
* Headers/win32/WIN32Geometry.h: (GSWindowOriginToMS) corrected computation.
* Source/win32/WIN32Server.m (-orderwindow:::) Removed obsolte
"return" in non-NSWindowOut case and use flag SWP_NOACTIVATE.
(-placewindow::, -movewindow::) Don't use flag SWP_NOREDRAW.
Patch by MA Garcias <lists@tragnarion.com>.
* Source/win32/WIN32ServerEvent.m Corrected definition of the
GET_X_LPARAM and GET_Y_LPARAM macros.
2004-03-30 01:49 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XGGLFormat.m (-initWithAttributes:): Fix handling of
15bpp and 16bpp modes (NSOpenGLPFAAccumSize).
2004-02-29 21:42 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.h, Source/art/ftfont.m: Add
-drawGlyphs::at::to::::::alpha::color::::transform:drawinfo: method.
* Source/art/ARTContext.m (-GSShowGlyphs::): Use it if the
destination window has an alpha buffer.
(-initWithContextInfo:): Try to find a DirectColor or TrueColor
visual before falling back on the default visual.
2004-02-28 Adam Fedor <fedor@gnu.org>
* Version 0.9.2
2004-02-28 Fred Kiefer <FredKiefer@gmx.de>
* Source/win32/WIN32Server.m (-setupRunLoopInputSourcesForMode:):
Use a shorte timer interval.
2004-02-24 15:45 Alexander Malmberg <alexander@malmberg.org>
* Source/art/image.m: Add support for grayscale, one-is-black
color spaces.
(_image_get_color_rgb_cmyk_gray): Invert gray value if one is black.
(-DPSimage:::::::::::): If the color space is NSDeviceBlackColorSpace
or NSCalibratedColorSpace, treat one as black.
2004-02-17 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerWindow.m ([XGServer -orderwindow:::]): Don't
try to raise the root window.
2004-02-08 23:20 Gregory John Casamento <greg_casamento@yahoo.com>
* Source/xlib/XGGState.m: Added necessary calibrated
colorspaces to the DPSimage: method.
2004-02-04 01:48 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XGServerEvent.m: Remove uses of the now deprecated
"casts as lvalues" gcc extension.
2004-01-27 Adam Fedor <fedor@gnu.org>
* Documentation/Back/DefaultsSummary.gsdoc: Fix doc markup
* Documentation/Back/GNUmakefile: Change install location.
2004-01-25 Fred Kiefer <FredKiefer@gmx.de>
* Source/art/shfill.m (-DPSshfill:):
* Source/winlib/Win32GState.m (-DPSimage::::):
* Source/xlib/XGGState.m (-DPSimage::::): Replaced
appendTransform: with prependTransform:.
* Source/art/image.m (-DPSimage:): Replaced prependTransform: with
appendTransform:.
2004-01-25 13:52 Alexander Malmberg <alexander@malmberg.org>
* Source/art/image.m (-_image_do_rgb_transform:::): Fix off-by-one
error in horizontal clipping.
2004-01-10 Adam Fedor <fedor@gnu.org>
* configure.ac: Check if XShm is really implemented (it isn't on
Cygwin even though the headers are there).
* Source/x11/XGServerEvent.m ([XGServer -processEvent:event]):
ifdef around XShm call.
2004-01-10 Adam Fedor <fedor@gnu.org>
* Prevent orderwindow:relativeTo: from making a window key.
* Headers/x11/XGGeneric.h: Add Ivar.
* Source/x11/XGServerEvent.m (-_handleTakeFocusAtom:forContext:):
Don't take focus if we ordered this window previously.
* Source/x11/XGServerWindow.m ([XGServer -orderwindow:::]):
Set desiredOrderWindow.
([XGServer -setinputfocus:]): Reset it.
2004-01-10 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerWindow.m ([XGServer -orderwindow:::]):
When otherWin == 0, make sure the window does not go in front
of the current key window.
* Source/win32/WIN32Server.m ([WIN -orderwindow:op:otherWin:winNum]):
Allow otherWin < 0.
2004-01-10 16:25 Alexander Malmberg <alexander@malmberg.org>
* Source/art/blit.m: Replace uses DI_16_B5G5R5A1 and DI_16_B5G6R5
with uses of DI_16_B5_G5_R5_A1 and DI_16_B5_G6_R5.
(sover_ao): Add an optimized version for the 16/15 bpp modes.
(satop_aa): Simplify calculation of da'.
(datop_aa): Simplify calculation of da'. Fix the rounding.
(xor_aa): Fix the rounding.
(DI_16_B5_G5_R5_A1, DI_16_B5_G6_R5): Unpack pixels in a more
efficient way.
* Source/art/blit_scrapheap.m: New file.
2004-01-07 14:51 Alexander Malmberg <alexander@malmberg.org>
* Source/art/composite.m (-_composite_func::::::): If the source has
alpha, the destination is opaque, and the operator is NSCompositeCopy,
set dst_needs_alpha to YES.
(-compositerect:op:): If alpha is needed, make sure alpha is always
created _before_ setting up the alpha destination pointers. Only
write alpha for NSCompositeCopy if the current color isn't opaque.
2004-01-07 Fred Kiefer <FredKiefer@gmx.de>
Added missing .cvsignore files and extended the existing ones.
2003-12-31 Fred Kiefer <FredKiefer@gmx.de>
* Tools/win32pbs.m New file to handle windows clipboard
interaction.
* Tools/GNUmakefile
Compile new file for windows backend.
* Tools/gpbs.m (PasteboardServer -init) for windows backends use
Win32PbOwner as the pasteboard owner class.
2003-12-30 Fred Kiefer <FredKiefer@gmx.de>
* Source/gsc/path.m (-GSSendBezierPath:) preset the count
variable, as this is expected by the method [NSBezierPath
getLineDash:count:phase:].
* Source/xlib/XGGState.m (-_doPath::draw:) allways set fill rule
for path_fill.
2003-12-30 Fred Kiefer <FredKiefer@gmx.de>
* Source/art/path.m (-DPSrectstroke::::,
-_axis_rectangle::::vpath:axis::::pixel:): Adopted to change in
NSAffineTransform.h.
2003-12-28 Fred Kiefer <FredKiefer@gmx.de>
* Source/win32/WIN32Server.m (initWithAttributes:): Adjusted
spelling of useWMTaskBar to header, to get it compile.
2003-12-26 Adam Fedor <fedor@gnu.org>
* Focus fixes.
* Headers/win32/WIN32Server.h: Add flags ivar
* Source/win32/WIN32Server.m (orderwindow:::): If useWMTaskBar
flag set, don't show app icon and don't order out menu window.
* Source/win32/WIN32ServerEvent.m (windowEventProc:::):
On activation message, activate app, on deactivation message,
deactivate app (if message comes from menu window).
2003-12-25 Fred Kiefer <FredKiefer@gmx.de>
* Source/win32/WIN32Server.m (-_initWin32Context) set a default
cursor, which is used each time the window is entered.
2003-12-23 Fred Kiefer <FredKiefer@gmx.de>
* Source/winlib/WIN32GState.m (-copyBits:fromRect:toPoint:): Made
save against self and source being the same object and corrected
computation for flipped views. This code is copied over from xlib.
* Source/winlib/WIN32FontEnumerator.m Reimplemented the whole file.
* Source/winlib/WIN32FontInfo.m (-setupAttributes) assign font
family ivar and use common functions with font enumerator.
* Source/win32/WIN32ServerEvent.m (WIN32Server
-windowEventProc::::) flag that we handle erasing of the
background ourselves. (invalidateWindow) copy from backing store
if possible.
2003-12-03 Adam Fedor <fedor@gnu.org>
* Headers/win32/WIN32Server.h: Add ivars currentFocus, desiredFocus.
* Source/win32/WIN32Server.m (setinputfocus:): Don't set if window
already has focus
* Source/win32/WIN32ServerEvent.m (-windowEventProc::::): Main
event handler.
(mainWindowProc): Call -windowEventProc::::.
(-handleGotFocus:): Handle main/key directly without sending event
to frontend.
2003-12-02 Adam Fedor <fedor@gnu.org>
* Source/win32/WIN32Server.m: Add a bunch of DebugLLog
statements (WTrace, NSEvent, Focus). Move event functions to...
* Source/win32/WIN32ServerEvent.m: here.
2003-12-02 Leigh Smith <leigh@bogus.example.com>
* Source/winlib/WIN32GState.m ([WIN -_paintPath:drawType]):
Corrected bug in Bezier curves, a bug in line widths and adds a
workaround for a Windows GDI drawing bug when drawing curved wide
lines.
2003-11-25 20:12 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XGServerEvent.m (initialize_keyboard): Make sure that
no _*_keycodes contains the same keycode twice.
2003-11-25 12:09 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m ([FTFontInfo_subpixel
-drawGlyphs::at::to::::::color::::transform:drawinfo:): If freetype
is sufficiently new, use its LCD subpixel support instead of scaling
manually.
2003-11-23 Adam Fedor <fedor@gnu.org>
* Version 0.9.1
2003-11-23 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerEvent.m (process_modifier_flags()) treat caps
lock as alpha shift and not as shift modifier.
2003-11-20 Adam Fedor <fedor@gnu.org>
* Source/xlib/XGBitmap.m (_pixmap_combine_alpha): Use RGetClosestXColor
to get colors on 8bit displays.
(_bitmap_combine_alpha): Likewise. Fixes PR #6341
2003-11-19 Benhur Stein <benhur@inf.ufsm.br>
* Source/x11/XGServerEvent.m ([XGServer -processEvent:event]): Correct
off-by-one error.
2003-11-19 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServer.m: Add some docs.
* Window focus fixes.
* Source/x11/XGServerEvent.m ([XGServer -processEvent:event]): Move
take focus code...
([XGServer -_handleTakeFocusAtom:forContext:]): ...to here. Check for
common problems before passing event to frontend.
([XGServer -processEvent:event])(FocusOut): Invalidate current
focus window and focus request.
2003-11-18 16:57 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Remove fallback ivar. Add advancementImgd
and a simple glyph size cache for use in -advancementForGlyph:.
(-initWithFontName:matrix:screenFont:): Set up advancementImgd.
(-advancementForGlyph:): Use advancementImgd instead of setting up
a FTC_ImageTypeRec on each call. Cache glyph sizes to avoid expensive
freetype calls.
2003-11-05 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerEvent.m ([XGServer -processEvent:]): New
method broken off from -receivedEvent:type:extra:forMode:.
2003-11-05 03:29 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XGServerEvent.m (-receivedEvent:type:extra:forMode:):
Casts as lvalues will be deprecated in gcc 3.4. Thus, don't assign
to the cWin macro. Reported by Lyndon Tremblay.
2003-11-02 02:58 Alexander Malmberg <alexander@malmberg.org>
* Source/gsc/GSStreamContext.m Whitespace cleanups.
(writeHex): Use index properly; don't always write the first byte.
Use fputc() instead of fprintf() (was doing the hex conversion
manually anyway, might as well make it efficient).
2003-11-02 02:27 Alexander Malmberg <alexander@malmberg.org>
* Source/gsc/GSStreamContext.m (fpfloat, writeHex): Make static.
2003-10-29 Yen-Ju Chen <yjchenx@hotmail.com>
* Source/x11/XGServerWindow.m ([XGServer -_setupRootWindow]): Always
set WindowMaker app icon property
([XGServer -window::::]): Idem for GNUstep window styles.
([XGServer -stylewindow::win]): Idem.
([XGServer -docedited::win]): Idem.
([XGServer -setwindowlevel::]): Idem.
2003-10-22 Adam Fedor <fedor@gnu.org>
* configure.ac: Check for X11 function prototypes (Fixes problems
on Solaris 2.6).
2003-10-20 20:09 Alexander Malmberg <alexander@malmberg.org>
* Tools/xpbs.m (-xProvideSelection:): Copy all characters and the
terminating nul in XG_COMPOUND_TEXT handling.
2003-10-20 16:20 Alexander Malmberg <alexander@malmberg.org>
* Tools/xpbs.m (+xSelectionNotify:): Don't call XGetAtomName()
if the property is None.
2003-10-19 Adam Fedor <fedor@gnu.org>
* Source/xlib/XGBitmap.m: Cache color lookup to reduce use
of XQueryColor (based on code from Marko Riedel).
* configure.ac: Add 2.57 prereq
2003-10-15 Adam Fedor <fedor@gnu.org>
* configure.ac: Don't look for jpeg/tiff (already linked in by gui).
2003-10-08 15:58 Alexander Malmberg <alexander@malmberg.org>
* Source/xlib/XGContext.m (+initializeBackend): Give NSLog an
objective-c string (@""), not a c string (""). Reported by Matt
Rice.
2003-10-05 Adam Fedor <fedor@gnu.org>
* Documentation/GNUmakefile: Make Back documentation
* Documentation/Back/GNUmakefile: Set DocumentationDirectory.
* Source/x11/raster.c (RMakeCenteredImage): Remove (unused).
2003-10-04 14:27 Alexander Malmberg <alexander@malmberg.org>
* Source/art/path.m (-DPSrectclip::::): Move the call to -DPSnewpath
so it gets called on all paths through the method.
2003-10-03 Adam Fedor <fedor@gnu.org>
* configure.ac: Use -Wl for netbsd linker options.
2003-10-02 Adam Fedor <fedor@gnu.org>
* Source/xlib/XGGState.m (-DPSrectclip::::): Clear path.
* Source/winlib/WIN32GState.m (-DPSrectclip::::): Idem.
* Source/art/path.m (-DPSrectclip::::): Idem.
2003-09-30 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSGState.m ([GSGState -DPSrectclip::::]): Clear
the current path after clipping.
2003-09-29 Adam Fedor <fedor@gnu.org>
* Version 0.9.0
2003-09-22 13:03 Alexander Malmberg <alexander@malmberg.org>
* Source/art/image.m (-_image_do_rgb_transform:::): Check if the
coordinates involved are too large to handle normally. If they
are, scale down the numbers a bit (gives less accuracy, but no
overflow).
2003-09-20 Adam Fedor <fedor@gnu.org>
* Headers/xlib/XGGState.h: Add GSReadRect def.
* Headers/xlib/XGPrivate.h: Add _pixmap_read_alpha def.
* Source/xlib/XGBitmap.m (_pixmap_read_alpha): Implement.
* Source/xlib/XGGstate.m (-GSReadRect:): Idem.
2003-09-15 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSGState.m ([GSGState -deepen]): Typo fix - copy
textCtm (reported by Banlu Kemiyatorn <id@project-ile.net>).
2003-09-09 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSContext.m (-DPSsetgstate:): Copy gstate so we
don't modify original.
2003-09-08 01:39 Alexander Malmberg <alexander@malmberg.org>
* Source/art/blit.m (artcontext_setup_draw_info): Add some debug
logging.
2003-09-03 Adam Fedor <fedor@gnu.org>
* Source/xdps/GNUmakefile: include config.make (patch from
Aredridel <aredridel@nbtsc.org>).
2003-09-02 Adam Fedor <fedor@gnu.org>
* Tools/gpbs.m (init): Don't mess with file descriptors on MinGW.
2003-09-02 Fred Kiefer <FredKiefer@gmx.de>
* Tools/xpbs.m
Made all calls to XGetAtomName() free their memory later on.
Removed function osTypeToX(). Extracted method
[getSelectionData:type:] from [xSelectionNotify:].
[xSelectionNotify:] now supports incremental data transfer and is
save against failing string conversions. Complete rewrite of
[xProvideSelection:] to better follow the ICCCM
specification. This now implements TIMESTAMP, MULTIPLE and
COMPOUND_TEXT (all untested!)
2003-08-31 Adam Fedor <fedor@gnu.org>
* Tools/gpbs.m (init): Close file descriptors so gpbs can be a proper
daemon.
2003-08-26 Adam Fedor <fedor@gnu.org>
* Version 0.8.9
2003-08-19 Fred Kiefer <FredKiefer@gmx.de>
* Tools/xpbs.m
Made some of the NSLog messages more explicit on what did go wrong.
2003-08-17 Fred Kiefer <FredKiefer@gmx.de>
* Tools/gpbs.m
[PasteboardServer init] made sure that class XPbOwner gets
initialized, by adding a dummy call to class.
* Tools/xpbs.m
[XPbOwner requestData:] added loop to get data of size bigger that 32K
bytes. [XPbOwner pasteboard:provideDataForType:] and
[XPbOwner pasteboardChangedOwner:] removed the remaining ifdef tests for
X_HAVE_UTF8_STRING. Removed function xTypeToOs() as this was not used.
2003-08-16 Fred Kiefer <FredKiefer@gmx.de>
* Source/xlib/XGFontManager.m
In load_cache() enclosed loading of archive in exception handling and
removed the writing of the archive previously done to update the format.
2003-08-05 Martin Brecher <martin@mb-itconsulting.com>
* Tools/gpbs.1: Updated, fixed typos, added BUGS and HISTORY
section, file is now unprocessed as it should be.
2003-08-10 23:26 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Override the new default font name methods.
Log the glyph when logging FTC_SBitCache_Lookup errors.
2003-08-09 Fred Kiefer <FredKiefer@gmx.de>
* Tools/xpbs.m
Reworked the X interaction so that both STRING and UTF8_STRING are
supported both ways.
2003-08-08 Fred Kiefer <FredKiefer@gmx.de>
* Tools/xpbs.m
[XPbOwner initialize] switched the usage of PRIMARY and CLIPBOARD.
* Documentation/Back/DefaultsSummary.gsdoc
Add new GSOldClipboard deafult.
2003-08-02 Kazunobu Kuriyama <kazunobu.kuriyama@nifty.com>
* Tools/xpbs.m: Multi-lingual cut & paste support
2003-08-02 13:29 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XGServer.m (-dealloc): Only use the rcontext freeing
hack when using our own wraster.
2003-08-01 Adam Fedor <fedor@gnu.org>
* configure.ac: Move freetype check before Xft check and
fix up flags.
2003-07-30 David Ayers <d.ayers@inode.at>
* Created tag 'pre-header-reorg-20030731'.
* Source/art/GNUmakefile: Do not make headers publilc.
* Source/gsc/GNUmakefile: Ditto.
* Source/x11/GNUmakefile: Ditto.
* Source/xdps/GNUmakefile: Ditto.
* Source/xlib/GNUmakefile: Ditto.
* Headers/win32/*.h: Update includes for new header structure.
* Headers/winlib/*.h: Ditto.
* Headers/x11/XGServer.h: Ditto.
* Headers/xlib/*.h: Ditto.
* Source/art/ftfont.m: Ditto.
* Source/gsc/*.m: Ditto.
* Source/x11/*.m: Ditto.
* Source/xdps/*.m: Ditto.
* Source/xlib/*.m: Ditto.
* Tools/gpbs.m: Ditto.
2003-07-26 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServer.m
In [XGScreenContext dealloc] free hermes_data of RContext.
2003-07-26 Fred Kiefer <FredKiefer@gmx.de>
* Source/gsc/GSGState.m
In [GSCurrentCTM] autorelease the returned value.
2003-07-23 Adam Fedor <fedor@gnu.org>
* Version 0.8.8
2003-07-22 Kazunobu Kuriyama <kazunobu.kuriyama@nifty.com>
* Headers/xlib/XGFontSetFontInfo.h: New file.
* Source/xlib/XGFontSetFontInfo.m: New file.
* Source/xlib/XGContext.m:
([XGContext +initializeBackend]): Modified to use XGFontSetFontInfo.
* Source/xlib/GNUmakefile: Modified to include XGFontSetFontInfo.m.
2003-07-22 Adam Fedor <fedor@gnu.org>
* Headers/x11/XGOpenGL.h (GSglxMinorVersion): New
* Source/x11/XGGLContext.m (+clearCurrentContext): Use it to call
correct function.
(-initWithFormat:shareContext:, makeCurrentContext): Idem.
* Source/x11/XGGLFormat.m ([ XGGLPixelFormat -getValues:
forAttribute:forVirtualScreen:]): Idem.
(initWithAttributes:): Idem.
(Patch from Damien Genet with some changes).
2003-07-21 Adam Fedor <fedor@gnu.org>
* Documentation/Back/DefaultsSummary.gsdoc: Add new
GSXIMInputMethodStyle deafult (Adam Fedor).
* Source/x11/context.c, StdCmp.c, convert.c, raster.c, scale.c:
Updated to 0.80.2 version
2003-07-13 Kazunobu Kuriyama <kazunobu.kuriyama@nifty.com>
* Header/x11/XGInputServer.h: Add the new category InputMethod.
* Header/x11/XGServer.h: Add the new category InputMethod.
* Source/x11/XIMInputServer.m:
([XIMInputServer (XIMPrivate) -ximStyleInit]): Cover the input
method styles RootWindow, OffTheSpot, OverTheSpot, and OnTheSpot.
([XIMInputServer (XIMPrivate) -ximCreateIC:]): Implement OffTheSpot
and OverTheSpot. Implement the category InputMethod.
* Source/x11/XGServer.m: Implement the category InputMethod. Add
overriding methods to NSTextView (NSView (InputMethod)).
2003-07-27 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/gpbs.m: Use protocols
* Source/x11/XGServerWindow.m: Use UTF8String rather than cString
to avoid crashes using non-ascii strings ... is this right?
2003-07-16 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServer.m
Added [XGScreenContext dealloc] to clean up RContext.
* Source/x11/XGServerWindow.m
[_checkWindowManager] better clean up of memory.
[_setupRootWindow] and [titlewindow::] free the value of the
XTextProperty.
2003-07-16 Fred Kiefer <FredKiefer@gmx.de>
* Tools/xpbs.m
[XPbOwner xSelectionNotify:] and [XPbOwner xProvideSelection:]
explicit conversion of transferd strings from/to
NSISOLatin1StringEncoding.
2003-07-05 Adam Fedor <fedor@gnu.org>
* Documentation/Back/DefaultsSummary.gsdoc: New file.
* Tools/gpbs.1: Unziped
* Tools/GNUmakefile.postamble: gzip man files.
* configure.ac: Add openbsd flags like freebsd.
2003-07-06 Fred Kiefer <FredKiefer@gmx.de>
* Header/x11/XGGeneric.m
Added some new Atoms to structure XGWMWinTypes.
* Source/x11/XGServerWindow.m
[_checkWindowManager] initializes the new atoms. In
[setwindowlevel::] changed the EWMH case, so that it works
correctly with KDE 3.1. There we used to have borders on menu windows.
2003-07-05 14:05 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Handle freetype <=2.1.2 in the error
reporting.
2003-07-03 22:03 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Give more information when reporting
FTC_SBitCache_Lookup() errors.
2003-07-02 17:28 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m (-initWithFontName:matrix:screenFont:):
Return nil if it's not a valid font.
2003-07-01 16:37 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Use the correct set of flags when loading
glyphs for freetype >=2.1.3. Anti-alias by default if there is no
defaults value for GSFontAntiAlias.
2003-06-30 18:11 Alexander Malmberg <alexander@malmberg.org>
* Source/xlib/XGFont.m (-xCharStructForGlyph:): Don't try to treat
NSGlyph pointers as unichar pointers; break on non-little-endian
systems.
2003-06-29 17:34 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m (-initWithFontName:matrix:screenFont:): Round
the matrix entries for screen fonts to integers to get consistent
handling of non-integer sized screen fonts.
2003-06-28 15:27 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Use a specific table when translating
face names. Add a list of standard face names so make_strings can
generate .strings files.
* Source/GNUmakefile: Add nfontFaceNames.strings to the list of
localized resources. Set the language list to English and Swedish.
* Source/GNUmakefile.preamble: Add a quick hack to make make_strings
pick up the .m files in all subprojects.
* Source/English.lproj/nfontFaceNames.strings,
Source/Swedish.lproj/nfontFaceNames.strings: Add English (dummy) and
Swedish translations of the nfont face names.
2003-06-27 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/gpbs.m: Removed unused methods no longer in protocol.
2003-06-25 Adam Fedor <fedor@gnu.org>
* Tools/gpbs.1.gz: New file (from Martin Brecher).
* Tools/GNUmakefile.postamble (after-install): Install it.
2003-06-26 00:33 Alexander Malmberg <alexander@malmberg.org>
* Source/ftfont.m (-_generateGlyphsForRun:at:): Add (experimental)
handling of utf16 to glyph generation so planes beyond the BMP can
be used.
2003-06-20 Adam Fedor <fedor@gnu.org>
* Version 0.8.7
2003-06-17 20:07 Alexander Malmberg <alexander@malmberg.org>
* Source/art/composite.m, Source/art/ftfont.m, Source/art/path.m:
Minor cleanups.
2003-06-17 Fred Kiefer <FredKiefer@gmx.de>
* Source/gsc/GSStreamContext.m (GSShowGlyphs::, output:length:)
Removed compiler warnings about signed/unsigned comparision.
Declared the extension method [GSFontInfo nameOfGlyph:].
In [NSDrawBitmap:::::::::::] initiliale variable alpha to stop the
compiler from complaining.
* Source/x11/xdnd.c (xdnd_is_dnd_aware(), xdnd_get_type_list)
Removed compiler warnings about signed/unsigned comparision.
* Header/x11/XGGeneric.h
Made ivar focusRequestNumber unsigned.
* Source/x11/XGServerEvent.m (receivedEvent:type:extra:forMode:)
Removed compiler warnings about signed/unsigned comparision.
[receivedEvent:type:extra:forMode:] initialiase deltaY in all
cases.
* Source/x11/XGServerWindow.m (PropGetCheckProperty(),
_setupRootWindow, windowdevice:, setwindowlevel::, imagecursor::::::)
Removed compiler warnings about signed/unsigned comparision.
Adopted to changes in GSDisplayServer.h.
* Source/x11/XGDragView.m (_handleEventDuringDragging:,
_updateAndMoveImageToCorrectPosition, _xWindowAcceptingDnDunderX:Y:,
_xWindowAcceptingDnDDescendentOf:underX:Y:)
Removed compiler warnings about signed/unsigned comparision.
* Source/xlib/XGGState.m (_doComplexPath:::)
Removed compiler warnings about signed/unsigned comparision.
* Source/xlib/GSXftFontInfo.m (setupAttributes)
Removed compiler warnings about unused variable.
* Source/win32/WIN32Server.m
Adopted to changes in GSDisplayServer.h.
windowStyleForGSStyle() changed parameter style to unsigned.
* Tools/xpbs.m
Removed include for file GSPasteboardServer.h to remove some
compiler warnings.
2003-06-12 21:44 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Handle 2.0.* correctly in the freetype
version check.
2003-06-12 19:22 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XWindowBuffer.m: Add XWindowBufferUseXShm defaults
variable.
2003-06-11 15:32 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Implement -glyphWithName: and
-appendBezierPathWithGlyphs:count:toBezierPath:.
2003-06-07 23:05 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Add some ifdef:s to get it to compile with
both freetype <=2.1.2 and >=2.1.3.
2003-06-06 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerWindow.m (setWindowHintsForStyle): Specifically
check for success of XGetWindowProperty call.
2003-05-25 Adam Fedor <fedor@gnu.org>
* Version 0.8.6
2003-05-19 15:56 Alexander Malmberg <alexander@malmberg.org>
* Source/art/shfill.m (function_getsample): Clamp to range.
(function_setup): Use -doubleValue, not -intValue, for values that
are allowed to be real numbers.
2003-05-18 Benhur Stein
* Source/xlib/XGGState.m (-copyBits:fromRect:toPoint:): Draw
correctly when source and dest have different flip'ness.
(-_compositeGState:sourcefromRect:fromRecttoPoint:toPointop:opfraction:]):
Draw correctly when source is flipped.
2003-05-18 00:03 Alexander Malmberg <alexander@malmberg.org>
* Source/art/GNUmakefile, Source/art/shfill.m: Implement basic
version of shfill operator.
2003-05-17 14:49 Alexander Malmberg <alexander@malmberg.org>
* configure.ac: Make sure to add -lm when adding -ltiff (wasn't done
in one case).
* configure: Regenerate.
2003-05-11 19:21 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Report errors in more cases.
2003-05-07 Adam Fedor <fedor@gnu.org>
* configure.ac: Check for freetype separetely and add to xlib flags
if present.
2003-05-02 Adam Fedor <fedor@gnu.org>
* Documentation/Back/GNUmakefile: Remove GNUSTEP_MAKEFILES
2003-04-27 Adam Fedor <fedor@gnu.org>
* Updates for filesystem change.
* GNUmakefile (GNUSTEP_MAKEFILES): Remove
* Documentation/GNUmakefile, Source/GNUmakefile,
Source/*/GNUmakefile, Tools/GNUmakefile: Idem
* configure.ac: Replace $GNUSTEP_SYSTEM_ROOT/Makefiles with
$GNUSTEP_MAKEFILES. Replace Libraries with Library/Libraries.
Replace Headers with Library/Headers.
2003-03-01 Fred Kiefer <FredKiefer@gmx.de>
* Source/winlib/Win32FontInfo.m
* Source/xlib/GSXftFontInfo.m
* Source/xlib/XGFont.m
In [setupAttributes] removed setting of fontDictionary values.
* Source/xdps/AFMFileFontInfo.m
Create the fontDictionary in [_setFontInfo].
2003-04-27 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/xpbs.m: ([xSendData:format:items:type:to:]) Fix bug
calculating offset into data buffer. Prevent crashing and
provision of garbage data.
2003-04-10 12:12 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XWindowBuffer.m (-dealloc): Don't explicitly set the
X window's background pixmap back to None.
2003-04-02 14:04 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m, Source/art/blit.h: Clean up includes.
* Source/art/blit.m (plusd_aa): Fix calculation of alpha.
2003-03-29 19:13 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m, Source/art/blit.h, Source/art/blit.m,
Source/art/ftfont.h, Source/art/ftfont.m: Implement rendering of
text to buffers with destination alpha. Change the subpixel
font rendering to override the glyph operator since it's the one
actually being used.
2003-03-25 Adam Fedor <fedor@gnu.org>
* Source/xlib/GSXftFontInfo.m: Protect 'id' when including
fontconfig/fontconfig.h (suggestion from Pete French).
2003-03-26 00:24 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XWindowBuffer.m (-dealloc): Free the shared memory
pixmap (if one was allocated).
* Source/art/composite.m: When checking whether the overlap handling
should be used, compare windows, not gstates.
2003-03-22 Willem Rein Oudshoorn <woudshoo@xs4all.nl>
* Source/x11/XGServerWindow.m ([XGServer -orderwindow:::]):
Use XWithDrawWindow instead of XUnmapWindow as suggested by
Xlib programming manuals.
2003-03-03 20:05 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Remap glyph numbers from freetype so
NSNullGlyph is never used.
2003-03-01 Fred Kiefer <FredKiefer@gmx.de>
* Source/xlib/GSXftFontInfo.m
In [setupAttributes] moved the call to open the XFT font further
to the back as Derek Zhou claims that this takes over the
ownership of the pattern, which then results in strange behaviour.
2003-02-27 Fred Kiefer <FredKiefer@gmx.de>
* configure.ac
Check for FreeType 2 fontconfig.
* configure
* config.h.in
Regenerated
* Header/xlib/GSXftFontInfo.h
Define font enumerator for fontconfig.
* Source/xlib/XGContext.m
Use new enumerator in anti-alias mode if available.
* Source/xlib/GSXftFontInfo.m
Added fontconfig specific code.
Patch from Derek Zhou dzhou@chrontel.com with some adaption
2003-03-24 Adam Fedor <fedor@gnu.org>
* Version: 0.8.5
2003-03-11 Adam Fedor <fedor@gnu.org>
* configure.ac: Only add libgdi32 for winlib
2003-03-08 Adam Fedor <fedor@gnu.org>
* Headers/x11/XGOpenGL.h: Standardize BOOL redefine to XWINDOWSBOOL.
2003-02-24 Adam Fedor <fedor@gnu.org>
* Version: 0.8.4
2003-02-20 Willem Rein Oudshoorn <woudshoo@xs4all.nl>
* Source/xlib/XGFont.m ([XGFontInfo -setupAttributes]): Use
ascender and descender informaton of the X11 font instead of using
maximum bounding box.
2003-02-19 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSStreamContext.m (fpfloat): New function. Used everywhere
to print a float regardless of current locale.
2003-02-17 Willem Rein Oudshoorn <woudshoo@xs4all.nl>
* Source/x11/XGDragView.m ([XGDragView -drawRect:]): use [self
frame] instead of `rect'. Fixes #101846.
([XGDragView -_handleDrag:]): Fixed typo in comment
([XGDragView -_handleEventDuringDragging:theEvent]): Removed old
comment.
2003-02-16 Richard Frith-Macdonald <rfm@gnu.org>
* Source/x11/XGDragView.m: Set drag window at NSPopUpMenuWindowLevel
so that it lies above pretty much anything apart from screensaver.
2003-02-09 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m
Removed implementation of image sliding. Corrected
xgps_cursor_image compiler warning.
* Header/x11/XGSlideView.h
* Source/x11/XGSlideView.m
Removed files as they are now in the front end.
* Source/x11/GNUmakefile
Removed XGSlideView.m
2003-02-10 18:44 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Implement -glyphIsEncoded:.
(add_face): Avoid calling malloc(0).
2003-02-09 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSStreamContext.m (-GSShowGlyphs::): Implement to use
glyphshow if font gives back glyph names, otherwise use previous
hack.
2003-02-09 Fred Kiefer <FredKiefer@gmx.de>
* Source/gsc/GSStreamContext.m
[DPSconcat:] simplify the output for common cases.
[GSShowGlyphs::] added hack implementation, so that some usefull
output is still provided.
2003-02-08 21:10 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Add somewhat experimental -nameOfGlyph:
method to try to get printing to work.
2003-02-06 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/gpbs.m (ihandler): Fix for mingw, which doesn't have kill()
* Headers/winlib/WIN32FontInfo.h: New method to draw glyphs
* Source/winlib/WIN32FontInfo.m: New method to draw glyphs
* Source/winlib/WIN32GState.m: New method to draw glyphs
2003-02-02 22:00 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m (-initWithFontName:matrix:screenFont:): Use
better guess for x-height value.
* Source/x11/XGServerWindow.m: Use safer order of includes.
* Source/xlib/GSXftFontInfo.m (-widthOfGlyphs:lenght:,
-drawGlyphs:lenght:onDisplay:drawable:with:at:): Convert glyph
buffers to 16-bit buffers that the Xft functions can handle.
* Source/xlib/XGFont.m: Whitespace cleanups.
2003-01-31 Chris B. Vetter <chrisv@web4inc.com>
* Tools/gpbs.m (-dealloc): Remove observer.
(ihandler): Reset all signals and try to reraise original signal.
(init): Set NSIG signals.
(main): release server before exiting.
2003-02-02 Fred Kiefer <FredKiefer@gmx.de>
* Source/xlib/GSXftFontInfo.m
Added glyph methods needed for new text system.
2003-01-31 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m
Implemented [movewindow::] and [restrictWindow:toImage:].
* Source/x11/XGBitmapImageRep.m
Removed the xPixmap methods.
* Source/x11/XGSlideView.m
Use new display server methods to implement without X calls. This
class can now be moved to frontend.
* Source/x11/XGDragView.m
Use new display server methods.
2003-01-31 22:33 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m (-_generateGlyphsForRun:at:): Implement
handling of text attachments.
2003-01-27 18:10 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Clean up includes.
(-initWithFontName:matrix:screenFont:): Use absolute values of the
matrix entries when checking if a screen font entry should be used.
2003-01-26 21:24 Alexander Malmberg <alexander@malmberg.org>
* Source/xlib/GSXftFontInfo.m: Update with screen font changes in
backend/gui interface.
2003-01-26 20:07 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XWindowBuffer.m (-_exposeRect:): Round rectangle to
expose outwards so all pixels intersected by the expose rectangle
are actually exposed.
2003-01-26 20:04 Alexander Malmberg <alexander@malmberg.org>
* Headers/xlib/XGPrivate.h, Source/art/ARTContext.m,
Source/art/ARTGState.h, Source/art/composite.m, Source/art/ftfont.h,
Source/art/ftfont.m, Source/art/image.m, Source/art/path.m,
Source/winlib/WIN32FontInfo.m, Source/xdps/AFMFileFontInfo.m,
Source/xlib/XGFont.m, Source/xlib/XGGState.m: Merge in
text-system-branch.
2003-01-26 18:17 Alexander Malmberg <alexander@malmberg.org>
* Source/xlib/XGFont.m: Make -GSShowGlyphs::'s helpers actually
work.
2003-01-26 17:22 Alexander Malmberg <alexander@malmberg.org>
* Headers/xlib/XGPrivate.h, Source/xlib/XGFont.m,
Source/xlib/XGState.m: Implement basic version of -GSShowGlyphs::
with a few helpers.
2003-01-26 17:15 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m (-advancementForGlyph:): Return correct
metrics for both screen and printer fonts.
2002-11-26 12:58 Alexander Malmberg <alexander@malmberg.org>
* Source/winlib/WIN32FontInfo.m, Source/xdps/AFMFileFontInfo.m,
Source/xlib/XGFont.m, Source/xlib/XftFontInfo.m: Update with new
screen font changes in backend/gui interface.
Source/art/ftfont.m: Update with new interface. Add basic support
of screen fonts.
2002-11-24 00:40 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XWindowBuffer (-_exposeRect:): Round coordinates
explicitly to avoid truncating problems.
2002-11-24 00:35 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m, Source/art/ftfont.h, Source/art/ftfont.m:
Implement the glyph generation backend methods. Implement the
GSShowGlyphs operator. Handle glyphs properly in FTFontInfo.
2003-01-23 Adam Fedor <fedor@gnu.org>
* Headers/xlib/GSXftFontInfo.h: Renamed from XftFontInfo
* Source/xlib/GSXftFontInfo.m: Idem.
* Source/xlib/GNUmakefile: Update for change.
* Source/xlib/XGContext.m: Idem.
2003-01-23 Adam Fedor <fedor@gnu.org>
* Documentation/Back: Some documentation.
2003-01-20 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSStreamContext.m (-GSSetCTM:): Implement.
(-GSConcatCTM:): Idem.
(-NSDrawBitmap:::::::::::): Don't flip images in a flipped view.
Correct scaling of images.
Tue Jan 21 02:08:05 2003 Alexander Malmberg <alexander@malmberg.org>
* Source/xlib/XGFont.m ([XGFontInfo -dealloc]): Fixed memory leak:
use XFreeFont(), not XUnloadFont().
2003-01-14 Adam Fedor <fedor@gnu.org>
* configure.ac: Check for GLX_RGBA_TYPE in glx.h
2003-01-14 Fred Kiefer <FredKiefer@gmx.de>
* Source/xdps/NSDPSContext.m
Removed unneeded method [xrContext]. Moved context access into
[createDPSContext] and call [XGServer xrContextForScreen:] instead
of [XGServer xrContext].
2002-12-31 Adam Fedor <fedor@gnu.org>
* Headers/x11/XGOpenGL.h: Redefine BOOL to avoid name collision
2002-11-27 Frederic De Jaeger <dejaeger@free.fr>
* configure.ac: add the flag --disable-glx.
* configure: regenerated
2002-11-24 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XIMInputServer.m
In [lookupStringForEvent:window:keysym:] autorelease the string,
so it gets freed late on.
2002-11-21 Adam Fedor <fedor@gnu.org>
* Version: 0.8.3
* Source/gsc/GSStreamContext.m (-GSSendBezierPath:): Add back and
implement.
* Source/x11/XGServerEvent.m ([XGServer
-receivedEvent:type:extra:forMode:] (ClientMessage:TAKE_FOCUS)):
minor correction.
2002-11-21 Fred Kiefer <FredKiefer@gmx.de>
* Source/gsc/GSGState.m
Implemented [GSSendBezierPath:].
* Source/gsc/GSStreamContext.m
Removed (empty) implementation of [GSSendBezierPath:].
* Source/x11/XGServer.m
Added #ifdef around include of XGOpenGL.h.
2002-11-16 Adam Fedor <fedor@gnu.org>
* Source/x11/XGGLContext.m (-initWithFormat:shareContext:): Remove
assert.
* Source/x11/XGServerWindow.m ([XGServer -setinputstate::]): Return
if window is NULL.
2002-11-16 Gregory John Casamento <greg_casamento@yahoo.com>
* Headers/x11/XGOpenGL.h: Added define to avoid collision of
parameters named "id" in some versions of the OpenGL headers
with the Objective-C type "id". This was causing build of
back to fail.
2002-11-15 Frederic De Jaeger <dejaeger@free.fr>
* Source/x11/XGGLFormat.m, Source/x11/XGGLContext.m
Headers/x11/XGOpenGL.h: New files.
* Source/x11/Makefile: Updated.
* configure.ac: add a test for GLX
* Source/x11/XGServer.m (glContextClass,
glPixelFormatClass): Implement.
2002-11-08 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerEvent.m ([XGServer
-receivedEvent:type:extra:forMode:] (ClientMessage:TAKE_FOCUS)):
Reassert focus and/or send FocusIn event in all cases.
2002-10-29 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerWindow.m ([XGServer -_checkWindowManager]):
Make sure not to dereference possible NULL pointer.
2002-10-28 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSStreamContext.m (-DPSsetalpha:): Use GSsetalpha
as defined in frontend, for printers that don't support setalpha.
2002-10-27 Adam Fedor <fedor@gnu.org>
* Tools/font_cacher.m: Add @end (Reported by Caba Conti
<520040438669-0001@t-online.de>).
2002-10-21 Adam Fedor <fedor@gnu.org>
* Source/x11/XIMInputServer.m
([XIMInputServer -initWithDelegate:display:name:]): Use
GSEncodingFromLocale.
* Source/xlib/XGFont.m ([XGFontInfo -setupAttributes]): Idem.
* Source/xlib/XftFontInfo.m ([XftFontInfo -setupAttributes]): Idem.
2002-10-19 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerEvent.m ([XGServer
-receivedEvent:type:extra:forMode:] (ClientMessage:TAKE_FOCUS)):
Don't set desiredFocusWindow to 0.
([XGServer
-receivedEvent:type:extra:forMode:] (FocusOut): Hack: if focus
went nowhere, don't deactivate app.
2002-10-18 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerEvent.m ([XGServer
-receivedEvent:type:extra:forMode:] (ClientMessage:TAKE_FOCUS)):
Only send event if we don't have a key window.
2002-10-15 01:37 Alexander Malmberg <alexander@malmberg.org>
* Tools/GNUmakefile: Use BUILD_SERVER to decide whether to build
X specific parts of gpbs or not.
2002-10-13 Adam Fedor <fedor@gnu.org>
* Version: 0.8.2.
* Documentation/news.texi: Update.
Fri Oct 11 00:47:04 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Source/xlib/XGFont.m ([XGFontInfo -setupAttributes]): Return NO
if the font can't be loaded. (Patch by Georg Fleischmann
<georg@vhf.de>).
2002-10-10 Adam Fedor <fedor@gnu.org>
* GNUmakefile.postamble: Only install back.make if building
as a library.
2002-10-10 Fred Kiefer <FredKiefer@gmx.de>
* Source/xlib/XGGState.m
DPSsetdash::: now accepts an empty dash pattern, signaling a reset
to a solid line.
2002-10-08 Adam Fedor <fedor@gnu.org>
* Update for front-end passing colorspaces and fonts
in overridable way.
* Headers/gsc/GSGStateOps.h: Update changed methods.
* Source/art/ARTContext.m: Font ivar is now a GSFontInfo
class, so use 'font' instead of '[font fontInfo]'.
* Source/gsc/GSContext.m (-GSSetFont): Idem.
(-GSSetFillColorspace:): Implement.
(-GSSetStrokeColorspace:): Idem.
(-GSSetFillColor:): Idem.
(-GSSetStrokeColor:): Idem.
* Source/gsc/GSGState.m: Update font ivar handling.
* Source/gsc/GSStreamContext.m: Idem.
* Source/winlib/WIN32GState.m: Idem.
* Source/xlib/XGGState.m: Idem.
* Window focus fixes
* Source/x11/XGServerEvent.m ([XGServer
-receivedEvent:type:extra:forMode:](ClientMessage/TAKE_FOCUS)):
Use given window as focus window, not one under mouse.
* Source/x11/XGServerWindow.m ([XGServer -setinputfocus:]): Don't
reset focus if we already requested it on this window.
2002-09-28 22:04 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Add .font package handling again.
2002-09-28 17:30 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m (load_font_configuration): Handle the
'Family' key.
2002-09-26 16:08 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Implement handling of the 'ScreenFonts' key
in .nfont packages.
2002-09-25 22:39 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Rework font configuration code to handle
the updated (and rather different) .nfont package format.
2002-09-24 14:38 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Use GSFontAntiAlias defaults value to decide
whether antialiasing should be enabled in the default rendering
hints.
2002-09-24 13:22 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XWindowBuffer.m (+windowBufferForWindow:depthInfo:):
Detect and handle errors properly. Only use shared memory for
reasonably large windows.
(-needsAlpha): Make data isn't NULL before trying to do anything.
2002-09-23 19:30 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m (-initWithFontName:matrix:): Retain
familyName correctly.
2002-09-21 12:14 Alexander Malmberg <alexander@malmberg.org>
* Headers/x11/XWindowBuffer.h, Source/x11/XWindowBuffer.m
(+windowBufferForWindow:depthInfo:): If possible, create a shared
pixmap from the image data and set it as the background of the
window.
2002-09-20 18:36 Alexander Malmberg <alexander@malmberg.org>
* Source/art/path.m (clip_svp_callback): Use correct x coordinate
for final span.
(-_clip_add_svp:): Place the last entry at the correct place
in clip_index.
2002-09-20 18:05 Alexander Malmberg <alexander@malmberg.org>
* Source/art/path.m (clip_svp_callback, -_clip_add_svp:): Update
the clipping bounding box.
2002-09-19 Adam Fedor <fedor@gnu.org>
* Source/win32/WIN32Server.m ([WIN -setbackgroundcolor::]): New.
* Source/x11/XGServerWindow.m ([XGServer -_createBuffer:]): Remove
setting background pixmap.
([XGServer -setbackgroundcolor::]): New
* Source/xlib/XGGState.m
(-_compositeGState:sourcefromRect:fromRecttoPoint:toPointop:opfraction):
Convert destination point not rect.
(-DPSimage:matrix:pixelsWide:pixelsHigh:bitsPerSample:samplesPerPixel:bitsPerPixel:bytesPerRow:isPlanar:hasAlpha:colorSpaceName:data):
Remove flipping.
2002-09-19 00:33 Alexander Malmberg <alexander@malmberg.org>
* Header/x11/XGInputServer.h, Source/x11/XIMInputServer.m: Track
all created XIC:s and destroy them explicitly.
2002-09-18 19:59 Alexander Malmberg <alexander@malmberg.org>
* Source/art/blit.h, Source/art/blit.m, Source/art/composite.m:
Implement -dissolveGState:fromRect:toPoint:delta:.
2002-09-18 00:36 Alexander Malmberg <alexander@malmberg.org>
* Source/art/image.m (-DPSimage:::::::::::): Treat input as
pre-multiplied in the common case to (really) match xlib/.
2002-09-16 16:43 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m (add_face): Change default rendering hints.
2002-09-16 16:36 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTGState.h, Source/art/ARTContext.m,
Source/art/image.m, Source/art/composite.m, Source/art/path.m:
Handle NSBackingStoreNonretained.
2002-09-14 13:39 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Keep track of the family name in FTFaceInfo
so FTFontInfo can set it correctly.
2002-09-14 13:03 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Add support for some simple rendering hints
in .nfont packages.
2002-09-12 02:29 Alexander Malmberg <alexander@malmberg.org>
* Source/art/image.m (_image_get_color_rgb_8,
_image_get_color_rgb_cmyk_gray): Fix clamping of y.
2002-09-10 22:11 Alexander Malmberg <alexander@malmberg.org>
* Headers/x11/XWindowBuffer.h: Add more documentation.
2002-09-10 21:36 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTWindowBuffer.h, Source/art/ARTWindowBuffer.m,
Source/x11/XWindowBuffer.m, Headers/x11/XWindowBuffer.h: Rename
ARTWindowBuffer to XWindowBuffer and move it to x11/ so other
backends can use it. Update many files in Source/art/.
2002-09-10 17:35 Alexander Malmberg <alexander@malmberg.org>
* Source/art/composite.m: Implement handling of tranformations and
clipping.
2002-09-08 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerWindow.m ([XGServer
-_XWinFrameToOSWinFrame:for:]): New.
([XGServer -_addExposedRectangle::]): Convert rect to OS coords.
([XGServer -_processExposedRectangles:]): Invalidate exposed
rects in view. (patch from Frederic De Jaeger).
2002-09-06 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSContext.m (-initWithContextInfo:): Fix
for GSStreamContext subclass.
* Source/GSStreamGState.m: New file.
* Source/GSStreamContext.m: Make a subclass of GSContext.
Call superclass implementation where appropriate.
* Source/GSStreamContext.m: Fix for 'show'ing parenthesis
characters (patch from Stefan Urbanek).
2002-09-01 Adam Fedor <fedor@gnu.org>
* Version: 0.8.1
2002-09-01 12:58 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m ([ARTGState -GSCurrentDevice:::]): Check
for NULL pointers before setting values.
2002-08-31 19:54 Alexander Malmberg <alexander@malmberg.org>
* Source/art/path.m (DPSrectfill::::): Calculate alpha pointer
correctly when clipped.
* Source/art/composite.m (-compositeGState:fromRect:toPoint:op:):
Fix detection of horizontal-only overlap (order==2), and handling
it in the general case.
* Source/blit.m: Whitespace cleanups.
2002-08-31 15:52 Alexander Malmberg <alexander@malmberg.org>
* Source/art/image.m: Implement clipping of images using the
clipping spans.
2002-08-31 14:40 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m, Source/art/ARTGState.h, Source/art/path.m:
Store clipping path as a set of spans instead of as an svp. Build
spans from DPSclip and DPSeoclip, and use it when clipping (only
implemented for paths, so far).
2002-08-30 15:42 Alexander Malmberg <alexander@malmberg.org>
* Source/art/blit.h, Source/art/blit.m, Source/art/path.m: Move
svp rendering code to path.m.
2002-08-30 01:29 Alexander Malmberg <alexander@malmberg.org>
* Source/art/GNUmakefile, Source/art/ARTContext.m, Source/art/path.m:
Move remaining path handling code to path.m. Reformat.
2002-08-30 00:33 Alexander Malmberg <alexander@malmberg.org>
* Headers/gsc/GSGStateOps.h, Source/art/ARTContext.m: Remove
ARTGState's own path handling and have it use GSGState's again.
2002-08-28 Fred Kiefer <FredKiefer@gmx.de>
* Source/gsc/GSGState.m
New method [currentPoint], gets used in [DPScurrentpoint::].
Corrected [DPSarc:::::] and [DPSarcn:::::] to draw the arc in user
space and transfrom it afterwards and implemented [DPSarct:::::].
2002-08-28 18:55 Alexander Malmberg <alexander@malmberg.org>
* Source/x11/XGBitmapImageRep.m, Source/xlib/XGBitmapImageRep.m,
Source/x11/GNUmakefile, Source/xlib/GNUmakefile: Move
XGBitmapImageRep.m from xlib/ to x11/.
* Source/art/ARTContext.m: Remove the copy of the XGBitmapImageRep
code.
* Source/art/blit.m: Add missing include of NSDebug.h.
2002-08-28 16:01 Alexander Malmberg <alexander@malmberg.org>
* Source/art/blit.m (artcontext_setup_draw_info): Change NSLog to
NSDebugLLog.
2002-08-28 13:29 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Make the filters used in subpixel rendering
configurable.
2002-08-28 00:34 Alexander Malmberg <alexander@malmberg.org>
* Source/art/blit.m: Do basic gamma correction when rendering
text.
2002-08-27 12:10 Alexander Malmberg <alexander@malmberg.org>
* Source/art/: Fix copyright notices.
2002-08-27 11:58 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m: Add experimental subpixel text renderer.
* Source/art/blit.h, Source/art/blit.m: Add render_blit_subpixel
function, used in subpixel rendering.
2002-08-27 10:23 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m, Source/art/composite.m,
Source/art/GNUmakefile: Move compositing code to its own file.
Reformat.
(-_composite_func::::::): Handle the plusl_oo case correctly.
(-compositerect:op:): Handle inline alpha in the general case.
2002-08-26 16:36 Alexander Malmberg <alexander@malmberg.org>
* Source/art/image.m: Assume that input isn't premultiplied in
all cases (to match -xlib behavior, for now). Reformat to fit
coding standards better.
2002-08-26 15:59 Alexander Malmberg <alexander@malmberg.org>
* Headers/art/ARTContext.h, Source/art/ARTContext.m,
Source/art/ARTWindowBuffer.m, Source/art/GNUmakefile,
Source/art/blit.h, Source/art/ARTGState.h, Source/art/image.m: Move
image handling (-DPSimage...) to its own file. Add handling of
arbitrary transformations, arbitrary bits/samples, bits/pixel, etc.,
planar data, and gray and cmyk colorspaces.
2002-08-26 01:09 Alexander Malmberg <alexander@malmberg.org>
* Source/art/blit.m: Reformat to fit coding standards better.
2002-08-26 00:33 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m (-DPSimage:::::::::::): Assume input is
pre-multiplied.
2002-08-25 21:41 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m (-_composite_func::::::): Implement
special optimized handling of transparent source.
2002-08-25 20:48 Alexander Malmberg <alexander@malmberg.org>
* Headers/gsc/GSGState.h, Headers/gsc/gscolors.h,
Source/art/ARTContext.m, Source/gsc/GSGState.m, Source/gsc/gscolors.c,
Source/winlib/WIN32GState.m, Source/xlib/XGGState.m: Optimize color
handling by passing around pointers to device_color_t structures
(instead of the structures themselves).
2002-08-23 01:54 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTWindowBuffer.m (+artWindowBufferForWindow:): Mark
the segment for destruction after X has attached to it.
2002-08-23 01:44 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m: Implement handling of non-rectangle
clipping paths. Use it when rendering paths (but not for other
operators yet).
2002-08-22 02:34 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m: (-DPSrectclip::::): Fix rounding when
converting to pixel coordinates.
2002-08-21 20:27 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m, Source/art/ARTWindowBuffer.h,
Source/art/ARTWindowBuffer.m, Source/art/GNUmakefile: Renamed the
WinImage class to ARTWindowBuffer and moved it to its own file.
2002-08-21 14:52 Alexander Malmberg <alexander@malmberg.org>
* Source/art/blit.h, Source/art/blit.m, Source/art/ftfont.h,
Source/art/ftfont.m: Reformat to fit coding standards better.
2002-08-21 13:50 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m: Move common code from _fill and DPSstroke
to convert the current path to an ArtVpath to a new method. Update
callers.
(-compositerect:op:): Create alpha buffer for NSCompositeCopy
if the current color isn't completely opaque.
2002-08-21 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ARTContext.m: ([WinImage -_exposeRect:]) Guard against
invalid coordinates to (hopefully) fix the problem with windows
turning all white and BadValue warnings appearing.
2002-08-20 Alexander Malmberg <alexander@malmberg.org>
* Headers/art/, Source/art/: Add back-art, a backend based on
libart and freetype.
2002-08-15 Adam Fedor <fedor@gnu.org>
* configure.ac: Add NetBSD header/ldflag support (Patch from
Peter Cooper). Cleanup freebsd support.
2002-08-06 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerEvent.m ([XGServer
-receivedEvent:type:extra:forMode:]): Add special gotShmCompletion
call for libart backend.
2002-08-02 Adam Fedor <fedor@gnu.org>
* Merge from 0.8.0 into main branch.
2002-08-01 Adam Fedor <fedor@gnu.org>
* Version: 0.8.0
* configure.ac: Check for usleep.
* Source/x11/XGServerWindow.m ([XGServer -windowdevice:]):
Use alternate if no usleep.
2002-07-28 Adam Fedor <fedor@gnu.org>
* Source/xlib/XGBitmap.m (_pixmap_combine_alpha): Use
interger arithmatic. (Patch from Jeff Teunissen)
2002-07-19 Adam Fedor <fedor@gnu.org>
* Source/xlib/XGGeometry.m (clipXRectsForCopying): Shift rect
origin to account for clipping.
* Source/xlib/XGGState.m (-setAlphaColor:): Correct colorspace
of alpha color.
2002-07-17 Adam Fedor <fedor@gnu.org>
* Version: 0.7.9
2002-07-14 Adam Fedor <fedor@gnu.org>
* Source/x11/XIMInputServer.m (-ximCreateIC:): Don't set
FocusWindow attrib. Causes a segfault at XCloseDisplay..
2002-07-13 Adam Fedor <fedor@gnu.org>
* Source/xlib/XGBitmap.m (_pixmap_combine_alpha): Fix and
cleanup alpha blending (Rescale by alpha)
(_bitmap_combine_alpha): Idem. (Patch from Jeff Teunissen).
2002-06-28 Adam Fedor <fedor@gnu.org>
* Source/xlib/XGFont.m ([XGFontInfo -xCharStructForGlyph:glyph]):
Fix variable typo - using wrong index to glyph (patch from
stoyan@hologr.com).
2002-06-24 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerWindow.m ([XGServer -windowdevice:]): Use
usleep instead of loop to wait for resize (rewritten
patch from georg@vhf.de).
Sat Jun 22 14:28:28 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Source/gsc/GSGState.m ([-DPScurrentpoint::]): Use -invert, not
-inverse, to invert an affine transform.
Sat Jun 22 14:24:20 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Source/gsc/GSContext.m
([-NSDrawBitmap:rect:pixelsWide:pixelsHigh:
bitsPerSample:samplesPerPixel:bitsPerPixel:bytesPerRow:
isPlanar:hasAlpha:colorSpaceName:data]): Use scaleXBy:yBy: rather
than scaleBy::.
* Source/gsc/GSGState.m ([-DPSscale::]): Idem.
2002-06-20 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServer.m (_parse_display_name): New.
([XGServer -_initXContext]): Use it.
2002-06-15 Alexander Malmberg <alexander@malmberg.org>
* configure.ac, configure: Use libart2-config and freetype-config
to get libs and cflags for libart and freetype. Updated configure.
* Source/gsc/GSGState.m (-DPSinitgraphics): Set alpha _before_
calling -setColor:state:.
2002-06-10 Adam Fedor <fedor@gnu.org>
* Version 0.7.8
2002-06-09 Adam Fedor <fedor@gnu.org>
* configure.ac: Set WIN32 and WINLIB only on mingw32 systems.
2002-06-08 Fred Kiefer <FredKiefer@gmx.de>
* Headers/winlib/WIN32FontInfo.h
Added ivar for font handle.
* Source/winlib/WIN32FontInfo.m
Implemented most of the code to support different fonts.
2002-06-08 Fred Kiefer <FredKiefer@gmx.de>
* Source/gsc/GSGState.m
Coorected [DPSrectfill::::], [DPSrectstroke::::] and
[DPSrectclip::::] not to change the path.
* Source/winlib/WIN32GState.m
[DPSrectstroke::::] same correction.
2002-06-04 Fred Kiefer <FredKiefer@gmx.de>
* Source/gsc/GSGState.m
Added default implementation for [DPSrectfill::::],
[DPSrectstroke::::] and [DPSrectclip::::].
* Header/winlib/WIN32GState.h
Added ivar to store old clip region.
* Source/winlib/WIN32GState.m
[_paintPath:], [DPSrectclip::::], [DPSinitclip], [setStyle:]
and [restoreStyle:]: Rewrote the whole clipping code.
Added [deepen] and [dealloc] for consistency.
Simplified [DPSrectstroke::::].
2002-06-03 Adam Fedor <fedor@gnu.org>
* Source/win32/WIN32Server.m (-beep): Implement
* Source/winlib/WIN32Context.m (-NSBeep): Remove.
* Source/x11/XGServer.m (-beep): Implement.
* Source/xlib/XGContext.m (-NSBeep): Remove.
2002-06-02 Fred Kiefer <FredKiefer@gmx.de>
* Source/win32/WIN32Server.m
Treat NSBackingStoreRetained the same as NSBackingStoreBuffered,
just as the X backends do.
* Source/winlib/WIN32GState.m
Reimplemented creation of bitmaps. This should now work for all
bitmaps with >16 bits per pixel. The bitmaps that are still missing
are due to clipping problems, as can be seen by switching clipping off.
2002-05-12 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSGState.m (-DPSsetalpha:): Call setColor:state:.
Clamp value to 0<x<1
(-DPSsetcmykcolor::::): Idem.
(-DPSsetgray:):Idem.
(-DPSsethsbcolor:::):Idem.
(-DPSsetrgbcolor:::):Idem.
(-GSSetFontSize:): Use given size.
(-initWithDrawContext:): Call DPSinitgraphics
(-DPSinitgraphics): Init all our graphics state.
* Source/gsc/gscolors.c (gsHSBToRGB): Fix for h==1.
(gsColorToCMYK): Implement.
(gsColorToHSB): Idem. (Patches and suggestions from
alexander@malmberg.org, rearranged a little).
* Source/xlib/XGFontManager.m (load_cache): Use NSBundle to find
font_cacher.
* Source/xlib/XGGState.m (GSSetFont:) Rename from setFont.
(-DPSinitgraphics): Call super.
* Source/winlib/WIN32GState.m (-DPSinitgraphics): Call super.
* Tools/GNUmakefile: Build font_cacher if BUILD_GRAPHICS=xlib
2002-05-11 Richard Frith-Macdonald <rfm@gnu.org>
* Source/Source/xlib/XGFont.m: ([-xCharStructForGlyph:]) use newer
GSGFromUnicode() API.
2002-05-09 Adam Fedor <fedor@gnu.org>
* Headers/gsc/GSGState.h: Add color and text ivars.
* Headers/winlib/WIN32GState.h: Idem.
* Headers/xlib/XGGState.h: Idem.
* Source/gsc/GSContext.m: Implement font/text methods.
* Source/gsc/GSGState.m (-setColor:state:) Implement
Implement color DPS and GS ops to use it.
Implement text/font ops.
* Source/winlib/WIN32GState.m (-setColor:state:) Implement.
Remove color ops (now in GSGState)
* Source/xlib/XGGState.m (-setColor:state:) Implement.
(-setAlphaColor:) New.
Remove color ops (now in GSGState)
2002-05-07 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSStreamContext.m (-GSSetFont:): Don't flip
the font for a flipped view.
2002-05-06 Adam Fedor <fedor@gnu.org>
* configure.ac (BUILD_SERVER): Set to predefined define
* Source/GSBackend.m: Use it.
2002-05-05 Adam Fedor <fedor@gnu.org>
* configure.ac: Simplify backend selection using --enable-server
and --enable-graphics. Add --with-library-flags and
--with-include-flags for adding additonal flags. Revert last
change to XShm.h test. Add check for art libraries.
* Source/GNUmakefile: Conform to new configure output
* Source/GSBackend.m: Idem.
* Headers/x11/wraster.h: Idem.
* Source/x11/XIMInputServer.m: Correct define for HAVE_UTF8
* GNUmakefile.postamble (after-distclean): Remove config.h
* Source/gsc/GSContext.m (-dealloc): Destroy gstate.
* Source/x11/XGServerWindow.m([XGServer
-_addExposedRectangle::]): Use current context class
([XGServer -flushwindowrect::]): Idem. (patches from
alexander@malmberg.org).
2002-05-04 Adam Fedor <fedor@gnu.org>
* configure.ac: Improved check for XShm.h
* Headers/x11/wraster.h: Use HAVE_X11_EXTENSIONS_XSHM_H
* Source/x11/XIMInputServer.m: Fix #if for USE_XIM (patch from
alexander@malmberg.org)
* Source/xlib/XGContext.m: Idem for HAVE_XFT
2002-05-03 Adam Fedor <fedor@gnu.org>
* GNUmakefile.postamble: Remove '/' in
$(INSTALL_ROOT_DIR)/$(GNUSTEP_MAKEFILES) so Windows won't
complain.
2002-05-02 Adam Fedor <fedor@gnu.org>
* configure.ac: Updated to autoconf 2.53 from configure.in
* configure, config.h.in: Regenerate.
* acconfig.h: Remove
2002-05-01 Adam Fedor <fedor@gnu.org>
* config.make.in: Add newline at end - causes Solaris sed to barf.
2002-04-30 Adam Fedor <fedor@gnu.org>
* Version: 0.7.7
* Documentation/news.texi: Update
* NEWS: Regenerate.
2002-04-27 Ludovic Marcotte <ludovic@Sophos.ca>
* Source/xlib/XGFontManager.m: Added a RETAIN call to the
allFontNames ivar in -enumerateFontsAndFamilies since we would
reference a dealloc'ed object after this method call.
2002-04-27 Fred Kiefer <FredKiefer@gmx.de>
* Headers/win32/WIN32Server.h
* Headers/winlib/WIN32GState.h
* Source/win32/WIN32Server.m
* Source/winlib/WIN32GState.m
Made sure only resources allocated by our code will ever be freed.
2002-04-26 Adam Fedor <fedor@gnu.org>
* acconfig.h: Define HAVE_UTF8
* config.h.in: Regen.
2002-04-24 Adam Fedor <fedor@gnu.org>
* configure.in: Don't enable wraster support if --with-wraster=none.
Print error if no backend server or graphics configured.
2002-04-23 Adam Fedor <fedor@gnu.org>
* Headers/x11/XGServer.h: Rework to handle multiple screens.
* Headers/xlib/XGContext.h: Simplify.
* Source/win32/WIN32Server.m (-mouseLocationOnScreen:window:):
Implement.
* Source/x11/XGServer.m: Rework to handle multiple screens. New
XScreenContext class.
(-initXContext): Use it.
(-_screenContextForScreen:): Implement.
(-xrContextForScreen:): Idem.
(-drawMechanismForScreen:): Idem.
(-xDisplayRootWindowForScreen:): Idem.
(-xColorFromColor:forScreen:): Idem.
* Source/x11/XGServerEvent.m (-mouseLocationOnScreen:window:):
Implement.
* Source/x11/XGServerWindow.m (-window::::): Use screen arg.
(_blankCursor): Use default screen for drawable (?).
(imagecursor::::::): Idem.
* Source/xlib/XGBitmapImageRep.m: Update for new server interface.
* Source/xlib/XGGState.m: Idem.
2002-04-22 Georg Fleischmann
* back/Source/xlib/XGGState.m
[XGGState DPSsetlinewidth:]: scale line width.
2002-04-23 Fred Kiefer <FredKiefer@gmx.de>
* Source/win32/WIN32Server.m
[window::::] corrected and simplified the last change.
2002-04-22 Adam Fedor <fedor@gnu.org>
* configure.in: Check for gdi32.
* Source/win32/WIN32Server.m (window::::): Update for new interface -
frame is frame rect, not content rect.
* Source/x11/XGServer.m (-_initXContext): Look for
display attributes in server_info.
* Source/x11/XGServerWindow.m (-window::::): Update for new interface.
2002-04-21 Fred Kiefer <FredKiefer@gmx.de>
* Headers/win32
* Headers/win32/WIN32Server.h
* Headers/win32/WIN32Geometry.h
* Source/win32
* Source/win32/GNUmakefile
* Source/win32/GNUmakefile.preamble
* Source/win32/WIN32Server.m
New directories and files with Display Server for MS Windows.
* Headers/winlib
* Headers/winlib/WIN32Context.h
* Headers/winlib/WIN32GState.h
* Headers/winlib/WIN32FontEnumerator.h
* Headers/winlib/WIN32FontInfo.h
* Source/winlib
* Source/winlib/GNUmakefile
* Source/winlib/GNUmakefile.preamble
* Source/winlib/WIN32Context.m
* Source/winlib/WIN32GState.m
* Source/winlib/WIN32FontEnumerator.m
* Source/winlib/WIN32FontInfo.m
New directories and files for drawing on MS Windows.
* configure
Add library gdi32 for winlib back end.
* Source/GSBackend.m
Corrected to handle the winlib/win32 backend correctly.
* Tools/gpbs.m
Ifdefed some signals that are not defined in mingw and use spawn
instead of fork on mingw.
2002-04-19 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/gpbs.m: If given -NSHost specification for the current host,
ignore it and use the standard name.
2002-04-15 Gregory John Casamento <greg_casamento@yahoo.com>
* configure.in: Added check to determine if libXft contains
XftDrawStringUtf8 which is used to draw unicode strings.
2002-04-15 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerWindow.m ([XGServer
-_addExposedRectangle::]): Use current server class
([XGServer -flushwindowrect::]): Idem.
(Suggestion by alexander@malmberg.org)
* Source/x11/XIMInputServer.m (-initWithDelegate:display:name:):
Use defaultCStringEncoding if UTF8 doesn't work.
(Patch from stoyan@on.com.ua).
2002-04-14 Adam Fedor <fedor@gnu.org>
* Headers/x11/XGServerWindow.h: Add graphics driver protocol
information.
* Source/x11/XGServerWindow.m (_createBuffer:): Use it.
(-termwindow:): Idem.
([XGServer -windowbacking::win]): Idem.
([XGServer -windowdevice:]): Idem.
([XGServer -_addExposedRectangle::]): Idem.
([XGServer -flushwindowrect::]): Idem.
* Source/xlib/XGBitmapImageRep.m: Use new GSCurrentDevice.
* Source/xlib/XGContext.m: Idem.
* Headers/xlib/XGGState.h: Use window device, not window number.
* Source/xlib/XGGState.m: Idem.
Thu Apr 11 22:24:01 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Source/x11/XGServerEvent.m: Added missing includes.
* Source/x11/XGServerWindow.m: Idem.
* Source/x11/XGDragView.m: Idem.
2
2002-04-11 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/gpbs.m: Fixed bug in argument parsing ... was objecting to
-NSHost!
2002-04-10 Adam Fedor <fedor@gnu.org>
* configure.in: Don't set X paths if no X found. Only set
/usr/local paths for freebsd
* Source/gsc/GSContext.m: Remove currentgstate, gstate
* Source/x11/XGServerWindow.m (windowbacking:) Implement.
2002-04-06 Adam Fedor <fedor@gnu.org>
* configure.in: Renable XIM by default again.
* Source/gsc/GSStreamContext.m (GSSetFont:): Implement.
Fix up show methods and fix spaces in method names.
* Source/xlib/XGContext.m (-initWithContextInfo:): Return
alternate (PS) context when indicated.
* Source/xlib/xrtools.c: Simplify color conversion routines.
* Source/xlib/XGGState.m: Use them
2002-04-03 Adam Fedor <fedor@gnu.org>
* Source/GNUmakefile.preamble: Fix LIB_DIRS and
LIBRARIES_DEPEND_UPON for compiling as a library.
2002-04-02 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSContext.m (-GSDefineGState): Use new def - also
creates a copy of the gstate.
(-GSReplaceGState): Replace with copy of current gstate.
* configure.in (--with-name): Configure the name of the backend
* back.make.in: Idem.
* config.make.in: Idem.
* Source/GNUmakefile: Idem.
* Documentation/install.texi: Document.
* Source/GNUmakefile.preamble: Missing include.
* Source/x11/XGServerWindow.m: Fix slideImage method name.
2002-04-01 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerWindow.m ([XGServer -_setupRootWindow]): Read
GSAppOwnsMiniwindow default.
([XGServer -appOwnsMiniwindow]): Use it.
([XGServer -miniwindow:): Idem.
* Source/gsc/GSContext.m (-GSSendBezierPath:): Implement
(-GSRectClipList::): Likewise.
(-GSRectFillList::): Likewise.
(-GSCurrentCTM): Likewise.
(-GSSetCTM:): Likewise.
(-GSConcatCTM:): Likewise.
* Source/xlib/XGGState.m ([XGGState -DPSsetmiterlimit:]): Implement
to do nothing.
* Source/x11/GNUmakefile: Remove unsed draw.c, gradient.c, misc.c
2002-03-31 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerWindow.m
In [window:::] set the initial hints for a window, as
setWindowHintsForStyle() would otherwise never be called.
2002-03-30 Adam Fedor <fedor@gnu.org>
* Source/GNUmakefile.preamble: Add graphic includes, -Wall
* Source/gsc/GNUmakefile.preamble: Likewise.
* Source/x11/GNUmakefile.preamble: Likewise.
* Source/xlib/GNUmakefile.preamble: Likewise.
* Tools/font_cacher.m: Fix include.
2002-03-29 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSGState.m (-GSSendBezierPath:): Append path in all
cases.
(- GSRectFillList): Implement.
* Source/x11/XGServerWindow.m:
([XGServer -windowbounds:]): Don't get screen bounds.
* Source/x11/*.c: Fix includes.
2002-03-27 Adam Fedor <fedor@gnu.org>
* Source/x11/GNUmakefile: Get headers from right place.
* Source/xlib/GNUmakefile: Remove invalid header.
* Source/x11/XGServerWindow.m (-window:::): Change method to
match frontend (including setting of style).
2002-03-27 Adam Fedor <fedor@gnu.org>
* Version: Initial version (most code extracted from xgps).
|