aboutsummaryrefslogtreecommitdiffstats
path: root/include/swaybar/bar.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/swaybar/bar.h')
-rw-r--r--include/swaybar/bar.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/swaybar/bar.h b/include/swaybar/bar.h
index f1ff25b2..1cecea71 100644
--- a/include/swaybar/bar.h
+++ b/include/swaybar/bar.h
@@ -29,10 +29,15 @@ enum x11_button {
29 FORWARD, 29 FORWARD,
30}; 30};
31 31
32enum hotspot_event_handling {
33 HOTSPOT_IGNORE,
34 HOTSPOT_PROCESS,
35};
36
32struct swaybar_hotspot { 37struct swaybar_hotspot {
33 struct wl_list link; 38 struct wl_list link;
34 int x, y, width, height; 39 int x, y, width, height;
35 void (*callback)(struct swaybar_output *output, 40 enum hotspot_event_handling (*callback)(struct swaybar_output *output,
36 int x, int y, enum x11_button button, void *data); 41 int x, int y, enum x11_button button, void *data);
37 void (*destroy)(void *data); 42 void (*destroy)(void *data);
38 void *data; 43 void *data;