Tk Library Source Code

Ticket Change Details
Login
Overview

Artifact ID: a0f553d97c39ddbabc3b0a88ab8f3dc017cbb89dfc1ebd7cba1817ad738117ea
Ticket: 2970577fffffffffffffffffffffffffffffffff
add tooltip image support
User & Date: aku 2024-05-05 13:24:25
Changes

  1. assignee changed to: "aku"
  2. closer changed to: "nobody"
  3. 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
        }
    
  4. login: "aku"
  5. mimetype: "text/plain"
  6. severity changed to: "Minor"