#ifndef TRAY_H #define TRAY_H #include "watcher.h" #include #include #include typedef void (*TrayNotifyCb)(void *data); typedef struct { pixman_image_t *image; struct fcft_font *font; uint32_t *scheme; TrayNotifyCb cb; Watcher *watcher; void *monitor; int height; int spacing; struct wl_list link; } Tray; Tray *createtray (void *monitor, int height, int spacing, uint32_t *colorscheme, const char **fonts, const char *fontattrs, TrayNotifyCb cb, Watcher *watcher); void destroytray (Tray *tray); int tray_get_width (const Tray *tray); int tray_get_icon_width (const Tray *tray); void tray_update (Tray *tray); void tray_leftclicked (Tray *tray, unsigned int index); void tray_rightclicked (Tray *tray, unsigned int index, const char **menucmd); #endif /* TRAY_H */