search.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # search.tcl --
  2. #
  3. # This demonstration script creates a collection of widgets that
  4. # allow you to load a file into a text widget, then perform searches
  5. # on that file.
  6. #
  7. # RCS: @(#) $Id: search.tcl,v 1.2 1998/09/14 18:23:30 stanton Exp $
  8. if {![info exists widgetDemo]} {
  9.     error "This script should be run from the "widget" demo."
  10. }
  11. # textLoadFile --
  12. # This procedure below loads a file into a text widget, discarding
  13. # the previous contents of the widget. Tags for the old widget are
  14. # not affected, however.
  15. #
  16. # Arguments:
  17. # w - The window into which to load the file.  Must be a
  18. # text widget.
  19. # file - The name of the file to load.  Must be readable.
  20. proc textLoadFile {w file} {
  21.     set f [open $file]
  22.     $w delete 1.0 end
  23.     while {![eof $f]} {
  24. $w insert end [read $f 10000]
  25.     }
  26.     close $f
  27. }
  28. # textSearch --
  29. # Search for all instances of a given string in a text widget and
  30. # apply a given tag to each instance found.
  31. #
  32. # Arguments:
  33. # w - The window in which to search.  Must be a text widget.
  34. # string - The string to search for.  The search is done using
  35. # exact matching only;  no special characters.
  36. # tag - Tag to apply to each instance of a matching string.
  37. proc textSearch {w string tag} {
  38.     $w tag remove search 0.0 end
  39.     if {$string == ""} {
  40. return
  41.     }
  42.     set cur 1.0
  43.     while 1 {
  44. set cur [$w search -count length $string $cur end]
  45. if {$cur == ""} {
  46.     break
  47. }
  48. $w tag add $tag $cur "$cur + $length char"
  49. set cur [$w index "$cur + $length char"]
  50.     }
  51. }
  52. # textToggle --
  53. # This procedure is invoked repeatedly to invoke two commands at
  54. # periodic intervals.  It normally reschedules itself after each
  55. # execution but if an error occurs (e.g. because the window was
  56. # deleted) then it doesn't reschedule itself.
  57. #
  58. # Arguments:
  59. # cmd1 - Command to execute when procedure is called.
  60. # sleep1 - Ms to sleep after executing cmd1 before executing cmd2.
  61. # cmd2 - Command to execute in the *next* invocation of this
  62. # procedure.
  63. # sleep2 - Ms to sleep after executing cmd2 before executing cmd1 again.
  64. proc textToggle {cmd1 sleep1 cmd2 sleep2} {
  65.     catch {
  66. eval $cmd1
  67. after $sleep1 [list textToggle $cmd2 $sleep2 $cmd1 $sleep1]
  68.     }
  69. }
  70. set w .search
  71. catch {destroy $w}
  72. toplevel $w
  73. wm title $w "Text Demonstration - Search and Highlight"
  74. wm iconname $w "search"
  75. positionWindow $w
  76. frame $w.buttons
  77. pack $w.buttons -side bottom -fill x -pady 2m
  78. button $w.buttons.dismiss -text Dismiss -command "destroy $w"
  79. button $w.buttons.code -text "See Code" -command "showCode $w"
  80. pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
  81. frame $w.file
  82. label $w.file.label -text "File name:" -width 13 -anchor w
  83. entry $w.file.entry -width 40 -textvariable fileName
  84. button $w.file.button -text "Load File" 
  85. -command "textLoadFile $w.text $fileName"
  86. pack $w.file.label $w.file.entry -side left
  87. pack $w.file.button -side left -pady 5 -padx 10
  88. bind $w.file.entry <Return> "
  89.     textLoadFile $w.text $fileName
  90.     focus $w.string.entry
  91. "
  92. focus $w.file.entry
  93. frame $w.string
  94. label $w.string.label -text "Search string:" -width 13 -anchor w
  95. entry $w.string.entry -width 40 -textvariable searchString
  96. button $w.string.button -text "Highlight" 
  97. -command "textSearch $w.text $searchString search"
  98. pack $w.string.label $w.string.entry -side left
  99. pack $w.string.button -side left -pady 5 -padx 10
  100. bind $w.string.entry <Return> "textSearch $w.text $searchString search"
  101. text $w.text -yscrollcommand "$w.scroll set" -setgrid true
  102. scrollbar $w.scroll -command "$w.text yview"
  103. pack $w.file $w.string -side top -fill x
  104. pack $w.scroll -side right -fill y
  105. pack $w.text -expand yes -fill both
  106. # Set up display styles for text highlighting.
  107. if {[winfo depth $w] > 1} {
  108.     textToggle "$w.text tag configure search -background 
  109.     #ce5555 -foreground white" 800 "$w.text tag configure 
  110.     search -background {} -foreground {}" 200
  111. } else {
  112.     textToggle "$w.text tag configure search -background 
  113.     black -foreground white" 800 "$w.text tag configure 
  114.     search -background {} -foreground {}" 200
  115. }
  116. $w.text insert 1.0 
  117. {This window demonstrates how to use the tagging facilities in text
  118. widgets to implement a searching mechanism.  First, type a file name
  119. in the top entry, then type <Return> or click on "Load File".  Then
  120. type a string in the lower entry and type <Return> or click on
  121. "Load File".  This will cause all of the instances of the string to
  122. be tagged with the tag "search", and it will arrange for the tag's
  123. display attributes to change to make all of the strings blink.}
  124. $w.text mark set insert 0.0
  125. set fileName ""
  126. set searchString ""