/usr/share/tcltk/tklib0.6/controlwidget/rdial.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 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 | # rdial.tcl --
# Rotated dial widget, part of controlwidget package
#
# Contents: a "rotated" dial widget or thumbnail "roller" dial
# Date: Son May 23, 2010
#
# Abstract
# A mouse draggable "dial" widget from the side view - visible
# is the knurled area - Shift & Ctrl changes the sensitivity
#
# Copyright (c) Gerhard Reithofer, Tech-EDV 2010-05
#
# Adjusted for Tklib (snitified) by Arjen Markus
#
# The author hereby grant permission to use, copy, modify, distribute,
# and license this software and its documentation for any purpose,
# provided that existing copyright notices are retained in all copies
# and that this notice is included verbatim in any distributions. No
# written agreement, license, or royalty fee is required for any of the
# authorized uses. Modifications to this software may be copyrighted by
# their authors and need not follow the licensing terms described here,
# provided that the new terms are clearly indicated on the first page of
# each file where they apply.
#
# IN NO EVENT SHALL THE AUTHOR OR DISTRIBUTORS BE LIABLE TO ANY PARTY
# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
# DERIVATIVES THEREOF, EVEN IF THE AUTHOR HAVE BEEN ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# THE AUTHOR AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
# NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS,
# AND THE AUTHOR AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
# Original syntax:
#
# Syntax:
# rdial::create w ?-width wid? ?-height hgt? ?-value floatval?
# ?-bg|-background bcol? ?-fg|-foreground fcol? ?-step step?
# ?-callback script? ?-scale "degrees"|"radians"|factor?
# ?-slow sfact? ?-fast ffact? ?-orient horizontal|vertical?
#
# History:
# 20100526: -scale option added
# 20100626: incorrect "rotation direction" in vertical mode repaired
# 20100704: added -variable option and methods get and set (AM)
#
# Todo:
# option -variable -- conflicts with -value
# methods get and set
#
package require Tk 8.5
package require snit
namespace eval controlwidget {
namespace export rdial
}
# rdial --
# Rotated dial widget
#
snit::widget controlwidget::rdial {
#
# widget default values
#
option -bg -default "#dfdfdf" -configuremethod SetOption
option -background -default "#dfdfdf" -configuremethod SetOption
option -fg -default "black" -configuremethod SetOption
option -foreground -default "black" -configuremethod SetOption
option -callback -default ""
option -orient -default horizontal
option -width -default 80 -configuremethod SetOption
option -height -default 8 -configuremethod SetOption
option -step -default 10
option -value -default 0.0 -configuremethod SetOption
option -slow -default 0.1
option -fast -default 10
option -scale -default 1.0 -configuremethod SetOption
option -variable -default {} -configuremethod VariableName
variable d2r
variable sfact
variable ssize
variable ovalue
variable sector 88
variable callback
constructor args {
#
# A few constants to reduce expr
#
set d2r [expr {atan(1.0)/45.0}]
set ssize [expr {sin($sector*$d2r)}]
#
# Now initialise the widget
#
$self configurelist $args
canvas $win.c \
-background $options(-background)
grid $win.c -sticky nsew
# just for laziness ;)
set nsc [namespace current]
set wid $options(-width)
set hgt $options(-height)
set bgc $options(-background)
# canvas dimensions and bindings
if {$options(-orient) eq "horizontal"} {
$win.c configure -width $wid -height $hgt
# standard bindings
bind $win.c <ButtonPress-1> [list $self SetVar ovalue %x]
bind $win.c <B1-Motion> [list $self drag %W %x]
bind $win.c <ButtonRelease-1> [list $self drag %W %x]
# fine movement
bind $win.c <Shift-ButtonPress-1> [list $self SetVar ovalue %x]
bind $win.c <Shift-B1-Motion> [list $self drag %W %x -1]
bind $win.c <Shift-ButtonRelease-1> [list $self drag %W %x -1]
# course movement
bind $win.c <Control-ButtonPress-1> [list $self SetVar ovalue %x]
bind $win.c <Control-B1-Motion> [list $self drag %W %x 1]
bind $win.c <Control-ButtonRelease-1> [list $self drag %W %x 1]
} else {
$win.c configure -width $hgt -height $wid
# standard bindings
bind $win.c <ButtonPress-1> [list $self SetVar ovalue %y]
bind $win.c <B1-Motion> [list $self drag %W %y]
bind $win.c <ButtonRelease-1> [list $self drag %W %y]
# fine movement
bind $win.c <Shift-ButtonPress-1> [list $self SetVar ovalue %y]
bind $win.c <Shift-B1-Motion> [list $self drag %W %y -1]
bind $win.c <Shift-ButtonRelease-1> [list $self drag %W %y -1]
# course movement
bind $win.c <Control-ButtonPress-1> [list $self SetVar ovalue %y]
bind $win.c <Control-B1-Motion> [list $self drag %W %y 1]
bind $win.c <Control-ButtonRelease-1> [list $self drag %W %y 1]
}
if {$options(-variable) ne ""} {
if { [info exists ::$options(-variable)] } {
set options(-value) [set ::$options(-variable)]
} else {
set ::options(-variable) [expr {$options(-value)*$options(-scale)}]
}
trace add variable ::$options(-variable) write [mymethod variableChanged]
}
# draw insides
$self draw $win.c $options(-value)
}
#
# public methods --
#
method set {newValue} {
if { $options(-variable) != "" } {
set ::$options(-variable) $newValue ;#! This updates the dial too
} else {
set options(-value) $newValue
$self draw $win.c $options(-value)
}
}
method get {} {
return $options(-value)
}
#
# private methods --
#
# store some private variable
method SetVar {var value} {
set $var $value
}
# configure method - write only
method SetOption {option arg} {
switch -- $option {
"-bg" {set option "-background"}
"-fg" {set option "-foreground"}
"-scale" {
switch -glob -- $arg {
"d*" {set arg 1.0}
"r*" {set arg $d2r}
}
# numeric check
set arg [expr {$arg*1.0}]
}
"-value" {
set arg [expr {$arg/$options(-scale)}]
}
"-height" {
if { [winfo exists $win.c] } {
$win.c configure $option $arg
}
}
"-width" {
if { [winfo exists $win.c] } {
$win.c configure $option $arg
}
# sfact depends on width
set sfact [expr {$ssize*2/$arg}]
}
}
set options($option) $arg
if { [winfo exists $win.c] } {
$self draw $win.c $options(-value)
}
}
method VariableName {option name} {
# Could be still constructing in which case
# $win.c does not exist:
if {![winfo exists $win.c]} {
set options(-variable) $name
return;
}
# Remove any old traces
if {$options(-variable) ne ""} {
trace remove variable ::$options(-variable) write [mymethod variableChanged]
}
# Set new trace if appropriate and update value.
set options(-variable) $name
if {$options(-variable) ne ""} {
trace add variable ::$options(-variable) write [mymethod variableChanged]
$self draw $win.c [set ::$options(-variable)]
}
}
method variableChanged {name1 name2 op} {
set options(-value) [expr {[set ::$options(-variable)]/$options(-scale)}]
$self draw $win.c [set ::$options(-variable)]
if { $options(-callback) ne "" } {
{*}$options(-callback) [expr {$options(-value)*$options(-scale)}]
}
}
# cget method
proc GetOption {option} {
if { $option eq "-value" } {
return [expr {$options(-value)*$options(-scale)}]
} else {
return $options(-value)
}
}
# draw the thumb wheel view
method draw {w val} {
set stp $options(-step)
set wid $options(-width)
set hgt $options(-height)
set dfg $options(-foreground)
set dbg $options(-background)
$win.c delete all
if {$options(-orient) eq "horizontal"} {
# every value is mapped to the visible sector
set mod [expr {$val-$sector*int($val/$sector)}]
$win.c create rectangle 0 0 $wid $hgt -fill $dbg
# from normalized value to left end
for {set ri $mod} {$ri>=-$sector} {set ri [expr {$ri-$stp}]} {
set offs [expr {($ssize+sin($ri*$d2r))/$sfact}]
$win.c create line $offs 0 $offs $hgt -fill $dfg
}
# from normalized value to right end
for {set ri [expr {$mod+$stp}]} {$ri<=$sector} {set ri [expr {$ri+$stp}]} {
set offs [expr {($ssize+sin($ri*$d2r))/$sfact}]
$win.c create line $offs 0 $offs $hgt -fill $dfg
}
} else {
# every value is mapped to the visible sector
set mod [expr {$sector*int($val/$sector)-$val}]
$win.c create rectangle 0 0 $hgt $wid -fill $dbg
# from normalized value to upper end
for {set ri $mod} {$ri>=-$sector} {set ri [expr {$ri-$stp}]} {
set offs [expr {($ssize+sin($ri*$d2r))/$sfact}]
$win.c create line 0 $offs $hgt $offs -fill $dfg
}
# from normalized value to lower end
for {set ri [expr {$mod+$stp}]} {$ri<=$sector} {set ri [expr {$ri+$stp}]} {
set offs [expr {($ssize+sin($ri*$d2r))/$sfact}]
$win.c create line 0 $offs $hgt $offs -fill $dfg
}
}
# let's return the widget/canvas
set options(-value) $val
}
method drag {w coord {mode 0}} {
variable opt
variable ovalue
# calculate new value
if {$options(-orient) eq "horizontal"} {
set diff [expr {$coord-$ovalue}]
} else {
set diff [expr {$ovalue-$coord}]
}
if {$mode<0} {
set diff [expr {$diff*$options(-slow)}]
} elseif {$mode>0} {
set diff [expr {$diff*$options(-fast)}]
}
set options(-value) [expr {$options(-value)+$diff}]
# call callback if defined...
if {$options(-callback) ne ""} {
{*}$options(-callback) [expr {$options(-value)*$options(-scale)}]
}
# draw knob with new angle
$self draw $win.c $options(-value)
# store "old" value for diff
set ovalue $coord
}
}
# Announce our presence
package provide rdial 0.3
#-------- test & demo ... disable it for package autoloading -> {0}
if {0} {
if {[info script] eq $argv0} {
array set disp_value {rs -30.0 rh 120.0 rv 10.0}
proc rndcol {} {
set col "#"
for {set i 0} {$i<3} {incr i} {
append col [format "%02x" [expr {int(rand()*230)+10}]]
}
return $col
}
proc set_rand_col {} {
.rs configure -fg [rndcol] -bg [rndcol]
}
proc show_value {which v} {
set val [.$which cget -value]
set ::disp_value($which) [format "%.1f" $val]
switch -- $which {
"rh" {
if {abs($val)<30} return
.rs configure -width [expr {abs($val)}]
}
"rv" {
if {abs($val)<5} return
.rs configure -height [expr {abs($val)}]
}
"rs" {
if {!(int($val)%10)} set_rand_col
}
}
}
label .lb -text "Use mouse button with Shift &\nControl for dragging the dials"
label .lv -textvariable disp_value(rv)
controlwidget::rdial .rv -callback {show_value rv} -value $disp_value(rv)\
-width 200 -step 5 -bg blue -fg white \
-variable score
label .lh -textvariable disp_value(rh)
controlwidget::rdial .rh -callback {show_value rh} -value $disp_value(rh)\
-width $disp_value(rh) -height 20 -fg blue -bg yellow -orient vertical
label .ls -textvariable disp_value(rs)
controlwidget::rdial .rs -callback {show_value rs} -value $disp_value(rs)\
-width $disp_value(rh) -height $disp_value(rv)
pack {*}[winfo children .]
wm minsize . 220 300
after 2000 {
set ::score 0.0
}
after 3000 {
set ::score 100.0
.rh set 3
}
}
}
|