diff options
| author | emersion <[email protected]> | 2018-07-18 00:16:15 +0100 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2018-07-18 00:16:15 +0100 | 
| commit | 48b911a4596f50b585a1073d32413236d9defb60 (patch) | |
| tree | a225ff763a647e669cb8c7962b0bc333a8cf86a7 /include/swaybar | |
| parent | bec982bba62db39f734d21ffbd2a3c8cefb3f6bd (diff) | |
| parent | e43c20134ab48ab36391443860cbdf4ac67d8348 (diff) | |
Merge pull request #2281 from pvsr/X11_click
Send clicks to swaybar blocks as X11 button ids
Diffstat (limited to 'include/swaybar')
| -rw-r--r-- | include/swaybar/bar.h | 15 | ||||
| -rw-r--r-- | include/swaybar/status_line.h | 4 | 
2 files changed, 17 insertions, 2 deletions
| diff --git a/include/swaybar/bar.h b/include/swaybar/bar.h index af478f33..f1ff25b2 100644 --- a/include/swaybar/bar.h +++ b/include/swaybar/bar.h @@ -16,11 +16,24 @@ struct swaybar_pointer {  	int x, y;  }; +enum x11_button { +	NONE, +	LEFT, +	MIDDLE, +	RIGHT, +	SCROLL_UP, +	SCROLL_DOWN, +	SCROLL_LEFT, +	SCROLL_RIGHT, +	BACK, +	FORWARD, +}; +  struct swaybar_hotspot {  	struct wl_list link;  	int x, y, width, height;  	void (*callback)(struct swaybar_output *output, -			int x, int y, uint32_t button, void *data); +			int x, int y, enum x11_button button, void *data);  	void (*destroy)(void *data);  	void *data;  }; diff --git a/include/swaybar/status_line.h b/include/swaybar/status_line.h index bf12a842..2eaf8140 100644 --- a/include/swaybar/status_line.h +++ b/include/swaybar/status_line.h @@ -72,7 +72,9 @@ bool status_handle_readable(struct status_line *status);  void status_line_free(struct status_line *status);  bool i3bar_handle_readable(struct status_line *status);  void i3bar_block_send_click(struct status_line *status, -		struct i3bar_block *block, int x, int y, uint32_t button); +		struct i3bar_block *block, int x, int y, enum x11_button button);  void i3bar_block_free(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);  #endif | 
