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/XIDefineCursor.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/XIDefineCursor.c')
-rw-r--r-- | src/XIDefineCursor.c | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/XIDefineCursor.c b/src/XIDefineCursor.c new file mode 100644 index 0000000..5ad1534 --- /dev/null +++ b/src/XIDefineCursor.c @@ -0,0 +1,65 @@ +/************************************************************ + +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. + +*/ + +/*********************************************************************** + * + * XIDefineCursor - Change the cursor 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 XIDefineCursor(Display *dpy, int deviceid, Window w, Cursor cursor) +{ + xXIChangeCursorReq *req; + + XExtDisplayInfo *info = XInput_find_display(dpy); + LockDisplay(dpy); + + if (_XiCheckExtInit(dpy, Dont_Check, info) == -1) + return (NoSuchExtension); + + GetReq(XIChangeCursor, req); + req->reqType = info->codes->major_opcode; + req->ReqType = X_XIChangeCursor; + req->deviceid = deviceid; + req->win = w; + req->cursor = cursor; + UnlockDisplay(dpy); + SyncHandle(); + return Success; +} + +int XIUndefineCursor(Display *dpy, int deviceid, Window w) +{ + return XIDefineCursor(dpy, deviceid, w, None); +} + |