Tk Library Source Code

View Ticket
Login
Ticket UUID: 2970577
Title: add tooltip image support
Type: Patch Version: None
Submitter: r_zaumseil Created on: 2010-03-15 10:21:35
Subsystem: tklib :: tooltip Assigned To: hobbs
Priority: 5 Medium Severity:
Status: Open Last Modified: 2010-03-16 20:35:49
Resolution: None Closed By:
    Closed on:
Description:
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
    }
User Comments: r_zaumseil added on 2010-03-16 20:35:49:

File Added - 366968: tooltip.diff

Attachments: