diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-09-12 12:28:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-12 12:28:14 -0400 |
commit | dbaafdfac9057f718be406e972ba15651130e16e (patch) | |
tree | 33fcd285cc70a6cea257b1f3b6d24121d340a270 /include/swaybar/status_line.h | |
parent | af9e8f94cc0afb9f80e3902cbb83de78027cd737 (diff) | |
parent | 2eaef802061836dd83bbf753174fcb8488b2d8cd (diff) |
Merge pull request #2622 from ianyfan/i3bar-block-ref
i3bar: count references to blocks
Diffstat (limited to 'include/swaybar/status_line.h')
-rw-r--r-- | include/swaybar/status_line.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/swaybar/status_line.h b/include/swaybar/status_line.h index de9b98d7..150267cd 100644 --- a/include/swaybar/status_line.h +++ b/include/swaybar/status_line.h @@ -36,6 +36,7 @@ struct i3bar_protocol_state { struct i3bar_block { struct wl_list link; + int ref_count; char *full_text, *short_text, *align; bool urgent; uint32_t *color; @@ -73,7 +74,7 @@ void status_line_free(struct status_line *status); bool i3bar_handle_readable(struct status_line *status); enum hotspot_event_handling i3bar_block_send_click(struct status_line *status, struct i3bar_block *block, int x, int y, enum x11_button button); -void i3bar_block_free(struct i3bar_block *block); +void i3bar_block_unref(struct i3bar_block *block); enum x11_button wl_button_to_x11_button(uint32_t button); enum x11_button wl_axis_to_x11_button(uint32_t axis, wl_fixed_t value); |