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

通讯编程

开发平台:

Visual C++

  1. # spinbox.tcl --
  2. #
  3. # This file defines the default bindings for Tk spinbox widgets and provides
  4. # procedures that help in implementing those bindings.  The spinbox builds
  5. # off the entry widget, so it can reuse Entry bindings and procedures.
  6. #
  7. # RCS: @(#) $Id: spinbox.tcl,v 1.6.2.1 2006/01/25 18:21:41 dgp Exp $
  8. #
  9. # Copyright (c) 1992-1994 The Regents of the University of California.
  10. # Copyright (c) 1994-1997 Sun Microsystems, Inc.
  11. # Copyright (c) 1999-2000 Jeffrey Hobbs
  12. # Copyright (c) 2000 Ajuba Solutions
  13. #
  14. # See the file "license.terms" for information on usage and redistribution
  15. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  16. #
  17. #-------------------------------------------------------------------------
  18. # Elements of tk::Priv that are used in this file:
  19. #
  20. # afterId - If non-null, it means that auto-scanning is underway
  21. # and it gives the "after" id for the next auto-scan
  22. # command to be executed.
  23. # mouseMoved - Non-zero means the mouse has moved a significant
  24. # amount since the button went down (so, for example,
  25. # start dragging out a selection).
  26. # pressX - X-coordinate at which the mouse button was pressed.
  27. # selectMode - The style of selection currently underway:
  28. # char, word, or line.
  29. # x, y - Last known mouse coordinates for scanning
  30. # and auto-scanning.
  31. # data - Used for Cut and Copy
  32. #-------------------------------------------------------------------------
  33. # Initialize namespace
  34. namespace eval ::tk::spinbox {}
  35. #-------------------------------------------------------------------------
  36. # The code below creates the default class bindings for entries.
  37. #-------------------------------------------------------------------------
  38. bind Spinbox <<Cut>> {
  39.     if {![catch {::tk::spinbox::GetSelection %W} tk::Priv(data)]} {
  40. clipboard clear -displayof %W
  41. clipboard append -displayof %W $tk::Priv(data)
  42. %W delete sel.first sel.last
  43. unset tk::Priv(data)
  44.     }
  45. }
  46. bind Spinbox <<Copy>> {
  47.     if {![catch {::tk::spinbox::GetSelection %W} tk::Priv(data)]} {
  48. clipboard clear -displayof %W
  49. clipboard append -displayof %W $tk::Priv(data)
  50. unset tk::Priv(data)
  51.     }
  52. }
  53. bind Spinbox <<Paste>> {
  54.     global tcl_platform
  55.     catch {
  56. if {[tk windowingsystem] ne "x11"} {
  57.     catch {
  58. %W delete sel.first sel.last
  59.     }
  60. }
  61. %W insert insert [::tk::GetSelection %W CLIPBOARD]
  62. ::tk::EntrySeeInsert %W
  63.     }
  64. }
  65. bind Spinbox <<Clear>> {
  66.     %W delete sel.first sel.last
  67. }
  68. bind Spinbox <<PasteSelection>> {
  69.     if {$tk_strictMotif || ![info exists tk::Priv(mouseMoved)]
  70. || !$tk::Priv(mouseMoved)} {
  71. ::tk::spinbox::Paste %W %x
  72.     }
  73. }
  74. # Standard Motif bindings:
  75. bind Spinbox <1> {
  76.     ::tk::spinbox::ButtonDown %W %x %y
  77. }
  78. bind Spinbox <B1-Motion> {
  79.     ::tk::spinbox::Motion %W %x %y
  80. }
  81. bind Spinbox <Double-1> {
  82.     set tk::Priv(selectMode) word
  83.     ::tk::spinbox::MouseSelect %W %x sel.first
  84. }
  85. bind Spinbox <Triple-1> {
  86.     set tk::Priv(selectMode) line
  87.     ::tk::spinbox::MouseSelect %W %x 0
  88. }
  89. bind Spinbox <Shift-1> {
  90.     set tk::Priv(selectMode) char
  91.     %W selection adjust @%x
  92. }
  93. bind Spinbox <Double-Shift-1> {
  94.     set tk::Priv(selectMode) word
  95.     ::tk::spinbox::MouseSelect %W %x
  96. }
  97. bind Spinbox <Triple-Shift-1> {
  98.     set tk::Priv(selectMode) line
  99.     ::tk::spinbox::MouseSelect %W %x
  100. }
  101. bind Spinbox <B1-Leave> {
  102.     set tk::Priv(x) %x
  103.     ::tk::spinbox::AutoScan %W
  104. }
  105. bind Spinbox <B1-Enter> {
  106.     tk::CancelRepeat
  107. }
  108. bind Spinbox <ButtonRelease-1> {
  109.     ::tk::spinbox::ButtonUp %W %x %y
  110. }
  111. bind Spinbox <Control-1> {
  112.     %W icursor @%x
  113. }
  114. bind Spinbox <Up> {
  115.     %W invoke buttonup
  116. }
  117. bind Spinbox <Down> {
  118.     %W invoke buttondown
  119. }
  120. bind Spinbox <Left> {
  121.     ::tk::EntrySetCursor %W [expr {[%W index insert] - 1}]
  122. }
  123. bind Spinbox <Right> {
  124.     ::tk::EntrySetCursor %W [expr {[%W index insert] + 1}]
  125. }
  126. bind Spinbox <Shift-Left> {
  127.     ::tk::EntryKeySelect %W [expr {[%W index insert] - 1}]
  128.     ::tk::EntrySeeInsert %W
  129. }
  130. bind Spinbox <Shift-Right> {
  131.     ::tk::EntryKeySelect %W [expr {[%W index insert] + 1}]
  132.     ::tk::EntrySeeInsert %W
  133. }
  134. bind Spinbox <Control-Left> {
  135.     ::tk::EntrySetCursor %W [::tk::EntryPreviousWord %W insert]
  136. }
  137. bind Spinbox <Control-Right> {
  138.     ::tk::EntrySetCursor %W [::tk::EntryNextWord %W insert]
  139. }
  140. bind Spinbox <Shift-Control-Left> {
  141.     ::tk::EntryKeySelect %W [::tk::EntryPreviousWord %W insert]
  142.     ::tk::EntrySeeInsert %W
  143. }
  144. bind Spinbox <Shift-Control-Right> {
  145.     ::tk::EntryKeySelect %W [::tk::EntryNextWord %W insert]
  146.     ::tk::EntrySeeInsert %W
  147. }
  148. bind Spinbox <Home> {
  149.     ::tk::EntrySetCursor %W 0
  150. }
  151. bind Spinbox <Shift-Home> {
  152.     ::tk::EntryKeySelect %W 0
  153.     ::tk::EntrySeeInsert %W
  154. }
  155. bind Spinbox <End> {
  156.     ::tk::EntrySetCursor %W end
  157. }
  158. bind Spinbox <Shift-End> {
  159.     ::tk::EntryKeySelect %W end
  160.     ::tk::EntrySeeInsert %W
  161. }
  162. bind Spinbox <Delete> {
  163.     if {[%W selection present]} {
  164. %W delete sel.first sel.last
  165.     } else {
  166. %W delete insert
  167.     }
  168. }
  169. bind Spinbox <BackSpace> {
  170.     ::tk::EntryBackspace %W
  171. }
  172. bind Spinbox <Control-space> {
  173.     %W selection from insert
  174. }
  175. bind Spinbox <Select> {
  176.     %W selection from insert
  177. }
  178. bind Spinbox <Control-Shift-space> {
  179.     %W selection adjust insert
  180. }
  181. bind Spinbox <Shift-Select> {
  182.     %W selection adjust insert
  183. }
  184. bind Spinbox <Control-slash> {
  185.     %W selection range 0 end
  186. }
  187. bind Spinbox <Control-backslash> {
  188.     %W selection clear
  189. }
  190. bind Spinbox <KeyPress> {
  191.     ::tk::EntryInsert %W %A
  192. }
  193. # Ignore all Alt, Meta, and Control keypresses unless explicitly bound.
  194. # Otherwise, if a widget binding for one of these is defined, the
  195. # <KeyPress> class binding will also fire and insert the character,
  196. # which is wrong.  Ditto for Escape, Return, and Tab.
  197. bind Spinbox <Alt-KeyPress> {# nothing}
  198. bind Spinbox <Meta-KeyPress> {# nothing}
  199. bind Spinbox <Control-KeyPress> {# nothing}
  200. bind Spinbox <Escape> {# nothing}
  201. bind Spinbox <Return> {# nothing}
  202. bind Spinbox <KP_Enter> {# nothing}
  203. bind Spinbox <Tab> {# nothing}
  204. if {[tk windowingsystem] eq "classic" || [tk windowingsystem] eq "aqua"} {
  205. bind Spinbox <Command-KeyPress> {# nothing}
  206. }
  207. # On Windows, paste is done using Shift-Insert.  Shift-Insert already
  208. # generates the <<Paste>> event, so we don't need to do anything here.
  209. if {$tcl_platform(platform) ne "windows"} {
  210.     bind Spinbox <Insert> {
  211. catch {::tk::EntryInsert %W [::tk::GetSelection %W PRIMARY]}
  212.     }
  213. }
  214. # Additional emacs-like bindings:
  215. bind Spinbox <Control-a> {
  216.     if {!$tk_strictMotif} {
  217. ::tk::EntrySetCursor %W 0
  218.     }
  219. }
  220. bind Spinbox <Control-b> {
  221.     if {!$tk_strictMotif} {
  222. ::tk::EntrySetCursor %W [expr {[%W index insert] - 1}]
  223.     }
  224. }
  225. bind Spinbox <Control-d> {
  226.     if {!$tk_strictMotif} {
  227. %W delete insert
  228.     }
  229. }
  230. bind Spinbox <Control-e> {
  231.     if {!$tk_strictMotif} {
  232. ::tk::EntrySetCursor %W end
  233.     }
  234. }
  235. bind Spinbox <Control-f> {
  236.     if {!$tk_strictMotif} {
  237. ::tk::EntrySetCursor %W [expr {[%W index insert] + 1}]
  238.     }
  239. }
  240. bind Spinbox <Control-h> {
  241.     if {!$tk_strictMotif} {
  242. ::tk::EntryBackspace %W
  243.     }
  244. }
  245. bind Spinbox <Control-k> {
  246.     if {!$tk_strictMotif} {
  247. %W delete insert end
  248.     }
  249. }
  250. bind Spinbox <Control-t> {
  251.     if {!$tk_strictMotif} {
  252. ::tk::EntryTranspose %W
  253.     }
  254. }
  255. bind Spinbox <Meta-b> {
  256.     if {!$tk_strictMotif} {
  257. ::tk::EntrySetCursor %W [::tk::EntryPreviousWord %W insert]
  258.     }
  259. }
  260. bind Spinbox <Meta-d> {
  261.     if {!$tk_strictMotif} {
  262. %W delete insert [::tk::EntryNextWord %W insert]
  263.     }
  264. }
  265. bind Spinbox <Meta-f> {
  266.     if {!$tk_strictMotif} {
  267. ::tk::EntrySetCursor %W [::tk::EntryNextWord %W insert]
  268.     }
  269. }
  270. bind Spinbox <Meta-BackSpace> {
  271.     if {!$tk_strictMotif} {
  272. %W delete [::tk::EntryPreviousWord %W insert] insert
  273.     }
  274. }
  275. bind Spinbox <Meta-Delete> {
  276.     if {!$tk_strictMotif} {
  277. %W delete [::tk::EntryPreviousWord %W insert] insert
  278.     }
  279. }
  280. # A few additional bindings of my own.
  281. bind Spinbox <2> {
  282.     if {!$tk_strictMotif} {
  283. ::tk::EntryScanMark %W %x
  284.     }
  285. }
  286. bind Spinbox <B2-Motion> {
  287.     if {!$tk_strictMotif} {
  288. ::tk::EntryScanDrag %W %x
  289.     }
  290. }
  291. # ::tk::spinbox::Invoke --
  292. # Invoke an element of the spinbox
  293. #
  294. # Arguments:
  295. # w - The spinbox window.
  296. # elem - Element to invoke
  297. proc ::tk::spinbox::Invoke {w elem} {
  298.     variable ::tk::Priv
  299.     if {![info exists Priv(outsideElement)]} {
  300. $w invoke $elem
  301. incr Priv(repeated)
  302.     }
  303.     set delay [$w cget -repeatinterval]
  304.     if {$delay > 0} {
  305. set Priv(afterId) [after $delay 
  306. [list ::tk::spinbox::Invoke $w $elem]]
  307.     }
  308. }
  309. # ::tk::spinbox::ClosestGap --
  310. # Given x and y coordinates, this procedure finds the closest boundary
  311. # between characters to the given coordinates and returns the index
  312. # of the character just after the boundary.
  313. #
  314. # Arguments:
  315. # w - The spinbox window.
  316. # x - X-coordinate within the window.
  317. proc ::tk::spinbox::ClosestGap {w x} {
  318.     set pos [$w index @$x]
  319.     set bbox [$w bbox $pos]
  320.     if {($x - [lindex $bbox 0]) < ([lindex $bbox 2]/2)} {
  321. return $pos
  322.     }
  323.     incr pos
  324. }
  325. # ::tk::spinbox::ButtonDown --
  326. # This procedure is invoked to handle button-1 presses in spinbox
  327. # widgets.  It moves the insertion cursor, sets the selection anchor,
  328. # and claims the input focus.
  329. #
  330. # Arguments:
  331. # w - The spinbox window in which the button was pressed.
  332. # x - The x-coordinate of the button press.
  333. proc ::tk::spinbox::ButtonDown {w x y} {
  334.     variable ::tk::Priv
  335.     # Get the element that was clicked in.  If we are not directly over
  336.     # the spinbox, default to entry.  This is necessary for spinbox grabs.
  337.     #
  338.     set Priv(element) [$w identify $x $y]
  339.     if {$Priv(element) eq ""} {
  340. set Priv(element) "entry"
  341.     }
  342.     switch -exact $Priv(element) {
  343. "buttonup" - "buttondown" {
  344.     if {"disabled" ne [$w cget -state]} {
  345. $w selection element $Priv(element)
  346. set Priv(repeated) 0
  347. set Priv(relief) [$w cget -$Priv(element)relief]
  348. catch {after cancel $Priv(afterId)}
  349. set delay [$w cget -repeatdelay]
  350. if {$delay > 0} {
  351.     set Priv(afterId) [after $delay 
  352.     [list ::tk::spinbox::Invoke $w $Priv(element)]]
  353. }
  354. if {[info exists Priv(outsideElement)]} {
  355.     unset Priv(outsideElement)
  356. }
  357.     }
  358. }
  359. "entry" {
  360.     set Priv(selectMode) char
  361.     set Priv(mouseMoved) 0
  362.     set Priv(pressX) $x
  363.     $w icursor [::tk::spinbox::ClosestGap $w $x]
  364.     $w selection from insert
  365.     if {"disabled" ne [$w cget -state]} {focus $w}
  366.     $w selection clear
  367. }
  368. default {
  369.     return -code error "unknown spinbox element "$Priv(element)""
  370. }
  371.     }
  372. }
  373. # ::tk::spinbox::ButtonUp --
  374. # This procedure is invoked to handle button-1 releases in spinbox
  375. # widgets.
  376. #
  377. # Arguments:
  378. # w - The spinbox window in which the button was pressed.
  379. # x - The x-coordinate of the button press.
  380. proc ::tk::spinbox::ButtonUp {w x y} {
  381.     variable ::tk::Priv
  382.     ::tk::CancelRepeat
  383.     # Priv(relief) may not exist if the ButtonUp is not paired with
  384.     # a preceding ButtonDown
  385.     if {[info exists Priv(element)] && [info exists Priv(relief)] && 
  386.     [string match "button*" $Priv(element)]} {
  387. if {[info exists Priv(repeated)] && !$Priv(repeated)} {
  388.     $w invoke $Priv(element)
  389. }
  390. $w configure -$Priv(element)relief $Priv(relief)
  391. $w selection element none
  392.     }
  393. }
  394. # ::tk::spinbox::MouseSelect --
  395. # This procedure is invoked when dragging out a selection with
  396. # the mouse.  Depending on the selection mode (character, word,
  397. # line) it selects in different-sized units.  This procedure
  398. # ignores mouse motions initially until the mouse has moved from
  399. # one character to another or until there have been multiple clicks.
  400. #
  401. # Arguments:
  402. # w - The spinbox window in which the button was pressed.
  403. # x - The x-coordinate of the mouse.
  404. # cursor - optional place to set cursor.
  405. proc ::tk::spinbox::MouseSelect {w x {cursor {}}} {
  406.     variable ::tk::Priv
  407.     if {$Priv(element) ne "entry"} {
  408. # The ButtonUp command triggered by ButtonRelease-1 handles
  409. # invoking one of the spinbuttons.
  410. return
  411.     }
  412.     set cur [::tk::spinbox::ClosestGap $w $x]
  413.     set anchor [$w index anchor]
  414.     if {($cur ne $anchor) || (abs($Priv(pressX) - $x) >= 3)} {
  415. set Priv(mouseMoved) 1
  416.     }
  417.     switch $Priv(selectMode) {
  418. char {
  419.     if {$Priv(mouseMoved)} {
  420. if {$cur < $anchor} {
  421.     $w selection range $cur $anchor
  422. } elseif {$cur > $anchor} {
  423.     $w selection range $anchor $cur
  424. } else {
  425.     $w selection clear
  426. }
  427.     }
  428. }
  429. word {
  430.     if {$cur < [$w index anchor]} {
  431. set before [tcl_wordBreakBefore [$w get] $cur]
  432. set after [tcl_wordBreakAfter [$w get] [expr {$anchor-1}]]
  433.     } else {
  434. set before [tcl_wordBreakBefore [$w get] $anchor]
  435. set after [tcl_wordBreakAfter [$w get] [expr {$cur - 1}]]
  436.     }
  437.     if {$before < 0} {
  438. set before 0
  439.     }
  440.     if {$after < 0} {
  441. set after end
  442.     }
  443.     $w selection range $before $after
  444. }
  445. line {
  446.     $w selection range 0 end
  447. }
  448.     }
  449.     if {$cursor ne {} && $cursor ne "ignore"} {
  450. catch {$w icursor $cursor}
  451.     }
  452.     update idletasks
  453. }
  454. # ::tk::spinbox::Paste --
  455. # This procedure sets the insertion cursor to the current mouse position,
  456. # pastes the selection there, and sets the focus to the window.
  457. #
  458. # Arguments:
  459. # w - The spinbox window.
  460. # x - X position of the mouse.
  461. proc ::tk::spinbox::Paste {w x} {
  462.     $w icursor [::tk::spinbox::ClosestGap $w $x]
  463.     catch {$w insert insert [::tk::GetSelection $w PRIMARY]}
  464.     if {"disabled" eq [$w cget -state]} {focus $w}
  465. }
  466. # ::tk::spinbox::Motion --
  467. # This procedure is invoked when the mouse moves in a spinbox window
  468. # with button 1 down.
  469. #
  470. # Arguments:
  471. # w - The spinbox window.
  472. proc ::tk::spinbox::Motion {w x y} {
  473.     variable ::tk::Priv
  474.     if {![info exists Priv(element)]} {
  475. set Priv(element) [$w identify $x $y]
  476.     }
  477.     set Priv(x) $x
  478.     if {"entry" eq $Priv(element)} {
  479. ::tk::spinbox::MouseSelect $w $x ignore
  480.     } elseif {[$w identify $x $y] ne $Priv(element)} {
  481. if {![info exists Priv(outsideElement)]} {
  482.     # We've wandered out of the spin button
  483.     # setting outside element will cause ::tk::spinbox::Invoke to
  484.     # loop without doing anything
  485.     set Priv(outsideElement) ""
  486.     $w selection element none
  487. }
  488.     } elseif {[info exists Priv(outsideElement)]} {
  489. unset Priv(outsideElement)
  490. $w selection element $Priv(element)
  491.     }
  492. }
  493. # ::tk::spinbox::AutoScan --
  494. # This procedure is invoked when the mouse leaves an spinbox window
  495. # with button 1 down.  It scrolls the window left or right,
  496. # depending on where the mouse is, and reschedules itself as an
  497. # "after" command so that the window continues to scroll until the
  498. # mouse moves back into the window or the mouse button is released.
  499. #
  500. # Arguments:
  501. # w - The spinbox window.
  502. proc ::tk::spinbox::AutoScan {w} {
  503.     variable ::tk::Priv
  504.     set x $Priv(x)
  505.     if {$x >= [winfo width $w]} {
  506. $w xview scroll 2 units
  507. ::tk::spinbox::MouseSelect $w $x ignore
  508.     } elseif {$x < 0} {
  509. $w xview scroll -2 units
  510. ::tk::spinbox::MouseSelect $w $x ignore
  511.     }
  512.     set Priv(afterId) [after 50 [list ::tk::spinbox::AutoScan $w]]
  513. }
  514. # ::tk::spinbox::GetSelection --
  515. #
  516. # Returns the selected text of the spinbox.  Differs from entry in that
  517. # a spinbox has no -show option to obscure contents.
  518. #
  519. # Arguments:
  520. # w -         The spinbox window from which the text to get
  521. proc ::tk::spinbox::GetSelection {w} {
  522.     return [string range [$w get] [$w index sel.first] 
  523.     [expr {[$w index sel.last] - 1}]]
  524. }