-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathctext.tcl
1093 lines (901 loc) · 25.9 KB
/
ctext.tcl
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
# By George Peter Staplin
# See also the README for a list of contributors
# RCS: @(#) $Id: ctext.tcl,v 1.7 2008/08/19 21:08:27 georgeps Exp $
package require Tk
package provide ctext 3.2
namespace eval ctext {}
#win is used as a unique token to create arrays for each ctext instance
proc ctext::getAr {win suffix name} {
set arName __ctext[set win][set suffix]
uplevel [list upvar #0 $arName $name]
return $arName
}
proc ctext {win args} {
if {[llength $args] & 1} {
return -code error "invalid number of arguments given to ctext (uneven number after window) : $args"
}
frame $win -class Ctext
set tmp [text .__ctextTemp]
ctext::getAr $win config ar
set ar(-fg) [$tmp cget -foreground]
set ar(-bg) [$tmp cget -background]
set ar(-font) [$tmp cget -font]
set ar(-relief) [$tmp cget -relief]
destroy $tmp
set ar(-yscrollcommand) ""
set ar(-linemap) 1
set ar(-linemapfg) $ar(-fg)
set ar(-linemapbg) $ar(-bg)
set ar(-linemap_mark_command) {}
set ar(-linemap_markable) 1
set ar(-linemap_select_fg) black
set ar(-linemap_select_bg) yellow
set ar(-highlight) 1
set ar(win) $win
set ar(modified) 0
set ar(commentsAfterId) ""
set ar(highlightAfterId) ""
set ar(blinkAfterId) ""
set ar(ctextFlags) [list -yscrollcommand -linemap -linemapfg -linemapbg \
-font -linemap_mark_command -highlight -linemap_markable -linemap_select_fg \
-linemap_select_bg]
array set ar $args
foreach flag {foreground background} short {fg bg} {
if {[info exists ar(-$flag)] == 1} {
set ar(-$short) $ar(-$flag)
unset ar(-$flag)
}
}
#Now remove flags that will confuse text and those that need modification:
foreach arg $ar(ctextFlags) {
if {[set loc [lsearch $args $arg]] >= 0} {
set args [lreplace $args $loc [expr {$loc + 1}]]
}
}
text $win.l -font $ar(-font) -width 1 -height 1 \
-relief $ar(-relief) -fg $ar(-linemapfg) \
-bg $ar(-linemapbg) -takefocus 0
set topWin [winfo toplevel $win]
bindtags $win.l [list $win.l $topWin all]
if {$ar(-linemap) == 1} {
grid $win.l -sticky ns -row 0 -column 0
}
set args [concat $args [list -yscrollcommand [list ctext::event:yscroll $win $ar(-yscrollcommand)]]]
#escape $win, because it could have a space
eval text \$win.t -font \$ar(-font) $args
grid $win.t -row 0 -column 1 -sticky news
grid rowconfigure $win 0 -weight 100
grid columnconfigure $win 1 -weight 100
bind $win.t <Configure> [list ctext::linemapUpdate $win]
bind $win.l <ButtonPress-1> [list ctext::linemapToggleMark $win %y]
bind $win.t <KeyRelease-Return> [list ctext::linemapUpdate $win]
rename $win __ctextJunk$win
rename $win.t $win._t
bind $win <Destroy> [list ctext::event:Destroy $win %W]
bindtags $win.t [linsert [bindtags $win.t] 0 $win]
interp alias {} $win {} ctext::instanceCmd $win
interp alias {} $win.t {} $win
#If the user wants C comments they should call ctext::enableComments
ctext::disableComments $win
ctext::modified $win 0
ctext::buildArgParseTable $win
return $win
}
proc ctext::event:yscroll {win clientData args} {
ctext::linemapUpdate $win
if {$clientData == ""} {
return
}
uplevel #0 $clientData $args
}
proc ctext::event:Destroy {win dWin} {
if {![string equal $win $dWin]} {
return
}
ctext::getAr $win config configAr
catch {after cancel $configAr(commentsAfterId)}
catch {after cancel $configAr(highlightAfterId)}
catch {after cancel $configAr(blinkAfterId)}
catch {rename $win {}}
interp alias {} $win.t {}
ctext::clearHighlightClasses $win
array unset [ctext::getAr $win config ar]
}
#This stores the arg table within the config array for each instance.
#It's used by the configure instance command.
proc ctext::buildArgParseTable win {
set argTable [list]
lappend argTable any -linemap_mark_command {
set configAr(-linemap_mark_command) $value
break
}
lappend argTable {1 true yes} -linemap {
grid $self.l -sticky ns -row 0 -column 0
grid columnconfigure $self 0 \
-minsize [winfo reqwidth $self.l]
set configAr(-linemap) 1
break
}
lappend argTable {0 false no} -linemap {
grid forget $self.l
grid columnconfigure $self 0 -minsize 0
set configAr(-linemap) 0
break
}
lappend argTable any -yscrollcommand {
set cmd [list $self._t config -yscrollcommand [list ctext::event:yscroll $self $value]]
if {[catch $cmd res]} {
return $res
}
set configAr(-yscrollcommand) $value
break
}
lappend argTable any -linemapfg {
if {[catch {winfo rgb $self $value} res]} {
return -code error $res
}
$self.l config -fg $value
set configAr(-linemapfg) $value
break
}
lappend argTable any -linemapbg {
if {[catch {winfo rgb $self $value} res]} {
return -code error $res
}
$self.l config -bg $value
set configAr(-linemapbg) $value
break
}
lappend argTable any -font {
if {[catch {$self.l config -font $value} res]} {
return -code error $res
}
$self._t config -font $value
set configAr(-font) $value
break
}
lappend argTable {0 false no} -highlight {
set configAr(-highlight) 0
break
}
lappend argTable {1 true yes} -highlight {
set configAr(-highlight) 1
break
}
lappend argTable {0 false no} -linemap_markable {
set configAr(-linemap_markable) 0
break
}
lappend argTable {1 true yes} -linemap_markable {
set configAr(-linemap_markable) 1
break
}
lappend argTable any -linemap_select_fg {
if {[catch {winfo rgb $self $value} res]} {
return -code error $res
}
set configAr(-linemap_select_fg) $value
$self.l tag configure lmark -foreground $value
break
}
lappend argTable any -linemap_select_bg {
if {[catch {winfo rgb $self $value} res]} {
return -code error $res
}
set configAr(-linemap_select_bg) $value
$self.l tag configure lmark -background $value
break
}
ctext::getAr $win config ar
set ar(argTable) $argTable
}
proc ctext::commentsAfterIdle {win} {
ctext::getAr $win config configAr
if {"" eq $configAr(commentsAfterId)} {
set configAr(commentsAfterId) [after idle [list ctext::comments $win [set afterTriggered 1]]]
}
}
proc ctext::highlightAfterIdle {win lineStart lineEnd} {
ctext::getAr $win config configAr
if {"" eq $configAr(highlightAfterId)} {
set configAr(highlightAfterId) [after idle [list ctext::highlight $win $lineStart $lineEnd [set afterTriggered 1]]]
}
}
proc ctext::instanceCmd {self cmd args} {
#slightly different than the RE used in ctext::comments
set commentRE {\"|\\|'|/|\*}
switch -glob -- $cmd {
append {
if {[catch {$self._t get sel.first sel.last} data] == 0} {
clipboard append -displayof $self $data
}
}
cget {
set arg [lindex $args 0]
ctext::getAr $self config configAr
foreach flag $configAr(ctextFlags) {
if {[string match ${arg}* $flag]} {
return [set configAr($flag)]
}
}
return [$self._t cget $arg]
}
conf* {
ctext::getAr $self config configAr
if {0 == [llength $args]} {
set res [$self._t configure]
set del [lsearch -glob $res -yscrollcommand*]
set res [lreplace $res $del $del]
foreach flag $configAr(ctextFlags) {
lappend res [list $flag [set configAr($flag)]]
}
return $res
}
array set flags {}
foreach flag $configAr(ctextFlags) {
set loc [lsearch $args $flag]
if {$loc < 0} {
continue
}
if {[llength $args] <= ($loc + 1)} {
#.t config -flag
return [set configAr($flag)]
}
set flagArg [lindex $args [expr {$loc + 1}]]
set args [lreplace $args $loc [expr {$loc + 1}]]
set flags($flag) $flagArg
}
foreach {valueList flag cmd} $configAr(argTable) {
if {[info exists flags($flag)]} {
foreach valueToCheckFor $valueList {
set value [set flags($flag)]
if {[string equal "any" $valueToCheckFor]} $cmd \
elseif {[string equal $valueToCheckFor [set flags($flag)]]} $cmd
}
}
}
if {[llength $args]} {
#we take care of configure without args at the top of this branch
uplevel 1 [linsert $args 0 $self._t configure]
}
}
copy {
tk_textCopy $self
}
cut {
if {[catch {$self.t get sel.first sel.last} data] == 0} {
clipboard clear -displayof $self.t
clipboard append -displayof $self.t $data
$self delete [$self.t index sel.first] [$self.t index sel.last]
ctext::modified $self 1
}
}
delete {
#delete n.n ?n.n
set argsLength [llength $args]
#first deal with delete n.n
if {$argsLength == 1} {
set deletePos [lindex $args 0]
set prevChar [$self._t get $deletePos]
$self._t delete $deletePos
set char [$self._t get $deletePos]
set prevSpace [ctext::findPreviousSpace $self._t $deletePos]
set nextSpace [ctext::findNextSpace $self._t $deletePos]
set lineStart [$self._t index "$deletePos linestart"]
set lineEnd [$self._t index "$deletePos + 1 chars lineend"]
#This pattern was used in 3.1. We may want to investigate using it again
#eventually to reduce flicker. It caused a bug with some patterns.
#if {[string equal $prevChar "#"] || [string equal $char "#"]} {
# set removeStart $lineStart
# set removeEnd $lineEnd
#} else {
# set removeStart $prevSpace
# set removeEnd $nextSpace
#}
set removeStart $lineStart
set removeEnd $lineEnd
foreach tag [$self._t tag names] {
if {[string equal $tag "_cComment"] != 1} {
$self._t tag remove $tag $removeStart $removeEnd
}
}
set checkStr "$prevChar[set char]"
if {[regexp $commentRE $checkStr]} {
ctext::commentsAfterIdle $self
}
ctext::highlightAfterIdle $self $lineStart $lineEnd
ctext::linemapUpdate $self
} elseif {$argsLength == 2} {
#now deal with delete n.n ?n.n?
set deleteStartPos [lindex $args 0]
set deleteEndPos [lindex $args 1]
set data [$self._t get $deleteStartPos $deleteEndPos]
set lineStart [$self._t index "$deleteStartPos linestart"]
set lineEnd [$self._t index "$deleteEndPos + 1 chars lineend"]
eval \$self._t delete $args
foreach tag [$self._t tag names] {
if {[string equal $tag "_cComment"] != 1} {
$self._t tag remove $tag $lineStart $lineEnd
}
}
if {[regexp $commentRE $data]} {
ctext::commentsAfterIdle $self
}
ctext::highlightAfterIdle $self $lineStart $lineEnd
if {[string first "\n" $data] >= 0} {
ctext::linemapUpdate $self
}
} else {
return -code error "invalid argument(s) sent to $self delete: $args"
}
ctext::modified $self 1
}
fastdelete {
eval \$self._t delete $args
ctext::modified $self 1
ctext::linemapUpdate $self
}
fastinsert {
eval \$self._t insert $args
ctext::modified $self 1
ctext::linemapUpdate $self
}
highlight {
ctext::highlight $self [lindex $args 0] [lindex $args 1]
ctext::comments $self
}
insert {
if {[llength $args] < 2} {
return -code error "please use at least 2 arguments to $self insert"
}
set insertPos [lindex $args 0]
set prevChar [$self._t get "$insertPos - 1 chars"]
set nextChar [$self._t get $insertPos]
set lineStart [$self._t index "$insertPos linestart"]
set prevSpace [ctext::findPreviousSpace $self._t ${insertPos}-1c]
set data [lindex $args 1]
eval \$self._t insert $args
set nextSpace [ctext::findNextSpace $self._t insert]
set lineEnd [$self._t index "insert lineend"]
if {[$self._t compare $prevSpace < $lineStart]} {
set prevSpace $lineStart
}
if {[$self._t compare $nextSpace > $lineEnd]} {
set nextSpace $lineEnd
}
foreach tag [$self._t tag names] {
if {[string equal $tag "_cComment"] != 1} {
$self._t tag remove $tag $prevSpace $nextSpace
}
}
set REData $prevChar
append REData $data
append REData $nextChar
if {[regexp $commentRE $REData]} {
ctext::commentsAfterIdle $self
}
ctext::highlightAfterIdle $self $lineStart $lineEnd
switch -- $data {
"\}" {
ctext::matchPair $self "\\\{" "\\\}" "\\"
}
"\]" {
ctext::matchPair $self "\\\[" "\\\]" "\\"
}
"\)" {
ctext::matchPair $self "\\(" "\\)" ""
}
"\"" {
ctext::matchQuote $self
}
}
ctext::modified $self 1
ctext::linemapUpdate $self
}
paste {
tk_textPaste $self
ctext::modified $self 1
}
edit {
set subCmd [lindex $args 0]
set argsLength [llength $args]
ctext::getAr $self config ar
if {"modified" == $subCmd} {
if {$argsLength == 1} {
return $ar(modified)
} elseif {$argsLength == 2} {
set value [lindex $args 1]
set ar(modified) $value
} else {
return -code error "invalid arg(s) to $self edit modified: $args"
}
} else {
#Tk 8.4 has other edit subcommands that I don't want to emulate.
return [uplevel 1 [linsert $args 0 $self._t $cmd]]
}
}
default {
return [uplevel 1 [linsert $args 0 $self._t $cmd]]
}
}
}
proc ctext::tag:blink {win count {afterTriggered 0}} {
if {$count & 1} {
$win tag configure __ctext_blink -foreground [$win cget -bg] -background [$win cget -fg]
} else {
$win tag configure __ctext_blink -foreground [$win cget -fg] -background [$win cget -bg]
}
ctext::getAr $win config configAr
if {$afterTriggered} {
set configAr(blinkAfterId) ""
}
if {$count == 4} {
$win tag delete __ctext_blink 1.0 end
return
}
incr count
if {"" eq $configAr(blinkAfterId)} {
set configAr(blinkAfterId) [after 50 [list ctext::tag:blink $win $count [set afterTriggered 1]]]
}
}
proc ctext::matchPair {win str1 str2 escape} {
set prevChar [$win get "insert - 2 chars"]
if {[string equal $prevChar $escape]} {
#The char that we thought might be the end is actually escaped.
return
}
set searchRE "[set str1]|[set str2]"
set count 1
set pos [$win index "insert - 1 chars"]
set endPair $pos
set lastFound ""
while 1 {
set found [$win search -backwards -regexp $searchRE $pos]
if {$found == "" || [$win compare $found > $pos]} {
return
}
if {$lastFound != "" && [$win compare $found == $lastFound]} {
#The search wrapped and found the previous search
return
}
set lastFound $found
set char [$win get $found]
set prevChar [$win get "$found - 1 chars"]
set pos $found
if {[string equal $prevChar $escape]} {
continue
} elseif {[string equal $char [subst $str2]]} {
incr count
} elseif {[string equal $char [subst $str1]]} {
incr count -1
if {$count == 0} {
set startPair $found
break
}
} else {
#This shouldn't happen. I may in the future make it return -code error
puts stderr "ctext seems to have encountered a bug in ctext::matchPair"
return
}
}
$win tag add __ctext_blink $startPair
$win tag add __ctext_blink $endPair
ctext::tag:blink $win 0
}
proc ctext::matchQuote {win} {
set endQuote [$win index insert]
set start [$win index "insert - 1 chars"]
if {[$win get "$start - 1 chars"] == "\\"} {
#the quote really isn't the end
return
}
set lastFound ""
while 1 {
set startQuote [$win search -backwards \" $start]
if {$startQuote == "" || [$win compare $startQuote > $start]} {
#The search found nothing or it wrapped.
return
}
if {$lastFound != "" && [$win compare $lastFound == $startQuote]} {
#We found the character we found before, so it wrapped.
return
}
set lastFound $startQuote
set start [$win index "$startQuote - 1 chars"]
set prevChar [$win get $start]
if {$prevChar == "\\"} {
continue
}
break
}
if {[$win compare $endQuote == $startQuote]} {
#probably just \"
return
}
$win tag add __ctext_blink $startQuote $endQuote
ctext::tag:blink $win 0
}
proc ctext::enableComments {win} {
$win tag configure _cComment -foreground khaki
}
proc ctext::disableComments {win} {
catch {$win tag delete _cComment}
}
proc ctext::comments {win {afterTriggered 0}} {
if {[catch {$win tag cget _cComment -foreground}]} {
#C comments are disabled
return
}
if {$afterTriggered} {
ctext::getAr $win config configAr
set configAr(commentsAfterId) ""
}
set startIndex 1.0
set commentRE {\\\\|\"|\\\"|\\'|'|/\*|\*/}
set commentStart 0
set isQuote 0
set isSingleQuote 0
set isComment 0
$win tag remove _cComment 1.0 end
while 1 {
set index [$win search -count length -regexp $commentRE $startIndex end]
if {$index == ""} {
break
}
set endIndex [$win index "$index + $length chars"]
set str [$win get $index $endIndex]
set startIndex $endIndex
if {$str == "\\\\"} {
continue
} elseif {$str == "\\\""} {
continue
} elseif {$str == "\\'"} {
continue
} elseif {$str == "\"" && $isComment == 0 && $isSingleQuote == 0} {
if {$isQuote} {
set isQuote 0
} else {
set isQuote 1
}
} elseif {$str == "'" && $isComment == 0 && $isQuote == 0} {
if {$isSingleQuote} {
set isSingleQuote 0
} else {
set isSingleQuote 1
}
} elseif {$str == "/*" && $isQuote == 0 && $isSingleQuote == 0} {
if {$isComment} {
#comment in comment
break
} else {
set isComment 1
set commentStart $index
}
} elseif {$str == "*/" && $isQuote == 0 && $isSingleQuote == 0} {
if {$isComment} {
set isComment 0
$win tag add _cComment $commentStart $endIndex
$win tag raise _cComment
} else {
#comment end without beginning
break
}
}
}
}
proc ctext::addHighlightClass {win class color keywords} {
set ref [ctext::getAr $win highlight ar]
foreach word $keywords {
set ar($word) [list $class $color]
}
$win tag configure $class
ctext::getAr $win classes classesAr
set classesAr($class) [list $ref $keywords]
}
#For [ ] { } # etc.
proc ctext::addHighlightClassForSpecialChars {win class color chars} {
set charList [split $chars ""]
set ref [ctext::getAr $win highlightSpecialChars ar]
foreach char $charList {
set ar($char) [list $class $color]
}
$win tag configure $class
ctext::getAr $win classes classesAr
set classesAr($class) [list $ref $charList]
}
proc ctext::addHighlightClassForRegexp {win class color re} {
set ref [ctext::getAr $win highlightRegexp ar]
set ar($class) [list $re $color]
$win tag configure $class
ctext::getAr $win classes classesAr
set classesAr($class) [list $ref $class]
}
#For things like $blah
proc ctext::addHighlightClassWithOnlyCharStart {win class color char} {
set ref [ctext::getAr $win highlightCharStart ar]
set ar($char) [list $class $color]
$win tag configure $class
ctext::getAr $win classes classesAr
set classesAr($class) [list $ref $char]
}
proc ctext::deleteHighlightClass {win classToDelete} {
ctext::getAr $win classes classesAr
if {![info exists classesAr($classToDelete)]} {
return -code error "$classToDelete doesn't exist"
}
foreach {ref keyList} [set classesAr($classToDelete)] {
upvar #0 $ref refAr
foreach key $keyList {
if {![info exists refAr($key)]} {
continue
}
unset refAr($key)
}
}
unset classesAr($classToDelete)
}
proc ctext::getHighlightClasses win {
ctext::getAr $win classes classesAr
array names classesAr
}
proc ctext::findNextChar {win index char} {
set i [$win index "$index + 1 chars"]
set lineend [$win index "$i lineend"]
while 1 {
set ch [$win get $i]
if {[$win compare $i >= $lineend]} {
return ""
}
if {$ch == $char} {
return $i
}
set i [$win index "$i + 1 chars"]
}
}
proc ctext::findNextSpace {win index} {
set i [$win index $index]
set lineStart [$win index "$i linestart"]
set lineEnd [$win index "$i lineend"]
#Sometimes the lineend fails (I don't know why), so add 1 and try again.
if {[$win compare $lineEnd == $lineStart]} {
set lineEnd [$win index "$i + 1 chars lineend"]
}
while {1} {
set ch [$win get $i]
if {[$win compare $i >= $lineEnd]} {
set i $lineEnd
break
}
if {[string is space $ch]} {
break
}
set i [$win index "$i + 1 chars"]
}
return $i
}
proc ctext::findPreviousSpace {win index} {
set i [$win index $index]
set lineStart [$win index "$i linestart"]
while {1} {
set ch [$win get $i]
if {[$win compare $i <= $lineStart]} {
set i $lineStart
break
}
if {[string is space $ch]} {
break
}
set i [$win index "$i - 1 chars"]
}
return $i
}
proc ctext::clearHighlightClasses {win} {
#no need to catch, because array unset doesn't complain
#puts [array exists ::ctext::highlight$win]
ctext::getAr $win highlight ar
array unset ar
ctext::getAr $win highlightSpecialChars ar
array unset ar
ctext::getAr $win highlightRegexp ar
array unset ar
ctext::getAr $win highlightCharStart ar
array unset ar
ctext::getAr $win classes ar
array unset ar
}
#This is a proc designed to be overwritten by the user.
#It can be used to update a cursor or animation while
#the text is being highlighted.
proc ctext::update {} {
}
proc ctext::highlight {win start end {afterTriggered 0}} {
ctext::getAr $win config configAr
if {$afterTriggered} {
set configAr(highlightAfterId) ""
}
if {!$configAr(-highlight)} {
return
}
set si $start
set twin "$win._t"
#The number of times the loop has run.
set numTimesLooped 0
set numUntilUpdate 600
ctext::getAr $win highlight highlightAr
ctext::getAr $win highlightSpecialChars highlightSpecialCharsAr
ctext::getAr $win highlightRegexp highlightRegexpAr
ctext::getAr $win highlightCharStart highlightCharStartAr
while 1 {
set res [$twin search -count length -regexp -- {([^\s\(\{\[\}\]\)\.\t\n\r;\"'\|,]+)} $si $end]
if {$res == ""} {
break
}
set wordEnd [$twin index "$res + $length chars"]
set word [$twin get $res $wordEnd]
set firstOfWord [string index $word 0]
if {[info exists highlightAr($word)] == 1} {
set wordAttributes [set highlightAr($word)]
foreach {tagClass color} $wordAttributes break
$twin tag add $tagClass $res $wordEnd
$twin tag configure $tagClass -foreground $color -font [concat [font actual [$twin cget -font]] -weight bold]
} elseif {[info exists highlightCharStartAr($firstOfWord)] == 1} {
set wordAttributes [set highlightCharStartAr($firstOfWord)]
foreach {tagClass color} $wordAttributes break
$twin tag add $tagClass $res $wordEnd
$twin tag configure $tagClass -foreground $color -font [concat [font actual [$twin cget -font]] -weight bold]
}
set si $wordEnd
incr numTimesLooped
if {$numTimesLooped >= $numUntilUpdate} {
ctext::update
set numTimesLooped 0
}
}
foreach {ichar tagInfo} [array get highlightSpecialCharsAr] {
set si $start
foreach {tagClass color} $tagInfo break
while 1 {
set res [$twin search -- $ichar $si $end]
if {"" == $res} {
break
}
set wordEnd [$twin index "$res + 1 chars"]
$twin tag add $tagClass $res $wordEnd
$twin tag configure $tagClass -foreground $color -font [concat [font actual [$twin cget -font]] -weight bold]
set si $wordEnd
incr numTimesLooped
if {$numTimesLooped >= $numUntilUpdate} {
ctext::update
set numTimesLooped 0
}
}
}
foreach {tagClass tagInfo} [array get highlightRegexpAr] {
set si $start
foreach {re color} $tagInfo break
while 1 {
set res [$twin search -count length -regexp -- $re $si $end]
if {"" == $res} {
break
}
set wordEnd [$twin index "$res + $length chars"]
$twin tag add $tagClass $res $wordEnd
$twin tag configure $tagClass -foreground $color -font [concat [font actual [$twin cget -font]] -weight bold]
set si $wordEnd
incr numTimesLooped
if {$numTimesLooped >= $numUntilUpdate} {
ctext::update
set numTimesLooped 0
}
}
}
}
proc ctext::linemapToggleMark {win y} {
ctext::getAr $win config configAr
if {!$configAr(-linemap_markable)} {
return
}
set markChar [$win.l index @0,$y]
set lineSelected [lindex [split $markChar .] 0]
set line [$win.l get $lineSelected.0 $lineSelected.end]
if {$line == ""} {
return
}
ctext::getAr $win linemap linemapAr
if {[info exists linemapAr($line)] == 1} {
#It's already marked, so unmark it.
array unset linemapAr $line
ctext::linemapUpdate $win
set type unmarked
} else {
#This means that the line isn't toggled, so toggle it.
array set linemapAr [list $line {}]
$win.l tag add lmark $markChar [$win.l index "$markChar lineend"]
$win.l tag configure lmark -foreground $configAr(-linemap_select_fg) \
-background $configAr(-linemap_select_bg)
set type marked
}
if {[string length $configAr(-linemap_mark_command)]} {
uplevel #0 [linsert $configAr(-linemap_mark_command) end $win $type $line]