From daf48a3aba7d5c42d7156f0d0e2b1d8aae423303 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Tue, 13 Sep 2016 15:16:55 +0800 Subject: [PATCH] dix: Introduce CursorWarpedTo vfunc in Screen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This new vfunc will be called, if set, after a client has issued a WarpPointer request. This is necessary for implementing pointer warp emulation in Xwayland. Signed-off-by: Jonas Ã…dahl Reviewed-by: Peter Hutterer Signed-off-by: Keith Packard --- dix/events.c | 3 +++ include/scrnintstr.h | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/dix/events.c b/dix/events.c index 6610b91d1..87f080e16 100644 --- a/dix/events.c +++ b/dix/events.c @@ -3609,6 +3609,9 @@ ProcWarpPointer(ClientPtr client) else if (!PointerConfinedToScreen(dev)) { NewCurrentScreen(dev, newScreen, x, y); } + if (*newScreen->CursorWarpedTo) + (*newScreen->CursorWarpedTo) (dev, newScreen, client, + dest, pSprite, x, y); return Success; } diff --git a/include/scrnintstr.h b/include/scrnintstr.h index 52e8382bf..faf9f8d41 100644 --- a/include/scrnintstr.h +++ b/include/scrnintstr.h @@ -233,6 +233,14 @@ typedef Bool (*SetCursorPositionProcPtr) (DeviceIntPtr /* pDev */ , int /*y */ , Bool /*generateEvent */ ); +typedef void (*CursorWarpedToProcPtr) (DeviceIntPtr /* pDev */ , + ScreenPtr /*pScreen */ , + ClientPtr /*pClient */ , + WindowPtr /*pWindow */ , + SpritePtr /*pSprite */ , + int /*x */ , + int /*y */ ); + typedef Bool (*CreateGCProcPtr) (GCPtr /*pGC */ ); typedef Bool (*CreateColormapProcPtr) (ColormapPtr /*pColormap */ ); @@ -554,6 +562,7 @@ typedef struct _Screen { UnrealizeCursorProcPtr UnrealizeCursor; RecolorCursorProcPtr RecolorCursor; SetCursorPositionProcPtr SetCursorPosition; + CursorWarpedToProcPtr CursorWarpedTo; /* GC procedures */