/GISViewer/vfs/GISViewer-linux-i386.vfs/lib/Tkzinc3.3.4/zincText.tcl

http://tcl-map.googlecode.com/ · TCL · 180 lines · 95 code · 28 blank · 57 comment · 23 complexity · 40253aff86cc7f7314519d18a183069c MD5 · raw file

  1. #
  2. # ZincText - Zinc extension for text input on text items and fields
  3. #
  4. # $Id: zincText.tcl,v 1.7 2005/04/27 08:01:40 lecoanet Exp $
  5. #
  6. # AUTHOR
  7. #
  8. # Patrick Lecoanet <lecoanet@cena.fr>
  9. # (and documentation by Christophe Mertz <mertz@cena.fr>)
  10. #
  11. # Copyright (c) 2002 - 2003 CENA, Patrick Lecoanet
  12. #
  13. # See the file "Copyright" for information on usage and redistribution
  14. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  15. #
  16. #
  17. # SYNOPSIS
  18. #
  19. # package require zincText;
  20. #
  21. # zn_TextBindings $zinc
  22. #
  23. # $zinc addtag text withtag $a_text
  24. # $zinc addtag text withtag $a_track
  25. # $zinc addtag text withtag $a_waypoint
  26. # $zinc addtag text withtag $a_tabular
  27. #
  28. #
  29. # DESCRIPTION
  30. #
  31. # This module implements text input with the mouse and keyboard 'a la emacs'.
  32. # Text items must have the 'text' tag and must of course be sensitive.
  33. # Track, waypoint and tabular items have fields and these fields can
  34. # be edited the same way. Only sensitive fields can be edited. the following
  35. # interactions are supported:
  36. #
  37. # <click 1> To set the cursor position
  38. # <click 2> To paste the current selection
  39. # <drag 1> To make a selection
  40. # <shift drag 1> To extend the current selection
  41. # <shift 1> To extend the current selection
  42. # <left arrow>,
  43. # <right arrow> To move the cursor to the left or to the right
  44. # <up arrow>,
  45. # <down arrow> To move the cursor up or down a line
  46. # <ctrl+a>,
  47. # <home> To move the cursor at the begining of the line
  48. # <ctrl+e>
  49. # <end> To move the cursor at the end of the line
  50. # <meta+<>,
  51. # <meta+>> To move the cursor at the beginning / end of the text
  52. # <BackSpace>
  53. # <ctrl+h> To delete the char just before the cursor
  54. # <Delete> To delete the char just after the cursor
  55. # <Return> To insert a return char. This does not validate the input!
  56. #
  57. #
  58. proc zn_TextBindings {zinc} {
  59. $zinc bind text <1> "startSel $zinc %x %y"
  60. $zinc bind text <2> "pasteSel $zinc %x %y"
  61. $zinc bind text <B1-Motion> "extendSel $zinc %x %y"
  62. $zinc bind text <Shift-B1-Motion> "extendSel $zinc %x %y"
  63. $zinc bind text <Shift-1> "$zinc select adjust current @%x,%y"
  64. $zinc bind text <Left> "moveCur $zinc -1"
  65. $zinc bind text <Right> "moveCur $zinc 1"
  66. $zinc bind text <Up> "setCur $zinc up"
  67. $zinc bind text <Down> "setCur $zinc down"
  68. $zinc bind text <Control-a> "setCur $zinc bol"
  69. $zinc bind text <Home> "setCur $zinc bol"
  70. $zinc bind text <Control-e> "setCur $zinc eol"
  71. $zinc bind text <End> "setCur $zinc eol"
  72. $zinc bind text <Meta-less> "setCur $zinc 0"
  73. $zinc bind text <Meta-greater> "setCur $zinc end"
  74. $zinc bind text <KeyPress> "insertKey $zinc %A"
  75. $zinc bind text <Shift-KeyPress> "insertKey $zinc %A"
  76. $zinc bind text <Return> "insertChar $zinc \\n"
  77. $zinc bind text <BackSpace> "textDel $zinc -1"
  78. $zinc bind text <Control-h> "textDel $zinc -1"
  79. $zinc bind text <Delete> "textDel $zinc 0"
  80. }
  81. proc pasteSel {w x y} {
  82. set item [$w focus]
  83. if {[llength $item] != 0} {
  84. catch {$w insert [lindex $item 0] [lindex $item 1] @$x,$y [selection get]}
  85. }
  86. }
  87. proc insertChar {w c} {
  88. set item [$w focus]
  89. set selItem [$w select item]
  90. if {[llength $item] == 0} {
  91. return;
  92. }
  93. if {([llength $selItem]!= 0) &&
  94. ([lindex $selItem 0] == [lindex $item 0]) &&
  95. ([lindex $selItem 1] == [lindex $item 1])} {
  96. $w dchars [lindex $item 0] [lindex $item 1] sel.first sel.last
  97. }
  98. $w insert [lindex $item 0] [lindex $item 1] insert $c
  99. }
  100. proc insertKey {w c} {
  101. if {! [binary scan $c {c} code]} {
  102. return
  103. }
  104. set code [expr $code & 0xFF]
  105. if {($code < 32) || ($code == 128)} {
  106. puts "rejet $code"
  107. return
  108. }
  109. insertChar $w $c
  110. }
  111. proc setCur {w where} {
  112. set item [$w focus]
  113. if {[llength $item] != 0} {
  114. $w cursor [lindex $item 0] [lindex $item 1] $where
  115. }
  116. }
  117. proc moveCur {w dir} {
  118. set item [$w focus]
  119. if {[llength $item] != 0} {
  120. set index [$w index [lindex $item 0] [lindex $item 1] insert]
  121. $w cursor [lindex $item 0] [lindex $item 1] [expr $index + $dir]
  122. }
  123. }
  124. proc startSel {w x y} {
  125. set part [$w currentpart t]
  126. $w cursor current $part @$x,$y
  127. $w focus current $part
  128. focus $w
  129. $w select from current $part @$x,$y
  130. }
  131. proc extendSel {w x y} {
  132. set part [$w currentpart t]
  133. $w select to current $part @$x,$y
  134. }
  135. proc textDel {w dir} {
  136. set item [$w focus]
  137. set selItem [$w select item]
  138. if {[llength $item] == 0} {
  139. return;
  140. }
  141. if {([llength $selItem] != 0) &&
  142. ([lindex $selItem 0] == [lindex $item 0]) &&
  143. ([lindex $selItem 1] == [lindex $item 1])} {
  144. $w dchars [lindex $item 0] [lindex $item 1] sel.first sel.last
  145. } else {
  146. set ind [expr [$w index [lindex $item 0] [lindex $item 1] insert] + $dir]
  147. if { $ind >= 0 } {
  148. $w dchars [lindex $item 0] [lindex $item 1] $ind $ind
  149. }
  150. }
  151. }
  152. package provide zincText 1.0