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

通讯编程

开发平台:

Visual C++

  1. # arrow.tcl --
  2. #
  3. # This demonstration script creates a canvas widget that displays a
  4. # large line with an arrowhead whose shape can be edited interactively.
  5. #
  6. # RCS: @(#) $Id: arrow.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. # arrowSetup --
  11. # This procedure regenerates all the text and graphics in the canvas
  12. # window.  It's called when the canvas is initially created, and also
  13. # whenever any of the parameters of the arrow head are changed
  14. # interactively.
  15. #
  16. # Arguments:
  17. # c - Name of the canvas widget.
  18. proc arrowSetup c {
  19.     upvar #0 demo_arrowInfo v
  20.     # Remember the current box, if there is one.
  21.     set tags [$c gettags current]
  22.     if {$tags != ""} {
  23. set cur [lindex $tags [lsearch -glob $tags box?]]
  24.     } else {
  25. set cur ""
  26.     }
  27.     # Create the arrow and outline.
  28.     $c delete all
  29.     eval {$c create line $v(x1) $v(y) $v(x2) $v(y)  -arrow last 
  30.     -width [expr {10*$v(width)}] -arrowshape [list 
  31.     [expr {10*$v(a)}] [expr {10*$v(b)}] [expr {10*$v(c)}]]} 
  32.     $v(bigLineStyle)
  33.     set xtip [expr {$v(x2)-10*$v(b)}]
  34.     set deltaY [expr {10*$v(c)+5*$v(width)}]
  35.     $c create line $v(x2) $v(y) $xtip [expr {$v(y)+$deltaY}] 
  36.     [expr {$v(x2)-10*$v(a)}] $v(y) $xtip [expr {$v(y)-$deltaY}] 
  37.     $v(x2) $v(y) -width 2 -capstyle round -joinstyle round
  38.     # Create the boxes for reshaping the line and arrowhead.
  39.     eval {$c create rect [expr {$v(x2)-10*$v(a)-5}] [expr {$v(y)-5}] 
  40.     [expr {$v(x2)-10*$v(a)+5}] [expr {$v(y)+5}] 
  41.     -tags {box1 box}} $v(boxStyle)
  42.     eval {$c create rect [expr {$xtip-5}] [expr {$v(y)-$deltaY-5}] 
  43.     [expr {$xtip+5}] [expr {$v(y)-$deltaY+5}] 
  44.     -tags {box2 box}} $v(boxStyle)
  45.     eval {$c create rect [expr {$v(x1)-5}] [expr {$v(y)-5*$v(width)-5}] 
  46.     [expr {$v(x1)+5}] [expr {$v(y)-5*$v(width)+5}] 
  47.     -tags {box3 box}} $v(boxStyle)
  48.     if {$cur != ""} {
  49. eval $c itemconfigure $cur $v(activeStyle)
  50.     }
  51.     # Create three arrows in actual size with the same parameters
  52.     $c create line [expr {$v(x2)+50}] 0 [expr {$v(x2)+50}] 1000 
  53.     -width 2
  54.     set tmp [expr {$v(x2)+100}]
  55.     $c create line $tmp [expr {$v(y)-125}] $tmp [expr {$v(y)-75}] 
  56.     -width $v(width) 
  57.     -arrow both -arrowshape "$v(a) $v(b) $v(c)"
  58.     $c create line [expr {$tmp-25}] $v(y) [expr {$tmp+25}] $v(y) 
  59.     -width $v(width) 
  60.     -arrow both -arrowshape "$v(a) $v(b) $v(c)"
  61.     $c create line [expr {$tmp-25}] [expr {$v(y)+75}] [expr {$tmp+25}] 
  62.     [expr {$v(y)+125}] -width $v(width) 
  63.     -arrow both -arrowshape "$v(a) $v(b) $v(c)"
  64.     # Create a bunch of other arrows and text items showing the
  65.     # current dimensions.
  66.     set tmp [expr {$v(x2)+10}]
  67.     $c create line $tmp [expr {$v(y)-5*$v(width)}] 
  68.     $tmp [expr {$v(y)-$deltaY}] 
  69.     -arrow both -arrowshape $v(smallTips)
  70.     $c create text [expr {$v(x2)+15}] [expr {$v(y)-$deltaY+5*$v(c)}] 
  71.     -text $v(c) -anchor w
  72.     set tmp [expr {$v(x1)-10}]
  73.     $c create line $tmp [expr {$v(y)-5*$v(width)}] 
  74.     $tmp [expr {$v(y)+5*$v(width)}] 
  75.     -arrow both -arrowshape $v(smallTips)
  76.     $c create text [expr {$v(x1)-15}] $v(y) -text $v(width) -anchor e
  77.     set tmp [expr {$v(y)+5*$v(width)+10*$v(c)+10}]
  78.     $c create line [expr {$v(x2)-10*$v(a)}] $tmp $v(x2) $tmp 
  79.     -arrow both -arrowshape $v(smallTips)
  80.     $c create text [expr {$v(x2)-5*$v(a)}] [expr {$tmp+5}] 
  81.     -text $v(a) -anchor n
  82.     set tmp [expr {$tmp+25}]
  83.     $c create line [expr {$v(x2)-10*$v(b)}] $tmp $v(x2) $tmp 
  84.     -arrow both -arrowshape $v(smallTips)
  85.     $c create text [expr {$v(x2)-5*$v(b)}] [expr {$tmp+5}] 
  86.     -text $v(b) -anchor n
  87.     $c create text $v(x1) 310 -text "-width  $v(width)" 
  88.     -anchor w -font {Helvetica 18}
  89.     $c create text $v(x1) 330 -text "-arrowshape  {$v(a)  $v(b)  $v(c)}" 
  90.     -anchor w -font {Helvetica 18}
  91.     incr v(count)
  92. }
  93. set w .arrow
  94. global tk_library
  95. catch {destroy $w}
  96. toplevel $w
  97. wm title $w "Arrowhead Editor Demonstration"
  98. wm iconname $w "arrow"
  99. positionWindow $w
  100. set c $w.c
  101. label $w.msg -font $font -wraplength 5i -justify left -text "This widget allows you to experiment with different widths and arrowhead shapes for lines in canvases.  To change the line width or the shape of the arrowhead, drag any of the three boxes attached to the oversized arrow.  The arrows on the right give examples at normal scale.  The text at the bottom shows the configuration options as you'd enter them for a canvas line item."
  102. pack $w.msg -side top
  103. frame $w.buttons
  104. pack $w.buttons -side bottom -fill x -pady 2m
  105. button $w.buttons.dismiss -text Dismiss -command "destroy $w"
  106. button $w.buttons.code -text "See Code" -command "showCode $w"
  107. pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
  108. canvas $c -width 500 -height 350 -relief sunken -borderwidth 2
  109. pack $c -expand yes -fill both
  110. set demo_arrowInfo(a) 8
  111. set demo_arrowInfo(b) 10
  112. set demo_arrowInfo(c) 3
  113. set demo_arrowInfo(width) 2
  114. set demo_arrowInfo(motionProc) arrowMoveNull
  115. set demo_arrowInfo(x1) 40
  116. set demo_arrowInfo(x2) 350
  117. set demo_arrowInfo(y) 150
  118. set demo_arrowInfo(smallTips) {5 5 2}
  119. set demo_arrowInfo(count) 0
  120. if {[winfo depth $c] > 1} {
  121.     set demo_arrowInfo(bigLineStyle) "-fill SkyBlue1"
  122.     set demo_arrowInfo(boxStyle) "-fill {} -outline black -width 1"
  123.     set demo_arrowInfo(activeStyle) "-fill red -outline black -width 1"
  124. } else {
  125.     set demo_arrowInfo(bigLineStyle) "-fill black 
  126. -stipple @[file join $tk_library demos images grey.25]"
  127.     set demo_arrowInfo(boxStyle) "-fill {} -outline black -width 1"
  128.     set demo_arrowInfo(activeStyle) "-fill black -outline black -width 1"
  129. }
  130. arrowSetup $c
  131. $c bind box <Enter> "$c itemconfigure current $demo_arrowInfo(activeStyle)"
  132. $c bind box <Leave> "$c itemconfigure current $demo_arrowInfo(boxStyle)"
  133. $c bind box <B1-Enter> " "
  134. $c bind box <B1-Leave> " "
  135. $c bind box1 <1> {set demo_arrowInfo(motionProc) arrowMove1}
  136. $c bind box2 <1> {set demo_arrowInfo(motionProc) arrowMove2}
  137. $c bind box3 <1> {set demo_arrowInfo(motionProc) arrowMove3}
  138. $c bind box <B1-Motion> "$demo_arrowInfo(motionProc) $c %x %y"
  139. bind $c <Any-ButtonRelease-1> "arrowSetup $c"
  140. # arrowMove1 --
  141. # This procedure is called for each mouse motion event on box1 (the
  142. # one at the vertex of the arrow).  It updates the controlling parameters
  143. # for the line and arrowhead.
  144. #
  145. # Arguments:
  146. # c - The name of the canvas window.
  147. # x, y - The coordinates of the mouse.
  148. proc arrowMove1 {c x y} {
  149.     upvar #0 demo_arrowInfo v
  150.     set newA [expr {($v(x2)+5-round([$c canvasx $x]))/10}]
  151.     if {$newA < 0} {
  152. set newA 0
  153.     }
  154.     if {$newA > 25} {
  155. set newA 25
  156.     }
  157.     if {$newA != $v(a)} {
  158. $c move box1 [expr {10*($v(a)-$newA)}] 0
  159. set v(a) $newA
  160.     }
  161. }
  162. # arrowMove2 --
  163. # This procedure is called for each mouse motion event on box2 (the
  164. # one at the trailing tip of the arrowhead).  It updates the controlling
  165. # parameters for the line and arrowhead.
  166. #
  167. # Arguments:
  168. # c - The name of the canvas window.
  169. # x, y - The coordinates of the mouse.
  170. proc arrowMove2 {c x y} {
  171.     upvar #0 demo_arrowInfo v
  172.     set newB [expr {($v(x2)+5-round([$c canvasx $x]))/10}]
  173.     if {$newB < 0} {
  174. set newB 0
  175.     }
  176.     if {$newB > 25} {
  177. set newB 25
  178.     }
  179.     set newC [expr {($v(y)+5-round([$c canvasy $y])-5*$v(width))/10}]
  180.     if {$newC < 0} {
  181. set newC 0
  182.     }
  183.     if {$newC > 20} {
  184. set newC 20
  185.     }
  186.     if {($newB != $v(b)) || ($newC != $v(c))} {
  187. $c move box2 [expr {10*($v(b)-$newB)}] [expr {10*($v(c)-$newC)}]
  188. set v(b) $newB
  189. set v(c) $newC
  190.     }
  191. }
  192. # arrowMove3 --
  193. # This procedure is called for each mouse motion event on box3 (the
  194. # one that controls the thickness of the line).  It updates the
  195. # controlling parameters for the line and arrowhead.
  196. #
  197. # Arguments:
  198. # c - The name of the canvas window.
  199. # x, y - The coordinates of the mouse.
  200. proc arrowMove3 {c x y} {
  201.     upvar #0 demo_arrowInfo v
  202.     set newWidth [expr {($v(y)+2-round([$c canvasy $y]))/5}]
  203.     if {$newWidth < 0} {
  204. set newWidth 0
  205.     }
  206.     if {$newWidth > 20} {
  207. set newWidth 20
  208.     }
  209.     if {$newWidth != $v(width)} {
  210. $c move box3 0 [expr {5*($v(width)-$newWidth)}]
  211. set v(width) $newWidth
  212.     }
  213. }