diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-06-02 11:38:35 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-06-02 13:25:49 +1000 |
commit | 59dc570e6ad4adab8066c7b8d2bff77cbf70bed4 (patch) | |
tree | 7e7376407531834e0c213b9655c5fdb985469084 /src/XIWarpPointer.c | |
parent | 2174d35d5cdc475699be968a0c1b1aa82566171f (diff) |
Rename remaining XI2 sources to XI<foobar>.c
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src/XIWarpPointer.c')
-rw-r--r-- | src/XIWarpPointer.c | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/src/XIWarpPointer.c b/src/XIWarpPointer.c new file mode 100644 index 0000000..60188db --- /dev/null +++ b/src/XIWarpPointer.c @@ -0,0 +1,77 @@ +/************************************************************ + +Copyright 2006 Peter Hutterer <peter@cs.unisa.edu.au> + +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. + +*/ + +/*********************************************************************** + * + * XIWarpPointer - Warp the pointer of an extension input device. + * + */ + +#include <stdint.h> +#include <X11/extensions/XI2proto.h> +#include <X11/Xlibint.h> +#include <X11/extensions/XInput2.h> +#include <X11/extensions/extutil.h> +#include "XIint.h" + +int +XIWarpPointer(Display *dpy, + int deviceid, + Window src_win, + Window dst_win, + int src_x, + int src_y, + unsigned int src_width, + unsigned int src_height, + int dst_x, + int dst_y) +{ + xXIWarpPointerReq *req; + + XExtDisplayInfo *info = XInput_find_display(dpy); + + LockDisplay(dpy); + if (_XiCheckExtInit(dpy, Dont_Check, info) == -1) + return (NoSuchExtension); + + GetReq(XIWarpPointer, req); + req->reqType = info->codes->major_opcode; + req->ReqType = X_XIWarpPointer; + req->deviceid = deviceid; + req->src_win = src_win; + req->dst_win = dst_win; + req->src_x = src_x; + req->src_y = src_y; + req->src_width = src_width; + req->src_height = src_height; + req->dst_x = dst_x; + req->dst_y = dst_y; + + + UnlockDisplay(dpy); + SyncHandle(); + return Success; +} |