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

通讯编程

开发平台:

Visual C++

  1. # items.tcl --
  2. #
  3. # This demonstration script creates a canvas that displays the
  4. # canvas item types.
  5. #
  6. # RCS: @(#) $Id: items.tcl,v 1.3 2001/06/14 10:56:58 dkf Exp $
  7. if {![info exists widgetDemo]} {
  8.     error "This script should be run from the "widget" demo."
  9. }
  10. set w .items
  11. catch {destroy $w}
  12. toplevel $w
  13. wm title $w "Canvas Item Demonstration"
  14. wm iconname $w "Items"
  15. positionWindow $w
  16. set c $w.frame.c
  17. label $w.msg -font $font -wraplength 5i -justify left -text "This window contains a canvas widget with examples of the various kinds of items supported by canvases.  The following operations are supported:n  Button-1 drag:tmoves item under pointer.n  Button-2 drag:trepositions view.n  Button-3 drag:tstrokes out area.n  Ctrl+f:ttprints items under area."
  18. pack $w.msg -side top
  19. frame $w.buttons
  20. pack $w.buttons -side bottom -fill x -pady 2m
  21. button $w.buttons.dismiss -text Dismiss -command "destroy $w"
  22. button $w.buttons.code -text "See Code" -command "showCode $w"
  23. pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
  24. frame $w.frame
  25. pack $w.frame -side top -fill both -expand yes
  26. canvas $c -scrollregion {0c 0c 30c 24c} -width 15c -height 10c 
  27. -relief sunken -borderwidth 2 
  28. -xscrollcommand "$w.frame.hscroll set" 
  29. -yscrollcommand "$w.frame.vscroll set"
  30. scrollbar $w.frame.vscroll -command "$c yview"
  31. scrollbar $w.frame.hscroll -orient horiz -command "$c xview"
  32. grid $c -in $w.frame 
  33.     -row 0 -column 0 -rowspan 1 -columnspan 1 -sticky news
  34. grid $w.frame.vscroll 
  35.     -row 0 -column 1 -rowspan 1 -columnspan 1 -sticky news
  36. grid $w.frame.hscroll 
  37.     -row 1 -column 0 -rowspan 1 -columnspan 1 -sticky news
  38. grid rowconfig    $w.frame 0 -weight 1 -minsize 0
  39. grid columnconfig $w.frame 0 -weight 1 -minsize 0
  40. # Display a 3x3 rectangular grid.
  41. $c create rect 0c 0c 30c 24c -width 2
  42. $c create line 0c 8c 30c 8c -width 2
  43. $c create line 0c 16c 30c 16c -width 2
  44. $c create line 10c 0c 10c 24c -width 2
  45. $c create line 20c 0c 20c 24c -width 2
  46. set font1 {Helvetica 12}
  47. set font2 {Helvetica 24 bold}
  48. if {[winfo depth $c] > 1} {
  49.     set blue DeepSkyBlue3
  50.     set red red
  51.     set bisque bisque3
  52.     set green SeaGreen3
  53. } else {
  54.     set blue black
  55.     set red black
  56.     set bisque black
  57.     set green black
  58. }
  59. # Set up demos within each of the areas of the grid.
  60. $c create text 5c .2c -text Lines -anchor n
  61. $c create line 1c 1c 3c 1c 1c 4c 3c 4c -width 2m -fill $blue 
  62. -cap butt -join miter -tags item
  63. $c create line 4.67c 1c 4.67c 4c -arrow last -tags item
  64. $c create line 6.33c 1c 6.33c 4c -arrow both -tags item
  65. $c create line 5c 6c 9c 6c 9c 1c 8c 1c 8c 4.8c 8.8c 4.8c 8.8c 1.2c 
  66. 8.2c 1.2c 8.2c 4.6c 8.6c 4.6c 8.6c 1.4c 8.4c 1.4c 8.4c 4.4c 
  67. -width 3 -fill $red -tags item
  68. $c create line 1c 5c 7c 5c 7c 7c 9c 7c -width .5c 
  69. -stipple @[file join $tk_library demos images gray25.bmp] 
  70. -arrow both -arrowshape {15 15 7} -tags item
  71. $c create line 1c 7c 1.75c 5.8c 2.5c 7c 3.25c 5.8c 4c 7c -width .5c 
  72. -cap round -join round -tags item
  73. $c create text 15c .2c -text "Curves (smoothed lines)" -anchor n
  74. $c create line 11c 4c 11.5c 1c 13.5c 1c 14c 4c -smooth on 
  75. -fill $blue -tags item
  76. $c create line 15.5c 1c 19.5c 1.5c 15.5c 4.5c 19.5c 4c -smooth on 
  77. -arrow both -width 3 -tags item
  78. $c create line 12c 6c 13.5c 4.5c 16.5c 7.5c 18c 6c 
  79. 16.5c 4.5c 13.5c 7.5c 12c 6c -smooth on -width 3m -cap round 
  80. -stipple @[file join $tk_library demos images gray25.bmp] 
  81. -fill $red -tags item
  82. $c create text 25c .2c -text Polygons -anchor n
  83. $c create polygon 21c 1.0c 22.5c 1.75c 24c 1.0c 23.25c 2.5c 
  84. 24c 4.0c 22.5c 3.25c 21c 4.0c 21.75c 2.5c -fill $green 
  85. -outline black -width 4 -tags item
  86. $c create polygon 25c 4c 25c 4c 25c 1c 26c 1c 27c 4c 28c 1c 
  87. 29c 1c 29c 4c 29c 4c -fill $red -smooth on -tags item
  88. $c create polygon 22c 4.5c 25c 4.5c 25c 6.75c 28c 6.75c 
  89. 28c 5.25c 24c 5.25c 24c 6.0c 26c 6c 26c 7.5c 22c 7.5c 
  90. -stipple @[file join $tk_library demos images gray25.bmp] 
  91. -outline black -tags item
  92. $c create text 5c 8.2c -text Rectangles -anchor n
  93. $c create rectangle 1c 9.5c 4c 12.5c -outline $red -width 3m -tags item
  94. $c create rectangle 0.5c 13.5c 4.5c 15.5c -fill $green -tags item
  95. $c create rectangle 6c 10c 9c 15c -outline {} 
  96. -stipple @[file join $tk_library demos images gray25.bmp] 
  97. -fill $blue -tags item
  98. $c create text 15c 8.2c -text Ovals -anchor n
  99. $c create oval 11c 9.5c 14c 12.5c -outline $red -width 3m -tags item
  100. $c create oval 10.5c 13.5c 14.5c 15.5c -fill $green -tags item
  101. $c create oval 16c 10c 19c 15c -outline {} 
  102. -stipple @[file join $tk_library demos images gray25.bmp] 
  103. -fill $blue -tags item
  104. $c create text 25c 8.2c -text Text -anchor n
  105. $c create rectangle 22.4c 8.9c 22.6c 9.1c
  106. $c create text 22.5c 9c -anchor n -font $font1 -width 4c 
  107. -text "A short string of text, word-wrapped, justified left, and anchored north (at the top).  The rectangles show the anchor points for each piece of text." -tags item
  108. $c create rectangle 25.4c 10.9c 25.6c 11.1c
  109. $c create text 25.5c 11c -anchor w -font $font1 -fill $blue 
  110. -text "Several lines,n each centerednindividually,nand all anchorednat the left edge." 
  111. -justify center -tags item
  112. $c create rectangle 24.9c 13.9c 25.1c 14.1c
  113. $c create text 25c 14c -font $font2 -anchor c -fill $red -stipple gray50 
  114. -text "Stippled characters" -tags item
  115. $c create text 5c 16.2c -text Arcs -anchor n
  116. $c create arc 0.5c 17c 7c 20c -fill $green -outline black 
  117. -start 45 -extent 270 -style pieslice -tags item
  118. $c create arc 6.5c 17c 9.5c 20c -width 4m -style arc 
  119. -outline $blue -start -135 -extent 270 -tags item 
  120. -outlinestipple @[file join $tk_library demos images gray25.bmp]
  121. $c create arc 0.5c 20c 9.5c 24c -width 4m -style pieslice 
  122. -fill {} -outline $red -start 225 -extent -90 -tags item
  123. $c create arc 5.5c 20.5c 9.5c 23.5c -width 4m -style chord 
  124. -fill $blue -outline {} -start 45 -extent 270  -tags item
  125. $c create text 15c 16.2c -text Bitmaps -anchor n
  126. $c create bitmap 13c 20c -tags item 
  127. -bitmap @[file join $tk_library demos images face.bmp]
  128. $c create bitmap 17c 18.5c -tags item 
  129. -bitmap @[file join $tk_library demos images noletter.bmp]
  130. $c create bitmap 17c 21.5c -tags item 
  131. -bitmap @[file join $tk_library demos images letters.bmp]
  132. $c create text 25c 16.2c -text Windows -anchor n
  133. button $c.button -text "Press Me" -command "butPress $c $red"
  134. $c create window 21c 18c -window $c.button -anchor nw -tags item
  135. entry $c.entry -width 20 -relief sunken
  136. $c.entry insert end "Edit this text"
  137. $c create window 21c 21c -window $c.entry -anchor nw -tags item
  138. scale $c.scale -from 0 -to 100 -length 6c -sliderlength .4c 
  139. -width .5c -tickinterval 0
  140. $c create window 28.5c 17.5c -window $c.scale -anchor n -tags item
  141. $c create text 21c 17.9c -text Button: -anchor sw
  142. $c create text 21c 20.9c -text Entry: -anchor sw
  143. $c create text 28.5c 17.4c -text Scale: -anchor s
  144. # Set up event bindings for canvas:
  145. $c bind item <Any-Enter> "itemEnter $c"
  146. $c bind item <Any-Leave> "itemLeave $c"
  147. bind $c <2> "$c scan mark %x %y"
  148. bind $c <B2-Motion> "$c scan dragto %x %y"
  149. bind $c <3> "itemMark $c %x %y"
  150. bind $c <B3-Motion> "itemStroke $c %x %y"
  151. bind $c <Control-f> "itemsUnderArea $c"
  152. bind $c <1> "itemStartDrag $c %x %y"
  153. bind $c <B1-Motion> "itemDrag $c %x %y"
  154. # Utility procedures for highlighting the item under the pointer:
  155. proc itemEnter {c} {
  156.     global restoreCmd
  157.     if {[winfo depth $c] == 1} {
  158. set restoreCmd {}
  159. return
  160.     }
  161.     set type [$c type current]
  162.     if {$type == "window"} {
  163. set restoreCmd {}
  164. return
  165.     }
  166.     if {$type == "bitmap"} {
  167. set bg [lindex [$c itemconf current -background] 4]
  168. set restoreCmd [list $c itemconfig current -background $bg]
  169. $c itemconfig current -background SteelBlue2
  170. return
  171.     }
  172.     set fill [lindex [$c itemconfig current -fill] 4]
  173.     if {(($type == "rectangle") || ($type == "oval") || ($type == "arc"))
  174.     && ($fill == "")} {
  175. set outline [lindex [$c itemconfig current -outline] 4]
  176. set restoreCmd "$c itemconfig current -outline $outline"
  177. $c itemconfig current -outline SteelBlue2
  178.     } else {
  179. set restoreCmd "$c itemconfig current -fill $fill"
  180. $c itemconfig current -fill SteelBlue2
  181.     }
  182. }
  183. proc itemLeave {c} {
  184.     global restoreCmd
  185.     eval $restoreCmd
  186. }
  187. # Utility procedures for stroking out a rectangle and printing what's
  188. # underneath the rectangle's area.
  189. proc itemMark {c x y} {
  190.     global areaX1 areaY1
  191.     set areaX1 [$c canvasx $x]
  192.     set areaY1 [$c canvasy $y]
  193.     $c delete area
  194. }
  195. proc itemStroke {c x y} {
  196.     global areaX1 areaY1 areaX2 areaY2
  197.     set x [$c canvasx $x]
  198.     set y [$c canvasy $y]
  199.     if {($areaX1 != $x) && ($areaY1 != $y)} {
  200. $c delete area
  201. $c addtag area withtag [$c create rect $areaX1 $areaY1 $x $y 
  202. -outline black]
  203. set areaX2 $x
  204. set areaY2 $y
  205.     }
  206. }
  207. proc itemsUnderArea {c} {
  208.     global areaX1 areaY1 areaX2 areaY2
  209.     set area [$c find withtag area]
  210.     set items ""
  211.     foreach i [$c find enclosed $areaX1 $areaY1 $areaX2 $areaY2] {
  212. if {[lsearch [$c gettags $i] item] != -1} {
  213.     lappend items $i
  214. }
  215.     }
  216.     puts stdout "Items enclosed by area: $items"
  217.     set items ""
  218.     foreach i [$c find overlapping $areaX1 $areaY1 $areaX2 $areaY2] {
  219. if {[lsearch [$c gettags $i] item] != -1} {
  220.     lappend items $i
  221. }
  222.     }
  223.     puts stdout "Items overlapping area: $items"
  224. }
  225. set areaX1 0
  226. set areaY1 0
  227. set areaX2 0
  228. set areaY2 0
  229. # Utility procedures to support dragging of items.
  230. proc itemStartDrag {c x y} {
  231.     global lastX lastY
  232.     set lastX [$c canvasx $x]
  233.     set lastY [$c canvasy $y]
  234. }
  235. proc itemDrag {c x y} {
  236.     global lastX lastY
  237.     set x [$c canvasx $x]
  238.     set y [$c canvasy $y]
  239.     $c move current [expr {$x-$lastX}] [expr {$y-$lastY}]
  240.     set lastX $x
  241.     set lastY $y
  242. }
  243. # Procedure that's invoked when the button embedded in the canvas
  244. # is invoked.
  245. proc butPress {w color} {
  246.     set i [$w create text 25c 18.1c -text "Ouch!!" -fill $color -anchor n]
  247.     after 500 "$w delete $i"
  248. }