~ubuntu-branches/ubuntu/intrepid/xserver-xgl/intrepid

« back to all changes in this revision

Viewing changes to Xi/chgprop.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Garrett
  • Date: 2006-02-13 14:21:43 UTC
  • Revision ID: james.westby@ubuntu.com-20060213142143-mad6z9xzem7hzxz9
Tags: upstream-7.0.0
ImportĀ upstreamĀ versionĀ 7.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Xorg: chgprop.c,v 1.4 2001/02/09 02:04:33 xorgcvs Exp $ */
 
2
 
 
3
/************************************************************
 
4
 
 
5
Copyright 1989, 1998  The Open Group
 
6
 
 
7
Permission to use, copy, modify, distribute, and sell this software and its
 
8
documentation for any purpose is hereby granted without fee, provided that
 
9
the above copyright notice appear in all copies and that both that
 
10
copyright notice and this permission notice appear in supporting
 
11
documentation.
 
12
 
 
13
The above copyright notice and this permission notice shall be included in
 
14
all copies or substantial portions of the Software.
 
15
 
 
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 
19
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 
20
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 
21
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
22
 
 
23
Except as contained in this notice, the name of The Open Group shall not be
 
24
used in advertising or otherwise to promote the sale, use or other dealings
 
25
in this Software without prior written authorization from The Open Group.
 
26
 
 
27
Copyright 1989 by Hewlett-Packard Company, Palo Alto, California.
 
28
 
 
29
                        All Rights Reserved
 
30
 
 
31
Permission to use, copy, modify, and distribute this software and its
 
32
documentation for any purpose and without fee is hereby granted,
 
33
provided that the above copyright notice appear in all copies and that
 
34
both that copyright notice and this permission notice appear in
 
35
supporting documentation, and that the name of Hewlett-Packard not be
 
36
used in advertising or publicity pertaining to distribution of the
 
37
software without specific, written prior permission.
 
38
 
 
39
HEWLETT-PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
 
40
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
 
41
HEWLETT-PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
 
42
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 
43
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
 
44
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
 
45
SOFTWARE.
 
46
 
 
47
********************************************************/
 
48
/* $XFree86: xc/programs/Xserver/Xi/chgprop.c,v 3.2 2001/01/17 22:13:24 dawes Exp $ */
 
49
 
 
50
/***********************************************************************
 
51
 *
 
52
 * Function to modify the dont-propagate-list for an extension input device.
 
53
 *
 
54
 */
 
55
 
 
56
#define  NEED_EVENTS
 
57
#define  NEED_REPLIES
 
58
#ifdef HAVE_DIX_CONFIG_H
 
59
#include <dix-config.h>
 
60
#endif
 
61
 
 
62
#include <X11/X.h>                              /* for inputstr.h    */
 
63
#include <X11/Xproto.h>                 /* Request macro     */
 
64
#include "inputstr.h"                   /* DeviceIntPtr      */
 
65
#include "windowstr.h"
 
66
#include <X11/extensions/XI.h>
 
67
#include <X11/extensions/XIproto.h>
 
68
#include "extnsionst.h"
 
69
#include "extinit.h"                    /* LookupDeviceIntRec */
 
70
 
 
71
#include "exevents.h"
 
72
#include "exglobals.h"
 
73
 
 
74
#include "chgprop.h"
 
75
#include "grabdev.h"
 
76
 
 
77
/***********************************************************************
 
78
 *
 
79
 * This procedure returns the extension version.
 
80
 *
 
81
 */
 
82
 
 
83
int
 
84
SProcXChangeDeviceDontPropagateList(client)
 
85
    register ClientPtr client;
 
86
    {
 
87
    register char n;
 
88
    register long *p;
 
89
    register int i;
 
90
 
 
91
    REQUEST(xChangeDeviceDontPropagateListReq);
 
92
    swaps(&stuff->length, n);
 
93
    REQUEST_AT_LEAST_SIZE(xChangeDeviceDontPropagateListReq);
 
94
    swapl(&stuff->window, n);
 
95
    swaps(&stuff->count, n);
 
96
    p = (long *) &stuff[1];
 
97
    for (i=0; i<stuff->count; i++)
 
98
        {
 
99
        swapl(p, n);
 
100
        p++;
 
101
        }
 
102
    return(ProcXChangeDeviceDontPropagateList(client));
 
103
    }
 
104
 
 
105
/***********************************************************************
 
106
 *
 
107
 * This procedure changes the dont-propagate list for the specified window.
 
108
 *
 
109
 */
 
110
 
 
111
int
 
112
ProcXChangeDeviceDontPropagateList (client)
 
113
    register ClientPtr client;
 
114
    {
 
115
    int                 i;
 
116
    WindowPtr           pWin;
 
117
    struct              tmask tmp[EMASKSIZE];
 
118
    OtherInputMasks     *others;
 
119
 
 
120
    REQUEST(xChangeDeviceDontPropagateListReq);
 
121
    REQUEST_AT_LEAST_SIZE(xChangeDeviceDontPropagateListReq);
 
122
 
 
123
    if (stuff->length !=(sizeof(xChangeDeviceDontPropagateListReq)>>2) + 
 
124
        stuff->count)
 
125
        {
 
126
        SendErrorToClient (client, IReqCode, X_ChangeDeviceDontPropagateList, 0,
 
127
            BadLength);
 
128
        return Success;
 
129
        }
 
130
 
 
131
    pWin = (WindowPtr) LookupWindow (stuff->window, client);
 
132
    if (!pWin)
 
133
        {
 
134
        client->errorValue = stuff->window;
 
135
        SendErrorToClient(client, IReqCode, X_ChangeDeviceDontPropagateList, 0, 
 
136
                BadWindow);
 
137
        return Success;
 
138
        }
 
139
 
 
140
    if (stuff->mode != AddToList && stuff->mode != DeleteFromList)
 
141
        {
 
142
        client->errorValue = stuff->window;
 
143
        SendErrorToClient(client, IReqCode, X_ChangeDeviceDontPropagateList, 0, 
 
144
                BadMode);
 
145
        return Success;
 
146
        }
 
147
 
 
148
    if (CreateMaskFromList (client, (XEventClass *)&stuff[1], 
 
149
        stuff->count, tmp, NULL, X_ChangeDeviceDontPropagateList) != Success)
 
150
            return Success;
 
151
 
 
152
    others = wOtherInputMasks(pWin);
 
153
    if (!others && stuff->mode == DeleteFromList)
 
154
        return Success;
 
155
    for (i=0; i<EMASKSIZE; i++)
 
156
        {
 
157
        if (tmp[i].mask == 0)
 
158
            continue;
 
159
 
 
160
        if (stuff->mode == DeleteFromList)
 
161
            tmp[i].mask = (others->dontPropagateMask[i] & ~tmp[i].mask);
 
162
        else if (others)
 
163
            tmp[i].mask |= others->dontPropagateMask[i];
 
164
 
 
165
        if (DeviceEventSuppressForWindow (pWin,client,tmp[i].mask,i) != Success)
 
166
            {
 
167
            SendErrorToClient ( client, IReqCode, X_ChangeDeviceDontPropagateList, 0, 
 
168
                BadClass);
 
169
            return Success;
 
170
            }
 
171
        }
 
172
 
 
173
    return Success;
 
174
    }