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
|
#==============================================================================
# Contains the implementation of the tablelist move and movecolumn subcommands.
#
# Copyright (c) 2003-2008 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
#==============================================================================
#------------------------------------------------------------------------------
# tablelist::moveRow
#
# Processes the tablelist move subcommand.
#------------------------------------------------------------------------------
proc tablelist::moveRow {win source target} {
upvar ::tablelist::ns${win}::data data
if {$data(isDisabled) || $data(itemCount) == 0} {
return ""
}
#
# Adjust the indices to fit within the existing items and check them
#
if {$source > $data(lastRow)} {
set source $data(lastRow)
} elseif {$source < 0} {
set source 0
}
if {$target > $data(itemCount)} {
set target $data(itemCount)
} elseif {$target < 0} {
set target 0
}
if {$target == $source} {
return -code error \
"cannot move item with index \"$source\" before itself"
} elseif {$target == $source + 1} {
return ""
}
#
# Save some data of the edit window if present
#
if {[set editCol $data(editCol)] >= 0} {
set editRow $data(editRow)
set editKey $data(editKey)
saveEditData $win
}
#
# Build the list of column indices of the selected cells
# within the source line and then delete that line
#
set w $data(body)
set selectedCols {}
set line [expr {$source + 1}]
set textIdx [expr {double($line)}]
variable canElide
variable elide
for {set col 0} {$col < $data(colCount)} {incr col} {
if {$data($col-hide) && !$canElide} {
continue
}
if {[lsearch -exact [$w tag names $textIdx] select] >= 0} {
lappend selectedCols $col
}
set textIdx [$w search $elide "\t" $textIdx+1c $line.end]+1c
}
$w delete [expr {double($source + 1)}] [expr {double($source + 2)}]
#
# Insert the source item before the target one
#
set target1 $target
if {$source < $target} {
incr target1 -1
}
set targetLine [expr {$target1 + 1}]
$w insert $targetLine.0 "\n"
set snipStr $data(-snipstring)
set sourceItem [lindex $data(itemList) $source]
set key [lindex $sourceItem end]
set dispItem [lrange $sourceItem 0 $data(lastCol)]
if {$data(hasFmtCmds)} {
set dispItem [formatItem $win $key $source $dispItem]
}
set col 0
foreach text [strToDispStr $dispItem] \
colTags $data(colTagsList) \
{pixels alignment} $data(colList) {
if {$data($col-hide) && !$canElide} {
incr col
continue
}
#
# Build the list of tags to be applied to the cell
#
set cellFont [getCellFont $win $key $col]
set cellTags $colTags
foreach opt {-background -foreground -font} {
if {[info exists data($key,$col$opt)]} {
lappend cellTags cell$opt-$data($key,$col$opt)
}
}
#
# Append the text and the label or window
# (if any) to the target line of body text widget
#
appendComplexElem $win $key $source $col $text $pixels \
$alignment $snipStr $cellFont $cellTags $targetLine
incr col
}
foreach opt {-background -foreground -font} {
if {[info exists data($key$opt)]} {
$w tag add row$opt-$data($key$opt) $targetLine.0 $targetLine.end
}
}
#
# Update the item list
#
set data(itemList) [lreplace $data(itemList) $source $source]
if {$target == $data(itemCount)} {
lappend data(itemList) $sourceItem ;# this works much faster
} else {
set data(itemList) [linsert $data(itemList) $target1 $sourceItem]
}
#
# Update the list variable if present
#
if {$data(hasListVar)} {
upvar #0 $data(-listvariable) var
trace vdelete var wu $data(listVarTraceCmd)
set var [lreplace $var $source $source]
set pureSourceItem [lrange $sourceItem 0 $data(lastCol)]
if {$target == $data(itemCount)} {
lappend var $pureSourceItem ;# this works much faster
} else {
set var [linsert $var $target1 $pureSourceItem]
}
trace variable var wu $data(listVarTraceCmd)
}
#
# Update anchorRow and activeRow if needed
#
if {$data(anchorRow) == $source} {
set data(anchorRow) $target1
}
if {$data(activeRow) == $source} {
set data(activeRow) $target1
}
#
# Invalidate the list of the row indices indicating the non-hidden rows
#
set data(nonHiddenRowList) {-1}
#
# Select those source elements that were selected before
#
foreach col $selectedCols {
cellSelection $win set $target1 $col $target1 $col
}
#
# Adjust the elided text, restore the stripes in the body
# text widget, and redisplay the line numbers (if any)
#
adjustElidedText $win
makeStripes $win
showLineNumbersWhenIdle $win
#
# Restore the edit window if it was present before
#
if {$editCol >= 0} {
if {$editRow == $source} {
doEditCell $win $target1 $editCol 1
} else {
set data(editRow) [lsearch $data(itemList) "* $editKey"]
}
}
return ""
}
#------------------------------------------------------------------------------
# tablelist::moveCol
#
# Processes the tablelist movecolumn subcommand.
#------------------------------------------------------------------------------
proc tablelist::moveCol {win source target} {
upvar ::tablelist::ns${win}::data data \
::tablelist::ns${win}::attribs attribs
if {$data(isDisabled)} {
return ""
}
#
# Check the indices
#
if {$target == $source} {
return -code error \
"cannot move column with index \"$source\" before itself"
} elseif {$target == $source + 1} {
return ""
}
#
# Update the column list
#
set source3 [expr {3*$source}]
set source3Plus2 [expr {$source3 + 2}]
set target1 $target
set target3 [expr {3*$target}]
if {$source < $target} {
incr target1 -1
incr target3 -3
}
set sourceRange [lrange $data(-columns) $source3 $source3Plus2]
set data(-columns) [lreplace $data(-columns) $source3 $source3Plus2]
set data(-columns) [eval linsert {$data(-columns)} $target3 $sourceRange]
#
# Save some elements of data and attribs corresponding to source
#
array set tmpData [array get data $source-*]
array set tmpData [array get data k*,$source-*]
foreach specialCol {activeCol anchorCol editCol} {
set tmpData($specialCol) $data($specialCol)
}
array set tmpAttribs [array get attribs $source-*]
array set tmpAttribs [array get attribs k*,$source-*]
set selCells [curCellSelection $win]
set tmpRows [extractColFromCellList $selCells $source]
#
# Remove source from the list of stretchable columns
# if it was explicitly specified as stretchable
#
if {[string first $data(-stretch) "all"] != 0} {
set sourceIsStretchable 0
set stretchableCols {}
foreach elem $data(-stretch) {
if {[string first $elem "end"] != 0 && $elem == $source} {
set sourceIsStretchable 1
} else {
lappend stretchableCols $elem
}
}
set data(-stretch) $stretchableCols
}
#
# Build two lists of column numbers, neeeded
# for shifting some elements of the data array
#
if {$source < $target} {
for {set n $source} {$n < $target1} {incr n} {
lappend oldCols [expr {$n + 1}]
lappend newCols $n
}
} else {
for {set n $source} {$n > $target} {incr n -1} {
lappend oldCols [expr {$n - 1}]
lappend newCols $n
}
}
#
# Remove the trace from the array element data(activeCol) because otherwise
# the procedure moveColData won't work if the selection type is cell
#
trace vdelete data(activeCol) w [list tablelist::activeTrace $win]
#
# Move the elements of data and attribs corresponding
# to the columns in oldCols to the elements corresponding
# to the columns with the same indices in newCols
#
foreach oldCol $oldCols newCol $newCols {
moveColData data data imgs $oldCol $newCol
moveColAttribs attribs attribs $oldCol $newCol
set selCells [replaceColInCellList $selCells $oldCol $newCol]
}
#
# Move the elements of data and attribs corresponding
# to source to the elements corresponding to target1
#
moveColData tmpData data imgs $source $target1
moveColAttribs tmpAttribs attribs $source $target1
set selCells [deleteColFromCellList $selCells $target1]
foreach row $tmpRows {
lappend selCells $row,$target1
}
#
# If the column given by source was explicitly specified as
# stretchable then add target1 to the list of stretchable columns
#
if {[string first $data(-stretch) "all"] != 0 && $sourceIsStretchable} {
lappend data(-stretch) $target1
sortStretchableColList $win
}
#
# Update the item list
#
set newItemList {}
foreach item $data(itemList) {
set sourceText [lindex $item $source]
set item [lreplace $item $source $source]
set item [linsert $item $target1 $sourceText]
lappend newItemList $item
}
set data(itemList) $newItemList
#
# Update the list variable if present
#
condUpdateListVar $win
#
# Set up and adjust the columns, and rebuild
# the lists of the column fonts and tag names
#
setupColumns $win $data(-columns) 0
makeColFontAndTagLists $win
makeSortAndArrowColLists $win
adjustColumns $win {} 0
#
# Reconfigure the relevant column labels
#
foreach col [lappend newCols $target1] {
reconfigColLabels $win imgs $col
}
#
# Redisplay the items
#
redisplay $win 0 $selCells
#
# Restore the trace set on the array element data(activeCol)
# and enforce the execution of the activeTrace command
#
trace variable data(activeCol) w [list tablelist::activeTrace $win]
set data(activeCol) $data(activeCol)
return ""
}
|