mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Merge pull request #3344 from RedSoxFan/bar-mouse-bindings-improved
Improve mouse button parsing: bar mouse bindings
This commit is contained in:
commit
81bb675274
13 changed files with 208 additions and 114 deletions
|
@ -28,6 +28,6 @@ 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, int rx, int ry, int w, int h,
|
||||
enum x11_button button);
|
||||
uint32_t button);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -4,6 +4,11 @@
|
|||
#include <wayland-client.h>
|
||||
#include "list.h"
|
||||
|
||||
#define SWAY_SCROLL_UP KEY_MAX + 1
|
||||
#define SWAY_SCROLL_DOWN KEY_MAX + 2
|
||||
#define SWAY_SCROLL_LEFT KEY_MAX + 3
|
||||
#define SWAY_SCROLL_RIGHT KEY_MAX + 4
|
||||
|
||||
struct swaybar;
|
||||
struct swaybar_output;
|
||||
|
||||
|
@ -39,8 +44,8 @@ struct swaybar_hotspot {
|
|||
struct wl_list link; // swaybar_output::hotspots
|
||||
int x, y, width, height;
|
||||
enum hotspot_event_handling (*callback)(struct swaybar_output *output,
|
||||
struct swaybar_hotspot *hotspot, int x, int y,
|
||||
enum x11_button button, void *data);
|
||||
struct swaybar_hotspot *hotspot, int x, int y, uint32_t button,
|
||||
void *data);
|
||||
void (*destroy)(void *data);
|
||||
void *data;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue