Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | * scripts/tclIndex: Newly generated. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ed5bcd155e2008f67fb946d8ad2075b2 |
User & Date: | csaba 2019-07-06 17:46:24.952 |
Context
2019-07-06
| ||
17:47 | * doc/*.html: Updated to reflect the changes; improved and extended the description of the "-height" option in the reference manual; added references to the new Scrollutil package and an example showing how the scrollutil::scrollarea widget can be used to make the creation of a scrolled tablelist quite simple. check-in: deffd2c563 user: csaba tags: trunk | |
17:46 | * scripts/tclIndex: Newly generated. check-in: ed5bcd155e user: csaba tags: trunk | |
17:45 | * scripts/*.tcl: Added mouse bindings for column-wise cell selection; new "-selectfiltercommand" widget and column configuration option; improved the interactive editing of multi-line cells; updated the tree style "adwaita"; eliminated the flickering in the presence of header items; fixed a bug related to the error handling in the tablelist configuration at widget creation time in the presence of the "-columntitles" option; several further improvements and minor bug fixes. check-in: fc0d29135d user: csaba tags: trunk | |
Changes
Changes to modules/tablelist/scripts/tclIndex.
︙ | ︙ | |||
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 | set auto_index(::tablelist::cellInRect) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::firstViewableRow) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::lastViewableRow) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::firstViewableCol) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::lastViewableCol) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::condChangeSelection) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::changeSelection) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::defineTablelistHeader) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::hdr_handleMotionDelayed) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::hdr_handleMotion) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::hdr_showOrHideTooltip) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::defineTablelistLabel) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::defineTablelistSubLabel) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::defineTablelistArrow) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelEnter) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelLeave) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB1Down) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB1Motion) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB1Enter) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB1Leave) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB1Up) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB3Down) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelDblB1) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::escape) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::horizAutoScan) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::inResizeArea) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::extendConfigSpecs) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doConfig) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doCget) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doColConfig) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doColCget) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doRowConfig) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doRowCget) [list source [file join $dir tablelistConfig.tcl]] | > > > > > > > > > > > | 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 | set auto_index(::tablelist::cellInRect) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::firstViewableRow) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::lastViewableRow) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::firstViewableCol) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::lastViewableCol) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::condChangeSelection) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::changeSelection) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::genTablelistSelectEvent) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::defineTablelistHeader) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::hdr_handleMotionDelayed) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::hdr_handleMotion) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::hdr_showOrHideTooltip) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::defineTablelistLabel) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::defineTablelistSubLabel) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::defineTablelistArrow) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelEnter) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelLeave) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB1Down) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB1Motion) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB1Enter) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB1Leave) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB1Up) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelB3Down) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelDblB1) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::escape) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::horizAutoScan) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::inResizeArea) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelModifB1Down) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelModifB1Motion) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelModifB1Up) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelModifShiftB1Down) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::labelModifCtrlB1Down) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::selectColRange) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::deselectColRange) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::firstSelCellOfCol) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::isColSelected) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::wasColSelected) [list source [file join $dir tablelistBind.tcl]] set auto_index(::tablelist::extendConfigSpecs) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doConfig) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doCget) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doColConfig) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doColCget) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doRowConfig) [list source [file join $dir tablelistConfig.tcl]] set auto_index(::tablelist::doRowCget) [list source [file join $dir tablelistConfig.tcl]] |
︙ | ︙ | |||
168 169 170 171 172 173 174 175 176 177 178 179 180 181 | set auto_index(::tablelist::goLeftRight) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::goUpDown) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::goToPrevNextLine) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::goToPriorNextPage) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::isKeyReserved) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::hasMouseWheelBindings) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::isComboTopMapped) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::flat5x3Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat5x4Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat6x4Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat7x4Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat7x5Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat7x7Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat8x4Arrows) [list source [file join $dir tablelistImages.tcl]] | > | 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | set auto_index(::tablelist::goLeftRight) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::goUpDown) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::goToPrevNextLine) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::goToPriorNextPage) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::isKeyReserved) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::hasMouseWheelBindings) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::isComboTopMapped) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::isMenuPosted) [list source [file join $dir tablelistEdit.tcl]] set auto_index(::tablelist::flat5x3Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat5x4Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat6x4Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat7x4Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat7x5Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat7x7Arrows) [list source [file join $dir tablelistImages.tcl]] set auto_index(::tablelist::flat8x4Arrows) [list source [file join $dir tablelistImages.tcl]] |
︙ | ︙ |