diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-13 20:41:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-13 20:41:05 -0500 |
commit | 81bb6752748436788418c2fa3e7bef775c42c262 (patch) | |
tree | f90b770d160cf5ca773a3d63d52311f7ba731b16 /swaybar/render.c | |
parent | 9f9ef761753e11235c85c232e7521506cfea512d (diff) | |
parent | 3d6440ec26f2b39c54fd03aa3a3c822a8a2bbc72 (diff) |
Merge pull request #3344 from RedSoxFan/bar-mouse-bindings-improved
Improve mouse button parsing: bar mouse bindings
Diffstat (limited to 'swaybar/render.c')
-rw-r--r-- | swaybar/render.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/swaybar/render.c b/swaybar/render.c index 12dd3b07..55f680ed 100644 --- a/swaybar/render.c +++ b/swaybar/render.c @@ -1,5 +1,6 @@ #define _POSIX_C_SOURCE 200809L #include <assert.h> +#include <linux/input-event-codes.h> #include <limits.h> #include <stdlib.h> #include <stdint.h> @@ -129,13 +130,13 @@ static void render_sharp_line(cairo_t *cairo, uint32_t color, } } -static enum hotspot_event_handling block_hotspot_callback(struct swaybar_output *output, - struct swaybar_hotspot *hotspot, - int x, int y, enum x11_button button, void *data) { +static enum hotspot_event_handling block_hotspot_callback( + struct swaybar_output *output, struct swaybar_hotspot *hotspot, + int x, int y, uint32_t button, void *data) { struct i3bar_block *block = data; struct status_line *status = output->bar->status; - return i3bar_block_send_click(status, block, x, y, x - hotspot->x, y - hotspot->y, - hotspot->width, hotspot->height, button); + return i3bar_block_send_click(status, block, x, y, x - hotspot->x, + y - hotspot->y, hotspot->width, hotspot->height, button); } static void i3bar_block_unref_callback(void *data) { @@ -366,10 +367,10 @@ static uint32_t render_binding_mode_indicator(cairo_t *cairo, return output->height; } -static enum hotspot_event_handling workspace_hotspot_callback(struct swaybar_output *output, - struct swaybar_hotspot *hotspot, - int x, int y, enum x11_button button, void *data) { - if (button != LEFT) { +static enum hotspot_event_handling workspace_hotspot_callback( + struct swaybar_output *output, struct swaybar_hotspot *hotspot, + int x, int y, uint32_t button, void *data) { + if (button != BTN_LEFT) { return HOTSPOT_PROCESS; } ipc_send_workspace_command(output->bar, (const char *)data); |