2018-12-07 12:33:45 +00:00
|
|
|
#ifndef _SWAYBAR_TRAY_ITEM_H
|
|
|
|
#define _SWAYBAR_TRAY_ITEM_H
|
|
|
|
|
2018-12-07 12:37:33 +00:00
|
|
|
#include <cairo.h>
|
2018-12-07 12:33:45 +00:00
|
|
|
#include <stdbool.h>
|
2018-12-07 12:37:33 +00:00
|
|
|
#include <stdint.h>
|
2018-12-07 12:33:45 +00:00
|
|
|
#include "swaybar/tray/tray.h"
|
|
|
|
#include "list.h"
|
|
|
|
|
2018-12-07 12:37:33 +00:00
|
|
|
struct swaybar_output;
|
|
|
|
|
2018-12-07 12:33:45 +00:00
|
|
|
struct swaybar_pixmap {
|
|
|
|
int size;
|
|
|
|
unsigned char pixels[];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct swaybar_sni {
|
|
|
|
// icon properties
|
|
|
|
struct swaybar_tray *tray;
|
|
|
|
cairo_surface_t *icon;
|
|
|
|
int min_size;
|
|
|
|
int max_size;
|
|
|
|
|
|
|
|
// dbus properties
|
|
|
|
char *watcher_id;
|
|
|
|
char *service;
|
|
|
|
char *path;
|
|
|
|
char *interface;
|
|
|
|
|
|
|
|
char *status;
|
|
|
|
char *icon_name;
|
|
|
|
list_t *icon_pixmap; // struct swaybar_pixmap *
|
|
|
|
char *attention_icon_name;
|
|
|
|
list_t *attention_icon_pixmap; // struct swaybar_pixmap *
|
|
|
|
bool item_is_menu;
|
|
|
|
char *menu;
|
2018-12-17 23:52:15 +00:00
|
|
|
char *icon_theme_path; // non-standard KDE property
|
2019-01-04 11:57:18 +00:00
|
|
|
|
|
|
|
sd_bus_slot *new_icon_slot;
|
|
|
|
sd_bus_slot *new_attention_icon_slot;
|
|
|
|
sd_bus_slot *new_status_slot;
|
2018-12-07 12:33:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct swaybar_sni *create_sni(char *id, struct swaybar_tray *tray);
|
|
|
|
void destroy_sni(struct swaybar_sni *sni);
|
2018-12-07 12:37:33 +00:00
|
|
|
uint32_t render_sni(cairo_t *cairo, struct swaybar_output *output, double *x,
|
|
|
|
struct swaybar_sni *sni);
|
2018-12-07 12:33:45 +00:00
|
|
|
|
|
|
|
#endif
|