1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959
|
#==============================================================================
# Contains public and private procedures used in tablelist bindings.
#
# Structure of the module:
# - Public helper procedures
# - Binding tag Tablelist
# - Binding tag TablelistWindow
# - Binding tag TablelistBody
# - Binding tags TablelistLabel, TablelistSubLabel, and TablelistArrow
#
# Copyright (c) 2000-2011 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
#==============================================================================
#
# Public helper procedures
# ========================
#
#------------------------------------------------------------------------------
# tablelist::getTablelistColumn
#
# Gets the column number from the path name w of a (sub)label or sort arrow of
# a tablelist widget.
#------------------------------------------------------------------------------
proc tablelist::getTablelistColumn w {
if {[regexp {^(\..+)\.hdr\.t\.f\.l([0-9]+)(-[it]l)?$} $w dummy win col] ||
[regexp {^(\..+)\.hdr\.t\.f\.c([0-9]+)$} $w dummy win col]} {
return $col
} else {
return -1
}
}
#------------------------------------------------------------------------------
# tablelist::getTablelistPath
#
# Gets the path name of the tablelist widget from the path name w of one of its
# descendants. It is assumed that all of the ancestors of w exist (but w
# itself needn't exist).
#------------------------------------------------------------------------------
proc tablelist::getTablelistPath w {
return [mwutil::getAncestorByClass $w Tablelist]
}
#------------------------------------------------------------------------------
# tablelist::convEventFields
#
# Gets the path name of the tablelist widget and the x and y coordinates
# relative to the latter from the path name w of one of its descendants and
# from the x and y coordinates relative to the latter.
#------------------------------------------------------------------------------
proc tablelist::convEventFields {w x y} {
return [mwutil::convEventFields $w $x $y Tablelist]
}
#
# Binding tag Tablelist
# =====================
#
#------------------------------------------------------------------------------
# tablelist::addActiveTag
#
# This procedure is invoked when the tablelist widget win gains the keyboard
# focus. It moves the "active" tag to the line or cell that displays the
# active item or element of the widget in its body text child.
#------------------------------------------------------------------------------
proc tablelist::addActiveTag win {
upvar ::tablelist::ns${win}::data data
set data(ownsFocus) 1
#
# Conditionally move the "active" tag to the line
# or cell that displays the active item or element
#
if {![info exists data(dispId)]} {
moveActiveTag $win
}
}
#------------------------------------------------------------------------------
# tablelist::removeActiveTag
#
# This procedure is invoked when the tablelist widget win loses the keyboard
# focus. It removes the "active" tag from the body text child of the widget.
#------------------------------------------------------------------------------
proc tablelist::removeActiveTag win {
upvar ::tablelist::ns${win}::data data
set data(ownsFocus) 0
$data(body) tag remove active 1.0 end
}
#------------------------------------------------------------------------------
# tablelist::cleanup
#
# This procedure is invoked when the tablelist widget win is destroyed. It
# executes some cleanup operations.
#------------------------------------------------------------------------------
proc tablelist::cleanup win {
#
# Cancel the execution of all delayed updateKeyToRowMap, adjustSeps,
# makeStripes, showLineNumbers, stretchColumns, updateColors,
# updateScrlColOffset, updateHScrlbar, updateVScrlbar, updateView,
# adjustElidedText, synchronize, displayItems, horizAutoScan, forceRedraw,
# doCellConfig, redisplay, redisplayCol, and destroyWidgets commands
#
upvar ::tablelist::ns${win}::data data
foreach id {mapId sepsId stripesId lineNumsId stretchId colorId offsetId \
hScrlbarId vScrlbarId viewId elidedId syncId dispId afterId
redrawId reconfigId} {
if {[info exists data($id)]} {
after cancel $data($id)
}
}
foreach name [array names data *redispId] {
after cancel $data($name)
}
foreach destroyId $data(destroyIdList) {
after cancel $destroyId
}
#
# If there is a list variable associated with the
# widget then remove the trace set on this variable
#
upvar #0 $data(-listvariable) var
if {$data(hasListVar) && [info exists var]} {
trace vdelete var wu $data(listVarTraceCmd)
}
#
# Destroy any existing bindings for data(bodyTag),
# data(labelTag), and data(editwinTag)
#
foreach event [bind $data(bodyTag)] {
bind $data(bodyTag) $event ""
}
foreach event [bind $data(labelTag)] {
bind $data(labelTag) $event ""
}
foreach event [bind $data(editwinTag)] {
bind $data(editwinTag) $event ""
}
#
# Delete the bitmaps displaying the sort ranks
# and the images used to display the sort arrows
#
for {set rank 1} {$rank < 10} {incr rank} {
image delete sortRank$rank$win
}
for {set col 0} {$col < $data(colCount)} {incr col} {
set w $data(hdrTxtFrCanv)$col
foreach shape {triangleUp darkLineUp lightLineUp
triangleDn darkLineDn lightLineDn} {
catch {image delete $shape$w}
}
}
destroy $data(corner)
namespace delete ::tablelist::ns$win
catch {rename ::$win ""}
}
#------------------------------------------------------------------------------
# tablelist::updateCanvases
#
# This procedure handles the events <Activate> and <Deactivate> by configuring
# the canvases displaying sort arrows.
#------------------------------------------------------------------------------
proc tablelist::updateCanvases win {
upvar ::tablelist::ns${win}::data data
foreach col $data(arrowColList) {
configCanvas $win $col
raiseArrow $win $col
}
}
#------------------------------------------------------------------------------
# tablelist::updateConfigSpecs
#
# This procedure handles the virtual event <<ThemeChanged>> by updating the
# theme-specific default values of some tablelist configuration options.
#------------------------------------------------------------------------------
proc tablelist::updateConfigSpecs win {
#
# This might be an "after idle" callback; check whether the window exists
#
if {![winfo exists $win]} {
return ""
}
set currentTheme [getCurrentTheme]
upvar ::tablelist::ns${win}::data data
if {[string compare $currentTheme $data(currentTheme)] == 0} {
if {[string compare $currentTheme "tileqt"] == 0} {
set widgetStyle [tileqt_currentThemeName]
set colorScheme [getKdeConfigVal "KDE" "colorScheme"]
if {[string compare $widgetStyle $data(widgetStyle)] == 0 &&
[string compare $colorScheme $data(colorScheme)] == 0} {
return ""
}
} else {
return ""
}
}
#
# Populate the array tmp with values corresponding to the old theme
# and the array themeDefaults with values corresponding to the new one
#
array set tmp $data(themeDefaults)
setThemeDefaults
#
# Set those configuration options whose values equal the old
# theme-specific defaults to the new theme-specific ones
#
variable themeDefaults
foreach opt {-background -foreground -disabledforeground -stripebackground
-selectbackground -selectforeground -selectborderwidth -font
-labelforeground -labelfont -labelborderwidth -labelpady
-arrowcolor -arrowdisabledcolor -arrowstyle -treestyle} {
if {[string compare $data($opt) $tmp($opt)] == 0} {
doConfig $win $opt $themeDefaults($opt)
}
}
foreach opt {-background -foreground} {
doConfig $win $opt $data($opt) ;# sets the bg color of the separators
}
updateCanvases $win
#
# Destroy and recreate the edit window if present
#
if {[set editCol $data(editCol)] >= 0} {
set editRow $data(editRow)
saveEditData $win
destroy $data(bodyFr)
doEditCell $win $editRow $editCol 1
}
#
# Destroy and recreate the embedded windows
#
if {$data(winCount) != 0} {
for {set row 0} {$row < $data(itemCount)} {incr row} {
for {set col 0} {$col < $data(colCount)} {incr col} {
set key [lindex $data(keyList) $row]
if {[info exists data($key,$col-window)]} {
set val $data($key,$col-window)
doCellConfig $row $col $win -window ""
doCellConfig $row $col $win -window $val
}
}
}
}
set data(currentTheme) $currentTheme
set data(themeDefaults) [array get themeDefaults]
if {[string compare $currentTheme "tileqt"] == 0} {
set data(widgetStyle) [tileqt_currentThemeName]
set data(colorScheme) [getKdeConfigVal "KDE" "colorScheme"]
} else {
set data(widgetStyle) ""
set data(colorScheme) ""
}
}
#
# Binding tag TablelistWindow
# ===========================
#
#------------------------------------------------------------------------------
# tablelist::cleanupWindow
#
# This procedure is invoked when a window aux embedded into a tablelist widget
# is destroyed. It invokes the cleanup script associated with the cell
# containing the window, if any.
#------------------------------------------------------------------------------
proc tablelist::cleanupWindow aux {
regexp {^(.+)\.body\.frm_(k[0-9]+),([0-9]+)$} $aux dummy win key col
upvar ::tablelist::ns${win}::data data
if {[info exists data($key,$col-windowdestroy)]} {
set row [keyToRow $win $key]
uplevel #0 $data($key,$col-windowdestroy) [list $win $row $col $aux.w]
}
}
#
# Binding tag TablelistBody
# =========================
#
#------------------------------------------------------------------------------
# tablelist::defineTablelistBody
#
# Defines the bindings for the binding tag TablelistBody.
#------------------------------------------------------------------------------
proc tablelist::defineTablelistBody {} {
variable priv
array set priv {
x ""
y ""
afterId ""
prevRow ""
prevCol ""
prevActExpCollCtrlCell ""
selection {}
justClicked 0
justReleased 0
clickedInEditWin 0
clickedExpCollCtrl 0
}
foreach event {<Enter> <Motion> <Leave>} {
bind TablelistBody $event [format {
foreach {tablelist::W tablelist::x tablelist::y} \
[tablelist::convEventFields %%W %%x %%y] {}
tablelist::showOrHideTooltip $tablelist::W \
$tablelist::x $tablelist::y %%X %%Y %s
tablelist::updateExpCollCtrl %%W %%x %%y
} $event]
}
bind TablelistBody <Button-1> {
if {[winfo exists %W]} {
foreach {tablelist::W tablelist::x tablelist::y} \
[tablelist::convEventFields %W %x %y] {}
set tablelist::priv(x) $tablelist::x
set tablelist::priv(y) $tablelist::y
set tablelist::priv(row) [$tablelist::W nearest $tablelist::y]
set tablelist::priv(col) [$tablelist::W nearestcolumn $tablelist::x]
set tablelist::priv(justClicked) 1
after 300 [list set tablelist::priv(justClicked) 0]
set tablelist::priv(clickedInEditWin) 0
if {[$tablelist::W cget -setfocus] &&
[string compare [$tablelist::W cget -state] "normal"] == 0} {
focus [$tablelist::W bodypath]
}
if {[tablelist::wasExpCollCtrlClicked %W %x %y]} {
set tablelist::priv(clickedExpCollCtrl) 1
} else {
tablelist::condEditContainingCell $tablelist::W \
$tablelist::x $tablelist::y
tablelist::condBeginMove $tablelist::W $tablelist::priv(row)
tablelist::beginSelect $tablelist::W \
$tablelist::priv(row) $tablelist::priv(col)
}
}
}
bind TablelistBody <Double-Button-1> {
if {[winfo exists %W]} {
foreach {tablelist::W tablelist::x tablelist::y} \
[tablelist::convEventFields %W %x %y] {}
if {[$tablelist::W cget -editselectedonly]} {
tablelist::condEditContainingCell $tablelist::W \
$tablelist::x $tablelist::y
}
}
}
bind TablelistBody <B1-Motion> {
if {$tablelist::priv(justClicked)} {
continue
}
foreach {tablelist::W tablelist::x tablelist::y} \
[tablelist::convEventFields %W %x %y] {}
if {[string compare $tablelist::priv(x) ""] == 0 ||
[string compare $tablelist::priv(y) ""] == 0} {
set tablelist::priv(x) $tablelist::x
set tablelist::priv(y) $tablelist::y
}
set tablelist::priv(prevX) $tablelist::priv(x)
set tablelist::priv(prevY) $tablelist::priv(y)
set tablelist::priv(x) $tablelist::x
set tablelist::priv(y) $tablelist::y
tablelist::condAutoScan $tablelist::W
if {!$tablelist::priv(clickedExpCollCtrl)} {
tablelist::motion $tablelist::W \
[$tablelist::W nearest $tablelist::y] \
[$tablelist::W nearestcolumn $tablelist::x]
tablelist::condShowTarget $tablelist::W $tablelist::y
}
}
bind TablelistBody <ButtonRelease-1> {
if {[winfo exists %W]} {
foreach {tablelist::W tablelist::x tablelist::y} \
[tablelist::convEventFields %W %x %y] {}
set tablelist::priv(x) ""
set tablelist::priv(y) ""
after cancel $tablelist::priv(afterId)
set tablelist::priv(afterId) ""
set tablelist::priv(justReleased) 1
after 100 [list set tablelist::priv(justReleased) 0]
set tablelist::priv(releasedInEditWin) 0
if {!$tablelist::priv(clickedExpCollCtrl)} {
if {$tablelist::priv(justClicked)} {
tablelist::moveOrActivate $tablelist::W \
$tablelist::priv(row) $tablelist::priv(col)
} else {
tablelist::moveOrActivate $tablelist::W \
[$tablelist::W nearest $tablelist::y] \
[$tablelist::W nearestcolumn $tablelist::x]
}
}
set tablelist::priv(clickedExpCollCtrl) 0
after 100 [list tablelist::condEvalInvokeCmd $tablelist::W]
}
}
bind TablelistBody <Shift-Button-1> {
foreach {tablelist::W tablelist::x tablelist::y} \
[tablelist::convEventFields %W %x %y] {}
tablelist::beginExtend $tablelist::W \
[$tablelist::W nearest $tablelist::y] \
[$tablelist::W nearestcolumn $tablelist::x]
}
bind TablelistBody <Control-Button-1> {
foreach {tablelist::W tablelist::x tablelist::y} \
[tablelist::convEventFields %W %x %y] {}
tablelist::beginToggle $tablelist::W \
[$tablelist::W nearest $tablelist::y] \
[$tablelist::W nearestcolumn $tablelist::x]
}
bind TablelistBody <Return> {
tablelist::condEditActiveCell [tablelist::getTablelistPath %W]
}
bind TablelistBody <KP_Enter> {
tablelist::condEditActiveCell [tablelist::getTablelistPath %W]
}
bind TablelistBody <Tab> {
tablelist::nextPrevCell [tablelist::getTablelistPath %W] 1
}
bind TablelistBody <Shift-Tab> {
tablelist::nextPrevCell [tablelist::getTablelistPath %W] -1
}
bind TablelistBody <<PrevWindow>> {
tablelist::nextPrevCell [tablelist::getTablelistPath %W] -1
}
bind TablelistBody <plus> {
tablelist::plusMinus [tablelist::getTablelistPath %W] plus
}
bind TablelistBody <minus> {
tablelist::plusMinus [tablelist::getTablelistPath %W] minus
}
bind TablelistBody <KP_Add> {
tablelist::plusMinus [tablelist::getTablelistPath %W] plus
}
bind TablelistBody <KP_Subtract> {
tablelist::plusMinus [tablelist::getTablelistPath %W] minus
}
bind TablelistBody <Up> {
tablelist::upDown [tablelist::getTablelistPath %W] -1
}
bind TablelistBody <Down> {
tablelist::upDown [tablelist::getTablelistPath %W] 1
}
bind TablelistBody <Left> {
tablelist::leftRight [tablelist::getTablelistPath %W] -1
}
bind TablelistBody <Right> {
tablelist::leftRight [tablelist::getTablelistPath %W] 1
}
bind TablelistBody <Prior> {
tablelist::priorNext [tablelist::getTablelistPath %W] -1
}
bind TablelistBody <Next> {
tablelist::priorNext [tablelist::getTablelistPath %W] 1
}
bind TablelistBody <Home> {
tablelist::homeEnd [tablelist::getTablelistPath %W] Home
}
bind TablelistBody <End> {
tablelist::homeEnd [tablelist::getTablelistPath %W] End
}
bind TablelistBody <Control-Home> {
tablelist::firstLast [tablelist::getTablelistPath %W] first
}
bind TablelistBody <Control-End> {
tablelist::firstLast [tablelist::getTablelistPath %W] last
}
bind TablelistBody <Shift-Up> {
tablelist::extendUpDown [tablelist::getTablelistPath %W] -1
}
bind TablelistBody <Shift-Down> {
tablelist::extendUpDown [tablelist::getTablelistPath %W] 1
}
bind TablelistBody <Shift-Left> {
tablelist::extendLeftRight [tablelist::getTablelistPath %W] -1
}
bind TablelistBody <Shift-Right> {
tablelist::extendLeftRight [tablelist::getTablelistPath %W] 1
}
bind TablelistBody <Shift-Home> {
tablelist::extendToHomeEnd [tablelist::getTablelistPath %W] Home
}
bind TablelistBody <Shift-End> {
tablelist::extendToHomeEnd [tablelist::getTablelistPath %W] End
}
bind TablelistBody <Shift-Control-Home> {
tablelist::extendToFirstLast [tablelist::getTablelistPath %W] first
}
bind TablelistBody <Shift-Control-End> {
tablelist::extendToFirstLast [tablelist::getTablelistPath %W] last
}
bind TablelistBody <space> {
set tablelist::W [tablelist::getTablelistPath %W]
tablelist::beginSelect $tablelist::W \
[$tablelist::W index active] [$tablelist::W columnindex active]
}
bind TablelistBody <Select> {
set tablelist::W [tablelist::getTablelistPath %W]
tablelist::beginSelect $tablelist::W \
[$tablelist::W index active] [$tablelist::W columnindex active]
}
bind TablelistBody <Control-Shift-space> {
set tablelist::W [tablelist::getTablelistPath %W]
tablelist::beginExtend $tablelist::W \
[$tablelist::W index active] [$tablelist::W columnindex active]
}
bind TablelistBody <Shift-Select> {
set tablelist::W [tablelist::getTablelistPath %W]
tablelist::beginExtend $tablelist::W \
[$tablelist::W index active] [$tablelist::W columnindex active]
}
bind TablelistBody <Escape> {
tablelist::cancelSelection [tablelist::getTablelistPath %W]
}
bind TablelistBody <Control-slash> {
tablelist::selectAll [tablelist::getTablelistPath %W]
}
bind TablelistBody <Control-backslash> {
set tablelist::W [tablelist::getTablelistPath %W]
if {[string compare [$tablelist::W cget -selectmode] "browse"] != 0} {
$tablelist::W selection clear 0 end
event generate $tablelist::W <<TablelistSelect>>
}
}
foreach pattern {Tab Shift-Tab ISO_Left_Tab hpBackTab} {
catch {
foreach modifier {Control Meta} {
bind TablelistBody <$modifier-$pattern> [format {
mwutil::processTraversal %%W Tablelist <%s>
} $pattern]
}
}
}
variable winSys
if {[string compare $winSys "classic"] == 0 ||
[string compare $winSys "aqua"] == 0} {
bind TablelistBody <MouseWheel> {
[tablelist::getTablelistPath %W] yview scroll [expr {-%D}] units
break
}
bind TablelistBody <Shift-MouseWheel> {
[tablelist::getTablelistPath %W] xview scroll [expr {-%D}] units
break
}
bind TablelistBody <Option-MouseWheel> {
[tablelist::getTablelistPath %W] yview scroll \
[expr {-10 * %D}] units
break
}
bind TablelistBody <Shift-Option-MouseWheel> {
[tablelist::getTablelistPath %W] xview scroll \
[expr {-10 * %D}] units
break
}
} else {
bind TablelistBody <MouseWheel> {
[tablelist::getTablelistPath %W] yview scroll \
[expr {-(%D / 120) * 4}] units
break
}
bind TablelistBody <Shift-MouseWheel> {
[tablelist::getTablelistPath %W] xview scroll \
[expr {-(%D / 120) * 4}] units
break
}
}
if {[string compare $winSys "x11"] == 0} {
bind TablelistBody <Button-4> {
if {!$tk_strictMotif} {
[tablelist::getTablelistPath %W] yview scroll -5 units
break
}
}
bind TablelistBody <Button-5> {
if {!$tk_strictMotif} {
[tablelist::getTablelistPath %W] yview scroll 5 units
break
}
}
bind TablelistBody <Shift-Button-4> {
if {!$tk_strictMotif} {
[tablelist::getTablelistPath %W] xview scroll -5 units
break
}
}
bind TablelistBody <Shift-Button-5> {
if {!$tk_strictMotif} {
[tablelist::getTablelistPath %W] xview scroll 5 units
break
}
}
}
foreach event {<<Copy>> <Control-Left> <Control-Right>
<Control-Prior> <Control-Next> <Button-2> <B2-Motion>} {
set script [strMap {
"%W" "$tablelist::W" "%x" "$tablelist::x" "%y" "$tablelist::y"
} [bind Listbox $event]]
if {[string compare $script ""] != 0} {
bind TablelistBody $event [format {
if {[winfo exists %%W]} {
foreach {tablelist::W tablelist::x tablelist::y} \
[tablelist::convEventFields %%W %%x %%y] {}
%s
}
} $script]
}
}
}
#------------------------------------------------------------------------------
# tablelist::showOrHideTooltip
#
# This procedure is invoked when the mouse pointer enters or leaves the body of
# a tablelist widget win or one of its separators, or is moving within it. If
# the pointer has crossed a cell boundary then the procedure removes the old
# tooltip and displays the one corresponding to the new cell.
#------------------------------------------------------------------------------
proc tablelist::showOrHideTooltip {win x y X Y event} {
upvar ::tablelist::ns${win}::data data
if {[string compare $data(-tooltipaddcommand) ""] == 0 ||
[string compare $data(-tooltipdelcommand) ""] == 0} {
return ""
}
#
# Get the containing cell from the coordinates relative to the parent
#
if {[string compare $event "<Leave>"] == 0} {
set row -1
set col -1
} else {
set row [containingRow $win $y]
set col [containingCol $win $x]
}
if {[string compare $row,$col $data(prevCell)] == 0} {
return ""
}
#
# Remove the old tooltip, if any. Then, if we are within a
# cell, display the new tooltip corresponding to that cell.
#
event generate $win <Leave>
catch {uplevel #0 $data(-tooltipdelcommand) [list $win]}
set data(prevCell) $row,$col
if {$row >= 0 && $col >= 0} {
set focus [focus -displayof $win]
if {[string compare $focus ""] == 0 ||
[string first $win $focus] != 0 ||
[string compare [winfo toplevel $focus] \
[winfo toplevel $win]] == 0} {
uplevel #0 $data(-tooltipaddcommand) [list $win $row $col]
event generate $win <Enter> -rootx $X -rooty $Y
}
}
}
#------------------------------------------------------------------------------
# tablelist::updateExpCollCtrl
#
# This procedure is invoked when the mouse pointer enters or leaves the body of
# a tablelist widget win or one of its separators, or is moving within it. It
# activates or deactivates the expand/collapse control under the mouse pointer.
#------------------------------------------------------------------------------
proc tablelist::updateExpCollCtrl {w x y} {
foreach {win _x _y} [tablelist::convEventFields $w $x $y] {}
set row [containingRow $win $_y]
set col [containingCol $win $_x]
upvar ::tablelist::ns${win}::data data
set key [lindex $data(keyList) $row]
set indentLabel $data(body).ind_$key,$col
#
# Check whether the x coordinate is inside the expand/collapse control
#
set inExpCollCtrl 0
if {[winfo exists $indentLabel]} {
if {[string compare $w $data(body)] == 0 &&
$x < [winfo x $indentLabel] &&
[string compare $data($key-parent) "root"] == 0} {
set imgName [$indentLabel cget -image]
if {[regexp {^tablelist_(.+)_(collapsed|expanded).*Img([0-9]+)$} \
$imgName dummy treeStyle state depth]} {
#
# The mouse position is in the tablelist body, to the left
# of an expand/collapse control of a top-level item: Handle
# this like a position inside the expand/collapse control
#
set inExpCollCtrl 1
}
} elseif {[string compare $w $indentLabel] == 0} {
set imgName [$w cget -image]
if {[regexp {^tablelist_(.+)_(collapsed|expanded).*Img([0-9]+)$} \
$imgName dummy treeStyle state depth]} {
#
# The mouse position is in an expand/collapse
# image (which ends with the expand/collapse
# control): Check whether it is inside the control
#
set baseWidth [image width tablelist_${treeStyle}_collapsedImg]
if {$x >= [winfo width $w] - $baseWidth - 5} {
set inExpCollCtrl 1
}
}
}
}
#
# Conditionally deactivate the previously activated expand/collapse control
#
variable priv
set prevCellIdx $priv(prevActExpCollCtrlCell)
if {[string compare $prevCellIdx ""] != 0 &&
[info exists data($prevCellIdx-indent)] &&
(!$inExpCollCtrl || [string compare $prevCellIdx $key,$col] != 0)} {
set data($prevCellIdx-indent) \
[strMap {"Act" ""} $data($prevCellIdx-indent)]
$data(body).ind_$prevCellIdx configure -image $data($prevCellIdx-indent)
set priv(prevActExpCollCtrlCell) ""
}
if {!$inExpCollCtrl || [string compare $prevCellIdx $key,$col] == 0} {
return ""
}
#
# Activate the expand/collapse control under the mouse pointer
#
variable ${treeStyle}_collapsedActImg
if {[info exists ${treeStyle}_collapsedActImg]} {
set data($key,$col-indent) [strMap {"expanded" "expandedAct"
"collapsed" "collapsedAct"} $data($key,$col-indent)]
$data(body).ind_$key,$col configure -image $data($key,$col-indent)
set priv(prevActExpCollCtrlCell) $key,$col
}
}
#------------------------------------------------------------------------------
# tablelist::wasExpCollCtrlClicked
#
# This procedure is invoked when mouse button 1 is pressed in the body of a
# tablelist widget or in one of its separators. It checks whether the mouse
# click occurred inside an expand/collapse control.
#------------------------------------------------------------------------------
proc tablelist::wasExpCollCtrlClicked {w x y} {
foreach {win _x _y} [tablelist::convEventFields $w $x $y] {}
set row [containingRow $win $_y]
set col [containingCol $win $_x]
upvar ::tablelist::ns${win}::data data
set key [lindex $data(keyList) $row]
set indentLabel $data(body).ind_$key,$col
if {![winfo exists $indentLabel]} {
return 0
}
#
# Check whether the x coordinate is inside the expand/collapse control
#
set inExpCollCtrl 0
if {[string compare $w $data(body)] == 0 && $x < [winfo x $indentLabel] &&
[string compare $data($key-parent) "root"] == 0} {
set imgName [$indentLabel cget -image]
if {[regexp {^tablelist_(.+)_(collapsed|expanded).*Img([0-9]+)$} \
$imgName dummy treeStyle state depth]} {
#
# The mouse position is in the tablelist body, to the left
# of an expand/collapse control of a top-level item: Handle
# this like a position inside the expand/collapse control
#
set inExpCollCtrl 1
}
} elseif {[string compare $w $indentLabel] == 0} {
set imgName [$w cget -image]
if {[regexp {^tablelist_(.+)_(collapsed|expanded).*Img([0-9]+)$} \
$imgName dummy treeStyle state depth]} {
#
# The mouse position is in an expand/collapse
# image (which ends with the expand/collapse
# control): Check whether it is inside the control
#
set baseWidth [image width tablelist_${treeStyle}_collapsedImg]
if {$x >= [winfo width $w] - $baseWidth - 5} {
set inExpCollCtrl 1
}
}
}
if {!$inExpCollCtrl} {
return 0
}
#
# Save the current vertical position
#
set topRow [expr {int([$data(body) index @0,0]) - 1}]
#
# Toggle the state of the expand/collapse control
#
if {[string compare $state "collapsed"] == 0} {
::$win expand $row -partly
} else {
::$win collapse $row -partly
}
#
# Restore the saved vertical position
#
$data(body) yview $topRow
updateViewWhenIdle $win
return 1
}
#------------------------------------------------------------------------------
# tablelist::condEditContainingCell
#
# This procedure is invoked when mouse button 1 is pressed in the body of a
# tablelist widget win or in one of its separators. If the mouse click
# occurred inside an editable cell and the latter is not already being edited,
# then the procedure starts the interactive editing in that cell. Otherwise it
# finishes a possibly active cell editing.
#------------------------------------------------------------------------------
proc tablelist::condEditContainingCell {win x y} {
#
# Get the containing cell from the coordinates relative to the parent
#
set row [containingRow $win $y]
set col [containingCol $win $x]
upvar ::tablelist::ns${win}::data data
if {$data(-editselectedonly) &&
![::$win cellselection includes $row,$col]} {
set canEdit 0
} else {
set canEdit [expr {$row >= 0 && $col >= 0 &&
[isCellEditable $win $row $col]}]
}
if {$canEdit} {
#
# Get the coordinates relative to the
# tablelist body and invoke doEditCell
#
set w $data(body)
incr x -[winfo x $w]
incr y -[winfo y $w]
scan [$w index @$x,$y] "%d.%d" line charPos
doEditCell $win $row $col 0 "" $charPos
} else {
#
# Finish a possibly active cell editing
#
doFinishEditing $win
}
}
#------------------------------------------------------------------------------
# tablelist::condBeginMove
#
# This procedure is typically invoked on button-1 presses in the body of a
# tablelist widget or in one of its separators. It begins the process of
# moving the nearest row if the rows are movable and the selection mode is not
# browse or extended.
#------------------------------------------------------------------------------
proc tablelist::condBeginMove {win row} {
upvar ::tablelist::ns${win}::data data
if {$data(isDisabled) || !$data(-movablerows) || $data(itemCount) == 0 ||
[string compare $data(-selectmode) "browse"] == 0 ||
[string compare $data(-selectmode) "extended"] == 0} {
return ""
}
set data(sourceRow) $row
set sourceKey [lindex $data(keyList) $row]
set data(sourceEndRow) [nodeRow $win $sourceKey end]
set data(sourceDescCount) [descCount $win $sourceKey]
set data(sourceParentKey) $data($sourceKey-parent)
set data(sourceParentRow) [keyToRow $win $data(sourceParentKey)]
set data(sourceParentEndRow) [nodeRow $win $data(sourceParentKey) end]
set topWin [winfo toplevel $win]
set data(topEscBinding) [bind $topWin <Escape>]
bind $topWin <Escape> [list tablelist::cancelMove [strMap {"%" "%%"} $win]]
}
#------------------------------------------------------------------------------
# tablelist::beginSelect
#
# This procedure is typically invoked on button-1 presses in the body of a
# tablelist widget or in one of its separators. It begins the process of
# making a selection in the widget. Its exact behavior depends on the
# selection mode currently in effect for the widget.
#------------------------------------------------------------------------------
proc tablelist::beginSelect {win row col} {
upvar ::tablelist::ns${win}::data data
switch $data(-selecttype) {
row {
if {[string compare $data(-selectmode) "multiple"] == 0} {
if {[::$win selection includes $row]} {
::$win selection clear $row
} else {
::$win selection set $row
}
} else {
::$win selection clear 0 end
::$win selection set $row
::$win selection anchor $row
variable priv
set priv(selection) {}
set priv(prevRow) $row
}
}
cell {
if {[string compare $data(-selectmode) "multiple"] == 0} {
if {[::$win cellselection includes $row,$col]} {
::$win cellselection clear $row,$col
} else {
::$win cellselection set $row,$col
}
} else {
::$win cellselection clear 0,0 end
::$win cellselection set $row,$col
::$win cellselection anchor $row,$col
variable priv
set priv(selection) {}
set priv(prevRow) $row
set priv(prevCol) $col
}
}
}
event generate $win <<TablelistSelect>>
}
#------------------------------------------------------------------------------
# tablelist::condAutoScan
#
# This procedure is invoked when the mouse leaves or enters the scrollable part
# of a tablelist widget's body text child while button 1 is down. It either
# invokes the autoScan procedure or cancels its invocation as an "after"
# command.
#------------------------------------------------------------------------------
proc tablelist::condAutoScan win {
variable priv
set w [::$win bodypath]
set wX [winfo x $w]
set wY [winfo y $w]
set wWidth [winfo width $w]
set wHeight [winfo height $w]
set x [expr {$priv(x) - $wX}]
set y [expr {$priv(y) - $wY}]
set prevX [expr {$priv(prevX) - $wX}]
set prevY [expr {$priv(prevY) - $wY}]
set minX [minScrollableX $win]
if {($y >= $wHeight && $prevY < $wHeight) ||
($y < 0 && $prevY >= 0) ||
($x >= $wWidth && $prevX < $wWidth) ||
($x < $minX && $prevX >= $minX)} {
if {[string compare $priv(afterId) ""] == 0} {
autoScan $win
}
} elseif {($y < $wHeight && $prevY >= $wHeight) ||
($y >= 0 && $prevY < 0) ||
($x < $wWidth && $prevX >= $wWidth) ||
($x >= $minX && $prevX < $minX)} {
after cancel $priv(afterId)
set priv(afterId) ""
}
}
#------------------------------------------------------------------------------
# tablelist::autoScan
#
# This procedure is invoked when the mouse leaves the scrollable part of a
# tablelist widget's body text child while button 1 is down. It scrolls the
# child up, down, left, or right, depending on where the mouse left the
# scrollable part of the tablelist's body, and reschedules itself as an "after"
# command so that the child continues to scroll until the mouse moves back into
# the window or the mouse button is released.
#------------------------------------------------------------------------------
proc tablelist::autoScan win {
if {![winfo exists $win] || [string compare [::$win editwinpath] ""] != 0} {
return ""
}
upvar ::tablelist::ns${win}::data data
if {!$data(-autoscan)} {
return ""
}
variable priv
set w [::$win bodypath]
set x [expr {$priv(x) - [winfo x $w]}]
set y [expr {$priv(y) - [winfo y $w]}]
set minX [minScrollableX $win]
if {$y >= [winfo height $w]} {
::$win yview scroll 1 units
set ms 50
} elseif {$y < 0} {
::$win yview scroll -1 units
set ms 50
} elseif {$x >= [winfo width $w]} {
if {$data(-titlecolumns) == 0} {
::$win xview scroll 2 units
set ms 50
} else {
::$win xview scroll 1 units
set ms 250
}
} elseif {$x < $minX} {
if {$data(-titlecolumns) == 0} {
::$win xview scroll -2 units
set ms 50
} else {
::$win xview scroll -1 units
set ms 250
}
} else {
return ""
}
motion $win [::$win nearest $priv(y)] [::$win nearestcolumn $priv(x)]
set priv(afterId) [after $ms [list tablelist::autoScan $win]]
}
#------------------------------------------------------------------------------
# tablelist::minScrollableX
#
# Returns the least x coordinate within the scrollable part of the body of the
# tablelist widget win.
#------------------------------------------------------------------------------
proc tablelist::minScrollableX win {
upvar ::tablelist::ns${win}::data data
if {$data(-titlecolumns) == 0} {
return 0
} else {
set sep [::$win separatorpath]
if {[winfo viewable $sep]} {
return [expr {[winfo x $sep] - [winfo x [::$win bodypath]] + 1}]
} else {
return 0
}
}
}
#------------------------------------------------------------------------------
# tablelist::motion
#
# This procedure is called to process mouse motion events in the body of a
# tablelist widget or in one of its separators. while button 1 is down. It may
# move or extend the selection, depending on the widget's selection mode.
#------------------------------------------------------------------------------
proc tablelist::motion {win row col} {
upvar ::tablelist::ns${win}::data data
variable priv
switch $data(-selecttype) {
row {
if {$row == $priv(prevRow)} {
return ""
}
switch -- $data(-selectmode) {
browse {
::$win selection clear 0 end
::$win selection set $row
set priv(prevRow) $row
event generate $win <<TablelistSelect>>
}
extended {
if {[string compare $priv(prevRow) ""] != 0} {
::$win selection clear anchor $priv(prevRow)
}
::$win selection set anchor $row
set priv(prevRow) $row
event generate $win <<TablelistSelect>>
}
}
}
cell {
if {$row == $priv(prevRow) && $col == $priv(prevCol)} {
return ""
}
switch -- $data(-selectmode) {
browse {
::$win cellselection clear 0,0 end
::$win cellselection set $row,$col
set priv(prevRow) $row
set priv(prevCol) $col
event generate $win <<TablelistSelect>>
}
extended {
if {[string compare $priv(prevRow) ""] != 0 &&
[string compare $priv(prevCol) ""] != 0} {
::$win cellselection clear anchor \
$priv(prevRow),$priv(prevCol)
}
::$win cellselection set anchor $row,$col
set priv(prevRow) $row
set priv(prevCol) $col
event generate $win <<TablelistSelect>>
}
}
}
}
}
#------------------------------------------------------------------------------
# tablelist::condShowTarget
#
# This procedure is called to process mouse motion events in the body of a
# tablelist widget or in one of its separators. while button 1 is down. It
# visualizes the would-be target position of the clicked row if a move
# operation is in progress.
#------------------------------------------------------------------------------
proc tablelist::condShowTarget {win y} {
upvar ::tablelist::ns${win}::data data
if {![info exists data(sourceRow)]} {
return ""
}
set w $data(body)
incr y -[winfo y $w]
set textIdx [$w index @0,$y]
set dlineinfo [$w dlineinfo $textIdx]
set lineY [lindex $dlineinfo 1]
set lineHeight [lindex $dlineinfo 3]
set row [expr {int($textIdx) - 1}]
if {$::tk_version >= 8.3} {
if {$y < $lineY + $lineHeight/3} {
set data(targetRow) $row
set data(targetChildIdx) -1
set gapY $lineY
} elseif {$y < $lineY + $lineHeight*2/3} {
set data(targetRow) $row
set data(targetChildIdx) 0
set gapY [expr {$lineY + $lineHeight/2}]
} else {
set y [expr {$lineY + $lineHeight}]
set textIdx [$w index @0,$y]
set row2 [expr {int($textIdx) - 1}]
if {$row2 == $row} {
set row2 $data(itemCount)
}
set data(targetRow) $row2
set data(targetChildIdx) -1
set gapY $y
}
} else {
if {$y < $lineY + $lineHeight/2} {
set data(targetRow) $row
set gapY $lineY
} else {
set y [expr {$lineY + $lineHeight}]
set textIdx [$w index @0,$y]
set row2 [expr {int($textIdx) - 1}]
if {$row2 == $row} {
set row2 $data(itemCount)
}
set data(targetRow) $row2
set gapY $y
}
set data(targetChildIdx) -1
}
#
# Get the key and node index of the potential target parent
#
if {$data(targetRow) > $data(lastRow)} {
if {$data(targetRow) > $data(sourceParentEndRow)} {
set targetParentKey root
set targetParentNodeIdx root
} else {
set targetParentKey $data(sourceParentKey)
set targetParentNodeIdx $data(sourceParentRow)
}
} elseif {$data(targetChildIdx) == 0} {
set targetParentKey [lindex $data(keyList) $data(targetRow)]
set targetParentNodeIdx $data(targetRow)
} else {
set targetParentKey [::$win parentkey $data(targetRow)]
set targetParentNodeIdx [keyToRow $win $targetParentKey]
if {$targetParentNodeIdx < 0} {
set targetParentNodeIdx root
}
}
if {($data(targetRow) == $data(sourceRow)) ||
($data(targetRow) == $data(sourceRow) - 1 &&
$data(targetRow) == $data(sourceParentRow) &&
$data(targetChildIdx) == 0) ||
($data(targetRow) == $data(sourceEndRow) &&
$data(targetChildIdx) < 0) ||
($data(targetRow) > $data(sourceRow) &&
$data(targetRow) <= $data(sourceRow) + $data(sourceDescCount)) ||
([string compare $data(sourceParentKey) $targetParentKey] != 0 &&
($::tk_version < 8.3 ||
([string compare $data(-acceptchildcommand) ""] != 0 &&
![uplevel #0 $data(-acceptchildcommand) \
[list $win $targetParentNodeIdx $data(sourceRow)]])))} {
unset data(targetRow)
unset data(targetChildIdx)
$w configure -cursor $data(-cursor)
place forget $data(rowGap)
} else {
$w configure -cursor $data(-movecursor)
if {$data(targetChildIdx) == 0} {
place $data(rowGap) -anchor w -y $gapY -height $lineHeight -width 5
} else {
place $data(rowGap) -anchor w -y $gapY -height 4 \
-width [winfo width $data(hdrTxtFr)]
}
raise $data(rowGap)
}
}
#------------------------------------------------------------------------------
# tablelist::moveOrActivate
#
# This procedure is invoked whenever mouse button 1 is released in the body of
# a tablelist widget or in one of its separators. It either moves the
# previously clicked row before or after the one containing the mouse cursor,
# or activates the given nearest item or element (depending on the widget's
# selection type).
#------------------------------------------------------------------------------
proc tablelist::moveOrActivate {win row col} {
#
# Return if both <Button-1> and <ButtonRelease-1> occurred in the
# temporary embedded widget used for interactive cell editing
#
variable priv
if {$priv(clickedInEditWin) && $priv(releasedInEditWin)} {
return ""
}
upvar ::tablelist::ns${win}::data data
if {[info exists data(sourceRow)]} {
set sourceKey [lindex $data(keyList) $data(sourceRow)]
unset data(sourceRow)
unset data(sourceEndRow)
unset data(sourceDescCount)
unset data(sourceParentKey)
unset data(sourceParentRow)
unset data(sourceParentEndRow)
bind [winfo toplevel $win] <Escape> $data(topEscBinding)
$data(body) configure -cursor $data(-cursor)
place forget $data(rowGap)
if {[info exists data(targetRow)]} {
if {$data(targetRow) > $data(lastRow)} {
if {[catch {::$win move $sourceKey $data(targetRow)}] != 0} {
::$win move $sourceKey root end
}
} else {
set targetChildIdx $data(targetChildIdx)
if {$targetChildIdx == 0} {
set targetParentKey [lindex $data(keyList) $data(targetRow)]
#
# The first expand invocation below is necessary in
# case the target node has already children, while
# the second one is needed in the opposite case.
#
::$win expand $targetParentKey -partly
::$win move $sourceKey $targetParentKey $targetChildIdx
::$win expand $targetParentKey -partly
} else {
set targetParentKey [::$win parentkey $data(targetRow)]
set targetChildIdx [::$win childindex $data(targetRow)]
::$win move $sourceKey $targetParentKey $targetChildIdx
}
}
event generate $win <<TablelistRowMoved>>
unset data(targetRow)
unset data(targetChildIdx)
} else {
switch $data(-selecttype) {
row { ::$win activate $row }
cell { ::$win activatecell $row,$col }
}
}
} else {
switch $data(-selecttype) {
row { ::$win activate $row }
cell { ::$win activatecell $row,$col }
}
}
}
#------------------------------------------------------------------------------
# tablelist::condEvalInvokeCmd
#
# This procedure is invoked when mouse button 1 is released in the body of a
# tablelist widget win or in one of its separators. If interactive cell
# editing is in progress in a column whose associated edit window has an invoke
# command that hasn't yet been called in the current edit session, then the
# procedure evaluates that command.
#------------------------------------------------------------------------------
proc tablelist::condEvalInvokeCmd win {
#
# This is an "after 100" callback; check whether the window exists
#
if {![winfo exists $win]} {
return ""
}
upvar ::tablelist::ns${win}::data data
if {$data(editCol) < 0} {
return ""
}
variable editWin
set name [getEditWindow $win $data(editRow) $data(editCol)]
if {[string compare $editWin($name-invokeCmd) ""] == 0 || $data(invoked)} {
return ""
}
#
# Return if both <Button-1> and <ButtonRelease-1> occurred in the
# temporary embedded widget used for interactive cell editing
#
variable priv
if {$priv(clickedInEditWin) && $priv(releasedInEditWin)} {
return ""
}
#
# Return if the edit window is an editable combobox widget
#
set w $data(bodyFrEd)
switch [winfo class $w] {
TCombobox {
if {[string compare [$w cget -state] "normal"] == 0} {
return ""
}
}
ComboBox -
Combobox {
if {[$w cget -editable]} {
return ""
}
}
}
#
# Evaluate the edit window's invoke command
#
update
if {![winfo exists $w]} { ;# because of update
return ""
}
eval [strMap {"%W" "$w"} $editWin($name-invokeCmd)]
set data(invoked) 1
}
#------------------------------------------------------------------------------
# tablelist::cancelMove
#
# This procedure is invoked to process <Escape> events in the top-level window
# containing the tablelist widget win during a row move operation. It cancels
# the action in progress.
#------------------------------------------------------------------------------
proc tablelist::cancelMove win {
upvar ::tablelist::ns${win}::data data
if {![info exists data(sourceRow)]} {
return ""
}
unset data(sourceRow)
unset data(sourceEndRow)
unset data(sourceDescCount)
unset data(sourceParentKey)
unset data(sourceParentRow)
unset data(sourceParentEndRow)
catch {unset data(targetRow)}
catch {unset data(targetChildIdx)}
bind [winfo toplevel $win] <Escape> $data(topEscBinding)
$data(body) configure -cursor $data(-cursor)
place forget $data(rowGap)
}
#------------------------------------------------------------------------------
# tablelist::beginExtend
#
# This procedure is typically invoked on shift-button-1 presses in the body of
# a tablelist widget or in one of its separators. It begins the process of
# extending a selection in the widget. Its exact behavior depends on the
# selection mode currently in effect for the widget.
#------------------------------------------------------------------------------
proc tablelist::beginExtend {win row col} {
if {[string compare [::$win cget -selectmode] "extended"] != 0} {
return ""
}
if {[::$win selection includes anchor]} {
motion $win $row $col
} else {
beginSelect $win $row $col
}
}
#------------------------------------------------------------------------------
# tablelist::beginToggle
#
# This procedure is typically invoked on control-button-1 presses in the body
# of a tablelist widget or in one of its separators. It begins the process of
# toggling a selection in the widget. Its exact behavior depends on the
# selection mode currently in effect for the widget.
#------------------------------------------------------------------------------
proc tablelist::beginToggle {win row col} {
upvar ::tablelist::ns${win}::data data
if {[string compare $data(-selectmode) "extended"] != 0} {
return ""
}
variable priv
switch $data(-selecttype) {
row {
set priv(selection) [::$win curselection]
set priv(prevRow) $row
::$win selection anchor $row
if {[::$win selection includes $row]} {
::$win selection clear $row
} else {
::$win selection set $row
}
}
cell {
set priv(selection) [::$win curcellselection]
set priv(prevRow) $row
set priv(prevCol) $col
::$win cellselection anchor $row,$col
if {[::$win cellselection includes $row,$col]} {
::$win cellselection clear $row,$col
} else {
::$win cellselection set $row,$col
}
}
}
event generate $win <<TablelistSelect>>
}
#------------------------------------------------------------------------------
# tablelist::condEditActiveCell
#
# This procedure is invoked whenever Return or KP_Enter is pressed in the body
# of a tablelist widget. If the selection type is cell and the active cell is
# editable then the procedure starts the interactive editing in that cell.
#------------------------------------------------------------------------------
proc tablelist::condEditActiveCell win {
upvar ::tablelist::ns${win}::data data
if {[string compare $data(-selecttype) "cell"] != 0 ||
[firstViewableRow $win] < 0 || [firstViewableCol $win] < 0} {
return ""
}
set row $data(activeRow)
set col $data(activeCol)
if {[isCellEditable $win $row $col]} {
doEditCell $win $row $col 0
}
}
#------------------------------------------------------------------------------
# tablelist::plusMinus
#
# Partially expands or collapses the active row if possible.
#------------------------------------------------------------------------------
proc tablelist::plusMinus {win keysym} {
upvar ::tablelist::ns${win}::data data
set row $data(activeRow)
set col $data(treeCol)
set key [lindex $data(keyList) $row]
set op ""
if {[info exists data($key,$col-indent)]} {
set indentLabel $data(body).ind_$key,$col
set imgName [$indentLabel cget -image]
if {[regexp {^tablelist_(.+)_(collapsed|expanded).*Img([0-9]+)$} \
$imgName dummy treeStyle state depth]} {
if {[string compare $keysym "plus"] == 0 &&
[string compare $state "collapsed"] == 0} {
set op "expand"
} elseif {[string compare $keysym "minus"] == 0 &&
[string compare $state "expanded"] == 0} {
set op "collapse"
}
}
}
if {[string compare $op ""] != 0} {
#
# Save the current vertical position
#
set topRow [expr {int([$data(body) index @0,0]) - 1}]
#
# Toggle the state of the expand/collapse control
#
::$win $op $row -partly
#
# Restore the saved vertical position
#
$data(body) yview $topRow
updateViewWhenIdle $win
}
}
#------------------------------------------------------------------------------
# tablelist::nextPrevCell
#
# Does nothing unless the selection type is cell; in this case it moves the
# location cursor (active element) to the next or previous element, and changes
# the selection if we are in browse or extended selection mode.
#------------------------------------------------------------------------------
proc tablelist::nextPrevCell {win amount} {
upvar ::tablelist::ns${win}::data data
switch $data(-selecttype) {
row {
# Nothing
}
cell {
if {$data(editRow) >= 0} {
return -code break ""
}
set row $data(activeRow)
set col $data(activeCol)
set oldRow $row
set oldCol $col
while 1 {
incr col $amount
if {$col < 0} {
incr row $amount
if {$row < 0} {
set row $data(lastRow)
}
set col $data(lastCol)
} elseif {$col > $data(lastCol)} {
incr row $amount
if {$row > $data(lastRow)} {
set row 0
}
set col 0
}
if {$row == $oldRow && $col == $oldCol} {
return -code break ""
} elseif {[isRowViewable $win $row] && !$data($col-hide)} {
condChangeSelection $win $row $col
return -code break ""
}
}
}
}
}
#------------------------------------------------------------------------------
# tablelist::upDown
#
# Moves the location cursor (active item or element) up or down by one line,
# and changes the selection if we are in browse or extended selection mode.
#------------------------------------------------------------------------------
proc tablelist::upDown {win amount} {
upvar ::tablelist::ns${win}::data data
if {$data(editRow) >= 0} {
return ""
}
switch $data(-selecttype) {
row {
set row $data(activeRow)
set col -1
}
cell {
set row $data(activeRow)
set col $data(activeCol)
}
}
while 1 {
incr row $amount
if {$row < 0 || $row > $data(lastRow)} {
return ""
} elseif {[isRowViewable $win $row]} {
condChangeSelection $win $row $col
return ""
}
}
}
#------------------------------------------------------------------------------
# tablelist::leftRight
#
# Partially expands or collapses the active row if possible. Otherwise, if the
# tablelist widget's selection type is "row" then this procedure scrolls the
# widget's view left or right by the width of the character "0". Otherwise it
# moves the location cursor (active element) left or right by one column, and
# changes the selection if we are in browse or extended selection mode.
#------------------------------------------------------------------------------
proc tablelist::leftRight {win amount} {
upvar ::tablelist::ns${win}::data data
set row $data(activeRow)
set col $data(treeCol)
set key [lindex $data(keyList) $row]
set op ""
if {[info exists data($key,$col-indent)]} {
set indentLabel $data(body).ind_$key,$col
set imgName [$indentLabel cget -image]
if {[regexp {^tablelist_(.+)_(collapsed|expanded).*Img([0-9]+)$} \
$imgName dummy treeStyle state depth]} {
if {$amount > 0 && [string compare $state "collapsed"] == 0} {
set op "expand"
} elseif {$amount < 0 && [string compare $state "expanded"] == 0} {
set op "collapse"
}
}
}
if {[string compare $op ""] == 0} {
switch $data(-selecttype) {
row {
::$win xview scroll $amount units
}
cell {
if {$data(editRow) >= 0} {
return ""
}
set col $data(activeCol)
while 1 {
incr col $amount
if {$col < 0 || $col > $data(lastCol)} {
return ""
} elseif {!$data($col-hide)} {
condChangeSelection $win $row $col
return ""
}
}
}
}
} else {
#
# Save the current vertical position
#
set topRow [expr {int([$data(body) index @0,0]) - 1}]
#
# Toggle the state of the expand/collapse control
#
::$win $op $row -partly
#
# Restore the saved vertical position
#
$data(body) yview $topRow
updateViewWhenIdle $win
}
}
#------------------------------------------------------------------------------
# tablelist::priorNext
#
# Scrolls the tablelist view up or down by one page.
#------------------------------------------------------------------------------
proc tablelist::priorNext {win amount} {
upvar ::tablelist::ns${win}::data data
if {$data(editRow) >= 0} {
return ""
}
::$win yview scroll $amount pages
::$win activate @0,0
}
#------------------------------------------------------------------------------
# tablelist::homeEnd
#
# If selecttype is row then the procedure scrolls the tablelist widget
# horizontally to its left or right edge. Otherwise it sets the location
# cursor (active element) to the first/last element of the active row, selects
# that element, and deselects everything else in the widget.
#------------------------------------------------------------------------------
proc tablelist::homeEnd {win keysym} {
upvar ::tablelist::ns${win}::data data
switch $data(-selecttype) {
row {
switch $keysym {
Home { ::$win xview moveto 0 }
End { ::$win xview moveto 1 }
}
}
cell {
set row $data(activeRow)
switch $keysym {
Home { set col [firstViewableCol $win] }
End { set col [ lastViewableCol $win] }
}
changeSelection $win $row $col
}
}
}
#------------------------------------------------------------------------------
# tablelist::firstLast
#
# Sets the location cursor (active item or element) to the first/last item or
# element in the tablelist widget, selects that item or element, and deselects
# everything else in the widget.
#------------------------------------------------------------------------------
proc tablelist::firstLast {win target} {
switch $target {
first {
set row [firstViewableRow $win]
set col [firstViewableCol $win]
}
last {
set row [lastViewableRow $win]
set col [lastViewableCol $win]
}
}
changeSelection $win $row $col
}
#------------------------------------------------------------------------------
# tablelist::extendUpDown
#
# Does nothing unless we are in extended selection mode; in this case it moves
# the location cursor (active item or element) up or down by one line, and
# extends the selection to that point.
#------------------------------------------------------------------------------
proc tablelist::extendUpDown {win amount} {
upvar ::tablelist::ns${win}::data data
if {[string compare $data(-selectmode) "extended"] != 0} {
return ""
}
switch $data(-selecttype) {
row {
set row $data(activeRow)
while 1 {
incr row $amount
if {$row < 0 || $row > $data(lastRow)} {
return ""
} elseif {[isRowViewable $win $row]} {
::$win activate $row
::$win see active
motion $win $data(activeRow) -1
return ""
}
}
}
cell {
set row $data(activeRow)
set col $data(activeCol)
while 1 {
incr row $amount
if {$row < 0 || $row > $data(lastRow)} {
return ""
} elseif {[isRowViewable $win $row]} {
::$win activatecell $row,$col
::$win seecell active
motion $win $data(activeRow) $data(activeCol)
return ""
}
}
}
}
}
#------------------------------------------------------------------------------
# tablelist::extendLeftRight
#
# Does nothing unless we are in extended selection mode and the selection type
# is cell; in this case it moves the location cursor (active element) left or
# right by one column, and extends the selection to that point.
#------------------------------------------------------------------------------
proc tablelist::extendLeftRight {win amount} {
upvar ::tablelist::ns${win}::data data
if {[string compare $data(-selectmode) "extended"] != 0} {
return ""
}
switch $data(-selecttype) {
row {
# Nothing
}
cell {
set row $data(activeRow)
set col $data(activeCol)
while 1 {
incr col $amount
if {$col < 0 || $col > $data(lastCol)} {
return ""
} elseif {!$data($col-hide)} {
::$win activatecell $row,$col
::$win seecell active
motion $win $data(activeRow) $data(activeCol)
return ""
}
}
}
}
}
#------------------------------------------------------------------------------
# tablelist::extendToHomeEnd
#
# Does nothing unless the selection mode is multiple or extended and the
# selection type is cell; in this case it moves the location cursor (active
# element) to the first/last element of the active row, and, if we are in
# extended mode, it extends the selection to that point.
#------------------------------------------------------------------------------
proc tablelist::extendToHomeEnd {win keysym} {
upvar ::tablelist::ns${win}::data data
switch $data(-selecttype) {
row {
# Nothing
}
cell {
set row $data(activeRow)
switch $keysym {
Home { set col [firstViewableCol $win] }
End { set col [ lastViewableCol $win] }
}
switch -- $data(-selectmode) {
multiple {
::$win activatecell $row,$col
::$win seecell $row,$col
}
extended {
::$win activatecell $row,$col
::$win seecell $row,$col
if {[::$win selection includes anchor]} {
motion $win $row $col
}
}
}
}
}
}
#------------------------------------------------------------------------------
# tablelist::extendToFirstLast
#
# Does nothing unless the selection mode is multiple or extended; in this case
# it moves the location cursor (active item or element) to the first/last item
# or element in the tablelist widget, and, if we are in extended mode, it
# extends the selection to that point.
#------------------------------------------------------------------------------
proc tablelist::extendToFirstLast {win target} {
switch $target {
first {
set row [firstViewableRow $win]
set col [firstViewableCol $win]
}
last {
set row [lastViewableRow $win]
set col [lastViewableCol $win]
}
}
upvar ::tablelist::ns${win}::data data
switch $data(-selecttype) {
row {
switch -- $data(-selectmode) {
multiple {
::$win activate $row
::$win see $row
}
extended {
::$win activate $row
::$win see $row
if {[::$win selection includes anchor]} {
motion $win $row -1
}
}
}
}
cell {
switch -- $data(-selectmode) {
multiple {
::$win activatecell $row,$col
::$win seecell $row,$col
}
extended {
::$win activatecell $row,$col
::$win seecell $row,$col
if {[::$win selection includes anchor]} {
motion $win $row $col
}
}
}
}
}
}
#------------------------------------------------------------------------------
# tablelist::cancelSelection
#
# This procedure is invoked to cancel an extended selection in progress. If
# there is an extended selection in progress, it restores all of the items or
# elements between the active one and the anchor to their previous selection
# state.
#------------------------------------------------------------------------------
proc tablelist::cancelSelection win {
upvar ::tablelist::ns${win}::data data
if {[string compare $data(-selectmode) "extended"] != 0} {
return ""
}
variable priv
switch $data(-selecttype) {
row {
set first $data(anchorRow)
set last $priv(prevRow)
if {[string compare $last ""] == 0} {
return ""
}
if {$last < $first} {
set tmp $first
set first $last
set last $tmp
}
::$win selection clear $first $last
for {set row $first} {$row <= $last} {incr row} {
if {[lsearch -exact $priv(selection) $row] >= 0} {
::$win selection set $row
}
}
event generate $win <<TablelistSelect>>
}
cell {
set firstRow $data(anchorRow)
set firstCol $data(anchorCol)
set lastRow $priv(prevRow)
set lastCol $priv(prevCol)
if {[string compare $lastRow ""] == 0 ||
[string compare $lastCol ""] == 0} {
return ""
}
if {$lastRow < $firstRow} {
set tmp $firstRow
set firstRow $lastRow
set lastRow $tmp
}
if {$lastCol < $firstCol} {
set tmp $firstCol
set firstCol $lastCol
set lastCol $tmp
}
::$win cellselection clear $firstRow,$firstCol $lastRow,$lastCol
for {set row $firstRow} {$row <= $lastRow} {incr row} {
for {set col $firstCol} {$col <= $lastCol} {incr col} {
if {[lsearch -exact $priv(selection) $row,$col] >= 0} {
::$win cellselection set $row,$col
}
}
}
event generate $win <<TablelistSelect>>
}
}
}
#------------------------------------------------------------------------------
# tablelist::selectAll
#
# This procedure is invoked to handle the "select all" operation. For single
# and browse mode, it just selects the active item or element. Otherwise it
# selects everything in the widget.
#------------------------------------------------------------------------------
proc tablelist::selectAll win {
upvar ::tablelist::ns${win}::data data
switch $data(-selecttype) {
row {
if {[string compare $data(-selectmode) "single"] == 0 ||
[string compare $data(-selectmode) "browse"] == 0} {
::$win selection clear 0 end
::$win selection set active
} else {
::$win selection set 0 end
}
}
cell {
if {[string compare $data(-selectmode) "single"] == 0 ||
[string compare $data(-selectmode) "browse"] == 0} {
::$win cellselection clear 0,0 end
::$win cellselection set active
} else {
::$win cellselection set 0,0 end
}
}
}
event generate $win <<TablelistSelect>>
}
#------------------------------------------------------------------------------
# tablelist::firstViewableRow
#
# Returns the index of the first viewable row of the tablelist widget win.
#------------------------------------------------------------------------------
proc tablelist::firstViewableRow win {
upvar ::tablelist::ns${win}::data data
for {set row 0} {$row < $data(itemCount)} {incr row} {
if {[isRowViewable $win $row]} {
return $row
}
}
return -1
}
#------------------------------------------------------------------------------
# tablelist::lastViewableRow
#
# Returns the index of the last viewable row of the tablelist widget win.
#------------------------------------------------------------------------------
proc tablelist::lastViewableRow win {
upvar ::tablelist::ns${win}::data data
for {set row $data(lastRow)} {$row >= 0} {incr row -1} {
if {[isRowViewable $win $row]} {
return $row
}
}
return -1
}
#------------------------------------------------------------------------------
# tablelist::firstViewableCol
#
# Returns the index of the first non-hidden column of the tablelist widget win.
#------------------------------------------------------------------------------
proc tablelist::firstViewableCol win {
upvar ::tablelist::ns${win}::data data
for {set col 0} {$col < $data(colCount)} {incr col} {
if {!$data($col-hide)} {
return $col
}
}
return -1
}
#------------------------------------------------------------------------------
# tablelist::lastViewableCol
#
# Returns the index of the last non-hidden column of the tablelist widget win.
#------------------------------------------------------------------------------
proc tablelist::lastViewableCol win {
upvar ::tablelist::ns${win}::data data
for {set col $data(lastCol)} {$col >= 0} {incr col -1} {
if {!$data($col-hide)} {
return $col
}
}
return -1
}
#------------------------------------------------------------------------------
# tablelist::condChangeSelection
#
# Activates the given item or element, and selects it exclusively if we are in
# browse or extended selection mode.
#------------------------------------------------------------------------------
proc tablelist::condChangeSelection {win row col} {
upvar ::tablelist::ns${win}::data data
switch $data(-selecttype) {
row {
::$win activate $row
::$win see active
switch -- $data(-selectmode) {
browse {
::$win selection clear 0 end
::$win selection set active
event generate $win <<TablelistSelect>>
}
extended {
::$win selection clear 0 end
::$win selection set active
::$win selection anchor active
variable priv
set priv(selection) {}
set priv(prevRow) $data(activeRow)
event generate $win <<TablelistSelect>>
}
}
}
cell {
::$win activatecell $row,$col
::$win seecell active
switch -- $data(-selectmode) {
browse {
::$win cellselection clear 0,0 end
::$win cellselection set active
event generate $win <<TablelistSelect>>
}
extended {
::$win cellselection clear 0,0 end
::$win cellselection set active
::$win cellselection anchor active
variable priv
set priv(selection) {}
set priv(prevRow) $data(activeRow)
set priv(prevCol) $data(activeCol)
event generate $win <<TablelistSelect>>
}
}
}
}
}
#------------------------------------------------------------------------------
# tablelist::changeSelection
#
# Activates the given item or element and selects it exclusively.
#------------------------------------------------------------------------------
proc tablelist::changeSelection {win row col} {
upvar ::tablelist::ns${win}::data data
switch $data(-selecttype) {
row {
::$win activate $row
::$win see active
::$win selection clear 0 end
::$win selection set active
}
cell {
::$win activatecell $row,$col
::$win seecell active
::$win cellselection clear 0,0 end
::$win cellselection set active
}
}
event generate $win <<TablelistSelect>>
}
#
# Binding tags TablelistLabel, TablelistSubLabel, and TablelistArrow
# ==================================================================
#
#------------------------------------------------------------------------------
# tablelist::defineTablelistSubLabel
#
# Defines the binding tag TablelistSubLabel (for sublabels of tablelist labels)
# to have the same events as TablelistLabel and the binding scripts obtained
# from those of TablelistLabel by replacing the widget %W with the containing
# label as well as the %x and %y fields with the corresponding coordinates
# relative to that label.
#------------------------------------------------------------------------------
proc tablelist::defineTablelistSubLabel {} {
foreach event [bind TablelistLabel] {
set script [strMap {
"%W" "$tablelist::W" "%x" "$tablelist::x" "%y" "$tablelist::y"
} [bind TablelistLabel $event]]
bind TablelistSubLabel $event [format {
set tablelist::W \
[string range %%W 0 [expr {[string length %%W] - 4}]]
set tablelist::x \
[expr {%%x + [winfo x %%W] - [winfo x $tablelist::W]}]
set tablelist::y \
[expr {%%y + [winfo y %%W] - [winfo y $tablelist::W]}]
%s
} $script]
}
}
#------------------------------------------------------------------------------
# tablelist::defineTablelistArrow
#
# Defines the binding tag TablelistArrow (for sort arrows) to have the same
# events as TablelistLabel and the binding scripts obtained from those of
# TablelistLabel by replacing the widget %W with the containing label as well
# as the %x and %y fields with the corresponding coordinates relative to that
# label.
#------------------------------------------------------------------------------
proc tablelist::defineTablelistArrow {} {
foreach event [bind TablelistLabel] {
set script [strMap {
"%W" "$tablelist::W" "%x" "$tablelist::x" "%y" "$tablelist::y"
} [bind TablelistLabel $event]]
bind TablelistArrow $event [format {
set tablelist::W \
[winfo parent %%W].l[string range [winfo name %%W] 1 end]
set tablelist::x \
[expr {%%x + [winfo x %%W] - [winfo x $tablelist::W]}]
set tablelist::y \
[expr {%%y + [winfo y %%W] - [winfo y $tablelist::W]}]
%s
} $script]
}
}
#------------------------------------------------------------------------------
# tablelist::labelEnter
#
# This procedure is invoked when the mouse pointer enters the header label w of
# a tablelist widget, or is moving within that label. It updates the cursor,
# displays the tooltip, and activates or deactivates the label, depending on
# whether the pointer is on its right border or not.
#------------------------------------------------------------------------------
proc tablelist::labelEnter {w X Y x} {
parseLabelPath $w win col
upvar ::tablelist::ns${win}::data data
configLabel $w -cursor $data(-cursor)
if {[string compare $data(-tooltipaddcommand) ""] != 0 &&
[string compare $data(-tooltipdelcommand) ""] != 0 &&
$col != $data(prevCol)} {
#
# Display the tooltip corresponding to this label
#
set data(prevCol) $col
set focus [focus -displayof $win]
if {[string compare $focus ""] == 0 ||
[string first $win $focus] != 0 ||
[string compare [winfo toplevel $focus] \
[winfo toplevel $win]] == 0} {
uplevel #0 $data(-tooltipaddcommand) [list $win -1 $col]
event generate $win <Leave>
event generate $win <Enter> -rootx $X -rooty $Y
}
}
if {$data(isDisabled)} {
return ""
}
if {[inResizeArea $w $x col] &&
$data(-resizablecolumns) && $data($col-resizable)} {
configLabel $w -cursor $data(-resizecursor)
configLabel $w -active 0
} else {
configLabel $w -active 1
}
}
#------------------------------------------------------------------------------
# tablelist::labelLeave
#
# This procedure is invoked when the mouse pointer leaves the header label w of
# a tablelist widget. It removes the tooltip and deactivates the label.
#------------------------------------------------------------------------------
proc tablelist::labelLeave {w X x y} {
parseLabelPath $w win col
upvar ::tablelist::ns${win}::data data
#
# The following code is needed because the event
# can also occur in a widget placed into the label
#
set hdrX [winfo rootx $data(hdr)]
if {$X >= $hdrX && $X < $hdrX + [winfo width $data(hdr)] &&
$x >= 1 && $x < [winfo width $w] - 1 &&
$y >= 0 && $y < [winfo height $w]} {
return ""
}
if {[string compare $data(-tooltipaddcommand) ""] != 0 &&
[string compare $data(-tooltipdelcommand) ""] != 0} {
#
# Remove the tooltip, if any
#
event generate $win <Leave>
catch {uplevel #0 $data(-tooltipdelcommand) [list $win]}
set data(prevCol) -1
}
if {$data(isDisabled)} {
return ""
}
configLabel $w -active 0
}
#------------------------------------------------------------------------------
# tablelist::labelB1Down
#
# This procedure is invoked when mouse button 1 is pressed in the header label
# w of a tablelist widget. If the pointer is on the right border of the label
# then the procedure records its x-coordinate relative to the label, the width
# of the column, and some other data needed later. Otherwise it saves the
# label's relief so it can be restored later, and changes the relief to sunken.
#------------------------------------------------------------------------------
proc tablelist::labelB1Down {w x shiftPressed} {
parseLabelPath $w win col
upvar ::tablelist::ns${win}::data data
if {$data(isDisabled) ||
[info exists data(colBeingResized)]} { ;# resize operation in progress
return ""
}
set data(labelClicked) 1
set data(X) [expr {[winfo rootx $w] + $x}]
set data(shiftPressed) $shiftPressed
if {[inResizeArea $w $x col] &&
$data(-resizablecolumns) && $data($col-resizable)} {
set data(colBeingResized) $col
set data(colResized) 0
set w $data(body)
set topTextIdx [$w index @0,0]
set btmTextIdx [$w index @0,[expr {[winfo height $w] - 1}]]
$w tag add visibleLines "$topTextIdx linestart" "$btmTextIdx lineend"
set data(topRow) [expr {int($topTextIdx) - 1}]
set data(btmRow) [expr {int($btmTextIdx) - 1}]
set w $data(hdrTxtFrLbl)$col
set labelWidth [winfo width $w]
set data(oldStretchedColWidth) [expr {$labelWidth - 2*$data(charWidth)}]
set data(oldColDelta) $data($col-delta)
set data(configColWidth) [lindex $data(-columns) [expr {3*$col}]]
if {[lsearch -exact $data(arrowColList) $col] >= 0} {
set canvasWidth $data(arrowWidth)
if {[llength $data(arrowColList)] > 1} {
incr canvasWidth 6
}
set data(minColWidth) $canvasWidth
} elseif {$data($col-wrap)} {
set data(minColWidth) $data(charWidth)
} else {
set data(minColWidth) 0
}
incr data(minColWidth)
set data(focus) [focus -displayof $win]
set topWin [winfo toplevel $win]
focus $topWin
set data(topEscBinding) [bind $topWin <Escape>]
bind $topWin <Escape> \
[list tablelist::escape [strMap {"%" "%%"} $win] $col]
} else {
set data(inClickedLabel) 1
set data(relief) [$w cget -relief]
if {[info exists data($col-labelcommand)] ||
[string compare $data(-labelcommand) ""] != 0} {
set data(changeRelief) 1
configLabel $w -relief sunken -pressed 1
} else {
set data(changeRelief) 0
}
if {$data(-movablecolumns)} {
set data(focus) [focus -displayof $win]
set topWin [winfo toplevel $win]
focus $topWin
set data(topEscBinding) [bind $topWin <Escape>]
bind $topWin <Escape> \
[list tablelist::escape [strMap {"%" "%%"} $win] $col]
}
}
}
#------------------------------------------------------------------------------
# tablelist::labelB1Motion
#
# This procedure is invoked to process mouse motion events in the header label
# w of a tablelist widget while button 1 is down. If this event occured during
# a column resize operation then the procedure computes the difference between
# the pointer's new x-coordinate relative to that label and the one recorded by
# the last invocation of labelB1Down, and adjusts the width of the
# corresponding column accordingly. Otherwise a horizontal scrolling is
# performed if needed, and the would-be target position of the clicked label is
# visualized if the columns are movable.
#------------------------------------------------------------------------------
proc tablelist::labelB1Motion {w X x y} {
parseLabelPath $w win col
upvar ::tablelist::ns${win}::data data
if {!$data(labelClicked)} {
return ""
}
if {[info exists data(colBeingResized)]} { ;# resize operation in progress
set width [expr {$data(oldStretchedColWidth) + $X - $data(X)}]
if {$width >= $data(minColWidth)} {
set col $data(colBeingResized)
set data(colResized) 1
set idx [expr {3*$col}]
set data(-columns) [lreplace $data(-columns) $idx $idx -$width]
set idx [expr {2*$col}]
set data(colList) [lreplace $data(colList) $idx $idx $width]
set data($col-lastStaticWidth) $width
set data($col-delta) 0
redisplayCol $win $col $data(topRow) $data(btmRow)
#
# Handle the case that the bottom row has become
# greater (due to the redisplayCol invocation)
#
set b $data(body)
set btmTextIdx [$b index @0,$data(btmY)]
set btmRow [expr {int($btmTextIdx) - 1}]
while {$btmRow > $data(btmRow)} {
$b tag add visibleLines [expr {double($data(btmRow) + 2)}] \
"$btmTextIdx lineend"
incr data(btmRow)
redisplayCol $win $col $data(btmRow) $btmRow
set data(btmRow) $btmRow
set btmTextIdx [$b index @0,$data(btmY)]
set btmRow [expr {int($btmTextIdx) - 1}]
}
#
# Handle the case that the top row has become
# less (due to the redisplayCol invocation)
#
set topTextIdx [$b index @0,0]
set topRow [expr {int($topTextIdx) - 1}]
while {$topRow < $data(topRow)} {
$b tag add visibleLines "$topTextIdx linestart" \
"[expr {double($data(topRow))}] lineend"
incr data(topRow) -1
redisplayCol $win $col $topRow $data(topRow)
set data(topRow) $topRow
set topTextIdx [$b index @0,0]
set topRow [expr {int($topTextIdx) - 1}]
}
adjustColumns $win {} 0
adjustElidedText $win
updateColors $win
updateVScrlbarWhenIdle $win
}
} else {
#
# Scroll the window horizontally if needed
#
set hdrX [winfo rootx $data(hdr)]
if {$data(-titlecolumns) == 0 || ![winfo viewable $data(sep)]} {
set leftX $hdrX
} else {
set leftX [expr {[winfo rootx $data(sep)] + 1}]
}
set rightX [expr {$hdrX + [winfo width $data(hdr)]}]
set scroll 0
if {($X >= $rightX && $data(X) < $rightX) ||
($X < $leftX && $data(X) >= $leftX)} {
set scroll 1
} elseif {($X < $rightX && $data(X) >= $rightX) ||
($X >= $leftX && $data(X) < $leftX)} {
after cancel $data(afterId)
set data(afterId) ""
}
set data(X) $X
if {$scroll} {
horizAutoScan $win
}
if {$x >= 1 && $x < [winfo width $w] - 1 &&
$y >= 0 && $y < [winfo height $w]} {
#
# The following code is needed because the event
# can also occur in a widget placed into the label
#
set data(inClickedLabel) 1
configLabel $w -cursor $data(-cursor)
$data(hdrTxtFrCanv)$col configure -cursor $data(-cursor)
if {$data(changeRelief)} {
configLabel $w -relief sunken -pressed 1
}
place forget $data(colGap)
} else {
#
# The following code is needed because the event
# can also occur in a widget placed into the label
#
set data(inClickedLabel) 0
configLabel $w -relief $data(relief) -pressed 0
if {$data(-movablecolumns)} {
#
# Get the target column index
#
set contW [winfo containing -displayof $w $X [winfo rooty $w]]
if {[parseLabelPath $contW dummy targetCol]} {
set master $contW
if {$X < [winfo rootx $contW] + [winfo width $contW]/2} {
set relx 0.0
} else {
incr targetCol
set relx 1.0
}
} elseif {[string compare $contW $data(colGap)] == 0} {
set targetCol $data(targetCol)
set master $data(master)
set relx $data(relx)
} elseif {$X >= $rightX || $X >= [winfo rootx $w]} {
for {set targetCol $data(lastCol)} {$targetCol >= 0} \
{incr targetCol -1} {
if {!$data($targetCol-hide)} {
break
}
}
incr targetCol
set master $data(hdrTxtFr)
set relx 1.0
} else {
for {set targetCol 0} {$targetCol < $data(colCount)} \
{incr targetCol} {
if {!$data($targetCol-hide)} {
break
}
}
set master $data(hdrTxtFr)
set relx 0.0
}
#
# Visualize the would-be target position
# of the clicked label if appropriate
#
if {$targetCol == $col || $targetCol == $col + 1 ||
($data(-protecttitlecolumns) &&
(($col >= $data(-titlecolumns) &&
$targetCol < $data(-titlecolumns)) ||
($col < $data(-titlecolumns) &&
$targetCol > $data(-titlecolumns))))} {
catch {unset data(targetCol)}
configLabel $w -cursor $data(-cursor)
$data(hdrTxtFrCanv)$col configure -cursor $data(-cursor)
place forget $data(colGap)
} else {
set data(targetCol) $targetCol
set data(master) $master
set data(relx) $relx
configLabel $w -cursor $data(-movecolumncursor)
$data(hdrTxtFrCanv)$col configure -cursor \
$data(-movecolumncursor)
place $data(colGap) -in $master -anchor n \
-bordermode outside \
-relheight 1.0 -relx $relx
}
}
}
}
}
#------------------------------------------------------------------------------
# tablelist::labelB1Enter
#
# This procedure is invoked when the mouse pointer enters the header label w of
# a tablelist widget while mouse button 1 is down. If the label was not
# previously clicked then nothing happens. Otherwise, if this event occured
# during a column resize operation then the procedure updates the mouse cursor
# accordingly. Otherwise it changes the label's relief to sunken.
#------------------------------------------------------------------------------
proc tablelist::labelB1Enter w {
parseLabelPath $w win col
upvar ::tablelist::ns${win}::data data
if {!$data(labelClicked)} {
return ""
}
configLabel $w -cursor $data(-cursor)
if {[info exists data(colBeingResized)]} { ;# resize operation in progress
configLabel $w -cursor $data(-resizecursor)
} else {
set data(inClickedLabel) 1
if {$data(changeRelief)} {
configLabel $w -relief sunken -pressed 1
}
}
}
#------------------------------------------------------------------------------
# tablelist::labelB1Leave
#
# This procedure is invoked when the mouse pointer leaves the header label w of
# a tablelist widget while mouse button 1 is down. If the label was not
# previously clicked then nothing happens. Otherwise, if no column resize
# operation is in progress then the procedure restores the label's relief, and,
# if the columns are movable, then it changes the mouse cursor, too.
#------------------------------------------------------------------------------
proc tablelist::labelB1Leave {w x y} {
parseLabelPath $w win col
upvar ::tablelist::ns${win}::data data
if {!$data(labelClicked) ||
[info exists data(colBeingResized)]} { ;# resize operation in progress
return ""
}
#
# The following code is needed because the event
# can also occur in a widget placed into the label
#
if {$x >= 1 && $x < [winfo width $w] - 1 &&
$y >= 0 && $y < [winfo height $w]} {
return ""
}
set data(inClickedLabel) 0
configLabel $w -relief $data(relief) -pressed 0
}
#------------------------------------------------------------------------------
# tablelist::labelB1Up
#
# This procedure is invoked when mouse button 1 is released, if it was
# previously clicked in a label of the tablelist widget win. If this event
# occured during a column resize operation then the procedure redisplays the
# column and stretches the stretchable columns. Otherwise, if the mouse button
# was released in the previously clicked label then the procedure restores the
# label's relief and invokes the command specified by the -labelcommand or
# -labelcommand2 configuration option, passing to it the widget name and the
# column number as arguments. Otherwise the column of the previously clicked
# label is moved before the column containing the mouse cursor or to its right,
# if the columns are movable.
#------------------------------------------------------------------------------
proc tablelist::labelB1Up {w X} {
parseLabelPath $w win col
upvar ::tablelist::ns${win}::data data
if {!$data(labelClicked)} {
return ""
}
if {[info exists data(colBeingResized)]} { ;# resize operation in progress
configLabel $w -cursor $data(-cursor)
if {[winfo exists $data(focus)]} {
focus $data(focus)
}
bind [winfo toplevel $win] <Escape> $data(topEscBinding)
set col $data(colBeingResized)
if {$data(colResized)} {
if {$data(-width) <= 0} {
$data(hdr) configure -width $data(hdrPixels)
$data(lb) configure -width \
[expr {$data(hdrPixels) / $data(charWidth)}]
} elseif {[info exists data(stretchableCols)] &&
[lsearch -exact $data(stretchableCols) $col] >= 0} {
set oldColWidth \
[expr {$data(oldStretchedColWidth) - $data(oldColDelta)}]
set stretchedColWidth \
[expr {$data(oldStretchedColWidth) + $X - $data(X)}]
if {$oldColWidth < $data(stretchablePixels) &&
$stretchedColWidth >= $data(minColWidth) &&
$stretchedColWidth < $oldColWidth + $data(delta)} {
#
# Compute the new column width,
# using the following equations:
#
# $colWidth = $stretchedColWidth - $colDelta
# $colDelta / $colWidth =
# ($data(delta) - $colWidth + $oldColWidth) /
# ($data(stretchablePixels) + $colWidth - $oldColWidth)
#
set colWidth [expr {
$stretchedColWidth *
($data(stretchablePixels) - $oldColWidth) /
($data(stretchablePixels) + $data(delta) -
$stretchedColWidth)
}]
if {$colWidth < 1} {
set colWidth 1
}
set idx [expr {3*$col}]
set data(-columns) \
[lreplace $data(-columns) $idx $idx -$colWidth]
set idx [expr {2*$col}]
set data(colList) \
[lreplace $data(colList) $idx $idx $colWidth]
set data($col-delta) [expr {$stretchedColWidth - $colWidth}]
}
}
}
unset data(colBeingResized)
$data(body) tag remove visibleLines 1.0 end
$data(body) tag configure visibleLines -tabs {}
if {$data(colResized)} {
redisplayCol $win $col 0 end
adjustColumns $win {} 0
stretchColumns $win $col
updateColors $win
event generate $win <<TablelistColumnResized>>
}
} else {
if {[info exists data(X)]} {
unset data(X)
after cancel $data(afterId)
set data(afterId) ""
}
if {$data(-movablecolumns)} {
if {[winfo exists $data(focus)]} {
focus $data(focus)
}
bind [winfo toplevel $win] <Escape> $data(topEscBinding)
place forget $data(colGap)
}
if {$data(inClickedLabel)} {
configLabel $w -relief $data(relief) -pressed 0
if {$data(shiftPressed)} {
if {[info exists data($col-labelcommand2)]} {
uplevel #0 $data($col-labelcommand2) [list $win $col]
} elseif {[string compare $data(-labelcommand2) ""] != 0} {
uplevel #0 $data(-labelcommand2) [list $win $col]
}
} else {
if {[info exists data($col-labelcommand)]} {
uplevel #0 $data($col-labelcommand) [list $win $col]
} elseif {[string compare $data(-labelcommand) ""] != 0} {
uplevel #0 $data(-labelcommand) [list $win $col]
}
}
} elseif {$data(-movablecolumns)} {
$data(hdrTxtFrCanv)$col configure -cursor $data(-cursor)
if {[info exists data(targetCol)]} {
moveCol $win $col $data(targetCol)
event generate $win <<TablelistColumnMoved>>
}
catch {unset data(targetCol)}
}
}
set data(labelClicked) 0
}
#------------------------------------------------------------------------------
# tablelist::labelB3Down
#
# This procedure is invoked when mouse button 3 is pressed in the header label
# w of a tablelist widget. If the Shift key was down when this event occured
# then the procedure restores the last static width of the given column;
# otherwise it configures the width of the given column to be just large enough
# to hold all the elements (including the label).
#------------------------------------------------------------------------------
proc tablelist::labelB3Down {w shiftPressed} {
parseLabelPath $w win col
upvar ::tablelist::ns${win}::data data
if {!$data(isDisabled) &&
$data(-resizablecolumns) && $data($col-resizable)} {
if {$shiftPressed} {
doColConfig $col $win -width -$data($col-lastStaticWidth)
} else {
doColConfig $col $win -width 0
}
event generate $win <<TablelistColumnResized>>
}
}
#------------------------------------------------------------------------------
# tablelist::labelDblB1
#
# This procedure is invoked when the header label w of a tablelist widget is
# double-clicked. If the pointer is on the right border of the label then the
# procedure performs the same action as labelB3Down.
#------------------------------------------------------------------------------
proc tablelist::labelDblB1 {w x shiftPressed} {
parseLabelPath $w win col
upvar ::tablelist::ns${win}::data data
if {!$data(isDisabled) && [inResizeArea $w $x col] &&
$data(-resizablecolumns) && $data($col-resizable)} {
if {$shiftPressed} {
doColConfig $col $win -width -$data($col-lastStaticWidth)
} else {
doColConfig $col $win -width 0
}
event generate $win <<TablelistColumnResized>>
}
}
#------------------------------------------------------------------------------
# tablelist::escape
#
# This procedure is invoked to process <Escape> events in the top-level window
# containing the tablelist widget win during a column resize or move operation.
# The procedure cancels the action in progress and, in case of column resizing,
# it restores the initial width of the respective column.
#------------------------------------------------------------------------------
proc tablelist::escape {win col} {
upvar ::tablelist::ns${win}::data data
set w $data(hdrTxtFrLbl)$col
if {[info exists data(colBeingResized)]} { ;# resize operation in progress
configLabel $w -cursor $data(-cursor)
update idletasks
if {![winfo exists $win]} { ;# because of update idletasks
return ""
}
if {[winfo exists $data(focus)]} {
focus $data(focus)
}
bind [winfo toplevel $win] <Escape> $data(topEscBinding)
set data(labelClicked) 0
set col $data(colBeingResized)
set idx [expr {3*$col}]
setupColumns $win [lreplace $data(-columns) $idx $idx \
$data(configColWidth)] 0
redisplayCol $win $col $data(topRow) $data(btmRow)
unset data(colBeingResized)
$data(body) tag remove visibleLines 1.0 end
$data(body) tag configure visibleLines -tabs {}
adjustColumns $win {} 1
updateColors $win
} elseif {!$data(inClickedLabel)} {
configLabel $w -cursor $data(-cursor)
$data(hdrTxtFrCanv)$col configure -cursor $data(-cursor)
if {[winfo exists $data(focus)]} {
focus $data(focus)
}
bind [winfo toplevel $win] <Escape> $data(topEscBinding)
place forget $data(colGap)
catch {unset data(targetCol)}
if {[info exists data(X)]} {
unset data(X)
after cancel $data(afterId)
set data(afterId) ""
}
set data(labelClicked) 0
}
}
#------------------------------------------------------------------------------
# tablelist::horizAutoScan
#
# This procedure is invoked when the mouse leaves the scrollable part of a
# tablelist widget's header frame. It scrolls the header and reschedules
# itself as an after command so that the header continues to scroll until the
# mouse moves back into the window or the mouse button is released.
#------------------------------------------------------------------------------
proc tablelist::horizAutoScan win {
if {![winfo exists $win]} {
return ""
}
upvar ::tablelist::ns${win}::data data
if {![info exists data(X)]} {
return ""
}
set X $data(X)
set hdrX [winfo rootx $data(hdr)]
if {$data(-titlecolumns) == 0 || ![winfo viewable $data(sep)]} {
set leftX $hdrX
} else {
set leftX [expr {[winfo rootx $data(sep)] + 1}]
}
set rightX [expr {$hdrX + [winfo width $data(hdr)]}]
if {$data(-titlecolumns) == 0} {
set units 2
set ms 50
} else {
set units 1
set ms 250
}
if {$X >= $rightX} {
::$win xview scroll $units units
} elseif {$X < $leftX} {
::$win xview scroll -$units units
} else {
return ""
}
set data(afterId) [after $ms [list tablelist::horizAutoScan $win]]
}
#------------------------------------------------------------------------------
# tablelist::inResizeArea
#
# Checks whether the given x coordinate relative to the header label w of a
# tablelist widget is in the resize area of that label or of the one to its
# left.
#------------------------------------------------------------------------------
proc tablelist::inResizeArea {w x colName} {
upvar $colName col
parseLabelPath $w dummy _col
if {$x >= [winfo width $w] - 5} {
set col $_col
return 1
} elseif {$x < 5} {
set X [expr {[winfo rootx $w] - 3}]
set contW [winfo containing -displayof $w $X [winfo rooty $w]]
return [parseLabelPath $contW dummy col]
} else {
return 0
}
}
|