/usr/share/tcltk/tklib0.6/plotchart/plotbind.tcl is in tklib 0.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | # plotbind.tcl --
# Facilities for interaction with the plot, via event bindings
#
# Note:
# This source contains private functions only.
# It accompanies "plotchart.tcl"
#
# BindPlot --
# Bind an event to the entire plot area
#
# Arguments:
# w Widget
# event Type of event
# cmd Command to execute
#
# Result:
# None
#
proc ::Plotchart::BindPlot {w event cmd} {
variable scaling
if { $scaling($w,eventobj) == "" } {
set pxmin $scaling($w,pxmin)
set pxmax $scaling($w,pxmax)
set pymin $scaling($w,pymin)
set pymax $scaling($w,pymax)
set scaling($w,eventobj) [$w create rectangle $pxmin $pymin $pxmax $pymax -fill {} -outline {}]
}
$w lower $scaling($w,eventobj)
$w bind $scaling($w,eventobj) $event [list ::Plotchart::BindCmd %x %y $w $cmd]
}
# BindLast --
# Bind an event to the last data point of a data series
#
# Arguments:
# w Widget
# series Data series in question
# event Type of event
# cmd Command to execute
#
# Result:
# None
#
proc ::Plotchart::BindLast {w series event cmd} {
variable data_series
foreach {x y} [coordsToPixel $w $data_series($w,$series,x) $data_series($w,$series,y)] {break}
set pxmin [expr {$x-5}]
set pxmax [expr {$x+5}]
set pymin [expr {$y-5}]
set pymax [expr {$y+5}]
set object [$w create rectangle $pxmin $pymin $pxmax $pymax -fill {} -outline {}]
$w bind $object $event \
[list ::Plotchart::BindCmd $x $y $w $cmd]
}
# BindLastHistogram --
# Bind an event to the last rectangle created in a histogram
#
# Arguments:
# w Widget
# series Data series in question
# event Type of event
# cmd Command to execute
#
# Result:
# None
#
proc ::Plotchart::BindLastHistogram {w series event cmd} {
variable data_series
set style "filled"
if { [info exists data_series($w,$series,-style)] } {
set style $data_series($w,$series,-style)
}
set pxmin $data_series($w,$series,px1)
set y1 $data_series($w,$series,py1)
set pxmax $data_series($w,$series,px2)
set y2 $data_series($w,$series,py2)
if { $style != "filled" } {
set pymin [expr {$y1-5}]
set pymax [expr {$y2+5}]
} else {
set pymin $y1
set pymax $y2
}
set object [$w create rectangle $pxmin $pymin $pxmax $pymax -fill {} -outline {}]
$w bind $object $event \
[list ::Plotchart::BindCmd $pxmax $y2 $w $cmd]
}
# BindCmd --
# Call the command that is bound to the event
#
# Arguments:
# xcoord X coordinate of event
# ycoord Y coordinate of event
# w Canvas widget
# cmd Command to execute
#
# Result:
# None
#
proc ::Plotchart::BindCmd {xcoord ycoord w cmd} {
variable scaling
foreach {x y} [pixelToCoords $w $xcoord $ycoord] {break}
eval [lindex $cmd 0] $x $y [lrange $cmd 1 end]
}
# PieExplodeSegment --
# Move the indicated segment
#
# Arguments:
# w Widget
# segment Segment to move
# button Whether it came from a button event or not
#
# Result:
# None
#
# Note:
# If the segment is "auto", then we accept button clicks
#
proc ::Plotchart::PieExplodeSegment {w segment {button 0}} {
variable scaling
if { $button && $scaling($w,auto) == 0 } {
return
}
if { $segment == "auto" } {
set scaling($w,auto) 1
return
} else {
if { $segment < 0 || $segment >= [llength $scaling($w,angles)] } {
return
}
}
if { $scaling($w,exploded) != -1 } {
$w move segment_$scaling($w,exploded) [expr {-$scaling($w,xexploded)}] [expr {-$scaling($w,yexploded)}]
}
if { $segment == $scaling($w,exploded) } {
set scaling($w,exploded) -1
} else {
set angle_bgn [lindex $scaling($w,angles) $segment]
set angle_ext [lindex $scaling($w,extent) $segment]
set angle [expr {3.1415926*($angle_bgn+$angle_ext/2.0)/180.0}]
set dx [expr { 15 * cos($angle)}]
set dy [expr {-15 * sin($angle)}]
set scaling($w,exploded) $segment
set scaling($w,xexploded) $dx
set scaling($w,yexploded) $dy
$w move segment_$segment $dx $dy
}
}
if {0} {
-- this represents an old idea. Keeping it around for the moment --
# BindVar --
# Bind a variable to a mouse event
#
# Arguments:
# w Widget
# event Type of event
# varname Name of a global variable
# text Text containing %x and %y to set the variable to
#
# Result:
# None
#
# Note:
# This procedure makes it easy to build a label widget showing
# the current position of the mouse in the plot's coordinate
# system for instance.
#
proc ::Plotchart::BindVar {w event varname text} {
BindCmd $w $event [list ::Plotchart::SetText $w "%x %y" $varname \
[string map {% @} $text]]
}
# BindCmd --
# Bind a command to a mouse event
#
# Arguments:
# w Widget
# event Type of event
# cmd Command to be run
#
# Result:
# None
#
# Note:
# This procedure makes it easy to define interactive plots
# But it defines bindings for the whole canvas window, not the
# individual items. -- TODO --
#
proc ::Plotchart::BindCmd {w event cmd} {
switch -- $event {
"mouse" { set b "<Motion>" }
"button" { set b "<ButtonPress-1>" }
default { return -code error "Unknown event type $event" }
}
bind $w $b $cmd
}
# SetText --
# Substitute the coordinates in the given text
#
# Arguments:
# w Widget
# coords Current coordinates
# varname Name of a global variable
# text Text containing %x and %y to set the variable to
#
# Result:
# None
#
# Side effects:
# The text is assigned to the variable after making the
# various substitutions
#
proc ::Plotchart::SetText {w coords varname text} {
upvar #0 $varname V
foreach {x y} [pixelToCoords $w [lindex $coords 0] [lindex $coords 1]] {break}
set V [string map [list @x $x @y $y] $text]
}
--- end of old code ---
}
|