Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | * *.tcl: Bumped the version number to 5.18. * COPYRIGHT.txt: * README.txt: |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c04ab4bce7f4ce950f991f6ca96bdc0d |
User & Date: | csaba 2017-06-23 19:24:39 |
Context
2017-06-23
| ||
19:25 | * CHANGES.txt: Updated to reflect the changes. check-in: 691b136407 user: csaba tags: trunk | |
19:24 | * *.tcl: Bumped the version number to 5.18. * COPYRIGHT.txt: * README.txt: check-in: c04ab4bce7 user: csaba tags: trunk | |
19:23 | * *.tcl: Bumped the version number to 5.18. * COPYRIGHT.txt: * README.txt: * CHANGES.txt: Updated to reflect the changes. * scripts/*.tcl: Improved the performance of the vertical scrolling; added the "-displayondemand" configuration option; added the "tablelist::delaySashPosUpdates" command; added support for the themes "Arc" and "clearlooks"; updated the support for a few other themes; fixed a bug related to retrieving the current cell selection; numerous further improvements. * scripts/tclIndex: Newly generated. * doc/*.html: Updated to reflect the changes; more on the "-formatcommand" column configuration option in connection with "-sortmode integer|real"; minor improvements. * doc/browse.png: Updated screenshots. * doc/browseTree.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: * doc/tileWidgets.png: * ../../examples/*.tcl: Bumped the version number to 5.18; minor improvements. check-in: 81f31de920 user: csaba tags: trunk | |
Changes
Changes to modules/tablelist/COPYRIGHT.txt.
| 1 2 3 4 5 6 7 8 | - + |
|
︙ |
Changes to modules/tablelist/README.txt.
︙ | |||
84 85 86 87 88 89 90 | 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 | - - + + - + - + - + - - + + | http://www.nemethi.de How to Get It? -------------- Tablelist is available for free download from the same URL as Wcb. The |
︙ |
Changes to modules/tablelist/pkgIndex.tcl.
1 2 3 4 5 6 7 8 9 | 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 | - + - + - - - - + + + + - + | #============================================================================== # Tablelist and Tablelist_tile package index file. # # Copyright (c) 2000-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== # # Regular packages: # |
Changes to modules/tablelist/tablelist.tcl.
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | - + | #============================================================================== # Main Tablelist package module. # # Copyright (c) 2000-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tcl 8 package require Tk 8 |
Changes to modules/tablelist/tablelistPublic.tcl.
︙ | |||
20 21 22 23 24 25 26 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | - + | return 200 } } # # Public variables: # |
︙ |
Changes to modules/tablelist/tablelist_tile.tcl.
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | - + | #============================================================================== # Main Tablelist_tile package module. # # Copyright (c) 2000-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tcl 8.4 package require Tk 8.4 if {$::tk_version < 8.5 || [regexp {^8\.5a[1-5]$} $::tk_patchLevel]} { package require tile 0.6 } |
︙ |