ChangeLog (raw)
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 |
(Format: Year/Month/Day) Changes for 0.9.10: *04/06/13: * More menu transparency improvements Menu.hh/cc, MenuTheme.hh *04/06/12: * Updated japanese locales from Yasuhiro Takabayashi <kourin at momonga-linux dot org> fluxbox-generate_menu.in *04/06/10: * Fixed icon in menu and improved menu loading speed (Henrik) New option for menu file: [key] (label) {argument to key} <the icon filename> example: [exec] (aterm) {aterm} <terminal.xpm> MenuItem.cc/hh, FbMenuParser.hh/cc, MenuCreator.cc *04/06/08: * Fix up bsetroot nls, and couple of other tweaks (Simon) util/Makefile.am bsetroot.cc nls/Makefile.am fluxbox-nls.hh nlsinfo MenuCreator.cc WorkspaceMenu.cc * Some man page license updates c/- Han fluxbox.1.in bsetroot.1 startfluxbox.1 *04/06/07: * New menu theme items: menu.titleHeight: integer menu.itemHeight: integer The height of the item/title will be the biggest of font height + bevel and the specified height, so the text will always fit. MenuTheme.hh/cc (Henrik) * Improved menu transparent rendering speed and the text is not transparent anymore so you are able to see the text even if you have 100% transparency Menu.hh/cc (Henrik) * Moved drawing of menu items to MenuItem class MenuItem.hh/cc, MenuSeparator.hh/cc (Henrik) * Initial NLS update (Simon) - use _FBTEXT, or _FBTKTEXT for all strings that go to the user - regenerate fluxbox-nls.hh when adding new strings - This patch doesn't convert old translations, so for the mo, translations are broken, sorry. Thats next. {nls,src,FbTk}/Makefile.am fluxbox-nls.hh nls/nlsinfo -src/I18n.hh/cc +FbTk/I18n.hh/cc Color.cc EventManager.cc Font.cc ImageControl.cc Menu.cc Resource.cc TextureRender.cc Theme.cc Transparent.cc XFontImp.cc Gnome.cc Ewmh.cc FbCommandFactory.cc IconMenu.cc IconbarTool.cc Keys.cc MenuCreator.cc RegExp.cc Remember.cc Screen.cc Slit.hh/cc Toolbar.cc WinClient.cc Window.cc Workspace.cc WorkspaceMenu.cc Xutil.cc fluxbox.cc main.cc *04/05/24: * Fix handling alpha value of zero (Simon) - also fix up defaulting of missing alpha theme items to 255 FbWindow.cc ToolbarTheme.hh/cc IconbarTheme.cc ToolTheme.cc FbWinFrameTheme.cc *04/05/21: * fluxbox-generate_menu: Updated polish locales from: £ukasz Wrzosek (unl at poczta dot fm) *04/05/18: * Make the size of arrows in buttons half the button size (grubert). * Add UP and DOWN buttons. *04/05/17: * Fix rendering of transparency on menu exposes (Simon) - also enable save unders for menu windows This is kind of experimental. Backing store is off by default in XF86-4. If you want to play, add: Option "BackingStore" "yes" to the Screen section in your XF86Config file. And let me know how it goes :) It basically means we don't have to refresh menus as much, but uses more memory. Shouldn't break anything new. Menu.cc FbWindow.hh/cc * Fix slit transparency too (finally) while we're at it (Simon) Slit.hh/cc *04/05/13: * Fix a crash when a window closes while [opaque] moving (Simon) - also tidy up several related things when a window hides - don't call frame().hide() explicitly, use FBW.hide(bool) Window.hh/cc Workspace.hh/cc Screen.cc *04/05/04: * Fix EventManager bug/memory leak (possibly caused crash) (Simon) EventManager.hh/cc *04/05/02: * Added new nls item for windowmenu: Layer nls/C/Windowmenu.m * New command: exit (Henrik) FbCommandFactory.cc * Fixed loading of a windowmenu file. (Henrik) New resource: * session.screen<num>.windowMenu: <filename> The menu file format is the same as the normal ~/.fluxbox/menu but with some special menu items: [iconify], [maximize], [shade], [close], [extramenus] [layer], [sendto] + the all the other menu items that you can use in the normal root menu (i.e [exec] (aterm) {aterm}) The [extramenus] will add "remember" menu example: session.screen0.windowMenu: ~/.fluxbox/windowmenu [begin] [exec] (aterm) {aterm} [maximize] [shade] [stick] [submenu] (advanced) [layer] [sendto] [extramenus] [end] [separator] [close] [end] * Moved out some simple classes from Screen.cc (Henrik) new files: StyleMenuItem.hh/cc * Fixed new menu parsing (Henrik) everything goes through MenuCreator now. Window.cc, Screen.hh/cc, fluxbox.cc/hh new files: MenuCreator.cc/hh, Parser.hh/cc, FbMenuParser.hh/cc, IconMenu.hh/cc, WorkspaceMenu.hh/cc *04/04/30: * fix up reparent issue that affects java menus (thanks Scott Moser) Window.cc *04/04/28: * Fix key bindings for directional focus movement (Simon) - reminder, key actions are: FocusUp, FocusDown, FocusLeft, FocusRight WorkspaceCmd.hh/cc Screen.hh/cc WinClient.hh/cc FbCommandFactory.cc * Add apps file matching on WM_WINDOW_ROLE (Simon) - use "role=string". Particularly useful for gaim+gimp windows [app] (role=buddy_list) ... ClientPattern.hh/cc FbWindow.hh/cc *04/04/27: * Fix up several toolbar theme items and alignments (Simon) - big improvement in look/compatibility of older styles Toolbar.cc Theme.hh/cc ThemeItems.hh ToolbarTheme.cc MenuTheme.cc Text.cc IconbarTheme.cc SlitTheme.cc WorkspaceNameTheme.hh IconbarTool.cc *04/04/26: * Fixed some small compile errors with gcc 3.4 (Henrik) -------------------------------------------------------------------- Changes for 0.9.9: *04/04/22: * New Command: Deiconify <mode> <dest> * Where mode is: * last - deiconify last iconified window * lastworkspace (default) - deiconify last iconified window from current workspace * all - deiconify all iconified windows * allworkspace - deiconify all iconfiied windows from current workspace * and dest is: * current (default) - deiconify them on current windows * origin - deiconify them where they were * originquiet - deiconify to old workspace but dont follow (Thanks Mathias Gumz) FbCommands.cc/hh, FbCommandFactory.cc * Attach area for tabs: new resource: * session.tabsAttachArea: <mode> where mode is: Window - dropping tabs to any part of the destination-window leads to attaching to that frame (default) Titlebar - dropping tabs only to the titlebar of the destination- window leads to attaching to that frame (Thanks Mathias Gumz) * FbRun: path completion and fixed so it loads apps on first tab-press (Thanks Mathias Gumz) FbRun.cc *04/04/19: * Moved kde dockapps from slit into the systray in toolbar (Henrik Screen.hh/cc, Systray.hh/cc, fluxbox.hh/cc, Slit.cc/hh * Minor fix for fbrun using FbTk::Directory (Thanks Mathias Gumz) Directory.hh/cc, FbRun.cc *04/04/18: * Fixed decoration bug with mwm hint + remember (Thanks Mathias Gumz) fluxbox.hh/cc, Window.hh/cc * Fixed round courners bug in menu (Henrik) FbMenu.hh/cc, FbTk/Menu.hh * Minor fix for decor/position remember state (Thanks Mathias Gumz) Remember.cc * Fixed drawing issue with big menus (Thanks Mathias Gumz) FbTk/Menu.cc * fbrun: Tab complete on all apps in $PATH (To tab complete on history Ctrl+Tab) (Thanks Mathias Gumz) FbRun.hh/cc *04/04/17: * KDE as default now, not a big overhead anyways (Henrik) configure.in *04/04/14: * Revert to sync. Async stops it from replaying (Simon) Window.cc * Half revert a bit of the below, since it broke click-to-focus (Simon) -> adds back the grab, but as an async one Window.cc * Hopefully fix the "stange" hang on restart (Simon) - remove big sync-ed grab on all Button1 events - Also tidy and fix tab moving Window.cc * Fixed a menu title bug (Thanks Mathias Gumz) Menu.cc *04/04/12: * Hide window menu when clicking on another window (Thanks Mathias Gumz) Screen.hh/cc, Window.hh/cc * Possibly fixed the "strange" hang on restart and at creation of new windows. Needs more testing though. Making sure there's not more than one GrabPointer at once in FluxboxWindow. (Henrik) Window.hh/cc *04/04/10: * Some cleaning in Makefile.am's (Thanks Frédéric L. W. Meunier (1 at pervalidus dot net)) *04/04/03: * French nls for fluxbox-generate_menu (Thanks LaLu <mathieu dot buffenoir at ece dot fr> fluxbox-generate_menu.in *04/04/01: * Support aspect ratio hints (Simon) WinClient.cc *04/03/31: * Fixed _MOTIF_WM_HINTS decoration toggle bug (Henrik) Window.cc *04/03/30: * Fixed optional decoration on transient windows (Thanks Scott Moser <ssmoser at us dot ibm dot com>) Screen.hh/cc, Window.cc, nls/C/Configmenu.m *04/03/28: * Fixed window snaping to screen objects (Henrik) Window.cc *04/03/22: * Added screen resources to define line style for resize/move (Thanks Mathias Gumz) session.screen<num>.overlay.lineWidth: <integer> session.screen<num>.overlay.lineStyle: <valid arguments: LineSolid, LineOnOffDash LineDoubleDash > session.screen<num>.overlay.joinStyle: <valid arguments: JoinRound, JoindMiter, JoinBevel > session.screen<num>.overlay.capStyle: <valid arguments: CapNotLast, CapRound, CapButt, CapProjecting> * Fixed no-text-in-iconbar-bug on restart (Thanks Mathias Gumz) IconbarTool.cc *04/03/21: * A number of small fixes (Simon) - Fix up focus+highlights on tab close - Centralise focus fallbacks (fluxbox::unfocusWindow) - we now prefer the last focused window in the current tabgroup to the actual last focused window on the whole screen. fluxbox.hh/cc Screen.hh/cc Window.hh/cc Workspace.hh/cc FbWinFrame.cc *04/03/19: * fluxbox-generate_menu: (Han) removes the reload-menu code which is obsolete since Mathias's latest patch fluxbox-generate_menu.in *04/03/18: * Fixed menu time stamp for root menu (Thanks Mathias Gumz) the root menu now reloads if you edit the menu file Screen.cc * Added Control-c to the TextBox.cc so the (Thanks Mathias Gumz) TextBox gets cleared if one presses Control-c TextBox.cc * Fixed so @ and | works in text box (Thanks Mathias Gumz) TextBox.cc *04/03/16: * Minor fix for ${INSTALL} and reload fluxbox menu (Han) with fluxbox-generate_menu * Fix the fix, and a bit more for placeWindow (Simon) Workspace.cc *04/03/15: * bug in placeWindow caused spinning with screens higher than width e.g. vertical xinerama (Simon) Workspace.cc *04/03/13: * Fixed so it compiles in cygwin (Henrik) I18n.hh *04/03/11: * fbsetbg updates: (Han) * Check if Esetroot was linked with Imlib * Add support for gxmessage (looks much nicer) * Send all messages to xmessage/gxmessage because test -t is also true when startx is used. * Add compat note for $UID * fbsetbg: special Esetroot check and message improvements (Han) *04/03/08: * Fix focus passing when grouping (Simon) Window.cc * Fix receipt of _NET_WM_DESKTOP client messages (Simon) - fixes xmms "show on all desktops" not working Ewmh.cc *04/03/03: * Fix update of keys on keymap change (Simon) fluxbox.cc * Fix outline moving dropping on source workspace made window disappear [we now explicitly don't unfocus a moving window] (Simon) Window.cc fluxbox.cc * Updated finnish locales for fluxbox-generate_menu (Thanks Lauri Hakkarainen) *04/03/02: * fluxbox-generate_menu changes: (Han) * Updated German locales from Mathias Gumz * More firefox support. * Updated compat-notes. *04/02/28: * Improved rendering speed when changing workspace or creating new window (Henrik) FbWinFrame.cc * Fixed bug in StringUtil::removeTrailingWhitespace (Thanks Mathias Gumz) StringUtil.cc * Fixed infinite loop in fbrun (Thanks Mathias Gumz) FbRun.cc * Added improved checking for compiler and compiler version (Henrik) version.h.in, main.cc *04/02/26: * Improved transparent rendering speed in titlebar (Henrik) FbWinFrame.cc * Improved transparent rendering speed in Menu (Henrik) Menu.cc * Added CompareEqual class template that helps comparing accessor functions with PODs for containers CompareEqual.hh *04/02/25: * Fixed cycling in tab completion for fbrun (Thanks Mathias Gumz) FbRun.cc *04/02/20: * Added SendToNextWorkspace and SendToPrevWorkspace actions (Thanks Mathias Gumz) CurrentWindowCmd.hh/cc, FbCommandFactory.cc * Minor filename expansion fix (Thanks Mathias Gumz) and added '!' as a comment character in keys file fluxbox.cc, Workspace.cc, Slit.cc, Keys.cc * fixed focus issues with remember hidden (Thanks Mathias Gumz) Ewmh.cc, Gnome.cc, Screen.cc, Window.hh/cc, Remember.hh/cc *04/02/18: * Change workspace when clicking on a window in iconbar that's on (Henrik) another workspace IconButton.cc *04/02/16: * Added remember hidden state for apps (Thanks Mathias Gumz) You mark apps in the apps-file with [Hidden] {yes} With this you can configure any app to be hidden from the toolbar Remember.cc/hh, IconbarTool.cc * Fixed window size bug in no-decor windows on start/restart (Henrik) Window.cc *04/02/14: * Fixed bug in _NET_MOVERESIZE_WINDOW (Henrik) Ewmh.cc *04/02/10: * Minor fixes (Thanks Mathias Gumz) fluxbox.hh/cc, Slit.cc, Xinerama.hh, Screen.cc * fbgm updates (Thanks Han and Nero Wolfe [mrwolfe<at>linuxmail.org]) - portability fixes, improve menu reloading, and new menu entries fluxbox-generate_menu.in *04/01/30: * Tidy up a few slitlist things (Simon) - expand ~, trim spaces, allow comments, use WM_CLASS instead of NAME - should make it use regexp like remember sometime Slit.cc Xutil.hh/cc *04/01/23: * Fix a few window frame issues when changing styles (Simon) - particularly a "void" area of the window Window.hh/cc FbWinFrame.cc *04/01/22: * Fix missing sanitycheck in fbsetbg (Thanks Tom Ryan) fbsetbg *04/01/21: * Added more international keywords and (Thanks Antonio Gomez) Portuguese locales for fluxbox-generate_menu.in * Added automatic reload of the new menu in (Han) fluxbox-generate_menu * Fixed window size bug (Henrik) FbWinFrame::hideHandle and hideTitlebar could've caused window to have negative size FbWinFrame.cc * Fixed cursor bug in fbrun (Thanks Mathias Gumz (gumz<at>cs.uni-magdeburg.de)) TextBox.cc * Added support for: (Henrik) _NET_WM_WINDOW_TYPE _NET_WM_WINDOW_TYPE_DOCK Ewmh.hh/cc * Fixed so one can navigate in menu even if (Henrik) numlock, capslock or scrollock are on Menu.cc *04/01/19: * Fixed minor bug in ResourceManager (Henrik) Resource.cc * Support for: (Henrik) _NET_WM_STATE_ABOVE _NET_WM_STATE_BELOW _NET_WM_CLIENT_LIST_STACKING _NET_WM_DESKTOP_VIEWPORT _NET_WM_DESKTOP_GEOMETRY _NET_WORKAREA _NET_ACTIVE_WINDOW Ewmh.cc * Fixed minor bugs in Ewmh, (Henrik) The gnome-panel should now be working with window list and workspaces Ewmh.cc *04/01/18: * Fixed snap to max screen area instead of real screen area (Henrik) Window.cc * Support for _NET_WM_STATE_HIDDEN and _NET_WM_STATE_SKIP_TASKBAR (Henrik) Window.cc/hh, Ewmh.hh/cc * Fixed mplayer xvid vo bug (Henrik) It now finds correct screen to create window on fluxbox.cc *04/01/17: * Enter nls/pl_PL into configure.in and add a Makefile.am to pl_PL. * Add nls/sl_SI (thanks Ale¨ Jagodnik) *04/01/16: * Updated nl_NL locales (Han) * Different window for window position (Thanks Junichiro Kita (kita<at>kitaj.no-ip.com) Screen.cc/hh, Window.cc, * New Command: (Thanks Junichiro Kita (kita<at>kitaj.no-ip.com) WindowMenu - this will show the window menu on the focused window * Revert to old focused window after menu keyboard navigation (Henrik) fluxbox.cc * Menu keyboard navigation bug fixes (Thanks Junichiro Kita (kita<at>kitaj.no-ip.com) also fixes so submenus dont open unless you press Right Menu.cc * Using strut area for ArrangeWindows (Thanks Carlos (mindsuck<(at)>gfxnstuff .com.ar)) * New behavior for icon button (Thanks Dmitriy Nikitinskiy) On click: if focused then iconify else raise and focus. IconButton.cc *04/01/15: -------------------------------------------------------------------------- Changes for 0.9.8: *04/01/14: * Fixed some border issues with left/right alignment in Iconbar (Henrik) IconbarTool.cc, Container.cc * Implement transparency for toolbar (Simon) - can use toolbar.alpha, as well as toolbar.<tool>.alpha ToolTheme.hh/cc IconbarTheme.hh/cc *Tool.cc Container.cc Toolbar.cc *04/01/12: * Limit loop in menu cleaning (Han) fluxbox-generate_menu.in *04/01/11: * Fixed ImageControl cache problem (Henrik) ImageControl.hh/cc * Hide menus when click on iconbar (Henrik) Screen.hh/cc, fluxbox.hh/cc, IconButton.cc, Toolbar.cc *04/01/10: * Fixed a memory leak (Henrik) We forgot to destroy screens on shutdown fluxbox.cc, Screen.cc * Fix a number of transparency issues for window frames (Simon) FbWinFrame.cc WinButton.hh/cc *04/01/09: * Fixed color parse bug (Henrik) removing whitespaces Color.cc * Fixed an iconify bug in "All Windows" mode in IconbarTool (Henrik) IconbarTool.cc *04/01/08: * Fixed some uninitialized variables (Henrik) * Minor fixes for signed/unsigned warnings in FbTk (Henrik) FbTk/* ------------------------------------------------------------------------ Changes for 0.9.7: *04/01/02: * Added new styles Emerge (from Nuno Alexandre) and BlueFlux (from Lauri Hakkarainen) * Removed styles: Clean (CleanColor renamed to Clean), Rancor and Blue (Henrik) * fbsetbg trivial: (Thanks Han) Add support for random_number, provided by: http://www.xs4all.nl/~hanb/software/arc4random.tar.bz2 for the fans :) fbsetbg * Added menu item [separator] (Henrik) Screen.cc * Fixed bug in ThemeItem<int>::setFromString (Henrik) It didn't check if sscanf returned error ThemeItems.hh * Fixed image cache bug (Henrik) ImageControl.hh * Fixed active/unfocus fallback bug (Henrik) FbWinFrame.cc * Tab completion in command dialog (Henrik) CommandDialog.hh *03/12/30: * Added resource session.useMod1 <boolean> to disable/enable mod1 (Henrik) for Resize/Move window with mod1 + button Window.cc, fluxbox.hh/cc * Fixed so it checks for caps, num and scrollock (Henrik) KeyUtil.hh/cc, fluxbox.cc, TextBox.cc, WorkspaceCmd.cc, Window.cc * Focus issue (Henrik) Window.cc/hh, fluxbox.hh/cc *03/12/29: * Removed dublicate call to load theme in startup (Henrik) Screen.cc * Random wallpaper for fbsetbg (Thanks Han) fbsetbg, fluxbox-generate_menu *03/12/22: * Fix rendering of icon buttons when larger from rounding (Simon) Container.hh IconbarTool.hh/cc *03/12/22: * Added Lock Screen to fluxbox-generate_menu (Thanks Han) *03/12/21: * Fix rounding on Iconbar (Simon) Container.cc * And another attempt at sloppy focus issues (Simon) WinClient.cc Window.cc fluxbox.cc * Minor fix (Henrik) We must assume Passive when no input hint is set WinClient.cc *03/12/20: * Fixed toolbar and slit autohide bug (Henrik) Toolbar.cc, Slit.cc * Added new action: BindKey <key line> (Henrik) This will allow you to add key bindings while you're running fluxbox in the Fluxbox Command dialog. example: BindKey Mod1 R :RootMenu The key will add itself to the keys file, to remove keys you still have to manualy edit the keys file until there's a better save in the code. FbCommandFactory.cc, FbCommands.hh/cc, Keys.hh/cc *03/12/19: * Added Edit Clock Format menu item (Henrik) This allow the user to edit the clock format without open and edit the init file manualy ClockTool.cc * Added new commands: (Henrik) SetResourceValueCmd <resourcename> <resource value> SetResourceValueDialog These will help the user to set some resources that doesn't have a configure menu item or that's painfull to change in small steps (like Menu Alpha) FbCommands.hh/cc, FbCommandFactory.cc * Added setResourceValue, resourceValue and findResource to ResourceManager (Henrik) Resource.hh/cc * Removed flicker in iconbar while changing active client (Henrik) in Window. IconbarTool.hh/cc * Fixed bug in key/mouse screen updates in fluxbox.cc (Henrik) * Old/New action: SetWorkspaceName doesn't pop up dialog to edit workspace name (Henrik) it now sets the current workspace name direct example: SetWorkspaceName somespace this will set current workspace name to somespace The new action for editing workspace name is: WorkspaceNameDialog FbCommands.hh/cc, FbCommandFactory.cc * New Action: CommandDialog - with this action you'll get a dialog much like (Henrik) fbrun but in this you can issue fluxbox actions like NextWorkspace and so on. * Replaces WorkspaceNameEditing with a more generic dialog (Henrik) CommandDialog. CommandDialog.hh/cc, FbCommandFactory.cc * Code cleaning (Henrik) ... * changed session.opaqueMove to session.screen<num>.opaqueMove (Henrik) Screen.cc *03/12/18: * Patch from Ciaran that fixes so style files that (Thanks Ciaran McCreesh) starts with "." or ends with "~" (backup files) doesn't gett added to style menu * Some cleaning (Henrik) ... * nl_NL locales (Thanks Han Boetes) configure.in, nls/Makefile.am, nls/nl_NL/*, util/fluxbox-generate_menu.in *03/12/17: * Fixed some icc warnings (Henrik) ... * Changed menu delay resource values to milliseconds instead of microsec (Henrik) Max value for each delay is 5000 msec (5 seconds) A good set of values are: session.screen0.menuDelay: 400 session.screen0.menuDelayClose: 300 MenuTheme.hh, Menu.cc, Screen.cc *03/12/15: * Fix mozilla focus issue (Simon) - When input focus hint not present assume false rather than true WinClient.cc *03/12/13: * Moving client to drop zone when drag'n'drop to root window (Henrik) Window.cc *03/12/12: * Added menu delay/click to open or close submenus (Henrik) In menuMode: Click you need to click on the menu item to open it. The menuDelay is the delay to open an submenu. The menuDelayClose is so you don't need to aim that much when you're moving the cursor to the submenu, over the item below or above, so it stays visible. new resource items: session.screen0.menuMode: can be either Click or Delay (default: Delay) session.screen0.menuDelay: in msec (default: 0 ) session.screen0.menuDelayClose: in msec (default: 0 ) example: session.screen0.menuMode: Delay session.screen0.menuDelay: 400 session.screen0.menuDelayClose: 300 Notice how the menuDelay is a bit larger than menuCloseDelay this is so the previous menu can close before you open the next * Fixed bug when adding alot of new workspaces (Henrik) Ewmh.cc * Removed Next/Prev client from window menu (Henrik) Window.cc * Added aligment for buttons in iconbar (Henrik) Change Left, Relative or Right via the Iconbar mode menu New resource item: session.screen0.iconbar.clientWidth: integer session.screen0.iconbar.alignment: LEFT, RELATIVE or RIGHT IconbarTool.hh/cc, Container.hh/cc * Support for bsetroot in fbsetbg (Han) *03/12/11: * Added remember position (Thanks Mathias Gumz) Usage: [app] (fbrun) [Position] (WINCENTER) {0 0} [end] and inside the { } is the relative position possible values for () are: UPPERLEFT, UPPERRIGHT, LOWERLEFT, LOWERRIGHT, CENTER, WINCENTER Remember.cc/hh *03/12/10: * Added temporarly nice separator line (Thanks Ciaran McCreesh) use [nop] (---) to get a nice separator line in the menu Window.cc, Menu.cc * Fixed geometry window bug when resizing (Henrik) Window.cc, Screen.cc * Cleaning in menu code (Henrik) ... *03/12/09: * Ignore NotifyInferior focus changes (Simon) - trying to pin down various focus issues... does this help/hinder? fluxbox.cc * New theme items: (Simon) window.label.active: <texture> window.label.active.textColor: <color> For highlighting the active (visible) tab when not in focus. - fixes bug with unfocused windows not getting unfocus.textColor FbWinFrame.hh/cc FbWinFrameTheme.hh/cc *03/12/08: * fbsetbg now remembers -u option and it also has (Han) a new -U option which does the same thing without remembering fbsetbg * Added "visible" menu item to Toolbar (Henrik) When this item is off the toolbar vill be completely hidden. (You can still access the toolbar menu via main configure menu) New resource item: session.<screename>.toolbar.visible: <boolean> Toolbar.hh/cc * Removed data/startup.in (Henrik) data/Makefile.am, data/startup.in *03/12/07: * Fixed bug window title change bug for iconbar (Henrik) IconbarTool.cc, Workspace.cc, Window.hh/cc * Fixed bug in extra drawing in the iconbar (Henrik) TODO: check this out more Container.cc * Fixed bug with color/colorTo and .pixmap in styles (Henrik) Toolbar.cc, Slit.cc, Screen.cc, WorkspaceNameTool.cc, IconbarTool.cc, Texture.cc, ButtonTool.cc, ClockTool.cc, FbWinFrame.cc * Added Toolbar to main config menu again (Henrik) Toolbar.cc *03/12/06: * Updates for startfluxbox.in (Han) *03/12/04: * Added new clock format menu item (Henrik) It'll toggle the clock in 24/12 format ClockTool.cc/hh, ToolFactory.cc * Changed XSync to FbTk::App::sync (Henrik) fluxbox.cc, Keys.cc, App.hh/cc, Window.cc, Screen.cc *03/12/03: * window menu inside clientmenu inside workspacemenu (Henrik) Workspace.cc * Added new command "reloadstyle" (Henrik) FbCommands.hh/cc, FbCommandFactory.cc * Fixed so toolbar menu hides when you click on root window/desktop (Henrik) fluxbox.cc * Removed ToolbarHandler (Henrik) ToolbarHandler.cc/hh, Toolbar.hh/cc, IconbarTool.cc, fluxbox.cc/hh *03/12/02: * Missing include of math.h for sqrt (Simon) WorkspaceCmd.cc *03/12/01: * Fixed shadow bug with other options (Henrik) Font.cc * Fixed antialias bug in fbrun (Henrik) Antialias is enabled by default for FbRun Changed switch -a to -na (disable antialias) FbRun/main.cc *03/11/29: * Added shadow text (Henrik) To use shadow in text you need to add option to your font style item. The theme item will continue to work in old fluxbox and it'll just ignore the "shadow" option Example: menu.title.font: Verdana-10:bold,shadow menu.frame.font: Verdana-8:shadow window.font: sans-8:shadow *.font: sans-12:shadow *03/11/27: * The "Send To..."-menu is back (Henrik) SendToMenu.hh/cc, Window.cc * Added new option on Iconbar mode menu: "Use Pixmap" (Henrik) Toggle this to show/hide pixmap of windows new resource item: session.screen<num>.iconbar.usePixmap: <boolean> * Changed Maximize menu item in Window menu to a multi button item (Henrik) Button1: Maximize Normal Button2: Maximize Vertical Button3: Maximize Horizontal MultiButtonMenuItem.hh/cc, Window.cc *03/11/23: * Some util/ updates from Han .cvsignore fbsetbg fluxbox_generate_menu.in *03/11/19: * Fix menu draw bug for empty submenus (Simon) Menu.cc * Fix menu placement for iconbar and titlebar activation, including xinerama awareness (Simon) Window.cc IconButton.cc * Fix win menu hide straight after show when right click icon (Simon) Menu.cc ------------------------------------------------------------------------- Changes for 0.9.6: *03/11/16: * Fixed sstream and strstream header check (Henrik) configure.in, Remember.cc, FbCommandFactory.cc, ClientPattern.cc * Add image search paths when loading a style (Simon) - now looks for pixmaps in <stylebase> and <stylebase>/pixmaps - now looks for styles in <stylesdir>/<stylename>/theme.cfg => for this, stylebase is the style directory - pixmap styles should use the new format for portability Theme.hh/cc Image.hh/cc Screen.cc *03/11/15: * Moved fluxbox-generate_menu to fluxbox-generate_menu.in (Thanks Han) fixed empty submenu problem fluxbox-generate_menu.in, util/Makefile.am, data/Makefile.am *03/10/31: * Fix slit client map on restart and surplus menu redraw (Simon) SlitClient.hh Slit.cc Menu.cc * Fix textbutton text alignment (out by one) (Simon) TextButton.cc * Tweak some positioning for winbutton drawn icons (Simon) WinButton.cc * Fix iconbar button alignment and squash inactive tools (Simon) - also fix a bunch of rounding issues -> keep in mind that titlebar/iconbar width may not be exactly divisible by the number of clients/labels in it Container.cc FbWinFrame.cc SystemTray.hh Screen.cc ToolbarItem.hh Toolbar.cc *03/10/30: * Fix handling of theme's with a zero handleWidth (Simon) FbWinFrame.cc *03/10/28: * Fix building with --disable-slit (Simon) Screen.cc *03/10/27: * Change FbWinFrame to NOT reparent client windows into clientarea (Simon) - fixes (I think) java bug with missing drawing bits of window - allows us to remove some dodgy "and for parent" hacks (not done in this patch, but will be in new action system which depends on this) - clientarea still exists for future implementation of improved sizing, particularly to provide a backing to clients that don't take up the whole area. FbWinFrame.hh/cc Window.hh/cc fluxbox.cc *03/10/26: * Fixed bug in FbWindow::setNew (Henrik) It didn't update member variables FbWindow.cc *03/10/25: * Fixed whitespace in filenames for pixmaps (Henrik) StringUtil.hh/cc, ThemeItems.hh * Added MoveTo/ResizeTo commands (Thanks sylvinus) Moves/Resize the window absolute coordinates * usage: MoveTo 100 100 ResizeTo 100 100 *03/10/20: * fbgm updates from Han - allow options in ~/.fluxbox/menuconfig - update dutch locales a bit. - fbrun options added in menuconfig - added /usr/X11R6 to searchpath - some other random fixes/updates fluxbox-generate_menu *03/10/17: * fbsetbg update from Han - new option to explicitly say which wallpaper setting to use, plus minor changes fbsetbg *03/10/15: * Fix event manager target window (Simon) -> Some events don't have the main window as xany.window (e.g. XConfigureRequestEvent has the parent there) -> Fixes missing configurerequest events for e.g. galeon EventManager.hh/cc fluxbox.cc *03/10/14: * Bug fix in NextWindow/PrevWindow Command (Henrik) it was only executed when last event = keyevent WorkspaceCmd.cc * New theme items: * toolbar.button.size for fixed buttons in the toolbar * toolbar.button.borderWidth * toolbar.button.borderColor * toolbar.button * toolbar.button.color * toolbar.button.colorTo * toolbar.button.pixmap * toolbar.button.picColor * toolbar.button.pressed.color * toolbar.button.pressed.colorTo * toolbar.button.pressed * Added pressed color for buttons (Henrik) FbTk/ Button.hh/cc * Added new tools for the toolbar (Henrik) - nextworkspace/prevworkspace creates left/right arrows that changes workspace - nextwindow/prevwindow creates left/right arrows that changes focused window ToolFactory.hh/cc * Added new files (Henrik) - GenericTool.hh/cc helper class for simple tools like buttons - ButtonTool.hh/cc Tool class for buttons in toolbar - ToolFactory.hh/cc Creates tools - ButtonTheme.hh/cc holds theme for simple buttons, extends tooltheme with pressed texture and picColor *03/10/10: * Various drawing-related optimisations and bug fixes (Simon) - fixes toolbar random colour flicker on workspace change - speeds up pixmap rendering a little (inlining and friends!) - pixmap cache now a set rather than list (faster search) FbWinFrame.cc GContext.hh/cc Color.hh ImageControl.hh/cc IconbarTool.cc fluxbox.cc Container.cc *03/10/08: * fluxbox-generate_menu update from Han - replace getopts with portable workaround fluxbox-generate_menu * fbsetbg updates from Han, and some tweaking (Simon) fbsetbg *03/10/06: * Fix rendering of offscreen windows (remove if !visible tests) (Simon) FbWinFrame.cc * Fix shaped windows+menus (Simon) - make sure all existing menus use shape - fix Shape itself, particularly to work properly with borders Shape.cc IconBarTool.hh/cc Toolbar.hh/cc ToolbarHandler.hh/cc Window.hh/cc Workspace.hh/cc WinClient.cc *03/10/05: * Fix frame size when changing titlebar size (Simon) - also send configure notify when toggling decorations FbWinFrame.hh/cc Window.cc * Move a bunch of functionality from Keys into FbTk::KeyUtil (Simon) - also fix issue where Capslock mod was taken to be whatever caps key was mapped to (why??). Now uses LockMask (ditto num,scroll). Keys.hh/cc KeyUtil.hh/cc TextBox.cc fluxbox.cc * Fix reading of auto raise delay (Simon) fluxbox.hh/cc Screen.cc Timer.hh/cc * Make focusLast work for sloppy focus when changing workspace or closing a window (Simon) - also generalises event redirects (e.g. for window moving) fluxbox.hh/cc Window.hh/cc Screen.cc *03/10/04: * Fix NLS bad message errors by adding explicit codeset entries (Simon) - thanks to Matt Hope for pointing us to the recent workaround from blackbox (and thanks to Matt Kraai who contrib-d to Blackbox) - also clean up the Makefiles so they are more generalised nls/*/Makefile.am nls/convert.awk *03/10/02: * Fix couple of memory leaks and uninitialised uses shown up with valgrind (Simon) EventManager.cc TextureRender.cc Gnome.cc Screen.cc Window.cc WinClient.cc Xutil.cc main.cc * Make grips children of handle (Simon) - Fixes parentrelative grip texture FbWinFrame.hh/cc * Fix updating of window on focus change (Simon) FbWinFrame.cc *03/09/29: * Fix aterm not updating on opaque move (Thanks Mathias Gumz) Window.cc * Fix resize calculations, particularly wrt base_width/height (Simon) - fixes abiword resize issues Window.hh/cc WinClient.hh/cc * Nearest-quadrant resizing (Thanks Uwe Maurer and Mathias Gumz) Window.hh/cc Screen.hh/cc FbWinFrameTheme.hh/cc * Update from Han - make startup executable to save one process - make pixmaps-dir - use -a which falls back to -f for wallpapers(testing) - some code cleanups. fluxbox-generate_menu, fbsetbg, startfluxbox.in *03/09/24: * Fix crash when closing active window while cycling focus (Simon) Screen.cc * Fix updates to mwm_hints, and make configure request move and resize atomic (Simon) - fixes mplayer fullscreen window being moveable - fixes focus loss when toggling mplayer fullscreen FbWinFrame.hh/cc Window.hh/cc FbAtoms.hh/cc WinClient.cc * Fixed the "aterm"-bug (Henrik) Window.cc *03/09/23: * Add support for _NET_WM_STATE_FULLSCREEN (Simon) - fixes mozilla/firebird fullscreen Ewmh.hh/cc Window.hh/cc *03/09/22: * Fix invisible minimize button for non-pixmap themes (Simon) WinButton.cc *03/09/21: * Fix disappearing close button (Simon) WinClient.hh/cc *03/09/20: * Add nls/pl_PL (Thanks Offtza). * Add nls/translators.txt saying that offtza contributed the pl_PL. * Fixed WorkspaceCmd.cc ArrangeWindows for greater odd numbers (5,7,..). *03/09/19: * fbsetbg update (Thanks Han) - fixes fbsetbg -l after a changing the wallpapersetter. - fixes xli debug message - cleanups - adds feh (thanks teemu) *03/09/16: * Apply gravity when changing decorations (Simon) - also fix gravity when decorations not present Window.cc FbWinFrame.cc *03/09/15: * Fixed bug in IconbarTool mode = NONE (Henrik) IconbarTool.cc *03/09/14: * Fixed minor bug in stick pressed button (Henrik) WinButton.cc * Focus fixes (Simon) Hopefully fixes mysterious instances of focus not being set right. Window.cc fluxbox.cc * More optimization to reduce flicker in titlebar Screen.cc, FbWinFrame.cc/hh, TextButton.hh/cc, FbWindow.hh/cc *03/09/13: * Fixed minor compilation problem for Solaris (Thanks NivenHuH) Resource.hh * Added new theme items (Henrik) * menu.borderWidth * menu.borderColor * menu.bevelWidth * window.handleWidth * window.bevelWidth MenuTheme.cc, FbWinFrameTheme.cc/hh, RootTheme.hh/cc, Window.cc, Screen.cc * Optimized rendering for windows (Henrik) Reduced flicker FbWinFrame.hh/cc, Window.cc * Changed fallback options for window button pixmaps (Henrik) *.focus/unfocus will fallback to old style if no pixmap is detected WinButton.cc * Added anjuta, blender -w, wings, rox filer, vmware, xlock to fluxbox-generate_menu (Thanks Pol) *03/09/12: * Fix a couple of issues related to windows reparenting themselves to escape the WM. Hopefully fixes mplayer/vncviewer fullscreen problems. (Simon) fluxbox.cc Window.cc * Fix window gravity handling (Simon) - should fix some offset fullscreen issues FbWinFrame.hh/cc WinClient.hh/cc Window.cc *03/09/10: * Fixed buffer for TextButton (Henrik) Reduces flicker TextButton.hh/cc, Button.cc/hh * Added Move action (Thanks Mathias Gumz) Usage: Move x y FbCommandFactory.cc, FbCommandFactory.hh * Fixed minor bug in IconbarTool (Henrik) IconbarTool.hh/cc * Added update timer for transparency in FbWinFrame (Henrik) Updates the transparency 1 usec after each move, this speeds up moving in opaque mode * new resource item session.updateDelayTime: <micro sec> This delay decides when the transparency should update when you're moving FbWinFrame.hh/cc *03/09/08: * Fixed numlock and scrlock bug in FbTk TextBox (Henrik) This will fix workspace edit window input when having num- or scrolllock on. TextBox.cc * Added iconbar mode menu (Henrik) * new resource item: session.screen<num>.iconbar.mode: <mode> Toolbar.cc, IconbarTool.cc/hh * Added icon list sig to Screen (Henrik) This will notify when the icon list changed. Useful for IconbarTool Screen.hh/cc * Fixed minor bug in FbTk::Subject (Henrik) If one removes an observer while notify() it'll put that observer in a dead_observer list which will be cleand after notify() Subject.cc * Fixed minor bug in FbTk::Button (Henrik) It did a execute() and then a updateTransparent (in buttonRelease), which could be dangerous if the execute() killed the object Button.cc * Fix when selecting + unneeded submenu redraw on enter+motion (Simon) Menu.cc *03/09/07: * Added startup script to be used with startfluxbox, to get a consistent frontend for both *dm and startx and your fluxbox-session (Thanks Han) startfluxbox.in, startup.in * Minor cleaning in some Makefile.am (Thanks Han) *03/09/06: * Added Resize x y as command (Thanks Mathias Gumz) FbCommands.cc/hh, FbCommandFactory.cc * Added "!" as a comment line for keys file (Thanks Mathias Gumz) Keys.cc * Fixed so root menu and workspace menu shows up under the mouse (Thanks Mathias Gumz) FbCommands.cc/hh * Moved detection of lock modifiers from Keys to FbTk::KeyUtil (Henrik) Keys.cc/hh, KeyUtil.hh/cc, WorkspaceCmd.cc *03/08/30: * Added new action: workspacemenu (Thanks Mathias Gumz) FbCommandFactory.hh/cc, FbCommands.hh/cc * Improved menu speed (Henrik) Menu.cc * Fixed old borderColor theme option fallback for Slit (Henrik) SlitTheme.cc *03/08/29: * Fixed iconbar, workspace theme and slit for old themes (Henrik) IconbarTheme.hh/cc, ToolTheme.hh/ToolTheme.cc, WorkspaceNameTheme.hh, SlitTheme.hh/cc * Added -verbose argument to fluxbox (Henrik) This will enable theme warnings main.cc, Theme.hh/cc *03/08/28: * Fixed so ThemeManager::load expands ~ (Henrik) Theme.cc * Fixed pixmap bug when changing between non-pixmap themes and pixmap themes (Henrik) Theme.cc * Fixed so Theme items calls setDefaultValue in constructor (Henrik) This should fix init values. Theme.hh * Fixed empty window bug in SystemTray (Henrik) SystemTray.cc * Fixed configurable tools in toolbar (Henrik) * New resource item: * session.screen<num>.toolbar.tools: <toolname>, <toolname2> example: session.screen0.toolbar.tools: clock, iconbar, workspacename Valid toolnames are: * workspacename * clock * iconbar * systemtray Toolbar.hh/cc * Fixed toolbar height bug crash (Henrik) ToolbarTheme.cc --------------------------------------------------------------------------- Changes for 0.9.5: *03/08/27: * Added support for _NET_WM_STATE_MAXIMIZE_{HORZ/VERT} (Thanks stephan wezel <s.wezel<at>web <dot> de>) Ewmh.hh/cc * Added new theme item for toolbar: (Henrik) * toolbar.height * Added new theme items for menu: (Henrik) * menu.selected.pixmap * menu.unselected.pixmap * menu.submenu.pixmap One can now specify pixmap to use for toggle items and what "arrow" to show on submenu items * Changed FbRun to use FbPixmap and GContext (Henrik) FbRun.hh/cc * Added FbTk::GContext a wrapper for X GC (Henrik) red * Changed FbRun to use FbTk::TextBox FbRun.hh/cc * Added a workspace name setting tool (Henrik) new action name: SetWorkspaceName SetWorkspaceName.hh/cc, FbCommands.hh/cc, FbCommandFactory.cc * Added TextBox for input window (Henrik) TextBox.hh/cc *03/08/25: * Fix some style initialisation issues (Simon) Screen.hh/cc FbWinFrame.cc * Added window icon for FbRun (Henrik) fbrun.xpm, FbRun.hh/cc *03/08/24: * Fixed transparent bug in Menus (submenu) (Henrik) Menu.cc * Fixed so shaped windows like xmms wont get theme (Henrik) specified shape (round corners) * Added file Compose.hh (Henrik) * Fixed randr support in toolbar (Henrik) Toolbar.cc, Screen.hh/cc *03/08/23: * Fixed autohide and menu in Toolbar (Henrik) Toolbar.cc, EventManager.hh/cc, WorkspaceNameTool.hh *03/08/22: * Added search path resource for images (Henrik) * session.screen<num>.imageSearchPath This is a list separated by , or space example: session.screen0.imageSearchPath: ~/.fluxbox/pixmaps, /usr/share/fluxbox/pixmaps * Added new files for image loading (Henrik) The new way to load pixmap is to call FbTk::Image::load(thefile, screen_num); and to add more image file support you just have to extend FbTk::ImageBase and register it to FbTk::Image Image.hh/cc, ImageXPM.hh/cc, PixmapWithMask.hh, Theme.cc, WinButtonTheme.hh/cc, WinButton.cc/hh, fluxbox.cc * Fixed scaling in WinButtonTheme (Henrik) WinButton.cc, Screen.cc WinButtonTheme.hh/cc * Added new theme item window.title.height, Window.Title.Height (Henrik) FbWinFrameTheme.hh/cc *03/08/19: * Added ResizeVertical and ResizeHorizontal (Thanks Mathias Gumz) CurrentWindowCmd.hh/cc, FbCommandFactory.cc * Fixed fallback option for theme items (Henrik) So the toolbar should look better in old themes ToolTheme.cc/hh, IconbarTheme.hh/cc, Theme.hh/cc, * Fixed bug in Subject.cc that cause observers to be added more than once (Henrik) Subject.cc *03/08/17: * Update fbsetbg and fluxbox-generate_menu (Han) *03/08/16: * Fixed iconified windows in toolbar (Henrik) IconbarTool.cc * Fixed default values on startup for some themes (Henrik) MenuTheme.cc, ToolbarTheme.cc, IconbarTheme.cc, FbWinFrameTheme.cc *03/08/15: * Fixed new height resource for toolbar (Henrik) This will override the styles font height session.screen0.toolbar.height * Added support for system tray (_NET_SYSTEM_TRAY) (Henrik) SystemTray.hh/cc, Toolbar.cc *03/08/13: * Fixed shape bug when switching between shaped themes and non shaped (Henrik) Shape.cc * Fixed default values for FbTk::Texture theme items (Henrik) Theme.cc * Added border theme items to ToolbarItems (Henrik) ToolTheme.hh/cc, BorderTheme.hh/cc, ClockTool.hh/cc, WorkspaceNameTool.hh/cc, IconbarTool.hh/cc * New theme items toolbar.clock.borderWidth: <integer> toolbar.clock.borderColor: <color> toolbar.iconbar.borderWidth: <integer> toolbar.iconbar.borderColor: <color> toolbar.workspace.borderWidth: <integer> toolbar.workspace.borderColor: <color> * Removed IconBar.hh/cc (Henrik) * Changed FbTk::Button to a FbWindow (Henrik) WinButton.cc, ArrowButton.cc, Button.hh/cc, FbWinFrame.cc, Window.cc, TextButton.cc *03/08/12: * Added new texture type: Tiled (Henrik) This will just affect pixmap loaded from file, and it will not scale them. Texture.hh/cc, TextureRender.cc *03/08/11: * Fixed a minor focus bug, the m_focused_window was out of sync after revertFocus (Henrik) fluxbox.cc * Changed so FbTk::Timer executes a FbTk::Command instead of calling TimoutHandler (Henrik) Timer.hh/cc, fluxbox.cc, Slit.hh/cc, ImageControl.hh/cc * Added new files for Toolbar (Henrik) WorkspaceNameTool.hh/cc, ClockTool.hh/cc, ToolbarItem.hh/cc, ToolTheme.hh/cc TextTheme.hh/cc * toolbar theme items now: The clock: toolbar.clock: <texture> toolbar.clock.pixmap: <filename> toolbar.clock.color: <color> toolbar.clock.colorTo: <color> toolbar.clock.textColor: <color> toolbar.clock.font: <font> Workspace name: toolbar.workspace: <texture> toolbar.workspace.pixmap: <filename> toolbar.workspace.color: <color> toolbar.workspace.colorTo: <color> toolbar.workspace.textColor: <color> toolbar.workspace.font: <font> This is for an empty iconbar: toolbar.iconbar.empty: <texture> toolbar.iconbar.empty.pixmap: <filename> toolbar.iconbar.empty.color: <color> toolbar.iconbar.empty.colorTo: <color> Focused window in iconbar: toolbar.iconbar.focused: <texture> toolbar.iconbar.focused.pixmap: <filename> toolbar.iconbar.focused.color: <color> toolbar.iconbar.focused.colorTo: <color> toolbar.iconbar.focused.textColor: <color> toolbar.iconbar.focused.font: <font> And the same for .unfocused: toolbar.iconbar.unfocused: <texture> etc. *03/08/10: * Fix session.menuFile to work with ~ properly (Simon) fluxbox.hh/cc Screen.cc *03/08/07: * Updated fluxbox-generate_menu (Thanks Han) Test before warning, browser details, minor indent issues *03/08/04: * Added transparent window (Henrik) FbWindow.hh/cc, Button.cc, FbWinFrame.hh/cc, FbWinFrameTheme.hh/cc *03/08/03: * Improve inclusion of GNOME and KDE menus (Simon and Han) fluxbox-generate_menu data/Makefile.am *03/07/29: * Minor fixes in fluxbox-generate_menu, fbsetbg and styles (Thanks Han) * Fixed kde dockapp bug (Henrik) Screen.cc, fluxbox.cc * Added icon menu to workspace menu (Henrik) Screen.cc/hh, IconMenuItem.hh, * Change: (Simon) - Fluxbox::window search - Fluxbox::m_focused_window - strut saving - Some event handling - and more to use WinClient, not FluxboxWindow. This should fix some bugs where things weren't consistent and hopefully sets the stage to fix various other things that get out of whack. fluxbox.hh/cc Screen.hh/cc Window.hh/cc Workspace.cc WinClient.hh/cc CurrentWindowCmd.hh/cc AtomHandler.hh Ewmh.hh/cc Gnome.hh/cc Remember.hh ToolbarHandler.hh Toolbar.cc CurrentWindowCmd.hh/cc *03/07/28: * Added MoveTabLeft and MoveTabRight commands (Henrik) Window.hh/cc, FbWinFrame.hh/cc, FbCommandFactory.cc *03/07/26: * Fix window size when changing borderWidth [borderless wins] (Simon) Window.hh/cc FbWinFrame.hh/cc * Fix some keybinding issues with ShadeWindow, StickWindow, SendToWorkspace, NextGroup, PrevGroup (Simon) CurrentWindowCmd.cc FbCommandFactory.cc *03/07/25: * Make fbrun work properly on multiple screens (Simon) FbRun.hh/cc * Make sure all the menus have titles, make -version go to stdout (Simon) Screen.cc Slit.cc Toolbar.cc ToolbarHandler.cc Xinerama.hh Workspace.cc main.cc * Fix pesky crash and phantom icons (diesig wasn't getting through) (Simon) ToolbarHandler.cc *03/07/24: * Fix some maximisation issues (Simon) Window.hh/cc FbCommandFactory.cc *03/07/23: * Fixed KDE dockapp bug (Henrik) Slit.cc, fluxbox.hh/cc *03/07/21: * Really fix focus stuff. Should be properly standards compliant now (I hope). This also fixes a crash introduced yesterday. (Simon) WinClient.hh/cc Window.cc fluxbox.cc *03/07/20: * Fix aspects of focus and raising, including transients (Simon) - fixes focus toggling with transients and sloppy focus WinClient.hh/cc Window.cc fluxbox.cc MultLayers.hh/cc XLayer.hh/cc Menu.hh * Fix menu [re]drawing, particularly when selecting options (Simon) Menu.hh/cc * Fix disappearing Remember menu, plus titles of sub-window menus -> can now use addExtraMenus for windows in extensions (Simon) Menu.hh/cc Window.hh/cc Screen.hh/cc Remember.cc * Fix crash with toolbarmode = OFF, and put toolbar menu back into screen's configure menu (Simon) Screen.hh/cc ToolbarHandler.cc *03/07/19: * Make most Commands execute on mouse screen rather than screen of focused window (Simon) FbCommands.cc WorkspaceCmd.cc * Fix xinerama options (again) for Slit and Toolbar (Simon) Xinerama.hh Slit.hh/cc Toolbar.hh/cc * Move menu alpha setting into MenuTheme (Simon) - fixes alpha init on multi-screened machines MenuTheme.hh/cc Menu.hh/cc Screen.cc * Add compiled-in defaults to fluxbox -info (thanks Matt Hope) main.cc * Redo ResourceManager so that it loads resources on registration, and only opens the database in blocks of requests (Simon) - fixes initial loading of init resources (e.g. toolbar.layer) Resource.hh/cc XrmDatabaseHelper.hh Screen.cc fluxbox.hh/cc Slit.cc Toolbar.cc ToolbarHandler.cc *03/07/18: * Fix java bug. Wasn't sending ConfigureNotify's to client (Simon) - also fix missing border on transient windows - also set some gnome hints initially Window.hh/cc Gnome.cc *03/07/12: * Fixed 8 bpp crash (Henrik) ImageControl.cc *03/07/11: * Added TOOLBAR to -info (Henrik) main.cc ------------------------------------------------------------------------- Changes for 0.9.4: *03/07/10: * Added new toolbar theme item (Henrik) * toolbar.button.borderWidth: <integer> * Add [startup] to Remember (Simon) Can now add entries to apps file like: [startup] {xterm} Then "xterm" will be launched on fluxbox startup. Can also give a screen option: [startup] (screen=1) {xterm} will start it on screen 1 rather than the default 0. * Added new rounded theme items (Henrik) * toolbar.shaped: <bool> this will make the toolbar shape the corners that are towards center of the screen * menu.roundCorners: <shape items> * window.roundCorners: <shape items> Where shape items can be TopLeft TopRight BottomLeft and BottomRight example: menu.roundCorners: TopRight BottomLeft ToolbarTheme.hh/cc, Toolbar.cc/hh, FbTk/Menu.hh, FbMenu.hh/cc, Screen.hh/cc, MenuTheme.hh/cc, FbWinFrameTheme.hh/cc, FbWinFrame.cc/hh * Applied patch that keeps the fbrun_history clean by not allowing duplicates to get placed in the history. (Thanks David J Burger <dburger<(a|T)>hawaii.edu>) FbRun.cc * fbsetbg updates (Han) *03/07/05: * Fix winclient death signalling - fixes remember issues with applying attributes to wrong windows (Simon) Remember.hh/cc AtomHandler.hh fluxbox.cc ToolbarHandler.hh/cc Ewmh.hh Gnome.hh *03/07/04: * Add support in remember for grouping apps (Simon) Achieved by using [group], e.g. [group] [app] (title=groupme) [Deco] {NONE} [end] will group anything with the title "groupme" and will give that group no decorations. You can have multiple [app] lines in a [group]. Recall that app lines can also use regular expressions. - also includes split AtomHandler::setupWindow(fbw) into setupFrame(fbw) and setupClient(winclient). Remember.hh/cc Window.cc Screen.cc fluxbox.hh/cc AtomHandler.hh Gnome.hh/cc Ewmh.hh/cc ToolbarHandler.hh/cc *03/07/03: * Added selected dot for style menu so one can see which style is selected (Henrik) Screen.cc * Fixed Slit autohide bug (Henrik) Slit.cc *03/07/01: * Added keyboard navigation for menus (Henrik) (click on title to get input focus, unless you're using RootMenu in keys) Use keys: Up/Down: select menu item Left/Right: go in/out from submenus Escape: close menu and return focus to windows Enter: run/execute/toggle menu item Menu.hh/cc, fluxbox.cc * Fixed reconfigure toolbar on screen reconfig signal (Henrik) Screen.hh/cc, Toolbar.cc * Fixed workspace label redraw bug (Thanks Jochem Kossen j.kossen<a(T)>home.nl) ToolbarHandler.cc *03/06/30: * Fixed so we can use the same action strings in menu as in key actions (Henrik) Screen.cc * Added command "ShowDesktop" (Henrik) This command iconifies all windows and shows the desktop WorkspaceCmd.hh/cc, FbCommandFactory.cc * Added command "ArrangeWindows" (Thanks Ricardo Martins <thecrown<a(t)>softhome.net> ) This command arranges so all windows are in a nice row/col order WorkspaceCmd.hh/cc, FbCommandFactory.cc * Changed class Keys to use FbTk::Command (Henrik) Keys.hh/cc, fluxbox.cc * Added Files: (Henrik) CommandParser.hh/cc, FbCommandFactory.hh/cc, WorkspaceCmd.hh/cc, CurrentWindowCmd.hh/cc *03/06/29: * Add chbg support to fbsetbg (Thanks Han and Michael T. Dean) fbsetbg *03/06/28: * Fix slit netizens (e.g. withdrawn pager) (Simon) Slit.cc WinClient.cc Screen.cc *03/06/26: * Speedups for having many (particularly stuck) windows (Simon) Toolbar.hh/cc IconBar.hh/cc ToolbarHandler.cc Gnome.cc Window.cc *03/06/25: * Applied toggle max vertical/horizontal patch (Thanks MrChuoi mrchuoi<[aT]>yahoo.com) Window.hh/cc * Fixed compile time option for Toolbar (Henrik) --enable-toolbar (default on) configure.in, src/Makefile.am, fluxbox.cc *03/06/24: * Added new theme items (Henrik) * toolbar.borderWidth: <integer> * toolbar.bevelWidth: <integer> * toolbar.borderColor: <color> * slit.borderWidth: <integer> * slit.bevelWidth: <integer> * slit.borderColor: <color> SlitTheme.hh, ToolbarTheme.hh/cc, Slit.cc, Toolbar.cc * Moved toolbar mode resource to ToolbarHandler (Henrik) Screen.hh/cc, ToolbarHandler.hh/cc * Fixed minor bug in button alignment (Henrik) FbWinFrame.cc * Fixed minor bug in transparent Slit (Henrik) Slit.cc/hh, Screen.cc * Emacs keybindings and tab completion for FbRun (Thanks David J Burger) FbRun.hh/cc *03/06/23: * Add group persistence over a restart, Move most winclient initialisation from FluxboxWindow to WinClient, And fix a few bugs (Simon) Screen.hh/cc WinClient.hh/cc Window.hh/cc Gnome.cc Slit.hh * Moved toolbar resources from BScreen to Toolbar (Henrik) Screen.hh/cc, Toolbar.hh/cc *03/06/22: * fluxbox-generate_menu: French locales, (Thanks Tarax <tarax(aT)arkitekts.org> ) Two additions to the menu (Thanks Pol) * Added Xutil for getWMName in Slit, SlitClient and WinClient and made some cleaning (Henrik) WinClient.cc, Slit.cc, SlitClient.cc * New resource name session.screen<num>.slit.maxOver: <bool> (Henrik) This will prevent windows from maximize over the slit Slit.cc *03/06/20: * Moved SlitTheme and SlitClient out from Slit.cc into new files (Henrik) SlitClient.hh/cc, SlitTheme.hh * Moved Slit resource from BScreen to Slit (Henrik) Slit.hh/cc, Screen.hh/cc *03/06/18: * Fixed toolbar and slit maximize implementation (Henrik) Toolbar.hh/cc, Slit.hh/cc * Fixed _NET_WM_STRUT support (Henrik) Ewmh.hh/cc, AtomHandler.hh, Gnome.hh, Remember.hh, ToolbarHandler.hh Screen.hh/cc, fluxbox.cc, Window.hh/cc * Added Strut.hh which contains left, right, top and bottom (Henrik) *03/06/16: * Fixed trailing whitespace in group file loading (Henrik) Workspace.cc *03/06/15: * Apply workaround for strftime test - fails with gcc 3.3 due to compiler bug? - thanks Joshua Kwan (Simon) configure.in * Fix group cycling, also adding new "NextGroup/PrevGroup" keys (Simon) Screen.hh/cc Keys.hh/cc fluxbox.cc *03/06/13: * Fixed autogrouping (Henrik) Window.cc, Workspace.cc * Regular expression support for remember (Simon) Also ability to limit number of matches for a given rule Also ability to match several different window attributes Can disable in compile using --disable-regexp (will just do plain string equality then) - General format is: [app] (property=expr) ... {number} If "property=" is excluded, the name property is assumed. If {number} is excluded, 0 = no limit is assumed. - Current available properties are: * name -> the name of the window - the first field of WM_CLASS * class -> the class of the window - the second field of WM_CLASS * title -> the title of the window - the WM_NAME property - e.g. [app] (*[tT]erm) {2} will match anything ending with term, for up to 2 instances - e.g. [app] (title=.*gaim.*) will match anything with gaim in the title ("gaim", "the gaim window", etc. RegExp.hh/cc ClientPattern.hh/cc configure.in Makefile.am Remember.hh/cc WinClient.hh/cc StringUtil.hh/cc *03/06/12: * Renamed i18n.hh/cc to I18n.hh/cc (Henrik) *03/06/11: * Added nls for antialias (Thanks ...) nls/C/Configmenu.m, Screen.cc, nls/C/ja_JP/Configmenu.m --------------------------------------------------------------------------------- Changes for 0.9.3: *03/06/08: * Add Reconfigure and Restart Key actions, thanks Jann Fisher (Simon) Also modify the patch to take argument on Restart action Keys.hh/cc fluxbox.cc * Fix restart command to accept and use an argument again (Simon) Screen.cc FbCommands.hh/cc * Fix bug that sometimes left window frames after window closed (Simon) fluxbox.cc *03/06/06: * Fixes and improvements from Han (Simon, thanks Han) fluxbox-generate_menu fbsetbg *03/06/05: * Fixed slit bug (Henrik) Slit.cc * Fixed window/button redraw bug (Henrik) FbTk/Button.cc * Optimise window placement (much better now) (Simon) Workspace.cc *03/05/26: * Fix usage of decorations.border, add BORDER decoration to remember (Simon) Window.hh/cc Remember.cc *03/05/24: * Fixed menu bug in FluxboxWindow (Henrik) Window.cc * Fix crash when toolbar turned off, and toolbar initialisation (Simon) Menu.cc Screen.cc Toolbar.cc *03/05/21: * Fix cascade placement for multiple heads (Simon) Workspace.hh/cc Window.hh/cc FbWinFrame.hh/cc *03/05/20: * Add xinerama for placement and snapping, plus tidy (Simon) Screen.hh/cc Window.cc Workspace.cc *03/05/19: * Clean + change xinerama, plus add maximize smarts (Simon) Screen.hh/cc Window.cc Workspace.cc Toolbar.cc Slit.cc * Fixed minor bug in bsetroot (Henrik) bsetroot.cc * Add back some Xinerama support (still need placement + maximise) (Simon) Screen.hh/cc Toolbar.cc Slit.cc Xinerama.hh * Fix bsetroot segfault (Simon) FbWindow.cc *03/05/18: * Moved Resource.hh/cc, DirHelper.hh/cc and XrmDatabaseHelper.hh to FbTk (Henrik) Screen.hh/cc, fluxbox.hh/cc, IntResMenuItem.hh/cc *03/05/17: * Fixed autohide bug in toolbar (Thanks MrChuoi) Toolbar.cc, ArrowButton.hh/cc * Fixed slit client bug (Thanks MrChuoi) Slit.cc * Fixed cursor for grips (Thanks MrChuoi) Window.cc * Fixed minor bug in FbTk::EventManager (Thanks MrChuoi) FbTk/EventManager.cc *03/05/16: * Fixed logging file and better info message (Henrik) New argument to fluxbox -log <filename> main.cc *03/05/14: * Fixed Shape events, this fixes some decor issues with gkrellm and xmms (Henrik) Window.cc/hh, fluxbox.cc/hh * Fixed crash bug when client died and clientlist wasn't updated (Henrik) WinClient.hh/cc, Screen.cc, Workspace.hh, fluxbox.cc *03/05/13: * Fixed transparent slit and minor bug in transparent (Henrik) Slit.cc, Screen.hh/cc, Transparent.cc * Fixed Slit redraw bug (Henrik) Slit.cc * Removed ScreenInfo.hh/cc (Henrik) * Fixed better error msg for display connection (Henrik) fluxbox.cc * Fix saving of Workspace Icons Toolbar mode (Simon) Screen.cc * Fixed iconify problems when autoraise on (Simon) Window.cc Screen.cc * Fixed restoring submenus after a reconfigure (Thanks MrChuoi) Screen.cc, fluxbox.cc/hh * Added auto hide menu item to toolbar menu (Thanks MrChuoi) Toolbar.cc *03/05/12: * Fixed basic RANDR support (Henrik) Resizes toolbar and slit when root window size changes. Screen.hh/cc, FbRootWindow.hh/cc, FbTk/FbWindow.hh fluxbox.cc/hh *03/05/11: * Fixed dangling m_focused_window pointer, that didn't got set in Fluxbox::revertFocus (Henrik) fluxbox.cc *03/05/10: * Added FbRootWindow.hh/cc (Henrik) Screen.hh/cc, Window.cc, Workspace.cc, IconBar.cc, Slit.cc, fluxbox.cc, WinClient.cc, Ewmh.cc, Gnome.cc * Added ScreenInfo.hh/cc (Henrik) Screen.hh * Removed BaseDisplay.hh/cc (Henrik) BaseDisplay.hh/cc, fluxbox.hh, Window.cc/hh -------------------------------------------------------------- Changes for 0.9.2: *03/05/08: * Fixed sloppy focus for embedded tabs (Simon) Window.cc * Fixed Slit ordering bug (Henrik) Screen.cc * Fixed better command help/option main.cc * Fixed Slit redrawing bug (Henrik) Slit.hh/cc *03/05/07: * Fix crash when detaching client that isn't active (Simon) Window.cc * Fixed transient grouping issues (transients now WinClients) (Simon) WinClient.hh/cc Window.hh/cc Workspace.cc Screen.cc * Fixed screen problem with redrawing menus (Henrik) The m_screen_num wasn't set in X Window assignment operator FbTk/FbWindow.cc * Fixed check for RENDER extension before we start using it (Henrik) FbTk/Transparent.hh/cc * Fixed some bugs and minor cleaning (Thanks MrChuoi) fluxbox.cc, FbTk/Button.cc, FbTk/RefCount.hh LayerMenu.hh, Resource.hh, Window.cc[focus on deiconify] *03/05/05: * Added window.<button name>.unfocus.pixmap theme item (Henrik) WinButtonTheme.hh/cc, WinButton.cc * Rework focus somewhat - now use Fluxbox::revertFocus when a window dies/gets forced out of focus (Simon) - should fix click focus sometimes acting sloppy fluxbox.hh/cc Screen.hh/cc WinClient.cc Workspace.cc Ewmh.cc *03/05/04: * add session.ignoreBorder - ignores window border with movement (Simon) fluxbox.hh/cc Window.cc * Fix warping with multiple screens (Simon) Window.cc * Set many key events/commands to act on the screen the mouse is on, rather than the focused window (Simon) fluxbox.cc * Fix segfault on restart with iconic windows (Simon) Screen.cc *03/05/01: * Fix slit autohide triggering (Simon) Slit.cc * Clean ups and optimising of redraw/reconfigures Also fixes warping in outline focus bug (Simon) Window.hh/cc FbWinFrame.hh/cc *03/04/29: * fix cause of (some?) excessive reconfigures (Simon) fluxbox.cc * fix fbsetbg relative path bug + simplify (Han) util/fbsetbg * Added FbDrawable.hh/cc (Henrik) This is a basic class for drawables such as FbWindow and FbPixmap FbWindow.hh/cc, FbDrawable.hh/cc, FbPixmap.hh/cc *03/04/28: * Added support for pixmap themes (Henrik) (this requires libXpm is installed, but you can disabled this with --disable-xpm) * Texture type now has an extra option: .pixmap example: window.label.focus.pixmap: image.xpm menu.title.pixmap: image.xpm * Standard buttons has one pixmap for pressed and one for normal state example: window.close.pressed.pixmap: image_pressed.xpm window.close.pixmap: image.xpm window.stick.pixmap: image.xpm window.shade.pixmap: image.xpm window.maximize.pixmap: image.xpm window.maximize.pressed.pixmap: image_pressed.xpm window.iconify.pixmap: image.xpm ... Screen.cc/hh, WinButton.hh/cc, Texture.hh, TextureRender.cc/hh WinButtonTheme.hh/cc, configure.in * Update fbsetbg and fluxbox-generate_menu (Han) * Fix a bunch of alignment + size issues with toolbar (particularly when vertical) (Simon) Toolbar.cc Iconbar.cc * Fix remembering (and general init) of decorations (Simon) Window.hh/cc * Fix handleEvent issues, plus detachClient crash (Simon) Window.cc Screen.cc Remember.cc *03/04/27: * Fixed execute on screen bug (Henrik) FbCommands.hh/cc * Fixed scaled pixmap (Henrik) FbPixmap.hh/cc * Fixed sloppy focus - workspace warp bug (Henrik) Window.cc * Fix cassert #includes (Simon) Window.cc WinClient.cc FbRun.cc signaltest.cc *03/04/26: * Moved StringUtil to FbTk (Henrik) Screen.cc, Workspace.cc, Keys.cc, XmbFontImp.cc * Removed DrawUtil.hh/cc and nl_types_cygnus.h (Henrik) * Fixed menu bug (Henrik) Screen.cc, FbTk/Menu.cc * Add remember layer (Simon) Remember.hh/cc * Add remember patch integration code (Simon) - note: does not include "startup" menu - save on close disabled atm, due to other issues... - enabled in configure by default, disable with --disable-remember - BIG thanks to Xavier Brouckaert (xbr at info.ucl.ac.be) for the original remember patch! Makefile.am Remember.hh/cc Screen.cc Window.hh/cc fluxbox.cc *03/04/25: * Fix small gcc 3.3 build issue (Simon) Window.hh/cc * Add UnderMousePlacement policy, plus minor positioning fix (Simon) -> Patch originally contributed by "Mike" (lgn@users.sf) Screen.hh Workspace.cc fluxbox.cc Window.cc * Fixed so WinButton updates sticky state from FluxboxWindow (Henrik) WinButton.hh/cc, Screen.cc * Added basic drawable functions to FbWindow (Henrik) * drawLine, drawRect, fillRect, copyArea FbWindow.hh/cc * Fixed SlitTheme (Henrik) Slit.cc/hh * Removed old theme engine (Henrik) Theme.hh/cc * Added RootTheme.hh/cc (Henrik) Screen.hh/cc, Workspace.cc, Slit.cc, IconBar.cc, Toolbar.cc fluxbox.cc *03/04/24: * updated fluxbox-generate_menu (Han) - decent reply to -- longopts - better ussage message - Added more OpenOffice entries *03/04/21: * Fix toolbar startup and reconfigure things (Simon) (Thanks Brian Sea) Screen.cc *03/04/20: * Snap to Windows (and toolbar, slit + screen edge) (Simon) Window.hh/cc * Directional focus movement (key actions FocusUp/Down/Left/Right) (Simon) Keys.hh/cc Screen.hh/cc fluxbox.cc * Added transparent menus, session.screen<num>.menuAlpha (Henrik) Menu.hh/cc, Transparent.hh/cc, Screen.hh/cc 02/04/17: * Fixed menu bug (Henrik) Menu.cc, Screen.cc * Fixed saving of toolbar mode (Simon) ToolbarHandler.cc -------------------------------------------------------------- Changes for 0.9.1: *03/04/16: * Fixed resize bug (Henrik) Window.cc * Fixed saving of some other slit params - placement, direction, autohide (Simon) Screen.hh/cc Slit.hh/cc fluxbox.cc * Fixed saving of toolbar and slit layer (Simon) LayerMenu.hh Screen.hh Slit.hh/cc Toolbar.hh/cc ToolbarHandler.hh Window.cc * Fixed toolbar width percent menu item (Henrik) Toolbar.cc * Fixed current focused client button rendered (Henrik) FbWinFrame.hh/cc, Window.cc * Applied click raises patch (Thanks Dale P. Smith) Screen.hh/cc, Window.cc *03/04/15: * Fixed y offset bug on ConfigureRequestEvent (Henrik) Window.cc * Fixed ConfigureNotify bug (Henrik) Window.cc/hh * Added drag and drop support for tabs (Henrik) Window.hh/cc * Fixed client and icon count in Ewmh (Henrik) Ewmh.cc * Cleaning (Henrik) fluxbox.hh/cc, FbAtoms.hh/cc, IconBar.hh/cc, WinClient.cc Window.cc, Screen.hh/cc, Toolbar.hh/cc, FbCommands.cc, Workspace.cc, Gnome.cc * Add most recently used/stacked window cycling, set as default (Simon) Thanks also to Sean Seefried for his initial patch. Window.cc Screen.hh/cc fluxbox.hh/cc Keys.hh/cc *03/04/14: * merged embedded-tab-branch into main branch (Henrik) * Don't create menuconfig during install and style cleanups (Han) fluxbox_generate_menu * Sun compat in Makefile.am (Han) data/Makefile.am *03/04/11: * Icon list updates when window state changes and notifies observer fluxbox::update fluxbox.cc * Reassociation of window when it changes to sticky is done in fluxbox::update now fluxbox.cc * Fixed transient bug WinClient.cc, Window.cc, fluxbox.cc * Added TextButton.hh/cc * Fixed label buttons in FbWinFrame for multiple clients FbWinFrame.hh/cc, Window.hh/cc * Added Next/Prev Client menu items to window menu Screen.cc *03/04/09: * Fixed Client menu Workspace.cc * Removed tab resources and old tab code Tab.hh/cc, Screen.hh/cc, fluxbox.hh/cc, Window.hh/cc, Workspace.cc *03/04/08: * Fixes in fluxbox-generate_menu (Thanks Han) *03/04/07: * Moved client specific stuff from FluxboxWindow to WinClient Window.hh/cc, fluxbox.cc, Screen.cc/hh * Fixed client list update in Ewmh module Ewmh.cc *03/04/04: * Added WinClient.hh/cc which holds client information *03/04/03: * Added AttachClient and DetachClient key actions Keys.hh/cc *03/03/30: * Using pkg-config instead of xft-config (Thanks Matt Hope) xft.m4 *03/03/22: * Added cursor to fbrun (Henrik) FbRun.hh/cc * Fix outline moving, warping, etc (Simon) Window.hh/cc Screen.cc fluxbox.cc *03/03/03: * Add code for Toolbar modes (Simon) AtomHandler.hh EventManager.cc Ewmh.hh/cc Gnome.hh/cc IconBar.hh/cc Screen.hh/cc Toolbar.hh/cc ToolbarHandler.hh/cc Window.cc fluxbox.cc *03/02/25: * Fixed freebsd error and some nls in fluxbox-generate_menu (Han) --------------------------------------------------- Changes for 0.9.0: *03/02/23: * Fixed auto hide option for toolbar menu (Henrik) Screen.cc, Toolbar.cc * Fixed vertical workspace name editing (Henrik) Toolbar.cc * Added Meta style (Thanks Joel) * Disabled background image menu in fluxbox-generate_menu *03/02/22: * Fix frame size and window moving/resizing/outline bugs (Simon) Window.cc FbWinFrame.cc * s/""/'' so the shell does not have to expand the contents of the string in fluxbox_generatemenu (Han) * Added portability notes in fluxbox_generatemenu (Han) * Added file utils menu item in fluxbox_generatemenu (Han) * Fixed a resize bug (Henrik) Window.cc * Fixed bug in menu bullet type (Henrik) FbTk/MenuTheme.cc * Fixed sloppy focus to use new event handler model (Simon) Screen.hh/cc Window.hh/cc fluxbox.hh/cc * Fixed auto hide bug in Toolbar (Henrik) Toolbar.cc * Fixed default white color bug in Theme (Henrik) FbTk/Theme.cc * Added toolbar placement menu and fixed resource saving for toolbar placement (Henrik) Toolbar.cc, Screen.cc/hh * Fixed vertical text for icons in Iconbar (Henrik) IconBar.hh/cc, Toolbar.cc *03/02/20: * Fixed a size bug without titlebar (Henrik) Window.cc, FbWinFrame.cc * Fixed a clientmenu update bug (Henrik) Workspace.hh/cc * Fixed slit client resize bug (Henrik) Slit.hh/cc *03/02/19: * Fixed transient raise/lower (Henrik) *03/02/17: * Added layer menus for windows, toolbar, and slit, plus associated (Simon) resources. Cleaned up some cruft from the previous layering setup. Gnome.cc LayerMenu.hh Screen.hh/cc Slit.hh/cc Tab.cc Toolbar.hh/cc Window.hh/cc Workspace.hh fluxbox.hh/cc * Renamed LayeredMenu to FbMenu (Simon) LayeredMenu.hh FbMenu.hh * Changed XLayerItem to hold FbWindows instead of Windows (Simon) XLayerItem.hh/cc XLayer.cc MultLayers.cc Window.cc * Added shade option for button config (Henrik) Screen.cc * Fixed antialias toggle for menus (Henrik) Screen.cc * Added toolbar width percent change menu item (Henrik) Screen.cc, Toolbar.cc * Added IntResMenuItem, for resource<int> changes in the menu (Henrik) IntResMenuItem.hh/cc * Fixed non opaque moving (Henrik) Window.cc * Fixed titlebar alignment problem (Henrik) FbWinFrame.cc *03/02/16: * Fixed configurable titlebar buttons (Henrik) Screen.cc * Fixed workspace menu and clientmenu (Henrik) Workspace.hh/cc, Screen.cc, Window.hh * Added layer submenu to window menu + small fix (Simon) Screen.cc Window.hh/cc fluxbox.hh * Fixed gnome workspace initialisation issues (Simon) Gnome.cc Window.hh/cc Screen.cc *03/02/15: * Added Style menu and fixed theme listeners for FbWinFrame, Menu and Toolbar (Henrik) ToolbarTheme.hh/cc, Toolbar.hh/cc, FbTk Menu.hh/cc, FbTk MenuTheme.hh/cc, Screen.cc, FbWinFrame.hh/cc, FbWinFrameTheme.hh/cc * Moved Observer.hh/cc and Subject.hh/cc to FbTk directory and change Subject to use std::list instead of std::vector (Henrik) * Added SetStyleCmd command, which takes argument for style filename (Henrik) FbCommands.hh/cc *03/02/10: * More fiddling of Layer code, cleaning up (Henrik + Simon) FbTk/MultLayers.hh/cc FbTk/XLayer.hh/cc FbTk/XLayerItem.hh/cc Gnome.cc Screen.hh/cc Tab.cc Window.hh/cc Workspace.cc fluxbox.cc *03/02/03: * Integration of new Layering code, plus updates to the code (Simon) - new KeyActions: Raise/LowerLayer, AlwaysOnTop/Bottom, Top/BottomLayer AtomHandler.hh Ewmh.hh/cc FbWindow.hh/cc Menu.hh MultLayers.hh/cc XLayer.hh/cc XLayerItem.hh/cc Gnome.hh/cc Keys.hh/cc Screen.hh/cc Tab.cc Window.hh/cc Workspace.hh/cc fluxbox.hh/cc fluxbox.1.in * Added a "Quit" KeyAction (Simon) Keys.hh/cc, fluxbox.cc fluxbox.1.in * Removed XLayerItem from FbTk::FbWindow * Removed XLayerItem from FbTk::Menu FbTk/Menu.hh *03/01/23: * Added polish locales to fluxbox-generate_menu (thanks Adam Byrtek) *03/01/16: * Added new Layering code into FbTk (Simon) FbTk/... Layer.hh LayerItem.hh MultLayers.cc MultLayers.hh XLayer.cc XLayer.hh XLayerItem.cc XLayerItem.hh *03/01/12: * Added RootTheme which redraws the background Screen.hh/cc * Fixed button GC for title bar buttons FbWinFrame.cc * BoolMenuItem, for changing bool values from menu BoolMenuItem.hh/cc * Fixed optional visability for SlitClients, see client list menu in Slit * Changed Slit::frame.window to an FbTk::FbWindow * Fixed scrollClientsUp/Down function in Slit * Moved SlitClient to Slit.cc * Changed Slit to an FbTk::EventHandler Slit.hh/cc * Changed SlitMenu to FbTk::Menu in Slit and fixed a client menu Slit.hh/cc * Added MenuItem.hh/cc in FbTk * Fixed bug in FbTk::Menu Menu.cc * Removed Clientmenu.cc/hh * Changed Clientmenu in BScreen to FbTk::Menu Screen.hh/cc * Changed Toolbarmenu in Toolbar to FbTk::Menu Toolbar.hh/cc * Removed toolbar dep from Workspace Workspace.cc * Removed slit functions from class Fluxbox fluxbox.hh * Removed Basemenu.hh/cc, Clientmenu.cc/hh, Workspacemenu.hh/cc, Windowmenu.hh/cc and Iconmenu.hh/cc * Moved KDE slit handling from class Fluxbox to class Slit *03/01/10: * Fixed bug in FluxboxWindow::configureRequestEvent Window.cc * Added FbTk::MacroCommand MacroCommand.hh/cc *03/01/09: * Adjusted some files to FbTk::ImageControl and FbTk::Timer Basemenu.hh, FbWinFrame.hh/cc, IconBar.cc, Slit.hh, Toolbar.hh, Theme.hh Window.hh/cc * Removed bexec from BaseDisplay Theme.cc, fluxbox.cc, BaseDisplay.hh/cc * Moved Timer.hh/cc, ImageControl.hh/cc and TextureRender.hh/cc to FbTk * Removed Rootmenu.hh/cc * Added FbCommands.hh/cc which contains some default commands that fluxbox handles, like RestartFluxboxCmd, ExitFluxboxCmd, ReconfigureFluxboxCmd and ExecuteCmd * Changed Client menu in Workspace to FbTk::Menu Workspace.hh * Changed Workspace and Rootmenu menu to FbTk::Menu Screen.hh/cc * Removed Iconmenu and disabled Stylemenu in BScreen Screen.hh/cc * Removed exec and function item from MenuItem Menu.hh/cc * Fixed menu border color, border width and bevel width MenuTheme.hh/cc, Menu.cc *03/01/06: * Fixed action/menu setup in setupWindowActions Screen.cc * Added FbTk MenuTheme object in Screen Screen.cc/hh * Fixed Windowmenu in FluxboxWindow to FbTk Menu Window.cc/hh, Toolbar.cc * Added actions, double click interval and hide/show decoraions to titlebar FbWinFrame.hh/cc, Window.cc *03/01/05: --- huge commit --- * Added FbWinFrame.hh/cc, FbWinFrameTheme.hh/cc * Updated Window.cc/hh to use FbWinFrame * Removed XINERAMA and Slit from class FluxboxWindow * Moved creation of titlebar buttons to BScreen::setupActions * FluxboxWindow object creation is now done in BScreen::createWindow(xclientwindow) * FluxboxWindow setups actions in BScreen::setupWindowActions(FluxboxWindow) * Fixed getMaxLeft/Right/Top/Bottom functions in BScreen to get max workspace area * FluxboxWindow is now a FbTk::EventHandler * Clamped texture size in TexturRender so it doesnt crash n burn on bad sizes * Adjusted Tab.cc, Windowmenu.cc, fluxbox.cc to match new FluxboxWindow * Added WinButton.hh/cc for simple fluxboxwindow button drawing * Added border size to FbTk::FbWindow *03/01/04: * Added spanish locales (Muchas gracias Alberto G. Hierro) *02/12/29: * Updated README (Han) * Fixed screenshot and menu configuration in menu script (Han) fluxbox-generate_menu *02/12/25: * Minor fixes in FbTk::Button Button.hh/cc * Moved Basemenu to FbTk/ and changed name to Menu and updated Menu to use commands and new MenuTheme Menu.hh/cc * Added FbTk::MenuTheme MenuTheme.hh/cc *02/12/20: * Fixes in fluxbox-generate_menu: menu title with space, user menu, cleanups and simplifications, whitespace. (Han) *02/12/17: * Comment and minor fixes in fluxbox-generate_menu (Han) *02/12/16: * Updated Turkish translation (tr_TR) (Thanks Arman Aksoy) * Updated fluxbox-generate_menu (Han Boetes) * Updated man page (Tobias Klausmann) fluxbox.1.in * Fixed de_DE translation (Thanks Andreas) configure.in, nls/Makefile.am, nls/de_DE/*, util/fluxbox-generate_menu * Fixed minor bugs in Button Button.hh/cc *02/12/13: * Changed toolbar to use ArrowButton and Command * Added Command.hh, SimpleCommand.hh, Button.hh/cc, RefCount.hh, ArrowButton.hh/cc *02/12/10: * Changed blackbox.cat to fluxbox.cat *02/12/08: * Fixed better Xft checking in configure.in * Fixed rotation argument in Font::drawText Font.hh/cc *02/12/04: * Updated FbRun * Fixed Left and Right placement of toolbar with vertical text. Toolbar.hh/cc, Screen.cc * Changed Basemenu to FbWindow and EventHandler usage Basemenu.hh/cc, fluxbox.hh/cc *02/12/03: * Changed Toolbar to FbWindow usage Toolbar.hh/cc * Added FbTk::FbWindow, a wrapper for X window *02/12/02: * Added DirHelper class (Henrik) DirHelper.hh/cc * Change Toolbar events to FbTk::EventHandler (Henrik) fluxbox.cc, Toolbar.hh/cc * Converted Toolbar theme to the new theme engine (Henrik) FbTk/ToolbarTheme.hh/cc, Toolbar.hh/cc, Screen.cc/hh, Theme.hh/cc * New Theme engine in place in FbTk (Henrik) Theme.hh/cc * Re-indented src tree from tab-indent to spaces (emacs offset 4) (Simon) src/**/*.{cc,hh} *02/11/30: * Changed name from BImage to TextureRender and moved it to TextureRender.hh/cc (Henrik) * Changed name from Image.hh/cc to ImageControl.hh/cc and made some cleaning (Henrik) * Fixed bug [ 642203 ] configure / make problem, solaris sparc plus more compatibility issues with old tools/shells (Simon/Han) fluxbox-generate_menu *02/11/27: * Added FbTk::EventManager and changed FbTk::EventHandler to interface class for XEvents. EventHandler.hh, SignalHandler.hh/cc, App.hh/cc, FbRun.hh/cc ... *02/11/26: * Fixed DrawUtil::doAligment * Moved some FbTk files into src/FbTk * Fixed FbRun application to FbTk only *02/11/25: * Fixed vertical tabs for XFontImp XFontImp.cc/hh, Font.hh/cc, Tab.cc, Screen.cc, DrawUtil.cc/hh *02/11/24: * Removed interlace compile time option (Henrik) Image.hh/cc * Fixed bug [ 641136 ] OpenOffice 1.0.1 aborts (Simon) Ewmh.cc * Fixed bug [ 561602 ] Problem using ToggleDecor in terminals (Simon) Window.cc/hh * Fixed bug [ 642189 ] Wrong AA font on init (Simon) Font.cc -------------------------------------------------------------------------- Changes for 0.1.13: *02/11/17: * Fixed bug in toggleTab Window.cc * Fixed alignment bug in Tab Tab.cc * Fixed HAVE_XFT_UTF8 check (Simon) configure.in, XftFontImp.cc *02/11/15: * Fixed antialias bug in toolbar * Fixed bug [ 627897 ] Clicking tab leads to crashing X-Server. Tab.cc *02/11/14: * Fixed bug [ 604958 ] Menu not (full) visible when tabs bottom Rootmenu.cc/hh * Fixed bug [ 581588 ] Toolbar auto-hiding Toolbar.cc *02/11/13: * Clean up in Slit Slit.cc/hh, Screen.cc * Fixed caps, num and scroll lock modifier checks (fixed Bug: [ 522673 ] Numlock not handled correctly in Solaris) Keys.cc/hh *02/11/12: * Updated fluxbox-generate_menu (Han) * Fixed alignment in window label Window.cc * Fixed history in FbRun * Updated FbRun to use the new font system * Removed window size limitation, fixes Debian bug #159709 (Simon) Window.cc * Fixed geometry/position window size and alignment problem (Simon) Screen.cc *02/11/03: * Fixed Toolbar workspace label text color. Theme.cc *02/10/25: * Renamed Icon.hh/cc to Iconmenu.hh/cc * Clean up (fixed bug [ 608945 ] xmms crashes fluxbox ) BaseDisplay.hh/cc, Screen.cc/hh, Tab.cc, Window.cc *02/10/24: * Updated fluxbox-generate_menu (Thanks Han) *02/10/23: * Fixed auto_ptr assignment so it compiles with gcc 2.95.x fluxbox.cc, Window.cc * Minor cleaning in Windowmenu.cc/hh *02/10/22: * Fixed isGroupable for FluxboxWindow, It should report if the window is groupable if it's not transient, nonresiable and nonmaximizable Window.hh/cc *02/10/20: * Updated it_IT translation (Thanks Filippo Pappalardo) *02/10/19: * Fixed terminal option for fluxbox-generate_menu (Thanks Han) * Fixed bug [ 604634 ] Fluxbox 0.1.11 menu on iconbar problem Toolbar.cc * Fixed ascent and descent in FontImps * Added testsuit for FbTk::Font src/tests/testFont.cc, src/tests/Makefile * Updated fluxbox-generate_menu it_IT locales and added DEFAULT_TERM value (Thanks Filippo Pappalardo) *02/10/18: * Added it_IT locales to fluxbox-generate_menu and updated data/nls/it_IT (Thanks Filippo Pappalardo) *02/10/16: * Fixed UTF-8 for antialias fonts XftFontImp.cc/hh, Font.cc * Fixed support for: _NET_WM_DESKTOP, _NET_NUMBER_OF_DESKTOPS, _NET_CURRENT_DESKTOP, _NET_ACTIVE_WINDOW, _NET_CLOSE_WINDOW Ewmh.hh/cc *02/10/15: * Conditional compile/linking of Xft specific files src/Makefile.am, configure.in * Antialias in Windowmenu, Tab and geometry window Window.cc, Screen.cc, Toolbar.cc, Theme.cc/hh, Tab.cc, IconBar.cc * Antialias option in Configmenu Configmenu.cc, Screen.cc/hh, Theme.cc/hh *02/10/14: * Added XftFontImp.hh/cc for Xft font support. Compile with --enable-xft *02/10/13: * Minor cleaning in configure.in * Fixed grab reconfigure bug Window.cc * Fixed UTF-8 support in XmbFontImp.cc * Moved font system specific stuff from Font.hh/cc to font implementation classes. * Added FontImp.hh, XFontImp.hh/cc, XmbFontImp.hh/cc For the new font implementation bridge pattern. *02/10/11: * Fixed support for _NET_WM_STATE with _NET_WM_STATE_STICKY and _NET_WM_STATE_SHADED Ewmh.cc *02/10/02: * Added Ewmh.hh/cc for Extended Window Manager Hints *02/09/21: * New menu item (Thanks Han) fluxbox-generate_menu * Latvian language support (Thanks Artis Trops) *02/09/14: * Fixed bug [ 604463 ] mplayer fullscreen fails (Henrik) Window.cc * Added Color.cc and moved color handling from Image.cc to it. (Henrik) * Added Texture.cc and Texture::setFromString (Henrik) * Proper handling of sticky windows when cycling (Simon) --------------------------------------------------------------------- Changes for 0.1.12/13: *02/09/12: * Removed -fg and -bg settings in fluxbox-generate_menu * Made a temporary fix for sticky windows (Thanks Simon Bowden) *02/09/10: * Fixed deadlock in the new transient handling Window.cc * Fixed minor issue with sending window to another workspace via blackbox-atoms. Window.cc * Fixed focus issue for transients. Window.cc * Fixed so Gnome win state is checked after window creation. bug [ 548957 ] fspanel doesnt become sticky Window.cc *02/09/08: * Fixed new transient handling Workspace.cc/hh, Screen.cc/hh, Window.cc/hh, Slit.cc, Toolbar.cc *02/09/07: * Fixed save workspace names when add/remove workspace (Thanks Simon Bowden) Workspacemenu.cc * Fixed outlined size when resizing (Thanks Simon Bowden) Window.cc * Moved data/fluxbox-generate_menu to util/ . * Moved Gnome stuff to Gnome.cc/hh. Screen.cc/hh, Window.cc/hh, fluxbox.cc/hh * Added Subject.cc/hh, Observer.cc/hh, Gnome.cc/hh and AtomHandler.hh *02/09/06: * Fixed workspace name update from toolbar (Thanks Bradley C Bailey) Toolbar.cc * Deiconify before send to workspace (Thanks Bradley C Bailey) Windowmenu.cc -------------------------------------------------------------------------- Changes for 0.1.11: *02/09/02: * New theme BlueNight (Thanks mack) *02/08/31: * Fixed minor issue with window moving across workspace in outlined mode (Thanks Simon Bowden) Window.cc *02/08/30: * Removed BaseDisplay::GrabGuard (Thanks Simon Bowden) * Carry a window across workspace in non-opaque mode (Thanks Simon Bowden) Window.cc/hh, Screen.cc/hh, fluxbox.cc * Removed TDF theme * Added new theme: LemonSpace (Thanks xlife) * Fixed transient windows checking Window.cc, Workspace.cc *02/08/28: * Minor fix in bsetbg (Thanks Han) * Fixed bug [ 582574 ] borderless windows cant be horiz resized. (Thanks Simon Bowden) Window.cc * Fixed bug [ 600811 ] undefined keys messes up Keys.cc *02/08/24: * Fixed workspace name and the reassociation bug (Thanks Simon Bowden) * Fixed bug [ 598490 ] misplaced parentrelative gives redrw prb * Fixed bug [ 586830 ], the clock now updates once per second. *02/08/20: * New fluxbox util: fbrun *02/08/18: * Added FbTk::EventHandler, a generic eventhandler * Changed FbTk::SignalHandler to use FbTk::EventHandler with FbTk::SignalEvent * Moved some functions from BaseDisplay to Fluxbox, and made BaseDisplay singleton type with FbTk::EventHandler<XEvent> * Cleaning in fluxbox-generate_menu (Thanks Han) *02/08/16: * Minor cleaning in Window.cc *02/08/14: * Added class SignalHandler (SignalHandler.hh/cc) which should take care of any system signals * Change FbAtoms in to a singleton * Changed expandFilename to use std::string *02/08/12: * The window menu now popups in iconbar when you right click on the icon. * Fixed bug [ 574717 ] restaring fluxbox should keep iconic. The gnome atom wasn't updated when the window change to iconic state *02/08/11: * New menu items (Thanks Cosmic Flo) * Added Autogrouping * Add this line: session.groupFile: ~/.fluxbox/group to the file ~/.fluxbox/init and edit ~/.fluxbox/group Groupfile format: There is one group for each line in the file and you just type the instance name of the program to be grouped. Ex: Navigator nedit xterm This will make two groups, one with netscape and nedit and one with xterm. The new window will only group itself to other windows on the same workspace and to the last window that was focused. *02/08/10: * French translation in fluxbox-generate_menu (Thanks Cosmic Flo) *02/08/04: * Fixed doxygen comments and minor clean up. *02/08/02: * autogrouping-from-tab patch (Thanks Steve Cooper) This will allow you to popup the root menu, if you right click, and select an application and it'll start grouped to the tab. *02/07/23: * Fixed "send to..." bug (Thanks Bradley C Bailey) * Moved BTexture from Image.hh to FbTk::Texture in Texture.hh * Moved BColor from Image.hh to FbTk::Color in Color.hh * Slit theme, you can now have theme on the slit: slit: <texture option> slit.color: <color value> slit.colorTo: <color value> If slit isn't present in the theme it'll fall back to toolbar theme. *02/07/19: * Fixed slitlist bug Slit wasn't reading the entire line from slitlist. * Added ja_JP to fluxbox-generate_menu script (Thanks Junichiro Kita) * Updated nls/ja_JP/ (Thanks Junichiro Kita) * Changed some function names -------------------------------------------------------------------- Changes for 0.1.10: *02/07/13: * Added xsri target in bsetbg (Thanks Jeramy) * Fixed bug [ 566277 ] xine fullscreen causes hard X lockup. Invalid win and screen pointer in Fluxbox::setFocusedWindow *02/07/10: * Fixed border and handle in Window.cc so we don't show them as default, if the window is transient. (bug [ 554218 ] windows have wrong resizeableness) *02/06/14: * Extra checking for transient, so we don't get lockup *02/06/04: * Fixed Resize/Move even without decorations. *02/06/03: * Fixed bug [ 562882 ] "bbpager in slit doesn't work correctly". The client was removed from netizenlist in ~FluxboxWindow. * Fixed bug [ 562713 ] "incorrect listings in workspace menu". Normal insert of new clients in the list again, in Workspace::addWindow * Fixed bug [ 554646 ] "Dialog boxes have tabs briefly" Windows that are not maximizable by default, such as dialogs, wont get a tab by default. *02/06/01: * Updated nl_NL locales in fluxbox-generate_menu (Thanks Han Boetes) *02/05/31: * Added ru_RU locales to fluxbox-generate_menu (Thanks Anton Denisov) *02/05/29: * Made some cleaning in class FluxboxWindow: Removed unused variable, moved Mwm* defines into enums in the class, changed (void) to () (C++ uses void as default, and (void) is really anoying to look at when syntax highlight is on) and removed NAME_* defines since they're no longer in use * Fixed "Desktop Wheeling" translation in ru_RU (Thanks Anton Denisov) * Added slit order (Thanks Steve Cooper) * Fixed language support in fluxbox-generate_menu: * sv_SE * nl_NL - Thanks Han Boetes * fi_FI - Thanks Christian Rönn * Fixed inverted highlight on toggle-items that are selected (Thanks Junichiro Kita) *02/05/25: * Fixed NLS variable in configure.in (Thanks kita) * Minor fixes in fluxbox-generate_menu script (Thanks xyrnix) --------------------------------------------------------------------- Changes for 0.1.9: *02/05/24: * Fixed bugs and arguments in fluxbox-generate_menu (Thanks Han Boetes) * Fixed include in i18n.hh so it compiles in Mac OS X * 24 hour clock format as default now *02/05/23: * Fixed invalid iterator in Timer.cc * Fixed nls files (Thanks Anton Denisov) * Updated generate_menu to fluxbox-generate_menu and fixed new items and functionality (Thanks Han Boetes and Jeramy B. Smith) *02/05/21: * Moved transient checking into a function in class FluxboxWindow * const fixes in Screen.hh *02/05/19: * Removed titlebar from src/Makefile.am and doc/fluxbox.1.in (Thanks Matt Hope) * Added configurable geometry show (Thanks Rando Christensen) New configure in init: session.screen0.showwindowposition *02/05/18: * Fixed style save_rc when changing style * const-correct in class Tab *02/05/17: * Removed some unnessesary const return values on fundamental types * Fixed const-correct on Resource class and BTexture class * Fixed transient bug, although the transient code should be better. * Minor fixes so it compiles with Intel(tm) Linux Compiler 6.0 * Clean up in class FluxboxWindow *02/05/08: * Fixed checking on focused_window in handleKeyEvents, fluxbox.cc * Added "Allow Desktop MouseWheel Switching" runtime option (Thanks Rando Christensen) * Fixed Slit saving bug and slit update bug when you start fluxbox. *02/05/07: * Fixed a minor bug in DrawUtil.cc (Thanks Sang-Hoon RHEE) * Fixed bug [ 552723 ] removing decorations while shaded. (Thanks Joel Carlbark) * const iterators in Screen::updateGnomeList * fixed some const in Workspace and moved clientmenu from pointer to regular * Minor clean up in Workspacemenu.cc/hh, Clientmenu.cc/hh, Netizen.hh/cc * const fixes in FbAtoms.hh * Added options direct to CXXFLAGS in configure.in, so we don't need to add them in every Makefile.am-file. * Updated src/Makefile.am and util/Makefile.am (see above) *02/05/03: * Fixed so settings for tool bar saves when you change them i the menu in Toolbar.cc *02/05/02: * Added FirstTab, LastTab, MoveTabPrev and MoveTabNext keybindings (Thanks Phil Dier) * Fixed ScreenList in fluxbox.cc * Removed "NULL" from Font.cc *02/04/28: * Fixed shade bug while vertical rotated tabs and tabs off (Thanks signal9) * Fluxbox doesn't save on exit anymore so restart of fluxbox will reread configuration * Minor clean up in Configmenu.hh/cc * Fixed bug [ 515483 ] "XMMS Problem", in Window.cc, decorations.handle and decorations.border now = true on transient windows *02/04/26: * Fixed m_multibyte in Font.cc (Thanks kita) *02/04/20: * Fixed menu.font string in Theme.cc -------------------------------------------------------------- Changes for 0.1.8: *02/04/19: * Added ToggleTab to key actions (Thanks Matt Hope) *02/04/17: * Added workspace change when scrolling on the root window function * Fixed workspace warping bug when moving a tab-group *02/04/14: * Fixed decoration.handle bug * Fixed tabs default off (Thanks Dave Watson) *02/04/12: * Added Workspace warping, this does only work with opaque moving (Thanks Steve Cooper) * Fixed menu bug *02/04/09: * Added RootMenu action to Keys.cc/hh and fluxbox.cc , this will pop up the Root menu. (Thanks Stanislav Karchebny) * Removed LinkedList.cc/hh * Fixed std::map, std::list, std::vector in class Fluxbox * Clean up in Workspace.hh/cc *02/04/08: * Fixed a few comments in StringUtil.cc (Thanks Maurits Dijkstra) * Clean up in Basemenu.hh/cc *02/04/05: * Fixed unsigned/signed in Basemenu.cc *02/04/04: * Moved NLS types from #define to enums and moved them into namespace FBNLS, this way we don't pollute the global namespace too much. * Fixed the i18n checking with MB_CUR_MAX and some other fixes from the blackbox code (Thanks bb-developers). * Fixed bug [ 528101 ] window dragging + workspace changing * Fixed ToggleDecor key action (still some small decoration-bugs to fix) * Moved enum Decor from BaseDisplay to FluxboxWindow * Updated Makefile.am in nls/C to generate namespace and enum for blackbox-nls.hh * Fixed bug [ 533436 ] Minor taskbar issue, it will update iconbar-text now. *02/04/03: * Fixed some signed/unsigned in Windowmenu.cc/hh, Slit.hh/cc, Basemenu.hh, Icon.hh/cc and Workspacemenu.cc/hh * Fixed reassociateWindow in Tab.cc * Fixed font in some styles (Thanks Matt Hope) * Changed icon and title name to std::string in FluxboxWindow * Removed int Basemenu::insert(char **, int = -1, int = 0); *02/04/02: * Fixed smarter next/prev focus in Screen.cc/.hh and addWindow in Workspace.cc Makes new windows get inserted after the focused window in the cycling order instead of always at the end. (Thanks Ben Jansens) * Added doSkipWindow function in Screen.hh/cc * Fixed some signed/unsigened in fluxbox.cc *02/03/27: * Fixed includes and namespace in Font.cc/hh *02/03/21: * Added FbTk::Font to the code, Font.hh/cc * Changed MenuStyle font to FbTk::Font * Changed DrawUtil to namespace *02/03/20: * Fixed some unsigned/signed stuff in Basemenu.cc/hh * Rearranged public/private order in Slit.hh * Removed #include "BaseDisplay.hh" and added #include <unistd.h> in Timer.cc * Changed StringUtil to namespace instead of struct *02/03/19: * Added Xinerama support *02/03/18: * Fixed indentation to tabs in Image.cc/hh Slit.cc/hh and Timer.hh/cc * Changed timer pointer in some classes to a non pointer variable * Clean up in class BTimer (Timer.cc/hh) BTimer now register it self to a static list in the class BTimer and update timers with the static function updateTimers(int fd) The cyclic dep between BaseDisplay and BTimer is now gone. * Added FbAtoms.hh/cc where all the atoms is. Makes the interface in BaseDisplay cleaner * Fixed std::max/min * Added better window cycling with optional parameters (Thanks Steve Cooper) NextWindow and PrevWindow now takes an integer parameter. parameter values: 0 or unspecified = Default/current behavior - no skipping 1 = Skip: lower tabs 2 = Skip: stuck windows 3 = Skip: lower tabs/stuck windows 4 = Skip: shaded windows 5 = Skip: lower tabs/shaded windows 6 = Skip: stuck windows/shaded windows 7 = Skip: lower tabs/stuck windows/shaded windows *02/03/15: * Xinerama support, maximizes windows to the current heads size, places windows on the current head, makes it possible to place toolbar on the different heads, also possible with the slit. Menus will be placed on the current head too. (Claes Nästen) *02/03/13: * Fixed window placement, now tabs are taking in account. Also, no spaced are put inbetween windows to save space. (Claes Nästen) *02/03/11: * Fixed some KDE stuff in Slit.cc (Thanks Tommi Komulainen) *02/03/08: * Fixed bug in BScreen::removeNetizen if there was only one netizen object in the list delete *netizenList.erase(it) would segfault * Some clean up in main.cc ------------------------------------------------------- Changes for 0.1.7: *02/03/01: * Fixed default values for title bar *02/02/27: * Fixed add/remove workspace bug in Screen.cc * Fixed generate_menu (Thanks Preben Peppe Guldberg) *02/02/26: * indentation in Workspace.hh * Added key action SENDTOWORKSPACE (Thanks Oliwier Ptak) *02/02/24: * Added setupConfigFiles in class Fluxbox copies configfiles to ~/.fluxbox/ *02/02/23: * Added Bulgarian translation (Thanks Miroslav Iordanov) * Added Japanese translation (Thanks Takashi KATAYAMA) *02/02/21: * Bug fix in _WIN_CLIENT_LIST *02/02/20: * Added _WIN_CLIENT_LIST * Fixed parameter to key bindings (Thanks Tomer Kol) * Fixed a bug in BScreen::raiseWindow *02/02/17: * Fixed _WIN_WORKSPACE_COUNT * Clean up in menu parsing * Fixed WIN_HINTS_SKIP_FOCUS * Fixed icon bar bug *02/02/16: * Updated include guards * Added _WIN_LAYER * Fixed more on _WIN_STATE *02/02/13: * Fixed bug in Window.cc *02/02/11: * Fixed bug in Screen and Workspace * Fixed timer bug in BaseDisplay * Remove throw in FluxboxWindow creation of a window should be checked with isManaged *02/02/09: * Fixed bug in Workspace::removeWindow * Moved to STL vector in BaseDisplay (Thanks Paul W Brannan) *02/02/08: * Back to STL list * Fixed bug in Basemenu.hh (Thanks Paul W Brannan) *02/02/06: * Reverted back to LinkedList in Toolbar.cc/.hh, Screen.hh/Screen.cc due to some strange segfaults. * Added Gnome _WIN_STATE (sticky, minimized, shaded) *02/02/05: * Fixed a signed/unsigned problem * Moved keyhandling, buttonevent and clientmessage to functions in fluxbox.cc *02/02/04: * Fixed some unsigned/signed warnings * Moved from LinkedList to STL in some files (Thanks Paul W Brannan) * Added pt_PT to nls (Portuguese) (Thanks Luis Medinas) * Fixed multibyte in Iconbar (Thanks Jesper Louis Andersen) * Removed some unnecessary timer->stop() (Thanks Jesper Louis Andersen) *02/02/02: * Added leftWorkspace and rightWorkspace, now those keybindings actually work. (Claes Nästén) * Fixed small glitch in Tab.cc. (Claes Nästén) *02/01/31: * Fixed _WIN_WORKSPACE and _WIN_WORKSPACE_COUNT *02/01/30: * Fixed width or height less than zero problem in FluxboxWindow::configure * Added numObjects() (Thanks Jesper Louis Andersen) *02/01/27: * Clean up in menu loading * Moved from old C style file reading to c++ istream in menu loading * Fixed small bug in StringUtil::expandFilename (Thanks Mauro Persano) *02/01/26: * Fixed BadWindow error from ~FluxboxWindow (frame.handle was destroyed before the children) * Fixed indentation in BaseDisplay.hh/.cc and changed some variables * Updated Russian translation (Thanks Anton Denisov) * Clean up in Tab code (Thanks Jesper Louis Andersen) *02/01/20: * Fixed std::string for Toolbar workspace name change. * Added getStringBetween to StringUtil *02/01/19: * Fixed some screen resources to Resource<T> * Updated init.in * Created GrabGuard for BaseDisplay *02/01/18: * Fixed bsetroot, now Eterm's, XChat's and similar will be able to use bsetroot's background images. (Claes Nästén) * Fixed ResourceManager * Changed resources to Resource<T> in class Fluxbox * Added Resource.hh/.cc, XrmDatabaseHelper.hh, NotCopyable.hh *02/01/16: * Fixed indent in Window.hh *02/01/15: * Fixed exception in FluxboxWindow::FluxboxWindow * Fixed lower/raise of windows when using windowmenu/keybinding so now tabs should follow. (Claes Nästén) *02/01/14: * Fixed throw statement in FluxboxWindow Changes for 0.1.6: *02/01/11: * Fixed small bug in keybindings code, now killwindow and shade will work as supposed with tabs. (Claes Nästén) * Fixed so it compiles with cygwin (Thanks Eric Nicolas) * Fixed bug in maximize over slit option * Updated documents (Thanks Rando Christensen) *02/01/10: * Fixed {VERT,HORIZ}{INC,DEC} keybindings so that tabs will resize/reposition. (Claes Nästén) * Updated documentation (Thanks Rando Christensen) * All enums are now changed to uppercase letters. (Claes Nästén) * Now tabs won't appear on some apps where they shouldn't, for example bbpager and mplayer. (Claes Nästén) * Fixed rootCommand to screen, so we can have different rootcommands on the different screens * Fixed so we can disable lines in the keyfile with a # * Fixed raise with mouse click while sloppy window focus *02/01/09: * Updated copyright date * Updated generate_menu (Thanks zyrnix) * Fixed Withdraw state * Clean up in old gnome atom code *02/01/08: * Made class Keys more independent (layer 2). class Keys now only depends on StringUtil. * Replaced the old strtok in Keys with a new stringtok from StringUtil this should make the config file less restrictive * Added stringtok to StringUtil * Removed Fluxbox dependency from class Theme * Fixed closebutton bug * Fixed memory leak in Keys *02/01/06: * Changed toolbar placement enums to uppercase letters (Claes Nästén) * Moved strcasestr from Theme.cc to StringUtil * Created StringUtil and DrawUtil and moved all functions from Misc to them *02/01/05: * Changed placement/alignment enums to uppercase letters (Claes Nästén) * Fixed tab/iconbar resource bug (Claes Nästén) * Applied "maximize slit stop"-patch (Thanks Andrew Livesay) * Fixed stickytoggle bug in Windowmenu (Thanks Chris Elston) * Fixed shade bug in Windowmenu * Fixed error in nls/it_IT/Makefile.am * Updated french translation (Thanks Fabien Devaux) * Fixed focus Configmenu bug *02/01/04: * Fixed keybinding bug (Thanks Devaux Fabien) *02/01/01: * Updated the man page (Thanks Matthew Hawkins) * Fixed windowmenu bug when resizing with num/caps/scrollock on (Thanks Devaux Fabien) * Restored lower window with mouse feature *01/12/29: * Fixed slit:onTop with toolbar:onTop bug * Changed Keygrabbing constants to uppercase * Changed Texture constants to uppercase and moved them into class BImage to clean up the global namespace *01/12/27: * Fixed grabVertMax and grabHorizMax + 1 pixel maximise bug. (Claes Nästén) * Now relative and vertical tabs gets textures rendered ok, still interlaced and gradients aren't rendered in right direction. (Claes Nästén) *01/12/26: * Fixed tab and iconbar uppdating so that tab and iconbar labels will have the right text. (Claes Nästén) *01/12/23: * Fixed a bug in Tab::buttonReleaseEvent and added sloppyWindowGrouping wich lets you release windows tabs on other windows and not only other tabs to group them (Claes Nästén) *01/12/19: * Moved some structs from file scope of BaseDisplay.hh in to class BaseDisplay * Fixed redraw bug when changing workspace *01/12/17: * Fixed errorchecking in Misc::DrawString and Misc::DrawRotString (me) * Fixed tabcycling (Thanks Mike Walker) * Moved expandFilename from class Fluxbox to class Misc (me) *01/12/14 * Moved Tab width and height functions to screen, new syntax is session.screenX.tab.width (Claes Nästén) *01/12/13: * Moved all free functions in misc.cc/.hh into a class Misc * Moved struct FFont from Theme.hh to class Misc so the cyclic dep between class Theme and class Misc is removed. * Updated Screen.hh to return reference instead of pointer in get*Style * Updated Window.cc, Toolbar.cc, Tab.cc to the new DrawString functions in class Misc * Moved and renamed bstrdup from BaseDisplay.hh/.cc to class Misc *01/12/12: * Updated russian translation (Thanks Sergey Volozhanin) * Updated man-page (Thanks Matthew Hawkins) *01/12/11: * Fixed alt+resize and pressing button1 bug (me) * Cleaned Tab::insert up and fix a bug in it. (Claes Nästén) *01/12/10 * Added NLS for Windowmenu Tab toggle (Claes Nästén) * Fixed Tab toggle texture / positioning "bug" (Claes Nästén) Changes for 0.1.5: *01/12/09 * Added execCommand to keybindings * Added new theme qnx-photon * Fixed util/Makefile.am * Bugfix in Tab::insert *01/12/08: * Fixed "Move Group to..."-bug (me) * Updated AUTHORS (me) * Fixed ungrabbing keys in Keys::load (me) * Added rootCommand override (Joel Carlbark) * Updated Tab code (Cleas Nästén) * Moved some structs and enums in to the classes to clean up the global namespace. (me) * Added grabNextTab, grabPrevTab, grabAbortKeychain (me) * Added mergeTree in class Keys (me) * Added Italian nls (Thanks Giuseppe Ciotta <giuseppe.ciotta@libero.it>) * Changed name on the includeguards (me) * Updated the doc/Coding_style (me) * Added "none" to titlebar config so users can create a titlebar without buttons (Joel Carlbark) * Fixed reversed justify in menustyle (me) *01/12/05: * Updated Tab code (Claes Nästén) *01/12/03: * Added "tab" in Windowmenu.cc (me) * Updated Tab code (Claes Nästén) *01/12/01: * Fixed chained keybinding so we can do "emacs-keybindingstyle" (me) *01/11/30: * Fixed position code for tabs (me) * Fixed tabconfigmenu bug (me) * Added new keybinding code (me) * Removed old bbkeys code (me) *01/11/29: * applied Tab position patch (Claes Nästén) * Fixed transient_for-bug, Fluxbox::~FluxboxWindow (me) client.transient_for didn't got focus and caused the (me) Fluxbox::focused_window to be a badpointer since the focused_window was pointing to an already destroyed FluxboxWindow. (me) *01/11/27: * Added alignment for tabs in Tab.cc (me) *01/11/22: * Added wheelscroll to change tab on titlebar. Window.cc/.hh (me) *01/11/20: * Screen.hh/cc Added updateWorkspaceNamesAtom updates the gnome atom _WIN_WORKSPACE_NAMES (me) *01/11/18: * Window.cc Fixed "invalid pixmap" error (me) *01/11/17: * Gnome _WIN_WORKSPACE (me) * Gnome _WIN_WORKSPACE_COUNT (me) * Gnome _WIN_CLIENT_LIST (me) *01/11/15: * Added --enable-gnome to configure.in (me) *01/11/14: * Added Gnome atoms (BaseDisplay.cc/hh) (me) *01/11/13: * Fixed grabs for window. No we can Alt+Move window with Numlock, Capslock and Scrolllock on. (me) * Fixed nls for "Use Icons" and "Use Tabs" (Claes Nästén) * Removed BScreen::LoadStyle() (me) *01/11/12: * Tab::draw, DrawString (me) * FluxboxWindow::redrawLabel, DrawString (me) * Moved strcasestr to misc.hh/cc (me) * Added DrawString function in misc.hh/cc (me) * Added misc.cc/hh (me) *01/11/11: * Theme.cc/.hh added to source, handles all theme loading (me) *01/11/09: * Fixed bug in Fluxbox::getRcFilename() (me) *01/11/07: * Removed a not working wheelscroll on rootwindow in fluxbox.cc (me) * Moved wheelscroll in Toolbar.cc from pressEvent to releaseEvent (me) * Fixed some nls in data (me) *01/11/06: * Fixed syntaxerror in Makro and CleanColor theme (me) * First part of restructure for themes (me) *01/11/05: * Clean up in IconBar.cc (me) *01/11/04: * Fixed so it compiles with gcc 3.0.x (me) Changes for 0.1.4: *01/11/03: Added new theme: Carbondioxide by skypher *01/11/03: Fixed bsetbg in utils/Makefile.am *01/11/02: Clean up *01/11/02: Added session.iconbar to config file *01/11/02: Changed the generate_menu skript to clean sh *01/11/02: Updated skyphers theme (Clean, CleanColor, MerleyKay, Makro) *01/11/02: Fixed parentrelative in tabs *01/11/02: Fixed so the tab disconnects when it iconifies *01/11/02: Added "Use Iconbar" to configmenu *01/11/01: Added iconbar to the toolbar (new files IconBar.cc/.hh) *01/10/31: Added border to tabs *01/10/31: Removed workspace change when wheelscroll on titlebar *01/10/31: Fixed so shade is correct when linkin tabs *01/10/31: Fixed default color/texture for tab to be the same as titlebar if the theme is a blackbox theme. *01/10/29: Added KDE support (thanks Dan Williams for the blackbox patch) *01/10/29: Fixed reconfigure-bug for tabs *01/10/28: Added "Use Tabs" in configure menu *01/10/28: Added theme support for tabs *01/10/28: Fixed the move bug when moving a tablist Changes for 0.1.3: * Default focusmode is ClickToFocus changed in fluxbox.cc * fluxbox.hh added resource.tabs * fluxbox.cc added enterNotify for tabs added load/save in load_rc() save_rc() for resource.tabs * blackbox-nls.hh added WindowmenuSendGroupTo * Windowmenu.hh,.cc added sendGroupTo() so we can send a hole list to another workspace * Tab.hh,.cc: Added functions: iconify, deiconfigy, withdraw, disconnect, insert, shade EnterNotifyMask for tabwindow * fluxbox.cc: getRcFilename fixed correct lenght on dbfile * Window.cc: motionNotifyEvent removed unnecessary 'else if'-statement * Screen.cc: LoadStyle() changed exit to throw * Screen.cc: prevWorkspace, nextWorkspace fixed revers workspace change. Changes for Fluxbox 0.1.2: * Added doc/Coding_style * FluxboxWindow.cc: FluxboxWindow::buttonPressEvent fixed so the shade button is drawn in pressed mode. * CleanColor theme: error fixed. * default theme is now: Clean * fluxbox.hh,.cc: execCommand removed uses bexec from BaseDisplay.hh, to grabExecute in process_event, instead. * Window.cc: FluxboxWindow::FluxboxWindow Changed event_mask for XGrabButton frame.plate from 0 to AnyModifier and ungrabs Mod1-3. This should fix the focus "bug" when num lock, caps lock or scroll lock are pressed. * fluxbox.cc: Fluxbox::process_event fixed an error check on getAction in KeyPress case. * I18n class is now singleton type * Changed name on: Blackbox class to Fluxbox BlackboxWindow to FluxboxWindow * Changed name on file blackbox.cc and blackbox.hh to fluxbox.cc and fluxbox.hh Changes from Blackbox 0.61.1 to Fluxbox 0.1.1: * Integrated bbkeys in code. "session.keyFile: thekeyfile" in the file init * "make dist" now creates a "functional" tarball * Escape cancels edit workspace name and return to old name * New coding style using tab instead of space for ident * Variable titlebar The buttons on the titlebar can now be configured. * Wheelscroll Wheelscroll function on titlebar and toolbar changes workspace * Config path The config path is now ~/.fluxbox * Toolbar.cc: ~Toolbar memory leak fix It didnt remove some windows in ToolbarSearch. * Blackbox class now singleton type |