| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | namespace eval ::tk::spinbox {} |
| |
|
| | |
| | |
| | |
| | bind Spinbox <<Cut>> { |
| | if {![catch {::tk::spinbox::GetSelection %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 Spinbox <<Copy>> { |
| | if {![catch {::tk::spinbox::GetSelection %W} tk::Priv(data)]} { |
| | clipboard clear -displayof %W |
| | clipboard append -displayof %W $tk::Priv(data) |
| | unset tk::Priv(data) |
| | } |
| | } |
| | bind Spinbox <<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 Spinbox <<Clear>> { |
| | %W delete sel.first sel.last |
| | } |
| | bind Spinbox <<PasteSelection>> { |
| | if {$tk_strictMotif || ![info exists tk::Priv(mouseMoved)] |
| | || !$tk::Priv(mouseMoved)} { |
| | ::tk::spinbox::Paste %W %x |
| | } |
| | } |
| |
|
| | bind Spinbox <<TraverseIn>> { |
| | %W selection range 0 end |
| | %W icursor end |
| | } |
| |
|
| | |
| |
|
| | bind Spinbox <1> { |
| | ::tk::spinbox::ButtonDown %W %x %y |
| | } |
| | bind Spinbox <B1-Motion> { |
| | ::tk::spinbox::Motion %W %x %y |
| | } |
| | bind Spinbox <Double-1> { |
| | ::tk::spinbox::ArrowPress %W %x %y |
| | set tk::Priv(selectMode) word |
| | ::tk::spinbox::MouseSelect %W %x sel.first |
| | } |
| | bind Spinbox <Triple-1> { |
| | ::tk::spinbox::ArrowPress %W %x %y |
| | set tk::Priv(selectMode) line |
| | ::tk::spinbox::MouseSelect %W %x 0 |
| | } |
| | bind Spinbox <Shift-1> { |
| | set tk::Priv(selectMode) char |
| | %W selection adjust @%x |
| | } |
| | bind Spinbox <Double-Shift-1> { |
| | set tk::Priv(selectMode) word |
| | ::tk::spinbox::MouseSelect %W %x |
| | } |
| | bind Spinbox <Triple-Shift-1> { |
| | set tk::Priv(selectMode) line |
| | ::tk::spinbox::MouseSelect %W %x |
| | } |
| | bind Spinbox <B1-Leave> { |
| | set tk::Priv(x) %x |
| | ::tk::spinbox::AutoScan %W |
| | } |
| | bind Spinbox <B1-Enter> { |
| | tk::CancelRepeat |
| | } |
| | bind Spinbox <ButtonRelease-1> { |
| | ::tk::spinbox::ButtonUp %W %x %y |
| | } |
| | bind Spinbox <Control-1> { |
| | %W icursor @%x |
| | } |
| |
|
| | bind Spinbox <<PrevLine>> { |
| | %W invoke buttonup |
| | } |
| | bind Spinbox <<NextLine>> { |
| | %W invoke buttondown |
| | } |
| |
|
| | bind Spinbox <<PrevChar>> { |
| | ::tk::EntrySetCursor %W [expr {[%W index insert] - 1}] |
| | } |
| | bind Spinbox <<NextChar>> { |
| | ::tk::EntrySetCursor %W [expr {[%W index insert] + 1}] |
| | } |
| | bind Spinbox <<SelectPrevChar>> { |
| | ::tk::EntryKeySelect %W [expr {[%W index insert] - 1}] |
| | ::tk::EntrySeeInsert %W |
| | } |
| | bind Spinbox <<SelectNextChar>> { |
| | ::tk::EntryKeySelect %W [expr {[%W index insert] + 1}] |
| | ::tk::EntrySeeInsert %W |
| | } |
| | bind Spinbox <<PrevWord>> { |
| | ::tk::EntrySetCursor %W [::tk::EntryPreviousWord %W insert] |
| | } |
| | bind Spinbox <<NextWord>> { |
| | ::tk::EntrySetCursor %W [::tk::EntryNextWord %W insert] |
| | } |
| | bind Spinbox <<SelectPrevWord>> { |
| | ::tk::EntryKeySelect %W [::tk::EntryPreviousWord %W insert] |
| | ::tk::EntrySeeInsert %W |
| | } |
| | bind Spinbox <<SelectNextWord>> { |
| | ::tk::EntryKeySelect %W [::tk::EntryNextWord %W insert] |
| | ::tk::EntrySeeInsert %W |
| | } |
| | bind Spinbox <<LineStart>> { |
| | ::tk::EntrySetCursor %W 0 |
| | } |
| | bind Spinbox <<SelectLineStart>> { |
| | ::tk::EntryKeySelect %W 0 |
| | ::tk::EntrySeeInsert %W |
| | } |
| | bind Spinbox <<LineEnd>> { |
| | ::tk::EntrySetCursor %W end |
| | } |
| | bind Spinbox <<SelectLineEnd>> { |
| | ::tk::EntryKeySelect %W end |
| | ::tk::EntrySeeInsert %W |
| | } |
| |
|
| | bind Spinbox <Delete> { |
| | if {[%W selection present]} { |
| | %W delete sel.first sel.last |
| | } else { |
| | %W delete insert |
| | } |
| | } |
| | bind Spinbox <BackSpace> { |
| | ::tk::EntryBackspace %W |
| | } |
| |
|
| | bind Spinbox <Control-space> { |
| | %W selection from insert |
| | } |
| | bind Spinbox <Select> { |
| | %W selection from insert |
| | } |
| | bind Spinbox <Control-Shift-space> { |
| | %W selection adjust insert |
| | } |
| | bind Spinbox <Shift-Select> { |
| | %W selection adjust insert |
| | } |
| | bind Spinbox <<SelectAll>> { |
| | %W selection range 0 end |
| | } |
| | bind Spinbox <<SelectNone>> { |
| | %W selection clear |
| | } |
| | bind Spinbox <Key> { |
| | ::tk::EntryInsert %W %A |
| | } |
| |
|
| | |
| | |
| | |
| | |
| |
|
| | bind Spinbox <Alt-Key> {# nothing} |
| | bind Spinbox <Meta-Key> {# nothing} |
| | bind Spinbox <Control-Key> {# nothing} |
| | bind Spinbox <Escape> {# nothing} |
| | bind Spinbox <Return> {# nothing} |
| | bind Spinbox <KP_Enter> {# nothing} |
| | bind Spinbox <Tab> {# nothing} |
| | bind Spinbox <Prior> {# nothing} |
| | bind Spinbox <Next> {# nothing} |
| | if {[tk windowingsystem] eq "aqua"} { |
| | bind Spinbox <Command-Key> {# nothing} |
| | bind Spinbox <Mod4-Key> {# nothing} |
| | } |
| |
|
| | |
| | |
| | if {[tk windowingsystem] ne "win32"} { |
| | bind Spinbox <Insert> { |
| | catch {::tk::EntryInsert %W [::tk::GetSelection %W PRIMARY]} |
| | } |
| | } |
| |
|
| | |
| |
|
| | bind Spinbox <Control-d> { |
| | if {!$tk_strictMotif} { |
| | %W delete insert |
| | } |
| | } |
| | bind Spinbox <Control-h> { |
| | if {!$tk_strictMotif} { |
| | ::tk::EntryBackspace %W |
| | } |
| | } |
| | bind Spinbox <Control-k> { |
| | if {!$tk_strictMotif} { |
| | %W delete insert end |
| | } |
| | } |
| | bind Spinbox <Control-t> { |
| | if {!$tk_strictMotif} { |
| | ::tk::EntryTranspose %W |
| | } |
| | } |
| | bind Spinbox <Meta-b> { |
| | if {!$tk_strictMotif} { |
| | ::tk::EntrySetCursor %W [::tk::EntryPreviousWord %W insert] |
| | } |
| | } |
| | bind Spinbox <Meta-d> { |
| | if {!$tk_strictMotif} { |
| | %W delete insert [::tk::EntryNextWord %W insert] |
| | } |
| | } |
| | bind Spinbox <Meta-f> { |
| | if {!$tk_strictMotif} { |
| | ::tk::EntrySetCursor %W [::tk::EntryNextWord %W insert] |
| | } |
| | } |
| | bind Spinbox <Meta-BackSpace> { |
| | if {!$tk_strictMotif} { |
| | %W delete [::tk::EntryPreviousWord %W insert] insert |
| | } |
| | } |
| | bind Spinbox <Meta-Delete> { |
| | if {!$tk_strictMotif} { |
| | %W delete [::tk::EntryPreviousWord %W insert] insert |
| | } |
| | } |
| |
|
| | |
| |
|
| | if {[tk windowingsystem] ne "aqua"} { |
| | bind Spinbox <2> { |
| | if {!$tk_strictMotif} { |
| | ::tk::EntryScanMark %W %x |
| | } |
| | } |
| | bind Spinbox <B2-Motion> { |
| | if {!$tk_strictMotif} { |
| | ::tk::EntryScanDrag %W %x |
| | } |
| | } |
| | } else { |
| | bind Spinbox <3> { |
| | if {!$tk_strictMotif} { |
| | ::tk::EntryScanMark %W %x |
| | } |
| | } |
| | bind Spinbox <B3-Motion> { |
| | if {!$tk_strictMotif} { |
| | ::tk::EntryScanDrag %W %x |
| | } |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::spinbox::Invoke {w elem} { |
| | variable ::tk::Priv |
| |
|
| | if {![winfo exists $w]} { |
| | return |
| | } |
| |
|
| | if {![info exists Priv(outsideElement)]} { |
| | $w invoke $elem |
| | incr Priv(repeated) |
| | } |
| | set delay [$w cget -repeatinterval] |
| | if {$delay > 0} { |
| | set Priv(afterId) [after $delay \ |
| | [list ::tk::spinbox::Invoke $w $elem]] |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::spinbox::ClosestGap {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::spinbox::ArrowPress {w x y} { |
| | variable ::tk::Priv |
| |
|
| | if {[$w cget -state] ne "disabled" && \ |
| | [string match "button*" $Priv(element)]} { |
| | $w selection element $Priv(element) |
| | set Priv(repeated) 0 |
| | set Priv(relief) [$w cget -$Priv(element)relief] |
| | catch {after cancel $Priv(afterId)} |
| | set delay [$w cget -repeatdelay] |
| | if {$delay > 0} { |
| | set Priv(afterId) [after $delay \ |
| | [list ::tk::spinbox::Invoke $w $Priv(element)]] |
| | } |
| | if {[info exists Priv(outsideElement)]} { |
| | unset Priv(outsideElement) |
| | } |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::spinbox::ButtonDown {w x y} { |
| | variable ::tk::Priv |
| |
|
| | |
| | |
| | |
| | set Priv(element) [$w identify $x $y] |
| | if {$Priv(element) eq ""} { |
| | set Priv(element) "entry" |
| | } |
| |
|
| | switch -exact $Priv(element) { |
| | "buttonup" - "buttondown" { |
| | ::tk::spinbox::ArrowPress $w $x $y |
| | } |
| | "entry" { |
| | set Priv(selectMode) char |
| | set Priv(mouseMoved) 0 |
| | set Priv(pressX) $x |
| | $w icursor [::tk::spinbox::ClosestGap $w $x] |
| | $w selection from insert |
| | if {"disabled" ne [$w cget -state]} {focus $w} |
| | $w selection clear |
| | } |
| | default { |
| | return -code error -errorcode {TK SPINBOX UNKNOWN_ELEMENT} \ |
| | "unknown spinbox element \"$Priv(element)\"" |
| | } |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::spinbox::ButtonUp {w x y} { |
| | variable ::tk::Priv |
| |
|
| | ::tk::CancelRepeat |
| |
|
| | |
| | |
| | if {[info exists Priv(element)] && [info exists Priv(relief)] && \ |
| | [string match "button*" $Priv(element)]} { |
| | if {[info exists Priv(repeated)] && !$Priv(repeated)} { |
| | $w invoke $Priv(element) |
| | } |
| | $w configure -$Priv(element)relief $Priv(relief) |
| | $w selection element none |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::spinbox::MouseSelect {w x {cursor {}}} { |
| | variable ::tk::Priv |
| |
|
| | if {$Priv(element) ne "entry"} { |
| | |
| | |
| | return |
| | } |
| | set cur [::tk::spinbox::ClosestGap $w $x] |
| | set anchor [$w index anchor] |
| | if {($cur ne $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 < [$w index anchor]} { |
| | set before [tcl_wordBreakBefore [$w get] $cur] |
| | set after [tcl_wordBreakAfter [$w get] $anchor-1] |
| | } else { |
| | set before [tcl_wordBreakBefore [$w get] $anchor] |
| | set after [tcl_wordBreakAfter [$w get] $cur-1] |
| | } |
| | if {$before < 0} { |
| | set before 0 |
| | } |
| | if {$after < 0} { |
| | set after end |
| | } |
| | $w selection range $before $after |
| | } |
| | line { |
| | $w selection range 0 end |
| | } |
| | } |
| | if {$cursor ne {} && $cursor ne "ignore"} { |
| | catch {$w icursor $cursor} |
| | } |
| | update idletasks |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::spinbox::Paste {w x} { |
| | $w icursor [::tk::spinbox::ClosestGap $w $x] |
| | catch {$w insert insert [::tk::GetSelection $w PRIMARY]} |
| | if {"disabled" eq [$w cget -state]} { |
| | focus $w |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::spinbox::Motion {w x y} { |
| | variable ::tk::Priv |
| |
|
| | if {![info exists Priv(element)]} { |
| | set Priv(element) [$w identify $x $y] |
| | } |
| |
|
| | set Priv(x) $x |
| | if {"entry" eq $Priv(element)} { |
| | ::tk::spinbox::MouseSelect $w $x ignore |
| | } elseif {[$w identify $x $y] ne $Priv(element)} { |
| | if {![info exists Priv(outsideElement)]} { |
| | |
| | |
| | |
| | set Priv(outsideElement) "" |
| | $w selection element none |
| | } |
| | } elseif {[info exists Priv(outsideElement)]} { |
| | unset Priv(outsideElement) |
| | $w selection element $Priv(element) |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::spinbox::AutoScan {w} { |
| | variable ::tk::Priv |
| |
|
| | set x $Priv(x) |
| | if {$x >= [winfo width $w]} { |
| | $w xview scroll 2 units |
| | ::tk::spinbox::MouseSelect $w $x ignore |
| | } elseif {$x < 0} { |
| | $w xview scroll -2 units |
| | ::tk::spinbox::MouseSelect $w $x ignore |
| | } |
| | set Priv(afterId) [after 50 [list ::tk::spinbox::AutoScan $w]] |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | proc ::tk::spinbox::GetSelection {w} { |
| | return [string range [$w get] [$w index sel.first] \ |
| | [expr {[$w index sel.last] - 1}]] |
| | } |
| |
|