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
|
[comment {-*- tcl -*- doctools manpage}]
[vset VERSION 2.0.1]
[manpage_begin tooltip n [vset VERSION]]
[keywords balloon]
[keywords help]
[keywords hover]
[keywords tooltip]
[copyright {1996-2008, Jeffrey Hobbs}]
[copyright {2024 Emmanuel Frecon}]
[moddesc {Tooltip management}]
[titledesc {Tooltip management}]
[require Tcl 8.5]
[require tooltip [opt [vset VERSION]]]
[description]
[para]
This package provides tooltips, i.e., small text messages that can be displayed
when the mouse hovers over a widget, menu item, canvas item, listbox item,
ttk::treeview item or column heading, ttk::notebook tab, or text widget tag.
[section {COMMANDS}]
[list_begin definitions]
[call [cmd ::tooltip::tooltip] [arg command] [opt [arg options]]]
Manage the tooltip package using the following subcommands.
[list_begin options]
[opt_def clear [opt [arg pattern]]]
Prevents the specified widgets from showing tooltips. [arg pattern]
is a glob pattern and defaults to matching all widgets.
[opt_def configure [opt "[arg option] [opt "[arg "value option value"] ..."]"]]
Queries or modifies the configuration options of the tooltip. The supported
options are [option -backgroud], [option -foreground] and [option -font]. If no
[arg option] is specified, returns a dictionary of the option values. If one
[arg option] is specified with no value, returns the value of that option.
Otherwise, sets the given [arg option]s to the corresponding [arg value]s.
[opt_def delay [opt [arg millisecs]]]
Query or set the hover delay. This is the interval that the pointer must remain
over the widget before the tooltip is displayed. The delay is specified in
milliseconds and must be greater than or equal to 50 ms.
With no argument the current delay is returned.
[opt_def fade [opt [arg boolean]]]
Enable or disable fading of the tooltip. The fading is enabled by default on
Win32 and Aqua. The tooltip will fade away on Leave events instead
disappearing.
[opt_def disable]
[opt_def off]
Disable all tooltips
[opt_def enable]
[opt_def on]
Enables tooltips for defined widgets.
[list_end]
[para]
[call [cmd ::tooltip::tooltip] [arg pathName] [opt [arg "option value"]...] \
[opt [const --]] [arg message]]
This command arranges for widget [arg pathName] to display a tooltip with a
[arg message].
[para] If the specified widget is a [cmd menu], [cmd canvas], [cmd listbox],
[cmd ttk::treeview], [cmd ttk::notebook] or [cmd text] widget then additional
options are used to tie the tooltip to specific menu, canvas or listbox items,
ttk::treeview items or column headings, ttk::notebook tabs, or text widget tags.
[list_begin options]
[opt_def -heading [arg columnId]]
This option is used to set a tooltip for a ttk::treeview column heading.
The column does not need to already exist. You should not use the same
identifiers for columns and items in a widget for which you are using tooltips
as their tooltips will be mixed. The widget must be a ttk::treeview widget.
[opt_def -image [arg image]]
The specified (photo) image will be displayed to the left of the primary
tooltip [arg message].
[opt_def -index [arg index]]
This option is used to set a tooltip on a menu item. The index may be
either the entry index or the entry label. The widget must be a menu
widget but the entries do not have to exist when the tooltip is set.
[opt_def -info [arg info]]
The specified [arg info] text will be displayed as additional information
below the primary tooltip [arg message].
[opt_def -items [arg items]]
This option is used to set a tooltip for canvas, listbox or ttk::treview items.
For the canvas widget, the item must already be present in the canvas and will
be found with a [cmd "find withtag"] lookup.
For listbox and ttk::treview widgets the item(s) may be created later but the
programmer is responsible for managing the link between the listbox or
ttk::treview item index and the corresponding tooltip. If the listbox or
ttk::treview items are re-ordered, the tooltips will need amending.
[para]
If the widget is not a canvas, listbox or ttk::treview then an error is raised.
[opt_def -tab [arg tabId]]
The [option -tab] option can be used to set a tooltip for a ttk::notebook tab.
The tab should already be present when this command is called, or an error will
be returned. The widget must be a ttk::notebook widget.
[opt_def -tag [arg name]]
The [option -tag] option can be used to set a tooltip for a text widget tag.
The tag should already be present when this command is called, or an error will
be returned. The widget must be a text widget.
[opt_def --]
The [option --] option marks the end of options.
The argument following this one will be treated as [arg message] even if it
starts with a [const -].
[list_end]
[list_end]
[section EXAMPLE]
[example {
# Demonstrate widget tooltip
package require tooltip
pack [label .l -text "label"]
tooltip::tooltip .l "This is a label widget"
}]
[example {
# Demonstrate menu tooltip
package require tooltip
. configure -menu [menu .menu]
.menu add cascade -label Test -menu [menu .menu.test -tearoff 0]
.menu.test add command -label Tooltip
tooltip::tooltip .menu.test -index 0 "This is a menu tooltip"
}]
[example {
# Demonstrate canvas item tooltip
package require tooltip
pack [canvas .c]
set item [.c create rectangle 10 10 80 80 -fill red]
tooltip::tooltip .c -item $item "Canvas item tooltip"
}]
[example {
# Demonstrate listbox item tooltip
package require tooltip
pack [listbox .lb]
.lb insert 0 "item one"
tooltip::tooltip .lb -item 0 "Listbox item tooltip"
}]
[example {
# Demonstrate ttk::notebook tab tooltip
package require tooltip
pack [ttk::notebook .nb]
.nb add [frame .nb.f1 -height 50] -text "First tab"
.nb add [frame .nb.f2 -height 50] -text "Second tab"
tooltip::tooltip .nb -tab 0 "Tooltip for the 1st notebook tab"
tooltip::tooltip .nb -tab 1 "Tooltip for the 2nd notebook tab"
}]
[example {
# Demonstrate text tag tooltip
package require tooltip
pack [text .txt]
.txt tag configure TIP-1 -underline 1
tooltip::tooltip .txt -tag TIP-1 "tooltip one text"
.txt insert end "An example of a " {} "tooltip" TIP-1 " tag.\n" {}
}]
[section {Migration from Version 1}]
Version 1.3 to 1.7 called [cmd msgcat::mc] before a tooltip was shown,
using the tooltip namespace.
[cmd msgcat::mc] requires the caller environment.
Due to that, version 1.8 recorded the caller namespace and used this
in the call.
In version 2.0, any [cmd msgcat::mc] support was removed.
The options [option -namespace], [option -msgargs] and [option -infoargs]
were removed.
Starting with TCL 8.7, [cmd msgcat::mc] supports oo classes and oo methods.
But the oo caller environment is not present when the [cmd msgcat::mc] was
invoked on tooltip display, resulting in runtime errors.
It was concluded as bad design to call [cmd msgcat::mc] late.
The caller should reinstall the tooltips on eventual message change.
[vset CATEGORY tooltip]
[include ../../support/devel/doc/feedback.inc]
[manpage_end]
|