| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295 |
- # text.tcl --
- #
- # This file defines the default bindings for Tk text widgets and provides
- # procedures that help in implementing the bindings.
- #
- # Copyright © 1992-1994 The Regents of the University of California.
- # Copyright © 1994-1997 Sun Microsystems, Inc.
- # Copyright © 1998 Scriptics Corporation.
- #
- # See the file "license.terms" for information on usage and redistribution
- # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- #
- #-------------------------------------------------------------------------
- # Elements of ::tk::Priv that are used in this file:
- #
- # afterId - If non-null, it means that auto-scanning is underway
- # and it gives the "after" id for the next auto-scan
- # command to be executed.
- # char - Character position on the line; kept in order
- # to allow moving up or down past short lines while
- # still remembering the desired position.
- # mouseMoved - Non-zero means the mouse has moved a significant
- # amount since the button went down (so, for example,
- # start dragging out a selection).
- # prevPos - Used when moving up or down lines via the keyboard.
- # Keeps track of the previous insert position, so
- # we can distinguish a series of ups and downs, all
- # in a row, from a new up or down.
- # selectMode - The style of selection currently underway:
- # char, word, or line.
- # x, y - Last known mouse coordinates for scanning
- # and auto-scanning.
- #
- #-------------------------------------------------------------------------
- #-------------------------------------------------------------------------
- # The code below creates the default class bindings for text widgets.
- #-------------------------------------------------------------------------
- # Standard Motif bindings:
- bind Text <Button-1> {
- tk::TextButton1 %W %x %y
- %W tag remove sel 0.0 end
- }
- bind Text <B1-Motion> {
- set tk::Priv(x) %x
- set tk::Priv(y) %y
- tk::TextSelectTo %W %x %y
- }
- bind Text <Double-Button-1> {
- set tk::Priv(selectMode) word
- tk::TextSelectTo %W %x %y
- catch {%W mark set insert sel.first}
- }
- bind Text <Triple-Button-1> {
- set tk::Priv(selectMode) line
- tk::TextSelectTo %W %x %y
- catch {%W mark set insert sel.first}
- }
- bind Text <Shift-Button-1> {
- tk::TextResetAnchor %W @%x,%y
- set tk::Priv(selectMode) char
- tk::TextSelectTo %W %x %y
- }
- bind Text <Double-Shift-Button-1> {
- set tk::Priv(selectMode) word
- tk::TextSelectTo %W %x %y 1
- }
- bind Text <Triple-Shift-Button-1> {
- set tk::Priv(selectMode) line
- tk::TextSelectTo %W %x %y
- }
- bind Text <B1-Leave> {
- set tk::Priv(x) %x
- set tk::Priv(y) %y
- tk::TextAutoScan %W
- }
- bind Text <B1-Enter> {
- tk::CancelRepeat
- }
- bind Text <ButtonRelease-1> {
- tk::CancelRepeat
- }
- bind Text <Control-Button-1> {
- %W mark set insert @%x,%y
- # An operation that moves the insert mark without making it
- # one end of the selection must insert an autoseparator
- if {[%W cget -autoseparators]} {
- %W edit separator
- }
- }
- # stop an accidental double click triggering <Double-Button-1>
- bind Text <Double-Control-Button-1> { # nothing }
- # stop an accidental movement triggering <B1-Motion>
- bind Text <Control-B1-Motion> { # nothing }
- bind Text <<PrevChar>> {
- tk::TextSetCursor %W [tk::TextPrevPos %W insert tk::startOfCluster]
- }
- bind Text <<NextChar>> {
- tk::TextSetCursor %W [tk::TextNextPos %W insert tk::endOfCluster]
- }
- bind Text <<PrevLine>> {
- tk::TextSetCursor %W [tk::TextUpDownLine %W -1]
- }
- bind Text <<NextLine>> {
- tk::TextSetCursor %W [tk::TextUpDownLine %W 1]
- }
- bind Text <<SelectPrevChar>> {
- tk::TextKeySelect %W [tk::TextPrevPos %W insert tk::startOfCluster]
- }
- bind Text <<SelectNextChar>> {
- tk::TextKeySelect %W [tk::TextNextPos %W insert tk::endOfCluster]
- }
- bind Text <<SelectPrevLine>> {
- tk::TextKeySelect %W [tk::TextUpDownLine %W -1]
- }
- bind Text <<SelectNextLine>> {
- tk::TextKeySelect %W [tk::TextUpDownLine %W 1]
- }
- bind Text <<PrevWord>> {
- tk::TextSetCursor %W [tk::TextPrevPos %W insert tk::startOfPreviousWord]
- }
- bind Text <<NextWord>> {
- tk::TextSetCursor %W [tk::TextNextWord %W insert]
- }
- bind Text <<PrevPara>> {
- tk::TextSetCursor %W [tk::TextPrevPara %W insert]
- }
- bind Text <<NextPara>> {
- tk::TextSetCursor %W [tk::TextNextPara %W insert]
- }
- bind Text <<SelectPrevWord>> {
- tk::TextKeySelect %W [tk::TextPrevPos %W insert tk::startOfPreviousWord]
- }
- bind Text <<SelectNextWord>> {
- tk::TextKeySelect %W [tk::TextSelectNextWord %W insert]
- }
- bind Text <<SelectPrevPara>> {
- tk::TextKeySelect %W [tk::TextPrevPara %W insert]
- }
- bind Text <<SelectNextPara>> {
- tk::TextKeySelect %W [tk::TextNextPara %W insert]
- }
- bind Text <Prior> {
- tk::TextSetCursor %W [tk::TextScrollPages %W -1]
- }
- bind Text <Shift-Prior> {
- tk::TextKeySelect %W [tk::TextScrollPages %W -1]
- }
- bind Text <Next> {
- tk::TextSetCursor %W [tk::TextScrollPages %W 1]
- }
- bind Text <Shift-Next> {
- tk::TextKeySelect %W [tk::TextScrollPages %W 1]
- }
- bind Text <Control-Prior> {
- %W xview scroll -1 page
- }
- bind Text <Control-Next> {
- %W xview scroll 1 page
- }
- bind Text <<LineStart>> {
- tk::TextSetCursor %W {insert display linestart}
- }
- bind Text <<SelectLineStart>> {
- tk::TextKeySelect %W {insert display linestart}
- }
- bind Text <<LineEnd>> {
- tk::TextSetCursor %W {insert display lineend}
- }
- bind Text <<SelectLineEnd>> {
- tk::TextKeySelect %W {insert display lineend}
- }
- bind Text <Control-Home> {
- tk::TextSetCursor %W 1.0
- }
- bind Text <Control-Shift-Home> {
- tk::TextKeySelect %W 1.0
- }
- bind Text <Control-End> {
- tk::TextSetCursor %W {end - 1 indices}
- }
- bind Text <Control-Shift-End> {
- tk::TextKeySelect %W {end - 1 indices}
- }
- bind Text <Tab> {
- if {[%W cget -state] eq "normal"} {
- tk::TextInsert %W \t
- focus %W
- break
- }
- }
- bind Text <Shift-Tab> {
- # Needed only to keep <Tab> binding from triggering; doesn't
- # have to actually do anything.
- break
- }
- bind Text <Control-Tab> {
- focus [tk_focusNext %W]
- }
- bind Text <Control-Shift-Tab> {
- focus [tk_focusPrev %W]
- }
- bind Text <Control-i> {
- tk::TextInsert %W \t
- }
- bind Text <Return> {
- tk::TextInsert %W \n
- if {[%W cget -autoseparators]} {
- %W edit separator
- }
- }
- bind Text <Delete> {
- if {[tk::TextCursorInSelection %W]} {
- %W delete sel.first sel.last
- } else {
- if {[%W compare end != insert+1c]} {
- %W delete [tk::TextPrevPos %W insert+1c tk::startOfCluster] \
- [tk::TextNextPos %W insert tk::endOfCluster]
- }
- %W see insert
- }
- }
- bind Text <BackSpace> {
- if {[tk::TextCursorInSelection %W]} {
- %W delete sel.first sel.last
- } else {
- if {[%W compare insert != 1.0]} {
- %W delete [tk::TextPrevPos %W insert tk::startOfCluster] \
- [tk::TextNextPos %W insert-1c tk::endOfCluster]
- }
- %W see insert
- }
- }
- bind Text <Control-space> {
- %W mark set [tk::TextAnchor %W] insert
- }
- bind Text <Select> {
- %W mark set [tk::TextAnchor %W] insert
- }
- bind Text <Control-Shift-space> {
- set tk::Priv(selectMode) char
- tk::TextKeyExtend %W insert
- }
- bind Text <Shift-Select> {
- set tk::Priv(selectMode) char
- tk::TextKeyExtend %W insert
- }
- bind Text <<SelectAll>> {
- %W tag add sel 1.0 end
- }
- bind Text <<SelectNone>> {
- %W tag remove sel 1.0 end
- # An operation that clears the selection must insert an autoseparator,
- # because the selection operation may have moved the insert mark
- if {[%W cget -autoseparators]} {
- %W edit separator
- }
- }
- bind Text <<Cut>> {
- tk_textCut %W
- }
- bind Text <<Copy>> {
- tk_textCopy %W
- }
- bind Text <<Paste>> {
- tk_textPaste %W
- }
- bind Text <<Clear>> {
- # Make <<Clear>> an atomic operation on the Undo stack,
- # i.e. separate it from other delete operations on either side
- if {[%W cget -autoseparators]} {
- %W edit separator
- }
- catch {%W delete sel.first sel.last}
- if {[%W cget -autoseparators]} {
- %W edit separator
- }
- }
- bind Text <<PasteSelection>> {
- if {$tk_strictMotif || ![info exists tk::Priv(mouseMoved)]
- || !$tk::Priv(mouseMoved)} {
- tk::TextPasteSelection %W %x %y
- }
- }
- bind Text <Insert> {
- catch {tk::TextInsert %W [::tk::GetSelection %W PRIMARY]}
- }
- bind Text <Key> {
- tk::TextInsert %W %A
- }
- # Ignore all Alt, Meta, Control, Command, and Fn keypresses unless explicitly bound.
- # Otherwise, if a widget binding for one of these is defined, the
- # <Key> class binding will also fire and insert the character,
- # which is wrong. Ditto for <Escape>.
- bind Text <Alt-Key> {# nothing }
- bind Text <Meta-Key> {# nothing}
- bind Text <Control-Key> {# nothing}
- bind Text <Escape> {# nothing}
- bind Text <KP_Enter> {# nothing}
- bind Text <Command-Key> {# nothing}
- bind Text <Fn-Key> {# nothing}
- # Additional emacs-like bindings:
- bind Text <Control-d> {
- if {!$tk_strictMotif && [%W compare end != insert+1c]} {
- %W delete insert
- }
- }
- bind Text <Control-k> {
- if {!$tk_strictMotif && [%W compare end != insert+1c]} {
- if {[%W compare insert == {insert lineend}]} {
- %W delete insert
- } else {
- %W delete insert {insert lineend}
- }
- }
- }
- bind Text <Control-o> {
- if {!$tk_strictMotif} {
- %W insert insert \n
- %W mark set insert insert-1c
- }
- }
- bind Text <Control-t> {
- if {!$tk_strictMotif} {
- tk::TextTranspose %W
- }
- }
- bind Text <<Undo>> {
- # An Undo operation may remove the separator at the top of the Undo stack.
- # Then the item at the top of the stack gets merged with the subsequent changes.
- # Place separators before and after Undo to prevent this.
- if {[%W cget -autoseparators]} {
- %W edit separator
- }
- catch { %W edit undo }
- if {[%W cget -autoseparators]} {
- %W edit separator
- }
- }
- bind Text <<Redo>> {
- catch { %W edit redo }
- }
- bind Text <Meta-b> {
- if {!$tk_strictMotif} {
- tk::TextSetCursor %W [tk::TextPrevPos %W insert tk::startOfPreviousWord]
- }
- }
- bind Text <Meta-d> {
- if {!$tk_strictMotif && [%W compare end != insert+1c]} {
- %W delete insert [tk::TextNextWord %W insert]
- }
- }
- bind Text <Meta-f> {
- if {!$tk_strictMotif} {
- tk::TextSetCursor %W [tk::TextNextWord %W insert]
- }
- }
- bind Text <Meta-less> {
- if {!$tk_strictMotif} {
- tk::TextSetCursor %W 1.0
- }
- }
- bind Text <Meta-greater> {
- if {!$tk_strictMotif} {
- tk::TextSetCursor %W end-1c
- }
- }
- bind Text <Meta-BackSpace> {
- if {!$tk_strictMotif} {
- %W delete [tk::TextPrevPos %W insert tk::startOfPreviousWord] insert
- }
- }
- bind Text <Meta-Delete> {
- if {!$tk_strictMotif} {
- %W delete [tk::TextPrevPos %W insert tk::startOfPreviousWord] insert
- }
- }
- # Bindings for IME text input.
- bind Text <<TkStartIMEMarkedText>> {
- dict set ::tk::Priv(IMETextMark) "%W" [%W index insert]
- }
- bind Text <<TkEndIMEMarkedText>> {
- ::tk::TextEndIMEMarkedText %W
- }
- bind Text <<TkClearIMEMarkedText>> {
- %W delete IMEmarkedtext.first IMEmarkedtext.last
- }
- bind Text <<TkAccentBackspace>> {
- %W delete insert-1c
- }
- # ::tk::TextEndIMEMarkedText --
- #
- # Handles input method text marking in a text widget.
- #
- # Arguments:
- # w - The text widget
- proc ::tk::TextEndIMEMarkedText {w} {
- variable Priv
- if {[catch {
- set mark [dict get $Priv(IMETextMark) $w]
- }]} {
- bell
- return
- }
- $w tag add IMEmarkedtext $mark insert
- $w tag configure IMEmarkedtext -underline 1
- }
- # Macintosh only bindings:
- if {[tk windowingsystem] eq "aqua"} {
- bind Text <Control-v> {
- tk::TextScrollPages %W 1
- }
- # End of Mac only bindings
- }
- # A few additional bindings of my own.
- bind Text <Control-h> {
- if {!$tk_strictMotif && [%W compare insert != 1.0]} {
- %W delete insert-1c
- %W see insert
- }
- }
- bind Text <Button-2> {
- if {!$tk_strictMotif} {
- tk::TextScanMark %W %x %y
- }
- }
- bind Text <B2-Motion> {
- if {!$tk_strictMotif} {
- tk::TextScanDrag %W %x %y
- }
- }
- set ::tk::Priv(prevPos) {}
- bind Text <MouseWheel> {
- tk::MouseWheel %W y [tk::ScaleNum %D] -4.0 pixels
- }
- bind Text <Option-MouseWheel> {
- tk::MouseWheel %W y [tk::ScaleNum %D] -1.2 pixels
- }
- bind Text <Shift-MouseWheel> {
- tk::MouseWheel %W x [tk::ScaleNum %D] -4.0 pixels
- }
- bind Text <Shift-Option-MouseWheel> {
- tk::MouseWheel %W x [tk::ScaleNum %D] -1.2 pixels
- }
- bind Text <TouchpadScroll> {
- lassign [tk::PreciseScrollDeltas %D] tk::Priv(deltaX) tk::Priv(deltaY)
- if {$tk::Priv(deltaX) != 0} {
- %W xview scroll [tk::ScaleNum [expr {-$tk::Priv(deltaX)}]] pixels
- }
- if {$tk::Priv(deltaY) != 0} {
- %W yview scroll [tk::ScaleNum [expr {-$tk::Priv(deltaY)}]] pixels
- }
- }
- # ::tk::TextClosestGap --
- # Given x and y coordinates, this procedure finds the closest boundary
- # between characters to the given coordinates and returns the index
- # of the character just after the boundary.
- #
- # Arguments:
- # w - The text window.
- # x - X-coordinate within the window.
- # y - Y-coordinate within the window.
- proc ::tk::TextClosestGap {w x y} {
- set pos [$w index @$x,$y]
- set bbox [$w bbox $pos]
- if {$bbox eq ""} {
- return $pos
- }
- # The check on y coord of the line bbox with dlineinfo is to fix
- # [a9cf210a42] to properly handle selecting and moving the mouse
- # out of the widget.
- if {$y < [lindex [$w dlineinfo $pos] 1] ||
- $x - [lindex $bbox 0] < [lindex $bbox 2]/2} {
- return $pos
- }
- $w index "$pos + 1 char"
- }
- # ::tk::TextButton1 --
- # This procedure is invoked to handle button-1 presses in text
- # widgets. It moves the insertion cursor, sets the selection anchor,
- # and claims the input focus.
- #
- # Arguments:
- # w - The text window in which the button was pressed.
- # x - The x-coordinate of the button press.
- # y - The x-coordinate of the button press.
- proc ::tk::TextButton1 {w x y} {
- variable ::tk::Priv
- set Priv(selectMode) char
- set Priv(mouseMoved) 0
- set Priv(pressX) $x
- set anchorname [tk::TextAnchor $w]
- $w mark set insert [TextClosestGap $w $x $y]
- $w mark set $anchorname insert
- # Set the anchor mark's gravity depending on the click position
- # relative to the gap
- set bbox [$w bbox [$w index $anchorname]]
- if {$x > [lindex $bbox 0]} {
- $w mark gravity $anchorname right
- } else {
- $w mark gravity $anchorname left
- }
- focus $w
- if {[$w cget -autoseparators]} {
- $w edit separator
- }
- }
- # ::tk::TextSelectTo --
- # This procedure is invoked to extend the selection, typically when
- # dragging it with the mouse. Depending on the selection mode (character,
- # word, line) it selects in different-sized units. This procedure
- # ignores mouse motions initially until the mouse has moved from
- # one character to another or until there have been multiple clicks.
- #
- # Note that the 'anchor' is implemented programmatically using
- # a text widget mark, and uses a name that will be unique for each
- # text widget (even when there are multiple peers). Currently the
- # anchor is considered private to Tk, hence the name 'tk::anchor$w'.
- #
- # Arguments:
- # w - The text window in which the button was pressed.
- # x - Mouse x position.
- # y - Mouse y position.
- set ::tk::Priv(textanchoruid) 0
- proc ::tk::TextAnchor {w} {
- variable Priv
- if {![info exists Priv(textanchor,$w)]} {
- set Priv(textanchor,$w) tk::anchor[incr Priv(textanchoruid)]
- }
- return $Priv(textanchor,$w)
- }
- proc ::tk::TextSelectTo {w x y {extend 0}} {
- variable ::tk::Priv
- set anchorname [tk::TextAnchor $w]
- set cur [TextClosestGap $w $x $y]
- if {[catch {$w index $anchorname}]} {
- $w mark set $anchorname $cur
- }
- set anchor [$w index $anchorname]
- if {[$w compare $cur != $anchor] || (abs($Priv(pressX) - $x) >= 3)} {
- set Priv(mouseMoved) 1
- }
- switch -- $Priv(selectMode) {
- char {
- if {[$w compare $cur < $anchorname]} {
- set first $cur
- set last $anchorname
- } else {
- set first $anchorname
- set last $cur
- }
- }
- word {
- # Set initial range based only on the anchor (1 char min width)
- if {[$w mark gravity $anchorname] eq "right"} {
- set first $anchorname
- set last "$anchorname + 1c"
- } else {
- set first "$anchorname - 1c"
- set last $anchorname
- }
- # Extend range (if necessary) based on the current point
- if {[$w compare $cur < $first]} {
- set first $cur
- } elseif {[$w compare $cur > $last]} {
- set last $cur
- }
- # Now find word boundaries
- set first [TextPrevPos $w "$first + 1c" tk::wordBreakBefore]
- set last [TextNextPos $w "$last - 1c" tk::wordBreakAfter]
- }
- line {
- # Set initial range based only on the anchor
- set first "$anchorname linestart"
- set last "$anchorname lineend"
- # Extend range (if necessary) based on the current point
- if {[$w compare $cur < $first]} {
- set first "$cur linestart"
- } elseif {[$w compare $cur > $last]} {
- set last "$cur lineend"
- }
- set first [$w index $first]
- set last [$w index "$last + 1c"]
- }
- }
- if {$Priv(mouseMoved) || ($Priv(selectMode) ne "char")} {
- $w tag remove sel 0.0 end
- $w mark set insert $cur
- $w tag add sel $first $last
- $w tag remove sel $last end
- update idletasks
- }
- }
- # ::tk::TextKeyExtend --
- # This procedure handles extending the selection from the keyboard,
- # where the point to extend to is really the boundary between two
- # characters rather than a particular character.
- #
- # Arguments:
- # w - The text window.
- # index - The point to which the selection is to be extended.
- proc ::tk::TextKeyExtend {w index} {
- set anchorname [tk::TextAnchor $w]
- set cur [$w index $index]
- if {[catch {$w index $anchorname}]} {
- $w mark set $anchorname $cur
- }
- set anchor [$w index $anchorname]
- if {[$w compare $cur < $anchorname]} {
- set first $cur
- set last $anchorname
- } else {
- set first $anchorname
- set last $cur
- }
- $w tag remove sel 0.0 $first
- $w tag add sel $first $last
- $w tag remove sel $last end
- }
- # ::tk::TextPasteSelection --
- # This procedure sets the insertion cursor to the mouse position,
- # inserts the selection, and sets the focus to the window.
- #
- # Arguments:
- # w - The text window.
- # x, y - Position of the mouse.
- proc ::tk::TextPasteSelection {w x y} {
- $w mark set insert [TextClosestGap $w $x $y]
- if {![catch {::tk::GetSelection $w PRIMARY} sel]} {
- set oldSeparator [$w cget -autoseparators]
- if {$oldSeparator} {
- $w configure -autoseparators 0
- $w edit separator
- }
- $w insert insert $sel
- if {$oldSeparator} {
- $w edit separator
- $w configure -autoseparators 1
- }
- }
- if {[$w cget -state] eq "normal"} {
- focus $w
- }
- }
- # ::tk::TextAutoScan --
- # This procedure is invoked when the mouse leaves a text window
- # with button 1 down. It scrolls the window up, down, left, or right,
- # depending on where the mouse is (this information was saved in
- # ::tk::Priv(x) and ::tk::Priv(y)), and reschedules itself as an "after"
- # command so that the window continues to scroll until the mouse
- # moves back into the window or the mouse button is released.
- #
- # Arguments:
- # w - The text window.
- proc ::tk::TextAutoScan {w} {
- variable ::tk::Priv
- if {![winfo exists $w]} {
- return
- }
- if {$Priv(y) >= [winfo height $w]} {
- $w yview scroll [expr {1 + $Priv(y) - [winfo height $w]}] pixels
- } elseif {$Priv(y) < 0} {
- $w yview scroll [expr {-1 + $Priv(y)}] pixels
- } elseif {$Priv(x) >= [winfo width $w]} {
- $w xview scroll 2 units
- } elseif {$Priv(x) < 0} {
- $w xview scroll -2 units
- } else {
- return
- }
- TextSelectTo $w $Priv(x) $Priv(y)
- set Priv(afterId) [after 50 [list tk::TextAutoScan $w]]
- }
- # ::tk::TextSetCursor
- # Move the insertion cursor to a given position in a text. Also
- # clears the selection, if there is one in the text, and makes sure
- # that the insertion cursor is visible. Also, don't let the insertion
- # cursor appear on the dummy last line of the text.
- #
- # Arguments:
- # w - The text window.
- # pos - The desired new position for the cursor in the window.
- proc ::tk::TextSetCursor {w pos} {
- if {[$w compare $pos == end]} {
- set pos {end - 1 chars}
- }
- $w mark set insert $pos
- $w tag remove sel 1.0 end
- $w see insert
- if {[$w cget -autoseparators]} {
- $w edit separator
- }
- }
- # ::tk::TextKeySelect
- # This procedure is invoked when stroking out selections using the
- # keyboard. It moves the cursor to a new position, then extends
- # the selection to that position.
- #
- # Arguments:
- # w - The text window.
- # new - A new position for the insertion cursor (the cursor hasn't
- # actually been moved to this position yet).
- proc ::tk::TextKeySelect {w new} {
- set anchorname [tk::TextAnchor $w]
- if {[$w tag nextrange sel 1.0 end] eq ""} {
- if {[$w compare $new < insert]} {
- $w tag add sel $new insert
- } else {
- $w tag add sel insert $new
- }
- $w mark set $anchorname insert
- } else {
- if {[catch {$w index $anchorname}]} {
- $w mark set $anchorname insert
- }
- if {[$w compare $new < $anchorname]} {
- set first $new
- set last $anchorname
- } else {
- set first $anchorname
- set last $new
- }
- $w tag remove sel 1.0 $first
- $w tag add sel $first $last
- $w tag remove sel $last end
- }
- $w mark set insert $new
- $w see insert
- update idletasks
- }
- # ::tk::TextResetAnchor --
- # Set the selection anchor to whichever end is farthest from the
- # index argument. One special trick: if the selection has two or
- # fewer characters, just leave the anchor where it is. In this
- # case it doesn't matter which point gets chosen for the anchor,
- # and for the things like Shift-Left and Shift-Right this produces
- # better behavior when the cursor moves back and forth across the
- # anchor.
- #
- # Arguments:
- # w - The text widget.
- # index - Position at which mouse button was pressed, which determines
- # which end of selection should be used as anchor point.
- proc ::tk::TextResetAnchor {w index} {
- if {[$w tag ranges sel] eq ""} {
- # Don't move the anchor if there is no selection now; this
- # makes the widget behave "correctly" when the user clicks
- # once, then shift-clicks somewhere -- ie, the area between
- # the two clicks will be selected. [Bug: 5929].
- return
- }
- set anchorname [tk::TextAnchor $w]
- set a [$w index $index]
- set b [$w index sel.first]
- set c [$w index sel.last]
- if {[$w compare $a < $b]} {
- $w mark set $anchorname sel.last
- return
- }
- if {[$w compare $a > $c]} {
- $w mark set $anchorname sel.first
- return
- }
- scan $a "%d.%d" lineA chA
- scan $b "%d.%d" lineB chB
- scan $c "%d.%d" lineC chC
- if {$lineB < $lineC+2} {
- set total [string length [$w get $b $c]]
- if {$total <= 2} {
- return
- }
- if {[string length [$w get $b $a]] < ($total/2)} {
- $w mark set $anchorname sel.last
- } else {
- $w mark set $anchorname sel.first
- }
- return
- }
- if {($lineA-$lineB) < ($lineC-$lineA)} {
- $w mark set $anchorname sel.last
- } else {
- $w mark set $anchorname sel.first
- }
- }
- # ::tk::TextCursorInSelection --
- # Check whether the selection exists and contains the insertion cursor. Note
- # that it assumes that the selection is contiguous.
- #
- # Arguments:
- # w - The text widget whose selection is to be checked
- proc ::tk::TextCursorInSelection {w} {
- expr {
- [llength [$w tag ranges sel]]
- && [$w compare sel.first <= insert]
- && [$w compare sel.last >= insert]
- }
- }
- # ::tk::TextInsert --
- # Insert a string into a text at the point of the insertion cursor.
- # If there is a selection in the text, and it covers the point of the
- # insertion cursor, then delete the selection before inserting.
- #
- # Arguments:
- # w - The text window in which to insert the string
- # s - The string to insert (usually just a single character)
- proc ::tk::TextInsert {w s} {
- if {$s eq "" || [$w cget -state] eq "disabled"} {
- return
- }
- set compound 0
- if {[TextCursorInSelection $w]} {
- set oldSeparator [$w cget -autoseparators]
- if {$oldSeparator} {
- $w configure -autoseparators 0
- $w edit separator
- set compound 1
- }
- $w delete sel.first sel.last
- }
- $w insert insert $s
- $w see insert
- if {$compound && $oldSeparator} {
- $w edit separator
- $w configure -autoseparators 1
- }
- }
- # ::tk::TextUpDownLine --
- # Returns the index of the character one display line above or below the
- # insertion cursor. There is a tricky thing here: we want to maintain the
- # original x position across repeated operations, even though some lines
- # that will get passed through don't have enough characters to cover the
- # original column.
- #
- # Arguments:
- # w - The text window in which the cursor is to move.
- # n - The number of display lines to move: -1 for up one line,
- # +1 for down one line.
- proc ::tk::TextUpDownLine {w n} {
- variable ::tk::Priv
- set i [$w index insert]
- if {$Priv(prevPos) ne $i} {
- set Priv(textPosOrig) $i
- }
- set lines [$w count -displaylines $Priv(textPosOrig) $i]
- set new [$w index \
- "$Priv(textPosOrig) + [expr {$lines + $n}] displaylines"]
- set Priv(prevPos) $new
- if {[$w compare $new == "end display lineend"] \
- || [$w compare $new == "insert display linestart"]} {
- set Priv(textPosOrig) $new
- }
- return $new
- }
- # ::tk::TextPrevPara --
- # Returns the index of the beginning of the paragraph just before a given
- # position in the text (the beginning of a paragraph is the first non-blank
- # character after a blank line).
- #
- # Arguments:
- # w - The text window in which the cursor is to move.
- # pos - Position at which to start search.
- proc ::tk::TextPrevPara {w pos} {
- set pos [$w index "$pos linestart"]
- while {1} {
- if {([$w get "$pos - 1 line"] eq "\n" && ([$w get $pos] ne "\n")) \
- || $pos eq "1.0"} {
- if {[regexp -indices -- {^[ \t]+(.)} \
- [$w get $pos "$pos lineend"] -> index]} {
- set pos [$w index "$pos + [lindex $index 0] chars"]
- }
- if {[$w compare $pos != insert] || [lindex [split $pos .] 0]==1} {
- return $pos
- }
- }
- set pos [$w index "$pos - 1 line"]
- }
- }
- # ::tk::TextNextPara --
- # Returns the index of the beginning of the paragraph just after a given
- # position in the text (the beginning of a paragraph is the first non-blank
- # character after a blank line).
- #
- # Arguments:
- # w - The text window in which the cursor is to move.
- # start - Position at which to start search.
- proc ::tk::TextNextPara {w start} {
- set pos [$w index "$start linestart + 1 line"]
- while {[$w get $pos] ne "\n"} {
- if {[$w compare $pos == end]} {
- return [$w index "end - 1c"]
- }
- set pos [$w index "$pos + 1 line"]
- }
- while {[$w get $pos] eq "\n"} {
- set pos [$w index "$pos + 1 line"]
- if {[$w compare $pos == end]} {
- return [$w index "end - 1c"]
- }
- }
- if {[regexp -indices -- {^[ \t]+(.)} \
- [$w get $pos "$pos lineend"] -> index]} {
- return [$w index "$pos + [lindex $index 0] chars"]
- }
- return $pos
- }
- # ::tk::TextScrollPages --
- # This is a utility procedure used in bindings for moving up and down
- # pages and possibly extending the selection along the way. It scrolls
- # the view in the widget by the number of pages, and it returns the
- # index of the character that is at the same position in the new view
- # as the insertion cursor used to be in the old view.
- #
- # Arguments:
- # w - The text window in which the cursor is to move.
- # count - Number of pages forward to scroll; may be negative
- # to scroll backwards.
- proc ::tk::TextScrollPages {w count} {
- set bbox [$w bbox insert]
- $w yview scroll $count pages
- if {$bbox eq ""} {
- return [$w index @[expr {[winfo height $w]/2}],0]
- }
- return [$w index @[lindex $bbox 0],[lindex $bbox 1]]
- }
- # ::tk::TextTranspose --
- # This procedure implements the "transpose" function for text widgets.
- # It tranposes the characters on either side of the insertion cursor,
- # unless the cursor is at the end of the line. In this case it
- # transposes the two characters to the left of the cursor. In either
- # case, the cursor ends up to the right of the transposed characters.
- #
- # Arguments:
- # w - Text window in which to transpose.
- proc ::tk::TextTranspose w {
- set pos insert
- if {[$w compare $pos != "$pos lineend"]} {
- set pos [$w index "$pos + 1 char"]
- }
- set new [$w get "$pos - 1 char"][$w get "$pos - 2 char"]
- if {[$w compare "$pos - 1 char" == 1.0]} {
- return
- }
- # ensure this is seen as an atomic op to undo
- set autosep [$w cget -autoseparators]
- if {$autosep} {
- $w configure -autoseparators 0
- $w edit separator
- }
- $w delete "$pos - 2 char" $pos
- $w insert insert $new
- $w see insert
- if {$autosep} {
- $w edit separator
- $w configure -autoseparators $autosep
- }
- }
- # ::tk_textCopy --
- # This procedure copies the selection from a text widget into the
- # clipboard.
- #
- # Arguments:
- # w - Name of a text widget.
- proc ::tk_textCopy w {
- if {![catch {set data [$w get sel.first sel.last]}]} {
- clipboard clear -displayof $w
- clipboard append -displayof $w $data
- }
- }
- # ::tk_textCut --
- # This procedure copies the selection from a text widget into the
- # clipboard, then deletes the selection (if it exists in the given
- # widget).
- #
- # Arguments:
- # w - Name of a text widget.
- proc ::tk_textCut w {
- if {![catch {set data [$w get sel.first sel.last]}]} {
- # make <<Cut>> an atomic operation on the Undo stack,
- # i.e. separate it from other delete operations on either side
- set oldSeparator [$w cget -autoseparators]
- if {([$w cget -state] eq "normal") && $oldSeparator} {
- $w edit separator
- }
- clipboard clear -displayof $w
- clipboard append -displayof $w $data
- $w delete sel.first sel.last
- if {([$w cget -state] eq "normal") && $oldSeparator} {
- $w edit separator
- }
- }
- }
- # ::tk_textPaste --
- # This procedure pastes the contents of the clipboard to the insertion
- # point in a text widget.
- #
- # Arguments:
- # w - Name of a text widget.
- proc ::tk_textPaste w {
- if {![catch {::tk::GetSelection $w CLIPBOARD} sel]} {
- set oldSeparator [$w cget -autoseparators]
- if {$oldSeparator} {
- $w configure -autoseparators 0
- $w edit separator
- }
- if {[tk windowingsystem] ne "x11"} {
- catch { $w delete sel.first sel.last }
- }
- $w insert insert $sel
- if {$oldSeparator} {
- $w edit separator
- $w configure -autoseparators 1
- }
- }
- }
- # ::tk::TextNextWord --
- # Returns the index of the next start-of-word position after the next
- # end-of-word position after a given position in the text.
- #
- # Arguments:
- # w - The text window in which the cursor is to move.
- # start - Position at which to start search.
- proc ::tk::TextNextWord {w start} {
- TextNextPos $w [TextNextPos $w $start tk::endOfWord] \
- tk::startOfNextWord
- }
- # ::tk::TextSelectNextWord --
- # Returns the index of the next end-of-word position after a given
- # position in the text.
- #
- # Arguments:
- # w - The text window in which the cursor is to move.
- # start - Position at which to start search.
- proc ::tk::TextSelectNextWord {w start} {
- TextNextPos $w $start tk::endOfWord
- }
- # ::tk::TextNextPos --
- # Returns the index of the next position after the given starting
- # position in the text as computed by a specified function.
- #
- # Arguments:
- # w - The text window in which the cursor is to move.
- # start - Position at which to start search.
- # op - Function to use to find next position.
- proc ::tk::TextNextPos {w start op} {
- set text ""
- set cur $start
- while {[$w compare $cur < end]} {
- set text $text[$w get -displaychars $cur "$cur lineend + 1c"]
- set pos [$op $text 0]
- if {$pos >= 0} {
- return [$w index "$start + $pos display chars"]
- }
- set cur [$w index "$cur lineend +1c"]
- }
- return end
- }
- # ::tk::TextPrevPos --
- # Returns the index of the previous position before the given starting
- # position in the text as computed by a specified function.
- #
- # Arguments:
- # w - The text window in which the cursor is to move.
- # start - Position at which to start search.
- # op - Function to use to find next position.
- proc ::tk::TextPrevPos {w start op} {
- set text ""
- set cur $start
- while {[$w compare $cur > 0.0]} {
- set text [$w get -displaychars "$cur linestart - 1c" $cur]$text
- set pos [$op $text end]
- if {$pos >= 0} {
- return [$w index "$cur linestart - 1c + $pos display chars"]
- }
- set cur [$w index "$cur linestart - 1c"]
- }
- return 0.0
- }
- # ::tk::TextScanMark --
- #
- # Marks the start of a possible scan drag operation
- #
- # Arguments:
- # w - The text window from which the text to get
- # x - x location on screen
- # y - y location on screen
- proc ::tk::TextScanMark {w x y} {
- variable ::tk::Priv
- $w scan mark $x $y
- set Priv(x) $x
- set Priv(y) $y
- set Priv(mouseMoved) 0
- }
- # ::tk::TextScanDrag --
- #
- # Marks the start of a possible scan drag operation
- #
- # Arguments:
- # w - The text window from which the text to get
- # x - x location on screen
- # y - y location on screen
- proc ::tk::TextScanDrag {w x y} {
- variable ::tk::Priv
- # Make sure these exist, as some weird situations can trigger the
- # motion binding without the initial press. [Bug #220269]
- if {![info exists Priv(x)]} {
- set Priv(x) $x
- }
- if {![info exists Priv(y)]} {
- set Priv(y) $y
- }
- if {($x != $Priv(x)) || ($y != $Priv(y))} {
- set Priv(mouseMoved) 1
- }
- if {[info exists Priv(mouseMoved)] && $Priv(mouseMoved)} {
- $w scan dragto $x $y
- }
- }
- # ::tk::TextUndoRedoProcessMarks --
- #
- # This proc is executed after an undo or redo action.
- # It processes the list of undo/redo marks temporarily set in the
- # text widget to positions delimiting where changes happened, and
- # returns a flat list of ranges. The temporary marks are removed
- # from the text widget.
- #
- # Arguments:
- # w - The text widget
- proc ::tk::TextUndoRedoProcessMarks {w} {
- set indices {}
- set undoMarks {}
- # only consider the temporary marks set by an undo/redo action
- foreach mark [$w mark names] {
- if {[string range $mark 0 11] eq "tk::undoMark"} {
- lappend undoMarks $mark
- }
- }
- # transform marks into indices
- # the number of undo/redo marks is always even, each right mark
- # completes a left mark to give a range
- # this is true because:
- # - undo/redo only deals with insertions and deletions of text
- # - insertions may move marks but not delete them
- # - when deleting text, marks located inside the deleted range
- # are not erased but moved to the start of the deletion range
- # . this is done in TkBTreeDeleteIndexRange ("This segment
- # refuses to die...")
- # . because MarkDeleteProc does nothing else than returning
- # a value indicating that marks are not deleted by this
- # deleteProc
- # . mark deletion rather happen through [.text mark unset xxx]
- # which was not used _up to this point of the code_ (it
- # is a bit later just before exiting the present proc)
- set nUndoMarks [llength $undoMarks]
- set n [expr {$nUndoMarks / 2}]
- set undoMarks [lsort -dictionary $undoMarks]
- if {$n > 0} {
- set Lmarks [lrange $undoMarks 0 [expr {$n - 1}]]
- } else {
- set Lmarks {}
- }
- set Rmarks [lrange $undoMarks $n [llength $undoMarks]]
- foreach Lmark $Lmarks Rmark $Rmarks {
- lappend indices [$w index $Lmark] [$w index $Rmark]
- $w mark unset $Lmark $Rmark
- }
- # process ranges to:
- # - remove those already fully included in another range
- # - merge overlapping ranges
- set ind [lsort -dictionary -stride 2 $indices]
- set indices {}
- for {set i 0} {$i < $nUndoMarks} {incr i 2} {
- set il1 [lindex $ind $i]
- set ir1 [lindex $ind [expr {$i + 1}]]
- lappend indices $il1 $ir1
- for {set j [expr {$i + 2}]} {$j < $nUndoMarks} {incr j 2} {
- set il2 [lindex $ind $j]
- set ir2 [lindex $ind [expr {$j + 1}]]
- if {[$w compare $il2 > $ir1]} {
- # second range starts after the end of first range
- # -> further second ranges do not need to be considered
- # because ranges were sorted by increasing first index
- set j $nUndoMarks
- } else {
- if {[$w compare $ir2 > $ir1]} {
- # second range overlaps first range
- # -> merge them into a single range
- set indices [lreplace $indices end-1 end]
- lappend indices $il1 $ir2
- } else {
- # second range is fully included in first range
- # -> ignore it
- }
- # in both cases above, the second range shall be
- # trimmed out from the list of ranges
- set ind [lreplace $ind $j [expr {$j + 1}]]
- incr j -2
- incr nUndoMarks -2
- }
- }
- }
- return $indices
- }
|