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
|
#
# SearchBox mega widget
# incremental and regular expression searching in a text widget
# for examples of use, see TkMan and tkinfo
#
# Copyright (C) 1993-2003 Tom Phelps (phelps@ACM.org)
#
# extracted from TkMan, and then used by TkMan and NBT 6-Aug-93
#
# 1993
# 19-Aug made more robust (Kennard White)
#
# 1994
# 19-Apr single character "|" as search string fixed (Greg McFarlane)
# 26-Aug incremental search highlights match, use pickplace instead of top line of screen
# 25-Dec updated for Tk 4.0
# 30 case insensitive iff all lowercase
#
# 1995
# 1-Jul patches for change in search command in b4/final Tk 4.0
#
# 1996
# 6-Feb Tk 4.1 can search for tags backward
# 3-Jun wraparound behavior gives warnings (Rick Macdonald)
#
# 2003
# 14-Mar updated for Tcl/Tk 8.4 (now requires Tcl/Tk 8.4)
# name space use: prefixes searchbox, sb, sbx
# does NOT require taputils.tcl
### default key bindings
# ""=unmodified, A=alt, C=control, M=meta
# (Shift should not be used as a modifier. Different keyboards
# require shift for different characters, as for instance the
# less than and greater than signs. Any shift modifier is discarded
# before trying to match a binding. Thus, to make a binding for
# capital A, just write "sb(key,-A)" or "sb(key,M-A)" or sb(key,C-A)"--
# ignoring the shift altogether.)
set sb(key,*) "state multiple modifiers in this order: S, C, M, A"
# Emacs-like
set sb(key,C-x) exchangepointandmark
set sb(key,C-space) setmark
set sb(key,-Delete) pageup
set sb(key,C-h) pageup
set sb(key,M-v) pageup
set sb(key,-BackSpace) pageup
set sb(key,-space) pagedown
set sb(key,C-v) pagedown
set sb(key,-Escape) searchkill
set sb(key,C-g) searchkill
set sb(key,C-n) nextline
set sb(key,C-p) prevline
set sb(key,-Up) prevline
set sb(key,-Down) nextline
set sb(key,-Left) prevline
set sb(key,-Right) nextline
set sb(key,C-s) incrsearch
set sb(key,C-r) revincrsearch
set sb(key,M-question) help
set sb(key,-Help) help
set sb(key,C-l) clearscreen
# vi, when don't conflict with above
set sb(key,C-f) pagedown
set sb(key,C-b) pageup
# for Sun keyboards(?)
set sb(key,-F27) pagestart
set sb(key,-F29) pageup
set sb(key,-F35) pagedown
set sb(key,-R13) pageend
set sb(key,-F33) pageend
set sbx(wrap-msg) "No more matches; try again to wrap around"
# cursor keys -- some built into Tk 4.0
set sb(key,-Prior) pageup
set sb(key,-Next) pagedown
set sb(key,-Home) pagestart
set sb(key,-End) pageend
set sb(key,M-less) pagestart
set sb(key,M-greater) pageend
foreach e [array names sb] {
set sbdef($e) $sb($e)
}
#--------------------------------------------------
#
# searchboxSearch -- initiate an exact or regular expression search
#
# params
# str = string to search for
# regexp = boolean - regular expression search? (otherwise exact)
# casesen = case sensitive?
# tag = tag to associate with matches
# (do a `tag bind' in the text widget for this tag)
# w = text widget
# wmsg = (optional) window to show status messages
# wcnt = (optional) widget to show number of matches
#
#
#--------------------------------------------------
proc searchboxSearch {pat regexp casesen tag t {wmsg ""} {wcnt ""} args} {
global sbx
if {$args eq "{}"} {set args ""}
if {$casesen==-1} {set casesen ![string is lower $pat]}
set caseopt [expr !$casesen?"-nocase":""]
if {$regexp} {set type "regexp"} {set type "exact"}
if {$pat eq ""} {
winstderr $wmsg "Nothing to search for! Type in a [expr $regexp?{regular expression}:{string}]."
return 0
}
# check for bad regular expression
if {![string match "TAG:*" $pat] && $type eq "regexp" && [catch {regexp $pat bozomaniac}]} {
winstderr $wmsg "Malformed regular expression."
return 0
}
$t tag remove $tag 1.0 end
# wow, heaps faster with Tk 4.0's built-in searching
set cnt 0
if {[regexp "^TAG:(.*)" $pat all ptag]} {
$t tag remove $tag 1.0 end
set cnt 0
foreach wtag [$t tag names] {
if {[string match $ptag $wtag]} {
foreach {s e} [$t tag ranges $wtag] {$t tag add $tag $s $e; incr cnt}
}
}
} else {
set index 1.0
set len 0
while {[set index [eval "$t search -forwards -$type $caseopt $args -count len -- {$pat} {$index+$len chars} end"]] ne ""} {
$t tag add $tag $index "$index + $len chars"
incr cnt
}
}
if {$cnt==0} {set txt "no matches"} else {set txt "$cnt [textmanip::plural $cnt match es]"}
# winstdout $wcnt $txt
if {$wcnt ne ""} {$wcnt configure -text $txt}
# show the first match
set sbx(ratend$t) 0; set sbx(ratstart$t) 0
# searchboxNext $tag $t $wmsg 0
return $cnt
}
#--------------------------------------------------
#
# searchboxNext -- show the next match
#
# params
# tag = tag to search for (see searchboxRegexpSearch)
# w = text widget
# wmsg = window to show status messages
# next/prev = fractional position at which to search looking for next match
#
#--------------------------------------------------
proc searchboxNext {tag t {wmsg ""} {yoff ""}} {
global sbx
if {![llength [$t tag ranges $tag]]} { winstderr $wmsg "No matches!"; return }
if {$yoff eq ""} {
set yoff [winfo height $t]; set start [$t index @0,$yoff]
#puts "prevrange = [$t tag prevrange search @0,$yoff @0,0]"
if {[set prev [$t tag prevrange search @0,$yoff @0,0]]!=""} {set start [$t index [lsecond $prev]+1c]}
} else { set start [$t index @0,$yoff] }
set hit [$t tag nextrange $tag $start]
if {$hit eq ""} {
if {$sbx(ratend$t)} {
set hit [$t tag nextrange $tag 1.0]
set sbx(ratend$t) 0
} else {
set sbx(ratend$t) 1
if {[$t bbox 1.0] eq ""} {winstderr $wmsg $sbx(wrap-msg)} {searchboxNext $tag $t $wmsg $yoff}
}
}
if {$hit!=""} {
# $t see [lindex $hit 0]
$t mark set hit [lindex $hit 0]
$t see hit
# winstdout $wmsg ""; # clear wraparound messages
}
}
proc searchboxPrev {tag t {wmsg ""}} {
global sbx
if {![llength [$t tag ranges $tag]]} { winstderr $wmsg "No matches!"; return }
set hit [$t tag prevrange $tag [$t index @0,0]]
if {$hit eq ""} {
if {$sbx(ratstart$t)} {
set hit [$t tag prevrange $tag end]
set sbx(ratstart$t) 0
} else {
set sbx(ratstart$t) 1
if {[$t bbox end-1c] eq ""} {winstderr $wmsg $sbx(wrap-msg)} {searchboxPrev $tag $t $wmsg}
}
}
if {$hit!=""} {
# $t see [lindex $hit 0]
$t mark set hit [lindex $hit 0]
$t see hit
# winstdout $wmsg ""; # clear wraparound messages
}
}
#--------------------------------------------------
#
# searchboxKeyNav -- keyboard-based navigation and searching
#
# maybe separate out some commands so incrsearch doesn't have to wade through
#
# params:
# m = modifier key
# k = key
# casesen = case sensitive?
# t = text widget
# wmsg = label in which to show incremental search string
# mode = 1=>match on first character of line, 0=>match anywhere
#
#--------------------------------------------------
proc searchboxKeyNav {m k casesen t {wmsg ""} {firstmode 0} args} {
#puts "$m $k $casesen $t $wmsg $firstmode"
global sb sbx
if {$args eq "{}"} {set args ""}
if {[regexp {(Shift|Control|Meta|Alt|NunLock)_.} $k]} {return 0}
if {![info exists sbx(try$t)]} {
set sbx(try$t) 0
set sbx(vect$t) 1
set sbx(lastkeys$t) ""
set sbx(iatstart$t) 0; set sbx(iatend$t) 0
# other apps may wish to seed default search string
if ![info exists sbx(lastkeys-old$t)] {set sbx(lastkeys-old$t) ""}
}
# some translations
if {!$firstmode && ($sbx(try$t) || $sbx(lastkeys$t) ne "")} {
switch -exact -- $k {
space {set k " "}
BackSpace -
Delete {
set k ""
set last [expr [string length $sbx(lastkeys$t)]-2]
set sbx(lastkeys$t) [string range $sbx(lastkeys$t) 0 $last]
set sbx(try$t) 1
}
default { if {$m eq "" || $m eq "S"} {set k [name2char $k]} }
}
}
# commands
set m [string trimright $m "SM"]; # strip shift and numlock as a modifier
set mk $m-$k
#puts "searchbox: mk = $mk"
if {$m eq "literal"} {set op $k} \
elseif {[info exists sb(key,$mk)]} {set op $sb(key,$mk)} \
elseif {$m eq "" && [string length $k]<=1} {set op default} \
else {return 0}
#puts stdout "trying for a match on $mk"
switch -exact -- $op {
# help not application independent
# help {$t.occ.m invoke Help; return}
exchangepointandmark {
# yview w/o parameter should return current value
set tmp [$t index @0,0]
$t yview xmark
update
$t mark set xmark $tmp
}
setmark {$t mark set xmark [$t index @0,0]}
pageup {$t yview scroll -1 pages}
pagedown {$t yview scroll 1 pages}
pagestart {$t yview moveto 0}
pageend {$t yview moveto 1}
searchkill {
#puts stderr "killing search"
if {$sbx(lastkeys$t) ne ""} {set sbx(lastkeys-old$t) $sbx(lastkeys$t)}
set sbx(lastkeys$t) ""; set sbx(try$t) 0
winstdout $wmsg ""
}
clearscreen {winstdout $wmsg ""}
nextline {$t yview scroll 1 units}
prevline {$t yview scroll -1 units}
default {
#puts stderr "incr search... op=$op"
# incremental search
if {$op eq "incrsearch"} {
# C-s C-s retrieves last search pattern
if {$sbx(try$t) && $sbx(lastkeys$t) eq ""} {set sbx(lastkeys$t) $sbx(lastkeys-old$t)}
# if {$sbx(lastkeys$t) eq ""} {$t tag remove isearch 1.0 end}
set sbx(vect$t) 1; set sbx(try$t) 1
} elseif {$op eq "revincrsearch"} {
if {$sbx(try$t) && $sbx(lastkeys$t) eq ""} {set sbx(lastkeys$t) $sbx(lastkeys-old$t)}
# if {$sbx(lastkeys$t) eq ""} {$t tag remove isearch 1.0 end}
set sbx(vect$t) -1; set sbx(try$t) 1
} elseif {$firstmode} {
# $t tag remove isearch 1.0 end
set sbx(lastkeys$t) $k
set sbx(try$t) 1
} elseif {$sbx(try$t)} {
append sbx(lastkeys$t) $k
}
set keys $sbx(lastkeys$t)
if {$casesen==-1} {set casesen ![string is lower $keys]}
set caseopt [expr !$casesen?"-nocase":""]
if {$sbx(try$t)==0 && $keys eq ""} {return 0}
winstdout $wmsg "Searching for \"$keys\" ..."
# if {$sbx(try$t)==0 || $keys eq ""} {return 1}
if {$firstmode} {
set start 1.0; set end end
} elseif {[llength [set ranges [$t tag ranges isearch]]]} {
set start [lindex $ranges 0]; set end 1.0
if {$op eq "incrsearch"} {set start [$t index "$start+1c"]}
if {$sbx(vect$t)==1} {set end "end"}
} else {
if {$sbx(vect$t)==1} {
set start [$t index @0,0]; set end "end"
} else {
set start [$t index @0,[winfo height $t]]; set end "1.0"
}
}
# need case sensitive switch here
set dir [expr {$sbx(vect$t)==1?"-forwards":"-backwards"}]
set type [expr $firstmode?"-regexp":"-exact"]
set pfx [expr $firstmode?"^":""]
set search "$t search $dir $type $caseopt -count klen $args -- [list $pfx$keys] $start"
#DEBUG {puts "$search ... $end"}
set found [eval "$search $end"]
set anywhere [eval $search]
#puts "searching ... $t search $sbx(vect$t) -exact -- $keys $start klen = $found"
#puts "$op... $t search $dir $type $caseopt -count klen -- {$pfx$keys} $start"
# wraparound behavior
if {$anywhere ne ""} {
if {$found ne ""} {
$t tag remove isearch 1.0 end
$t tag add isearch $found "$found + $klen c"
$t mark set hit $found
$t see hit
# winstdout $wmsg ""; # clear wraparound messages(?)
set sbx(iatstart$t) 0; set sbx(iatend$t) 0
} else {
if {$sbx(vect$t)==1} {
if {$sbx(iatstart$t)} {
$t yview moveto 0; $t tag remove isearch 1.0 end
return [searchboxKeyNav $m $k $casesen $t $wmsg $firstmode]
} else {
winstderr $wmsg $sbx(wrap-msg)
set sbx(iatstart$t) 1
}
} else {
if {$sbx(iatend$t)} {
$t yview moveto 1; $t tag remove isearch 1.0 end
return [searchboxKeyNav $m $k $casesen $t $wmsg $firstmode]
} else {
winstderr $wmsg $sbx(wrap-msg)
set sbx(iatend$t) 1
}
}
}
} else {
$t tag remove isearch 1.0 end
winstderr $wmsg "\"$keys\" not found"
# turn off searching once can't match what you already have
set sbx(try$t) 0
}
}
}
return 1
}
#--------------------------------------------------
#
# searchboxSaveConfig -- dump persistent variables into passed file id
#
#--------------------------------------------------
proc searchboxSaveConfig {fid} {
global sb sbx sbdef
puts $fid "#\n# SearchBox\n#\n"
foreach i [lsort [array names sb]] {
set co ""
if {[info exists sbdef($i)] && $sbdef($i) eq $sb($i)} {set co "#"}
puts $fid "${co}set sb($i) [list $sb($i)]"
}
puts $fid "\n"
}
# instantiate standard mechanisms if don't already exist
if {![llength [info procs winstdout]]} {
proc winstderr {w msg {type "bell & flash"}} {
if {![winfo exists $w]} return
set bell [string match "*bell*" $type]
set flash [string match "*flash*" $type]
set fg [$w cget -foreground]; set bg [$w cget -background]
set msgout [string range $msg 0 500]
if {[string length $msg]>500} {
append msgout " ... (truncated; full message sent to stdout)"
puts stderr $msg
}
winstdout $w $msgout
if {$flash} {$w configure -foreground $bg -background $fg}
if {$bell} bell
if {$flash} {
update idletasks; after 500
$w configure -foreground $fg -background $bg
}
}
proc winstdout {w {msg AnUnLiKeMeSsAgE} {update 0}} {
if {![winfo exists $w]} return
if {$msg ne "AnUnLiKeMeSsAgE"} {
$w configure -text $msg
if {$update} { update idletasks }
}
return [$w cget -text]
}
}
|