Mark msysGit as obsolete
[msysgit.git] / mingw / lib / tk8.5 / demos / arrow.tcl
blob5011f6f0a383d007b79c46ef3ebd803cbce97f35
1 # arrow.tcl --
3 # This demonstration script creates a canvas widget that displays a
4 # large line with an arrowhead whose shape can be edited interactively.
6 if {![info exists widgetDemo]} {
7 error "This script should be run from the \"widget\" demo."
10 package require Tk
12 # arrowSetup --
13 # This procedure regenerates all the text and graphics in the canvas
14 # window. It's called when the canvas is initially created, and also
15 # whenever any of the parameters of the arrow head are changed
16 # interactively.
18 # Arguments:
19 # c - Name of the canvas widget.
21 proc arrowSetup c {
22 upvar #0 demo_arrowInfo v
24 # Remember the current box, if there is one.
26 set tags [$c gettags current]
27 if {$tags != ""} {
28 set cur [lindex $tags [lsearch -glob $tags box?]]
29 } else {
30 set cur ""
33 # Create the arrow and outline.
35 $c delete all
36 eval {$c create line $v(x1) $v(y) $v(x2) $v(y) -arrow last \
37 -width [expr {10*$v(width)}] -arrowshape [list \
38 [expr {10*$v(a)}] [expr {10*$v(b)}] [expr {10*$v(c)}]]} \
39 $v(bigLineStyle)
40 set xtip [expr {$v(x2)-10*$v(b)}]
41 set deltaY [expr {10*$v(c)+5*$v(width)}]
42 $c create line $v(x2) $v(y) $xtip [expr {$v(y)+$deltaY}] \
43 [expr {$v(x2)-10*$v(a)}] $v(y) $xtip [expr {$v(y)-$deltaY}] \
44 $v(x2) $v(y) -width 2 -capstyle round -joinstyle round
46 # Create the boxes for reshaping the line and arrowhead.
48 eval {$c create rect [expr {$v(x2)-10*$v(a)-5}] [expr {$v(y)-5}] \
49 [expr {$v(x2)-10*$v(a)+5}] [expr {$v(y)+5}] \
50 -tags {box1 box}} $v(boxStyle)
51 eval {$c create rect [expr {$xtip-5}] [expr {$v(y)-$deltaY-5}] \
52 [expr {$xtip+5}] [expr {$v(y)-$deltaY+5}] \
53 -tags {box2 box}} $v(boxStyle)
54 eval {$c create rect [expr {$v(x1)-5}] [expr {$v(y)-5*$v(width)-5}] \
55 [expr {$v(x1)+5}] [expr {$v(y)-5*$v(width)+5}] \
56 -tags {box3 box}} $v(boxStyle)
57 if {$cur != ""} {
58 eval $c itemconfigure $cur $v(activeStyle)
61 # Create three arrows in actual size with the same parameters
63 $c create line [expr {$v(x2)+50}] 0 [expr {$v(x2)+50}] 1000 \
64 -width 2
65 set tmp [expr {$v(x2)+100}]
66 $c create line $tmp [expr {$v(y)-125}] $tmp [expr {$v(y)-75}] \
67 -width $v(width) \
68 -arrow both -arrowshape "$v(a) $v(b) $v(c)"
69 $c create line [expr {$tmp-25}] $v(y) [expr {$tmp+25}] $v(y) \
70 -width $v(width) \
71 -arrow both -arrowshape "$v(a) $v(b) $v(c)"
72 $c create line [expr {$tmp-25}] [expr {$v(y)+75}] [expr {$tmp+25}] \
73 [expr {$v(y)+125}] -width $v(width) \
74 -arrow both -arrowshape "$v(a) $v(b) $v(c)"
76 # Create a bunch of other arrows and text items showing the
77 # current dimensions.
79 set tmp [expr {$v(x2)+10}]
80 $c create line $tmp [expr {$v(y)-5*$v(width)}] \
81 $tmp [expr {$v(y)-$deltaY}] \
82 -arrow both -arrowshape $v(smallTips)
83 $c create text [expr {$v(x2)+15}] [expr {$v(y)-$deltaY+5*$v(c)}] \
84 -text $v(c) -anchor w
85 set tmp [expr {$v(x1)-10}]
86 $c create line $tmp [expr {$v(y)-5*$v(width)}] \
87 $tmp [expr {$v(y)+5*$v(width)}] \
88 -arrow both -arrowshape $v(smallTips)
89 $c create text [expr {$v(x1)-15}] $v(y) -text $v(width) -anchor e
90 set tmp [expr {$v(y)+5*$v(width)+10*$v(c)+10}]
91 $c create line [expr {$v(x2)-10*$v(a)}] $tmp $v(x2) $tmp \
92 -arrow both -arrowshape $v(smallTips)
93 $c create text [expr {$v(x2)-5*$v(a)}] [expr {$tmp+5}] \
94 -text $v(a) -anchor n
95 set tmp [expr {$tmp+25}]
96 $c create line [expr {$v(x2)-10*$v(b)}] $tmp $v(x2) $tmp \
97 -arrow both -arrowshape $v(smallTips)
98 $c create text [expr {$v(x2)-5*$v(b)}] [expr {$tmp+5}] \
99 -text $v(b) -anchor n
101 $c create text $v(x1) 310 -text "-width $v(width)" \
102 -anchor w -font {Helvetica 18}
103 $c create text $v(x1) 330 -text "-arrowshape {$v(a) $v(b) $v(c)}" \
104 -anchor w -font {Helvetica 18}
106 incr v(count)
109 set w .arrow
110 catch {destroy $w}
111 toplevel $w
112 wm title $w "Arrowhead Editor Demonstration"
113 wm iconname $w "arrow"
114 positionWindow $w
115 set c $w.c
117 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."
118 pack $w.msg -side top
120 ## See Code / Dismiss buttons
121 set btns [addSeeDismiss $w.buttons $w]
122 pack $btns -side bottom -fill x
124 canvas $c -width 500 -height 350 -relief sunken -borderwidth 2
125 pack $c -expand yes -fill both
127 set demo_arrowInfo(a) 8
128 set demo_arrowInfo(b) 10
129 set demo_arrowInfo(c) 3
130 set demo_arrowInfo(width) 2
131 set demo_arrowInfo(motionProc) arrowMoveNull
132 set demo_arrowInfo(x1) 40
133 set demo_arrowInfo(x2) 350
134 set demo_arrowInfo(y) 150
135 set demo_arrowInfo(smallTips) {5 5 2}
136 set demo_arrowInfo(count) 0
137 if {[winfo depth $c] > 1} {
138 set demo_arrowInfo(bigLineStyle) "-fill SkyBlue1"
139 set demo_arrowInfo(boxStyle) "-fill {} -outline black -width 1"
140 set demo_arrowInfo(activeStyle) "-fill red -outline black -width 1"
141 } else {
142 # Main widget program sets variable tk_demoDirectory
143 set demo_arrowInfo(bigLineStyle) "-fill black \
144 -stipple @[file join $tk_demoDirectory images grey.25]"
145 set demo_arrowInfo(boxStyle) "-fill {} -outline black -width 1"
146 set demo_arrowInfo(activeStyle) "-fill black -outline black -width 1"
148 arrowSetup $c
149 $c bind box <Enter> "$c itemconfigure current $demo_arrowInfo(activeStyle)"
150 $c bind box <Leave> "$c itemconfigure current $demo_arrowInfo(boxStyle)"
151 $c bind box <B1-Enter> " "
152 $c bind box <B1-Leave> " "
153 $c bind box1 <1> {set demo_arrowInfo(motionProc) arrowMove1}
154 $c bind box2 <1> {set demo_arrowInfo(motionProc) arrowMove2}
155 $c bind box3 <1> {set demo_arrowInfo(motionProc) arrowMove3}
156 $c bind box <B1-Motion> "\$demo_arrowInfo(motionProc) $c %x %y"
157 bind $c <Any-ButtonRelease-1> "arrowSetup $c"
159 # arrowMove1 --
160 # This procedure is called for each mouse motion event on box1 (the
161 # one at the vertex of the arrow). It updates the controlling parameters
162 # for the line and arrowhead.
164 # Arguments:
165 # c - The name of the canvas window.
166 # x, y - The coordinates of the mouse.
168 proc arrowMove1 {c x y} {
169 upvar #0 demo_arrowInfo v
170 set newA [expr {($v(x2)+5-round([$c canvasx $x]))/10}]
171 if {$newA < 0} {
172 set newA 0
174 if {$newA > 25} {
175 set newA 25
177 if {$newA != $v(a)} {
178 $c move box1 [expr {10*($v(a)-$newA)}] 0
179 set v(a) $newA
183 # arrowMove2 --
184 # This procedure is called for each mouse motion event on box2 (the
185 # one at the trailing tip of the arrowhead). It updates the controlling
186 # parameters for the line and arrowhead.
188 # Arguments:
189 # c - The name of the canvas window.
190 # x, y - The coordinates of the mouse.
192 proc arrowMove2 {c x y} {
193 upvar #0 demo_arrowInfo v
194 set newB [expr {($v(x2)+5-round([$c canvasx $x]))/10}]
195 if {$newB < 0} {
196 set newB 0
198 if {$newB > 25} {
199 set newB 25
201 set newC [expr {($v(y)+5-round([$c canvasy $y])-5*$v(width))/10}]
202 if {$newC < 0} {
203 set newC 0
205 if {$newC > 20} {
206 set newC 20
208 if {($newB != $v(b)) || ($newC != $v(c))} {
209 $c move box2 [expr {10*($v(b)-$newB)}] [expr {10*($v(c)-$newC)}]
210 set v(b) $newB
211 set v(c) $newC
215 # arrowMove3 --
216 # This procedure is called for each mouse motion event on box3 (the
217 # one that controls the thickness of the line). It updates the
218 # controlling parameters for the line and arrowhead.
220 # Arguments:
221 # c - The name of the canvas window.
222 # x, y - The coordinates of the mouse.
224 proc arrowMove3 {c x y} {
225 upvar #0 demo_arrowInfo v
226 set newWidth [expr {($v(y)+2-round([$c canvasy $y]))/5}]
227 if {$newWidth < 0} {
228 set newWidth 0
230 if {$newWidth > 20} {
231 set newWidth 20
233 if {$newWidth != $v(width)} {
234 $c move box3 0 [expr {5*($v(width)-$newWidth)}]
235 set v(width) $newWidth