audiamus / BookLibConnect

A standalone Audible downloader and decrypter
GNU General Public License v3.0
701 stars 40 forks source link

State image alt-text is just "image" #63

Closed MartinKlefas closed 1 year ago

MartinKlefas commented 2 years ago

I wasn't quite sure what each logo meant, and unfortunately when you mouse-over the status image it just says "image": Screenshot 2022-07-29 001004

audiamus commented 2 years ago

Yes, it's the default tooltip. I have not looked into column- or cell-specific custom tooltips for the underlying DataGridView control but will put it on the to-do list.

For the time being, here is a reference to all possible states and the associated icon:

public enum EConversionState {
    unknown,          // strikethru globe
    remote,           // globe
    download,         // globe with down arrow
    license_granted,  // key
    license_denied,   // strikethru key
    downloading,      // down arrow
    download_error,   // strikethru down arrow
    local_locked,     // lock closed
    unlocking,        // key over lock
    unlocking_failed, // strikethru key over lock
    local_unlocked,   // lock open
    exported,         // checkmark mauve
    converting,       // right arrow
    converted,        // checkmark green
    converted_unknown,// checkmark gray
    conversion_error  // strikethru right arrow
  }

(https://github.com/audiamus/BookLibConnect/blob/main/src/BooksDatabase.core/enums.cs)

audiamus commented 1 year ago

Meaningful tooltip added in version 0.11