The baltip v1.5.1 is a tooltip widget.
Note that baltip is contained in apave package as sort of subpackage. So, having installed apave, you need not to install baltip to use it independently.
The baltip was inspired by:
The original code of the mentioned pages has been modified to make the tip:
The video introduction to baltip is presented by its demo (17 Mb).
Below are several pictures just to glance at baltip.
Under the mouse pointer. By default, the tips are displayed just under the mouse pointer.
Under the widget. This button's tip is configured to be just under the button. As well as the text's tip.
This feature is well fit for widgets positioned in a row (e.g. in toolbar, tabbar etc.).
Tips of text tags. The text tags can have their own tips.
The tags of canvas have tips too.
Tips of menu items. The menu items can have their own tips. The popup menus may be tear-off at that.
The menu tips are useful e.g. when the items are displayed as short names, while the tips are wanted to be full names.
Label of danger. The labels are also tipped. This one is configured to be an alert shown "eternally" (i.e. till hovering over it).
The tabs of notebook are also supplied with tips.
The listbox can have tips per item as well as for a whole listbox widget.
The treeview can have tips per item and/or column as well as for a whole treeview widget.
The -command option allows to display tips in a status bar instead of a balloon.
Configurable tips. The tip configuration can be global or local (for a specific tip).
The configuring can include: font, colors, paddings, border, relief, exposition time, opacity, image (with -compound), bell.
Balloon. The balloon messages aren't related to any widgets. This one is configurated to appear at the top right corner, disappearing after a while.
The baltip usage is rather straightforward. Firstly we need package require:
lappend auto_path "dir_of_baltip" package require baltip
Then we set tips with ::baltip::tip command for each appropriate widget:
::baltip::tip widgetpath text ?-option value? # or this way: ::baltip tip widgetpath text ?-option value?
For example, having a button .win.but1, we can set its tip this way:
::baltip tip .win.but1 "It's a tip.\n2nd line of it.\n3rd."
To get all or specific settings of baltip:
::baltip::cget ?-option? # or this way: ::baltip cget ?-option?
To set some options:
::baltip::configure -option value ?-option value? # or this way: ::baltip config -option value ?-option value?
Note: the options set with configure command are global, i.e. active for all tips. The options set with tip command are local, i.e. active for the specific tip.
To disable all tips:
::baltip::configure -on false
To disable some specific tip:
::baltip::tip widgetpath "" # or this way: ::baltip::tip widgetpath "old tip" -on false
To hide some specific (suspended) tip by force:
::baltip::hide widgetpath
To update a tip's text and options:
::baltip::update widgetpath text ?options?
When you click on a widget with its tip being displayed, the tip is hidden. It is the default behavior of baltip, but sometimes you need to re-display the hidden tip. If the widget is a button, you can include the following command in -command of the button:
::baltip::repaint widgetpath
The "text" for listbox can contain %i wildcard - and in such cases the text means a callback receiving a current index of item to tip:
proc ::lbxTip {idx} { set item [lindex $::lbxlist $idx] return "Tip for \"$item\"\nindex=$idx" } ::baltip tip .listbox {::lbxTip %i}
The "text" for treeview can contain %i and/or %c wildcards - and in such cases the text means a callback receiving ID of item and/or column of item to tip:
proc ::treTip {id c} { set item [.treeview item $id -text] return "Tip for \"$item\"\nID=$id, column=$c" } ::baltip::tip .treeview {::treTip %i %c}
If a tip for listbox and treeview widgets doesn't contain %i nor %c, it means a usual tip for a whole widget. At that, if those wildcards still need to be displayed, use %%i and %%c instead.
If you need to switch between "per item" and "per widget" tip of listbox and treeview , use ::baltip::tip with -reset yes option:
::baltip::tip .treeview {Common tip} -reset yes ;# sets a usual tip ::baltip::tip .treeview {::treTip %i %c} -reset yes ;# sets a callback
Some GUI objects (notebook tabs, listbox items, treeview items) have not <Enter> nor <Leave> event bindings, so that those bindings are imitated by baltip. Hence a problem with popup menus: when you right-click those GUI objects, baltip::tip and tk_popup might both fire, which results in a mess.
To avoid this, use ::baltip::sleep before tk_popup, for example:
::baltip::sleep 1000 ;# disables tips for 1000 milliseconds tk_popup $popupmenu $X $Y ;# calls a popup menu at $X $Y coordinates
As for tablelist widget, I would like to cite an advice by Csaba Nemethi :
The support for tablelist is a special case, don't waste your time with it. I have already tested that the built-in tooltip support of Tablelist will work just fine when replacing tklib's tooltip package with baltip (after fixing the reported bugs), and I intend to extend the description of the -tooltipaddcommand option by hints showing how to use this option with baltip instead of BWidget and tklib's tooltip.
The normal tip has no -geometry option because it's calculated by baltip, to position the tip under its host widget.
By means of -geometry option you get a balloon message unrelated to any visible widget: it's parented by the toplevel window. The -geometry option has +X+Y form where X and Y are coordinates of the balloon.
For example:
::baltip::tip .win "It's a balloon at +1+100 (+X+Y) coordinates" \ -geometry +1+100 -font {-weight bold -size 12} \ -alpha 0.8 -fg white -bg black -per10 3000 -pause 1500 -fade 1500
The -pause and -fade options make the balloon fade at appearing and disappearing. The -per10 option defines the balloon's duration: the more the longer.
The -geometry value can include W and H wildcards meaning the width and the height of the balloon. This may be useful when you need to show a balloon at a window's edge and should use the balloon's dimensions which are available only after its creation. The X and Y coordinates are calculated by baltip as normal expressions. Of course, they should not include the "+" divider, but this restriction (if any) is easily overcome.
For example:
lassign [split [winfo geometry .win] x+] w h x y set geom "+([expr {$w+$x}]-W-4)+$y" set text "The balloon at the right edge of the window" ::baltip tip .win $text -geometry $geom -pause 2000 -fade 2000
The "-command" option allows to display tips in other places, for example in a status bar. At that, the command can include %t and %w wildcards, meaning "text" and "widget path". Such tips are well fit for menu items, as seen in test.tcl.
For example:
proc ::Status {tip} { .labelstatus configure -text $tip } ::baltip::tip .menu "File actions" -index 0 -command {::Status {%t}} ::baltip::tip .menu "Help, hints, Q&A, about etc." -index 1 -command {::Status {%t}}
Also, this option can be used if you need to fire some code when the mouse pointer enters or leaves a GUI object.
Note: the baltip is available for a few of GUI objects that have not <Enter> nor <Leave> bindings.
The only line
baltip::tip $w $tip -command $command
might save you other lines to fire the command at entering/leaving a GUI object. E.g. the command might highlight a GUI object entered, save its ID and unhighlight the object at leaving it.
For example:
proc ::SomeProc {tip} { lassign [split $tip] obj ID column if {[info exists ::OBJsaved]} { puts "$::OBJsaved object ID=[set ::IDsaved] is left... unhighlighted..." unset ::OBJsaved } if {$obj eq {}} return set ::OBJsaved $obj set ::IDsaved $ID puts "Now processing $obj object with ID=$ID column=$column" } ::baltip::tip .listbox {Listbox %i} -command {::SomeProc {%t}} ::baltip::tip .treeview {Treeview %i %c} -command {::SomeProc {%t}}
Below are listed the baltip options that are set with tip and configure and got with cget:
The following options are special:
If -global yes option is used alone, it applies all global options to all registered tips. If -global yes option is used along with other options, only those options are applied to all registered tips.
Of course, all global options will be applied to all tips to be created after ::baltip configuration. For example:
::baltip config -global yes ;# applies all global options to all registered and to-be-created tips ::baltip config -global yes -per10 2000 ;# applies `-per10` to all registered and to-be-created tips
The -index option may have numeric (0, 1, 2...) or symbolic form (active, end, none) to indicate a menu entry, e.g. in -command option of a widget's configuration. For example:
::baltip repaint .win.popupMenu -index active ::baltip::tip .menu "File actions" -index 0
There may be useful to define options in text argument of ::baltip::tip.
For this, provide the text argument as a list of pairs of uppercased options' name / value including -BALTIP option for tip. For example:
::baltip tip .text "-BALTIP {Sort of diary, todos etc.} -MAXEXP 1"
As seen in the above examples, baltip can be used as Tcl ensemble, so that the commands may be shortened.
See more examples of use in test.tcl of baltip.zip .
Also, you can test baltip with test2_pave.tcl of apave package .
The baltip package has been developed with the active help from:
rz - 2021-12-09 12:31:01
Very nice widget. Imho better then tooltip in tcllib. Could we get it into tcllib?
aplsimple - 2021-12-15
Thanks for your kind words. Still, baltip in tklib is probably not a good idea. Two reasons: 1) it wasn't tested in MacOS 2) to have baltip instead of tooltip, it's enough to replace tooltip's procedures with ones calling baltip's; this way the backward compatibility would be ensured.
That said, I'll give thanks to anyone who drop me a note of how baltip behaves on Macs. Also, I'll include a script replacing tooltip's procedures with baltip's, in a future version.
nicolas - 2021-12-15 I've tested baltip on macOS and it works very fine
aplsimple - 2021-12-15 Nicolas, aren't you impossible? Thank you very much!