461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
|
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
|
-
+
|
grid columnconfigure $w.f {4 7 10} -minsize 10
grid columnconfigure $w.f 10 -weight 1
grid columnconfigure $w.f {0 1 2 3} -uniform a
grid columnconfigure $w.f {5 6 8 9 11 12} -uniform b
#grid columnconfigure $w.f {11 13 14} -uniform c
text $w.t -width 80 -height 20 -xscrollcommand "$w.sbx set" \
-yscrollcommand "$w.sby set" -font myfont
-yscrollcommand "$w.sby set" -font myfont -tabstyle wordprocessor
ttk::scrollbar $w.sbx -orient horizontal -command "$w.t xview"
ttk::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)"]\]
|