diff options
author | hobbs <hobbs> | 2000-01-21 03:54:57 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-01-21 03:54:57 (GMT) |
commit | db3d60731415c663023db4b2742ae5d4b94f4a39 (patch) | |
tree | 1c516849072792da37411bc605510c9d4e12cd01 /library/text.tcl | |
parent | 77936f61de844b8c795063558eda7de3508cdd7b (diff) | |
download | tk-db3d60731415c663023db4b2742ae5d4b94f4a39.zip tk-db3d60731415c663023db4b2742ae5d4b94f4a39.tar.gz tk-db3d60731415c663023db4b2742ae5d4b94f4a39.tar.bz2 |
* library/text.tcl: fixed double-click selection behavior where
there were embedded windows/widgets in the same line. [Bug: 3989]
Diffstat (limited to 'library/text.tcl')
-rw-r--r-- | library/text.tcl | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/library/text.tcl b/library/text.tcl index 5df8bb5..557fffa 100644 --- a/library/text.tcl +++ b/library/text.tcl @@ -3,7 +3,7 @@ # This file defines the default bindings for Tk text widgets and provides # procedures that help in implementing the bindings. # -# RCS: @(#) $Id: text.tcl,v 1.8 2000/01/06 02:22:24 hobbs Exp $ +# RCS: @(#) $Id: text.tcl,v 1.9 2000/01/21 03:54:57 hobbs Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -986,9 +986,15 @@ proc tkTextNextPos {w start op} { set text "" set cur $start while {[$w compare $cur < end]} { - set text "$text[$w get $cur "$cur lineend + 1c"]" + set text $text[$w get $cur "$cur lineend + 1c"] set pos [$op $text 0] if {$pos >= 0} { + ## Adjust for embedded windows and images + ## dump gives us 3 items per window/image + set dump [$w dump -image -window $start "$start + $pos c"] + if {[llength $dump]} { + set pos [expr {$pos + ([llength $dump]/3)}] + } return [$w index "$start + $pos c"] } set cur [$w index "$cur lineend +1c"] @@ -1009,13 +1015,24 @@ proc tkTextPrevPos {w start op} { set text "" set cur $start while {[$w compare $cur > 0.0]} { - set text "[$w get "$cur linestart - 1c" $cur]$text" + set text [$w get "$cur linestart - 1c" $cur]$text set pos [$op $text end] if {$pos >= 0} { + ## Adjust for embedded windows and images + ## dump gives us 3 items per window/image + set dump [$w dump -image -window "$cur linestart" "$start - 1c"] + if {[llength $dump]} { + ## This is a hokey extra hack for control-arrow movement + ## that should be in a while loop to be correct (hobbs) + if {[$w compare [lindex $dump 2] > \ + "$cur linestart - 1c + $pos c"]} { + incr pos -1 + } + set pos [expr {$pos + ([llength $dump]/3)}] + } return [$w index "$cur linestart - 1c + $pos c"] } set cur [$w index "$cur linestart - 1c"] } return 0.0 } - |