| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| | |
| | bind Entry <<Cut>> { |
| | if {![catch {tk::EntryGetSelection %W} tk::Priv(data)]} { |
| | clipboard clear -displayof %W |
| | clipboard append -displayof %W $tk::Priv(data) |
| | %W delete sel.first sel.last |
| | unset tk::Priv(data) |
| | } |
| | } |
| | bind Entry <<Copy>> { |
| | if {![catch {tk::EntryGetSelection %W} tk::Priv(data)]} { |
| | clipboard clear -displayof %W |
| | clipboard append -displayof %W $tk::Priv(data) |
| | unset tk::Priv(data) |
| | } |
| | } |
| | bind Entry <<Paste>> { |
| | catch { |
| | if {[tk windowingsystem] ne "x11"} { |
| | catch { |
| | %W delete sel.first sel.last |
| | } |
| | } |
| | %W insert insert [::tk::GetSelection %W CLIPBOARD] |
| | tk::EntrySeeInsert %W |
| | } |
| | } |
| | bind Entry <<Clear>> { |
| | |
| | catch { %W delete sel.first sel.last } |
| | } |
| | bind Entry <<PasteSelection>> { |
| | if {$tk_strictMotif || ![info exists tk::Priv(mouseMoved)] |
| | || !$tk::Priv(mouseMoved)} { |
| | tk::EntryPaste %W %x |
| | } |
| | } |
| |
|
| | bind Entry <<TraverseIn>> { |
| | %W selection range 0 end |
| | %W icursor end |
| | } |
| |
|
| | |
| |
|
| | bind Entry <1> { |
| | tk::EntryButton1 %W %x |
| | %W selection clear |
| | } |
| | bind Entry <B1-Motion> { |
| | set tk::Priv(x) %x |
| | tk::EntryMouseSelect %W %x |
| | } |
| | bind Entry <Double-1> { |
| | set tk::Priv(selectMode) word |
| | tk::EntryMouseSelect %W %x |
| | catch {%W icursor sel.last} |
| | } |
| | bind Entry <Triple-1> { |
| | set tk::Priv(selectMode) line |
| | tk::EntryMouseSelect %W %x |
| | catch {%W icursor sel.last} |
| | } |
| | bind Entry <Shift-1> { |
| | set tk::Priv(selectMode) char |
| | %W selection adjust @%x |
| | } |
| | bind Entry <Double-Shift-1> { |
| | set tk::Priv(selectMode) word |
| | tk::EntryMouseSelect %W %x |
| | } |
| | bind Entry <Triple-Shift-1> { |
| | set tk::Priv(selectMode) line |
| | tk::EntryMouseSelect %W %x |
| | } |
| | bind Entry <B1-Leave> { |
| | set tk::Priv(x) %x |
| | tk::EntryAutoScan %W |
| | } |
| | bind Entry <B1-Enter> { |
| | tk::CancelRepeat |
| | } |
| | bind Entry <ButtonRelease-1> { |
| | tk::CancelRepeat |
| | } |
| | bind Entry <Control-1> { |
| | %W icursor @%x |
| | } |
| |
|
| | bind Entry <<PrevChar>> { |
| | tk::EntrySetCursor %W [expr {[%W index insert] - 1}] |
| | } |
| | bind Entry <<NextChar>> { |
| | tk::EntrySetCursor %W [expr {[%W index insert] + 1}] |
| | } |
| | bind Entry <<SelectPrevChar>> { |
| | tk::EntryKeySelect %W [expr {[%W index insert] - 1}] |
| | tk::EntrySeeInsert %W |
| | } |
| | bind Entry <<SelectNextChar>> { |
| | tk::EntryKeySelect %W [expr {[%W index insert] + 1}] |
| | tk::EntrySeeInsert %W |
| | } |
| | bind Entry <<PrevWord>> { |
| | tk::EntrySetCursor %W [tk::EntryPreviousWord %W insert] |
| | } |
| | bind Entry <<NextWord>> { |
| | tk::EntrySetCursor %W [tk::EntryNextWord %W insert] |
| | } |
| | bind Entry <<SelectPrevWord>> { |
| | tk::EntryKeySelect %W [tk::EntryPreviousWord %W insert] |
| | tk::EntrySeeInsert %W |
| | } |
| | bind Entry <<SelectNextWord>> { |
| | tk::EntryKeySelect %W [tk::EntryNextWord %W insert] |
| | tk::EntrySeeInsert %W |
| | } |
| | bind Entry <<LineStart>> { |
| | tk::EntrySetCursor %W 0 |
| | } |
| | bind Entry <<SelectLineStart>> { |
| | tk::EntryKeySelect %W 0 |
| | tk::EntrySeeInsert %W |
| | } |
| | bind Entry <<LineEnd>> { |
| | tk::EntrySetCursor %W end |
| | } |
| | bind Entry <<SelectLineEnd>> { |
| | tk::EntryKeySelect %W end |
| | tk::EntrySeeInsert %W |
| | } |
| |
|
| | bind Entry <Delete> { |
| | if {[%W selection present]} { |
| | %W delete sel.first sel.last |
| | } else { |
| | %W delete insert |
| | } |
| | } |
| | bind Entry <BackSpace> { |
| | tk::EntryBackspace %W |
| | } |
| |
|
| | bind Entry <Control-space> { |
| | %W selection from insert |
| | } |
| | bind Entry <Select> { |
| | %W selection from insert |
| | } |
| | bind Entry <Control-Shift-space> { |
| | %W selection adjust insert |
| | } |
| | bind Entry <Shift-Select> { |
| | %W selection adjust insert |
| | } |
| | bind Entry <<SelectAll>> { |
| | %W selection range 0 end |
| | } |
| | bind Entry <<SelectNone>> { |
| | %W selection clear |
| | } |
| | bind Entry <KeyPress> { |
| | tk::CancelRepeat |
| | tk::EntryInsert %W %A |
| | } |
| |
|
| | |
| | |
| | |
| | |
| |
|
| | bind Entry <Alt-KeyPress> {# nothing} |
| | bind Entry <Meta-KeyPress> {# nothing} |
| | bind Entry <Control-KeyPress> {# nothing} |
| | bind Entry <Escape> {# nothing} |
| | bind Entry <Return> {# nothing} |
| | bind Entry <KP_Enter> {# nothing} |
| | bind Entry <Tab> {# nothing} |
| | bind Entry <Prior> {# nothing} |
| | bind Entry <Next> {# nothing} |
| | if {[tk windowingsystem] eq "aqua"} { |
| | bind Entry <Command-KeyPress> {# nothing} |
| | } |
| | |
| | bind Entry <<NextLine>> {# nothing} |
| | bind Entry <<PrevLine>> {# nothing} |
| |
|
| | |
| | |
| | if {[tk windowingsystem] ne "win32"} { |
| | bind Entry <Insert> { |
| | catch {tk::EntryInsert %W [::tk::GetSelection %W PRIMARY]} |
| | } |
| | } |
| |
|
| | |
| |
|
| | bind Entry <Control-d> { |
| | if {!$tk_strictMotif} { |
| | %W delete insert |
| | } |
| | } |
| | bind Entry <Control-h> { |
| | if {!$tk_strictMotif} { |
| | tk::EntryBackspace %W |
| | } |
| | } |
| | bind Entry <Control-k> { |
| | if {!$tk_strictMotif} { |
| | %W delete insert end |
| | } |
| | } |
| | bind Entry <Control-t> { |
| | if {!$tk_strictMotif} { |
| | tk::EntryTranspose %W |
| | } |
| | } |
| | bind Entry <Meta-b> { |
| | if {!$tk_strictMotif} { |
| | tk::EntrySetCursor %W [tk::EntryPreviousWord %W insert] |
| | } |
| | } |
| | bind Entry <Meta-d> { |
| | if {!$tk_strictMotif} { |
| | %W delete insert [tk::EntryNextWord %W insert] |
| | } |
| | } |
| | bind Entry <Meta-f> { |
| | if {!$tk_strictMotif} { |
| | tk::EntrySetCursor %W [tk::EntryNextWord %W insert] |
| | } |
| | } |
| | bind Entry <Meta-BackSpace> { |
| | if {!$tk_strictMotif} { |
| | %W delete [tk::EntryPreviousWord %W insert] insert |
| | } |
| | } |
| | bind Entry <Meta-Delete> { |
| | if {!$tk_strictMotif} { |
| | %W delete [tk::EntryPreviousWord %W insert] insert |
| | } |
| | } |
| |
|
| | |
| |
|
| | bind Entry <2> { |
| | if {!$tk_strictMotif} { |
| | ::tk::EntryScanMark %W %x |
| | } |
| | } |
| | bind Entry <B2-Motion> { |
| | if {!$tk_strictMotif} { |
| | ::tk::EntryScanDrag %W %x |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryClosestGap {w x} { |
| | set pos [$w index @$x] |
| | set bbox [$w bbox $pos] |
| | if {($x - [lindex $bbox 0]) < ([lindex $bbox 2]/2)} { |
| | return $pos |
| | } |
| | incr pos |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryButton1 {w x} { |
| | variable ::tk::Priv |
| |
|
| | set Priv(selectMode) char |
| | set Priv(mouseMoved) 0 |
| | set Priv(pressX) $x |
| | $w icursor [EntryClosestGap $w $x] |
| | $w selection from insert |
| | if {"disabled" ne [$w cget -state]} { |
| | focus $w |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryMouseSelect {w x} { |
| | variable ::tk::Priv |
| |
|
| | set cur [EntryClosestGap $w $x] |
| | set anchor [$w index anchor] |
| | if {($cur != $anchor) || (abs($Priv(pressX) - $x) >= 3)} { |
| | set Priv(mouseMoved) 1 |
| | } |
| | switch $Priv(selectMode) { |
| | char { |
| | if {$Priv(mouseMoved)} { |
| | if {$cur < $anchor} { |
| | $w selection range $cur $anchor |
| | } elseif {$cur > $anchor} { |
| | $w selection range $anchor $cur |
| | } else { |
| | $w selection clear |
| | } |
| | } |
| | } |
| | word { |
| | if {$cur < $anchor} { |
| | set before [tcl_wordBreakBefore [$w get] $cur] |
| | set after [tcl_wordBreakAfter [$w get] [expr {$anchor-1}]] |
| | } elseif {$cur > $anchor} { |
| | set before [tcl_wordBreakBefore [$w get] $anchor] |
| | set after [tcl_wordBreakAfter [$w get] [expr {$cur - 1}]] |
| | } else { |
| | if {[$w index @$Priv(pressX)] < $anchor} { |
| | incr anchor -1 |
| | } |
| | set before [tcl_wordBreakBefore [$w get] $anchor] |
| | set after [tcl_wordBreakAfter [$w get] $anchor] |
| | } |
| | if {$before < 0} { |
| | set before 0 |
| | } |
| | if {$after < 0} { |
| | set after end |
| | } |
| | $w selection range $before $after |
| | } |
| | line { |
| | $w selection range 0 end |
| | } |
| | } |
| | if {$Priv(mouseMoved)} { |
| | $w icursor $cur |
| | } |
| | update idletasks |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryPaste {w x} { |
| | $w icursor [EntryClosestGap $w $x] |
| | catch {$w insert insert [::tk::GetSelection $w PRIMARY]} |
| | if {"disabled" ne [$w cget -state]} { |
| | focus $w |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryAutoScan {w} { |
| | variable ::tk::Priv |
| | set x $Priv(x) |
| | if {![winfo exists $w]} { |
| | return |
| | } |
| | if {$x >= [winfo width $w]} { |
| | $w xview scroll 2 units |
| | EntryMouseSelect $w $x |
| | } elseif {$x < 0} { |
| | $w xview scroll -2 units |
| | EntryMouseSelect $w $x |
| | } |
| | set Priv(afterId) [after 50 [list tk::EntryAutoScan $w]] |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryKeySelect {w new} { |
| | if {![$w selection present]} { |
| | $w selection from insert |
| | $w selection to $new |
| | } else { |
| | $w selection adjust $new |
| | } |
| | $w icursor $new |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryInsert {w s} { |
| | if {$s eq ""} { |
| | return |
| | } |
| | catch { |
| | set insert [$w index insert] |
| | if {([$w index sel.first] <= $insert) |
| | && ([$w index sel.last] >= $insert)} { |
| | $w delete sel.first sel.last |
| | } |
| | } |
| | $w insert insert $s |
| | EntrySeeInsert $w |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryBackspace w { |
| | if {[$w selection present]} { |
| | $w delete sel.first sel.last |
| | } else { |
| | set x [expr {[$w index insert] - 1}] |
| | if {$x >= 0} { |
| | $w delete $x |
| | } |
| | if {[$w index @0] >= [$w index insert]} { |
| | set range [$w xview] |
| | set left [lindex $range 0] |
| | set right [lindex $range 1] |
| | $w xview moveto [expr {$left - ($right - $left)/2.0}] |
| | } |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntrySeeInsert w { |
| | set c [$w index insert] |
| | if {($c < [$w index @0]) || ($c > [$w index @[winfo width $w]])} { |
| | $w xview $c |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntrySetCursor {w pos} { |
| | $w icursor $pos |
| | $w selection clear |
| | EntrySeeInsert $w |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryTranspose w { |
| | set i [$w index insert] |
| | if {$i < [$w index end]} { |
| | incr i |
| | } |
| | set first [expr {$i-2}] |
| | if {$first < 0} { |
| | return |
| | } |
| | set data [$w get] |
| | set new [string index $data [expr {$i-1}]][string index $data $first] |
| | $w delete $first $i |
| | $w insert insert $new |
| | EntrySeeInsert $w |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | if {[tk windowingsystem] eq "win32"} { |
| | proc ::tk::EntryNextWord {w start} { |
| | set pos [tcl_endOfWord [$w get] [$w index $start]] |
| | if {$pos >= 0} { |
| | set pos [tcl_startOfNextWord [$w get] $pos] |
| | } |
| | if {$pos < 0} { |
| | return end |
| | } |
| | return $pos |
| | } |
| | } else { |
| | proc ::tk::EntryNextWord {w start} { |
| | set pos [tcl_endOfWord [$w get] [$w index $start]] |
| | if {$pos < 0} { |
| | return end |
| | } |
| | return $pos |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryPreviousWord {w start} { |
| | set pos [tcl_startOfPreviousWord [$w get] [$w index $start]] |
| | if {$pos < 0} { |
| | return 0 |
| | } |
| | return $pos |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryScanMark {w x} { |
| | $w scan mark $x |
| | set ::tk::Priv(x) $x |
| | set ::tk::Priv(y) 0 |
| | set ::tk::Priv(mouseMoved) 0 |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryScanDrag {w x} { |
| | |
| | |
| | if {![info exists ::tk::Priv(x)]} { set ::tk::Priv(x) $x } |
| | |
| | if {abs($x-$::tk::Priv(x)) > 2} { |
| | set ::tk::Priv(mouseMoved) 1 |
| | } |
| | $w scan dragto $x |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::EntryGetSelection {w} { |
| | set entryString [string range [$w get] [$w index sel.first] \ |
| | [expr {[$w index sel.last] - 1}]] |
| | if {[$w cget -show] ne ""} { |
| | return [string repeat [string index [$w cget -show] 0] \ |
| | [string length $entryString]] |
| | } |
| | return $entryString |
| | } |
| |
|