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

通讯编程

开发平台:

Visual C++

  1. # text.tcl --
  2. #
  3. # This file defines the default bindings for Tk text widgets and provides
  4. # procedures that help in implementing the bindings.
  5. #
  6. # RCS: @(#) $Id: text.tcl,v 1.24.2.9 2006/09/10 17:07:36 das Exp $
  7. #
  8. # Copyright (c) 1992-1994 The Regents of the University of California.
  9. # Copyright (c) 1994-1997 Sun Microsystems, Inc.
  10. # Copyright (c) 1998 by Scriptics Corporation.
  11. #
  12. # See the file "license.terms" for information on usage and redistribution
  13. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  14. #
  15. #-------------------------------------------------------------------------
  16. # Elements of ::tk::Priv that are used in this file:
  17. #
  18. # afterId - If non-null, it means that auto-scanning is underway
  19. # and it gives the "after" id for the next auto-scan
  20. # command to be executed.
  21. # char - Character position on the line;  kept in order
  22. # to allow moving up or down past short lines while
  23. # still remembering the desired position.
  24. # mouseMoved - Non-zero means the mouse has moved a significant
  25. # amount since the button went down (so, for example,
  26. # start dragging out a selection).
  27. # prevPos - Used when moving up or down lines via the keyboard.
  28. # Keeps track of the previous insert position, so
  29. # we can distinguish a series of ups and downs, all
  30. # in a row, from a new up or down.
  31. # selectMode - The style of selection currently underway:
  32. # char, word, or line.
  33. # x, y - Last known mouse coordinates for scanning
  34. # and auto-scanning.
  35. #-------------------------------------------------------------------------
  36. #-------------------------------------------------------------------------
  37. # The code below creates the default class bindings for text widgets.
  38. #-------------------------------------------------------------------------
  39. # Standard Motif bindings:
  40. bind Text <1> {
  41.     tk::TextButton1 %W %x %y
  42.     %W tag remove sel 0.0 end
  43. }
  44. bind Text <B1-Motion> {
  45.     set tk::Priv(x) %x
  46.     set tk::Priv(y) %y
  47.     tk::TextSelectTo %W %x %y
  48. }
  49. bind Text <Double-1> {
  50.     set tk::Priv(selectMode) word
  51.     tk::TextSelectTo %W %x %y
  52.     catch {%W mark set insert sel.last}
  53. }
  54. bind Text <Triple-1> {
  55.     set tk::Priv(selectMode) line
  56.     tk::TextSelectTo %W %x %y
  57.     catch {%W mark set insert sel.last}
  58. }
  59. bind Text <Shift-1> {
  60.     tk::TextResetAnchor %W @%x,%y
  61.     set tk::Priv(selectMode) char
  62.     tk::TextSelectTo %W %x %y
  63. }
  64. bind Text <Double-Shift-1> {
  65.     set tk::Priv(selectMode) word
  66.     tk::TextSelectTo %W %x %y 1
  67. }
  68. bind Text <Triple-Shift-1> {
  69.     set tk::Priv(selectMode) line
  70.     tk::TextSelectTo %W %x %y
  71. }
  72. bind Text <B1-Leave> {
  73.     set tk::Priv(x) %x
  74.     set tk::Priv(y) %y
  75.     tk::TextAutoScan %W
  76. }
  77. bind Text <B1-Enter> {
  78.     tk::CancelRepeat
  79. }
  80. bind Text <ButtonRelease-1> {
  81.     tk::CancelRepeat
  82. }
  83. bind Text <Control-1> {
  84.     %W mark set insert @%x,%y
  85. }
  86. bind Text <Left> {
  87.     tk::TextSetCursor %W insert-1c
  88. }
  89. bind Text <Right> {
  90.     tk::TextSetCursor %W insert+1c
  91. }
  92. bind Text <Up> {
  93.     tk::TextSetCursor %W [tk::TextUpDownLine %W -1]
  94. }
  95. bind Text <Down> {
  96.     tk::TextSetCursor %W [tk::TextUpDownLine %W 1]
  97. }
  98. bind Text <Shift-Left> {
  99.     tk::TextKeySelect %W [%W index {insert - 1c}]
  100. }
  101. bind Text <Shift-Right> {
  102.     tk::TextKeySelect %W [%W index {insert + 1c}]
  103. }
  104. bind Text <Shift-Up> {
  105.     tk::TextKeySelect %W [tk::TextUpDownLine %W -1]
  106. }
  107. bind Text <Shift-Down> {
  108.     tk::TextKeySelect %W [tk::TextUpDownLine %W 1]
  109. }
  110. bind Text <Control-Left> {
  111.     tk::TextSetCursor %W [tk::TextPrevPos %W insert tcl_startOfPreviousWord]
  112. }
  113. bind Text <Control-Right> {
  114.     tk::TextSetCursor %W [tk::TextNextWord %W insert]
  115. }
  116. bind Text <Control-Up> {
  117.     tk::TextSetCursor %W [tk::TextPrevPara %W insert]
  118. }
  119. bind Text <Control-Down> {
  120.     tk::TextSetCursor %W [tk::TextNextPara %W insert]
  121. }
  122. bind Text <Shift-Control-Left> {
  123.     tk::TextKeySelect %W [tk::TextPrevPos %W insert tcl_startOfPreviousWord]
  124. }
  125. bind Text <Shift-Control-Right> {
  126.     tk::TextKeySelect %W [tk::TextNextWord %W insert]
  127. }
  128. bind Text <Shift-Control-Up> {
  129.     tk::TextKeySelect %W [tk::TextPrevPara %W insert]
  130. }
  131. bind Text <Shift-Control-Down> {
  132.     tk::TextKeySelect %W [tk::TextNextPara %W insert]
  133. }
  134. bind Text <Prior> {
  135.     tk::TextSetCursor %W [tk::TextScrollPages %W -1]
  136. }
  137. bind Text <Shift-Prior> {
  138.     tk::TextKeySelect %W [tk::TextScrollPages %W -1]
  139. }
  140. bind Text <Next> {
  141.     tk::TextSetCursor %W [tk::TextScrollPages %W 1]
  142. }
  143. bind Text <Shift-Next> {
  144.     tk::TextKeySelect %W [tk::TextScrollPages %W 1]
  145. }
  146. bind Text <Control-Prior> {
  147.     %W xview scroll -1 page
  148. }
  149. bind Text <Control-Next> {
  150.     %W xview scroll 1 page
  151. }
  152. bind Text <Home> {
  153.     tk::TextSetCursor %W {insert linestart}
  154. }
  155. bind Text <Shift-Home> {
  156.     tk::TextKeySelect %W {insert linestart}
  157. }
  158. bind Text <End> {
  159.     tk::TextSetCursor %W {insert lineend}
  160. }
  161. bind Text <Shift-End> {
  162.     tk::TextKeySelect %W {insert lineend}
  163. }
  164. bind Text <Control-Home> {
  165.     tk::TextSetCursor %W 1.0
  166. }
  167. bind Text <Control-Shift-Home> {
  168.     tk::TextKeySelect %W 1.0
  169. }
  170. bind Text <Control-End> {
  171.     tk::TextSetCursor %W {end - 1 char}
  172. }
  173. bind Text <Control-Shift-End> {
  174.     tk::TextKeySelect %W {end - 1 char}
  175. }
  176. bind Text <Tab> {
  177.     if { [%W cget -state] eq "normal" } {
  178. tk::TextInsert %W t
  179. focus %W
  180. break
  181.     }
  182. }
  183. bind Text <Shift-Tab> {
  184.     # Needed only to keep <Tab> binding from triggering;  doesn't
  185.     # have to actually do anything.
  186.     break
  187. }
  188. bind Text <Control-Tab> {
  189.     focus [tk_focusNext %W]
  190. }
  191. bind Text <Control-Shift-Tab> {
  192.     focus [tk_focusPrev %W]
  193. }
  194. bind Text <Control-i> {
  195.     tk::TextInsert %W t
  196. }
  197. bind Text <Return> {
  198.     tk::TextInsert %W n
  199.     if {[%W cget -autoseparators]} {%W edit separator}
  200. }
  201. bind Text <Delete> {
  202.     if {[%W tag nextrange sel 1.0 end] ne ""} {
  203. %W delete sel.first sel.last
  204.     } else {
  205. %W delete insert
  206. %W see insert
  207.     }
  208. }
  209. bind Text <BackSpace> {
  210.     if {[%W tag nextrange sel 1.0 end] ne ""} {
  211. %W delete sel.first sel.last
  212.     } elseif {[%W compare insert != 1.0]} {
  213. %W delete insert-1c
  214. %W see insert
  215.     }
  216. }
  217. bind Text <Control-space> {
  218.     %W mark set anchor insert
  219. }
  220. bind Text <Select> {
  221.     %W mark set anchor insert
  222. }
  223. bind Text <Control-Shift-space> {
  224.     set tk::Priv(selectMode) char
  225.     tk::TextKeyExtend %W insert
  226. }
  227. bind Text <Shift-Select> {
  228.     set tk::Priv(selectMode) char
  229.     tk::TextKeyExtend %W insert
  230. }
  231. bind Text <Control-slash> {
  232.     %W tag add sel 1.0 end
  233. }
  234. bind Text <Control-backslash> {
  235.     %W tag remove sel 1.0 end
  236. }
  237. bind Text <<Cut>> {
  238.     tk_textCut %W
  239. }
  240. bind Text <<Copy>> {
  241.     tk_textCopy %W
  242. }
  243. bind Text <<Paste>> {
  244.     tk_textPaste %W
  245. }
  246. bind Text <<Clear>> {
  247.     catch {%W delete sel.first sel.last}
  248. }
  249. bind Text <<PasteSelection>> {
  250.     if {$tk_strictMotif || ![info exists tk::Priv(mouseMoved)]
  251. || !$tk::Priv(mouseMoved)} {
  252. tk::TextPasteSelection %W %x %y
  253.     }
  254. }
  255. bind Text <Insert> {
  256.     catch {tk::TextInsert %W [::tk::GetSelection %W PRIMARY]}
  257. }
  258. bind Text <KeyPress> {
  259.     tk::TextInsert %W %A
  260. }
  261. # Ignore all Alt, Meta, and Control keypresses unless explicitly bound.
  262. # Otherwise, if a widget binding for one of these is defined, the
  263. # <KeyPress> class binding will also fire and insert the character,
  264. # which is wrong.  Ditto for <Escape>.
  265. bind Text <Alt-KeyPress> {# nothing }
  266. bind Text <Meta-KeyPress> {# nothing}
  267. bind Text <Control-KeyPress> {# nothing}
  268. bind Text <Escape> {# nothing}
  269. bind Text <KP_Enter> {# nothing}
  270. if {[tk windowingsystem] eq "classic" || [tk windowingsystem] eq "aqua"} {
  271.     bind Text <Command-KeyPress> {# nothing}
  272. }
  273. # Additional emacs-like bindings:
  274. bind Text <Control-a> {
  275.     if {!$tk_strictMotif} {
  276. tk::TextSetCursor %W {insert linestart}
  277.     }
  278. }
  279. bind Text <Control-b> {
  280.     if {!$tk_strictMotif} {
  281. tk::TextSetCursor %W insert-1c
  282.     }
  283. }
  284. bind Text <Control-d> {
  285.     if {!$tk_strictMotif} {
  286. %W delete insert
  287.     }
  288. }
  289. bind Text <Control-e> {
  290.     if {!$tk_strictMotif} {
  291. tk::TextSetCursor %W {insert lineend}
  292.     }
  293. }
  294. bind Text <Control-f> {
  295.     if {!$tk_strictMotif} {
  296. tk::TextSetCursor %W insert+1c
  297.     }
  298. }
  299. bind Text <Control-k> {
  300.     if {!$tk_strictMotif} {
  301. if {[%W compare insert == {insert lineend}]} {
  302.     %W delete insert
  303. } else {
  304.     %W delete insert {insert lineend}
  305. }
  306.     }
  307. }
  308. bind Text <Control-n> {
  309.     if {!$tk_strictMotif} {
  310. tk::TextSetCursor %W [tk::TextUpDownLine %W 1]
  311.     }
  312. }
  313. bind Text <Control-o> {
  314.     if {!$tk_strictMotif} {
  315. %W insert insert n
  316. %W mark set insert insert-1c
  317.     }
  318. }
  319. bind Text <Control-p> {
  320.     if {!$tk_strictMotif} {
  321. tk::TextSetCursor %W [tk::TextUpDownLine %W -1]
  322.     }
  323. }
  324. bind Text <Control-t> {
  325.     if {!$tk_strictMotif} {
  326. tk::TextTranspose %W
  327.     }
  328. }
  329. bind Text <<Undo>> {
  330.     catch { %W edit undo }
  331. }
  332. bind Text <<Redo>> {
  333.     catch { %W edit redo }
  334. }
  335. if {$tcl_platform(platform) ne "windows"} {
  336. bind Text <Control-v> {
  337.     if {!$tk_strictMotif} {
  338. tk::TextScrollPages %W 1
  339.     }
  340. }
  341. }
  342. bind Text <Meta-b> {
  343.     if {!$tk_strictMotif} {
  344. tk::TextSetCursor %W [tk::TextPrevPos %W insert tcl_startOfPreviousWord]
  345.     }
  346. }
  347. bind Text <Meta-d> {
  348.     if {!$tk_strictMotif} {
  349. %W delete insert [tk::TextNextWord %W insert]
  350.     }
  351. }
  352. bind Text <Meta-f> {
  353.     if {!$tk_strictMotif} {
  354. tk::TextSetCursor %W [tk::TextNextWord %W insert]
  355.     }
  356. }
  357. bind Text <Meta-less> {
  358.     if {!$tk_strictMotif} {
  359. tk::TextSetCursor %W 1.0
  360.     }
  361. }
  362. bind Text <Meta-greater> {
  363.     if {!$tk_strictMotif} {
  364. tk::TextSetCursor %W end-1c
  365.     }
  366. }
  367. bind Text <Meta-BackSpace> {
  368.     if {!$tk_strictMotif} {
  369. %W delete [tk::TextPrevPos %W insert tcl_startOfPreviousWord] insert
  370.     }
  371. }
  372. bind Text <Meta-Delete> {
  373.     if {!$tk_strictMotif} {
  374. %W delete [tk::TextPrevPos %W insert tcl_startOfPreviousWord] insert
  375.     }
  376. }
  377. # Macintosh only bindings:
  378. if {[tk windowingsystem] eq "classic" || [tk windowingsystem] eq "aqua"} {
  379. bind Text <FocusIn> {
  380.     %W configure -selectbackground systemHighlight -selectforeground systemHighlightText
  381. }
  382. bind Text <FocusOut> {
  383.     %W configure -selectbackground systemHighlightSecondary -selectforeground systemHighlightText
  384. }
  385. bind Text <Option-Left> {
  386.     tk::TextSetCursor %W [tk::TextPrevPos %W insert tcl_startOfPreviousWord]
  387. }
  388. bind Text <Option-Right> {
  389.     tk::TextSetCursor %W [tk::TextNextWord %W insert]
  390. }
  391. bind Text <Option-Up> {
  392.     tk::TextSetCursor %W [tk::TextPrevPara %W insert]
  393. }
  394. bind Text <Option-Down> {
  395.     tk::TextSetCursor %W [tk::TextNextPara %W insert]
  396. }
  397. bind Text <Shift-Option-Left> {
  398.     tk::TextKeySelect %W [tk::TextPrevPos %W insert tcl_startOfPreviousWord]
  399. }
  400. bind Text <Shift-Option-Right> {
  401.     tk::TextKeySelect %W [tk::TextNextWord %W insert]
  402. }
  403. bind Text <Shift-Option-Up> {
  404.     tk::TextKeySelect %W [tk::TextPrevPara %W insert]
  405. }
  406. bind Text <Shift-Option-Down> {
  407.     tk::TextKeySelect %W [tk::TextNextPara %W insert]
  408. }
  409. # End of Mac only bindings
  410. }
  411. # A few additional bindings of my own.
  412. bind Text <Control-h> {
  413.     if {!$tk_strictMotif} {
  414. if {[%W compare insert != 1.0]} {
  415.     %W delete insert-1c
  416.     %W see insert
  417. }
  418.     }
  419. }
  420. bind Text <2> {
  421.     if {!$tk_strictMotif} {
  422. tk::TextScanMark %W %x %y
  423.     }
  424. }
  425. bind Text <B2-Motion> {
  426.     if {!$tk_strictMotif} {
  427. tk::TextScanDrag %W %x %y
  428.     }
  429. }
  430. set ::tk::Priv(prevPos) {}
  431. # The MouseWheel will typically only fire on Windows and MacOS X.
  432. # However, someone could use the "event generate" command to produce
  433. # one on other platforms.
  434. if {[tk windowingsystem] eq "classic" || [tk windowingsystem] eq "aqua"} {
  435.     bind Text <MouseWheel> {
  436.         %W yview scroll [expr {- (%D)}] units
  437.     }
  438.     bind Text <Option-MouseWheel> {
  439.         %W yview scroll [expr {-10 * (%D)}] units
  440.     }
  441.     bind Text <Shift-MouseWheel> {
  442.         %W xview scroll [expr {- (%D)}] units
  443.     }
  444.     bind Text <Shift-Option-MouseWheel> {
  445.         %W xview scroll [expr {-10 * (%D)}] units
  446.     }
  447. } else {
  448.     bind Text <MouseWheel> {
  449.         %W yview scroll [expr {- (%D / 120) * 4}] units
  450.     }
  451. }
  452. if {"x11" eq [tk windowingsystem]} {
  453.     # Support for mousewheels on Linux/Unix commonly comes through mapping
  454.     # the wheel to the extended buttons.  If you have a mousewheel, find
  455.     # Linux configuration info at:
  456.     # http://www.inria.fr/koala/colas/mouse-wheel-scroll/
  457.     bind Text <4> {
  458. if {!$tk_strictMotif} {
  459.     %W yview scroll -5 units
  460. }
  461.     }
  462.     bind Text <5> {
  463. if {!$tk_strictMotif} {
  464.     %W yview scroll 5 units
  465. }
  466.     }
  467. }
  468. # ::tk::TextClosestGap --
  469. # Given x and y coordinates, this procedure finds the closest boundary
  470. # between characters to the given coordinates and returns the index
  471. # of the character just after the boundary.
  472. #
  473. # Arguments:
  474. # w - The text window.
  475. # x - X-coordinate within the window.
  476. # y - Y-coordinate within the window.
  477. proc ::tk::TextClosestGap {w x y} {
  478.     set pos [$w index @$x,$y]
  479.     set bbox [$w bbox $pos]
  480.     if {$bbox eq ""} {
  481. return $pos
  482.     }
  483.     if {($x - [lindex $bbox 0]) < ([lindex $bbox 2]/2)} {
  484. return $pos
  485.     }
  486.     $w index "$pos + 1 char"
  487. }
  488. # ::tk::TextButton1 --
  489. # This procedure is invoked to handle button-1 presses in text
  490. # widgets.  It moves the insertion cursor, sets the selection anchor,
  491. # and claims the input focus.
  492. #
  493. # Arguments:
  494. # w - The text window in which the button was pressed.
  495. # x - The x-coordinate of the button press.
  496. # y - The x-coordinate of the button press.
  497. proc ::tk::TextButton1 {w x y} {
  498.     variable ::tk::Priv
  499.     set Priv(selectMode) char
  500.     set Priv(mouseMoved) 0
  501.     set Priv(pressX) $x
  502.     $w mark set insert [TextClosestGap $w $x $y]
  503.     $w mark set anchor insert
  504.     # Allow focus in any case on Windows, because that will let the
  505.     # selection be displayed even for state disabled text widgets.
  506.     if {$::tcl_platform(platform) eq "windows" || [$w cget -state] eq "normal"} {focus $w}
  507.     if {[$w cget -autoseparators]} {$w edit separator}
  508. }
  509. # ::tk::TextSelectTo --
  510. # This procedure is invoked to extend the selection, typically when
  511. # dragging it with the mouse.  Depending on the selection mode (character,
  512. # word, line) it selects in different-sized units.  This procedure
  513. # ignores mouse motions initially until the mouse has moved from
  514. # one character to another or until there have been multiple clicks.
  515. #
  516. # Arguments:
  517. # w - The text window in which the button was pressed.
  518. # x - Mouse x position.
  519. # y -  Mouse y position.
  520. proc ::tk::TextSelectTo {w x y {extend 0}} {
  521.     global tcl_platform
  522.     variable ::tk::Priv
  523.     set cur [TextClosestGap $w $x $y]
  524.     if {[catch {$w index anchor}]} {
  525. $w mark set anchor $cur
  526.     }
  527.     set anchor [$w index anchor]
  528.     if {[$w compare $cur != $anchor] || (abs($Priv(pressX) - $x) >= 3)} {
  529. set Priv(mouseMoved) 1
  530.     }
  531.     switch $Priv(selectMode) {
  532. char {
  533.     if {[$w compare $cur < anchor]} {
  534. set first $cur
  535. set last anchor
  536.     } else {
  537. set first anchor
  538. set last $cur
  539.     }
  540. }
  541. word {
  542.     if {[$w compare $cur < anchor]} {
  543. set first [TextPrevPos $w "$cur + 1c" tcl_wordBreakBefore]
  544. if { !$extend } {
  545.     set last [TextNextPos $w "anchor" tcl_wordBreakAfter]
  546. } else {
  547.     set last anchor
  548. }
  549.     } else {
  550. set last [TextNextPos $w "$cur - 1c" tcl_wordBreakAfter]
  551. if { !$extend } {
  552.     set first [TextPrevPos $w anchor tcl_wordBreakBefore]
  553. } else {
  554.     set first anchor
  555. }
  556.     }
  557. }
  558. line {
  559.     if {[$w compare $cur < anchor]} {
  560. set first [$w index "$cur linestart"]
  561. set last [$w index "anchor - 1c lineend + 1c"]
  562.     } else {
  563. set first [$w index "anchor linestart"]
  564. set last [$w index "$cur lineend + 1c"]
  565.     }
  566. }
  567.     }
  568.     if {$Priv(mouseMoved) || $Priv(selectMode) ne "char"} {
  569. $w tag remove sel 0.0 end
  570. $w mark set insert $cur
  571. $w tag add sel $first $last
  572. $w tag remove sel $last end
  573. update idletasks
  574.     }
  575. }
  576. # ::tk::TextKeyExtend --
  577. # This procedure handles extending the selection from the keyboard,
  578. # where the point to extend to is really the boundary between two
  579. # characters rather than a particular character.
  580. #
  581. # Arguments:
  582. # w - The text window.
  583. # index - The point to which the selection is to be extended.
  584. proc ::tk::TextKeyExtend {w index} {
  585.     set cur [$w index $index]
  586.     if {[catch {$w index anchor}]} {
  587. $w mark set anchor $cur
  588.     }
  589.     set anchor [$w index anchor]
  590.     if {[$w compare $cur < anchor]} {
  591. set first $cur
  592. set last anchor
  593.     } else {
  594. set first anchor
  595. set last $cur
  596.     }
  597.     $w tag remove sel 0.0 $first
  598.     $w tag add sel $first $last
  599.     $w tag remove sel $last end
  600. }
  601. # ::tk::TextPasteSelection --
  602. # This procedure sets the insertion cursor to the mouse position,
  603. # inserts the selection, and sets the focus to the window.
  604. #
  605. # Arguments:
  606. # w - The text window.
  607. # x, y -  Position of the mouse.
  608. proc ::tk::TextPasteSelection {w x y} {
  609.     $w mark set insert [TextClosestGap $w $x $y]
  610.     if {![catch {::tk::GetSelection $w PRIMARY} sel]} {
  611. set oldSeparator [$w cget -autoseparators]
  612. if {$oldSeparator} {
  613.     $w configure -autoseparators 0
  614.     $w edit separator
  615. }
  616. $w insert insert $sel
  617. if {$oldSeparator} {
  618.     $w edit separator
  619.     $w configure -autoseparators 1
  620. }
  621.     }
  622.     if {[$w cget -state] eq "normal"} {focus $w}
  623. }
  624. # ::tk::TextAutoScan --
  625. # This procedure is invoked when the mouse leaves a text window
  626. # with button 1 down.  It scrolls the window up, down, left, or right,
  627. # depending on where the mouse is (this information was saved in
  628. # ::tk::Priv(x) and ::tk::Priv(y)), and reschedules itself as an "after"
  629. # command so that the window continues to scroll until the mouse
  630. # moves back into the window or the mouse button is released.
  631. #
  632. # Arguments:
  633. # w - The text window.
  634. proc ::tk::TextAutoScan {w} {
  635.     variable ::tk::Priv
  636.     if {![winfo exists $w]} return
  637.     if {$Priv(y) >= [winfo height $w]} {
  638. $w yview scroll 2 units
  639.     } elseif {$Priv(y) < 0} {
  640. $w yview scroll -2 units
  641.     } elseif {$Priv(x) >= [winfo width $w]} {
  642. $w xview scroll 2 units
  643.     } elseif {$Priv(x) < 0} {
  644. $w xview scroll -2 units
  645.     } else {
  646. return
  647.     }
  648.     TextSelectTo $w $Priv(x) $Priv(y)
  649.     set Priv(afterId) [after 50 [list tk::TextAutoScan $w]]
  650. }
  651. # ::tk::TextSetCursor
  652. # Move the insertion cursor to a given position in a text.  Also
  653. # clears the selection, if there is one in the text, and makes sure
  654. # that the insertion cursor is visible.  Also, don't let the insertion
  655. # cursor appear on the dummy last line of the text.
  656. #
  657. # Arguments:
  658. # w - The text window.
  659. # pos - The desired new position for the cursor in the window.
  660. proc ::tk::TextSetCursor {w pos} {
  661.     if {[$w compare $pos == end]} {
  662. set pos {end - 1 chars}
  663.     }
  664.     $w mark set insert $pos
  665.     $w tag remove sel 1.0 end
  666.     $w see insert
  667.     if {[$w cget -autoseparators]} {$w edit separator}
  668. }
  669. # ::tk::TextKeySelect
  670. # This procedure is invoked when stroking out selections using the
  671. # keyboard.  It moves the cursor to a new position, then extends
  672. # the selection to that position.
  673. #
  674. # Arguments:
  675. # w - The text window.
  676. # new - A new position for the insertion cursor (the cursor hasn't
  677. # actually been moved to this position yet).
  678. proc ::tk::TextKeySelect {w new} {
  679.     if {[$w tag nextrange sel 1.0 end] eq ""} {
  680. if {[$w compare $new < insert]} {
  681.     $w tag add sel $new insert
  682. } else {
  683.     $w tag add sel insert $new
  684. }
  685. $w mark set anchor insert
  686.     } else {
  687. if {[$w compare $new < anchor]} {
  688.     set first $new
  689.     set last anchor
  690. } else {
  691.     set first anchor
  692.     set last $new
  693. }
  694. $w tag remove sel 1.0 $first
  695. $w tag add sel $first $last
  696. $w tag remove sel $last end
  697.     }
  698.     $w mark set insert $new
  699.     $w see insert
  700.     update idletasks
  701. }
  702. # ::tk::TextResetAnchor --
  703. # Set the selection anchor to whichever end is farthest from the
  704. # index argument.  One special trick: if the selection has two or
  705. # fewer characters, just leave the anchor where it is.  In this
  706. # case it doesn't matter which point gets chosen for the anchor,
  707. # and for the things like Shift-Left and Shift-Right this produces
  708. # better behavior when the cursor moves back and forth across the
  709. # anchor.
  710. #
  711. # Arguments:
  712. # w - The text widget.
  713. # index - Position at which mouse button was pressed, which determines
  714. # which end of selection should be used as anchor point.
  715. proc ::tk::TextResetAnchor {w index} {
  716.     if {[$w tag ranges sel] eq ""} {
  717. # Don't move the anchor if there is no selection now; this makes
  718. # the widget behave "correctly" when the user clicks once, then
  719. # shift-clicks somewhere -- ie, the area between the two clicks will be
  720. # selected. [Bug: 5929].
  721. return
  722.     }
  723.     set a [$w index $index]
  724.     set b [$w index sel.first]
  725.     set c [$w index sel.last]
  726.     if {[$w compare $a < $b]} {
  727. $w mark set anchor sel.last
  728. return
  729.     }
  730.     if {[$w compare $a > $c]} {
  731. $w mark set anchor sel.first
  732. return
  733.     }
  734.     scan $a "%d.%d" lineA chA
  735.     scan $b "%d.%d" lineB chB
  736.     scan $c "%d.%d" lineC chC
  737.     if {$lineB < $lineC+2} {
  738. set total [string length [$w get $b $c]]
  739. if {$total <= 2} {
  740.     return
  741. }
  742. if {[string length [$w get $b $a]] < ($total/2)} {
  743.     $w mark set anchor sel.last
  744. } else {
  745.     $w mark set anchor sel.first
  746. }
  747. return
  748.     }
  749.     if {($lineA-$lineB) < ($lineC-$lineA)} {
  750. $w mark set anchor sel.last
  751.     } else {
  752. $w mark set anchor sel.first
  753.     }
  754. }
  755. # ::tk::TextInsert --
  756. # Insert a string into a text at the point of the insertion cursor.
  757. # If there is a selection in the text, and it covers the point of the
  758. # insertion cursor, then delete the selection before inserting.
  759. #
  760. # Arguments:
  761. # w - The text window in which to insert the string
  762. # s - The string to insert (usually just a single character)
  763. proc ::tk::TextInsert {w s} {
  764.     if {$s eq "" || [$w cget -state] eq "disabled"} {
  765. return
  766.     }
  767.     set compound 0
  768.     catch {
  769. if {[$w compare sel.first <= insert] 
  770. && [$w compare sel.last >= insert]} {
  771.             set oldSeparator [$w cget -autoseparators]
  772.             if { $oldSeparator } {
  773.                 $w configure -autoseparators 0
  774.                 $w edit separator
  775.                 set compound 1
  776.             }
  777.     $w delete sel.first sel.last
  778. }
  779.     }
  780.     $w insert insert $s
  781.     $w see insert
  782.     if { $compound && $oldSeparator } {
  783.         $w edit separator
  784.         $w configure -autoseparators 1
  785.     }
  786. }
  787. # ::tk::TextUpDownLine --
  788. # Returns the index of the character one line above or below the
  789. # insertion cursor.  There are two tricky things here.  First,
  790. # we want to maintain the original column across repeated operations,
  791. # even though some lines that will get passed through don't have
  792. # enough characters to cover the original column.  Second, don't
  793. # try to scroll past the beginning or end of the text.
  794. #
  795. # Arguments:
  796. # w - The text window in which the cursor is to move.
  797. # n - The number of lines to move: -1 for up one line,
  798. # +1 for down one line.
  799. proc ::tk::TextUpDownLine {w n} {
  800.     variable ::tk::Priv
  801.     set i [$w index insert]
  802.     scan $i "%d.%d" line char
  803.     if {$Priv(prevPos) ne $i} {
  804. set Priv(char) $char
  805.     }
  806.     set new [$w index [expr {$line + $n}].$Priv(char)]
  807.     if {[$w compare $new == end] || [$w compare $new == "insert linestart"]} {
  808. set new $i
  809.     }
  810.     set Priv(prevPos) $new
  811.     return $new
  812. }
  813. # ::tk::TextPrevPara --
  814. # Returns the index of the beginning of the paragraph just before a given
  815. # position in the text (the beginning of a paragraph is the first non-blank
  816. # character after a blank line).
  817. #
  818. # Arguments:
  819. # w - The text window in which the cursor is to move.
  820. # pos - Position at which to start search.
  821. proc ::tk::TextPrevPara {w pos} {
  822.     set pos [$w index "$pos linestart"]
  823.     while {1} {
  824. if {([$w get "$pos - 1 line"] eq "n" 
  825.  && [$w get $pos] ne "n") || $pos eq "1.0"} {
  826.     if {[regexp -indices {^[  ]+(.)} [$w get $pos "$pos lineend"] 
  827.     dummy index]} {
  828. set pos [$w index "$pos + [lindex $index 0] chars"]
  829.     }
  830.     if {[$w compare $pos != insert] || [lindex [split $pos .] 0] == 1} {
  831. return $pos
  832.     }
  833. }
  834. set pos [$w index "$pos - 1 line"]
  835.     }
  836. }
  837. # ::tk::TextNextPara --
  838. # Returns the index of the beginning of the paragraph just after a given
  839. # position in the text (the beginning of a paragraph is the first non-blank
  840. # character after a blank line).
  841. #
  842. # Arguments:
  843. # w - The text window in which the cursor is to move.
  844. # start - Position at which to start search.
  845. proc ::tk::TextNextPara {w start} {
  846.     set pos [$w index "$start linestart + 1 line"]
  847.     while {[$w get $pos] ne "n"} {
  848. if {[$w compare $pos == end]} {
  849.     return [$w index "end - 1c"]
  850. }
  851. set pos [$w index "$pos + 1 line"]
  852.     }
  853.     while {[$w get $pos] eq "n"} {
  854. set pos [$w index "$pos + 1 line"]
  855. if {[$w compare $pos == end]} {
  856.     return [$w index "end - 1c"]
  857. }
  858.     }
  859.     if {[regexp -indices {^[  ]+(.)} [$w get $pos "$pos lineend"] 
  860.     dummy index]} {
  861. return [$w index "$pos + [lindex $index 0] chars"]
  862.     }
  863.     return $pos
  864. }
  865. # ::tk::TextScrollPages --
  866. # This is a utility procedure used in bindings for moving up and down
  867. # pages and possibly extending the selection along the way.  It scrolls
  868. # the view in the widget by the number of pages, and it returns the
  869. # index of the character that is at the same position in the new view
  870. # as the insertion cursor used to be in the old view.
  871. #
  872. # Arguments:
  873. # w - The text window in which the cursor is to move.
  874. # count - Number of pages forward to scroll;  may be negative
  875. # to scroll backwards.
  876. proc ::tk::TextScrollPages {w count} {
  877.     set bbox [$w bbox insert]
  878.     $w yview scroll $count pages
  879.     if {$bbox eq ""} {
  880. return [$w index @[expr {[winfo height $w]/2}],0]
  881.     }
  882.     return [$w index @[lindex $bbox 0],[lindex $bbox 1]]
  883. }
  884. # ::tk::TextTranspose --
  885. # This procedure implements the "transpose" function for text widgets.
  886. # It tranposes the characters on either side of the insertion cursor,
  887. # unless the cursor is at the end of the line.  In this case it
  888. # transposes the two characters to the left of the cursor.  In either
  889. # case, the cursor ends up to the right of the transposed characters.
  890. #
  891. # Arguments:
  892. # w - Text window in which to transpose.
  893. proc ::tk::TextTranspose w {
  894.     set pos insert
  895.     if {[$w compare $pos != "$pos lineend"]} {
  896. set pos [$w index "$pos + 1 char"]
  897.     }
  898.     set new [$w get "$pos - 1 char"][$w get  "$pos - 2 char"]
  899.     if {[$w compare "$pos - 1 char" == 1.0]} {
  900. return
  901.     }
  902.     # ensure this is seen as an atomic op to undo
  903.     set autosep [$w cget -autoseparators]
  904.     if {$autosep} {
  905. $w configure -autoseparators 0
  906. $w edit separator
  907.     }
  908.     $w delete "$pos - 2 char" $pos
  909.     $w insert insert $new
  910.     $w see insert
  911.     if {$autosep} {
  912. $w edit separator
  913. $w configure -autoseparators $autosep
  914.     }
  915. }
  916. # ::tk_textCopy --
  917. # This procedure copies the selection from a text widget into the
  918. # clipboard.
  919. #
  920. # Arguments:
  921. # w - Name of a text widget.
  922. proc ::tk_textCopy w {
  923.     if {![catch {set data [$w get sel.first sel.last]}]} {
  924. clipboard clear -displayof $w
  925. clipboard append -displayof $w $data
  926.     }
  927. }
  928. # ::tk_textCut --
  929. # This procedure copies the selection from a text widget into the
  930. # clipboard, then deletes the selection (if it exists in the given
  931. # widget).
  932. #
  933. # Arguments:
  934. # w - Name of a text widget.
  935. proc ::tk_textCut w {
  936.     if {![catch {set data [$w get sel.first sel.last]}]} {
  937. clipboard clear -displayof $w
  938. clipboard append -displayof $w $data
  939. $w delete sel.first sel.last
  940.     }
  941. }
  942. # ::tk_textPaste --
  943. # This procedure pastes the contents of the clipboard to the insertion
  944. # point in a text widget.
  945. #
  946. # Arguments:
  947. # w - Name of a text widget.
  948. proc ::tk_textPaste w {
  949.     global tcl_platform
  950.     if {![catch {::tk::GetSelection $w CLIPBOARD} sel]} {
  951. # ensure this is seen as an atomic op to undo
  952. set oldSeparator [$w cget -autoseparators]
  953. if { $oldSeparator } {
  954.     $w configure -autoseparators 0
  955.     $w edit separator
  956. }
  957. if {[tk windowingsystem] ne "x11"} {
  958.     catch { $w delete sel.first sel.last }
  959. }
  960. $w insert insert $sel
  961. if { $oldSeparator } {
  962.     $w edit separator
  963.     $w configure -autoseparators 1
  964. }
  965.     }
  966. }
  967. # ::tk::TextNextWord --
  968. # Returns the index of the next word position after a given position in the
  969. # text.  The next word is platform dependent and may be either the next
  970. # end-of-word position or the next start-of-word position after the next
  971. # end-of-word position.
  972. #
  973. # Arguments:
  974. # w - The text window in which the cursor is to move.
  975. # start - Position at which to start search.
  976. if {$tcl_platform(platform) eq "windows"}  {
  977.     proc ::tk::TextNextWord {w start} {
  978. TextNextPos $w [TextNextPos $w $start tcl_endOfWord] 
  979.     tcl_startOfNextWord
  980.     }
  981. } else {
  982.     proc ::tk::TextNextWord {w start} {
  983. TextNextPos $w $start tcl_endOfWord
  984.     }
  985. }
  986. # ::tk::TextNextPos --
  987. # Returns the index of the next position after the given starting
  988. # position in the text as computed by a specified function.
  989. #
  990. # Arguments:
  991. # w - The text window in which the cursor is to move.
  992. # start - Position at which to start search.
  993. # op - Function to use to find next position.
  994. proc ::tk::TextNextPos {w start op} {
  995.     set text ""
  996.     set cur $start
  997.     while {[$w compare $cur < end]} {
  998. set text $text[$w get $cur "$cur lineend + 1c"]
  999. set pos [$op $text 0]
  1000. if {$pos >= 0} {
  1001.     ## Adjust for embedded windows and images
  1002.     ## dump gives us 3 items per window/image
  1003.     set dump [$w dump -image -window $start "$start + $pos c"]
  1004.     if {[llength $dump]} {
  1005. set pos [expr {$pos + ([llength $dump]/3)}]
  1006.     }
  1007.     return [$w index "$start + $pos c"]
  1008. }
  1009. set cur [$w index "$cur lineend +1c"]
  1010.     }
  1011.     return end
  1012. }
  1013. # ::tk::TextPrevPos --
  1014. # Returns the index of the previous position before the given starting
  1015. # position in the text as computed by a specified function.
  1016. #
  1017. # Arguments:
  1018. # w - The text window in which the cursor is to move.
  1019. # start - Position at which to start search.
  1020. # op - Function to use to find next position.
  1021. proc ::tk::TextPrevPos {w start op} {
  1022.     set text ""
  1023.     set cur $start
  1024.     while {[$w compare $cur > 0.0]} {
  1025. set text [$w get "$cur linestart - 1c" $cur]$text
  1026. set pos [$op $text end]
  1027. if {$pos >= 0} {
  1028.     ## Adjust for embedded windows and images
  1029.     ## dump gives us 3 items per window/image
  1030.     set dump [$w dump -image -window "$cur linestart" "$start - 1c"]
  1031.     if {[llength $dump]} {
  1032. ## This is a hokey extra hack for control-arrow movement
  1033. ## that should be in a while loop to be correct (hobbs)
  1034. if {[$w compare [lindex $dump 2] > 
  1035. "$cur linestart - 1c + $pos c"]} {
  1036.     incr pos -1
  1037. }
  1038. set pos [expr {$pos + ([llength $dump]/3)}]
  1039.     }
  1040.     return [$w index "$cur linestart - 1c + $pos c"]
  1041. }
  1042. set cur [$w index "$cur linestart - 1c"]
  1043.     }
  1044.     return 0.0
  1045. }
  1046. # ::tk::TextScanMark --
  1047. #
  1048. # Marks the start of a possible scan drag operation
  1049. #
  1050. # Arguments:
  1051. # w - The text window from which the text to get
  1052. # x - x location on screen
  1053. # y - y location on screen
  1054. proc ::tk::TextScanMark {w x y} {
  1055.     $w scan mark $x $y
  1056.     set ::tk::Priv(x) $x
  1057.     set ::tk::Priv(y) $y
  1058.     set ::tk::Priv(mouseMoved) 0
  1059. }
  1060. # ::tk::TextScanDrag --
  1061. #
  1062. # Marks the start of a possible scan drag operation
  1063. #
  1064. # Arguments:
  1065. # w - The text window from which the text to get
  1066. # x - x location on screen
  1067. # y - y location on screen
  1068. proc ::tk::TextScanDrag {w x y} {
  1069.     # Make sure these exist, as some weird situations can trigger the
  1070.     # motion binding without the initial press.  [Bug #220269]
  1071.     if {![info exists ::tk::Priv(x)]} { set ::tk::Priv(x) $x }
  1072.     if {![info exists ::tk::Priv(y)]} { set ::tk::Priv(y) $y }
  1073.     if {($x != $::tk::Priv(x)) || ($y != $::tk::Priv(y))} {
  1074. set ::tk::Priv(mouseMoved) 1
  1075.     }
  1076.     if {[info exists ::tk::Priv(mouseMoved)] && $::tk::Priv(mouseMoved)} {
  1077. $w scan dragto $x $y
  1078.     }
  1079. }