1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267
|
2006-07-31 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.14.3
2006-05-29 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.14.3
==================== 2.14.2 ====================
2006-05-29 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.14.2
2006-05-29 Vincent Untz <vuntz@gnome.org>
Backport from HEAD.
* libwnck/xutils.c: (_wnck_gdk_pixbuf_get_from_pixmap): don't assume
the drawable will always exist. Fix crash in bug #336823.
2006-04-18 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Remove obsolete entry for no_NO
* po/no.po: And the translation.
2006-04-10 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.14.2
==================== 2.14.1 ====================
2006-04-10 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.14.1
2006-04-08 Elijah Newren <newren gmail com>
Patch from Leszek Matok to ensure we get notification of
demands-attent/urgent windows on other workspaces immediately.
Fixes #336142.
* libwnck/tasklist.c (tasklist_include_window_impl): gather out
common functionality for special casing whether to include the
window in different lists, (tasklist_include_in_skipped_list):
rename from tasklist_include_window_ignoring_skip_taskbar() to be
more precise and use tasklist_include_window_impl(),
(wnck_tasklist_include_window): use_tasklist_include_window_impl()
now, (wnck_task_state_changed): check whether we need to update
the list of tasks due to a state change of a task on another
workspace.
2006-04-04 Gora Mohanty <gmohanty@cvs.gnome.org>
* configure.in: Added 'or' (Oriya) to ALL_LINGUAS.
2006-03-28 Elijah Newren <newren gmail com>
Fix transient cycles causing infinite loops, #332493. Portion of
patch providing robustness against self-transiency (i.e. cycle
length of 1) provided by Dan Winship.
* libwnck/tasklist.c (wnck_tasklist_active_window_changed): check
for transient cycles
* libwnck/window.c (update_transient_for): disallow
self-transiency entirely
2006-03-26 Vincent Untz <vuntz@gnome.org>
* doc/.cvsignore: libwnck-sections.txt shouldn't be ignored
2006-03-25 Vincent Untz <vuntz@gnome.org>
* libwnck/tasklist.c: (wnck_tasklist_activate_task_window): minimize
the window if it's on all workspaces when it was active, instead of
activating it.
Fix bug #335316
2006-03-25 Vincent Untz <vuntz@gnome.org>
* libwnck/tasklist.c: (wnck_task_finalize): fix leaks
* libwnck/xutils.c: (_wnck_icon_cache_new): fill the structure with
lots of nice 0.
Patch by Dan Winship <danw@novell.com>
Fix bug #334137
2006-03-13 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.14.1
==================== 2.14.0 ====================
2006-03-13 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.14.0
2006-03-06 Vincent Untz <vuntz@gnome.org>
* libwnck/pager.c: (workspace_at_point): fixes C89 compliance
Patch by Jens Granseuer <jensgr@gmx.net>
Fix bug #332866
2006-03-06 Vincent Untz <vuntz@gnome.org>
* libwnck/tasklist.c: (wnck_tasklist_activate_task_window): don't
minimize the window when it's on another desktop and it was the last
active window. Activate it instead. Fix bug #331661
2006-02-27 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.13.92
==================== 2.13.92 ====================
2006-02-27 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.13.92
2006-02-18 Vincent Untz <vuntz@gnome.org>
* libwnck/window-action-menu.c: (wnck_create_window_action_menu): fix
critical warning when creating the menu for a pinned window (for which
there is no reason to try to get the number of the workspace it is on).
2006-02-18 Vincent Untz <vuntz@gnome.org>
* libwnck/pager.c: (draw_window): don't pass negative width or height
to gdk_draw_rectangle(). It seems it draws a big rectangle when it's
negative :-)
Fix bug #155502
2006-02-18 Vincent Untz <vuntz@gnome.org>
* libwnck/pager.c: (wnck_pager_button_release): really fix the bug :-)
2006-02-18 Vincent Untz <vuntz@gnome.org>
* libwnck/pager.c: (wnck_pager_button_release): don't mark the window
being dropped as the one in action (ie, the one that we should not
draw) if we drop it on its original workspace.
Fix bug #317373
2006-02-13 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.13.92
==================== 2.13.91 ====================
2006-02-13 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.13.91
2006-02-11 Vincent Untz <vuntz@gnome.org>
* libwnck/.cvsignore: updated
* libwnck/application.c: fix doc for
wnck_application_get_icon_is_fallback
* libwnck/screen.c: fix the doc for wnck_screen_get_workspace
* libwnck/screen.h: mark the WnckWorkspaceLayout as private
Don't define _ in libwnck and use glib for this.
Fix bug #328621.
Using gi18n-lib.h also fixes bug #323181.
* libwnck/application.c: include <glib/gi18n-lib.h>
* libwnck/pager-accessible.c: ditto
* libwnck/screen.c: ditto
* libwnck/selector.c: ditto
* libwnck/tasklist.c: ditto
* libwnck/util.c: ditto
* libwnck/window.c: ditto
* libwnck/workspace.c: ditto
* libwnck/private.h: don't define _
* doc/libwnck-sections.txt:
* doc/tmpl/private.sgml: remove documentation for _
2006-02-07 Torsten Schoenfeld <kaffeetisch@gmx.de>
* libwnck/wnck-enum-types.c:
* libwnck/wnck-enum-types.h:
* libwnck/wnck-marshal.c:
* libwnck/wnck-marshal.h:
* libwnck/Makefile.am: Automate the creation of the GEnum/GFlags
types and signal marshalling files by moving the generated files
to the top of the list of built sources and making them depend on
suitable targets. Consequently, remove the generated files from
the repository and get rid of the regenerate-built-sources target.
2006-01-30 Elijah Newren <newren gmail com>
* configure.in: post-release bump to 2.13.91
==================== 2.13.90 ====================
2006-01-30 Elijah Newren <newren gmail com>
* configure.in:
* NEWS: version 2.13.90
2006-01-26 Kjartan Maraas <kmaraas@gnome.org>
* libwnck/workspace-accessible.c:
(wnck_workspace_accessible_get_size): Initialize coords to AT_XY_SCREEN
to get rid of a compiler warning. FIXME remains since the value was
picked at random.
2006-01-22 Vincent Untz <vuntz@gnome.org>
Make the pager Fitt's law compliant when shadow type is none.
* pager.c: (workspace_at_point): count the focus width when
shadow_type == GTK_SHADOW_NONE, extend the workspaces so that the
right/bottom lines belong to them too.
Fix bug #304248
2006-01-22 Elijah Newren <newren gmail com>
* libwnck/tasklist.c (wnck_task_state_changed): when we get a
demands-attention/urgent state change and the window doesn't have
a button in the tasklist, see if one of its ancestors does. Fixes
#317541.
2006-01-21 Vincent Noel <vincent.noel@gmail.com>
* libwnck/tasklist.c:
* libwnck/util.c:
* libwnck/private.h:
(make_gtk_label_bold, make_gtk_label_normal): Move these functions
from tasklist.c to util.c/private.h and use an underscore prefix
to reinforce that they're private
* libwnck/selector.c: (wnck_selector_get_window_name),
(wnck_selector_window_state_changed), (wnck_selector_item_new):
Use pango_font_description_set_weight to bold window names instead
of using pango markup. Fix bug #306289.
2006-01-21 Srirama Sharma <srirama.sharma@wipro.com>
This patch is union of patches given by Leena Gunda and Christian
Neumair along with some minor modifications; it synchronizes the
right-click-menu with that of Metacity's. #135710.
* libwnck/screen.c :
(wnck_create_window_action_menu): Add "Move to Workspace Left/
Right/Up/Down" menu item.
(item_activated_callback): Implement code to move the window to
the workspace at left/right/up/down.
* libwnck/screen.h :
Added the WnckWorkspaceLayout and WnckMotionDirection structure.
* libwnck/window-action-menu.c :
(wnck_screen_get_workspace_index): Get the index of the
workspace.
(wnck_screen_get_workspace_neighbor): Get the neighbor of the
workspace in specified direction.
(_wnck_screen_process_property_notify): If the workspace layout
has changed, call the idle handler to update the screen info.
(wnck_screen_calc_workspace_layout): calculate the workspace
layout.
(wnck_screen_free_workspace_layout): free the layout grid.
(update_workspace_layout): idle handler to update the screen
info. if the layout has changed.
The code to calculate the workspace layout is taken from
metacity sources.
(make_check_menu_item): create a check menu item with the given
mnemonic text.
(update_menu_state): replace the Roll up/Unroll menu item with
On Top check menu item.
* libwnck/window.[ch] :
(wnck_window_make_above): Put the window on top of all window.
(wnck_window_is_above): check whether the window is above all
other window.
(wnck_window_unmake_above): if the window is on top then uncheck
the menu item.
2006-01-21 Elijah Newren <newren gmail com>
* libwnck/tasklist.c (tasklist_include_window_ignoring_skip_taskbar):
include demands-attention/urgent windows unconditionally in
tasklist; this should help users not miss important windows on
other workspaces. #305979
2006-01-17 Elijah Newren <newren gmail com>
Thanks to Bart Vanbrabant for lots of debugging and testing work.
* libwnck/selector.c (wnck_selector_activate_window): Make sure
return value of wnck_window_get_workspace() is a valid workspace
before trying to activate it. Fixes #327435.
* libwnck/tasklist.c (wnck_tasklist_active_window_changed): Fix
coding style violation -- space before parens. :)
2006-01-16 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.13.90
==================== 2.13.5 ====================
2006-01-16 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.13.5
2006-01-16 Vincent Untz <vuntz@gnome.org>
* doc/tmpl/util.sgml: updated with new functions
2006-01-10 Thomas Vander Stichele <thomas at apestaart dot org>
* doc/libwnck-sections.txt:
add this file to CVS, as is done in other modules, so that
a clean build from CVS works
2006-01-10 Thomas Vander Stichele <thomas at apestaart dot org>
* Makefile.am:
since the library needs to be built before the docs can scan it,
descend into libwnck first
2006-01-06 Abel Cheung <maddog@linuxhall.org>
* configure.in: Added "zh_HK" to ALL_LINGUAS.
2006-01-03 Elijah Newren <newren@gmail.com>
Quit wrongly specifying the source indication in EWMH messages
where we did so, and start specifying the source indication where
we didn't even specify it. Requires 'pager' (as defined in the
EWMH) apps to register as such to get this right. Fixes #325556.
* libwnck/private.h (_wnck_get_client_type):
* libwnck/util.h (enum WnckClientType, wnck_set_client_type):
* libwnck/util.c (wnck_set_client_type, _wnck_get_client_type):
New functions and an accompanying enum
* libwnck/util.c (static WnckClientType client_type):
static var for tracking what the client type is
* libwnck/xutils.c (_wnck_close, _wnck_keyboard_move,
_wnck_keyboard_size, _wnck_change_state, _wnck_change_workspace,
_wnck_activate):
Use _wnck_get_client_type() to determine the source indication
field instead of leaving it unspecified or taking a random (and
usually wrong) guess.
* configure.in: Interface addition, so make some random change to
CURRENT/REVISION/AGE that looks right. After googling and looking
at a number of other modules, it's nowhere close to clear to me as
to how this is supposed to change.
2006-01-02 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.13.5
==================== 2.13.4 ====================
2006-01-02 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.13.4
2005-12-19 Vincent Untz <vuntz@gnome.org>
Change active window when scrolling on the selector.
Fix bug #323238. Patch by Nigel Tao <nigel.tao@myrealbox.com>
* libwnck/selector.c: (wnck_selector_scroll_cb): new
(wnck_selector_fill): connect to "scroll-event"
2005-12-19 Vincent Untz <vuntz@gnome.org>
Use virtual desktop size when computing size of pager.
Bug #311863. Based on patch by Loc Minier <lool+gnome@via.ecp.fr>
* libwnck/pager.c: (wnck_pager_size_request): use workspace sizes when
available
2005-12-19 Vincent Untz <vuntz@gnome.org>
* libwnck/tasklist.c: (wnck_tasklist_get_size_hint_list): add a
warning if argument is not valid
Sort window in a group alphabetically. Fix bug #171804.
Based on patch by Xavier Claessens <xclaesse@gmail.com>
* libwnck/tasklist.c: (wnck_task_compare_alphabetically): new
(wnck_tasklist_size_allocate): sort windows in a group
2005-12-13 Vincent Untz <vuntz@gnome.org>
Fix critical warning, bug #149326.
* libwnck/tasklist.c: (wnck_tasklist_init): move the code changing
the list of tasklist instances...
(wnck_tasklist_realize): ... here
(wnck_tasklist_finalize): ditto, moving the code...
(wnck_tasklist_unrealize): there
2005-12-12 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.13.4
==================== 2.13.3 ====================
2005-12-12 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.13.3
2005-12-04 Vincent Untz <vuntz@gnome.org>
Add scrolling support to the tasklist. Patch by Xavier Claessens
<x_claessens@skynet.be>. Fix bug #309956.
* libwnck/tasklist.c: (wnck_tasklist_size_allocate): recreate the list
of windows here, but have it sorted
(wnck_tasklist_scroll_cb): new
(wnck_tasklist_new): connect to scroll-event
(wnck_task_compare): add a comment here about the fact that the
windows sort used for scrolling depends on the position of the
sequences in the sort
2005-12-04 Vincent Untz <vuntz@gnome.org>
* configure.in:
* libwnck/xutils.c: remove old hack for old versions of GTK+
2005-11-14 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.13.3
==================== 2.13.2 ====================
2005-11-14 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.13.2
2005-11-02 Simos Xenitellis <simos@gnome.org>
* configure.in: Added ky (Kirghiz) to ALL_LINGUAS
2005-10-28 Erdal Ronahi <erdal.ronahi@gmail.com>
* configure.in: Added ku (Kurdish) to ALL_LINGUAS
2005-10-03 Elijah Newren <newren@gmail.com>
As suggested by Vincent in bug 163293...
* libwnck/tasklist.c (wnck_tasklist_free_skipped_windows,
wnck_tasklist_finalize, wnck_tasklist_free_tasks): have the caller
of wnck_tasklist_free_skipped_windows() set
tasklist->priv->skipped_windows to NULL instead of having
wnck_tasklist_free_skipped_windows() do it
2005-10-03 Elijah Newren <newren@gmail.com>
* NEWS: I didn't assist Denis with the patch for bug 165269 at
all; I merely committed it.
2005-10-03 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.12.2
==================== 2.12.1 ====================
2005-10-03 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.12.1
2005-09-30 Jochen Baier <Jochen.Baier@stud.uni-karlsruhe.de>
Detect windows that are removed from the skip_taskbar state.
Fixes #163293.
* libwnck/tasklist.c (struct skipped_window): new struct, (struct
WnckTasklistPrivate): include a list of skipped windows,
(wnck_task_state_changed): need to provide a prototype early on
because we want to call it earlier in the code,
(wnck_tasklist_init): initialize skipped_windows,
(wnck_tasklist_free_skipped_windows): new function,
(wnck_tasklist_finalize, wnck_tasklist_free_tasks): free the
skipped_windows, (tasklist_include_window_ignoring_skip_taskbar):
new function doing most the work that
wnck_tasklist_include_window() used to do,
(wnck_tasklist_include_window): keep the skip_tasklist check but
have tasklist_include_window_ignoring_skip_taskbar() do the rest,
(wnck_tasklist_update_lists): have windows that would otherwise be
included if it weren't for the skip_taskbar thingy be placed in
the skipped_windows list
2005-10-01 Elijah Newren <newren@gmail.com>
Patch from Denis Jacquerye to add a test-selector program for
testing; it doesn't get installed, so this isn't breaking any
freezes. Fixes #165269.
* libwnck/test-selector.c: new file
* libwnck/Makefile.am: Make sure to include the new test-selector
program, but don't install it
* libwnck/.cvsignore: Ignore the test-selector program
2005-09-29 Vincent Untz <vuntz@gnome.org>
* .cvsignore: updated
* Makefile.am:
* configure.in: use intltool
Based on patch by Rodney Dawes <dobey@novell.com>. Fixes bug #317190
* gtk-doc.make: should not be in CVS
* acconfig.h: ditto
* stamp.h.in: ditto
2005-09-19 Elijah Newren <newren@gmail.com>
Fix lack of detection of removal from fullscreen state; part of
the patch from Michael Vogt. Fixes #316700.
* libwnck/window.c (update_state): don't forget to initialize
window->priv->is_fullscreen to FALSE.
* libwnck/test-wnck.c (window_state_changed_callback): Notify
about fullscreen state changes too
2005-09-05 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.12.1
==================== 2.12.0 ====================
2005-09-05 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.12.0
2005-08-22 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.12.0
==================== 2.11.92 ====================
2005-08-22 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS: version 2.11.92
2005-08-08 Elijah Newren <newren@gmail.com>
* configure.in: post-release bump to 2.11.92
==================== 2.11.91 ====================
2005-08-08 Elijah Newren <newren@gmail.com>
* configure.in:
* NEWS:
version 2.11.91
2005-07-29 Christian Neumair <chris@gnome-de.org>
* libwnck/pager.c: (wnck_pager_init), (wnck_pager_draw_workspace),
(wnck_pager_expose_event), (wnck_pager_button_release):
Prevent pager from flickering when moving windows between workspaces.
Fixes #167745.
2005-07-23 Elijah Newren <newren@gmail.com>
Revert the portion of the patch from bug 161361 related to the
behavioral change of _NET_ACTIVE_WINDOW as that behavioral change
is being reverted in metacity (see bug 128380)
* libwnck/selector.c (wnck_selector_activate_window): send a
_net_current_desktop and _net_active_widow message. See FIXME in
the code about how this is sick and wrong and needs to be
fixed--but happens to work fine for now.
* libwnck/tasklist.c (wnck_tasklist_activate_task_window): no need
to move the window manually to the current workspace under default
behavior, need to manually send a _net_current_desktop message
first if user has stupid option set. See FIXME in the code about
how the latter change is sick and wrong and needs to be fixed--but
happens to work fine for now.
2005-07-20 Ryan Lortie <desrt@desrt.ca>
* libwnck/tasklist.h (wnck_tasklist_set_button_relief):
* libwnck/tasklist.c: Add new API for allowing the button relief
to be set to GTK_RELIEF_NONE on transparent panels.
2005-07-19 Elijah Newren <newren@gmail.com>
* libwnck/xutils.c (_wnck_get_group_leader): remove this function
(should have been removed as part of my patch in bug #120439)
2005-07-19 Benoît Dejean <TazForEver@dlfp.org>
* libwnck/tasklist.c (wnck_task_get_type):
Marked static and G_GNUC_CONST.
* libwnck/wnck-marshal.c:
added missing #include.
* libwnck/xutils.c (_wnck_get_string_property_latin1):
Marked static.
* libwnck/xutils.c (_wnck_get_group_leader):
#if 0 as it's never used.
* libwnck/pager-accessible.c (wnck_workspace_accessible_get_type):
Marked GTypeInfo const.
* libwnck/pager-accessible-factory.h
libwnck/pager-accessible.h
libwnck/selector.h
libwnck/wnck-enum-types.h
libwnck/workspace-accessible-factory.h
libwnck/workspace-accessible.h:
Marked *_get_type() G_GNUC_CONST.
2005-07-19 Olivier Andrieu <oliv__a@users.sourceforge.net>
* libwnck/window.[ch] (wnck_window_set_window_type): new setter
function (patch from bug #133306).
2005-07-19 Matthias Clasen <mclasen@redhat.com>
* doc/tmpl/*.sgml: Add template files to cvs, to make
a clean build from cvs work. (#302231, Ali Akcaagac)
2005-07-18 Elijah Newren <newren@gmail.com>
Patch from Philipp Thomas and Benoit Dejean to clean up a number
of warnings. Fixes #140175.
* libwnck/application.c (wnck_application_get_type):
* libwnck/pager.c (wnck_pager_get_type):
* libwnck/screen.c (wnck_screen_get_type):
* libwnck/tasklist.c (wnck_task_get_type, wnck_tasklist_get_type):
* libwnck/window.c (wnck_window_get_type):
* libwnck/workspace.c (wnck_workspace_get_type):
make sure to intialize the value_table field of the GTypeInfo
* libwnck/pager.c (wnck_pager_get_accessible):
s/gboolean static/static gboolean/
* libwnck/xutils.c (_wnck_get_utf8_list):
make local vars i and n_strings be guints instead of ints to avoid
comparison with unsigned quanties errors
* libwnck/xutils.c (_wnck_get_cardinal, _wnck_get_wm_state,
_wnck_get_window, _wnck_get_pixmap, _wnck_get_atom,
_wnck_get_window_list, _wnck_get_atom_list,
_wnck_get_cardinal_list, _wnck_get_utf8_list, read_rgb_icon,
get_kwm_win_icon):
typecast to (void*) instead of (guchar**) to avoid compiling
errors
2005-07-18 Xavier Claessens <x_claessens@skynet.be>
Correctly determine the active task when dealing with transients.
Fixes #310381.
* libwnck/tasklist.c (wnck_tasklist_active_window_changed): if the
current window doesn't have a corresponding task search for an
ancestor window that does
* libwnck/window.[hc] (wnck_window_get_transient): new function
2005-07-18 Elijah Newren <newren@gmail.com>
Fix an activation/minimization inconsistency. Mostly only affects
mouse focus (fixes a case where the stuff from both bug 136581 and
bug 121556 needs to be applied instead of just one of the two).
* libwnck/tasklist.c (wnck_tasklist_activate_task_window):
* libwnck/window.[ch] (wnck_window_transient_is_most_recently_activated):
rename wnck_window_transient_is_active() to
wnck_window_transient_is_most_recently_activated().
* libwnck/window.[ch] (wnck_window_transient_is_most_recently_activated):
Call wnck_window_is_most_recently_activated() for each transient
instead of wnck_window_is_active().
* configure.in:
bump LIBWNCK_CURRENT due to function rename
2005-07-17 Elijah Newren <newren@gmail.com>
Patch from Gregory Merchan to zero out unused fields in
ClientMessages, as required by the EWMH spec. Fixes what's left
of #135024.
* libwnck/window.c (wnck_window_activate,
wnck_window_activate_transient): improve/fix the documentation
* libwnck/xutils.c: (_wnck_close, _wnck_keyboard_move,
_wnck_keyboard_size, _wnck_change_state, _wnck_change_workspace,
_wnck_change_viewport, _wnck_toggle_showing_desktop): zero out
unused fields
2005-07-17 Elijah Newren <newren@gmail.com>
Patch from Mariano to have window list tooltips display WM_NAME
instead of WM_ICON_NAME. Finally fixes #124463.
* libwnck/tasklist.c:
(wnck_task_get_text): add a gboolean icon_text parameter, and use
it to determine whether to get_icon_name or get_name
(wnck_task_popup_menu):
(wnck_task_update_visibile_state):
(wnck_task_create_widgets):
pass true or false as appropriate for icon_text parameter to
wnck_task_get_text()
2005-07-02 Vincent Untz <vuntz@gnome.org>
* .cvsignore:
* doc/.cvsignore: updated
* COPYING: fix, again. I'm not the one who broke it, for once :-)
2005-07-02 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.11.5
==================== 2.11.4 ====================
2005-07-02 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS:
* README: version 2.11.4
2005-06-21 Vincent Noel <vnoel@cox.net>
* libwnck/selector.c (wnck_selector_set_window_icon): Show the
mini_icon instead of the regular icon, like the
tasklist. Crispier. Fixes bug #169220.
2005-06-16 Elijah Newren <newren@gmail.com>
Add support for the Urgent hint; fixes #120439.
* libwnck/selector.c (wnck_selector_get_window_name):
* libwnck/tasklist.c (wnck_task_popup_menu,
wnck_task_get_demands_attention, wnck_task_update_visibile_state,
wnck_task_create_widgets):
* libwnck/window.[ch] (wnck_window_demands_attention,
transient_demands_attention,
wnck_window_or_transient_demands_attention):
two function renames: (1) from
wnck_window_or_transient_demands_attention() to
wnck_window_or_transient_needs_attention(), and (2) from
-wnck_task_get_demands_attention() to
wnck_task_get_needs_attention()
* libwnck/selector.c (wnck_selector_window_state_changed):
* libwnck/tasklist.c (wnck_task_state_changed):
* libwnck/window.h (enum WnckWindowState):
add WNCK_WINDOW_STATE_URGENT and checks for it
* libwnck/window.c (COMPRESS_STATE macro): add
(window)->priv->is_urgent, (struct _WnckWindowPrivate): add
is_urgent_field and need_update_wmhints field),
(_wnck_window_create): provide default group leader but have
update_wmhints() do the actual setting if there is a different one
specified, (_wnck_window_process_property_notify): add need for
updating from WM_HINTS separate from icon_cache_property updating,
(update_state): looks like there's a bug here so throw in a FIXME
though I don't have time to check into it right now,
(update_wmclass): new function to get updates related to WM_HINTS
atom, (force_update_now): call update_wmhints()
* libwnck/xutils.h (_wnck_get_group_leader): remove this function
as it has been replaced by the more comprehensive update_wmhints()
in window.c
2005-06-07 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.11.4
==================== 2.11.3 ====================
2005-06-07 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS:
* README: version 2.11.3 (skipping 2.11.2...)
2005-05-31 Ray Strode <rstrode@redhat.com>
Make windows that demand attention more noticeable by
glowing their tasklist buttons (bug 120439).
* libwnck/tasklist.c (struct _WnckTask): add some new
fields to track glowing start time, screenshot,
(wnck_task_init): initialize new fields
(glow_pixbuf): new function to uniformly luminate a
pixbuf by some factor (with 1.0 meaning don't change)
(wnck_task_button_glow): new function to glow tasklist
button by some factor dependent on how long the button
has been glowing.
(wnck_task_clear_glow_start_timeout_id): function to
clear the glow timeout id when it becomes stale
(wnck_task_queue_glow): new function to start glowing a
tasklist button.
(wnck_task_stop_glow): new function to stop glowing a
tasklist butotn.
(wnck_task_finalize): stop glowing any buttons that
are glowing.
(wnck_tasklist_size_allocate): when a button gets hidden
be sure to invalidate its screenshot.
(wnck_task_popup_menu): when a window in a tasklist group
demands attention then make it's menu item bold.
(wnck_task_update_visible_state),
(wnck_task_create_widgets): when a window demands
attention start glowing its tasklist button.
(wnck_task_expose): rename wnck_task_class_group_expose
to wnck_task_expose, handle taking a screenshot of the
button right after it's drawn.
2005-05-29 Vincent Untz <vuntz@gnome.org>
* MAINTAINERS: update my e-mail address
2005-05-28 Elijah Newren <newren@gmail.com>
* libwnck/class-group.c (_wnck_class_group_remove_window): Patch
from Jaap Haitsma to determine a new group leader when the
previous one gets removed. Fixes #142569.
2005-05-27 Benot Dejean <TazForEver@dlfp.org>
* libwnck/xutils.c: (_wnck_get_text_property): Fixed possible leak.
Closes #304633.
2005-05-17 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.11.2
==================== 2.11.1 ====================
2005-05-17 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.11.1.
2005-04-01 Adi Attar <aattar@cvs.gnome.org>
* configure.in: Added "xh" to ALL_LINGUAS.
2005-03-31 Steve Murphy <murf@e-tools.com>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-03-07 Vincent Untz <vincent@vuntz.net>
* configure.in: post-release bump to 2.10.1.
==================== 2.10.0 ====================
2005-03-07 Vincent Untz <vincent@vuntz.net>
* configure.in:
* NEWS: Version 2.10.0.
2005-02-28 Vincent Untz <vincent@vuntz.net>
* configure.in: post-release bump to 2.10.0.
==================== 2.9.92.1 ====================
2005-02-28 Vincent Untz <vincent@vuntz.net>
* configure.in:
* NEWS: Version 2.9.92.1.
2005-02-28 Vincent Untz <vincent@vuntz.net>
* COPYING: grrrrrr. This shouldn't have changed. Revert this.
2005-02-28 Vincent Untz <vincent@vuntz.net>
* configure.in: post-release bump to 2.10.0.
==================== 2.9.92 ====================
2005-02-28 Vincent Untz <vincent@vuntz.net>
* configure.in:
* NEWS: Version 2.9.92.
2005-02-26 Vincent Untz <vincent@vuntz.net>
* libwnck/tasklist.c: (wnck_task_create_widgets): use GtkHBox instead
of GtkTable, set a max width in characters for the label so that it
requests a reasonable size.
Fix bug #160977
2005-02-26 Vincent Untz <vincent@vuntz.net>
* libwnck/application.c: (_wnck_application_destroy): plug leak
2005-02-20 Elijah Newren <newren@gmail.com>
Handle the changes to _NET_ACTIVE_WINDOW from bug 128380 (made in
order to match the agreed upon official behavior of that EWMH
message), make relevant functions take a timestamp parameter, and
add a timestamp to the _NET_CURRENT_DESKTOP message. Fixes all
libwnck issues pointed out in #128380 and #161361.
* libwnck/xutils.[ch]: (_wnck_activate): take a timestamp parameter
to avoid bugs from using gtk_get_current_event_time,
(_wnck_activate_workspace): likewise
* libwnck/pager_accessible.c:
* libwnck/pager.c:
* libwnck/private.h:
* libwnck/tasklist.c:
* libwnck/window-action-menu.c:
* libwnck/window.c:
* libwnck/window.h:
* libwnck/workspace.c:
* libwnck/workspace.h:
* test/test-wnck.c:
Handle the need for passing timestamps to _wnck_activate and
_wnck_activate_workspace (i.e. for _NET_ACTIVE_WINDOW and
_NET_CURRENT_DESKTOP messages)
* libwnck/tasklist.c:
Manual moving of windows to a different workspace now occurs under
different circumstances with the _NET_ACTIVE_WINDOW behavior
change.
* libwnck/selector.c:
With the new _NET_ACTIVE_WINDOW behavior, only
wnck_window_activate() is needed now.
* configure.in:
Increment LIBWNCK_CURRENT because of the API changes.
2005-02-12 Elijah Newren <newren@gmail.com>
Check for whether a window or one of its transients has the
demands attention hint set. Fixes #166713.
* libwnck/window.h: add wnck_window_or_transient_demands_attention
function
* libwnck/window.c: (wnck_window_demands_attention): correct an
old error in the documentation, (transient_demands_attention): new
function, (wnck_window_or_transient_demands_attention): new
function, (wnck_window_activate_transient): correct an old error
in the documentation.
* libwnck/selector.c: (wnck_selector_get_window_name): make use of
wnck_window_or_transient_demands_attention instead of
wnck_window_demands_attenion
* libwnck/tasklist.c: (wnck_task_get_demands_attention): make use
of wnck_window_or_transient_demands_attention instead of using a
hack equivalent to wnck_window_demands_attention
2005-02-11 Elijah Newren <newren@gmail.com>
* libwnck/window.c: (wnck_window_activate_transient): libwnck
isn't the window manager and shouldn't act like it. Combined with
the Metacity patch in bug 166894, this fixes #166826.
2005-02-11 Kjartan Maraas <kmaraas@gnome.org>
* libwnck/pager-accessible.c: (wnck_pager_ref_selection):
* libwnck/pager.c:
* libwnck/window.c: (wnck_window_transient_is_active):
Fix a couple of warnings reported by sparse/gcc
2005-02-07 Vincent Untz <vincent@vuntz.net>
* configure.in: post-release bump to 2.9.92.
==================== 2.9.91 ====================
2005-02-07 Vincent Untz <vincent@vuntz.net>
* configure.in:
* NEWS: Version 2.9.91.
2005-02-02 Vincent Untz <vincent@vuntz.net>
* libwnck/selector.c: fix typo
(wnck_selector_window_icon_changed):
(wnck_selector_window_name_changed):
(wnck_selector_window_state_changed):
(wnck_selector_window_closed): don't do anything if the hash was not
created yet
Fix bug #163770
2005-01-31 Elijah Newren <newren@gmail.com>
Try 2 to correct misleading and inaccurate wording. Hopefully,
really fixes #165379.
* libwnck/window-action-menu.c: Change wording of menu from
"Always on Current Workspace" to "Always on Visible Workspace".
"Always on Current Workspace" could sound like a synonym of "Only
on This Workspace" when it was supposed to be the opposite.
2005-01-28 Elijah Newren <newren@gmail.com>
* MAINTAINERS:
* HACKING:
New files. Clarify the rules on patches and such, and add some
getting started information for anyone that may want to try their
hand at hacking libwnck.
* rationales.txt:
Add the sticky/pinned/whatever_its_called windows bug.
2005-01-28 Elijah Newren <newren@gmail.com>
Patch from Vincent Noel to make the tasklist window menu popup
near the mouse pointer. Fixes #92842.
* libwnck/tasklist.c: (wnck_task_position_menu): get the pointer
location and adjust the menu location accordingly
2005-01-28 Elijah Newren <newren@gmail.com>
Correct misleading and inaccurate wording. Fixes #165379.
* libwnck/window-action-menu.c: (update_menu_state): change "Put
on All Workspaces" to "Always on Current Workspace". (also make
the hotkey change for "Only on This Workspace" be O in order to
match Metacity change--see bug 165380)
2005-01-27 Vincent Noel <vnoel@cox.net>
* libwnck/selector.c: (wnck_selector_dimm_icon),
(wnck_selector_set_window_icon): Don't crash when a minimized
window icon has no alpha. Fixes #165251.
2005-01-25 Vincent Noel <vnoel@cox.net>
Migrate the window menu widget handling code from gnome-panel.
Promote the window menu to a full-blown widget. Use GObject
functions for private structures. Fixes #164474.
* gtk-doc.make:
* libwnck/Makefile.am:
* libwnck/libwnck.h:
* libwnck/selector.c: (wnck_selector_destroy),
(wnck_selector_get_screen),
(wnck_selector_get_default_window_icon), (wnck_selector_dimm_icon),
(wnck_selector_set_window_icon), (wnck_selector_set_active_window),
(wnck_selector_get_window_name),
(wnck_selector_window_icon_changed),
(wnck_selector_window_name_changed),
(wnck_selector_window_state_changed),
(wnck_selector_active_window_changed),
(wnck_selector_activate_window), (wnck_selector_get_width),
(wnck_selector_item_new), (wnck_selector_add_window),
(wnck_selector_window_opened), (wnck_selector_window_closed),
(wncklet_connect_while_alive), (wnck_selector_connect_to_window),
(wnck_selector_connect_to_screen), (wnck_selector_destroy_menu),
(wnck_selector_menu_hidden), (wnck_selector_on_show),
(wnck_selector_setup_menu), (wnck_selector_fill),
(wnck_selector_get_type), (wnck_selector_init),
(wnck_selector_class_init), (wnck_selector_finalize),
(wnck_selector_new):
* libwnck/selector.h:
2005-01-25 Vincent Untz <vincent@vuntz.net>
* configure.in: post-release bump to 2.9.91.
==================== 2.9.90 ====================
2005-01-25 Vincent Untz <vincent@vuntz.net>
* configure.in:
* NEWS: Version 2.9.90.
2005-01-22 Elijah Newren <newren@gmail.com>
Change how tasks are sorted in the tasklist (make it intuitive and
rememberable instead of "seemingly random"). Fixes #52225.
* libwnck/private.h: (_wnck_window_create): take a sort_order
parameter
* libwnck/screen.c: (struct _WnckScreenPrivate): keep a
window_order parameter that increments as new windows are created,
(wnck_screen_construct): initialize window_order too,
(update_client_list): add new windows in mapping order instead of
stacking order and be sure to pass the sort order when creating a
new window
* libwnck/tasklist.c: (wnck_tasklist_size_allocate): list tasks
going down a column then going to a new row, instead of
vice-versa, (wnck_task_compare): use window sort_order instead of
the xid of the window's group leader and the xid of the window to
compare how to sort windows
* libwnck/window.c: (struct _WnckWindowPrivate): add a sort_order
flag, (_wnck_window_create): take a sort_order flag and use it to
set window->priv->sort_order, (wnck_window_get_sort_order): new
function to return the window's sort order
* libwnck/window.h: (wnck_window_get_sort_order): new function to
return the window's sort order
2005-01-18 Elijah Newren <newren@gmail.com>
Patch from Jaap Haitsma to show close all and (un)minimize all
options in the right click menu for grouped windows. Fixes
#131568.
* libwnck/tasklist.c: (wnck_task_close_all,
wnck_task_unminimize_all, wnck_task_minimize_all): new functions,
(wnck_task_popup_menu): add the *all options for groups windows
2005-01-15 Elijah Newren <newren@gmail.com>
Patch from Juerg Billeter to fix #163343.
* libwnck/tasklist.c (wnck_tasklist_window_changed_geometry): If
there's only one monitor then skip the monitor-change checking
code to avoid use of uninitialized variables (this caused some
clicks on windows in the tasklist to be ignored).
2005-01-12 Vincent Untz <vincent@vuntz.net>
* configure.in: post-release bump to 2.9.90.
==================== 2.9.4 ====================
2005-01-12 Vincent Untz <vincent@vuntz.net>
* NEWS: Version 2.9.4.
2005-01-11 Elijah Newren <newren@gmail.com>
* libwnck/pager.c (get_windows_for_workspace_in_bottom_to_top):
include pinned windows only for the active workspace. Fixes
#87531
2005-01-11 Elijah Newren <newren@gmail.com>
Allow minimizing an app via tasklist even when it has a transient.
Fixes #121556.
* libwnck/tasklist.c (wnck_tasklist_activate_task_window):
minimize the window if the window is active or its transient is
* libwnck/window.[ch] (wnck_window_transient_is_active): New
function to determine if a transient of a given window is active.
2005-01-06 Carlos Garnacho Parro <carlosg@gnome.org>
Modified patch from Fernando Villacis Postigo
<fvillacis@csnat.unt.edu.ar> in bug #95614
* libwnck/private.h: defined WNCK_ACTIVATE_TIMEOUT
* libwnck/tasklist.c: use it instead of
TIMEOUT_ACTIVATE
* libwnck/pager.c: Implemented switching workspaces
when doing a DnD operation.
2004-12-21 Vincent Untz <vincent@vuntz.net>
* configure.in: post-release bump to 2.9.4.
==================== 2.9.3 ====================
2004-12-21 Vincent Untz <vincent@vuntz.net>
* NEWS:
* README: Version 2.9.3.
* configure.in: check for GTK+ >= 2.5.4
2004-12-20 Mark McLoughlin <mark@skynet.ie>
* libwnck/tasklist.c:
(make_gtk_label_normal): rename and make
static.
2004-12-20 Mark McLoughlin <mark@skynet.ie>
* libwnck/tasklist.c:
(wnck_task_class_group_expose): make static.
2004-12-15 Mark McLoughlin <mark@skynet.ie>
Patch from Benjamin Kahn <xkahn@zoned.net> in
bug #155865
* libwnck/tasklist.c: (wnck_task_create_widgets):
Increase the amount of padding between the text
and icon.
2004-12-15 Mark McLoughlin <mark@skynet.ie>
* libwnck/tasklist.c: (make_gtk_label_bold): rename
from eel_gtk_label_make_bold() and make static.
2004-12-15 Mark McLoughlin <mark@skynet.ie>
Based on a patch from Juerg Billeter <j@bitron.ch> in
bug #154040.
* libwnck/tasklist.c:
(wnck_tasklist_init), (wnck_tasklist_finalize): track
tasklist instaces and call update_lists() on all instances
when instances are added or removed.
(wnck_tasklist_update_lists): only constrain the tasklist
to showing windows from a certain monitor if its the only
monitor.
2004-12-15 Mark McLoughlin <mark@skynet.ie>
Patch from Juerg Billeter <j@bitron.ch> in bug #154041
to fix windows from all screen being shown when tasklist
is first created.
* libwnck/tasklist.c: (wnck_tasklist_realize):
update lists after realization.
2004-12-15 Mark McLoughlin <mark@skynet.ie>
Fix from Benot Dejean <TazForEver@dlfp.org> in
bug #158875
* libwnck/util.c: (wnck_xid_read_resource_usage): fix leak.
2004-12-03 Benjamin Kahn <xkahn@novell.com>
* When a window title is too long to fit in the space provided,
it should be shortened and ellipsizes should be shown.
Fix for bug #155868
* The default application icon had been 24x24 and ALWAYS scaled down
to 16x16. Plus, the icon showed a blank piece of paper when it
represented a window on the screen. Fix the icon to show a window
and be the right size.
Fix for bug #155867
2004-10-19 Elijah Newren <newren@math.utah.edu>
* rationales.txt: New file (modelled after the metacity one with
the same name) that will include links to discussion on why
certain behaviors were chosen, and keep a list of tracker bugs.
(Think of this file as an aid in finding duplicates)
2004-10-12 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.8.2.
==================== 2.8.1 ====================
2004-10-12 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.8.1.
2004-10-03 Elijah Newren <newren@math.utah.edu>
Don't highlight a sticky window on all workspaces when it has
focus; only highlight it for the current workspace. (fixes
#104486)
* src/pager.c (draw_window): take an on_current_workspace
parameter and use it to determine whether to highlight the given
window as being focused, (wnck_pager_draw_workspace): pass whether
the workspace to be drawn is the current one to draw_window,
(wnck_pager_expose_event): determine whether the the workspace to
be drawn is the current one and pass the info along
2004-09-28 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.8.0.1.
==================== 2.8.0.1 ====================
2004-09-28 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.8.0.1.
2004-09-21 Mark McLoughlin <mark@skynet.ie>
Fix some runtime warning spew reported in bug #149313
* libwnck/tasklist.c:
(wnck_task_get_demands_attention): impl. handling task
groups as well as individual tasks.
(wnck_task_update_visible_state),
(wnck_task_create_widgets): use get_demands_attention()
* libwnck/window.[ch]: (update_actions): handle the minimize
and fullscreen actions.
2004-09-21 Ross Burton <ross@burtonini.com>
* libwnck/window.h: Add prototypes for wnck_window_set_fullscreen
and wnck_window_is_fullscreen() (fixes bug #153201)
2004-09-17 Juerg Billeter <j@bitron.ch>
* libwnck/tasklist.c: only show windows which are on the same
monitor as the tasklist (fixes bug #98698)
2004-09-15 Elijah Newren <newren@math.utah.edu>
Don't use the pager for window raising and focusing (fixes bug
#100470)
* src/pager.c (wnck_pager_button_release): Don't call
wnck_window_activate on the window clicked on.
2004-09-13 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.8.1.
==================== 2.8.0 ====================
2004-09-13 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.8.0.
2004-08-30 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.7.93.
==================== 2.7.92 ====================
2004-08-17 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.7.92.
2004-08-26 J.H.M. Dassen (Ray) <jdassen@debian.org>
http://bugzilla.gnome.org/show_bug.cgi?id=150699:
Implemented API documentation generation using gtk-doc (adapted from
libgsf's setup).
* gtk-doc.make: Added; copied from gtk-doc-tools.
* doc/Makefile.am, doc/libwnck-docs.sgml, doc/libwnck-overrides.txt:
Added; adapted from libgsf.
* Makefile.am: Added `doc' subdir; include `gtk-doc.make' in release
tarballs.
* configure.in: Check for gtk-doc-tools.
* autogen.sh: Shorter replacement version (using gnome-common); bumped
minimal automake version to 1.6 (as the documentation generation
doesn't work with automake 1.4).
* README: Updated the note on documentation.
2004-08-17 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add nb to ALL_LINGUAS.
2004-08-17 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.7.92.
==================== 2.7.91 ====================
2004-08-17 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.7.91.
2004-08-16 Christian Rose <menthos@menthos.com>
* configure.in: Added "bs" to ALL_LINGUAS.
2004-08-16 Arvind Samptur <arvind.samptur@wipro.com>
* libwnck/workspace-accessible.c:
(wnck_workspace_accessible_get_extents): Get the AtkComponent
co-ordinates right. Fixes #136447
2004-08-15 Elijah Newren <newren@math.utah.edu>
Fix window activation vs. minimization for mouse focus. (fixes
#136581)
* libwnck/screen.c (struct _WnckScreenPrivate): add a
previously_active_window field,
(wnck_screen_get_previously_active_window): new function,
(update_client_list): update the previously_active_window as well,
(update_active_window): also updates the previously_active_window
now.
* libwnck/screen.h Added wnck_screen_get_previously_active_window
* libwnck/tasklist.c (wnck_task_button_press_event): minimize when
the tasklist button is pressed if the window is the most recently
activated (instead of if the window is currently active).
* libwnck/window.[ch] (wnck_window_is_most_recently_activated):
new function
2004-08-09 Mark McLoughlin <mark@skynet.ie>
* libwnck/wnck-enum-types.[ch],
libwnck/wnck-marshal.[ch]: run "make regenerate-built-sources".
(Torsten Schoenfeld <kaffeetisch@gmx.de>, bug #125227)
2004-08-07 Elijah Newren <newren@math.utah.edu>
* libwnck/window.c (wnck_window_unminimize): call
wnck_window_activate_transient instead of _wnck_deiconify, because
unminimizing needs to send a timestamp to the window manager so
that the window's _NET_WM_USER_TIME can be updated. This makes
left clicking on the tasklist do the same thing as right-clicking
on the tasklist and selecting unminimize. (fixes issue 2 in
comment 97 of bug 118372)
* libwnck/xutils.c (_wnck_activate): send a timestamp with the
_NET_ACTIVE_WINODW message. Not as thorough as the patch in bug
135024 (see comments 102-108 of bug 118372)
2004-08-03 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.7.91.
==================== 2.7.90 ====================
2004-08-03 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.7.90.
2004-07-25 Rob Adams <readams@gnome.org>
Add support for _NET_WM_STATE_DEMANDS_ATTENTION hint. This makes
labels in the tasklist bold for windows with the hint set, and
adds API for reading the hint.
* libwnck/window.c (COMPRESS_STATE): add demands attention hint
(wnck_window_demands_attention): new function, returns the state
of the demands attention flag
(update_state): include demands attention in the list of updated
state
* libwnck/window.h (WnckWindowState): Add
WNCK_WINDOW_STATE_DEMANDS_ATTENTION
(wnck_window_demands_attention): add prototype for new API
function
* libwnck/wnck-enum-types.c: add demands attention hint
* libwnck/tasklist.c (eel_gtk_label_make_bold): new function,
copy/paste from eel.
(wnck_gtk_label_make_normal): inverse of make_bold
(wnck_task_update_visible_state): If demands attention is set,
make bold, otherwise make normal.
(wnck_task_state_changed): demands attention changes require
updating the visible state
(wnck_task_create_widgets): If demands attention is set, make
bold.
2004-07-22 James M. Cape <jcape@ignore-your.tv>
* libwnck/tasklist.c: (wnck_task_get_text):
Display shaded windows as "= <name> =" instead of "[ <name> ]".
2004-07-20 Arvind Samptur <arvind.samptur@wipro.com>
* window-action-menu.c: (wnck_create_window_action_menu):
When the window is on all workspaces, sensitize all
workspaces in Move to Another Workspace menu.
Fixes bug #147572
2004-07-06 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.6.3.
==================== 2.6.2.1 ====================
2004-07-06 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.6.2.1.
2004-06-25 Elijah Newren <newren@math.utah.edu>
* libwnck/pager.c: Activate the window clicked in the pager only
if it is in the current workspace. Fixes # 124981.
2004-06-21 Anders Carlsson <andersca@gnome.org>
* libwnck/window-action-menu.c: (item_activated_callback):
* libwnck/window.c: (wnck_window_close):
* libwnck/window.h:
* libwnck/xutils.c: (_wnck_close):
* libwnck/xutils.h:
Add timestamp argument to wnck_window_close.
2004-06-14 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.6.3
==================== 2.6.2 ====================
2004-06-14 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.6.2.
2004-04-20 Mark McLoughlin <mark@skynet.ie>
Based on a patch from Johan Persson <johpe916@student.liu.se>
in bug #138355.
* libwnck/window-action-menu.c:
(update_menu_state): don't show multi-workspace
related menu items if we've only one workspace.
2004-04-19 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.6.2
2004-04-19 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.6.1.
2004-04-19 Mark McLoughlin <mark@skynet.ie>
Patch from Neil Muller <neil@dip.sun.ac.za> in bug #133979
* libwnck/xutils.c: (find_largest_sizes), (find_best_size):
Don't down-size nitems from a gulong to an int. Fixes a
crash with enlightenment, apparently.
2004-04-18 Kjartan Maraas <kmaraas@gnome.org>
* libwnck/pager.c: (wnck_pager_button_press): AIX portability
fixes fro TheWrittenWord <bugzilla-gnome@thewrittenword.com>
* libwnck/tasklist.h: Same. Closes bug #125227.
2004-04-16 Iaki Larraaga <dooteo@euskalgnu.org>
* configure.in: Added "eu" (Basque) to ALL_LINGUAS.
2004-04-14 Mark McLoughlin <mark@skynet.ie>
Patch from Kim Woelders in bug #122086.
* libwnck/pager.c: (wnck_pager_button_release): only switch
workspaces if actually clicking on a different workspace
and move to viewport co-ordinates (0, 0) rather then where
the mouse actually clicks.
2004-04-10 Guntupalli Karunakar <karunakar@freedomink.org>
* configure.in: Added "gu" (Gujarati) to ALL_LINGUAS.
2004-03-30 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.6.1
2004-03-30 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.6.0.1
2004-03-22 Mark McLoughlin <mark@skynet.ie>
* configure.in: doh, STARTUP_NOTIFICATION_PACKAGE is
still needed.
2004-03-22 Mark McLoughlin <mark@skynet.ie>
* configure.in,
libwnck-1.0-uninstalled.pc.in,
libwnck-1.0.pc.in: remove explicit dependancy on
startup-notification since startup-notification headers
aren't actually required for building against libwnck.
2004-03-22 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.6.0.
2004-03-21 Gareth Owen <gowen72@yahoo.com>
* configure.in: Added en_GB to ALL_LINGUAS
2004-03-16 Alexander Winston <alexander.winston@comcast.net>
* configure.in (GETTEXT_PACKAGE): Added "en_CA" (Canadian English)
ALL_LINGUAS.
2004-03-04 Guntupalli Karunakar <karunakar@freedomink.org>
* configure.in: Added "pa" (Punjabi) to ALL_LINGUAS.
2004-02-24 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.5.90.
2004-02-18 Laszlo Peter <laca@sun.com>
* libwnck-1.0-uninstalled.pc.in: new
* Makefile.am: add the new .pc file to EXTRA_DIST
* configure.in: add the new .pc file to AC_OUTPUT
2004-01-06 Leena Gunda <leena.gunda@wipro.com>
* libwnck/window-action-menu.c:
(wnck_create_window_action_menu): Add the "Move to Workspace"
submenu to the actions menu.
(get_workspace_name_with_accel): Add mnemonics even to renamed
workspaces. Taken from metacity sources.
(item_activated_callback): Implement code to move the window to
specified workspace for MOVE_TO_WORKSPACE window action.
Fixes bug #96087.
2004-01-03 Robert Sedak <robert.sedak@sk.htnet.hr>
* configure.in: Added "hr" in ALL_LINGUAS.
2004-01-02 Padraig O'Briain <padraigobriain@sun.com>
* libwnck/window.c (update_actions): Add check that atom name is
not NULL. Fixes bug #127189.
2003-12-10 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.5.1.
2003-12-10 Mark McLoughlin <mark@skynet.ie>
Fixes bug #124148 - minimize animation goes to wrong place
with grouped windows.
* libwnck/tasklist.c:
(wnck_tasklist_size_allocate): pass in visible_windows to
update_icon_geometries.
(wnck_tasklist_update_icon_geometries): iterate over the
visible tasks updating the associated window's icon
geometries from there.
2003-11-22 Federico Mena Quintero <federico@ximian.com>
* libwnck/tasklist.c (WnckTaskType): Added a WNCK_TASK_CLASS_GROUP
type.
(struct _WnckTask): Added a class_group field, analogous to the
application and window fields.
(struct _WnckTasklistPrivate): Added class_groups and
class_group_hash fields. Replaced the active_app field with an
active_class_group field.
(wnck_task_new_from_window): Set the class_group of the task from
the window.
(wnck_tasklist_update_lists): Create a WnckClassGroup if
necessary; do not use widgets for applications.
(wnck_task_new_from_class_group): New function.
(wnck_task_new_from_application): Set the class_group of the task
to NULL.
(wnck_task_new_from_startup_sequence): Likewise.
(wnck_task_compare): Sort groups before everything else.
(wnck_task_state_changed): Use the class_group rather than the
application.
(wnck_task_get_text): Handle class groups.
(wnck_task_button_toggled): Likewise.
(wnck_task_popup_menu): Handle class groups as well as
applications.
(wnck_tasklist_free_tasks): s/active_app/active_class_group.
(wnck_tasklist_change_active_task): Likewise.
(wnck_task_finalize): Unref the class_group.
(wnck_tasklist_init): Create the class_group_hash.
(wnck_tasklist_finalize): Free the class_group_hash.
(wnck_tasklist_size_request): Use the class groups rather than
applications.
(wnck_tasklist_size_allocate): Likewise.
(wnck_tasklist_forall): Likewise.
(wnck_tasklist_remove): Likewise.
(wnck_task_get_highest_scored): Likewise.
(wnck_tasklist_score_groups): Likewise.
(wnck_task_new_from_application): Do not create widgets.
(wnck_task_button_toggled): We don't need the window state here,
so don't fetch it.
(wnck_task_get_text): Use a window's name rather than its icon
name. They seem to be the same for most windows, and Emacs screws
up the icon name, setting it to "emacs" only --- it's useless.
(WnckTaskType): Removed WNCK_TASK_APPLICATION.
(struct _WnckTask): Removed the application-related fields.
(struct _WnckTasklistPrivate): Likewise.
(wnck_task_finalize): Likewise.
(wnck_tasklist_finalize): Likewise.
(wnck_tasklist_free_tasks): Likewise.
(wnck_tasklist_update_lists): Likewise.
(wnck_task_popup_menu): Likewise.
(wnck_task_button_toggled): Likewise.
(wnck_task_get_text): Likewise.
(wnck_task_get_icon): Likewise.
(wnck_task_button_press_event): Likewise.
(wnck_task_create_widgets): Likewise.
(wnck_task_compare): Likewise.
(wnck_task_new_from_window): Likewise.
(wnck_task_new_from_startup_sequence): Likewise.
(wnck_task_app_name_changed): Removed.
(wnck_task_new_from_application): Removed.
(wnck_task_class_group_expose): Renamed from wnck_task_app_expose().
* libwnck/screen.h (struct _WnckScreenClass): Added
::class_group_opened() and ::class_group_closed() signals.
* libwnck/screen.c (update_client_list): Handle class groups by
creating new ones as needed and getting rid of empty ones.
(emit_class_group_opened): New function.
(emit_application_closed): New function.
(wnck_screen_class_init): Create the new signals.
* libwnck/window.c (struct _WnckWindowPrivate): Added a
class_group field.
(wnck_window_get_class_group): New function.
(_wnck_window_set_class_group): New function.
* libwnck/class-group.[ch]: New files that implement a simple
set of windows grouped by their resource class names.
* libwnck/Makefile.am: Added class-group.[ch].
* libwnck/test-tasklist.c (main): Set a default size so I don't
have to resize the test window every time.
* configure.in: Increment LIBWNCK_CURRENT and LIBWNCK_AGE.
2003-11-17 Padraig O'Briain <padraigobriain@sun.com>
* libwnck/tasklist.c (wnck_tasklist_init): Set translatable accessible
name and description. Completes fix for bug #123953.
2003-11-16 Havoc Pennington <hp@redhat.com>
* configure.in: 2.5.0
* libwnck/util.c (wnck_xid_read_resource_usage): new function
(wnck_pid_read_resource_usage): new
2003-10-27 Michael Meeks <michael@ximian.com>
* libwnck/window.c (find_last_transient_for): when
activating, prefer the main window over a utility
transient.
2003-10-28 Padraig O'Briain <padraigobriain@sun.com>
* libwnck/tasklist.c (wnck_tasklist_init): Set accessible name and
description. Fixes bug #123953.
2003-10-22 Vincent Untz <vincent@vuntz.net>
* libwnck/tasklist.c: (wnck_task_create_widgets) left align the button
label and add some padding.
Fix bug #120363 and bug #99760.
2003-10-22 Vincent Untz <vincent@vuntz.net>
* libwnck/pager.c: (wnck_pager_button_press) don't begin a drag if the
pager is in NAME mode because we can't see the window.
Fix bug #119031.
2003-10-22 Vincent Untz <vincent@vuntz.net>
* libwnck/pager.c: (get_window_rect): clip the window rectangle so it
doesn't get out of the workspace rectangle.
Fix bug #104700.
2003-10-21 Padraig O'Briain <padraigobriain@sun.com>
* libwnck/window.c (force_update_now): Call emit_name_changed only
once when name is changed.
2003-10-06 Christian Rose <menthos@menthos.com>
* configure.in: Added "mr" to ALL_LINGUAS.
2003-10-06 Leena Gunda <leena.gunda@wipro.com>
* libwnck/window-action-menu.c (wnck_create_window_action_menu):
sink the floating menu.
* libwnck/tasklist.c (wnck_task_finalize):
unref the action's menu.
Fixes bug #114834
Wed Sep 10 14:52:10 2003 Jonathan Blandford <jrb@redhat.com>
* configure.in: Rerelease 2.4.0.1 to fix glib-gettext problem.
2003-09-08 Havoc Pennington <hp@redhat.com>
* configure.in: 2.4.0
2003-09-02 Gediminas Paulauskas <menesis@delfi.lt>
* configure.in: Added lt to ALL_LINGUAS.
2003-07-29 Arvind Samptur <arvind.samptur@wipro.com>
* libwnck/xutils.c (_wnck_get_utf8_list): Number of
strings we are processing is one more than required.
Fixes workspace switcher having workspaces names blank
when adding new workspaces. Random problem.
Also get the string count right even without a null byte at the end
Pointed out by Havoc.
2003-07-20 Mariano Surez-Alvarez <msuarezalvarez@arnet.com.ar>
* libwnck/window.c(force_update_now): slightly reorder the updating of
window names and icon names, avoiding bogus update when changing the
window name if the icon name is set. bug #17994.
2003-07-11 Havoc Pennington <hp@redhat.com>
* libwnck/tasklist.c, libwnck/window.c: patch from Kim Woelders to
update tasklist as windows move between viewports, and include
windows even if they are offscreen if the workspace is not virtual
(viewport is same size as screen).
bug #114620
2003-06-15 Joël Brich <joel.brich@laposte.net>
* configure.in: Added "eo" to ALL_LINGUAS.
2003-06-07 Samúel Jón Gunnarsson <sammi@techattack.nu>
* configure.in: Added "is" into ALL_LINGUAS
2003-06-05 Kenneth Rohde Christiansen <kenneth@gnu.org>
* configure.in: Added li to ALL_LINGUAS.
2003-05-20 Havoc Pennington <hp@redhat.com>
* configure.in: increment to 2.3.1, and bump libtool stuff to
indicate that interfaces were added.
2003-05-13 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
* configure.in:
* libwnck/Makefile.am (libwnck_1_la_LIBADD):
add -lX11 to LDFLAGS, fixing #112530.
2003-05-06 Ross Burton <ross@burtonini.com>
* libwnck/window.[ch]:
Add wnck_window_is_fullscreen() and wnck_window_set_fullscreen().
2003-05-06 Danilo Šegan <dsegan@gmx.net>
* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.
2003-05-03 Havoc Pennington <hp@pobox.com>
Fix #77941
* libwnck/xutils.c (_wnck_icon_cache_set_want_fallback): make it
actually do something
* libwnck/application.c (wnck_application_get_icon)
(wnck_application_get_mini_icon): fall back to icon from one of
the windows if no icon found for the entire application
2003-05-01 Telsa Gwynne <hobbit@aloss.ukuu.org.uk>
* configure.in: Added "cy" (Welsh) to ALL_LIHGUAS
* po/cy.po: Added
2003-04-19 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
* configure.in: call AC_LIBTOOL_WIN32_DLL.
* libwnck/Makefile.am (libwnck_1_la_LDFLAGS): add -no-undefined.
2003-04-04 Havoc Pennington <hp@pobox.com>
* libwnck/*: Throughout, add support for viewports in
tasklist/pager. #109654 patch from Kim Woelders
2003-04-04 Havoc Pennington <hp@pobox.com>
* libwnck/xutils.c (get_cmap): fix to use correct system colormap
for the screen, #109480 from Arvind Samptur
2003-04-03 Matt Wilson <msw@redhat.com>
* libwnck/xutils.c (_wnck_set_desktop_layout): make sure that
_NET_DECKTOP_LAYOUT is only 4 elements. Using "sizeof (data) / 4"
results in 8 elements being set on 64 bit platforms. Just use "4"
instead.
2003-03-28 Fatih Demir <kabalak@gtranslator.org>
* configure.in: Added "ta" (Tamil) to the languages' list ALL_LINGUAS.
2003-03-26 Havoc Pennington <hp@pobox.com>
* NEWS: update for 2.3.0 release
2003-03-13 Christian Rose <menthos@menthos.com>
* configure.in: Added "ml" to ALL_LINGUAS.
2003-03-13 Mark McLoughlin <mark@skynet.ie>
* configure.in: bump to 2.3.0.
2003-03-13 Mark McLoughlin <mark@skynet.ie>
Fix bug #98357 - make the workspace switcher follow fitt's
law by being flush up against the screen edge. We do this
by drawing our own focus so libpanel-applet doesn't draw
it. Also, add a hack so the applet doesn't have to know
the panel's size in advance of allocation.
* libwnck/pager.c:
(wnck_pager_init): set CAN_FOCUS.
(wnck_pager_size_request): remove the width-for-height
requisition calculation from here. Also, account for
the focus line width.
(wnck_pager_size_allocate): calculate the workspace
size here and if it differs queue another resize so
we can get the width right. Hacky and slighlty
dangerous but is safe with the panel. Also, account for
the focus line width.
(get_workspace_rect), (workspace_at_point): account for
the focus line.
(wnck_pager_expose_event): draw focus.
2003-02-25 Taneem Ahmed <taneem@eyetap.org>
* configure.in: Added "bn" to ALL_LINGUAS.
2003-02-23 Christian Rose <menthos@menthos.com>
* configure.in: Added "ga" to ALL_LINGUAS.
2003-02-20 Paisa Seeluangsawat <paisa@colorado.edu>
* th.po: Added Thai translation.
* configure.in (ALL_LINGUAS): Added "th".
2003-02-09 Christian Rose <menthos@menthos.com>
* configure.in: Added "kn" to ALL_LINGUAS.
2003-02-06 Christian Rose <menthos@menthos.com>
* configure.in: Added "id" to ALL_LINGUAS.
2003-01-26 Mark McLoughlin <mark@skynet.ie>
* libwnck/tasklist.c: (wnck_tasklist_check_end_sequence):
Actually end the sequnce if we match the wmclass against
a window.
2003-01-24 Gregory Merchan <merchan@phys.lsu.edu>
* libwnck/window-action-menu.c: Change mnemonics to match
metacity's. (Bug #104254)
2003-01-22 Havoc Pennington <hp@pobox.com>
* libwnck/tasklist.c: time out startup sequences if we don't see
them end, and end them if a window is mapped with StartupWMClass.
* libwnck/window.c (_wnck_window_get_resource_class)
(_wnck_window_get_resource_name): add internal API
to get window classes
2003-01-22 Marius Andreiana <marius galuna.ro>
* configure.in: added 'ro' to ALL_LINGUAS
2003-01-22 Christian Rose <menthos@menthos.com>
* configure.in: Added "mn" to ALL_LINGUAS.
2003-01-14 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Amharic (am), Farsi (fa),
and Macedonian (mk) to ALL_LINGUAS
2003-01-09 Havoc Pennington <hp@pobox.com>
* README: update README
2003-01-02 Havoc Pennington <hp@redhat.com>
* libwnck/application.c (get_icons): don't add an extra reference
to all icons, that was an unfortunate memory leak. Patch from
Arjan van de Ven
2002-12-06 Miloslav Trmac <mitr@volny.cz>
* configure.in: Added Czech (cs) to ALL_LINGUAS
2002-11-30 Havoc Pennington <hp@pobox.com>
* configure.in: require startup notification 0.4
* libwnck/application.c (_wnck_application_create): fill in
startup_id field
(wnck_application_get_startup_id): new function
* libwnck/tasklist.c (wnck_task_new_from_window): remove any
startup sequence buttons as soon as we add a window for that
sequence to the tasklist.
(wnck_task_get_text): prefer "description" over name if we have
a description.
* libwnck/window.c (_wnck_window_get_startup_id): new function
* libwnck/xutils.c (_wnck_get_fallback_icons): allow getting only
one of the default icons
* configure.in: increment to 2.1.5 and bump libtool stuff
* libwnck/window.c (update_wintype): type SPLASH not SPLASHSCREEN
for the X atom
* libwnck/tasklist.c (wnck_task_get_icon): load an icon for the
task being started up.
(wnck_tasklist_set_icon_loader): new function to set an icon load
function
Sun Nov 24 18:38:27 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* configure.in: version 2.1.4, and increment libtool versioning
* libwnck/pager.c (wnck_pager_set_shadow_type): New function.
Interprete points on the frame as belonging to the abutting
workspace.
* libwnck/test-pager.c (create_pager_window): Use
wnck_pager_set_shadow_type instead of a GtkFrame.
2002-11-03 Havoc Pennington <hp@pobox.com>
* libwnck/xutils.c (_wnck_set_desktop_layout): XChangeProperty
takes number of elements, not number of bytes. Doh. Will probably
fix the window layout issue with metacity.
2002-11-03 Havoc Pennington <hp@pobox.com>
* libwnck/window.c (wnck_window_activate_transient): don't pass
WnckWindow when expecting an X window
* configure.in: 2.1.3, and bump libtool versioning for new API
* libwnck/xutils.c (_wnck_set_utf8_list): new function
* libwnck/screen.c (_wnck_screen_change_workspace_name): new
function
* libwnck/workspace.c (wnck_workspace_change_name): new function
* libwnck/screen.c (wnck_screen_change_workspace_count): new
function
2002-11-03 Dmitry G. Mastrukov <dmitry@taurussoft.org>
* configure.in: Added Belarusian to ALL_LINGUAS
2002-10-24 Havoc Pennington <hp@pobox.com>
* libwnck/tasklist.c (wnck_tasklist_activate_task_window): when
activating windows, use wnck_window_activate_transient()
* libwnck/window.c (wnck_window_activate_transient): new function
* libwnck/tasklist.c: add support for displaying a "starting up"
task.
(wnck_tasklist_remove): queue a resize on removing a button.
Doesn't seem like it should be needed, but apparently it is.
* libwnck/xutils.c (filter_func): process the startup notification events
* libwnck/screen.c (_wnck_screen_get_sn_display): new function
* configure.in: add libstartup-notification optional check
* libwnck-1.0.pc.in: require libstartup-notification if compiled
with it
2002-09-27 Havoc Pennington <hp@pobox.com>
* libwnck/xutils.c (_wnck_stock_icons_init): fix dumb compilation
bug (maybe gcc 3.2 allows variable declarations not at top of
function?)
2002-09-27 Havoc Pennington <hp@redhat.com>
* libwnck/tasklist.c (wnck_task_get_text): use icon name not
regular name
* libwnck/window.c (wnck_window_init): init icon name to NULL so
we can tell when it's unset and fall back to regular name
(update_icon_name): don't use a fallback for icon name
* libwnck/application.c (wnck_application_get_icon_name): add a
FIXME that this doesn't do the right thing
2002-09-27 Havoc Pennington <hp@redhat.com>
Bug #89373
* libwnck/xutils.c (_wnck_set_desktop_layout): set _NET_WM_TOPLEFT
part of the desktop layout.
(_wnck_set_desktop_layout): fix columns/rows being swapped.
2002-09-27 Havoc Pennington <hp@redhat.com>
* libwnck/pager.c (wnck_pager_expose_event): prelight the
workspace that we're dragging over. #90869
2002-09-27 Arvind Samptur <arvind.samptur@wipro.com>
* libwnck/pager.c (workspace_create_callback): connect to
name_changed on newly created workspace,
(workspace_destroyed_callback): disconnect from name_changed,
(workspace_name_changed_callback): new function, we queue a resize
when a workspace title has been changed,
(wnck_pager_connect_screen): connect to name_changed on current
workspaces,
(wnck_pager_disconnect_screen): disconnect from name_changed on
current workspaces.
Patch by Kristian Rietveld <kris@gtk.org>. Fixes #84165.
2002-09-27 Havoc Pennington <hp@redhat.com>
* libwnck/window-action-menu.c: Add "put on all spaces" menu item,
patch from Jens Askengren <jensus@linux.nu>
2002-09-27 Havoc Pennington <hp@redhat.com>
* libwnck/window.c (update_state): rework to update HIDDEN state
(wnck_window_is_visible_on_workspace): use state HIDDEN
* libwnck/window.h (WnckWindowState): add WNCK_WINDOW_STATE_HIDDEN
2002-09-27 Havoc Pennington <hp@redhat.com>
* libwnck/window-action-menu.c (wnck_create_window_action_menu):
use stock icons, and reorder menu to match metacity
* libwnck/xutils.c (_wnck_stock_icons_init): new function
* libwnck/Makefile.am: add stock icons
2002-09-26 Anders Carlsson <andersca@gnu.org>
* configure.in (GETTEXT_PACKAGE): Remove cs until the .po file
has been added.
2002-09-26 Stanislav Brabec <sbrabec@suse.cz>
* configure.in: Added cs to ALL_LINGUAS.
2002-09-23 Havoc Pennington <hp@pobox.com>
* libwnck/test-wnck.c (main): add test stuff for showing desktop
feature
* libwnck/xutils.c (_wnck_toggle_showing_desktop): new function
(_wnck_activate_workspace): fix a hardcoded gdk_display, but it
looks like there are a lot more
* libwnck/screen.c (wnck_screen_toggle_showing_desktop):
new function
(wnck_screen_get_showing_desktop): new function
* libwnck/workspace-accessible.c: include headers to avoid
warnings
(wnck_workspace_accessible_get_size): add comment about how this
is totally broken
* libwnck/pager.c: remove some unused variables
* configure.in: version to 2.1.1 and bump current/age
* libwnck/screen.c: monitor _NET_SHOWING_DESKTOP and emit a signal
if it changed
2002-09-24 Arvind Samptur <arvind.samptur@wipro.com>
* libwnck/window-action-menu.c (update_menu_state): Replace
strings Shade with Roll Up and Unshade with Unroll.
2002-09-17 Havoc Pennington <hp@redhat.com>
* libwnck/window.c (update_transient_for): track a flag for
whether we're really transient for an application window,
or just marked transient for the root window.
(update_state): only skip taskbar for dialogs that are
really transient for an application (so standalone dialogs
are still on the taskbar)
2002-09-17 Naba Kumar <naba@gnome.org>
* configure.in: Added hi (Hindi) in ALL_LINGUAS
2002-09-16 Havoc Pennington <hp@pobox.com>
* configure.in: bump version to 2.1.0 for the unstable branch
2002-09-16 Mark McLoughlin <mark@skynet.ie>
* configure.in: require gtk+ 2.1.0.
* libwnck/screen.c, libwnck/private.h:
(_wnck_screen_get_gdk_screen): impl.
* libwnck/tasklist.c:
(wnck_task_popup_menu), (wnck_task_button_press_event):
realise the menu on the correct screen.
2002-09-16 Mark McLoughlin <mark@skynet.ie>
* configure.in: LIBWNCK_CURRENT++, LIBWNCK_AGE++.
2002-09-16 Mark McLoughlin <mark@skynet.ie>
* libwnck/pager.[ch]: (wnck_pager_set_screen): impl.
* libwnck/tasklist.[ch]: (wnck_tasklist_connect_screen),
(wnck_tasklist_disconnect_screen), (wnck_tasklist_set_screen):
implement changing the screen the tasklist operates upon.
(wnck_tasklist_new): use set_screen
(wnck_tasklist_finalize): disconnect screen.
2002-09-03 Christophe Fergeau <teuf@users.sourceforge.net>
* added he.po to ALL_LINGUAS
2002-08-25 Havoc Pennington <hp@pobox.com>
* configure.in: 0.17
2002-08-21 Rajkumar Sivasamy <rajkumar.siva@wipro.com>
* libwnck/pager-accessible.c: Fix wrong entries for the index of
child atkobject.
* libwnck/workspace-accessible.c: Fix wrong entries for child
atkobject's component interface.
Fixes Bug 84854.
2002-08-20 Padraig O'Briain <padraigobriain@sun.com>
* linwnck/pager-accessible.[ch]: Remove children data item from
WnckpagerAccessibleClass data structure. Define WnckPagerAccessiblePriv
data structure and put children data item in that data structure.
(get_private_data) New function to create or retrieve an accessible's
WnckPagerAccessiblePriv data structure.
(wnck_pager_accessible_finalize): Free WnckPagerAccessiblePriv and
its contents.
(wnck_pager_accessible_ref_child): Use get_private_data() to access
children. (Bug #90307)
2002-08-17 Simos Xenitellis <simos@hellug.gr>
* configure.in: Added Greek (el) to ALL_LINGUAS.
2002-08-16 Evandro Fernandes Giovanini <evandrofg@ig.com.br>
* configure.in (ALL_LINGUAS): Added Brazilian Portuguese (pt_BR).
2002-08-13 Andras Timar <timar@gnome.hu>
* configure.in: (ALL_LINGUAS) Added Hungarian (hu).
2002-08-13 Arvind Samptur <arvind.samptur@wipro.com>
* libwnck/tasklist.c
(wnck_task_create_widgets): added drag_motion and drag_leave
signals.
(wnck_task_drag_motion): add a timer when the drag item is on
button. Timeout is set to 1 second.
(wnck_task_drag_leave): remove the timer when leaving.
(wnck_task_motion_timeout): after the timeout, activate the
corresponding window.
(wnck_task_finalize): remove the timer if it exists while
destroying the tasklist.
Fixes #80736, for ungrouped windows.
2002-08-10 Havoc Pennington <hp@pobox.com>
* libwnck/tasklist.c (struct _WnckTask): bundle all the booleans
into a bitfield at the end to save a little memory
(wnck_task_button_press_event): patch from Arvind to let you
minimize by clicking the active task.
2002-08-09 Ross Burton <ross@burtonini.com>
* libwnck/window.c, libwnck/window.h: Added
wnck_window_set_skip_pager() and _tasklist(), so that applications
can set these hints.
2002-08-08 Havoc Pennington <hp@redhat.com>
* configure.in: 0.16
2002-08-08 Mark McLoughlin <mark@skynet.ie>
* libwnck/pager.c: (wnck_pager_set_layout_hint):
don't set the hint if this pager isn't showing
all workspaces - the chances are the users n_rows
setting is not what is wanted.
2002-08-06 Craig Black <blackc@speakeasy.net>
* libwnck/window-action-menu.c: (item_activated_callback):
* libwnck/window.c: (wnck_window_keyboard_move),
(wnck_window_keyboard_size):
* libwnck/window.h:
* libwnck/xutils.c: (_wnck_keyboard_move), (_wnck_keyboard_size):
* libwnck/xutils.h:
Use _NET_WM_MOVERESIZE_SIZE_KEYBOARD and _NET_WM_MOVERESIZE_MOVE_KEYBOARD
to implement move and resize in window action menu.
2002-08-02 Mark McLoughlin <mark@skynet.ie>
* libwnck/pager.c:
(wnck_pager_realize): use wnck_pager_set_layout_hint.
(wnck_pager_set_layout_hint): impl, taking into
accout vertical layouts.
(wnck_pager_set_orientation), (wnck_pager_set_n_rows):
use wnck_pager_set_layout_hint.
* libwnck/xutils.c: (_wnck_set_desktop_layout): set
whether we're using a vertical or horizontal layout.
Fixes #89373.
2002-08-04 Havoc Pennington <hp@redhat.com>
* autogen.sh (ACLOCAL): prefer automake 1.4
* configure.in: 0.15
2002-08-01 Mark McLoughlin <mark@skynet.ie>
* libwnck/window.c: (update_actions): implement
reading _NET_WM_ALLOWED_ACTIONS.
2002-08-01 Mark McLoughlin <mark@skynet.ie>
Fixes #78260 - tasklist not being updated when windows
are moved in and out of the active workspace.
* libwnck/tasklist.c:
(wnck_tasklist_new): connect to all windows workspace_changed
signal.
(wnck_tasklist_window_changed_workspace): if the window has
been move into or our of the active workspace, update the
tasklist;
(wnck_tasklist_window_added): connect to the window workspace
changed signal and update the tasklist;
2002-07-06 Havoc Pennington <hp@pobox.com>
* libwnck/window.c (update_state): make dialogs skip the task
list, so only normal windows are in there. bug #83483
2002-06-13 jacob berkman <jacob@ximian.com>
* libwnck/tasklist.c (wnck_task_create_widgets): tell libgnomeui
not to do toggle sounds on ourself, as it's incredibly annoying to
have the tasklist beep every time you change focus.
fixes bug #85088
2002-06-11 Havoc Pennington <hp@pobox.com>
* configure.in: 0.14
2002-06-07 Jesus Bravo Alvarez <jba@pobox.com>
* configure.in: Added gl (Galician) to ALL_LINGUAS
2002-06-02 Havoc Pennington <hp@pobox.com>
* configure.in: 0.13
2002-06-02 Havoc Pennington <hp@pobox.com>
* libwnck/*: clean up the accessibility patch:
- s/G_CONST_RETURN/const/
- s/gint/int/
- s/gchar/char/
- s/wspace/workspace/
- s/ws/workspace/
- move it out of the subdir
- add _() to human-readable strings so
they get translated
- formatting/indentation
- no global variable of size GET_MAX_N_WS, this is
not the place to hardcode such a max, and globals should
not be named "aobj_ws" - they need namespacing.
More importantly, you can't use a global to store
accessibility info that is per-pager-instance.
- do not return the address of a local variable from
wnck_wspace_get_rect.
2002-05-21 Rajkumar Sivasamy <rajkumar.siva@wipro.com>
* libwnck/pager.c: Made changes to implement accessibility for pager
* libwnck/*: Files added to implement AtkSelection and
AtkComponent interface for setting accessibility features to pager
2002-06-02 Havoc Pennington <hp@pobox.com>
* libwnck/xutils.c (_wnck_get_utf8_list): when counting nul bytes
to get the number of strings, start the string count at 1, since
even with nitems == 0 there is a single empty string.
2002-06-02 Carlos Perelló Marín <carlos@gnome-db.org>
* configure.in (ALL_LINGUAS): Added ca.
2002-05-30 Havoc Pennington <hp@pobox.com>
* libwnck/screen.c (update_workspace_names): don't run off the end
of the names array if the window manager didn't provide enough
names for the number of spaces. #82837 I hope.
2002-05-27 Yanko Kaneti <yaneti@delcera.com>
* configure.in: (ALL_LINGUAS) Added Bulgarian (bg).
2002-05-21 Thomas Vander Stichele <thomas@apestaart.org>
* libwnck/tasklist.c:
- modify the size request so that it always uses the minimum_size
parameter
2002-05-17 Havoc Pennington <hp@redhat.com>
* configure.in: 0.12
2002-05-15 Havoc Pennington <hp@pobox.com>
* libwnck/pager.c: use the _NET_DESKTOP_LAYOUT stuff
* libwnck/xutils.c: Add stuff related to _NET_DESKTOP_LAYOUT
2002-05-14 Havoc Pennington <hp@pobox.com>
* libwnck/pager.c (wnck_pager_button_release): only activate a
window if we did not activate a workspace. #81817
2002-05-14 Thomas Vander Stichele <thomas@apestaart.org>
* libwnck/taslist.c:
- implemented minimum_height
- setting width or height to -1 unsets it to the default value
2002-05-14 Anders Carlsson <andersca@gnu.org>
* libwnck/window.c (_wnck_window_process_property_notify):
The property that has the icon pixmap is called WM_HINTS,
not WM_NORMAL_HINTS. Fixes #81138, reported by Håvard
Wigtil.
2002-05-14 Anders Carlsson <andersca@gnu.org>
* configure.in:
* libwnck/pager.c: (wnck_pager_size_request),
(wnck_pager_draw_workspace), (wnck_pager_button_press),
(wnck_pager_button_release):
* libwnck/private.h:
* libwnck/screen.c: (wnck_screen_get_default),
(wnck_screen_get_workspace), (update_workspace_list),
(update_active_workspace), (wnck_screen_get_height),
(_wnck_screen_get_xscreen):
* libwnck/screen.h:
* libwnck/test-pager.c: (main):
* libwnck/test-tasklist.c: (main):
* libwnck/window.c: (_wnck_window_create), (wnck_window_close),
(wnck_window_maximize), (wnck_window_unmaximize),
(wnck_window_maximize_horizontally),
(wnck_window_unmaximize_horizontally),
(wnck_window_maximize_vertically),
(wnck_window_unmaximize_vertically), (wnck_window_shade),
(wnck_window_unshade), (wnck_window_stick), (wnck_window_unstick),
(wnck_window_get_workspace), (wnck_window_move_to_workspace),
(wnck_window_pin), (wnck_window_unpin), (wnck_window_activate),
(_wnck_window_process_configure_notify):
* libwnck/workspace.c: (wnck_workspace_activate),
(_wnck_workspace_create):
* libwnck/workspace.h:
* libwnck/xutils.c: (_wnck_close), (_wnck_change_state),
(_wnck_change_workspace), (_wnck_activate),
(_wnck_activate_workspace), (_wnck_get_window_geometry),
(_wnck_get_window_position):
* libwnck/xutils.h:
Add multi-screen support. Don't leak the created and deleted
lists in update_workspace_list. Bump version to 0.11.
2002-05-14 Havoc Pennington <hp@pobox.com>
* configure.in: 0.10
2002-05-13 Havoc Pennington <hp@redhat.com>
* libwnck/tasklist.c (wnck_task_popup_menu): patch from
Arvind Samptur <arvind.samptur@wipro.com> to add window operation
submenus to grouped tasks if you right-click. #79749
2002-05-11 Thomas Vander Stichele <thomas@apestaart.org>
* libwnck/tasklist.c: implemented minimum_width
which can be set from applets to force a minimum width of the
tasklist applet
(see gnome-panel/applets/gen_util/tasklist.c)
2002-05-11 Havoc Pennington <hp@pobox.com>
* libwnck/tasklist.c (wnck_tasklist_activate_task_window):
activate window's workspace before switching to it,
#81434. Handle wnck_window_get_workspace returning NULL.
2002-05-10 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Vietnamese (vi) and Walloon (wa) to ALL_LINGUAS
2002-05-02 Havoc Pennington <hp@redhat.com>
* libwnck/pager.c (wnck_pager_get_background): disable showing
thumbnail of desktop background.
2002-04-29 Havoc Pennington <hp@pobox.com>
* configure.in: 0.9
2002-04-28 Havoc Pennington <hp@pobox.com>
* libwnck/workspace.c (_wnck_workspace_update_name): add one
to number in workspace name, we aren't supposed to have
"workspace 0"
* libwnck/pager.c (wnck_pager_expose_event): don't thumbnail
the background in display-workspace-names mode. In names mode,
should probably draw things more like a button.
2002-04-21 Anders Carlsson <andersca@gnu.org>
* libwnck/xutils.c: (scaled_from_pixdata):
Add padding if the width and height differ.
2002-04-18 Mark McLoughlin <mark@skynet.ie>
* libwnck/pager.c: (wnck_pager_get_background): check
that we have a valid XID before trying to munge it
into a pixbuf (#79099).
2002-04-18 Mark McLoughlin <mark@skynet.ie>
* libwnck/tasklist.c: (wnck_tasklist_size_request): fix crash
with zero length array. (#78869)
2002-04-16 Havoc Pennington <hp@pobox.com>
* configure.in: 0.8
2002-04-13 Havoc Pennington <hp@pobox.com>
* libwnck/pager.c: mmmm, bloat
* libwnck/screen.c: track the background pixmap
* libwnck/xutils.c (_wnck_get_pixmap): new function
2002-04-13 Alexander Larsson <alla@lysator.liu.se>
* libwnck/tasklist.h:
Add wnck_tasklist_get_size_hint_list().
* libwnck/tasklist.c:
New sizing model. Now request 1 pixel width, but
also computes a list of valid size ranges that can be used
by the panel.
* libwnck/test-tasklist.c:
Use AUTO group and allow_shrink policy.
2002-04-13 Havoc Pennington <hp@pobox.com>
* libwnck/xutils.c (get_cmap): check that the system cmap
has same depth as the source pixmap before trying to use it.
Papers over #70268 in some way.
2002-04-11 Christophe Merlet <redfox@eikonex.org>
* configure.in: Added "fr" to ALL_LINGUAS.
2002-04-10 Havoc Pennington <hp@pobox.com>
* libwnck/window-action-menu.c (wnck_create_window_action_menu):
put mnemonic on "close" item
* libwnck/test-tasklist.c (main): don't set dock type, made it
kind of unusable
* libwnck/tasklist.c (wnck_task_button_press_event): pop up the
right-click window action menu
2002-03-27 jacob berkman <jacob@ximian.com>
* libwnck/Makefile.am (libwnck_1_la_LDFLAGS): don't pass the lib's
ldflags to apps
2002-03-26 Havoc Pennington <hp@pobox.com>
* libwnck/tasklist.c (wnck_task_get_text): compute number
of windows in an app differently so we don't count
desktop windows, off-workspace windows, etc.
(wnck_tasklist_update_lists): update visible state
of app tasks after we've updated all the lists
2002-03-24 Havoc Pennington <hp@pobox.com>
* configure.in: 0.7
2002-03-24 Havoc Pennington <hp@pobox.com>
* libwnck/tasklist.c (wnck_task_get_text): include number of
windows in the text for an application, #75943
2002-03-23 Havoc Pennington <hp@pobox.com>
* libwnck/screen.c (wnck_screen_class_init): call _wnck_init()
here.
* libwnck/util.c (_wnck_init): add an init function to
be called when we create the main objects, and
bindtextdomain() in here. #74026
* libwnck/Makefile.am (INCLUDES): define WNCK_LOCALEDIR
* configure.in (wncklocaledir): set up wncklocaledir variable
2002-03-23 Havoc Pennington <hp@pobox.com>
* libwnck/application.c (_wnck_application_create): try using
window class from group leader, if the name of the app
isn't set. #72887
(update_name): if multiple windows, try using the
class from one of them, if we didn't get a class from the group
leader or a name from the group leader.
* libwnck/xutils.c (_wnck_get_res_class_utf8): new function
* libwnck/tasklist.c (wnck_task_create_widgets): connect
to name_changed on the application, not just on windows.
(wnck_tasklist_free_tasks): hmm, I broke this just now;
should have destroyed buttons, not unref'd tasks.
This is all set up a bit oddly.
2002-03-23 Havoc Pennington <hp@pobox.com>
* libwnck/screen.c (wnck_screen_finalize): set
screen pointer to NULL when the screen is finalized
* libwnck/tasklist.c: fixes related to #72296
(wnck_tasklist_finalize): Assert that we have no remaining tasks.
(wnck_task_popup_menu): use connect_object out of sheer paranoia
(wnck_task_new_from_application): use connect_object for
robustness
(wnck_task_create_widgets): connect_object
(wnck_tasklist_remove): unparent task->button, then
unref task. This function was the actual cause of #72296
I believe.
(wnck_task_create_widgets): add weak pointer for
task->button
2002-03-06 Germán Poo-Caaman~o
* configure.in: Added "es" to ALL_LINGUAS.
2002-03-04 Havoc Pennington <hp@pobox.com>
* configure.in: 0.6
2002-03-04 Erwann Chenede - <erwann.chenede@sun.com>
* libwnck/screen.c: check screen != NULL before
dereferencing the screen #73144
2002-03-03 Johan Dahlin <jdahlin@telia.com>
* libwnck/Makefile.am: #71562
2002-03-02 Tõivo Leedjärv <leedjarv@interest.ee>
* configure.in: Added et to ALL_LINGUAS.
2002-03-02 Zbigniew Chyla <cyba@gnome.pl>
* configure.in (ALL_LINGUAS): Added pl (Polish).
2002-03-01 Pauli Virtanen <pauli.virtanen@hut.fi>
* configure.in (ALL_LINGUAS): Added "fi" (Finnish).
2002-02-23 Alexander Larsson <alla@lysator.liu.se>
* libwnck/tasklist.c (wnck_tasklist_new):
Use g_signal_connect_object so that we don't get signals
after the tasklist has been destroyed.
2002-02-17 Alexander Larsson <alla@lysator.liu.se>
* libwnck/tasklist.[ch]:
Add wnck_tasklist_set_switch_workspace_on_unminimize()
* configure.in:
Update version to 0.5.
2002-02-17 Alexander Larsson <alla@lysator.liu.se>
* configure.in:
Update version to 0.4.
2002-02-17 Alexander Larsson <alla@lysator.liu.se>
* libwnck/tasklist.[ch]:
Change wnck_tasklist_set_allow_grouping to
wnck_tasklist_set_grouping. Now has never, auto
or always group.
2002-02-17 Wang Jian <lark@linux.net.cn>
* configure.in: Added "zh_CN" to ALL_LINGUAS.
2002-02-12 Kevin Vandersloot <kfv101@psu.edu>
* libwnck/application.c: set the pid for the app on creation
2002-02-10 Havoc Pennington <hp@pobox.com>
* configure.in: version 0.3
2002-02-09 Havoc Pennington <hp@pobox.com>
* libwnck/xutils.c (_wnck_read_icons): properly scale _NET_WM_ICON
icons
* libwnck/window.c (get_icons): remove extra ref of the icon
returned from wnck_read_icons, this resulted in a memleak
* libwnck/xutils.c: fix naming confusion (WM_NORMAL_HINTS vs. WM_HINTS)
2002-02-08 Havoc Pennington <hp@pobox.com>
* libwnck/pager.c (wnck_pager_button_release): if someone drops a
window on the current workspace, activate it.
* libwnck/screen.c (wnck_screen_net_wm_supports): new function
used to decide how to interpret the hidden state.
* libwnck/window.c: handle net_wm_state_hidden in deciding how to
fill in "is_minimized"
2002-02-08 Havoc Pennington <hp@pobox.com>
* libwnck/test-tasklist.c (main): put it at 0,0
* libwnck/test-pager.c (create_pager_window): create it at 0,0 so
it doesn't get buried
* libwnck/window.c (update_state): use semantic type to set
skip_taskbar skip_pager sometimes.
(wnck_window_get_window_type): new function
2002-02-08 Havoc Pennington <hp@pobox.com>
* libwnck/application.c (struct _WnckApplicationPrivate): fix some
bad comments that said client leader instead of group leader
(though the code in screen.c does correctly pass in the group leader)
2002-02-07 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "zh_TW" to ALL_LINGUAS.
2002-02-07 Changwoo Ryu <cwryu@debian.org>
* configure.in: Added "ko" to ALL_LINGUAS.
2002-02-06 Padraig O'Briain <padraig.obriain@sun.com>
* libwnck/tasklist.c:
(wnck_task_get_icon) Remove unused variable minimized
(wnck_task_create_widgets) Allow toggle button to receive focus
so they can be manipulated using keyboard
2002-01-30 Ole Laursen <olau@hardworking.dk>
* configure.in: Added "da" again since something apparently went
wrong last time.
2002-01-25 Roy-Magne Mo <rmo@sunnmore.net>
* configure.in: Added "nn" to ALL_LINGUAS.
2002-01-24 Ole Laursen <olau@hardworking.dk>
* configure.in: Added "da" to ALL_LINGUAS.
2002-01-14 Hasbullah Bin Pit <sebol@ikhlas.com>
* configure.in: Added "ms" to ALL_LINGUAS.
* po/ms.po: Added Malay Transation.
2002-01-13 Alexander Larsson <alla@lysator.liu.se>
* libwnck/tasklist.[ch]:
Remove the include_unminimized functionality. It was broken,
hard to fix and not usefull.
Add wnck_tasklist_set_include_all_workspaces ()
2002-01-13 Havoc Pennington <hp@pobox.com>
* libwnck/screen.c (update_workspace_names): update workspace
names as appropriate
* libwnck/workspace.c: implement a private method to update name
* libwnck/xutils.c (_wnck_get_utf8_list): new util function
2002-01-12 Alexander Larsson <alla@lysator.liu.se>
* libwnck/pager.[ch]:
Add support for displaying workspace names and
showing only the current workspace.
2002-01-12 Alexander Larsson <alla@lysator.liu.se>
* libwnck/tasklist.c:
Use wnck_application_get_name/mini_icon for grouped tasks.
2002-01-11 Havoc Pennington <hp@pobox.com>
* configure.in (LIBWNCK_CURRENT): bump soname
* libwnck/window.c (wnck_window_get_icon_is_fallback): add this
(wnck_window_set_create_fallback_icon): to replace this broken
global setting
* libwnck/application.c (wnck_application_get_name): implement
(wnck_application_get_pid): implement
(wnck_application_get_icon): implement
(wnck_application_get_mini_icon): implement
* libwnck/xutils.c (filter_func): pass property notifies
to WnckApplication
* libwnck/window.c (update_name): use _wnck_get_name
(wnck_window_set_icon_size): delete, this global
setting breaks if you have several applets in one
process trying to use wnck. We can add
wnck_window_get_icon_at_size() or something if people
need it.
* libwnck/xutils.c (_wnck_get_name): function to try all the
various "name" properties
2002-01-06 Fatih Demir <kabalak@gtranslator.org>
* configure.in: Added "tr" to the language list.
2002-01-04 Laszlo Peter <laca@ireland.sun.com>
* libwnck/tasklist.c: change line breaks in string constant to \n's.
Thu Jan 03 13:55:40 2002 George Lebl <jirka@5z.com>
* libwnck/xutils.c: Also check the return of the XGetWindowProperty
function instead of just the error pop thing. Apparently checking
the error that was popped is not a reliable way to handle this.
2001-12-31 Kevin Vandersloot <kfv101@psu.edu>
* libwnck/screen.c: free the stack and mapping window
lists to plug memory leaks
Fri Dec 28 02:11:26 2001 George Lebl <jirka@5z.com>
* libwnck/tasklist.c: Bug hunting results: (and no, I haven't
found the bug I was looking for)
(wnck_task_finalize): If this is the active task, we set the
active task to NULL so that we don't have pointers to non existant
objects. Mostly just being anal.
(wnck_tasklist_update_lists): active_workspace CAN be NULL so check
for that. If this is the case, we just show the task as if it
were on the active workspace.
(wnck_task_popup_menu): gtk_container_get_children returns a newly
allocated list, so free it after use.
* xutils.c (read_rgb_icon): Remove that annoying warning about this
function possibly not being 64bit safe. It is. I've checked the
code, and furthermore it actually does work on alpha.
2001-12-23 Mark McLoughlin <mark@skynet.ie>
* libwnck/tasklist.c: (wnck_task_create_widgets): kill unused rc_style.
* libwnck/xutils.c: (_wnck_get_cardinal), (_wnck_get_wm_state),
(_wnck_get_window), (_wnck_get_string_property_latin1),
(_wnck_get_window_list), (_wnck_get_atom_list),
(_wnck_get_cardinal_list), (read_rgb_icon), (get_kwm_win_icon):
fix memleak FIXMEs.
2001-12-18 Alex Larsson <alexl@redhat.com>
* libwnck/tasklist.c (wnck_task_class_init):
Change focus-line-width too, and make the buttons
not GTK_CAN_FOCUS.
2001-12-18 Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
* configure.in: Added "ja" to ALL_LINGUAS.
2001-12-16 Havoc Pennington <hp@pobox.com>
* libwnck/workspace.c (wnck_workspace_get_name): add this function
for getting name of workspace for use in menus, etc.
2001-12-16 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added Portuguese locale.
2001-12-14 Alex Larsson <alexl@redhat.com>
* libwnck/tasklist.c (wnck_task_class_init):
An EEEEEEEEEEEEEEEEEVIL hack to make the tasklist
fit two lines in 48 pixels. I dunno if this is the
right thing to do, but the 5 extra pixels on each side
of the button really hurt us here.
2001-12-14 Kevin Vandersloot <kfv101@psu.edu>
* libwank/tasklist.c: Add tooltips
Wed Dec 12 12:43:01 2001 Owen Taylor <otaylor@redhat.com>
* configure.in: Fix so that ACLOCAL_FLAGS will be honored
on automatic re-autoconf.
2001-12-12 Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
* configure.in: Added "sk" to ALL_LINGUAS.
* po/sk.po: Added Slovak translation.
2001-12-10 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Added "no" to ALL_LINGUAS.
2001-12-10 Anders Carlsson <andersca@gnu.org>
* libwnck/tasklist.c (wnck_tasklist_update_icon_geometries): Call
wnck_window_set_icon_geometry.
* libwnck/window.h,
* libwnck/window.c (wnck_window_set_icon_geometry): New function.
* libwnck/tasklist.c (wnck_tasklist_update_icon_geometries):
New function.
(wnck_tasklist_size_allocate): call update_icon_geometries.
* libwnck/xutils.h: Add definition for _wnck_set_icon_geometry.
* libwnck/xutils.c (_wnck_set_icon_geometry): Add function.
2001-12-08 Seth Nickell <snickell@stanford.edu>
* libwnck/tasklist.c: (wnck_tasklist_change_active_task),
(wnck_tasklist_active_window_changed),
(wnck_tasklist_change_active_timeout), (wnck_task_menu_activated),
(wnck_tasklist_activate_task_window), (wnck_task_button_toggled):
When the user clicks to activate a window, toggle it immediately
and set a 0.5 second timeout which checks to make sure it was
actually focused and if it wasn't changes to the tasklist to the
actually focused window.
2001-12-08 Christian Rose <menthos@menthos.com>
* configure.in: Added "sv" to ALL_LINGUAS.
2001-12-05 Alex Larsson <alexl@redhat.com>
* libwnck/tasklist.[ch]:
Add calls to disable grouping and set grouping limit.
Remove warnings.
Enable grouping
Some scoring work.
Fix ownership issues
Popup menu on button_press too, to handle hold-down-button
2001-12-05 Christian Meyer <chrisime@gnome.org>
* configure.in:
Added 'de' entry to ALL_LINGUAS
2001-12-04 Alex Larsson <alexl@redhat.com>
* libwnck/tasklist.c:
Update TODO list
Remove debug spew
Disable grouping
Sort by group leader first.
Use defines for default width/height
2001-12-04 Alex Larsson <alexl@redhat.com>
* libwnck/xutils.c (_wnck_icon_cache_property_changed):
Don't clear the icon cache here.
2001-12-04 Alex Larsson <alexl@redhat.com>
* libwnck/tasklist.c:
Don't grab button 2 and 3.
Use set_child_visible() instead of hiding widgets in size_allocate()
Some menu work.
Use tables instead of hboxes for the button packing.
2001-12-04 Havoc Pennington <hp@pobox.com>
The following change is basically untested.
* libwnck/window.c (get_icons): use the whole icon cache thingy
* libwnck/xutils.c (_wnck_read_icons): all reworked to use an
"icon cache" object to avoid pointless icon change notifies
2001-12-03 Alex Larsson <alexl@redhat.com>
* libwnck/tasklist.c:
Don't show/hide children in size_allocate.
Show the menu before popping it up.
Scale app icons.
2001-12-02 Alexander Larsson <alla@lysator.liu.se>
* libwnck/application.[ch] (wnck_application_get_xid):
* libwnck/window.[ch] (wnck_window_get_xid):
New functions.
* libwnck/tasklist.c:
More work.
2001-12-01 Alex Larsson <alexl@redhat.com>
* libwnck/tasklist.[ch]:
* libwnck/test-tasklist.c:
Initial work on the tasklist. This is work in progress, but
does compile.
2001-11-30 Laszlo Peter <laca@ireland.sun.com>
* libwnck/Makefile.am: fix the export-symbols-regex
* libwnck/application.c, libwnck/pager.c, libwnck/tasklist.c,
libwnck/workspace.c: add a dummy entry to the enums so
the signals array is not empty. (breaks the build with Forte C)
* libwnck/xutils.c: s/__FUNCTION__/G_GNUC_FUNCTION/
2001-11-28 Alex Larsson <alexl@redhat.com>
* libwnck/pager.c:
Switch workspaces on button_release.
Wed, 28 Nov 2001 00:39:41 -0500 Frank Belew <frb@ximian.com>
* Makefile.am: add po to SUBDIRS
Wed, 28 Nov 2001 00:32:42 -0500 Frank Belew <frb@ximian.com>
* autogen.sh: remove AM_GNOME_GETTEXT check
replace AM_GNU_GETTEXT check with AM_GLIB_GNU_GETTEXT
replace gettextize with glib-gettextize
2001-11-28 Alexander Larsson <alla@lysator.liu.se>
* libwnck/pager.c (workspace_at_point):
Remove "Extend rect outside the widget itself" code, it was
totally broken.
2001-11-27 Alexander Larsson <alla@lysator.liu.se>
* libwnck/pager.c:
Remove the desktop outlines. Make there be one line of
background between the desktops, but not at the borders.
* libwnck/test-pager.c:
Test with 3 rows.
2001-11-27 Alexander Larsson <alla@lysator.liu.se>
* libwnck/pager.c:
Removed action menu.
Only return TRUE from button_press if we handled the button.
Handle set_usized widget correctly in size_request.
2001-11-27 Havoc Pennington <hp@pobox.com>
* libwnck/pager.c (wnck_pager_motion): return a value
* libwnck/window.c (wnck_window_is_on_workspace):
(wnck_window_is_visible_on_workspace): new functions to see if a
window is on a workspace, and on a workspace plus in normal state
* libwnck/pager.c (get_windows_for_workspace_in_bottom_to_top):
use wnck_window_is_visible_on_workspace() so we don't include
windows that are minimized, shaded, etc. Also, check
that windows are not SKIP_PAGER
2001-11-27 Alexander Larsson <alla@lysator.liu.se>
* libwnck/pager.[ch] (get_workspace_rect):
Fix to work with n_rows != 0
(get_workspace_rect, wnck_pager_size_request):
Correct calculation of spaces_per_row if n_spaces not
a multiple of n_rows.
(wnck_pager_set_n_rows): Allow setting of n_rows.
2001-11-26 Abel Cheung <maddog@linux.org.hk>
* configure.in: Add po/Makefile.in to AC_OUTPUT for translator's
fun, if anybody manage to discover this CVS module :)
2001-10-25 Havoc Pennington <hp@redhat.com>
* libwnck/pager.c: fixups, window dragging, etc.
* libwnck/xutils.c (filter_func): use proper window from configure
event
2001-10-25 Havoc Pennington <hp@pobox.com>
* libwnck/pager.c (wnck_pager_expose_event): tinker with
appearance more
2001-10-25 Havoc Pennington <hp@pobox.com>
* libwnck/pager.c (wnck_pager_expose_event): only draw active
window as selected, not whole workspace
2001-10-25 Havoc Pennington <hp@pobox.com>
* libwnck/pager.c: right-click menu
* libwnck/window-menu.c: fix weak ref stuff
* libwnck/window-action-menu.c (wnck_create_window_action_menu):
fix a weak ref
* libwnck/window.c (_wnck_window_create): initially update actions
2001-10-24 Havoc Pennington <hp@pobox.com>
* libwnck/pager.c: make it all bloated
2001-10-24 Havoc Pennington <hp@pobox.com>
* libwnck/pager.c: hacking
2001-10-24 Havoc Pennington <hp@redhat.com>
* configure.in: hack to work with slightly older GTK as well as
HEAD
* libwnck/screen.c (wnck_screen_force_update): add function to
force immediate reading of screen state, instead of queueing it
* libwnck/window.c: add geometry reporting
* libwnck/pager.c: pager widget skeleton
2001-10-18 Havoc Pennington <hp@redhat.com>
* libwnck/tasklist.c: skeleton of widget for tasklist-like
displays, mostly not implemented
2001-10-18 Havoc Pennington <hp@redhat.com>
* libwnck/window-action-menu.c: menu for window operations
(close, maximize, etc.)
* libwnck/window.h: add #error unless you define a magic symbol
* libwnck/window-menu.h: add window menu feature (list of windows
to choose)
2001-10-09 Havoc Pennington <hp@pobox.com>
* libwnck/test-wnck.c (maximized_toggled_callback): maximize don't
minimize to toggle maximization
(window_stacking_changed_callback): don't refill model on stacking
changed
2001-10-09 Havoc Pennington <hp@pobox.com>
* libwnck/window.c, libwnck/xutils.c: support window icons
(wnck_window_get_session_id_utf8): fix
2001-10-08 Havoc Pennington <hp@pobox.com>
* libwnck/screen.c: support _NET_CLIENT_LIST, now I understand the
point of both that and the stacking order one
* libwnck/window.c (_wnck_window_create): don't break GDK's event
mask, fixes resize issues with test-wnck
2001-10-07 Havoc Pennington <hp@pobox.com>
* libwnck/test-wnck.c: fixes (requires CVS HEAD GTK)
2001-10-07 Havoc Pennington <hp@pobox.com>
* libwnck/window.c (_wnck_window_process_property_notify): fix
to handle WM_STATE changes
* libwnck/test-wnck.c: add GUI to test program. exposes various
GTK bugs...
2001-10-07 Havoc Pennington <hp@pobox.com>
* libwnck/window.c: add more info to state_changed signal,
set up generated enum/marshaller files to support it.
* libwnck/window.c: add support for getting session ID, pid
* libwnck/application.c: implement creation/destruction of the
application object, and its association with a window
* libwnck/window.c: add code to monitor a window's current
workspace
2001-10-07 Havoc Pennington <hp@pobox.com>
* libwnck/window.c: add a bunch of state query/modify functions
2001-10-07 Havoc Pennington <hp@pobox.com>
* libwnck/*: Initial semi-functionality
|