input: use a GrabMask union in GrabDevice to allow for XI2 masks.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
6bb4b5b937
commit
c94ea5bc05
|
@ -104,6 +104,7 @@ ProcXGrabDevice(ClientPtr client)
|
|||
int rc;
|
||||
xGrabDeviceReply rep;
|
||||
DeviceIntPtr dev;
|
||||
GrabMask mask;
|
||||
struct tmask tmp[EMASKSIZE];
|
||||
|
||||
REQUEST(xGrabDeviceReq);
|
||||
|
@ -126,10 +127,12 @@ ProcXGrabDevice(ClientPtr client)
|
|||
X_GrabDevice)) != Success)
|
||||
return rc;
|
||||
|
||||
mask.xi = tmp[stuff->deviceid].mask;
|
||||
|
||||
rc = GrabDevice(client, dev, stuff->other_devices_mode,
|
||||
stuff->this_device_mode, stuff->grabWindow,
|
||||
stuff->ownerEvents, stuff->time,
|
||||
tmp[stuff->deviceid].mask, FALSE, None, None,
|
||||
&mask, FALSE, None, None,
|
||||
&rep.status);
|
||||
|
||||
if (rc != Success)
|
||||
|
|
19
dix/events.c
19
dix/events.c
|
@ -4395,6 +4395,7 @@ ProcGrabPointer(ClientPtr client)
|
|||
xGrabPointerReply rep;
|
||||
DeviceIntPtr device = PickPointer(client);
|
||||
GrabPtr grab;
|
||||
GrabMask mask;
|
||||
WindowPtr confineTo;
|
||||
CursorPtr oldCursor;
|
||||
REQUEST(xGrabPointerReq);
|
||||
|
@ -4431,9 +4432,11 @@ ProcGrabPointer(ClientPtr client)
|
|||
oldCursor = grab->cursor;
|
||||
}
|
||||
|
||||
mask.core = stuff->eventMask;
|
||||
|
||||
rc = GrabDevice(client, device, stuff->pointerMode, stuff->keyboardMode,
|
||||
stuff->grabWindow, stuff->ownerEvents, stuff->time,
|
||||
stuff->eventMask, GRABTYPE_CORE, stuff->cursor,
|
||||
&mask, GRABTYPE_CORE, stuff->cursor,
|
||||
stuff->confineTo, &rep.status);
|
||||
if (rc != Success)
|
||||
return rc;
|
||||
|
@ -4551,7 +4554,7 @@ ProcUngrabPointer(ClientPtr client)
|
|||
int
|
||||
GrabDevice(ClientPtr client, DeviceIntPtr dev,
|
||||
unsigned pointer_mode, unsigned keyboard_mode, Window grabWindow,
|
||||
unsigned ownerEvents, Time ctime, Mask mask,
|
||||
unsigned ownerEvents, Time ctime, GrabMask *mask,
|
||||
int grabtype, Cursor curs, Window confineToWin, CARD8 *status)
|
||||
{
|
||||
WindowPtr pWin, confineTo;
|
||||
|
@ -4643,7 +4646,12 @@ GrabDevice(ClientPtr client, DeviceIntPtr dev,
|
|||
tempGrab.ownerEvents = ownerEvents;
|
||||
tempGrab.keyboardMode = keyboard_mode;
|
||||
tempGrab.pointerMode = pointer_mode;
|
||||
tempGrab.eventMask = mask;
|
||||
if (grabtype == GRABTYPE_CORE)
|
||||
tempGrab.eventMask = mask->core;
|
||||
else if (grabtype == GRABTYPE_XI)
|
||||
tempGrab.eventMask = mask->xi;
|
||||
else
|
||||
memcpy(tempGrab.xi2mask, mask->xi2mask, sizeof(tempGrab.xi2mask));
|
||||
tempGrab.device = dev;
|
||||
tempGrab.cursor = cursor;
|
||||
tempGrab.confineTo = confineTo;
|
||||
|
@ -4666,13 +4674,16 @@ ProcGrabKeyboard(ClientPtr client)
|
|||
REQUEST(xGrabKeyboardReq);
|
||||
int result;
|
||||
DeviceIntPtr keyboard = PickKeyboard(client);
|
||||
GrabMask mask;
|
||||
|
||||
REQUEST_SIZE_MATCH(xGrabKeyboardReq);
|
||||
|
||||
memset(&rep, 0, sizeof(xGrabKeyboardReply));
|
||||
mask.core = KeyPressMask | KeyReleaseMask;
|
||||
|
||||
result = GrabDevice(client, keyboard, stuff->pointerMode,
|
||||
stuff->keyboardMode, stuff->grabWindow, stuff->ownerEvents,
|
||||
stuff->time, KeyPressMask | KeyReleaseMask, GRABTYPE_CORE, None, None,
|
||||
stuff->time, &mask, GRABTYPE_CORE, None, None,
|
||||
&rep.status);
|
||||
|
||||
if (result != Success)
|
||||
|
|
|
@ -433,7 +433,7 @@ extern int GrabDevice(
|
|||
Window /* grabWindow */,
|
||||
unsigned /* ownerEvents */,
|
||||
Time /* ctime */,
|
||||
Mask /* mask */,
|
||||
GrabMask* /* mask */,
|
||||
int /* grabtype */,
|
||||
Cursor /* curs */,
|
||||
Window /* confineToWin */,
|
||||
|
|
|
@ -103,6 +103,7 @@ typedef struct _OtherClients *OtherClientsPtr;
|
|||
typedef struct _InputClients *InputClientsPtr;
|
||||
typedef struct _DeviceIntRec *DeviceIntPtr;
|
||||
typedef struct _ClassesRec *ClassesPtr;
|
||||
typedef union _GrabMask GrabMask;
|
||||
|
||||
typedef struct _EventList {
|
||||
xEvent* event;
|
||||
|
|
|
@ -156,6 +156,12 @@ typedef enum {
|
|||
GRABTYPE_XI2
|
||||
} GrabType;
|
||||
|
||||
union _GrabMask {
|
||||
Mask core;
|
||||
Mask xi;
|
||||
char xi2mask[EMASKSIZE][XI2MASKSIZE];
|
||||
};
|
||||
|
||||
/**
|
||||
* Central struct for device grabs.
|
||||
* The same struct is used for both core grabs and device grabs, with
|
||||
|
|
Loading…
Reference in New Issue