Git init
[framework/uifw/xorg/lib/libxi.git] / src / XIWarpPointer.c
1 /************************************************************
2
3 Copyright 2006 Peter Hutterer <peter@cs.unisa.edu.au>
4
5 Permission to use, copy, modify, distribute, and sell this software and its
6 documentation for any purpose is hereby granted without fee, provided that
7 the above copyright notice appear in all copies and that both that
8 copyright notice and this permission notice appear in supporting
9 documentation.
10
11 The above copyright notice and this permission notice shall be included in
12 all copies or substantial portions of the Software.
13
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
17 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
21 Except as contained in this notice, the name of The Open Group shall not be
22 used in advertising or otherwise to promote the sale, use or other dealings
23 in this Software without prior written authorization from The Open Group.
24
25 */
26
27 /***********************************************************************
28  *
29  * XIWarpPointer - Warp the pointer of an extension input device.
30  *
31  */
32
33 #include <stdint.h>
34 #include <X11/extensions/XI2proto.h>
35 #include <X11/Xlibint.h>
36 #include <X11/extensions/XInput2.h>
37 #include <X11/extensions/extutil.h>
38 #include "XIint.h"
39
40 int
41 XIWarpPointer(Display      *dpy,
42               int          deviceid,
43               Window       src_win,
44               Window       dst_win,
45               double       src_x,
46               double       src_y,
47               unsigned int src_width,
48               unsigned int src_height,
49               double       dst_x,
50               double       dst_y)
51 {
52     xXIWarpPointerReq *req;
53
54     XExtDisplayInfo *info = XInput_find_display(dpy);
55
56     LockDisplay(dpy);
57     if (_XiCheckExtInit(dpy, Dont_Check, info) == -1)
58         return (NoSuchExtension);
59
60     GetReq(XIWarpPointer, req);
61     req->reqType = info->codes->major_opcode;
62     req->ReqType = X_XIWarpPointer;
63     req->deviceid = deviceid;
64     req->src_win = src_win;
65     req->dst_win = dst_win;
66     req->src_x = (int)(src_x * 65536.0);
67     req->src_y = (int)(src_y * 65536.0);
68     req->src_width = src_width;
69     req->src_height = src_height;
70     req->dst_x = (int)(dst_x * 65536.0);
71     req->dst_y = (int)(dst_y * 65536.0);
72
73
74     UnlockDisplay(dpy);
75     SyncHandle();
76     return Success;
77 }