diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-30 17:45:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-30 17:45:43 -0500 |
commit | 82d6afc91d270f3761588b54a46b7f8fbbacaa3f (patch) | |
tree | df50d6f095cbeeb5256527245c5e1adeb51b6860 /include/swaybar/status_line.h | |
parent | 7553103e345c6fb65b18cf5bc18a60218f810b77 (diff) | |
parent | 2b927685cae73cb4e29e5c83f1fad5c906cb7857 (diff) |
Merge pull request #1336 from akokshar/master
click_events
Diffstat (limited to 'include/swaybar/status_line.h')
-rw-r--r-- | include/swaybar/status_line.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/swaybar/status_line.h b/include/swaybar/status_line.h index 9b77e8a7..0664ddee 100644 --- a/include/swaybar/status_line.h +++ b/include/swaybar/status_line.h @@ -13,6 +13,7 @@ struct status_line { list_t *block_line; const char *text_line; command_protocol protocol; + bool click_events; }; struct status_block { @@ -31,6 +32,10 @@ struct status_block { int border_bottom; int border_left; int border_right; + + // Set during rendering + int x; + int width; }; /** @@ -44,6 +49,11 @@ struct status_line *init_status_line(); bool handle_status_line(struct bar *bar); /** + * Handle mouse clicks. + */ +bool status_line_mouse_event(struct bar *bar, int x, int y, uint32_t button); + +/** * Free status line struct. */ void free_status_line(struct status_line *line); |