Overview
Artifact ID: | a0f553d97c39ddbabc3b0a88ab8f3dc017cbb89dfc1ebd7cba1817ad738117ea |
---|---|
Ticket: | 2970577fffffffffffffffffffffffffffffffff
add tooltip image support |
User & Date: | aku 2024-05-05 13:24:25 |
Changes
- assignee changed to: "aku"
- closer changed to: "nobody"
- comment changed to:
Tooltip can only display text. With the following code in tooltip::show we can also display images and bitmaps. The user has to provide a valid image/bitmap instead of the message argument. # Use late-binding msgcat (lazy translation) to support programs # that allow on-the-fly l10n changes if {[catch {set type [image type $msg]}]} { $b.label configure -text [::msgcat::mc $msg] -justify left } elseif {$type eq {bitmap}} { $b.label configure -bitmap $msg -justify left } else { $b.label configure -image $msg -justify left }
- login: "aku"
- mimetype: "text/plain"
- severity changed to: "Minor"