tray: track SNI callbacks

This removes any pending messages once the item is destroyed.
Furthermore, this installs SNI event calbacks asynchronously
in order to prevent sd-bus from bypassing pending messages.
This commit is contained in:
Ian Fan 2020-03-09 11:09:25 +00:00 committed by Simon Ser
parent 68f53cd509
commit 65501f0e46
3 changed files with 47 additions and 31 deletions

View file

@ -14,6 +14,15 @@ struct swaybar_pixmap {
unsigned char pixels[];
};
struct swaybar_sni_slot {
struct wl_list link; // swaybar_sni::slots
struct swaybar_sni *sni;
const char *prop;
const char *type;
void *dest;
sd_bus_slot *slot;
};
struct swaybar_sni {
// icon properties
struct swaybar_tray *tray;
@ -37,9 +46,7 @@ struct swaybar_sni {
char *menu;
char *icon_theme_path; // non-standard KDE property
sd_bus_slot *new_icon_slot;
sd_bus_slot *new_attention_icon_slot;
sd_bus_slot *new_status_slot;
struct wl_list slots; // swaybar_sni_slot::link
};
struct swaybar_sni *create_sni(char *id, struct swaybar_tray *tray);