1*4882a593Smuzhiyun /************************************************************
2*4882a593Smuzhiyun
3*4882a593Smuzhiyun Copyright 1989, 1998 The Open Group
4*4882a593Smuzhiyun
5*4882a593Smuzhiyun Permission to use, copy, modify, distribute, and sell this software and its
6*4882a593Smuzhiyun documentation for any purpose is hereby granted without fee, provided that
7*4882a593Smuzhiyun the above copyright notice appear in all copies and that both that
8*4882a593Smuzhiyun copyright notice and this permission notice appear in supporting
9*4882a593Smuzhiyun documentation.
10*4882a593Smuzhiyun
11*4882a593Smuzhiyun The above copyright notice and this permission notice shall be included in
12*4882a593Smuzhiyun all copies or substantial portions of the Software.
13*4882a593Smuzhiyun
14*4882a593Smuzhiyun THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15*4882a593Smuzhiyun IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16*4882a593Smuzhiyun FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17*4882a593Smuzhiyun OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18*4882a593Smuzhiyun AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19*4882a593Smuzhiyun CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20*4882a593Smuzhiyun
21*4882a593Smuzhiyun Except as contained in this notice, the name of The Open Group shall not be
22*4882a593Smuzhiyun used in advertising or otherwise to promote the sale, use or other dealings
23*4882a593Smuzhiyun in this Software without prior written authorization from The Open Group.
24*4882a593Smuzhiyun
25*4882a593Smuzhiyun Copyright 1989 by Hewlett-Packard Company, Palo Alto, California.
26*4882a593Smuzhiyun
27*4882a593Smuzhiyun All Rights Reserved
28*4882a593Smuzhiyun
29*4882a593Smuzhiyun Permission to use, copy, modify, and distribute this software and its
30*4882a593Smuzhiyun documentation for any purpose and without fee is hereby granted,
31*4882a593Smuzhiyun provided that the above copyright notice appear in all copies and that
32*4882a593Smuzhiyun both that copyright notice and this permission notice appear in
33*4882a593Smuzhiyun supporting documentation, and that the name of Hewlett-Packard not be
34*4882a593Smuzhiyun used in advertising or publicity pertaining to distribution of the
35*4882a593Smuzhiyun software without specific, written prior permission.
36*4882a593Smuzhiyun
37*4882a593Smuzhiyun HEWLETT-PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
38*4882a593Smuzhiyun ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
39*4882a593Smuzhiyun HEWLETT-PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
40*4882a593Smuzhiyun ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
41*4882a593Smuzhiyun WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
42*4882a593Smuzhiyun ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
43*4882a593Smuzhiyun SOFTWARE.
44*4882a593Smuzhiyun
45*4882a593Smuzhiyun ********************************************************/
46*4882a593Smuzhiyun
47*4882a593Smuzhiyun /***********************************************************************
48*4882a593Smuzhiyun *
49*4882a593Smuzhiyun * Extension function to close an extension input device.
50*4882a593Smuzhiyun *
51*4882a593Smuzhiyun */
52*4882a593Smuzhiyun
53*4882a593Smuzhiyun #ifdef HAVE_DIX_CONFIG_H
54*4882a593Smuzhiyun #include <dix-config.h>
55*4882a593Smuzhiyun #endif
56*4882a593Smuzhiyun
57*4882a593Smuzhiyun #include "inputstr.h" /* DeviceIntPtr */
58*4882a593Smuzhiyun #include "windowstr.h" /* window structure */
59*4882a593Smuzhiyun #include "scrnintstr.h" /* screen structure */
60*4882a593Smuzhiyun #include <X11/extensions/XI.h>
61*4882a593Smuzhiyun #include <X11/extensions/XIproto.h>
62*4882a593Smuzhiyun #include "XIstubs.h"
63*4882a593Smuzhiyun #include "exglobals.h"
64*4882a593Smuzhiyun
65*4882a593Smuzhiyun #include "closedev.h"
66*4882a593Smuzhiyun
67*4882a593Smuzhiyun /***********************************************************************
68*4882a593Smuzhiyun *
69*4882a593Smuzhiyun * This procedure closes an input device.
70*4882a593Smuzhiyun *
71*4882a593Smuzhiyun */
72*4882a593Smuzhiyun
73*4882a593Smuzhiyun int _X_COLD
SProcXCloseDevice(ClientPtr client)74*4882a593Smuzhiyun SProcXCloseDevice(ClientPtr client)
75*4882a593Smuzhiyun {
76*4882a593Smuzhiyun REQUEST(xCloseDeviceReq);
77*4882a593Smuzhiyun swaps(&stuff->length);
78*4882a593Smuzhiyun REQUEST_SIZE_MATCH(xCloseDeviceReq);
79*4882a593Smuzhiyun return (ProcXCloseDevice(client));
80*4882a593Smuzhiyun }
81*4882a593Smuzhiyun
82*4882a593Smuzhiyun /***********************************************************************
83*4882a593Smuzhiyun *
84*4882a593Smuzhiyun * Clear out event selections and passive grabs from a window for the
85*4882a593Smuzhiyun * specified device.
86*4882a593Smuzhiyun *
87*4882a593Smuzhiyun */
88*4882a593Smuzhiyun
89*4882a593Smuzhiyun static void
DeleteDeviceEvents(DeviceIntPtr dev,WindowPtr pWin,ClientPtr client)90*4882a593Smuzhiyun DeleteDeviceEvents(DeviceIntPtr dev, WindowPtr pWin, ClientPtr client)
91*4882a593Smuzhiyun {
92*4882a593Smuzhiyun InputClientsPtr others;
93*4882a593Smuzhiyun OtherInputMasks *pOthers;
94*4882a593Smuzhiyun GrabPtr grab, next;
95*4882a593Smuzhiyun
96*4882a593Smuzhiyun if ((pOthers = wOtherInputMasks(pWin)) != 0)
97*4882a593Smuzhiyun for (others = pOthers->inputClients; others; others = others->next)
98*4882a593Smuzhiyun if (SameClient(others, client))
99*4882a593Smuzhiyun others->mask[dev->id] = NoEventMask;
100*4882a593Smuzhiyun
101*4882a593Smuzhiyun for (grab = wPassiveGrabs(pWin); grab; grab = next) {
102*4882a593Smuzhiyun next = grab->next;
103*4882a593Smuzhiyun if ((grab->device == dev) &&
104*4882a593Smuzhiyun (client->clientAsMask == CLIENT_BITS(grab->resource)))
105*4882a593Smuzhiyun FreeResource(grab->resource, RT_NONE);
106*4882a593Smuzhiyun }
107*4882a593Smuzhiyun }
108*4882a593Smuzhiyun
109*4882a593Smuzhiyun /***********************************************************************
110*4882a593Smuzhiyun *
111*4882a593Smuzhiyun * Walk througth the window tree, deleting event selections for this client
112*4882a593Smuzhiyun * from this device from all windows.
113*4882a593Smuzhiyun *
114*4882a593Smuzhiyun */
115*4882a593Smuzhiyun
116*4882a593Smuzhiyun static void
DeleteEventsFromChildren(DeviceIntPtr dev,WindowPtr p1,ClientPtr client)117*4882a593Smuzhiyun DeleteEventsFromChildren(DeviceIntPtr dev, WindowPtr p1, ClientPtr client)
118*4882a593Smuzhiyun {
119*4882a593Smuzhiyun WindowPtr p2;
120*4882a593Smuzhiyun
121*4882a593Smuzhiyun while (p1) {
122*4882a593Smuzhiyun p2 = p1->firstChild;
123*4882a593Smuzhiyun DeleteDeviceEvents(dev, p1, client);
124*4882a593Smuzhiyun DeleteEventsFromChildren(dev, p2, client);
125*4882a593Smuzhiyun p1 = p1->nextSib;
126*4882a593Smuzhiyun }
127*4882a593Smuzhiyun }
128*4882a593Smuzhiyun
129*4882a593Smuzhiyun /***********************************************************************
130*4882a593Smuzhiyun *
131*4882a593Smuzhiyun * This procedure closes an input device.
132*4882a593Smuzhiyun *
133*4882a593Smuzhiyun */
134*4882a593Smuzhiyun
135*4882a593Smuzhiyun int
ProcXCloseDevice(ClientPtr client)136*4882a593Smuzhiyun ProcXCloseDevice(ClientPtr client)
137*4882a593Smuzhiyun {
138*4882a593Smuzhiyun int rc, i;
139*4882a593Smuzhiyun WindowPtr pWin, p1;
140*4882a593Smuzhiyun DeviceIntPtr d;
141*4882a593Smuzhiyun
142*4882a593Smuzhiyun REQUEST(xCloseDeviceReq);
143*4882a593Smuzhiyun REQUEST_SIZE_MATCH(xCloseDeviceReq);
144*4882a593Smuzhiyun
145*4882a593Smuzhiyun rc = dixLookupDevice(&d, stuff->deviceid, client, DixUseAccess);
146*4882a593Smuzhiyun if (rc != Success)
147*4882a593Smuzhiyun return rc;
148*4882a593Smuzhiyun
149*4882a593Smuzhiyun if (d->deviceGrab.grab && SameClient(d->deviceGrab.grab, client))
150*4882a593Smuzhiyun (*d->deviceGrab.DeactivateGrab) (d); /* release active grab */
151*4882a593Smuzhiyun
152*4882a593Smuzhiyun /* Remove event selections from all windows for events from this device
153*4882a593Smuzhiyun * and selected by this client.
154*4882a593Smuzhiyun * Delete passive grabs from all windows for this device. */
155*4882a593Smuzhiyun
156*4882a593Smuzhiyun for (i = 0; i < screenInfo.numScreens; i++) {
157*4882a593Smuzhiyun pWin = screenInfo.screens[i]->root;
158*4882a593Smuzhiyun DeleteDeviceEvents(d, pWin, client);
159*4882a593Smuzhiyun p1 = pWin->firstChild;
160*4882a593Smuzhiyun DeleteEventsFromChildren(d, p1, client);
161*4882a593Smuzhiyun }
162*4882a593Smuzhiyun
163*4882a593Smuzhiyun return Success;
164*4882a593Smuzhiyun }
165