468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
|
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
|
-
+
|
-yscrollcommand "$w.sby set" -font myfont
scrollbar $w.sbx -orient horizontal -command "$w.t xview"
scrollbar $w.sby -orient vertical -command "$w.t yview"
bind $w.t <Key-Escape> [list focus $w]
ttk::label $w.ls -textvariable ::eskil($top,mergeStatus)
addBalloon $w.ls \[[list set ::eskil($top,mergeAncLines)]\]
addBalloon $w.ls \[[list set "::eskil($top,mergeAncLines)"]\]
# Prevent toplevel bindings on keys to fire while in the text widget.
bindtags $w.t [list Text $w.t $w all]
bind $w.t <Key-Left> "break"
bind $w.t <Key-Right> "break"
bind $w.t <Key-Down> "break"
bind $w.t <Key-Up> "break"
|