2017-06-07 23:45:28 +00:00
|
|
|
#ifndef _SWAYBAR_TRAY_H
|
|
|
|
#define _SWAYBAR_TRAY_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "swaybar/tray/dbus.h"
|
|
|
|
#include "swaybar/tray/sni.h"
|
2017-06-08 04:32:48 +00:00
|
|
|
#include "swaybar/bar.h"
|
2017-06-07 23:45:28 +00:00
|
|
|
#include "list.h"
|
|
|
|
|
|
|
|
extern struct tray *tray;
|
|
|
|
|
|
|
|
struct tray {
|
|
|
|
list_t *items;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2017-06-08 04:32:48 +00:00
|
|
|
* Processes a mouse event on the bar
|
2017-06-07 23:45:28 +00:00
|
|
|
*/
|
2017-06-08 04:32:48 +00:00
|
|
|
void tray_mouse_event(struct output *output, int x, int y,
|
|
|
|
uint32_t button, uint32_t state);
|
|
|
|
|
|
|
|
uint32_t tray_render(struct output *output, struct config *config);
|
|
|
|
|
|
|
|
void tray_upkeep(struct bar *bar);
|
2017-06-07 23:45:28 +00:00
|
|
|
|
|
|
|
/**
|
2017-06-08 04:32:48 +00:00
|
|
|
* Initializes the tray with D-Bus
|
2017-06-07 23:45:28 +00:00
|
|
|
*/
|
2017-06-08 04:32:48 +00:00
|
|
|
void init_tray();
|
2017-06-07 23:45:28 +00:00
|
|
|
|
|
|
|
#endif /* _SWAYBAR_TRAY_H */
|