2003-11-14 16:48:57 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
Copyright 1993 by Davor Matic
|
|
|
|
|
|
|
|
|
|
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. Davor Matic makes no representations about
|
|
|
|
|
the suitability of this software for any purpose. It is provided "as
|
|
|
|
|
is" without express or implied warranty.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef XNESTCURSOR_H
|
|
|
|
|
#define XNESTCURSOR_H
|
|
|
|
|
|
2008-06-09 11:23:53 +09:30
|
|
|
#include "mipointrst.h"
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
miPointerSpriteFuncPtr spriteFuncs;
|
|
|
|
|
} xnestCursorFuncRec, *xnestCursorFuncPtr;
|
|
|
|
|
|
2010-04-26 17:22:21 -07:00
|
|
|
extern DevPrivateKeyRec xnestCursorScreenKeyRec;
|
2012-03-21 12:55:09 -07:00
|
|
|
|
2010-04-26 17:22:21 -07:00
|
|
|
#define xnestCursorScreenKey (&xnestCursorScreenKeyRec)
|
2008-06-09 11:23:53 +09:30
|
|
|
extern xnestCursorFuncRec xnestCursorFuncs;
|
|
|
|
|
|
2003-11-14 16:48:57 +00:00
|
|
|
typedef struct {
|
2012-03-21 12:55:09 -07:00
|
|
|
Cursor cursor;
|
2003-11-14 16:48:57 +00:00
|
|
|
} xnestPrivCursor;
|
|
|
|
|
|
2008-08-27 19:27:13 -04:00
|
|
|
#define xnestGetCursorPriv(pCursor, pScreen) ((xnestPrivCursor *) \
|
2010-09-17 02:27:59 +02:00
|
|
|
dixLookupScreenPrivate(&(pCursor)->devPrivates, CursorScreenKey, pScreen))
|
2007-08-30 11:40:39 -04:00
|
|
|
|
|
|
|
|
#define xnestSetCursorPriv(pCursor, pScreen, v) \
|
2010-09-17 02:27:59 +02:00
|
|
|
dixSetScreenPrivate(&(pCursor)->devPrivates, CursorScreenKey, pScreen, v)
|
2003-11-14 16:48:57 +00:00
|
|
|
|
|
|
|
|
#define xnestCursor(pCursor, pScreen) \
|
2007-08-30 11:40:39 -04:00
|
|
|
(xnestGetCursorPriv(pCursor, pScreen)->cursor)
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2008-06-08 23:20:11 +09:30
|
|
|
Bool xnestRealizeCursor(DeviceIntPtr pDev,
|
2012-03-21 12:55:09 -07:00
|
|
|
ScreenPtr pScreen, CursorPtr pCursor);
|
2008-06-08 23:20:11 +09:30
|
|
|
Bool xnestUnrealizeCursor(DeviceIntPtr pDev,
|
2012-03-21 12:55:09 -07:00
|
|
|
ScreenPtr pScreen, CursorPtr pCursor);
|
|
|
|
|
void xnestRecolorCursor(ScreenPtr pScreen, CursorPtr pCursor, Bool displayed);
|
|
|
|
|
void xnestSetCursor(DeviceIntPtr pDev,
|
|
|
|
|
ScreenPtr pScreen, CursorPtr pCursor, int x, int y);
|
|
|
|
|
void xnestMoveCursor(DeviceIntPtr pDev, ScreenPtr pScreen, int x, int y);
|
2008-06-09 11:23:53 +09:30
|
|
|
Bool xnestDeviceCursorInitialize(DeviceIntPtr pDev, ScreenPtr pScreen);
|
|
|
|
|
void xnestDeviceCursorCleanup(DeviceIntPtr pDev, ScreenPtr pScreen);
|
2012-03-21 12:55:09 -07:00
|
|
|
#endif /* XNESTCURSOR_H */
|