2006-11-26 11:13:41 -07:00
|
|
|
/************************************************************
|
|
|
|
|
|
|
|
Copyright 1989, 1998 The Open Group
|
|
|
|
|
|
|
|
Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
the above copyright notice appear in all copies and that both that
|
|
|
|
copyright notice and this permission notice appear in supporting
|
|
|
|
documentation.
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
Except as contained in this notice, the name of The Open Group shall not be
|
|
|
|
used in advertising or otherwise to promote the sale, use or other dealings
|
|
|
|
in this Software without prior written authorization from The Open Group.
|
|
|
|
|
|
|
|
Copyright 1989 by Hewlett-Packard Company, Palo Alto, California.
|
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
supporting documentation, and that the name of Hewlett-Packard not be
|
|
|
|
used in advertising or publicity pertaining to distribution of the
|
|
|
|
software without specific, written prior permission.
|
|
|
|
|
|
|
|
HEWLETT-PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
|
|
|
|
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
|
|
|
|
HEWLETT-PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
|
|
|
|
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
|
|
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
|
|
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
|
|
SOFTWARE.
|
|
|
|
|
|
|
|
********************************************************/
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* Request to change the mode of an extension input device.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_DIX_CONFIG_H
|
|
|
|
#include <dix-config.h>
|
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
#include "inputstr.h" /* DeviceIntPtr */
|
2006-11-26 11:13:41 -07:00
|
|
|
#include <X11/extensions/XI.h>
|
|
|
|
#include <X11/extensions/XIproto.h>
|
|
|
|
#include "XIstubs.h"
|
|
|
|
#include "exglobals.h"
|
|
|
|
|
|
|
|
#include "setdval.h"
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* Handle a request from a client with a different byte order.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2007-11-24 10:55:21 -07:00
|
|
|
SProcXSetDeviceValuators(ClientPtr client)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
REQUEST(xSetDeviceValuatorsReq);
|
2012-06-10 07:21:05 -06:00
|
|
|
swaps(&stuff->length);
|
2006-11-26 11:13:41 -07:00
|
|
|
return (ProcXSetDeviceValuators(client));
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* This procedure sets the value of valuators on an extension input device.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2007-11-24 10:55:21 -07:00
|
|
|
ProcXSetDeviceValuators(ClientPtr client)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
DeviceIntPtr dev;
|
|
|
|
xSetDeviceValuatorsReply rep;
|
2008-11-02 08:26:08 -07:00
|
|
|
int rc;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
REQUEST(xSetDeviceValuatorsReq);
|
|
|
|
REQUEST_AT_LEAST_SIZE(xSetDeviceValuatorsReq);
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
rep = (xSetDeviceValuatorsReply) {
|
|
|
|
.repType = X_Reply,
|
|
|
|
.RepType = X_SetDeviceValuators,
|
|
|
|
.sequenceNumber = client->sequence,
|
|
|
|
.length = 0,
|
|
|
|
.status = Success
|
|
|
|
};
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (stuff->length != bytes_to_int32(sizeof(xSetDeviceValuatorsReq)) +
|
2012-06-10 07:21:05 -06:00
|
|
|
stuff->num_valuators)
|
|
|
|
return BadLength;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
rc = dixLookupDevice(&dev, stuff->deviceid, client, DixSetAttrAccess);
|
|
|
|
if (rc != Success)
|
2012-06-10 07:21:05 -06:00
|
|
|
return rc;
|
2008-11-02 08:26:08 -07:00
|
|
|
if (dev->valuator == NULL)
|
2012-06-10 07:21:05 -06:00
|
|
|
return BadMatch;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2014-05-02 13:27:46 -06:00
|
|
|
if (IsXTestDevice(dev, NULL))
|
|
|
|
return BadMatch;
|
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
if (stuff->first_valuator + stuff->num_valuators > dev->valuator->numAxes)
|
2012-06-10 07:21:05 -06:00
|
|
|
return BadValue;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
if ((dev->deviceGrab.grab) && !SameClient(dev->deviceGrab.grab, client))
|
2012-06-10 07:21:05 -06:00
|
|
|
rep.status = AlreadyGrabbed;
|
2006-11-26 11:13:41 -07:00
|
|
|
else
|
2012-06-10 07:21:05 -06:00
|
|
|
rep.status = SetDeviceValuators(client, dev, (int *) &stuff[1],
|
|
|
|
stuff->first_valuator,
|
|
|
|
stuff->num_valuators);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
if (rep.status != Success && rep.status != AlreadyGrabbed)
|
2012-06-10 07:21:05 -06:00
|
|
|
return rep.status;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
WriteReplyToClient(client, sizeof(xSetDeviceValuatorsReply), &rep);
|
2006-11-26 11:13:41 -07:00
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* This procedure writes the reply for the XSetDeviceValuators function,
|
|
|
|
* if the client and server have a different byte ordering.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
SRepXSetDeviceValuators(ClientPtr client, int size,
|
2012-06-10 07:21:05 -06:00
|
|
|
xSetDeviceValuatorsReply * rep)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
swaps(&rep->sequenceNumber);
|
|
|
|
swapl(&rep->length);
|
2013-06-07 11:28:45 -06:00
|
|
|
WriteToClient(client, size, rep);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|