summaryrefslogtreecommitdiffstats
path: root/include/swaybar/bar.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-07-20 11:45:47 -0400
committerLibravatar GitHub <noreply@github.com>2018-07-20 11:45:47 -0400
commitb642d47c7f1f61993edd20200298fe971f636bbb (patch)
treebec87e642ae380995b5addc12624b83600489a60 /include/swaybar/bar.h
parentMerge pull request #2316 from RyanDwyer/fix-floating-pointer-events (diff)
parentswaybar: Fix scroll handling on workspace buttons (diff)
downloadsway-b642d47c7f1f61993edd20200298fe971f636bbb.tar.gz
sway-b642d47c7f1f61993edd20200298fe971f636bbb.tar.zst
sway-b642d47c7f1f61993edd20200298fe971f636bbb.zip
Merge pull request #2313 from minus7/swaybar-hotspot-input-fix
swaybar: Fix scroll handling on workspace buttons
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;