mirror of
				https://codeberg.org/dwl/dwl-patches.git
				synced 2025-10-31 12:04:23 +00:00 
			
		
		
		
	 9c5d5d85f3
			
		
	
	
		9c5d5d85f3
		
			
		
	
	
	
	
		
			
			Eliminated wiki. Individual patches have a README.md explanation in their own subdirectory. Simplified submission of new patches and maintenance of existing patches. Instructions page (README.md autodisplayed) is now at https://codeberg.org/dwl/dwl-patches/
		
			
				
	
	
		
			362 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			362 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From 6e619016b45230791484ea305f005e3b29f295f3 Mon Sep 17 00:00:00 2001
 | |
| From: choc <notchoc@proton.me>
 | |
| Date: Sat, 4 May 2024 01:16:12 +0800
 | |
| Subject: [PATCH] implement wlr-tablet-v2
 | |
| 
 | |
| ---
 | |
|  Makefile     |   5 +-
 | |
|  config.def.h |   1 +
 | |
|  dwl.c        | 224 +++++++++++++++++++++++++++++++++++++++++++++++++++
 | |
|  3 files changed, 229 insertions(+), 1 deletion(-)
 | |
| 
 | |
| diff --git a/Makefile b/Makefile
 | |
| index a67fdd3..74ccc01 100644
 | |
| --- a/Makefile
 | |
| +++ b/Makefile
 | |
| @@ -16,7 +16,7 @@ LDLIBS    = `$(PKG_CONFIG) --libs $(PKGS)` $(LIBS)
 | |
|  all: dwl
 | |
|  dwl: dwl.o util.o
 | |
|  	$(CC) dwl.o util.o $(LDLIBS) $(LDFLAGS) $(DWLCFLAGS) -o $@
 | |
| -dwl.o: dwl.c config.mk config.h client.h cursor-shape-v1-protocol.h pointer-constraints-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h xdg-shell-protocol.h
 | |
| +dwl.o: dwl.c config.mk config.h client.h cursor-shape-v1-protocol.h pointer-constraints-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h xdg-shell-protocol.h tablet-unstable-v2-protocol.h
 | |
|  util.o: util.c util.h
 | |
|  
 | |
|  # wayland-scanner is a tool which generates C headers and rigging for Wayland
 | |
| @@ -37,6 +37,9 @@ wlr-layer-shell-unstable-v1-protocol.h:
 | |
|  xdg-shell-protocol.h:
 | |
|  	$(WAYLAND_SCANNER) server-header \
 | |
|  		$(WAYLAND_PROTOCOLS)/stable/xdg-shell/xdg-shell.xml $@
 | |
| +tablet-unstable-v2-protocol.h:
 | |
| +	$(WAYLAND_SCANNER) server-header \
 | |
| +		$(WAYLAND_PROTOCOLS)/unstable/tablet/tablet-unstable-v2.xml $@
 | |
|  
 | |
|  config.h:
 | |
|  	cp config.def.h $@
 | |
| diff --git a/config.def.h b/config.def.h
 | |
| index 8847e58..12fed96 100644
 | |
| --- a/config.def.h
 | |
| +++ b/config.def.h
 | |
| @@ -4,6 +4,7 @@
 | |
|                          ((hex >> 8) & 0xFF) / 255.0f, \
 | |
|                          (hex & 0xFF) / 255.0f }
 | |
|  /* appearance */
 | |
| +static const int tabletmaptosurface        = 0;  /* map tablet input to surface(1) or monitor(0) */
 | |
|  static const int sloppyfocus               = 1;  /* focus follows mouse */
 | |
|  static const int bypass_surface_visibility = 0;  /* 1 means idle inhibitors will disable idle tracking even if it's surface isn't visible  */
 | |
|  static const unsigned int borderpx         = 1;  /* border pixel of windows */
 | |
| diff --git a/dwl.c b/dwl.c
 | |
| index bf763df..6e17222 100644
 | |
| --- a/dwl.c
 | |
| +++ b/dwl.c
 | |
| @@ -47,6 +47,9 @@
 | |
|  #include <wlr/types/wlr_session_lock_v1.h>
 | |
|  #include <wlr/types/wlr_single_pixel_buffer_v1.h>
 | |
|  #include <wlr/types/wlr_subcompositor.h>
 | |
| +#include <wlr/types/wlr_tablet_tool.h>
 | |
| +#include <wlr/types/wlr_tablet_pad.h>
 | |
| +#include <wlr/types/wlr_tablet_v2.h>
 | |
|  #include <wlr/types/wlr_viewporter.h>
 | |
|  #include <wlr/types/wlr_virtual_keyboard_v1.h>
 | |
|  #include <wlr/types/wlr_virtual_pointer_v1.h>
 | |
| @@ -264,6 +267,7 @@ static void createmon(struct wl_listener *listener, void *data);
 | |
|  static void createnotify(struct wl_listener *listener, void *data);
 | |
|  static void createpointer(struct wlr_pointer *pointer);
 | |
|  static void createpointerconstraint(struct wl_listener *listener, void *data);
 | |
| +static void createtablet(struct wlr_input_device *device);
 | |
|  static void cursorconstrain(struct wlr_pointer_constraint_v1 *constraint);
 | |
|  static void cursorframe(struct wl_listener *listener, void *data);
 | |
|  static void cursorwarptohint(void);
 | |
| @@ -277,6 +281,9 @@ static void destroynotify(struct wl_listener *listener, void *data);
 | |
|  static void destroypointerconstraint(struct wl_listener *listener, void *data);
 | |
|  static void destroysessionlock(struct wl_listener *listener, void *data);
 | |
|  static void destroysessionmgr(struct wl_listener *listener, void *data);
 | |
| +static void destroytablet(struct wl_listener *listener, void *data);
 | |
| +static void destroytabletsurfacenotify(struct wl_listener *listener, void *data);
 | |
| +static void destroytablettool(struct wl_listener *listener, void *data);
 | |
|  static Monitor *dirtomon(enum wlr_direction dir);
 | |
|  static void focusclient(Client *c, int lift);
 | |
|  static void focusmon(const Arg *arg);
 | |
| @@ -329,6 +336,11 @@ static void spawn(const Arg *arg);
 | |
|  static void startdrag(struct wl_listener *listener, void *data);
 | |
|  static void tag(const Arg *arg);
 | |
|  static void tagmon(const Arg *arg);
 | |
| +static void tablettoolmotion(struct wlr_tablet_v2_tablet_tool *tool, bool change_x, bool change_y, double x, double y, double dx, double dy);
 | |
| +static void tablettoolproximity(struct wl_listener *listener, void *data);
 | |
| +static void tablettoolaxis(struct wl_listener *listener, void *data);
 | |
| +static void tablettoolbutton(struct wl_listener *listener, void *data);
 | |
| +static void tablettooltip(struct wl_listener *listener, void *data);
 | |
|  static void tile(Monitor *m);
 | |
|  static void togglefloating(const Arg *arg);
 | |
|  static void togglefullscreen(const Arg *arg);
 | |
| @@ -386,6 +398,13 @@ static struct wlr_pointer_constraint_v1 *active_constraint;
 | |
|  static struct wlr_cursor *cursor;
 | |
|  static struct wlr_xcursor_manager *cursor_mgr;
 | |
|  
 | |
| +static struct wlr_tablet_manager_v2 *tablet_mgr;
 | |
| +static struct wlr_tablet_v2_tablet *tablet = NULL;
 | |
| +static struct wlr_tablet_v2_tablet_tool *tablet_tool = NULL;
 | |
| +static struct wlr_tablet_v2_tablet_pad *tablet_pad = NULL;
 | |
| +static struct wlr_surface *tablet_curr_surface = NULL;
 | |
| +static struct wl_listener destroy_tablet_surface_listener = {.notify = destroytabletsurfacenotify};
 | |
| +
 | |
|  static struct wlr_scene_rect *root_bg;
 | |
|  static struct wlr_session_lock_manager_v1 *session_lock_mgr;
 | |
|  static struct wlr_scene_rect *locked_bg;
 | |
| @@ -624,6 +643,7 @@ buttonpress(struct wl_listener *listener, void *data)
 | |
|  	}
 | |
|  	/* If the event wasn't handled by the compositor, notify the client with
 | |
|  	 * pointer focus that a button press has occurred */
 | |
| +
 | |
|  	wlr_seat_pointer_notify_button(seat,
 | |
|  			event->time_msec, event->button, event->state);
 | |
|  }
 | |
| @@ -1041,6 +1061,28 @@ createpointerconstraint(struct wl_listener *listener, void *data)
 | |
|  			&pointer_constraint->destroy, destroypointerconstraint);
 | |
|  }
 | |
|  
 | |
| +void
 | |
| +createtablet(struct wlr_input_device *device)
 | |
| +{
 | |
| +	if (!tablet) {
 | |
| +		struct libinput_device *device_handle = NULL;
 | |
| +		if (!wlr_input_device_is_libinput(device) ||
 | |
| +				!(device_handle = wlr_libinput_get_device_handle(device)))
 | |
| +			return;
 | |
| +
 | |
| +		tablet = wlr_tablet_create(tablet_mgr, seat, device);
 | |
| +		LISTEN_STATIC(&tablet->wlr_device->events.destroy, destroytablet);
 | |
| +		if (libinput_device_config_send_events_get_modes(device_handle)) {
 | |
| +			libinput_device_config_send_events_set_mode(device_handle, send_events_mode);
 | |
| +			wlr_cursor_attach_input_device(cursor, device);
 | |
| +		}
 | |
| +	} else if (device == tablet->wlr_device) {
 | |
| +		wlr_log(WLR_ERROR, "createtablet: duplicate device");
 | |
| +	} else {
 | |
| +		wlr_log(WLR_ERROR, "createtablet: already have one tablet");
 | |
| +	}
 | |
| +}
 | |
| +
 | |
|  void
 | |
|  cursorconstrain(struct wlr_pointer_constraint_v1 *constraint)
 | |
|  {
 | |
| @@ -1217,6 +1259,26 @@ destroysessionmgr(struct wl_listener *listener, void *data)
 | |
|  	wl_list_remove(&listener->link);
 | |
|  }
 | |
|  
 | |
| +void
 | |
| +destroytablet(struct wl_listener *listener, void *data)
 | |
| +{
 | |
| +	tablet = NULL;
 | |
| +}
 | |
| +
 | |
| +void
 | |
| +destroytabletsurfacenotify(struct wl_listener *listener, void *data)
 | |
| +{
 | |
| +	tablet_curr_surface = NULL;
 | |
| +}
 | |
| +
 | |
| +void
 | |
| +destroytablettool(struct wl_listener *listener, void *data)
 | |
| +{
 | |
| +	wl_list_remove(&destroy_tablet_surface_listener.link);
 | |
| +	tablet_curr_surface = NULL;
 | |
| +	tablet_tool = NULL;
 | |
| +}
 | |
| +
 | |
|  Monitor *
 | |
|  dirtomon(enum wlr_direction dir)
 | |
|  {
 | |
| @@ -1412,6 +1474,13 @@ inputdevice(struct wl_listener *listener, void *data)
 | |
|  	case WLR_INPUT_DEVICE_POINTER:
 | |
|  		createpointer(wlr_pointer_from_input_device(device));
 | |
|  		break;
 | |
| +        case WLR_INPUT_DEVICE_TABLET_TOOL:
 | |
| +		createtablet(device);
 | |
| +		break;
 | |
| +	case WLR_INPUT_DEVICE_TABLET_PAD:
 | |
| +		createtablet(device);
 | |
| +	        tablet_pad = wlr_tablet_pad_create(tablet_mgr, seat, device);
 | |
| +		break;
 | |
|  	default:
 | |
|  		/* TODO handle other input device types */
 | |
|  		break;
 | |
| @@ -2401,6 +2470,8 @@ setup(void)
 | |
|  
 | |
|  	relative_pointer_mgr = wlr_relative_pointer_manager_v1_create(dpy);
 | |
|  
 | |
| +	tablet_mgr = wlr_tablet_v2_create(dpy);
 | |
| +
 | |
|  	/*
 | |
|  	 * Creates a cursor, which is a wlroots utility for tracking the cursor
 | |
|  	 * image shown on screen.
 | |
| @@ -2430,6 +2501,10 @@ setup(void)
 | |
|  	LISTEN_STATIC(&cursor->events.button, buttonpress);
 | |
|  	LISTEN_STATIC(&cursor->events.axis, axisnotify);
 | |
|  	LISTEN_STATIC(&cursor->events.frame, cursorframe);
 | |
| +        LISTEN_STATIC(&cursor->events.tablet_tool_proximity, tablettoolproximity);
 | |
| +	LISTEN_STATIC(&cursor->events.tablet_tool_axis, tablettoolaxis);
 | |
| +	LISTEN_STATIC(&cursor->events.tablet_tool_button, tablettoolbutton);
 | |
| +	LISTEN_STATIC(&cursor->events.tablet_tool_tip, tablettooltip);
 | |
|  
 | |
|  	cursor_shape_mgr = wlr_cursor_shape_manager_v1_create(dpy, 1);
 | |
|  	LISTEN_STATIC(&cursor_shape_mgr->events.request_set_shape, setcursorshape);
 | |
| @@ -2569,6 +2644,155 @@ tagmon(const Arg *arg)
 | |
|  		setmon(sel, dirtomon(arg->i), 0);
 | |
|  }
 | |
|  
 | |
| +void
 | |
| +tabletapplymap(double x, double y, struct wlr_input_device *dev)
 | |
| +{
 | |
| +	Client *p;
 | |
| +	struct wlr_box geom = {0};
 | |
| +	if (tabletmaptosurface && tablet_curr_surface) {
 | |
| +		toplevel_from_wlr_surface(tablet_curr_surface, &p, NULL);
 | |
| +		if (p) {
 | |
| +			for (; client_get_parent(p); p = client_get_parent(p));
 | |
| +			geom.x = p->geom.x + p->bw;
 | |
| +			geom.y = p->geom.y + p->bw;
 | |
| +			geom.width = p->geom.width - 2 * p->bw;
 | |
| +			geom.height = p->geom.height - 2 * p->bw;
 | |
| +		}
 | |
| +	}
 | |
| +	wlr_cursor_map_input_to_region(cursor, dev, &geom);
 | |
| +	wlr_cursor_map_input_to_output(cursor, dev, selmon->wlr_output);
 | |
| +}
 | |
| +
 | |
| +void
 | |
| +tablettoolmotion(struct wlr_tablet_v2_tablet_tool *tool, bool change_x, bool change_y,
 | |
| +		double x, double y, double dx, double dy)
 | |
| +{
 | |
| +	struct wlr_surface *surface = NULL;
 | |
| +	double sx, sy;
 | |
| +
 | |
| +	if (!change_x && !change_y)
 | |
| +		return;
 | |
| +
 | |
| +	tabletapplymap(x, y, tablet->wlr_device);
 | |
| +
 | |
| +	// TODO: apply constraints
 | |
| +	switch (tablet_tool->wlr_tool->type) {
 | |
| +	case WLR_TABLET_TOOL_TYPE_LENS:
 | |
| +	case WLR_TABLET_TOOL_TYPE_MOUSE:
 | |
| +		wlr_cursor_move(cursor, tablet->wlr_device, dx, dy);
 | |
| +		break;
 | |
| +	default:
 | |
| +		wlr_cursor_warp_absolute(cursor, tablet->wlr_device, change_x ? x : NAN, change_y ? y : NAN);
 | |
| +		break;
 | |
| +	}
 | |
| +
 | |
| +	motionnotify(0, NULL, 0, 0, 0, 0);
 | |
| +
 | |
| +	xytonode(cursor->x, cursor->y, &surface, NULL, NULL, &sx, &sy);
 | |
| +	if (surface && !wlr_surface_accepts_tablet_v2(tablet, surface))
 | |
| +		surface = NULL;
 | |
| +
 | |
| +	if (surface != tablet_curr_surface) {
 | |
| +		if (tablet_curr_surface) {
 | |
| +			// TODO: wait until all buttons released before leaving
 | |
| +			if (tablet_tool)
 | |
| +				wlr_tablet_v2_tablet_tool_notify_proximity_out(tablet_tool);
 | |
| +			if (tablet_pad)
 | |
| +				wlr_tablet_v2_tablet_pad_notify_leave(tablet_pad, tablet_curr_surface);
 | |
| +			wl_list_remove(&destroy_tablet_surface_listener.link);
 | |
| +		}
 | |
| +		if (surface) {
 | |
| +			if (tablet_pad)
 | |
| +				wlr_tablet_v2_tablet_pad_notify_enter(tablet_pad, tablet, surface);
 | |
| +			if (tablet_tool)
 | |
| +				wlr_tablet_v2_tablet_tool_notify_proximity_in(tablet_tool, tablet, surface);
 | |
| +			wl_signal_add(&surface->events.destroy, &destroy_tablet_surface_listener);
 | |
| +		}
 | |
| +		tablet_curr_surface = surface;
 | |
| +	}
 | |
| +
 | |
| +	if (surface)
 | |
| +		wlr_tablet_v2_tablet_tool_notify_motion(tablet_tool, sx, sy);
 | |
| +}
 | |
| +
 | |
| +void
 | |
| +tablettoolproximity(struct wl_listener *listener, void *data)
 | |
| +{
 | |
| +	struct wlr_tablet_tool_proximity_event *event = data;
 | |
| +	struct wlr_tablet_tool *tool = event->tool;
 | |
| +
 | |
| +	if (!tablet_tool) {
 | |
| +		tablet_tool = wlr_tablet_tool_create(tablet_mgr, seat, tool);
 | |
| +		LISTEN_STATIC(&tablet_tool->wlr_tool->events.destroy, destroytablettool);
 | |
| +		LISTEN_STATIC(&tablet_tool->events.set_cursor, setcursor);
 | |
| +	}
 | |
| +
 | |
| +	switch (event->state) {
 | |
| +	case WLR_TABLET_TOOL_PROXIMITY_OUT:
 | |
| +		wlr_tablet_v2_tablet_tool_notify_proximity_out(tablet_tool);
 | |
| +		break;
 | |
| +	case WLR_TABLET_TOOL_PROXIMITY_IN:
 | |
| +		tablettoolmotion(tablet_tool, true, true, event->x, event->y, 0, 0);
 | |
| +		break;
 | |
| +	}
 | |
| +}
 | |
| +
 | |
| +void
 | |
| +tablettoolaxis(struct wl_listener *listener, void *data)
 | |
| +{
 | |
| +	struct wlr_tablet_tool_axis_event *event = data;
 | |
| +
 | |
| +	tablettoolmotion(tablet_tool,
 | |
| +		event->updated_axes & WLR_TABLET_TOOL_AXIS_X,
 | |
| +		event->updated_axes & WLR_TABLET_TOOL_AXIS_Y,
 | |
| +		event->x, event->y, event->dx, event->dy);
 | |
| +
 | |
| +	if (event->updated_axes & WLR_TABLET_TOOL_AXIS_PRESSURE)
 | |
| +		wlr_tablet_v2_tablet_tool_notify_pressure(tablet_tool, event->pressure);
 | |
| +	if (event->updated_axes & WLR_TABLET_TOOL_AXIS_DISTANCE)
 | |
| +		wlr_tablet_v2_tablet_tool_notify_distance(tablet_tool, event->distance);
 | |
| +	if (event->updated_axes & (WLR_TABLET_TOOL_AXIS_TILT_X | WLR_TABLET_TOOL_AXIS_TILT_Y))
 | |
| +		wlr_tablet_v2_tablet_tool_notify_tilt(tablet_tool, event->tilt_x, event->tilt_y);
 | |
| +	if (event->updated_axes & WLR_TABLET_TOOL_AXIS_ROTATION)
 | |
| +		wlr_tablet_v2_tablet_tool_notify_rotation(tablet_tool, event->rotation);
 | |
| +	if (event->updated_axes & WLR_TABLET_TOOL_AXIS_SLIDER)
 | |
| +		wlr_tablet_v2_tablet_tool_notify_slider(tablet_tool, event->slider);
 | |
| +	if (event->updated_axes & WLR_TABLET_TOOL_AXIS_WHEEL)
 | |
| +		wlr_tablet_v2_tablet_tool_notify_wheel(tablet_tool, event->wheel_delta, 0);
 | |
| +}
 | |
| +
 | |
| +void
 | |
| +tablettoolbutton(struct wl_listener *listener, void *data)
 | |
| +{
 | |
| +	struct wlr_tablet_tool_button_event *event = data;
 | |
| +	wlr_tablet_v2_tablet_tool_notify_button(tablet_tool, event->button,
 | |
| +		(enum zwp_tablet_pad_v2_button_state)event->state);
 | |
| +}
 | |
| +
 | |
| +void
 | |
| +tablettooltip(struct wl_listener *listener, void *data)
 | |
| +{
 | |
| +	struct wlr_tablet_tool_tip_event *event = data;
 | |
| +
 | |
| +	if (!tablet_curr_surface) {
 | |
| +		struct wlr_pointer_button_event fakeptrbtnevent = {
 | |
| +			.button = BTN_LEFT,
 | |
| +			.state = event->state == WLR_TABLET_TOOL_TIP_UP ?
 | |
| +				WLR_BUTTON_RELEASED : WLR_BUTTON_PRESSED,
 | |
| +			.time_msec = event->time_msec,
 | |
| +		};
 | |
| +		buttonpress(NULL, (void *)&fakeptrbtnevent);
 | |
| +	}
 | |
| +
 | |
| +	if (event->state == WLR_TABLET_TOOL_TIP_UP) {
 | |
| +		wlr_tablet_v2_tablet_tool_notify_up(tablet_tool);
 | |
| +		return;
 | |
| +	}
 | |
| +
 | |
| +	wlr_tablet_v2_tablet_tool_notify_down(tablet_tool);
 | |
| +	wlr_tablet_tool_v2_start_implicit_grab(tablet_tool);
 | |
| +}
 | |
| +
 | |
|  void
 | |
|  tile(Monitor *m)
 | |
|  {
 | |
| -- 
 | |
| 2.43.0
 | |
| 
 |