summaryrefslogtreecommitdiffstats
path: root/include/swaybar/i3bar.h
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <RedSoxFan@users.noreply.github.com>2018-12-04 23:55:55 -0500
committerLibravatar GitHub <noreply@github.com>2018-12-04 23:55:55 -0500
commit6ccc836ebf282a1ffe5c19fb6ff2e2b55d2f21e6 (patch)
tree97290bcc79a26e09291d87c549afc1cb0392dabd /include/swaybar/i3bar.h
parentconfig: do not set $XDG_CONFIG_HOME if unset or empty (diff)
parentAdd relative coordinates in JSON for i3bar click events (diff)
downloadsway-6ccc836ebf282a1ffe5c19fb6ff2e2b55d2f21e6.tar.gz
sway-6ccc836ebf282a1ffe5c19fb6ff2e2b55d2f21e6.tar.zst
sway-6ccc836ebf282a1ffe5c19fb6ff2e2b55d2f21e6.zip
Merge pull request #3252 from hvenev/swaybar-rel
Add relative coordinates in JSON for i3bar click events
Diffstat (limited to 'include/swaybar/i3bar.h')
-rw-r--r--include/swaybar/i3bar.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/swaybar/i3bar.h b/include/swaybar/i3bar.h
index 3f1ecc25..ab4744a5 100644
--- a/include/swaybar/i3bar.h
+++ b/include/swaybar/i3bar.h
@@ -27,6 +27,7 @@ struct i3bar_block {
27void i3bar_block_unref(struct i3bar_block *block); 27void i3bar_block_unref(struct i3bar_block *block);
28bool i3bar_handle_readable(struct status_line *status); 28bool i3bar_handle_readable(struct status_line *status);
29enum hotspot_event_handling i3bar_block_send_click(struct status_line *status, 29enum hotspot_event_handling i3bar_block_send_click(struct status_line *status,
30 struct i3bar_block *block, int x, int y, enum x11_button button); 30 struct i3bar_block *block, int x, int y, int rx, int ry, int w, int h,
31 enum x11_button button);
31 32
32#endif 33#endif