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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
|
# ts_edit.tcl
# ts internal editor
#
# string handling
proc TedNextWordOrChar {str start} {
set str [string range $str $start end]
regsub -all -- {\\} $str # str
if [regexp -indices {.[a-zA-Z0-9]*[ \n\t]*[^ \t\n]} $str result] {
return [expr [lindex $result 1] + $start]
}
}
proc TedReadFile {w} {
global ted params
if {$ted($w,file) == "" || [file isdir $ted($w,file)]} {
append ted($w,file) "##noname##"
wm title $w "$ted($w,title) [cutdir $ted($w,file)]"
}
if [file exists $ted($w,file)] {
$w.text delete 1.0 end
set id [open $ted($w,file) r]
$w.text insert end [read -nonewline $id]
# while {[gets $id s]!=-1} {
# $w.text insert end $s\n
# }
close $id
if [info exists gparams(bak)] {
if {$gparams(bak)} {
TedSave $w [file rootname $ted($w,file)].bak
}
}
}
for {set i 1} {[$w.text compare $i.0 < end]} {incr i} {
TedHandleTags $w [$w.text index $i.0]
}
}
proc TedNew {w} {
global ted
$w.text delete 0.1 end
set ted($w,file) ""
TedReadFile $w
}
proc TedSave {w filename} {
global ted
if {$filename != ""} {
set color [lindex [$w.save configure -foreground] 4]
$w.save configure -foreground Red
update idletasks
debug "TedSave: $filename :"
set id [open $filename w]
for {set i 1} {[$w.text compare $i.0 < end]} {incr i} {
set s [$w.text get $i.0 "$i.0 lineend"]
puts $id $s
}
close $id
set ted($w,stsave) 0
$w.save configure -foreground $color
}
}
proc TedSaveAs {w question} {
global ted params
if {$question || [file tail $ted($w,file)] == "##noname##"} {
set x [winfo rootx $w]
set y [winfo rooty $w]
if {![FileDialog +$x+$y "Save File" $ted($w,ext) ted($w,file)]} {
return
}
debug "TedSaveAs: $ted($w,file)"
wm title $w "$ted($w,title) [cutdir $ted($w,file)]"
# In cause of changing filename of active edit file: correct
set params(Edit_file) $ted($w,file)
}
TedSave $w $ted($w,file)
}
proc TedAskSave {w} {
global ted
if $ted($w,stsave) {
set x [winfo rootx $w]
set y [winfo rooty $w]
switch [Dialog .dlg +$x+$y Save \
"Edit file $ted($w,file) has been changed. Save?" \
warning 0 2 {Yes <Any-y>} {No <Any-n>} {Cancel}] {
0 {TedSaveAs $w 0}
1 {}
2 {return 0}
}
}
return 1
}
proc TedAutoSave {w} {
global ted
if {![winfo exists $w]} {return}
if {$ted($w,autosave)} {
debug "AutoSave"
if {$ted($w,stsave)} {
TedSaveAs $w 0
sync
}
after $ted($w,autos_interval) [list TedAutoSave $w]
}
}
proc TedExit {w} {
global ted
if {![TedAskSave $w]} {return 0}
unset ted($w,file)
unset ted($w,ext)
xfocus .
catch {destroy .hint}
destroy $w
return 1
}
proc TedCut {w} {
global ted
clipboard clear
set idx [$w.text index sel.first]
catch {
clipboard append [$w.text get sel.first sel.last]
set s [$w.text get sel.first sel.last]
set ted($w,undobuf) $s
set ted($w,undo) \
"$w.text insert [$w.text index sel.first] \$ted($w,undobuf)"
$w.text delete sel.first sel.last
}
TedHandleTags $w $idx
TedHandleTags $w [$w.text index insert]
set ted($w,stsave) 1
set ted($w,pos) [$w.text index insert]
$w.text see insert
}
proc TedCopy {w} {
global ted
clipboard clear
catch {
clipboard append [$w.text get sel.first sel.last]
$w.text tag remove sel sel.first sel.last
}
}
proc TedPaste {w} {
global ted ted_buf
set idx [$w.text index insert]
catch {
$w.text insert insert [selection get -selection CLIPBOARD]
}
for {} {[$w.text compare $idx <= insert]} {set idx [$w.text index $idx+1l]} {
TedHandleTags $w $idx
}
set ted($w,pos) [$w.text index insert]
$w.text see insert
set ted($w,stsave) 1
}
proc TedDelMark {w} {
global ted
set l [$w.text tag ranges sel]
if {[llength $l] != 2} {return}
eval $w.text delete $l
set ted($w,stsave) 1
set ted($w,pos) [$w.text index insert]
$w.text yview -pickplace insert
}
proc TedInsSel {w} {
global ted
set s [selection get STRING]
$w.text insert insert $s
$w.text yview -pickplace insert
}
proc TedSearchDlg {w geom replace} {
global ted_sdlg
toplevel $w
wm geometry $w $geom
wm transient $w .
if $replace {
set title "Search and Replace expression"
} else {
set title "Search expression"
}
wm title $w $title
label $w.title -text $title
pack $w.title -fill x
frame $w.s
pack $w.s -fill x
label $w.s.l -text "Text to find" -underline 0 -width 15 -anchor w
entry $w.s.e -textvariable ted_sdlg(search) -width 15 \
-relief sunken -bd 1
pack $w.s.l -side left -fill x
pack $w.s.e -side left -fill x -expand true -padx 5
frame $w.r
if $replace {pack $w.r -fill x}
label $w.r.l -text "New text" -underline 0 -width 15 -anchor w
entry $w.r.e -textvariable ted_sdlg(replace) -width 15 \
-relief sunken -bd 1
pack $w.r.l -side left -fill x
pack $w.r.e -side left -fill x -expand true -padx 5
frame $w.b
pack $w.b -side bottom -fill x
frame $w.ex1 -bd 1
pack $w.ex1 -side left -fill both -expand true -pady 5
checkbutton $w.ex1.c -text "Case sensitive" -underline 0 -anchor w \
-variable ted_sdlg(case)
pack $w.ex1.c -fill x -expand true
if $replace {
checkbutton $w.ex1.a -text "Replace all" -underline 0 -anchor w \
-variable ted_sdlg(all)
checkbutton $w.ex1.q -text "Prompt on replace" -underline 0 -anchor w \
-variable ted_sdlg(prompt)
pack $w.ex1.a $w.ex1.q -fill x
}
frame $w.b.fok -relief sunken -bd 1
pack $w.b.fok -side left -padx 5 -pady 5
button $w.b.ok -text OK -command {set ted_sdlg(ok) 1}
button $w.b.cancel -text Cancel -command {set ted_sdlg(ok) 0}
pack $w.b.ok -padx 5 -pady 5 -in $w.b.fok
pack $w.b.cancel -padx 5 -pady 5 -side left
if $replace {
set el [list $w.s.e $w.r.e]
bind $w.s.e <Return> "focus $w.r.e"
bind $w.s.e <Any-Tab> "focus $w.r.e"
bind $w.r.e <Return> "focus $w.s.e"
bind $w.r.e <Any-Tab> "focus $w.s.e"
} else {
set el [list $w.s.e]
bind $w.s.e <Return> { }
bind $w.s.e <Tab> { }
}
foreach e $el {
bind $e <Control-Return> {set ted_sdlg(ok) 1}
bind $e <Escape> {set ted_sdlg(ok) 0}
bind $e <Alt-Any-c> {
set ted_sdlg(case) [expr ! $ted_sdlg(case)]
}
bind $e <Alt-Any-r> {
set ted_sdlg(all) [expr ! $ted_sdlg(all)]
}
bind $e <Alt-Any-p> {
set ted_sdlg(prompt) [expr ! $ted_sdlg(prompt)]
}
bind $e <Left> {
set i [%W index insert]
if {$i > 0} {incr i -1}
%W icursor $i
}
bind $e <Right> {
set i [%W index insert]
set l [string length [%W get]]
if {$i < $l} {incr i}
%W icursor $i
}
}
set old_focus [focus]
focus $w.s.e
grab $w
tkwait variable ted_sdlg(ok)
grab release $w
focus $old_focus
destroy $w
return $ted_sdlg(ok)
}
proc TedSearch {w} {
global ted ted_sdlg
set ted_sdlg(search) ""
set ted_sdlg(case) 0
catch {
set ted_sdlg(search) $ted($w,s_search)
set ted_sdlg(case) $ted($w,s_case)
}
set x [winfo rootx $w.text]
set y [winfo rooty $w.text]
if [TedSearchDlg .tedsd +$x+$y 0] {
set ted($w,s_case) $ted_sdlg(case)
if $ted($w,s_case) {
set ted($w,s_search) $ted_sdlg(search)
} else {
set ted($w,s_search) [string tolower $ted_sdlg(search)]
}
set ted($w,replace) 0
TedReplaceNext $w
}
}
proc TedReplace {w} {
global ted ted_sdlg
set ted_sdlg(search) ""
set ted_sdlg(case) 0
set ted_sdlg(prompt) 1
set ted_sdlg(all) 0
catch {
set ted_sdlg(search) $ted($w,r_search)
set ted_sdlg(replace) $ted($w,r_replace)
set ted_sdlg(case) $ted($w,r_case)
set ted_sdlg(prompt) $ted($w,r_prompt)
set ted_sdlg(all) $ted($w,r_all)
}
set x [winfo rootx $w.text]
set y [winfo rooty $w.text]
if [TedSearchDlg .tedsd +$x+$y 1] {
set ted($w,r_case) $ted_sdlg(case)
if $ted($w,r_case) {
set ted($w,r_search) $ted_sdlg(search)
} else {
set ted($w,r_search) [string tolower $ted_sdlg(search)]
}
set ted($w,r_replace) $ted_sdlg(replace)
set ted($w,r_prompt) $ted_sdlg(prompt)
set ted($w,r_all) $ted_sdlg(all)
set ted($w,replace) 1
if $ted($w,r_all) {
$w.text mark set insert 1.0
while {[TedReplaceNext $w]} { }
} else {
TedReplaceNext $w
}
}
}
proc TedReplaceNext {w} {
global ted
if ![info exists ted($w,replace)] return
if $ted($w,replace) {
# Replace part
if {$ted($w,r_search) == ""} return
set search $ted($w,r_search)
if $ted($w,r_case) {
set case 1
} else {
set case 0
}
$w.text mark set pos [$w.text index insert]
scan [$w.text index insert] %d i
scan [$w.text index end] %d numLines
while {$i < $numLines} {
set s [$w.text get pos "pos lineend"]
if {! $case} {
set s [string tolower $s]
}
set res [string first $ted($w,r_search) $s]
if {$res >= 0} {
set l [string length $ted($w,r_search)]
$w.text tag add repl "pos + $res c" \
"pos + $res c + $l c"
set repl 0
if $ted($w,r_prompt) {
$w.text see repl.first
$w.question configure -text "Replace this occurance (y/n/esc)?" \
-fg red
bind $w.question <Any-y> "set ted($w,dlg_ok) 0"
bind $w.question <Any-n> "set ted($w,dlg_ok) 1"
bind $w.question <Escape> "set ted($w,dlg_ok) 2"
set old_focus [focus]
focus $w.question
update idletasks
grab $w.question
tkwait variable ted($w,dlg_ok)
grab release $w.question
focus $old_focus
$w.question configure -text ""
bind $w.question <Any-y> {# none}
bind $w.question <Any-n> {# none}
bind $w.question <Escape> {# none}
set repl $ted($w,dlg_ok)
}
$w.text tag remove repl "pos + $res c" \
"pos + $res c + $l c"
if {$repl == 2} {return 0} ; # Interrupt search
$w.text mark set insert \
"pos + $res c + $l c"
if {$repl == 0} {
$w.text delete "pos + $res c" \
"pos + $res c + $l c"
$w.text insert "pos + $res c" $ted($w,r_replace)
$w.text see insert
set ted($w,stsave) 1
}
return 1
}
incr i
$w.text mark set pos $i.0
}
return 0
} else {
# Search part
if {$ted($w,s_search) == ""} return
set search $ted($w,s_search)
if $ted($w,s_case) {
set case 1
} else {
set case 0
}
$w.text mark set pos [$w.text index insert]
scan [$w.text index insert] %d i
scan [$w.text index end] %d numLines
while {$i < $numLines} {
set s [$w.text get pos "pos lineend"]
if {! $case} {
set s [string tolower $s]
}
set res [string first $ted($w,s_search) $s]
if {$res >= 0} {
$w.text mark set insert \
"pos + $res c + [string length $ted($w,s_search)] c"
$w.text yview -pickplace insert
return 1
}
incr i
$w.text mark set pos $i.0
}
return 0
}
}
proc TedGoto {w} {
global ted
set r(goto) ""
set x [winfo rootx $w.text]
set y [winfo rooty $w.text]
if [InpDlg r .dlg "Goto Line" +$x+$y "Goto Line" {
{"Line:" int 4 goto}
} r] {
$w.text mark set insert $r(goto).0
$w.text yview -pickplace insert
set ted($w,pos) [$w.text index insert]
}
}
proc TedContextHelp {w} {
global ted hlp
set s [$w.text get "insert wordstart" "insert wordend"]
puts $s
### set i [lsearch $hlp(idx_list) $s*]
# if {$i < 0} {return}
# set j $i
# incr j
# while {[string match "$s*" [lindex $hlp(idx_list) $j]]} {incr j}
# incr j -1
# if {$i < $j} {
# set l {}
# for {set k $i} {$k <= $j} {incr k} {
# lappend l [lindex [split [lindex $hlp(idx_list) $k] \xff] 0]
# }
# if {[set k \
# [ListDlg .hlpdia $hlp(dlg_geom) "Select Item" $l] \
# ] > -1 } {
# set i [expr $i + $k]
# } else {
# return
# }
# }
# help [lindex [split [lindex $hlp(idx_list) $i] \xff] 1]
}
# Tag operations
proc TedChkComment {w} {
global ted
}
proc TedHasTag {w idx tag} {
debug "TedHasTag $idx $tag"
set range [$w.text tag prevrange $tag $idx]
set end [lindex $range 1]
debug "prevrange: $range"
if {[llength $range] == 0 || [$w.text compare $end < $idx]} {
set range [$w.text tag nextrange $tag $idx]
if {[llength $range] == 0 || [$w.text compare $idx < [lindex $range 0]]} {
return 0
}
}
return 1
}
# Handle Tags
# Comment: %...\n
# Environment: \begin{...} or \end{...}
proc TedHandleTags {w idx} {
global ted
$w.text tag remove comment "$idx linestart" "$idx lineend"
set s [$w.text get "$idx linestart" "$idx lineend"]
if {[set i [chkcode $s %]] >= 0} {
$w.text tag add comment "$idx linestart + $i c" "$idx lineend"
}
if [regexp -indices {\\(begin|end)(\[[^]]*\])?\{([^\}]*)\}} \
$s pos x opt env] {
$w.text tag add env "$idx linestart + [lindex $pos 0] c" \
"$idx linestart+[lindex $pos 1]c+1c"
}
}
# Insert operations
proc TedHandleWrap {w {del ""}} {
global ted
if {!$ted($w,wrap)} return
set line [$w.text get "insert linestart" "insert lineend"]
debug $line
set width [$w.text cget -width]
set l [string length $line]
if {$l >= $width} {
set l1 [string length [$w.text get "insert + 1 l linestart" \
"insert + 1 l lineend"]]
debug $l1
if {[set i [string last " " [string range $line 0 $width]]] > 0} {
$w.text mark set ml "insert linestart"
# Erst Newline anfgen, dann lschen, damit Cursor auf gleicher
# Zeile bleibt.
$w.text insert "insert linestart + $i c + 1 c" \n
set deb [$w.text get "insert linestart" "insert lineend"]
debug "insert in line: $deb"
set deb [$w.text get "ml linestart + $i c"]
debug "del ml linestart + $i c: [$w.text index ml] $deb"
$w.text delete "ml + $i c"
TedHandleTags $w [$w.text index ml]
TedHandleTags $w [$w.text index "ml+1l"]
if {$del == "" && $l1 + $l - $i < $width && $l1 > 0} {
set cur [$w.text index insert]
$w.text insert "ml + 1 l lineend" " "
set deb [$w.text get "ml + 1 l lineend"]
debug "del ml: [$w.text index ml] $deb"
$w.text delete "ml + 1 l lineend"
$w.text mark set insert $cur
}
}
}
}
proc TedInsert {w c} {
global ted
switch -- $c {
\r {$w.text insert insert \n}
\b {$w.text delete "insert - 1 c"}
\t {$w.text insert insert $c}
default {
if {$c < " "} {
set ted($w,pos) [$w.text index insert]
return
}
$w.text insert insert $c
}
}
set line [$w.text get "insert linestart" "insert lineend"]
# Handle tags
switch -- $c {
\r {
TedHandleTags $w [$w.text index "insert - 1 l"]
TedHandleTags $w [$w.text index insert]
}
\} {
# Add \end{..} if possible
set hastag [TedHasTag $w [$w.text index insert-1c] env]
TedHandleTags $w [$w.text index insert]
if {$ted($w,autoext) && [string compare $c \}] == 0 && \
[$w.text compare insert == "insert lineend"]} {
if {[regexp {\\begin(\[[^]]*\])?\{([^\}]*)\}$} $line pos opt env] \
&& !$hastag} {
$w.text insert insert "\n\n\\end\{$env\}"
TedHandleTags $w [$w.text index insert]
$w.text mark set insert "insert - 1 l"
}
}
}
default {
TedHandleTags $w [$w.text index insert]
}
}
TedHandleWrap $w
if {$c != "\000"} {
set ted($w,stsave) 1
}
TedHandleTags $w [$w.text index insert]
set ted($w,pos) [$w.text index insert]
$w.text yview -pickplace insert
}
# Delete operations
proc TedBackSpace {w} {
global ted
if {[$w.text tag nextrange sel 1.0 end] != ""} {
set s [$w.text get sel.first sel.last]
set ted($w,undobuf) $s
set ted($w,undo) \
"$w.text insert [$w.text index sel.first] \$ted($w,undobuf)"
set idx [$w.text index sel.first]
$w.text delete sel.first sel.last
TedHandleWrap $w del
TedHandleTags $w $idx
} else {
set s [$w.text get insert-1c]
set ted($w,undobuf) $s
set ted($w,undo) "$w.text insert [$w.text index insert] \$ted($w,undobuf)"
$w.text delete insert-1c
TedHandleWrap $w del
TedHandleTags $w [$w.text index insert]
}
set ted($w,stsave) 1
set ted($w,pos) [$w.text index insert]
$w.text see insert
}
proc TedDelete {w} {
global ted
if {[$w.text tag nextrange sel 1.0 end] != ""} {
set s [$w.text get sel.first sel.last]
set ted($w,undobuf) $s
set ted($w,undo) \
"$w.text insert [$w.text index sel.first] \$ted($w,undobuf)"
set idx [$w.text index sel.first]
$w.text delete sel.first sel.last
TedHandleWrap $w del
TedHandleTags $w $idx
} else {
set s [$w.text get insert]
set ted($w,undobuf) $s
set ted($w,undo) "$w.text insert [$w.text index insert] \$ted($w,undobuf)"
$w.text delete insert
TedHandleWrap $w del
TedHandleTags $w [$w.text index insert]
}
set ted($w,stsave) 1
set ted($w,pos) [$w.text index insert]
$w.text see insert
}
proc TedDelLineEnd {w} {
global ted
set s [$w.text get insert {insert lineend}]
set ted($w,undobuf) $s
set ted($w,undo) "$w.text insert [$w.text index insert] \$ted($w,undobuf)"
$w.text delete insert {insert lineend}
TedHandleTags $w [$w.text index insert]
set ted($w,stsave) 1
set ted($w,pos) [$w.text index insert]
$w.text see insert
}
proc TedDelLine {w} {
global ted
set s [$w.text get {insert linestart} {insert linestart+1l}]
set ted($w,undobuf) $s
set ted($w,undo) \
"$w.text insert [$w.text index "insert linestart"] \$ted($w,undobuf)"
$w.text delete {insert linestart} {insert linestart+1l}
set ted($w,stsave) 1
set ted($w,pos) [$w.text index insert]
$w.text see insert
}
proc TedDelWord {w} {
global ted
set pos [tkTextNextPos $w.text insert TedNextWordOrChar]
puts $pos
set s [$w.text get insert $pos]
set ted($w,undobuf) $s
set ted($w,undo) "$w.text insert [$w.text index insert] \$ted($w,undobuf)"
$w.text delete insert $pos
TedHandleTags $w [$w.text index insert]
set ted($w,stsave) 1
set ted($w,pos) [$w.text index insert]
$w.text see insert
}
proc TedUndo {w} {
global ted
set idx [lindex $ted($w,undo) 2]
eval $ted($w,undo)
set ted($w,undo) {}
TedHandleTags $w $idx
set ted($w,pos) [$w.text index insert]
$w.text see insert
}
# Cursor position
proc TedUpDownLine {w n} {
global ted
set i [$w.text index insert]
scan $i "%d.%d" line char
if {[string compare $ted($w,prevPos) $i] != 0} {
set ted($w,charPos) $char
}
set new [$w.text index [expr $line + $n].$ted($w,charPos)]
if {[$w.text compare $new == end] ||
[$w.text compare $new == "insert linestart"]} {
set new $i
}
set ted($w,prevPos) $new
return $new
}
proc TedSetCursor {w pos} {
global ted
if [$w.text compare $pos == end] {
set pos {end - 1 chars}
}
$w.text mark set insert $pos
$w.text tag remove sel 1.0 end
set ted($w,pos) [$w.text index insert]
$w.text see insert
}
# Mouse
proc TedButton1 {w x y} {
global ted
set ted($w,selectMode) char
tkTextButton1 $w.text $x $y
set ted($w,pos) [$w.text index insert]
}
# Selection
proc TedKeySelect {w new} {
global ted
if {[$w.text tag nextrange sel 1.0 end] == ""} {
if [$w.text compare $new < insert] {
$w.text tag add sel $new insert
} else {
$w.text tag add sel insert $new
}
$w.text mark set anchor insert
} else {
if [$w.text compare $new < anchor] {
set first $new
set last anchor
} else {
set first anchor
set last $new
}
$w.text tag remove sel 1.0 $first
$w.text tag add sel $first $last
$w.text tag remove sel $last end
}
$w.text mark set insert $new
set ted($w,pos) [$w.text index insert]
$w.text see insert
update idletasks
}
proc TedMouseSelect {w x y} {
global ted
set ted($w,x) %x
set ted($w,y) %y
set ted($w,selectMode) char
TedSelectTo $w $x $y
}
proc TedSelectTo {w x y} {
global ted tkPriv
set cur [tkTextClosestGap $w.text $x $y]
if [catch {$w.text index anchor}] {
$w.text mark set anchor $cur
}
set anchor [$w.text index anchor]
if {[$w.text compare $cur != $anchor] || (abs($tkPriv(pressX) - $x) >= 3)} {
set tkPriv(mouseMoved) 1
}
switch $ted($w,selectMode) {
char {
if [$w.text compare $cur < anchor] {
set first $cur
set last anchor
} else {
set first anchor
set last $cur
}
}
word {
if [$w.text compare $cur < anchor] {
set first [tkTextPrevPos $w.text "$cur + 1c" tcl_wordBreakBefore]
set last [tkTextNextPos $w.text "anchor" tcl_wordBreakAfter]
} else {
set first [tkTextPrevPos $w.text anchor tcl_wordBreakBefore]
set last [tkTextNextPos $w.text "$cur - 1c" tcl_wordBreakAfter]
}
}
line {
if [$w.text compare $cur < anchor] {
set first [$w.text index "$cur linestart"]
set last [$w.text index "anchor - 1c lineend + 1c"]
} else {
set first [$w.text index "anchor linestart"]
set last [$w.text index "$cur lineend + 1c"]
}
}
}
if {$tkPriv(mouseMoved) || ($ted($w,selectMode) != "char")} {
$w.text mark set insert $last
$w.text tag remove sel 0.0 $first
$w.text tag add sel $first $last
$w.text tag remove sel $last end
update idletasks
}
set ted($w,pos) [$w.text index insert]
}
proc TextBind {w} {
bind $w.text <1> "TedButton1 $w %x %y"
bind $w.text <B1-Motion> "TedMouseSelect $w %x %y"
bind $w.text <Up> "TedSetCursor $w \[TedUpDownLine $w -1\]"
bind $w.text <Down> "TedSetCursor $w \[TedUpDownLine $w 1\]"
bind $w.text <Left> "TedSetCursor $w insert-1c"
bind $w.text <Right> "TedSetCursor $w insert+1c"
bind $w.text <Prior> "TedSetCursor $w \[tkTextScrollPages $w.text -1\]"
bind $w.text <Next> "TedSetCursor $w \[tkTextScrollPages $w.text 1\]"
bind $w.text <Home> "TedSetCursor $w {insert linestart}"
bind $w.text <End> "TedSetCursor $w {insert lineend}"
bind $w.text <Control-Home> "TedSetCursor $w 1.0"
bind $w.text <Control-End> "TedSetCursor $w end-1c"
bind $w.text <Shift-Left> "TedKeySelect $w \[$w.text index insert-1c\]"
bind $w.text <Shift-Right> "TedKeySelect $w \[$w.text index insert+1c\]"
bind $w.text <Shift-Up> "TedKeySelect $w \[TedUpDownLine $w -1]"
bind $w.text <Shift-Down> "TedKeySelect $w \[TedUpDownLine $w 1]"
bind $w.text <Shift-Prior> "TedKeySelect $w \[tkTextScrollPages $w.text -1]"
bind $w.text <Shift-Next> "TedKeySelect $w \[tkTextScrollPages $w.text 1]"
bind $w.text <Shift-Home> "TedKeySelect $w {insert linestart}"
bind $w.text <Shift-End> "TedKeySelect $w {insert lineend}"
bind $w.text <Control-Left> \
"TedSetCursor $w \[tkTextPrevPos $w.text insert tcl_startOfPreviousWord\]"
bind $w.text <Control-Right> \
"TedSetCursor $w \[tkTextNextPos $w.text insert TedNextWordOrChar\]"
bind $w.text <Control-Up> \
"TedSetCursor $w \[tkTextPrevPara $w.text insert\]"
bind $w.text <Control-Down> \
"TedSetCursor $w \[tkTextNextPara $w.text insert\]"
bind $w.text <Delete> "TedDelete $w"
bind $w.text <BackSpace> "TedBackSpace $w"
bind $w.text <Control-k> "TedDelLineEnd $w"
bind $w.text <Control-t> "TedDelWord $w"
bind $w.text <Control-y> "TedDelLine $w"
bind $w.text <Control-u> "TedUndo $w"
bind $w.text <<Cut>> "TedCut $w"
bind $w.text <<Copy>> "TedCopy $w"
bind $w.text <<Paste>> "TedPaste $w"
bind $w.text <Key-F2> "TedSaveAs $w 0"
bind $w.text <Control-F2> "TedSaveAs $w 1"
bind $w.text <Alt-F3> "TedExit $w"
bind $w.text <Meta-F3> "TedExit $w"
bind $w.text <Any-Key> "TedInsert $w %A"
bind $w.text <Control-q><Any-a> "TedReplace $w"
bind $w.text <Control-q><Any-f> "TedSearch $w"
bind $w.text <Control-q><Any-l> "TedGoto $w"
bind $w.text <Control-l> "TedReplaceNext $w"
bind $w.text <Control-e> "set ted($w,autoext) \[expr !\$ted($w,autoext)\]"
bind $w.text <Control-w> "set ted($w,wrap) \[expr !\$ted($w,wrap)\]"
bind $w.text <Alt-KeyPress> {# nothing}
bind $w.text <Meta-KeyPress> {# nothing}
bind $w.text <Control-KeyPress> {# nothing}
bind $w.text <Escape> {# nothing}
}
# Edit Widget
proc tedit {w geometry title {filename ""} {line 1}} {
global params ted ted_buf gparams
debug "line: $line"
toplevel $w
wm group . $w
set ted($w,file) $filename
set ted($w,ext) .tex
set ted($w,stsave) 0
set ted($w,wrap) 0
set ted($w,font) fixed
set ted($w,autosave) 0
set ted($w,autoext) 0
set ted($w,autos_interval) 60000
if [info exists gparams(save)] {
set ted($w,autosave) $gparams(save)
}
if [info exists gparams(interval)] {
set ted($w,autos_interval) [expr $gparams(interval)*1000]
}
if [info exists gparams(wrap)] {
set ted($w,wrap) $gparams(wrap)
}
if [info exists gparams(font)] {
set ted($w,font) $gparams(font)
}
if [info exists gparams(autoext)] {
set ted($w,autoext) $gparams(autoext)
}
set ted($w,prevPos) {}
set ted($w,block) 0
set ted($w,title) $title
wm geometry $w $geometry
wm title $w "$title [cutdir $filename]"
# Menu
menu $w.menubar
$w config -menu $w.menubar
foreach m {File Edit Option} {
set $m [menu $w.menubar.m$m -tearoff 0]
$w.menubar add cascade -label $m -underline 0 -menu $w.menubar.m$m
}
menu $w.menubar.help -tearoff 0
$w.menubar add cascade -label Help -underline 0 -menu $w.menubar.help
$File add command -label "New" -underline 0 -command "TedNew $w"
$File add command -label "Save" -accelerator F2 \
-command "TedSaveAs $w 0"
$File add command -label "Save as..." -accelerator Ctrl-F2 \
-command "TedSaveAs $w 1"
$File add separator
$File add command -label "Close" -underline 1 -accelerator Alt-F3 \
-command "TedExit $w"
$Edit add command -label "Undo" -accelerator ^u \
-command "TedPaste $w"
$Edit add command -label "Cut" -accelerator ^x \
-command "TedCut $w"
$Edit add command -label "Copy" -accelerator ^c \
-command "TedCopy $w"
$Edit add command -label "Paste" -accelerator ^v \
-command "TedPaste $w"
$Edit add separator
$Edit add command -label "Go to..." -accelerator "^Q l" \
-command "TedGoto $w"
$Edit add command -label "Search..." -accelerator "^Q f" \
-command "TedSearch $w"
$Edit add command -label "Replace..." -accelerator "^Q a" \
-command "TedReplace $w"
$Edit add command -label "Next occurance" -accelerator "^L" \
-command "TedReplaceNext $w"
$Option add checkbutton -label "Wrap" -accelerator "^W" \
-variable ted($w,wrap)
$Option add checkbutton -label "Autosave" \
-variable ted($w,autosave) -command "TedAutoSave $w"
$Option add separator
$Option add command -label "Editor settings..." \
-command EditOpt
frame $w.buttons
button $w.bnew -bitmap @$params(icon_dir)/new.ico -command "TedNew $w"
button $w.bopen -bitmap @$params(icon_dir)/edit1.ico -command "Edit"
button $w.bsave -bitmap @$params(icon_dir)/save2.ico \
-command "TedSaveAs $w 0"
button $w.bfind -bitmap @$params(icon_dir)/find.ico -command "TedSearch $w"
button $w.bclose -bitmap @$params(icon_dir)/door1.ico -command "TedExit $w"
pack $w.bnew $w.bopen $w.bsave $w.bfind -in $w.buttons -side left
pack $w.bclose -in $w.buttons -side right
bind $w.bnew <Enter> {ButtonHint %W "New Document"}
bind $w.bnew <Leave> {DelButtonHint}
bind $w.bopen <Enter> {ButtonHint %W "New Editor"}
bind $w.bopen <Leave> {DelButtonHint}
bind $w.bsave <Enter> {ButtonHint %W "Save"}
bind $w.bsave <Leave> {DelButtonHint}
bind $w.bfind <Enter> {ButtonHint %W "Search"}
bind $w.bfind <Leave> {DelButtonHint}
bind $w.bclose <Enter> {ButtonHint %W "Close"}
bind $w.bclose <Leave> {DelButtonHint}
text $w.text -yscrollcommand "$w.textsb set" -wrap char \
-font [list $gparams(font) $gparams(fontsize) $gparams(fontstyle)]
if [info exists gparams(bgnormal)] {
$w.text config -bg $gparams(bgnormal)
}
if [info exists gparams(fgnormal)] {
$w.text config -insertbackground $gparams(fgnormal)
$w.text config -fg $gparams(fgnormal)
}
if [info exists gparams(fgcomment)] {
$w.text tag configure comment -foreground $gparams(fgcomment)
}
if {[info exists gparams(fgsearch)] && [info exists gparams(bgsearch)]} {
$w.text tag configure repl -background $gparams(bgsearch) \
-foreground $gparams(fgsearch)
} else {
$w.text tag configure repl -background [$w.text cget -foreground] \
-foreground [$w.text cget -background]
}
if {[info exists gparams(fgenv)]} {
$w.text tag configure env -foreground $gparams(fgenv)
}
scrollbar $w.textsb -command "$w.text yview"
label $w.pos -textvariable ted($w,pos) -relief sunken -bd 1 -width 7 \
-anchor e -font fixed
checkbutton $w.save -text "Changed (F2)" -variable ted($w,stsave) \
-relief sunken -bd 1 -font fixed
checkbutton $w.wrap -text "Wrap (^w)" -variable ted($w,wrap) \
-relief sunken -bd 1 -font fixed
checkbutton $w.autoext -text "Auto \\end (^e)" -variable ted($w,autoext) \
-relief sunken -bd 1 -font fixed
label $w.question -text " " -relief sunken -bd 1 -takefocus 1
grid configure $w.buttons -row 0 -column 0 -columnspan 6 -sticky ew
grid configure $w.text -row 1 -column 0 -columnspan 5 -sticky nsew
grid configure $w.textsb -row 1 -column 5 -sticky ns
grid configure $w.pos -row 2 -column 0
grid configure $w.save -row 2 -column 1
grid configure $w.wrap -row 2 -column 2
grid configure $w.autoext -row 2 -column 3
grid configure $w.question -row 2 -column 4 -columnspan 2 -sticky ew
grid rowconfigure $w 0 -weight 1
foreach i {4} {
grid columnconfigure $w $i -weight 1
}
# Text widget bindings
TextBind $w
bindtags $w.text [list $w.text . all]
update idletasks
foreach l $ted(global_params) {
set flag [lindex $l 0]
set value [lindex $l 1]
set ted($w,$flag) $value
}
TedReadFile $w
debug "line: $line"
$w.text mark set insert $line.0
set ted($w,pos) [$w.text index insert]
$w.text see insert
TedAutoSave $w
xfocus $w.text
}
|