~ubuntu-branches/ubuntu/natty/libxi/natty-201011191114

« back to all changes in this revision

Viewing changes to src/XIDefineCursor.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2009-11-21 18:39:28 UTC
  • mfrom: (1.1.10 upstream) (0.1.6 experimental)
  • Revision ID: james.westby@ubuntu.com-20091121183928-ek2jwqx3rmhv3zjz
Tags: 2:1.3-1
* Bump Standards-Version to 3.8.3.
* Add build-deps on xmlto and asciidoc to build the manpages.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 * XIDefineCursor - Change the cursor of an extension input device.
 
30
 *
 
31
 */
 
32
#include <stdint.h>
 
33
#include <X11/extensions/XI2proto.h>
 
34
#include <X11/Xlibint.h>
 
35
#include <X11/extensions/XInput2.h>
 
36
#include <X11/extensions/extutil.h>
 
37
#include "XIint.h"
 
38
 
 
39
 
 
40
int XIDefineCursor(Display *dpy, int deviceid, Window w, Cursor cursor)
 
41
{
 
42
    xXIChangeCursorReq *req;
 
43
 
 
44
    XExtDisplayInfo *info = XInput_find_display(dpy);
 
45
    LockDisplay(dpy);
 
46
 
 
47
    if (_XiCheckExtInit(dpy, Dont_Check, info) == -1)
 
48
        return (NoSuchExtension);
 
49
 
 
50
    GetReq(XIChangeCursor, req);
 
51
    req->reqType = info->codes->major_opcode;
 
52
    req->ReqType = X_XIChangeCursor;
 
53
    req->deviceid = deviceid;
 
54
    req->win = w;
 
55
    req->cursor = cursor;
 
56
    UnlockDisplay(dpy);
 
57
    SyncHandle();
 
58
    return Success;
 
59
}
 
60
 
 
61
int XIUndefineCursor(Display *dpy, int deviceid, Window w)
 
62
{
 
63
    return XIDefineCursor(dpy, deviceid, w, None);
 
64
}
 
65