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
|
2013-03-25 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tklib 0.6 ========================
*
2012-10-23 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 5.7.
* COPYRIGHT.txt:
* README.txt:
* scripts/*.tcl: Added the "cellbbox" and "editinfo" subcommands;
adapted the tree styles "ubuntu" and "mint" to the latest Ubuntu
Linux and Linux Mint releases; minor change related to the
ttk::combobox widget used as edit window; increased use of virtual
events; worked around a bug in some earlier Tk versions, related to
checkbuttons without indicator; replaced the "namespace exists"
occurrences with "array exists"; fixed a copy & paste bug related to
embedded windows; fixed a long-standing bug related to the
"cancelediting" subcommand and the "-forceeditendcommand" option;
fixed a long-standing minor bug related to the "-labelbg" column
configuration option in Tablelist_tile; several further improvements.
* scripts/tclIndex: Newly generated.
* ../../examples/*.tcl: Bumped the version number to 5.7; several
improvements.
* CHANGES.txt: Updated to reflect the changes.
* doc/*.html:
* doc/bwidget.png: Updated screenshots.
* doc/mint.png:
* doc/tileWidgets.png:
* doc/ubuntu.png:
2012-04-16 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Fixed a bug related to the "move"
* scripts/tablelistMove.tcl: subcommand.
2012-04-09 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Minor improvements related to Tk and tile
checkbuttons used as edit windows.
2012-04-07 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Small corrections and improvements.
* scripts/tablelistThemes.tcl:
* scripts/tablelistUtil.tcl:
2012-04-05 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Updated to reflect the changes.
* doc/tablelistWidget.html:
* scripts/tablelistBind.tcl: Optimizations related to item insertion
* scripts/tablelistMove.tcl: and sorting.
* scripts/tablelistSort.tcl:
* scripts/tablelistUtil.tcl:
* scripts/tablelistWidget.tcl:
* scripts/tclIndex: Newly generated.
2012-03-24 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Slightly extended.
* scripts/tablelistBind.tcl: Minor improvements.
* scripts/tablelistSort.tcl:
* scripts/tablelistUtil.tcl:
* scripts/tablelistWidget.tcl:
* scripts/tclIndex: Newly generated.
2012-03-10 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 5.6; updated the
* COPYRIGHT.txt: copyright information.
* README.txt:
* ../../examples/*.tcl:
* scripts/*.tcl: Added the tree styles "adwaita", "mint", and "ubuntu";
added the "-windowupdate" cell configuration option; embedded windows
are now hidden during interactive cell editing; extended the support
for the "tileqt" theme to work on KDE 4, too; guarded against the
case that a tablelist widget is deleted and its name is reused for a
widget of a different class; guarded against scripts that start by
destroying all children of the root window; fixed a bug related to
the "move" subcommand; updated the copyright information.
* CHANGES.txt: Updated to reflect the changes; minor improvements.
* doc/*.html:
* doc/adwaita.png: Added screenshots.
* doc/mint.png:
* doc/ubuntu.png:
* doc/ambiance.png: Updated screenshots.
* doc/dust.png:
* doc/dustSand.png:
* doc/radiance.png:
2011-12-14 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistUtil.tcl: Minor improvement related to the
"-labelforeground" option in Tablelist_tile.
2011-12-13 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistConfig.tcl: Improvements related to the header label
* scripts/tablelistUtil.tcl: colors in Tablelist_tile.
2011-12-11 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Slightly modified.
2011-12-10 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistConfig.tcl: A few corrections related to the header
* scripts/tablelistUtil.tcl: label colors in Tablelist_tile.
2011-12-10 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Removed the "-labelbackground" option
* scripts/tablelistConfig.tcl: from Tablelist_tile.
* scripts/tablelistThemes.tcl:
* scripts/tablelistWidget.tcl:
* scripts/tablelistUtil.tcl: Worked around a tile bug that caused the
column labels in disabled state to no longer appear in the theme-
specific disabled foreground color.
* CHANGES.txt: Updated to reflect the changes.
* doc/tablelist.html:
* doc/tablelistThemes.html:
* doc/tablelistWidget.html:
2011-12-04 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Slightly extended.
2011-12-02 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Minor improvements.
* doc/tablelistWidget.html:
2011-12-01 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistUtil.tcl: Improvements for Mac OS X.
2011-11-28 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 5.5.
* *.txt:
* ../../examples/tablelist/*.tcl: Bumped the version number to 5.5;
better support for native look & feel, especially on Mac OS X.
* scripts/tablelistBind.tcl: Hidden elements are no longer excluded
* scripts/tablelistConfig.tcl: from the selection; added the
* scripts/tablelistEdit.tcl: "cornerpath" and "cornerlabelpath"
* scripts/tablelistImages.tcl: subcommands; added support for Mac OS X
* scripts/tablelistThemes.tcl: 10.7 (Lion); improved a few binding
* scripts/tablelistUtil.tcl: scripts; fixed a bug related to embedded
* scripts/tablelistWidget.tcl: windows.
* doc/tablelist.html: Updated the documentation.
* doc/tablelistWidget.html:
* doc/embeddedWindows.png: Updated screenshot.
2011-09-08 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Improved the check for PNG support in Tk.
* scripts/tablelistWidget.tcl:
2011-09-04 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version
* *.txt: number to 5.4.
* ../../examples/tablelist/browse*.tcl:
* ../../examples/tablelist/bwidget*.tcl:
* ../../examples/tablelist/config*.tcl:
* ../../examples/tablelist/dirViewer*.tcl:
* ../../examples/tablelist/embeddedWindows*.tcl:
* ../../examples/tablelist/iwidgets*.tcl:
* ../../examples/tablelist/miscWidgets*.tcl:
* ../../examples/tablelist/styles*.tcl:
* ../../examples/tablelist/tileWidgets.tcl:
* scripts/tablelistBind.tcl: Added the "-autoscroll" and
* scripts/tablelistConfig.tcl: "-populatecommand" options; added the
* scripts/tablelistMove.tcl: "isexpanded" subcommand; fixed a bug
* scripts/tablelistWidget.tcl: related to the tree style "aqua"; minor
bug fixes.
* scripts/tablelistImages.tcl: New arrow style "flat9x6"; adapted the
tree style "oxygen2" to the look of current KDE 4 versions.
* scripts/tablelistUtil.tcl: Worked around some peculiarities of Tk on
Mac OS X Aqua.
* scripts/tclIndex: Newly generated.
* doc/tablelist.html: Updated the documentation.
* doc/tablelistWidget.html:
* doc/config.png: Updated screenshots.
* doc/dirViewer.png:
* doc/oxygen2.png:
* doc/arrowStyles.png: New picture, composed of screenshots.
2411-07-11 Csaba Nemethi <csaba.nemethi@t-online.de>
* ../../examples/tablelist/styles_tile.tcl: Minor improvements.
2011-07-10 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 5.3.1.
* *.txt:
* doc/tablelist.html:
* scripts/tablelistConfig.tcl: Fixed a bug related to the -hide row
configuration option, introduced in the previous release.
* scripts/tablelistThemes.tcl: Extended the support for the native
* scripts/tablelistWidget.tcl: "Aqua-blue" background for the header
label of the sort column to the Cocoa-based Tk patch levels 8.5.9
and above.
2011-07-02 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: New value "photo7x7" for the -arrowstyle
* scripts/mwutil.tcl: configuration option; various further
* scripts/tablelistConfig.tcl: improvements.
* scripts/tablelistEdit.tcl:
* scripts/tablelistImages.tcl:
* scripts/tablelistSort.tcl:
* scripts/tablelistThemes.tcl:
* scripts/tablelistUtil.tcl:
* scripts/tablelistWidget.tcl:
* scripts/tclIndex: Newly generated.
* doc/tablelistWidget.html: Updated to reflect the changes.
2011-06-28 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistUtil.tcl: Solved some refresh problems on Mac OS X
* scripts/tablelistWidget.tcl: Aqua.
2011-06-27 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistImages.tcl: Further improvements related to Mac OS X
* scripts/tablelistUtil.tcl: Aqua.
* doc/aqua.png: Updated screenshot.
2011-06-26 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Improvements related to Mac OS X Aqua.
* scripts/tablelistConfig.tcl:
* scripts/tablelistImages.tcl:
* scripts/tablelistSort.tcl:
* scripts/tablelistThemes.tcl:
* scripts/tablelistUtil.tcl:
* scripts/tablelistWidget.tcl:
* ../../examples/config.tcl: Changed some colors.
* ../../examples/config_tile.tcl:
* ../../examples/option.tcl:
* ../../examples/option_tile.tcl:
* ../../examples/styles.tcl:
* ../../examples/styles_tile.tcl:
* doc/tablelist.html: Updated to reflect the changes made in the demo
scripts.
* doc/aqua.png: Updated screenshots.
* doc/browse.png:
* doc/browseTree.png:
* doc/bwidget.png:
* doc/config.png:
* doc/dirViewer.png:
* doc/embeddedWindows.png:
* doc/embeddedWindows_tile.png:
* doc/styles.png:
* doc/tileWidgets.png:
2011-06-18 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 5.3.
* *.txt:
* ../../examples/tablelist/*.tcl:
* scripts/tablelist*.tcl: Enhanced the interactive row move operation;
added the -acceptchildcommand option; added the searchcolumn,
getformatted, getformattedcolumns, and getformattedcells subcommands;
added support for interactive cell editing with the aid of the Tk
core and tile menubutton widgets; added support for the row indices
"top" and "bottom" and for the column indices "left" and "right".
* scripts/tclIndex: Newly generated.
* doc/index.html: Updated the documentation.
* doc/tablelist.html:
* doc/tablelistBWidget.html:
* doc/tablelistCombobox.html:
* doc/tablelistIwidgets.html:
* doc/tablelistMentry.html:
* doc/tablelistTile.html:
* doc/tablelistTkCore.html:
* doc/tablelistWidget.html:
* doc/bwidget.png: Updated screenshots.
* doc/config.png:
* doc/tileWidgets.png:
* doc/bwidget_tile.png: Removed screenshot.
2010-10-16 Csaba Nemethi <csaba.nemethi@t-online.de>
* COPYRIGHT.txt: Minor corrections.
* README.txt:
2010-10-15 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 5.2.
* *.txt:
* ../../examples/tablelist/*.tcl:
* scripts/tablelist*.tcl: Added the "-fullseparators" option; added the
tree styles "ambiance", "dust", "dustSand", "newWave", "plastik", and
"radiance"; the implementation of collapse(all) and expand(all) no
longer makes use of the -hide row configuration option; the move
subcommand now supports moving an item outside its parent; fixed a
few bugs related to binding scripts and hidden rows.
* scripts/tclIndex: Newly generated.
* doc/tablelist.html: Updated the documentation.
* doc/tablelistWidget.html:
* doc/*.png: New and updated screenshots.
2010-08-20 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistWidget.tcl: Made deleting the whole content of a
tablelist widget significantly faster.
2010-08-07 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Fixed a tooltip-related bug.
2010-07-03 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistUtil.tcl: Fixed a bug related to the -selecttype cell
setting, (re)introduced in Tablelist version 5.0.
2010-06-26 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 5.1.
* *.txt:
* ../../examples/tablelist/*.tcl:
* scripts/tablelistBind.tcl: Fixed a few bugs and typos.
* scripts/tablelistSort.tcl:
* scripts/tablelistUtil.tcl:
* scripts/tablelistWidget.tcl:
* doc/tablelist.html: Updated the documentation.
* doc/tablelistWidget.html:
2010-06-05 Csaba Nemethi <csaba.nemethi@t-online.de>
* README.txt: Small corrections.
* doc/tablelist.html:
2010-06-05 Csaba Nemethi <csaba.nemethi@t-online.de>
* README.txt: Slightly extended.
* doc/tablelist.html:
2010-06-05 Csaba Nemethi <csaba.nemethi@t-online.de>
* doc/tablelist.html: Corrected a typo.
2010-06-02 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Fixed a bug related to embedded windows.
* scripts/tablelistUtil.tcl:
2010-05-22 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Slightly extended.
* doc/tablelistWidget.html:
* scripts/tablelistWidget.tcl: Fixed a bug in the insertlist subcommand.
2010-05-15 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistImages.tcl: Removed tree style "plastik";
* scripts/tablelistThemes.tcl: added tree style "klearlooks".
* scripts/tablelistWidget.tcl:
* scripts/tclIndex: Newly generated.
* doc/tablelistWidget.html: Updated to reflect the changes.
* doc/plastik.png: Removed screenshot.
* doc/klearlooks.png: Added screenshot.
2010-05-09 Csaba Nemethi <csaba.nemethi@t-online.de>
* doc/tablelistWidget.html: Added two performance-related remarks.
2010-05-08 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 5.0.
* *.txt:
* scripts/*.tcl: Renamed tablelistBitmaps.tcl to tablelistImages.tcl;
lots of new features (see CHANGES.txt: What is new in Tablelist 5.0?).
* scripts/tclIndex: Newly generated.
* doc/tablelist.html: Updated to reflect the new features.
* doc/tablelistThemes.html:
* doc/tablelistWidget.html:
* doc/browse.png: Updated the screenshots.
* doc/bwidget.png:
* doc/bwidget_tile.png:
* doc/config.png:
* doc/embeddedWindows.png:
* doc/embeddedWindows_tile.png:
* doc/styles.png:
* doc/tileWidgets.png:
* doc/aqua.png: Added new screenshots.
* doc/baghira.png:
* doc/browseTree.png:
* doc/dirViewer.png:
* doc/gtk.png:
* doc/oxygen1.png:
* doc/oxygen2.png:
* doc/phase.png:
* doc/plastik.png:
* doc/plastique.png:
* doc/vistaAero.png:
* doc/vistaClassic.png:
* doc/win7Aero.png:
* doc/win7Classic.png:
* doc/winnative.png:
* doc/winxpBlue.png:
* doc/winxpOlive.png:
* doc/winxpSilver.png:
* ../../examples/tablelist/*.tcl: Updated the version number and
copyright information.
* ../../examples/tablelist/browseTree.tcl: Added new demo scripts.
* ../../examples/tablelist/browseTree_tile.tcl:
* ../../examples/tablelist/dirViewer.tcl:
* ../../examples/tablelist/dirViewer_tile.tcl:
* ../../examples/tablelist/comp.xbm: Updated the bitmaps.
* ../../examples/tablelist/leaf.xbm:
* ../../examples/tablelist/clsdFolder.gif: Added new images.
* ../../examples/tablelist/file.gif:
* ../../examples/tablelist/openFolder.gif:
2010-01-30 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistConfig.tcl: Fixed a bug related to the -text column
configuration option.
2009-10-24 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistConfig.tcl: Minor improvements related to hidden
columns.
2009-10-11 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.12.1.
* COPYRIGHT.txt:
* scripts/tablelistConfig.tcl: Fixed a bug related to the -labelfont
option.
2009-09-12 Csaba Nemethi <csaba.nemethi@t-online.de>
* doc/tablelist.html: Corrected the version number.
2009-09-08 Csaba Nemethi <csaba.nemethi@t-online.de>
* tablelistPublic.tcl: Added support for mentry widgets of type
* CHANGES.txt: "IPv6Addr" as edit windows.
* scripts/tablelistEdit.tcl:
* doc/tablelistMentry.html:
* doc/tablelistWidget.html:
* scripts/tablelistBind.tcl: Minor correction.
* scripts/tclIndex: Newly generated.
2009-08-30 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Extended the list of supported Wcb
options for text widgets used for interactive cell editing.
2009-08-29 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.12.
* *.txt:
* scripts/tablelistEdit.tcl: Added support for interactive cell
* scripts/tablelistThemes.tcl: editing with the aid of the ttk::spinbox
* scripts/tablelistUtil.tcl: widget; added support for the themes
"keramik_alt" and "vista"; improved the support for a few themes.
* scripts/tclIndex: Newly generated.
* doc/tablelistBWidget.html: Updated the documentation.
* doc/tablelistCombobox.html:
* doc/tablelist.html:
* doc/tablelistIwidgets.html:
* doc/tablelistMentry.html:
* doc/tablelistTile.html:
* doc/tablelistWidget.html:
* doc/*.png:
* ../../examples/tablelist/*.tcl: Appended the version number to
"package require tablelist(_tile)".
2009-08-15 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistWidget.tcl: Removed two update-invocations for Mac
OS X Aqua that were present to work around a scrolling-related bug in
old Mac-Tk versions but turned out to cause problems in newer ones.
2009-07-16 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Added support for the native "Aqua-blue"
* scripts/tablelistThemes.tcl: background, set for the header label of
* scripts/tablelistUtil.tcl: the sort column (for Mac-Tk with Cocoa).
* scripts/tablelistWidget.tcl:
* scripts/tclIndex: Newly generated.
2009-06-07 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Corrected a typo.
2009-05-29 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistWidget.tcl: Fixed a bug related to the -listvariable
option in disabled state.
2009-05-05 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Small correction.
2009-05-03 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Improvements in the binding scripts
* scripts/tablelistEdit.tcl: related to interactive cell editing.
2009-05-02 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.11.2.
* COPYRIGHT.txt:
* scripts/tablelistBind.tcl: Improvements in the binding scripts
* scripts/tablelistEdit.tcl: related to interactive cell editing.
2009-04-11 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Fixed a small bug related to interactive
cell editing with the aid of a text widget.
* doc/tablelistWidget.html: Minor correction.
2009-03-28 Csaba Nemethi <csaba.nemethi@t-online.de>
* tablelistPublic.tcl: Added the labeltag subcommand and the
* scripts/mwutil.tcl: helper command
* scripts/tablelistBind.tcl tablelist::getTablelistColumn.
* scripts/tablelistConfig.tcl:
* scripts/tablelistUtil.tcl:
* scripts/tablelistWidget.tcl:
* scripts/tclIndex: Newly generated.
* doc/tablelistBinding.html: Updated to reflect the new features.
* doc/tablelistWidget.html:
2009-03-14 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.11.1.
* COPYRIGHT.txt:
* scripts/tablelistBind.tcl: Made sure that <Double-Button-1> works as
expected for large lists, too.
* scripts/tablelistEdit.tcl: Eliminated a small regression introduced
in tablelist 4.11.
2009-02-24 Csaba Nemethi <csaba.nemethi@t-online.de>
* README.txt: Minor improvements.
* ../../examples/tablelist/styles.tcl:
* ../../examples/tablelist/styles_tile.tcl:
2009-02-23 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.11.
* *.txt:
* doc/tablelist.html:
* scripts/*.tcl: Added the -columntitles option; added two
virtual events related to hidden columns and rows; extended the
bindings; added support for Windows Vista; bug-fixes related to the
-tooltipdelcommand and -listvariable options and to the item deletion
when using Tcl/Tk 8.5.
* scripts/tclIndex: Newly generated.
* doc/tablelistWidget.html: Updated to reflect the new features.
* ../../examples/tablelist/styles.tcl: Using the new -columntitles
* ../../examples/tablelist/styles_tile.tcl: option.
2009-01-21 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tklib 0.5 ========================
*
2009-01-11 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.10.1.
* COPYRIGHT.txt:
* scripts/tablelistConfig.tcl: Fixed a bug related to the
* scripts/tablelistUtil.tcl: -windowdestroy cell configuration
option.
* scripts/tablelistWidget.tcl: Fixed a nasty bug related to the yview
subcommand.
* doc/tablelist.html: Changed the recommended package name
* ../../examples/tablelist/*.tcl: from "Tablelist" to "tablelist".
2008-09-15 Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.10.
* *.txt:
* doc/tablelist.html:
* scripts/tablelistEdit.tcl: Added support for mentry widgets of type
* doc/tablelistMentry.html: "DateTime" as edit windows.
* doc/tablelistWidget.html:
* scripts/tablelistBind.tcl: Minor improvements.
* scripts/tablelistUtil.tcl: Made the handling of elided text more
robust (fixes a bug reported by Jos Decoster).
* scripts/tclIndex: Newly generated.
2008-08-17 Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Improvements related to balloon help.
* scripts/tablelistWidget.tcl:
2008-08-16 Nemethi <csaba.nemethi@t-online.de>
* scripts/mwutil.tcl: Added the subcommands hasattrib,
* scripts/tablelistEdit.tcl: unsetattrib, columnattrib,
* scripts/tablelistMove.tcl: hascolumnattrib, unsetcolumnattrib,
* scripts/tablelistUtil.tcl: rowattrib, hasrowattrib, unsetrowattrib,
* scripts/tablelistWidget.tcl: cellattrib, hascellattrib,
* doc/tablelistWidget.html: unsetcellattrib, and editwintag.
* scripts/tclIndex: Newly generated.
* doc/tablelist.html: Minor improvement.
2008-08-01 Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistUtil.tcl: Made sure that the body text widget of a
disabled tablelist remains covered by the "disabled" tag (fixes a
bug reported by Rolf Ade).
2008-06-21 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.9.2.
* COPYRIGHT.txt:
* scripts/repair.tcl: Updated to work with current Tablelist versions.
* scripts/tablelistBind.tcl: Setting up the default bindings at load
* scripts/tablelistConfig.tcl: time; re-established the support for
* scripts/tablelistEdit.tcl: tile widgets as edit windows in non-
* scripts/tablelistThemes.tcl: tile-based tablelist widgets; adapted
* scripts/tablelistUtil.tcl: the handling of the tile checkbutton as
* scripts/tablelistWidget.tcl: edit window in the xpnative theme to
* doc/tablelistThemes.html: some changes made in tile 0.8; guarded
against potential widget deletion from within user-defined binding
scripts or update (idletasks).
* scripts/tclIndex: Newly generated.
2008-04-27 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.9.1.
* COPYRIGHT.txt:
2008-04-27 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Improved the support for cell editing with
* scripts/tablelistEdit.tcl: a word- or char-wrapped text widget.
* doc/tablelistTkCore.html:
2008-04-26 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Added supprt for cell editing with a word-
* doc/tablelistTkCore.html wrapped text widget when appropriate.
* scripts/tablelistBind.tcl: Minor improvements.
* scripts/tablelistWidget.tcl:
2008-04-22 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistUtil.tcl: Small improvements related to the header
labels and separators.
2008-04-21 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Improved the tablelist widget's appearance
* scripts/tablelistUtil.tcl: when the header labels are not shown.
2008-04-20 Csaba Nemethi <csaba.nemethi@t-online.de>
* doc/tablelist.html: Minor correction.
2008-04-20 Csaba Nemethi <csaba.nemethi@t-online.de>
* doc/styles.png: Updated the screenshot.
* ../../examples/tablelist/styles_tile.tcl: Minor improvement.
2008-04-20 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Corrected a small typo.
2008-04-15 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistConfig.tcl: Improvements related to multi-line
* scripts/tablelistUtil.tcl: elements.
* scripts/tclIndex: Newly generated.
2008-04-13 Csaba Nemethi <csaba.nemethi@t-online.de>
* doc/tablelist.html: Expanded the tabs to spaces.
* doc/tablelistBinding.html:
* doc/tablelistThemes.html:
* doc/tablelistWidget.html:
2008-04-12 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.9;
* *.txt: updated the Copyright lines; new
* scripts/*.tcl: -wrap column configuration option;
* doc/tablelist.html: new -stretchwindow cell configuration
* doc/tablelistTile.html: option; changed the default values of
* doc/tablelistWidget.html: the -activestyle and -setfocus
* ../../examples/tablelist/*.tcl: configuration options; improved the
cell editing with a combobox widget (proposed by Bryan Oakley);
improved the setThemeDefaults command (contributed by Schelte Bron).
* scripts/tclIndex: Newly generated.
* doc/*.png: Updated the screenshots.
2007-12-09 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistUtil.tcl: Fixed a bug related to the optimized item
insertion; fixed a bug related to the -showlinenumbers column
configuration option.
2007-11-22 Andreas Kupries <andreask@activestate.com>
* pkgIndex.tcl: Fixed inconsistent version of tablelist_tile, was
missed by the 4.8 -> 4.8.1 transition.
2007-11-03 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.8.1.
* COPYRIGHT.txt:
* scripts/tablelistUtil.tcl: Improved the appearance of the header
labels for the aqua theme.
2007-09-10 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistConfig.tcl: Changes related to the new formatinfo
* scripts/tablelistEdit.tcl: subcommand.
* scripts/tablelistMove.tcl:
* scripts/tablelistSort.tcl:
* scripts/tablelistUtil.tcl:
* scripts/tablelistWidget.tcl:
* doc/tablelistWidget.html:
* scripts/tclIndex: Newly generated.
2007-08-21 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistConfig.tcl: Eliminated the potential invocation of
* scripts/tablelistUtil.tcl: the unknown command from within a catch
statement.
* scripts/tablelistWidget.tcl: Fixed a bug related to the optimized
item insertion.
2007-07-20 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Updated.
2007-07-10 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.8.
* COPYRIGHT.txt:
* README.txt:
* doc/tablelist.html:
* CHANGES.txt: Added the reason for releasing a new version.
* scripts/tablelistUtil.tcl: Fixed a few bugs related to the
* scripts/tablelistWidget.tcl: optimized item insertion, reported by
Harold Campbell and Roger Niva.
2007-06-24 Csaba Nemethi <csaba.nemethi@t-online.de>
* doc/config.png: Updated screenshot.
2007-06-23 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.7.
* COPYRIGHT.txt:
* README.txt:
* CHANGES.txt: Listed the new features in version 4.7.
* scripts/tablelistBind.tcl: Lots of performance improvements; new
* scripts/tablelistConfig.tcl: configuration options -tooltipaddcommand
* scripts/tablelistEdit.tcl: and -tooltipdelcommand; new subcommands
* scripts/tablelistMove.tcl: iselemsnipped, istitlesnipped,
* scripts/tablelistSort.tcl: configcolumnlist, configcolumns,
* scripts/tablelistUtil.tcl: configrowlist, configrows,
* scripts/tablelistWidget.tcl: configcelllist, and configcells; worked
around some performance problems regarding the switch command in Tcl
8.5a6/8.5b1 and ActiveTcl 8.4.14; made sure that the style::as
package won't break the mousewheel bindings.
* scripts/tclIndex: Newly generated.
* doc/tablelist.html: Updates and improvements.
* doc/tablelistIwidgets.html:
* doc/tablelistThemes.html:
* doc/tablelistTile.html:
* doc/tablelistWidget.html:
2007-05-23 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Corrections related to Tk 8.5a6.
2007-03-26 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistUtil.tcl: Fixed a bug reported by Kai Morich,
related to the -snipside option.
2007-03-23 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.6.1.
* COPYRIGHT.txt:
* scripts/tablelistBind.tcl: Improved the focus handling when resizing
a column interactively (bug reported by Jorge Enderr).
* scripts/tablelistUtil.tcl: Fixed a bug reported by Harold Campbell,
related to hidden rows when having -selecttype cell; fixed a bug in
the cellconfigure subcommand, reported by Roy Terry.
* scripts/tablelistWidget.tcl: Corrected a typo in the adaptation of
vertical scrolling to the text widget changes made in Tk 8.5 (bug
reported by Julian M Noble).
2007-02-01 Csaba Nemethi <csaba.nemethi@t-online.de>
* doc/tablelistTile.html: Minor improvement.
2007-01-31 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistWidget.tcl: Minor improvements.
2007-01-29 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Minor improvements.
* scripts/tablelistConfig.tcl:
* scripts/tablelistUtil.tcl:
2007-01-21 Csaba Nemethi <csaba.nemethi@t-online.de>
* tablelist.tcl: Minor improvements.
* tablelist_tile.tcl:
2007-01-20 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Minor improvements.
* tablelist_tile.tcl: Moved some further alias definitions to
* scripts/tablelistConfig.tcl: tablelist_tile.tcl.
2007-01-12 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistUtil.tcl: New procedure tablelist::getSepX.
* scripts/tclIndex: Newly generated.
2007-01-07 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Implemented the -changesnipside column
* scripts/tablelistConfig.tcl: configuration option.
* scripts/tablelistSort.tcl:
* scripts/tablelistUtil.tcl:
* scripts/tablelistWidget.tcl:
* doc/tablelistWidget.html:
2007-01-01 Csaba Nemethi <csaba.nemethi@t-online.de>
* tablelist_tile.tcl: Moved some alias definitions to
* scripts/tablelistConfig.tcl: tablelist_tile.tcl.
2007-01-01 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Minor improvements.
* scripts/repair.tcl:
* doc/tablelist.html:
2006-12-28 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Support for tile 0.8 and Tk 8.5b1
* *.txt: (where tile is integrated in the
* scripts/*.tcl: core); updated the Copyright lines.
* doc/index.html:
* doc/tablelist.html:
* doc/tablelistThemes.html:
* doc/tablelistTile.html:
* doc/tablelistWidget.html:
* ../../examples/tablelist/*.tcl:
* scripts/tclIndex: Newly generated.
* doc/tablelistThemeDefs.html: Renamed to tablelistThemes.html.
2006-12-17 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistConfig.tcl: Eliminated some annoying visual effects
* scripts/tablelistUtil.tcl: caused by hidden columns when displaying
* scripts/tablelistWidget.tcl: the items of an already visible
* CHANGES.txt: tablelist widget (reported by Rolf Ade).
2006-12-05 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Small correction in the procedure
tablelist::labelB1Up.
2006-12-03 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Corrected the use of the -padx and -pady
* scripts/tablelistConfig.tcl: options for frame widgets (these options
* scripts/tablelistUtil.tcl: were not available for frame widgets in
* scripts/tablelistWidget.tcl: Tk versions < 8.4).
2006-12-01 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.6.
* COPYRIGHT.txt:
* README.txt:
* doc/tablelist.html:
* CHANGES.txt: Listed the new features of version 4.6.
* scripts/tablelistBind.tcl: Support for the new virtual event
<<TablelistColumnResized>>.
* scripts/tablelistConfig.tcl: Improved the handling of embedded images
* scripts/tablelistUtil.tcl: and windows.
* scripts/tablelistEdit.tcl: Embedded images and windows are no longer
hidden during interactive cell editing.
* scripts/tablelistWidget.tcl: New columnwidth subcommand; adapted the
vertical scrolling to the text widget changes made in Tk 8.5; bug-
fixes related to hidden rows (reported by Matthew Callaghan) and the
seecell subcommand (reported by Erik Allaert and Mauro Comin).
* scripts/mwutil.tcl: Improved the key navigation vith <Tab> and
<Shift-Tab>.
* scripts/tclIndex: Newly generated.
* doc/tablelistWidget.html: Updated to describe the columnwidth
subcommand and the virtual event <<TablelistColumnResized>>.
2006-09-14 Csaba Nemethi <csaba.nemethi@t-online.de>
* README.txt: Corrected the version number (it was still 4.4).
* doc/tablelist.html:
2006-09-08 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Bug-fix in tablelist::editcellSubCmd.
2006-09-08 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.5.
* *.txt:
* CHANGES.txt: Listed the new features in version 4.5.
* scripts/tablelistBind.tcl: Miscellaneous improvements.
* scripts/tablelistConfig.tcl:
* scripts/tablelistEdit.tcl:
* scripts/tablelistMove.tcl: Quite significantly increased the
* scripts/tablelistSort.tcl: performance when moving, sorting,
* scripts/tablelistUtil.tcl: redisplaying, or deleting tablelist
* scripts/tablelistWidget.tcl: items.
* scripts/tclIndex: Newly generated.
2006-08-20 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistUtil.tcl: Improved the procedure
tablelist::updateMlCell.
2006-08-15 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Implemented the -showlinenumbers column
* scripts/tablelistConfig.tcl: configuration option.
* scripts/tablelistMove.tcl:
* scripts/tablelistSort.tcl:
* scripts/tablelistUtil.tcl:
* scripts/tablelistWidget.tcl:
* scripts/tablelistUtil.tcl: Rewritten the procedure
tablelist::strRange; eliminated the procedure tablelist::strRangeExt.
* scripts/tclIndex: Newly generated.
* doc/tablelistColSort.html: Updated to describe the -showlinenumbers
* doc/tablelistWidget.html: column configuration option.
2006-08-04 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistWidget.tcl: Improvements in tablelist::scanSubCmd.
2006-07-31 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistUtil.tcl: Correction in tablelist::adjustColumns.
2006-07-28 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Fixed a bug reported by Mark Garvey.
* scripts/tablelistEdit.tcl:
* scripts/tablelistUtil.tcl: Performance tuning in the procedures
tablelist::adjustColumns and tablelist::strRange.
* scripts/tclIndex: Newly generated.
2006-07-13 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Further improvements in the handling of
the <<ThemeChanged>> virtual event.
2006-07-11 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Fixed a bug reported by Kurt Kurczyk;
improved the handling of the <<ThemeChanged>> virtual event.
* scripts/tablelistConfig.tcl: Improved the handling of the
* scripts/tablelistWidget.tcl: <<ThemeChanged>> virtual event.
* scripts/tablelistEdit.tcl: Support for tile-based multi-entry
widgets used as edit windows; required tile version 0.6 or higher.
* scripts/tablelistUtil.tcl: Bug-fix in tablelist::adjustColumns.
* scripts/mwutil.tcl: Improved a few invocations of eval.
* doc/tablelist.html: Updated to reflect the support for the
* doc/tablelistMentry.html: Mentry_tile package.
* doc/tablelistWidget.html:
* doc/tablelistTile.html: Updated to reflect the change that the tile
version must be 0.6 or higher.
2006-06-19 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistWidget.tcl: Fixed a bug in tablelist::deleteCols,
reported by Kai Morich.
* ../../examples/tablelist/*tile*.tcl: Removed the "-padding -2" option
* doc/tablelist.html: for the ttk::frame base widget,
because it is no longer needed in newer tile versions.
2006-06-17 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistThemes.tcl: Improvements related to the
* scripts/tablelistConfig.tcl: setThemeDefaults subcommand.
* scripts/tablelistBind.tcl:
* doc/tablelist.html: Minor improvements.
* doc/tablelistThemeDefs.html:
2006-06-16 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Further improvements related to the
* scripts/tablelistUtil.tcl: tablelist::parseLabelPath procedure.
2006-06-15 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.4.1.
* COPYRIGHT.txt:
* tablelistPublic.tcl: Moved the tablelist::restoreUsingTile
* scripts/tablelistWidget.tcl: procedure from tablelistWidget.tcl to
tablelistPublic.tcl.
* scripts/tablelistBind.tcl: Corrected two typos reported by
* scripts/tablelistThemes.tcl: Patrick Fradin.
* scripts/tablelistBind.tcl: Moved the tablelist::parseLabelPath
* scripts/tablelistUtil.tcl: procedure from tablelistBind.tcl to
tablelistUtil.tcl and improved it to work around a binding-related
problem reported by Patrick Fradin. In addition, replaced two regexp
occurrences in tablelistUtil.tcl with invocations of parseLabelPath.
* scripts/tablelistConfig.tcl: Changed the windowing system- and
* scripts/tablelistBind.tcl: theme-specific default value of the
* doc/tablelistWidget.html: -arrowdisabledcolor option.
* scripts/tablelistEdit.tcl: Modified the padding for tile entries in
the tileqt theme.
* scripts/tclIndex: Newly generated.
2006-06-08 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* tablelist.tcl: A bit more shuffling of code, reducing
* tablelist_tile.tcl: the variant setup even further. Now only
* tablelistPublic.tcl: the usingTile flag is set within them.
* pkgIndex.tcl: Modified the package index to be simpler
* tablelist.tcl: and express the relationships clearly.
* tablelist_tile.tcl: Tablelist(_tile) are now aliases of
* tablelistPublic.tcl: tablelist(_tile). The common code now
has its own package name, tablelist::common, is the only one
which has to handle [info script] and $dir, and is not 'source'd
anymore, but loaded via 'package require'. The code for [info
script] is much simpler and moved into the 'ifneeded' script,
avoiding the pollution of the namespaces just by reading the
package index, as it happened before.
2006-06-03 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/mwutil.tcl: Renamed two mwutil commands, in order
* scripts/tablelistWidget.tcl: to avoid conflicts when using the
* scripts/tclIndex: Mentry package.
* doc/tablelist.html: Updated a few option
* doc/tablelistThemeDefs.html: database settings.
* ../../examples/tablelist/option_tile.tcl:
2006-05-30 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.4.
* *.txt:
* scripts/*.tcl: Added support for hidden rows; new command
tablelist::setThemeDefaults; lots of optimizations, code
improvements, minor bug fixes, and support for recent changes in
TileQt.
* scripts/tclIndex: Newly generated.
* doc/*.html: Added the descriptions of the new features in version
4.4.
* doc/tablelistThemeDefs.html: New reference page, describing the
command tablelist::setThemeDefaults.
* doc/*.png: Updated a few screenshots.
* ../../examples/tablelist/*.tcl: Added the use of the -spacing option
and of the tablelist::setThemeDefaults command.
2006-04-21 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistSort.tcl: update idletasks no longer invoked during
* scripts/tablelistUtil.tcl: redisplay (fixes a bug reported by Dave
Leslie).
2006-04-11 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Minor improvement in labelB1Up proc.
2006-02-22 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistWidget.tcl: Minor corrections.
2006-02-10 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.3.1.
* COPYRIGHT.txt:
* scripts/tablelistBind.tcl: Improved the handling of the virtual
* scripts/tablelistConfig.tcl: event <<ThemeChanged>> (fixes a bug
* scripts/tablelistWidget.tcl: reported by Wolfgang Großer).
2006-02-09 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tabelistMove.tcl: Corrected a typo in the implementation
of the move subcommand (fixes a bug reported by Jérome Siot).
2006-02-05 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistBind.tcl: Improved cleanup proc to handle the case
that the listvariable no longer exists (fixes a bug reported by Rolf
Ade).
2006-01-19 Csaba Nemethi <csaba.nemethi@t-online.de>
* CHANGES.txt: Corrected a few typos.
* scripts/tablelistWidget.tcl:
* doc/tablelist.html: Minor improvements.
* doc/tablelistWidget.html:
* ../../examples/tablelist/option.tcl: Added the labelCommand2
* ../../examples/tablelist/option_tile.tcl: option.
2006-01-15 Csaba Nemethi <csaba.nemethi@t-online.de>
* doc/tileWidgets.png: Screenshot updated, to reflect the fact that
tile bug #1399182 (related to the combobox appearance) has been
fixed.
2006-01-14 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.3.
* *.txt:
* CHANGES.txt: Listed the new features in version 4.3.
* scripts/*.tcl: Added support for multi-line cells and multi-column
sorting; new configuration option -setfocus; numerous improvements,
minor bug fixes, and support for several recent changes in tile.
* scripts/tablelistBitmaps.tcl: New script file, replacing the
contents of the images directory.
* images/: Replaced the contents of this directory with the new file
scripts/tablelistBitmaps.tcl.
* doc/*.html: Added the descriptions of the new features in version
4.3, and cleaned up the files with HTML Tidy.
* doc/tablelistSortByColumn.html: Renamed tablelistSortByColumn.html
* doc/tablelistColSort.html: to tablelistColSort.html, because
this file now contains the description of the new addToSortColumns
subcommand, too.
* doc/*.png: Updated a few screenshots.
* ../../examples/tablelist/*.tcl: Minor updates and improvements.
2005-12-01 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistConfig.tcl: Corrected some typos.
2005-11-27 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Fixed a bug related to the use of
a tile entry within a non-tile-based tablelist widget on
Windows XP, reported by Schelte Bron.
2005-11-19 Csaba Nemethi <csaba.nemethi@t-online.de>
* *.tcl: Bumped the version number to 4.2.1.
* COPYRIGHT.txt:
* scripts/tablelistWidget.tcl: Improved the handling of the
* scripts/tablelistConfig.tcl: -activestyle option.
* scripts/tablelistUtil.tcl: Made sure that the sort arrow is
unmanaged if its column becomes elided through horizontal
scrolling.
2005-11-13 Csaba Nemethi <csaba.nemethi@t-online.de>
* scripts/tablelistEdit.tcl: Added support for the Command key
during keyboard navigation between the editable cells on the
Macintosh.
* scripts/tablelistUtil.tcl: Fixed a bug related to embedding
images or windows into hidden cells, reported by Sebastien
Barre.
* scripts/tablelistConfig.tcl: Fixed a bug related to insertion
and deletion of columns having images in their labels,
reported by Sebastien Barre.
* doc/tablelistWidget.html: Added the description of the
support for the Command key on the Macintosh.
* CHANGES.txt: Added the descriptions of the above changes.
2005-11-10 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tklib 0.4.1 ========================
*
2005-11-10 Andreas Kupries <andreask@activestate.com>
* pkgIndex.tcl (::tablelist::Load): Fixed bugs in my hack of
pkgIndex.tcl, reported by Csaba. The loaded code is scope
sensitive, pcausing the move into the proc to estblish the
commands in the wrong namespace. Applied fix by Csaba.
2005-11-02 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tklib 0.4 ========================
*
2005-11-02 Andreas Kupries <andreask@activestate.com>
* Hack: Replaced access to $tableist::version with hardwired
version numbers until I figure out how to make this properly
accessible to sak.tcl's code scanner. Needed to have tablelist
in the generated .tap file.
2005-10-24 Andreas Kupries <andreask@activestate.com>
* pkgIndex.tcl: Reorganized things a bit. Procedures to remove
quoting issues and make code more readable. Unrolled the loops
to make code accessible to extraction of name/version
information by sak tool.
2005-10-23 Csaba Nemethi <csaba.nemethi@t-online.de>
* Unknown changes -- This entry is a placeholder
Please, always update the ChangeLog before a commit !!
2005-10-05 Andreas Kupries <andreask@activestate.com>
* doc/tablelist.html: Applied changes made by Csaba reflecting the
* README.txt: fact that tablelist is now in tklib, and
that the demos are in a different location.
* ../../examples/tablelist/: Applied changes made by Csaba
reflecting the changed location of the demos in the scripts
themselves.
2005-10-03 Andreas Kupries <andreask@activestate.com>
* Added tablelist to tklib, moved demos to canonical location for
examples of tklib modules.
|