summaryrefslogtreecommitdiffstats
path: root/include/swaybar/tray
diff options
context:
space:
mode:
Diffstat (limited to 'include/swaybar/tray')
-rw-r--r--include/swaybar/tray/dbus.h18
-rw-r--r--include/swaybar/tray/icon.h16
-rw-r--r--include/swaybar/tray/sni.h81
-rw-r--r--include/swaybar/tray/sni_watcher.h10
-rw-r--r--include/swaybar/tray/tray.h26
5 files changed, 151 insertions, 0 deletions
diff --git a/include/swaybar/tray/dbus.h b/include/swaybar/tray/dbus.h
new file mode 100644
index 00000000..eb9cfea7
--- /dev/null
+++ b/include/swaybar/tray/dbus.h
@@ -0,0 +1,18 @@
1#ifndef _SWAYBAR_DBUS_H
2#define _SWAYBAR_DBUS_H
3
4#include <stdbool.h>
5#include <dbus/dbus.h>
6extern DBusConnection *conn;
7
8/**
9 * Should be called in main loop to dispatch events
10 */
11void dispatch_dbus();
12
13/**
14 * Initializes async dbus communication
15 */
16int dbus_init();
17
18#endif /* _SWAYBAR_DBUS_H */
diff --git a/include/swaybar/tray/icon.h b/include/swaybar/tray/icon.h
new file mode 100644
index 00000000..1cc6ff9c
--- /dev/null
+++ b/include/swaybar/tray/icon.h
@@ -0,0 +1,16 @@
1#ifndef _SWAYBAR_ICON_H
2#define _SWAYBAR_ICON_H
3
4#include <stdint.h>
5#include <stdbool.h>
6#include <client/cairo.h>
7
8/**
9 * Returns the image found by `name` that is closest to `size`
10 */
11cairo_surface_t *find_icon(const char *name, int size);
12
13/* Struct used internally only */
14struct subdir;
15
16#endif /* _SWAYBAR_ICON_H */
diff --git a/include/swaybar/tray/sni.h b/include/swaybar/tray/sni.h
new file mode 100644
index 00000000..83809b2d
--- /dev/null
+++ b/include/swaybar/tray/sni.h
@@ -0,0 +1,81 @@
1#ifndef _SWAYBAR_SNI_H
2#define _SWAYBAR_SNI_H
3
4#include <stdbool.h>
5#include <client/cairo.h>
6
7struct StatusNotifierItem {
8 /* Name registered to sni watcher */
9 char *name;
10 /* Unique bus name, needed for determining signal origins */
11 char *unique_name;
12 bool kde_special_snowflake;
13
14 cairo_surface_t *image;
15 bool dirty;
16};
17
18/* Each output holds an sni_icon_ref of each item to render */
19struct sni_icon_ref {
20 cairo_surface_t *icon;
21 struct StatusNotifierItem *ref;
22};
23
24struct sni_icon_ref *sni_icon_ref_create(struct StatusNotifierItem *item,
25 int height);
26
27void sni_icon_ref_free(struct sni_icon_ref *sni_ref);
28
29/**
30 * Will return a new item and get its icon. (see warning below)
31 */
32struct StatusNotifierItem *sni_create(const char *name);
33
34/**
35 * `item` must be a struct StatusNotifierItem *
36 * `str` must be a NUL terminated char *
37 *
38 * Returns 0 if `item` has a name of `str`
39 */
40int sni_str_cmp(const void *item, const void *str);
41
42/**
43 * Returns 0 if `item` has a unique name of `str` or if
44 * `item->unique_name == NULL`
45 */
46int sni_uniq_cmp(const void *item, const void *str);
47
48/**
49 * Gets an icon for the given item if found.
50 *
51 * XXX
52 * This function keeps a reference to the item until it gets responses, make
53 * sure that the reference and item are valid during this time.
54 */
55void get_icon(struct StatusNotifierItem *item);
56
57/**
58 * Calls the "activate" method on the given StatusNotifierItem
59 *
60 * x and y should be where the item was clicked
61 */
62void sni_activate(struct StatusNotifierItem *item, uint32_t x, uint32_t y);
63
64/**
65 * Asks the item to draw a context menu at the given x and y coords
66 */
67void sni_context_menu(struct StatusNotifierItem *item, uint32_t x, uint32_t y);
68
69/**
70 * Calls the "secondary activate" method on the given StatusNotifierItem
71 *
72 * x and y should be where the item was clicked
73 */
74void sni_secondary(struct StatusNotifierItem *item, uint32_t x, uint32_t y);
75
76/**
77 * Deconstructs `item`
78 */
79void sni_free(struct StatusNotifierItem *item);
80
81#endif /* _SWAYBAR_SNI_H */
diff --git a/include/swaybar/tray/sni_watcher.h b/include/swaybar/tray/sni_watcher.h
new file mode 100644
index 00000000..25ddfcd2
--- /dev/null
+++ b/include/swaybar/tray/sni_watcher.h
@@ -0,0 +1,10 @@
1#ifndef _SWAYBAR_SNI_WATCHER_H
2#define _SWAYBAR_SNI_WATCHER_H
3
4/**
5 * Starts the sni_watcher, the watcher is practically a black box and should
6 * only be accessed though functions described in its spec
7 */
8int init_sni_watcher();
9
10#endif /* _SWAYBAR_SNI_WATCHER_H */
diff --git a/include/swaybar/tray/tray.h b/include/swaybar/tray/tray.h
new file mode 100644
index 00000000..7d371008
--- /dev/null
+++ b/include/swaybar/tray/tray.h
@@ -0,0 +1,26 @@
1#ifndef _SWAYBAR_TRAY_H
2#define _SWAYBAR_TRAY_H
3
4#include <stdint.h>
5#include <stdbool.h>
6#include "swaybar/tray/dbus.h"
7#include "swaybar/tray/sni.h"
8#include "list.h"
9
10extern struct tray *tray;
11
12struct tray {
13 list_t *items;
14};
15
16/**
17 * Initializes the tray host with D-Bus
18 */
19int init_tray();
20
21/**
22 * Returns an item if `x` and `y` collide with it and NULL otherwise
23 */
24struct StatusNotifierItem *collides_with_sni(int x, int y);
25
26#endif /* _SWAYBAR_TRAY_H */