diff options
| author | Drew DeVault <[email protected]> | 2018-09-28 16:44:35 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2018-09-28 16:44:35 +0200 | 
| commit | ca7084cb52bd5a27a847e43320490b7a5ee5ef73 (patch) | |
| tree | 9e9da5790b1fd66f13ab89b70570750081b36c45 /include/swaybar/i3bar.h | |
| parent | 02df1e2b1b4306481f8e1023d99fb568095a89b3 (diff) | |
| parent | 25e1f327386c5c8d0b2839d03e2d833e71dc9e61 (diff) | |
Merge pull request #2723 from ianyfan/swaybar
swaybar: small fixes and clean-ups
Diffstat (limited to 'include/swaybar/i3bar.h')
| -rw-r--r-- | include/swaybar/i3bar.h | 34 | 
1 files changed, 34 insertions, 0 deletions
| diff --git a/include/swaybar/i3bar.h b/include/swaybar/i3bar.h new file mode 100644 index 00000000..12d9b317 --- /dev/null +++ b/include/swaybar/i3bar.h @@ -0,0 +1,34 @@ +#ifndef _SWAYBAR_I3BAR_H +#define _SWAYBAR_I3BAR_H + +#include "bar.h" +#include "status_line.h" + +struct i3bar_block { +	struct wl_list link; +	int ref_count; +	char *full_text, *short_text, *align; +	bool urgent; +	uint32_t *color; +	int min_width; +	char *name, *instance; +	bool separator; +	int separator_block_width; +	bool markup; +	// Airblader features +	uint32_t background; +	uint32_t border; +	int border_top; +	int border_bottom; +	int border_left; +	int border_right; +}; + +void i3bar_block_unref(struct i3bar_block *block); +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); +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); + +#endif | 
