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
|
# tooltip.tcl --
#
# Balloon help
#
# Copyright (c) 1996-2007 Jeffrey Hobbs
# Copyright (c) 2024 Emmanuel Frecon, Rene Zaumseil
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# Initiated: 28 October 1996
package require Tk 8.5-
#------------------------------------------------------------------------
# PROCEDURE
# tooltip::tooltip
#
# DESCRIPTION
# Implements a tooltip (balloon help) system
#
# ARGUMENTS
# tooltip <option> ?arg?
#
# clear ?pattern?
# Stops the specified widgets (defaults to all) from showing tooltips.
#
# configure ?opt ?val opt val ...??
# Configure foreground, background and font.
#
# delay ?millisecs?
# Query or set the delay. The delay is in milliseconds and must
# be at least 50. Returns the delay.
#
# fade ?boolean?
# Enables or disables fading of the tooltip.
#
# disable OR off
# Disables all tooltips.
#
# enable OR on
# Enables tooltips for defined widgets.
#
# <widget> ?-heading columnId? ?-index index? ?-item(s) items? ?-tab tabId"
# ?-tag tag? ?message?
# * If -heading is specified, then <widget> is assumed to be a
# ttk::treeview widget and columnId specifies a column identifier.
# * If -index is specified, then <widget> is assumed to be a menu and
# index represents what index into the menu (either the numerical index
# or the label) to associate the tooltip message with.
# Tooltips do not appear for disabled menu items.
# * If -item(s) is specified, then <widget> is assumed to be a listbox,
# ttk::treeview or canvas and items specifies one or more items.
# * If -tab is specified, then <widget> is assumed to be a ttk::notebook
# and tabId specifies a tab identifier.
# * If -tag is specified, then <widget> is assumed to be a text and tag
# specifies a tag name.
# If message is {}, then the tooltip for that widget is removed.
# The widget must exist prior to calling tooltip. The current
# tooltip message for <widget> is returned, if any.
#
# RETURNS: varies (see methods above)
#
# NAMESPACE & STATE
# The namespace tooltip is used.
# Control toplevel name via ::tooltip::wname.
#
# EXAMPLE USAGE:
# tooltip .button "A Button"
# tooltip .menu -index "Load" "Loads a file"
#
#------------------------------------------------------------------------
# TkTooltipFont is defined in tk library/ttk/fonts.tcl
catch {font create TkTooltipFontItalic}
catch {font configure TkTooltipFontItalic \
{*}[font configure TkTooltipFont] -slant italic}
namespace eval ::tooltip {
namespace export -clear tooltip
variable tooltip
variable G
if {![info exists G]} {
array set G {
enabled 1
fade 1
FADESTEP 0.2
FADEID {}
DELAY 500
AFTERID {}
LAST -1
TOPLEVEL .__tooltip__
}
if {[tk windowingsystem] eq "x11"} {
set G(fade) 0 ; # don't fade by default on X11
}
}
# functional options
option add *Tooltip.Frame.highlightThickness 0
option add *Tooltip.Frame.relief solid
option add *Tooltip.Frame.borderWidth 1
option add *Tooltip*Label.highlightThickness 0
option add *Tooltip*Label.relief flat
option add *Tooltip*Label.borderWidth 0
option add *Tooltip*Label.padX 3p
option add *Tooltip*Label.padY 3p
# configurable options
option add *Tooltip.Frame.background lightyellow
option add *Tooltip*Label.background lightyellow
option add *Tooltip*Label.foreground black
option add *Tooltip*label.font TkTooltipFont ;# lowercase!
option add *Tooltip*info.font TkTooltipFontItalic
# The extra ::hide call in <Enter> is necessary to catch moving to
# child widgets where the <Leave> event won't be generated
bind Tooltip <Enter> [namespace code {
#tooltip::hide
variable tooltip
variable G
set G(LAST) -1
if {$G(enabled) && [info exists tooltip(%W)]} {
set G(AFTERID) \
[after $G(DELAY) [namespace code [list show %W $tooltip(%W) cursor]]]
}
}]
bind Menu <<MenuSelect>> [namespace code { menuMotion %W }]
bind Tooltip <Leave> [namespace code [list hide 1]] ; # fade ok
bind Tooltip <Any-KeyPress> [namespace code hide]
bind Tooltip <Any-Button> [namespace code hide]
}
proc ::tooltip::tooltip {w args} {
variable tooltip
variable G
switch -- $w {
clear {
if {[llength $args]==0} { set args .* }
clear [lindex $args 0]
}
delay {
if {[llength $args]} {
set millisecs [lindex $args 0]
##nagelfar ignore
if {![string is integer -strict $millisecs] || ($millisecs < 50)} {
return -code error "tooltip delay must be an integer\
greater than or equal to 50 (delay is in millisecs)"
}
return [set G(DELAY) $millisecs]
} else {
return $G(DELAY)
}
}
fade {
if {[llength $args]} {
set G(fade) [string is true -strict [lindex $args 0]]
}
return $G(fade)
}
off - disable {
set G(enabled) 0
hide
}
on - enable {
set G(enabled) 1
}
configure {
return [configure {*}$args]
}
default {
set i $w
if {[llength $args]} {
set i [uplevel 1 [namespace code [list register $w {*}$args]]]
}
set b $G(TOPLEVEL)
if {[info exists tooltip($i)]} { return $tooltip($i) }
}
}
}
proc ::tooltip::register {w args} {
variable tooltip
set key [lindex $args 0]
set img {}
set inf {}
while {[string match -* $key]} {
switch -- $key {
-- {
set args [lassign $args _ key]
break
}
-heading {
if {[winfo class $w] ne "Treeview"} {
return -code error "widget \"$w\" is not a ttk::treeview widget"
}
set args [lassign $args _ columnId]
}
-index {
if {[catch {
$w entrycget 1 -label
}]} {
return -code error "widget \"$w\" does not seem to be a\
menu, which is required for the -index switch"
}
set args [lassign $args _ index]
}
-item -
-items {
if {[winfo class $w] in {Listbox Treeview}} {
set args [lassign $args _ items]
} else {
set args [lassign $args _ namedItem]
if {[catch {
$w find withtag $namedItem
} items]} {
return -code error "widget \"$w\" is not a canvas, or\
item \"$namedItem\" does not exist in the canvas"
}
}
}
-tab {
if {[winfo class $w] ne "TNotebook"} {
return -code error "widget \"$w\" is not a ttk::notebook widget"
}
set args [lassign $args _ tabId]
if {[catch {
$w index $tabId
} tabIndex]} {
return -code error $tabIndex
} elseif {$tabIndex < 0 || $tabIndex >= [$w index end]} {
return -code error "tab index $tabId out of bounds"
}
set tabWin [lindex [$w tabs] $tabIndex]
}
-tag {
set args [lassign $args _ tag]
set r [catch {
lsearch -exact [$w tag names] $tag
} ndx]
if {$r || $ndx == -1} {
return -code error "widget \"$w\" is not a text widget or\
\"$tag\" is not a text tag"
}
}
-image {
set args [lassign $args _ img]
}
-info {
set args [lassign $args _ inf]
}
default {
return -code error "unknown option \"$key\":\
should be -heading, -image, -index, -info,\
-item(s), -tab, -tag or --"
}
}
set key [lindex $args 0]
}
if {[llength $args] != 1} {
return -code error "wrong # args: should be \"tooltip widget\
?-heading columnId? ?-image image? ?-index index? ?-info info?\
?-item(s) items? ?-tab tabId? ?-tag tag? ?--? message\""
}
if {$key eq ""} {
clear $w
} else {
if {![winfo exists $w]} {
return -code error "bad window path name \"$w\""
}
set details [list $key $img $inf]
if {[info exists columnId]} {
set tooltip($w,$columnId) $details
enableListbox $w $columnId
return $w,$columnId
} elseif {[info exists index]} {
set tooltip($w,$index) $details
return $w,$index
} elseif {[info exists items]} {
foreach item $items {
set tooltip($w,$item) $details
set class [winfo class $w]
if { $class eq "Listbox" || $class eq "Treeview"} {
enableListbox $w $item
} else {
enableCanvas $w $item
}
}
# Only need to return the first item for the purposes of
# how this is called
return $w,[lindex $items 0]
} elseif {[info exists tabWin]} {
set tooltip($w,$tabWin) $details
enableNotebook $w $tabWin
return $w,$tabWin
} elseif {[info exists tag]} {
set tooltip($w,t_$tag) $details
enableTag $w $tag
return $w,$tag
} else {
set tooltip($w) $details
# Note: Add the necessary bindings only once.
set tags [bindtags $w]
if {[lsearch -exact $tags "Tooltip"] == -1} {
bindtags $w [linsert $tags end "Tooltip"]
}
return $w
}
}
}
proc ::tooltip::createToplevel {} {
variable G
set b $G(TOPLEVEL)
if {[winfo exists $b]} { return }
toplevel $b -class Tooltip -borderwidth 0
if {[tk windowingsystem] eq "aqua"} {
::tk::unsupported::MacWindowStyle style $b help none
} else {
wm overrideredirect $b 1
}
catch {wm attributes $b -topmost 1}
# avoid the blink issue with 1 to <1 alpha on Windows
catch {wm attributes $b -alpha 0.99}
wm positionfrom $b program
wm withdraw $b
frame $b.f
label $b.f.label -justify left -compound left
label $b.f.info -justify left
grid $b.f
grid $b.f.label -sticky w
grid $b.f.info -sticky w
}
proc ::tooltip::configure {args} {
set len [llength $args]
if {$len >= 2 && ($len % 2) != 0} {
return -level 2 -code error "wrong # args. Should be\
\"tooltip configure ?opt ?val opt val ...??\""
}
variable G
set b $G(TOPLEVEL)
if {![winfo exists $b]} {
createToplevel
}
foreach opt {-foreground -background -font} {
set val [$b.f.label configure $opt]
set opts($opt) [lindex $val 4]
set defs($opt) [lindex $val 1]
lappend keys $opt
}
switch -- $len {
0 {
return [array get opts]
}
1 {
set key [lindex $args 0]
if {$key ni $keys} {
return -level 2 -code error "unknown option \"$key\""
} else {
return $opts($key)
}
}
default {
# allow -fg and -bg as aliases
lappend keys -fg -bg
set defs(-fg) $defs(-foreground)
set defs(-bg) $defs(-background)
foreach {key val} $args {
if {$key ni $keys} {
return -level 2 -code error "unknown option \"$key\""
}
if {[catch {
switch $key {
-background - -bg {
foreach widget [list $b.f $b.f.label $b.f.info] {
$widget configure $key $val
}
option add *Tooltip*Frame.$defs($key) $val
option add *Tooltip*Label.$defs($key) $val
}
-foreground - -fg {
foreach widget [list $b.f.label $b.f.info] {
$widget configure $key $val
}
option add *Tooltip*Label.$defs($key) $val
}
-font {
$b.f.label configure $key $val
option add *Tooltip*label.$defs($key) $val
catch {font configure TkTooltipFontItalic \
{*}[font actual $val] -slant italic}
$b.f.info configure $key TkTooltipFontItalic
}
}
} err]} {
return -level 2 -code error $err
}
}
}
}
}
proc ::tooltip::clear {{pattern .*}} {
variable tooltip
# cache the current widget at pointer
set ptrw [winfo containing {*}[winfo pointerxy .]]
foreach w [array names tooltip $pattern] {
unset tooltip($w)
if {[winfo exists $w]} {
set tags [bindtags $w]
set i [lsearch -exact $tags "Tooltip"]
if {$i != -1} {
bindtags $w [lreplace $tags $i $i]
}
## We don't remove TooltipMenu because there
## might be other indices that use it
# Withdraw the tooltip if we clear the current contained item
if {$ptrw eq $w} { hide }
}
}
}
proc ::tooltip::show {w msg {i {}}} {
if {![winfo exists $w]} { return }
# Use string match to allow that the help will be shown when
# the pointer is in any descendant of the desired widget
if {([winfo class $w] ne "Menu")
&& ![string match $w* [winfo containing {*}[winfo pointerxy $w]]]} {
return
}
variable G
after cancel $G(FADEID)
set b $G(TOPLEVEL)
if {![winfo exists $b]} {
createToplevel
}
lassign $msg text image infotext
$b.f.label configure -text $text -image $image
if {$infotext eq {}} {
grid remove $b.f.info
} else {
$b.f.info configure -text $infotext
grid $b.f.info
}
update idletasks
# Bail out if the widget went way during the idletasks
if {![winfo exists $w]} return
set screenw [winfo screenwidth $w]
set screenh [winfo screenheight $w]
set reqw [winfo reqwidth $b]
set reqh [winfo reqheight $b]
# When adjusting for being on the screen boundary, check that we are
# near the "edge" already, as Tk handles multiple monitors oddly
if {$i eq "cursor"} {
set py [winfo pointery $w]
set y [expr {$py + 20}]
# this is a wrong calculation?
# if {($y < $screenh) && ($y+$reqh) > $screenh} {}
if { ($y + $reqh) > $screenh } {
set y [expr {$py - $reqh - 5}]
}
} elseif {$i ne ""} {
# menu entry
set y [expr {[winfo rooty $w]+[winfo vrooty $w]+[$w yposition $i]+25}]
if {($y < $screenh) && ($y+$reqh) > $screenh} {
# show above if we would be offscreen
set y [expr {[winfo rooty $w]+[$w yposition $i]-$reqh-5}]
}
} else {
set y [expr {[winfo rooty $w]+[winfo vrooty $w]+[winfo height $w]+5}]
if {($y < $screenh) && ($y+$reqh) > $screenh} {
# show above if we would be offscreen
set y [expr {[winfo rooty $w]-$reqh-5}]
}
}
if {$i eq "cursor"} {
set x [winfo pointerx $w]
} else {
set x [expr {[winfo rootx $w]+[winfo vrootx $w]+
([winfo width $w]-$reqw)/2}]
}
# only readjust when we would appear right on the screen edge
if {$x<0 && ($x+$reqw)>0} {
set x 0
} elseif {($x < $screenw) && ($x+$reqw) > $screenw} {
set x [expr {$screenw-$reqw}]
}
if {[tk windowingsystem] eq "aqua"} {
set focus [focus]
}
# avoid the blink issue with 1 to <1 alpha on Windows, watch half-fading
catch {wm attributes $b -alpha 0.99}
# put toplevel placed outside the screen back into it, just a little below the top border.
if {$y < 0} { set y 10 }
wm geometry $b +$x+$y
wm deiconify $b
raise $b
if {[tk windowingsystem] eq "aqua" && $focus ne ""} {
# Aqua's help window steals focus on display
after idle [list focus -force $focus]
}
}
proc ::tooltip::menuMotion {w} {
variable G
if {$G(enabled)} {
variable tooltip
# Menu events come from a funny path, map to the real path.
set m [string map {"#" "."} [winfo name $w]]
set cur [$w index active]
# The next two lines (all uses of LAST) are necessary until the
# <<MenuSelect>> event is properly coded for Unix/(Windows)?
if {$cur == $G(LAST)} return
set G(LAST) $cur
# a little inlining - this is :hide
after cancel $G(AFTERID)
catch {wm withdraw $G(TOPLEVEL)}
if {[info exists tooltip($m,$cur)] || \
(![catch {
$w entrycget $cur -label
} cur] && \
[info exists tooltip($m,$cur)])} {
set G(AFTERID) [after $G(DELAY) \
[namespace code [list show $w $tooltip($m,$cur) cursor]]]
}
}
}
proc ::tooltip::hide {{fadeOk 0}} {
variable G
after cancel $G(AFTERID)
after cancel $G(FADEID)
if {$fadeOk && $G(fade)} {
fade $G(TOPLEVEL) $G(FADESTEP)
} else {
catch {wm withdraw $G(TOPLEVEL)}
}
}
proc ::tooltip::fade {w step} {
if {[catch {
wm attributes $w -alpha
} alpha] || $alpha <= 0.0} {
catch { wm withdraw $w }
catch { wm attributes $w -alpha 0.99 }
} else {
variable G
wm attributes $w -alpha [expr {$alpha-$step}]
set G(FADEID) [after 50 [namespace code [list fade $w $step]]]
}
}
proc ::tooltip::wname {{w {}}} {
variable G
if {[llength [info level 0]] > 1} {
# $w specified
if {$w ne $G(TOPLEVEL)} {
hide
destroy $G(TOPLEVEL)
set G(TOPLEVEL) $w
}
}
return $G(TOPLEVEL)
}
proc ::tooltip::listitemTip {w x y} {
variable tooltip
variable G
set G(LAST) -1
if {[winfo class $w] eq "Listbox"} {
set item [$w index @$x,$y]
} else {
switch [$w identify region $x $y] {
tree - cell {
set item [$w identify item $x $y]
}
heading - separator {
set item [$w column [$w identify column $x $y] -id]
}
default { set item "" }
}
}
if {$G(enabled) && [info exists tooltip($w,$item)]} {
set G(AFTERID) [after $G(DELAY) \
[namespace code [list show $w $tooltip($w,$item) cursor]]]
}
}
# Handle the lack of <Enter>/<Leave> between listbox/treeview items using <Motion>
proc ::tooltip::listitemMotion {w x y} {
variable tooltip
variable G
if {$G(enabled)} {
if {[winfo class $w] eq "Listbox"} {
set item [$w index @$x,$y]
} else {
switch [$w identify region $x $y] {
tree - cell { set item [$w identify item $x $y] }
heading - separator {
set item [$w column [$w identify column $x $y] -id]
}
default { set item "" }
}
}
if {$item ne $G(LAST)} {
set G(LAST) $item
after cancel $G(AFTERID)
catch {wm withdraw $G(TOPLEVEL)}
if {[info exists tooltip($w,$item)]} {
set G(AFTERID) [after $G(DELAY) \
[namespace code [list show $w $tooltip($w,$item) cursor]]]
}
}
}
}
# Initialize tooltip events for listbox/treeview widgets
proc ::tooltip::enableListbox {w args} {
if {[string match *listitemTip* [bind $w <Enter>]]} { return }
bind $w <Enter> +[namespace code [list listitemTip %W %x %y]]
bind $w <Motion> +[namespace code [list listitemMotion %W %x %y]]
bind $w <Leave> +[namespace code [list hide 1]] ; # fade ok
bind $w <Any-KeyPress> +[namespace code hide]
bind $w <Any-Button> +[namespace code hide]
}
proc ::tooltip::canvasitemTip {w args} {
variable tooltip
variable G
set G(LAST) -1
set item [$w find withtag current]
if {$G(enabled) && [info exists tooltip($w,$item)]} {
set G(AFTERID) [after $G(DELAY) \
[namespace code [list show $w $tooltip($w,$item) cursor]]]
}
}
proc ::tooltip::enableCanvas {w args} {
if {[string match *canvasitemTip* [$w bind all <Enter>]]} { return }
$w bind all <Enter> +[namespace code [list canvasitemTip $w]]
$w bind all <Leave> +[namespace code [list hide 1]] ; # fade ok
$w bind all <Any-KeyPress> +[namespace code hide]
$w bind all <Any-Button> +[namespace code hide]
}
proc ::tooltip::notebooktabTip {w x y} {
variable tooltip
variable G
set G(LAST) -1
set tabIndex [$w index @$x,$y]
set tabWin [lindex [$w tabs] $tabIndex]
if {$G(enabled) && [info exists tooltip($w,$tabWin)]} {
set G(AFTERID) [after $G(DELAY) \
[namespace code [list show $w $tooltip($w,$tabWin) cursor]]]
}
}
# Handle the lack of <Enter>/<Leave> between ttk::notebook items using <Motion>
proc ::tooltip::notebooktabMotion {w x y} {
variable tooltip
variable G
if {$G(enabled)} {
set tabIndex [$w index @$x,$y]
set tabWin [lindex [$w tabs] $tabIndex]
if {$tabWin ne $G(LAST)} {
set G(LAST) $tabWin
after cancel $G(AFTERID)
catch {wm withdraw $G(TOPLEVEL)}
if {[info exists tooltip($w,$tabWin)]} {
set G(AFTERID) [after $G(DELAY) \
[namespace code [list show $w $tooltip($w,$tabWin) cursor]]]
}
}
}
}
# Initialize tooltip events for ttk::notebook widgets
proc ::tooltip::enableNotebook {w args} {
if {[string match *notebooktabTip* [bind $w <Enter>]]} { return }
bind $w <Enter> +[namespace code [list notebooktabTip %W %x %y]]
bind $w <Motion> +[namespace code [list notebooktabMotion %W %x %y]]
bind $w <Leave> +[namespace code [list hide 1]] ; # fade ok
bind $w <Any-KeyPress> +[namespace code hide]
bind $w <Any-Button> +[namespace code hide]
}
proc ::tooltip::tagTip {w tag} {
variable tooltip
variable G
set G(LAST) -1
if {$G(enabled) && [info exists tooltip($w,t_$tag)]} {
if {[info exists G(AFTERID)]} { after cancel $G(AFTERID) }
set G(AFTERID) [after $G(DELAY) \
[namespace code [list show $w $tooltip($w,t_$tag) cursor]]]
# clear the 'Enter' binding. it is restored by `conditionally-hide` below.
$w tag bind $tag <Enter> ""
}
}
proc ::tooltip::enableTag {w tag} {
variable G
if {[string match *tagTip* [$w tag bind $tag]]} { return }
$w tag bind $tag <Enter> +[namespace code [list tagTip $w $tag]]
$w tag bind $tag <Leave> +[namespace code [list conditionally-hide $w $tag]] ; # fade ok
$w tag bind $tag <Any-KeyPress> +[namespace code hide]
$w tag bind $tag <Any-Button> +[namespace code hide]
# save the 'Enter' binding.
# this is cleared by `tagTip`, see above, and restored by `conditionally-hide` below.
set G(enterBinding,$w,$tag) [$w tag bind $tag <Enter>]
}
proc ::tooltip::conditionally-hide {w tag} {
variable G
# re-enable the 'Enter' binding. it is saved by `enableTag`, and cleared by `tagTip`.
$w tag bind $tag <Enter> $G(enterBinding,$w,$tag)
# have we really left ? if the cursor is _in_ the tooltip we haven't.
createToplevel
lassign [split [wm geometry $G(TOPLEVEL)] "x+"] w h xT yT
lassign [winfo pointerxy "."] x y
if {($x >= $xT) && ($x <= ($xT + $w)) &&
($y >= $yT) && ($y <= ($yT + $h))} return
hide 1
}
package provide tooltip 2.0.1
|