diff options
author | Peter Rice <[email protected]> | 2018-07-15 20:16:37 -0400 |
---|---|---|
committer | Peter Rice <[email protected]> | 2018-07-16 18:55:04 -0400 |
commit | 79a998849b8cedc9fccddfb31e4d1c99d1c17ff7 (patch) | |
tree | 1e2c2a54f588c4931cbf8b0cf2820029aee82bb4 /include/swaybar/bar.h | |
parent | b314a8f2cc792aa59d8f12e5adb9aed2967af646 (diff) |
make hotspot callback take an x11 button id
Diffstat (limited to 'include/swaybar/bar.h')
-rw-r--r-- | include/swaybar/bar.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/include/swaybar/bar.h b/include/swaybar/bar.h index af478f33..f1ff25b2 100644 --- a/include/swaybar/bar.h +++ b/include/swaybar/bar.h @@ -16,11 +16,24 @@ struct swaybar_pointer { int x, y; }; +enum x11_button { + NONE, + LEFT, + MIDDLE, + RIGHT, + SCROLL_UP, + SCROLL_DOWN, + SCROLL_LEFT, + SCROLL_RIGHT, + BACK, + FORWARD, +}; + struct swaybar_hotspot { struct wl_list link; int x, y, width, height; void (*callback)(struct swaybar_output *output, - int x, int y, uint32_t button, void *data); + int x, int y, enum x11_button button, void *data); void (*destroy)(void *data); void *data; }; |