/usr/share/amsn/utils/pixmapscroll/pixmapscroll.tcl is in amsn-data 0.98.9-1ubuntu3.
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 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 | #Pixmapscroll 0.9 by Arieh Schneier and Tom Jenkins
#A scrollbar widget that uses pixmaps so you can have pretty-fied tk scrollbars!
package require snit
package provide pixmapscroll 0.9
interp alias {} scrollbar {} pixmapscrollbar
snit::widgetadaptor pixmapscrollbar {
typevariable scrollbarlist {}
foreach orientation {horizontal vertical} {
foreach pic {arrow1 arrow2 slidertop sliderbody sliderbottom slidergrip} {
foreach hov {{} _hover _pressed _disabled} {
typecomponent ${orientation}_${pic}image${hov}
}
}
typecomponent ${orientation}_troughsrcimage
typevariable ${orientation}_arrow1width
typevariable ${orientation}_arrow1height
typevariable ${orientation}_arrow2width
typevariable ${orientation}_arrow2height
}
foreach pic {arrow1 arrow2 slidertop sliderbody sliderbottom slidergrip slider} {
foreach hov {{} _hover _pressed _disabled} {
component ${pic}image${hov}
}
}
component troughsrcimage
component troughimage
variable arrow1width
variable arrow1height
variable arrow2width
variable arrow2height
variable canvas
variable visible 1
variable first 0
variable last 1
variable newsize 1
variable active_element ""
variable hidden 0
variable greyed 0
variable packinfo ""
variable packlist {}
option -activebackground -default #ffffff
option -background -default #eae7e4
option -bg -default #eae7e4
option -borderwidth -default 0
option -bd -default 0
option -cursor -default {}
option -highlightbackground -default #eae7e4
option -highlightcolor -default black
option -highlightthickness -default 0
option -jump -default 0
option -orient -default "vertical" -readonly yes
option -relief -default sunken
option -repeatdelay -default 300
option -repeatinterval -default 100
option -takefocus -default {}
option -troughcolor -default #d3d0ce
option -activerelief -default raised
option -command -default {}
option -elementborderwidth -default -1
option -width -default 14 -configuremethod SetWidth
option -height -default 200 -configuremethod SetHeight
option -autohide -default 0 -configuremethod ChangeHide
typeconstructor {
reloadimages "" 1
}
constructor {args} {
installhull using canvas -bg white -bd 0 -highlightthickness 0
set canvas $hull
$self configurelist $args
#add abbreviations
if { ($options(-orient) == "v") || ($options(-orient) == "vert") } {
set options(-orient) "vertical"
}
if { $options(-orient) == "vertical" } {
set orientation "vertical"
} else {
set orientation "horizontal"
}
foreach pic {arrow1 arrow2 slidertop sliderbody sliderbottom slidergrip} {
foreach hov {{} _hover _pressed _disabled} {
set ${pic}image${hov} [set ${orientation}_${pic}image${hov}]
}
}
set troughsrcimage [set ${orientation}_troughsrcimage]
set arrow1width [set ${orientation}_arrow1width]
set arrow1height [set ${orientation}_arrow1height]
set arrow2width [set ${orientation}_arrow2width]
set arrow2height [set ${orientation}_arrow2height]
set troughimage [image create photo ${self}through]
set sliderimage [image create photo ${self}slider]
set sliderimage_hover [image create photo ${self}slidhov]
set sliderimage_pressed [image create photo ${self}slidpres]
set sliderimage_disabled [image create photo ${self}sliddisab]
$canvas create image 0 0 -anchor nw -image $troughimage -tag $troughimage
$canvas create image 0 0 -anchor nw -image $sliderimage -activeimage $sliderimage_hover -disabledimage $sliderimage_disabled -tag $sliderimage
$canvas create image 0 0 -anchor nw -image $arrow1image -activeimage $arrow1image_hover -disabledimage $arrow1image_disabled -tag $arrow1image
if { $options(-orient) == "vertical" } {
$canvas create image 0 $newsize -anchor sw -image $arrow2image -activeimage $arrow2image_hover -disabledimage $arrow2image_disabled -tag $arrow2image
} else {
$canvas create image $newsize 0 -anchor ne -image $arrow2image -activeimage $arrow2image_hover -disabledimage $arrow2image_disabled -tag $arrow2image
}
# Set width / height
if { $options(-orient) == "vertical" } {
$self configure -width $arrow1width
} else {
$self configure -width $arrow1height
}
# Set configure bindings:
if { $options(-orient) == "vertical" } {
bind $self <Configure> {
%W Setnewsize %h
%W DrawScrollbar
}
} else {
bind $self <Configure> {
%W Setnewsize %w
%W DrawScrollbar
}
}
bindtags $self "Pixmapscroll $self all"
bind $self <Button-1> "$self PressedImage %x %y"
bind $self <ButtonRelease-1> "$self ReleasedImage %x %y"
lappend scrollbarlist $self
}
destructor {
set ndx [lsearch $scrollbarlist $self]
if {$ndx != -1} {
set scrollbarlist [lreplace $scrollbarlist $ndx $ndx]
}
image delete ${self}through
image delete ${self}slider
image delete ${self}slidhov
image delete ${self}slidpres
image delete ${self}sliddisab
}
method Setnewsize { news } {
set newsize $news
}
method SetWidth {option value} {
set options($option) $value
if { $options(-orient) == "vertical" } {
$canvas configure -width $value
} else {
$canvas configure -height $value
}
}
method SetHeight {option value} {
set options($option) $value
if { $options(-orient) == "vertical" } {
$canvas configure -height $value
} else {
$canvas configure -width $value
}
}
method ChangeHide {option value} {
set options($option) $value
$self HideUnhide
}
method Hide { } {
if { ![catch { set packinfo [pack info $self] }] } {
set packlist [pack slaves [winfo parent $self]]
set packlist [lrange $packlist [expr {[lsearch $packlist $self] + 1}] end]
pack forget $self
set hidden 1
}
}
method UnHide {} {
#only pack if isn't currently packed
if { [catch { pack info $self }] } {
foreach child $packlist {
if { ![catch { pack info $child } ] } {
append packinfo " -before $child"
break
}
}
eval pack $self $packinfo
}
set hidden 0
}
method Grey { } {
#$self ChangePalette 32 2
$self SetState disabled
set greyed 1
#bind $self <Button-1> ""
#bind $self <ButtonRelease-1> ""
}
method UnGrey { } {
#$self ChangePalette 256/256/256 1
$self SetState normal
set greyed 0
#bind $self <Button-1> "$self PressedImage %x %y"
#bind $self <ButtonRelease-1> "$self ReleasedImage %x %y"
}
method SetState { value } {
$canvas configure -state $value
}
# method ChangePalette { palette gamma } {
#
# foreach pic {arrow1 arrow2 slidertop sliderbody sliderbottom slidergrip slider} {
# foreach hov {{} _hover _pressed _disabled} {
# catch {[set ${pic}image${hov}] configure -palette $palette -gamma $gamma} res
# }
# }
# catch { $troughsrcimage configure -palette $palette -gamma $gamma}
# catch { $troughimage configure -palette $palette -gamma $gamma}
# }
method HideUnhide { } {
# hide it or grey it out
if { $visible == 1} {
if {$options(-autohide)} {
# Hide it
if {$hidden == 0} {
$self Hide
}
} else {
# grey it
if {$hidden == 1 } {
# Unhide it first
$self UnHide
}
if {$greyed == 0 } {
$self Grey
}
}
} else {
# Unhide or ungrey
if { $hidden == 1 } {
$self UnHide
}
if { $greyed == 1 } {
$self UnGrey
}
}
}
method PressedImage { x y } {
set element [$self identify $x $y]
switch $element {
"slider" { $canvas itemconfigure $sliderimage -image $sliderimage_pressed -activeimage $sliderimage_pressed }
"arrow1" { $canvas itemconfigure $arrow1image -image $arrow1image_pressed -activeimage $arrow1image_pressed }
"arrow2" { $canvas itemconfigure $arrow2image -image $arrow2image_pressed -activeimage $arrow2image_pressed }
default { return }
}
}
method ReleasedImage { x y } {
$canvas itemconfigure $sliderimage -image $sliderimage -activeimage $sliderimage_hover
$canvas itemconfigure $arrow1image -image $arrow1image -activeimage $arrow1image_hover
$canvas itemconfigure $arrow2image -image $arrow2image -activeimage $arrow2image_hover
}
#Draw or redraw the scrollbar
method DrawScrollbar { } {
#Drawing Arrows:
if { $options(-orient) == "vertical" } {
$canvas coords $arrow2image 0 $newsize
} else {
$canvas coords $arrow2image $newsize 0
}
#Drawing Trough
if { $options(-orient) == "vertical" } {
$troughimage blank
$troughimage copy $troughsrcimage -to 0 0 [image width $troughsrcimage] $newsize
} else {
$troughimage blank
$troughimage copy $troughsrcimage -to 0 0 $newsize [image height $troughsrcimage]
}
#Drawing Slider
if { $options(-orient) == "vertical" } {
set slidersize [lindex [split [expr {$visible * ($newsize - ($arrow1height + $arrow2height))}] .] 0]
#Make sure slider doesn't get negative size
if { [image height $sliderbodyimage] < [image height $slidergripimage] } {
set minsize [expr {[image height $slidertopimage] + [image height $sliderbottomimage] + [image height $slidergripimage]}]
} else {
set minsize [expr {[image height $slidertopimage] + [image height $sliderbottomimage] + [image height $sliderbodyimage]}]
}
if { $slidersize < $minsize } {
set slidersize $minsize
}
set gripPos [expr {($slidersize/2) - ([image height $slidergripimage]/2)}]
if {$gripPos < 0} {set gripPos 1}
$sliderimage blank
$sliderimage copy $slidertopimage
$sliderimage copy $sliderbodyimage -to 0 [image height $slidertopimage] [image width $sliderbodyimage] [expr {$slidersize - [image height $sliderbottomimage] }]
$sliderimage copy $sliderbottomimage -to 0 [expr {$slidersize - [image height $sliderbottomimage]}] -shrink
if {[expr {$slidersize - [image height $sliderbottomimage] }] >= [image height $slidergripimage]} {
$sliderimage copy $slidergripimage -to 0 $gripPos
}
$sliderimage_hover blank
$sliderimage_hover copy $slidertopimage_hover
$sliderimage_hover copy $sliderbodyimage_hover -to 0 [image height $slidertopimage_hover] [image width $sliderbodyimage_hover] [expr {$slidersize - [image height $sliderbottomimage_hover] }]
$sliderimage_hover copy $sliderbottomimage_hover -to 0 [expr {$slidersize - [image height $sliderbottomimage_hover]}] -shrink
if {[expr {$slidersize - [image height $sliderbottomimage_hover] }] >= [image height $slidergripimage_hover]} {
$sliderimage_hover copy $slidergripimage_hover -to 0 $gripPos
}
$sliderimage_pressed blank
$sliderimage_pressed copy $slidertopimage_pressed
$sliderimage_pressed copy $sliderbodyimage_pressed -to 0 [image height $slidertopimage_pressed] [image width $sliderbodyimage_pressed] [expr {$slidersize - [image height $sliderbottomimage_pressed] }]
$sliderimage_pressed copy $sliderbottomimage_pressed -to 0 [expr {$slidersize - [image height $sliderbottomimage_pressed]}] -shrink
if {[expr {$slidersize - [image height $sliderbottomimage_pressed] }] >= [image height $slidergripimage_pressed]} {
$sliderimage_pressed copy $slidergripimage_pressed -to 0 $gripPos
}
$sliderimage_disabled blank
$sliderimage_disabled copy $slidertopimage_disabled
$sliderimage_disabled copy $sliderbodyimage_disabled -to 0 [image height $slidertopimage_disabled] [image width $sliderbodyimage_disabled] [expr {$slidersize - [image height $sliderbottomimage_disabled] }]
$sliderimage_disabled copy $sliderbottomimage_disabled -to 0 [expr {$slidersize - [image height $sliderbottomimage_disabled]}] -shrink
if {[expr {$slidersize - [image height $sliderbottomimage_disabled] }] >= [image height $slidergripimage_disabled]} {
$sliderimage_disabled copy $slidergripimage_disabled -to 0 $gripPos
}
# Set the slider's position:
set sliderpos [expr {($first * ($newsize - ($arrow1height + $arrow2height))) + $arrow1height}]
# Check to avoid slight moving of scrollbar during resizing when at top or bottom:
if { [lindex [$self get] 0] == 0 } { set sliderpos $arrow1height }
if { [lindex [$self get] 1] == 1 } { set sliderpos [expr $newsize - $arrow2height - $slidersize] }
# Make sure the slider doesn't escape the trough!
if { $sliderpos < $arrow1height } { set sliderpos $arrow1height }
if { $sliderpos > [expr {$newsize - $arrow1height - $slidersize}] } { set sliderpos [expr {$newsize - $arrow1height - $slidersize}] }
$canvas coords $sliderimage 0 $sliderpos
} else {
set slidersize [lindex [split [expr {$visible * ($newsize - ($arrow1width + $arrow2width))}] .] 0]
#Make sure slider doesn't get negative size
if { [image width $sliderbodyimage] < [image width $slidergripimage] } {
set minsize [expr {[image width $slidertopimage] + [image width $sliderbottomimage] + [image width $slidergripimage]}]
} else {
set minsize [expr {[image width $slidertopimage] + [image width $sliderbottomimage] + [image width $sliderbodyimage]}]
}
if { $slidersize < $minsize } {
set slidersize $minsize
}
set gripPos [expr {($slidersize/2) - ([image height $slidergripimage]/2)}]
if {$gripPos < 0} {set gripPos 1}
$sliderimage blank
$sliderimage copy $slidertopimage
$sliderimage copy $sliderbodyimage -to [image width $slidertopimage] 0 [expr {$slidersize - [image width $sliderbottomimage]}] [image height $sliderbodyimage]
$sliderimage copy $sliderbottomimage -to [expr {$slidersize - [image width $sliderbottomimage]}] 0 -shrink
if {[expr {$slidersize - [image width $sliderbottomimage] }] >= [image width $slidergripimage]} {
$sliderimage copy $slidergripimage -to $gripPos 0
}
$sliderimage_hover blank
$sliderimage_hover copy $slidertopimage_hover
$sliderimage_hover copy $sliderbodyimage_hover -to [image width $slidertopimage_hover] 0 [expr {$slidersize - [image width $sliderbottomimage_hover]}] [image height $sliderbodyimage_hover]
$sliderimage_hover copy $sliderbottomimage_hover -to [expr {$slidersize - [image width $sliderbottomimage_hover]}] 0 -shrink
if {[expr {$slidersize - [image width $sliderbottomimage_hover] }] >= [image width $slidergripimage_hover]} {
$sliderimage_hover copy $slidergripimage_hover -to $gripPos 0
}
$sliderimage_pressed blank
$sliderimage_pressed copy $slidertopimage_pressed
$sliderimage_pressed copy $sliderbodyimage_pressed -to [image width $slidertopimage_pressed] 0 [expr {$slidersize - [image width $sliderbottomimage_pressed]}] [image height $sliderbodyimage_pressed]
$sliderimage_pressed copy $sliderbottomimage_pressed -to [expr {$slidersize - [image width $sliderbottomimage_pressed]}] 0 -shrink
if {[expr {$slidersize - [image width $sliderbottomimage_pressed] }] >= [image width $slidergripimage_pressed]} {
$sliderimage_pressed copy $slidergripimage_pressed -to $gripPos 0
}
$sliderimage_disabled blank
$sliderimage_disabled copy $slidertopimage_disabled
$sliderimage_disabled copy $sliderbodyimage_disabled -to [image width $slidertopimage_disabled] 0 [expr {$slidersize - [image width $sliderbottomimage_disabled]}] [image height $sliderbodyimage_disabled]
$sliderimage_disabled copy $sliderbottomimage_disabled -to [expr {$slidersize - [image width $sliderbottomimage_disabled]}] 0 -shrink
if {[expr {$slidersize - [image width $sliderbottomimage_disabled] }] >= [image width $slidergripimage_disabled]} {
$sliderimage_disabled copy $slidergripimage_disabled -to $gripPos 0
}
set sliderpos [expr {($first * ($newsize - ($arrow1width + $arrow2width))) + $arrow1width}]
if { [lindex [$self get] 0] == 0 } { set sliderpos $arrow1width }
if { [lindex [$self get] 1] == 1 } { set sliderpos [expr $newsize - $arrow2width - $slidersize] }
if { $sliderpos < $arrow1width } { set sliderpos $arrow1width }
if { $sliderpos > [expr {$newsize - $arrow1width - $slidersize}] } { set sliderpos [expr {$newsize - $arrow1width - $slidersize}] }
$canvas coords $sliderimage $sliderpos 0
}
#Drawing "virtual troughs"
$canvas delete trough1
$canvas delete trough2
if { $options(-orient) == "vertical" } {
$canvas create rectangle 0 $arrow1height [image width $troughimage] $sliderpos -fill "" -outline "" -tag trough1
$canvas create rectangle 0 [expr {$sliderpos + $slidersize}] [image width $troughimage] [expr {$newsize - $arrow2height}] -fill "" -outline "" -tag trough2
} else {
$canvas create rectangle $arrow1width 0 $sliderpos [image height $troughimage] -fill "" -outline "" -tag trough1
$canvas create rectangle [expr {$sliderpos + $slidersize}] 0 [expr {$newsize - $arrow2width}] [image height $troughimage] -fill "" -outline "" -tag trough2
}
}
method activate { {element "return"} } {
if { $element == "return" } {
return $active_element
}
if { ($element == "arrow1") || ($element == "arrow2") || ($element == "slider") } {
set active_element $element
} else {
set active_element ""
}
}
method delta { deltaX deltaY } {
if {$options(-orient) == "vertical" } {
set number [expr $deltaY.0 / ($newsize - ($arrow1height + $arrow2height))]
} else {
set number [expr $deltaX.0 / ($newsize - ($arrow1width + $arrow2width))]
}
return $number
}
method fraction { x y } {
if { $options(-orient) == "vertical" } {
set pos [expr 1 - ($newsize - $y) / $newsize.0]
} else {
set pos [expr 1 - ($newsize - $x) / $newsize.0]
}
return $pos
}
method get { } {
return [list $first $last]
}
method identify { x y } {
set sliderpos [$canvas coords $sliderimage]
set trough1coords [$canvas coords trough1]
set trough2coords [$canvas coords trough2]
if { $options(-orient) == "vertical" } {
set slidersize [image height $sliderimage]
if { $y <= $arrow1height } { return "arrow1" }
if { $y >= [expr {$newsize - $arrow2height}] } { return "arrow2" }
if { $y >= [lindex $sliderpos 1] && $y <= [expr {[lindex $sliderpos 1] + $slidersize}] } { return "slider" }
if { $y >= [lindex $trough1coords 1] && $y <= [lindex $trough1coords 3] } { return "trough1" }
if { $y >= [lindex $trough2coords 1] && $y <= [lindex $trough2coords 3] } { return "trough2" }
} else {
set slidersize [image width $sliderimage]
if { $x <= $arrow1width } { return "arrow1" }
if { $x >= [expr {$newsize - $arrow2width}] } { return "arrow2" }
if { $x >= [lindex $sliderpos 0] && $x <= [expr {[lindex $sliderpos 0] + $slidersize}] } { return "slider" }
if { $x >= [lindex $trough1coords 0] && $x <= [lindex $trough1coords 2] } { return "trough1" }
if { $x >= [lindex $trough2coords 0] && $x <= [lindex $trough2coords 2] } { return "trough2" }
}
}
method set { ord1 ord2 } {
set first $ord1
set last $ord2
set visible [expr {$last - $first}]
$self DrawScrollbar
$self HideUnhide
}
method moveto { fraction } {
eval $options(-command) moveto $fraction
$self DrawScrollbar
}
method scroll { number what } {
set oldtop [lindex [eval $options(-command)] 0]
eval "$options(-command) scroll $number $what"
set newtop [lindex [eval $options(-command)] 0]
if { $options(-orient) == "vertical" } {
set sliderpos [lindex [$canvas coords $sliderimage] 1]
$canvas coords $sliderimage 0 [expr {$sliderpos + [delta 0 [expr {$newtop - $oldtop}]]}]
} else {
set sliderpos [lindex [$canvas coords $sliderimage] 0]
$canvas coords $sliderimage [expr {$sliderpos + [delta 0 [expr {$newtop - $oldtop}]]}] 0
}
}
method ResetImageDims { } {
if { $options(-orient) == "vertical" } {
set arrow1width [set vertical_arrow1width]
set arrow1height [set vertical_arrow1height]
set arrow2width [set vertical_arrow2width]
set arrow2height [set vertical_arrow2height]
} else {
set arrow1width [set horizontal_arrow1width]
set arrow1height [set horizontal_arrow1height]
set arrow2width [set horizontal_arrow2width]
set arrow2height [set horizontal_arrow2height]
}
}
proc reloadimages { dir {force 0} } {
foreach orientation {horizontal vertical} {
foreach pic {arrow1 arrow2 slidertop sliderbody sliderbottom slidergrip} {
foreach hov {{} _hover _pressed _disabled} {
foreach ext {gif png jpg bmp} {
if { [file exists [file join $dir $orientation/${pic}${hov}.${ext}]] \
|| $force } {
if { ![catch {set ${orientation}_${pic}image${hov} \
[image create photo ${orientation}_${pic}image${hov} \
-file [file join $dir $orientation/${pic}${hov}.${ext}]] \
}]} {
break
}
}
}
}
}
foreach ext {gif png jpg bmp} {
if { [file exists [file join $dir $orientation/trough.${ext}]] || $force } {
if { ![catch {set ${orientation}_troughsrcimage [image create photo \
${orientation}_troughsrcimage -file [file join $dir \
$orientation/trough.${ext}]] }]} {
break
}
}
}
set ${orientation}_arrow1width [image width [set ${orientation}_arrow1image]]
set ${orientation}_arrow1height [image height [set ${orientation}_arrow1image]]
set ${orientation}_arrow2width [image width [set ${orientation}_arrow2image]]
set ${orientation}_arrow2height [image height [set ${orientation}_arrow2image]]
}
foreach scrollwidget $scrollbarlist {
if { [$scrollwidget cget -orient] == "vertical" } {
$scrollwidget configure -width [set ${orientation}_arrow1width]
} else {
$scrollwidget configure -width [set ${orientation}_arrow1height]
}
$scrollwidget ResetImageDims
$scrollwidget DrawScrollbar
}
}
}
#Bindings copied straight from Scrollbar bindings
#Can't just use the Scrollbar tag as they aren't bound for windows or mac
bind Pixmapscroll <Enter> {
if {$tk_strictMotif} {
set tk::Priv(activeBg) [%W cget -activebackground]
%W configure -activebackground [%W cget -background]
}
%W activate [%W identify %x %y]
}
bind Pixmapscroll <Motion> {
%W activate [%W identify %x %y]
}
# The "info exists" command in the following binding handles the
# situation where a Leave event occurs for a scrollbar without the Enter
# event. This seems to happen on some systems (such as Solaris 2.4) for
# unknown reasons.
bind Pixmapscroll <Leave> {
if {$tk_strictMotif && [info exists tk::Priv(activeBg)]} {
%W configure -activebackground $tk::Priv(activeBg)
}
%W activate {}
}
bind Pixmapscroll <1> {
tk::ScrollButtonDown %W %x %y
}
bind Pixmapscroll <B1-Motion> {
tk::ScrollDrag %W %x %y
}
bind Pixmapscroll <B1-B2-Motion> {
tk::ScrollDrag %W %x %y
}
bind Pixmapscroll <ButtonRelease-1> {
tk::ScrollButtonUp %W %x %y
}
bind Pixmapscroll <B1-Leave> {
# Prevents <Leave> binding from being invoked.
}
bind Pixmapscroll <B1-Enter> {
# Prevents <Enter> binding from being invoked.
}
bind Pixmapscroll <2> {
tk::ScrollButton2Down %W %x %y
}
bind Pixmapscroll <B1-2> {
# Do nothing, since button 1 is already down.
}
bind Pixmapscroll <B2-1> {
# Do nothing, since button 2 is already down.
}
bind Pixmapscroll <B2-Motion> {
tk::ScrollDrag %W %x %y
}
bind Pixmapscroll <ButtonRelease-2> {
tk::ScrollButtonUp %W %x %y
}
bind Pixmapscroll <B1-ButtonRelease-2> {
# Do nothing: B1 release will handle it.
}
bind Pixmapscroll <B2-ButtonRelease-1> {
# Do nothing: B2 release will handle it.
}
bind Pixmapscroll <B2-Leave> {
# Prevents <Leave> binding from being invoked.
}
bind Pixmapscroll <B2-Enter> {
# Prevents <Enter> binding from being invoked.
}
bind Pixmapscroll <Control-1> {
tk::ScrollTopBottom %W %x %y
}
bind Pixmapscroll <Control-2> {
tk::ScrollTopBottom %W %x %y
}
bind Pixmapscroll <Up> {
tk::ScrollByUnits %W v -1
}
bind Pixmapscroll <Down> {
tk::ScrollByUnits %W v 1
}
bind Pixmapscroll <Control-Up> {
tk::ScrollByPages %W v -1
}
bind Pixmapscroll <Control-Down> {
tk::ScrollByPages %W v 1
}
bind Pixmapscroll <Left> {
tk::ScrollByUnits %W h -1
}
bind Pixmapscroll <Right> {
tk::ScrollByUnits %W h 1
}
bind Pixmapscroll <Control-Left> {
tk::ScrollByPages %W h -1
}
bind Pixmapscroll <Control-Right> {
tk::ScrollByPages %W h 1
}
bind Pixmapscroll <Prior> {
tk::ScrollByPages %W hv -1
}
bind Pixmapscroll <Next> {
tk::ScrollByPages %W hv 1
}
bind Pixmapscroll <Home> {
tk::ScrollToPos %W 0
}
bind Pixmapscroll <End> {
tk::ScrollToPos %W 1
}
if {![catch {tk windowingsystem} wsystem] && $wsystem == "x11"} {
bind Pixmapscroll <MouseWheel> {
tk::ScrollByUnits %W v [expr {- (%D)}]
}
bind Pixmapscroll <Option-MouseWheel> {
tk::ScrollByUnits %W v [expr {-10 * (%D)}]
}
bind Pixmapscroll <Shift-MouseWheel> {
tk::ScrollByUnits %W h [expr {- (%D)}]
}
bind Pixmapscroll <Shift-Option-MouseWheel> {
tk::ScrollByUnits %W h [expr {-10 * (%D)}]
}
} else {
bind Pixmapscroll <ButtonPress-5> {
tk::ScrollByUnits %W v 1
}
bind Pixmapscroll <ButtonPress-4> {
tk::ScrollByUnits %W v -1
}
bind Pixmapscroll <Option-ButtonPress-5> {
tk::ScrollByUnits %W v 10
}
bind Pixmapscroll <Option-ButtonPress-4> {
tk::ScrollByUnits %W v -10
}
bind Pixmapscroll <Shift-ButtonPress-5> {
tk::ScrollByUnits %W h 1
}
bind Pixmapscroll <Shift-ButtonPress-4> {
tk::ScrollByUnits %W h -1
}
bind Pixmapscroll <Shift-Option-ButtonPress-5> {
tk::ScrollByUnits %W h 10
}
bind Pixmapscroll <Shift-Option-ButtonPress-4> {
tk::ScrollByUnits %W h -10
}
}
|