2006-11-26 11:13:41 -07: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
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
#include "mipointrst.h"
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
miPointerSpriteFuncPtr spriteFuncs;
|
|
|
|
} xnestCursorFuncRec, *xnestCursorFuncPtr;
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
extern DevPrivateKeyRec xnestCursorScreenKeyRec;
|
|
|
|
#define xnestCursorScreenKey (&xnestCursorScreenKeyRec)
|
2009-09-06 13:44:18 -06:00
|
|
|
extern xnestCursorFuncRec xnestCursorFuncs;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
typedef struct {
|
|
|
|
Cursor cursor;
|
|
|
|
} xnestPrivCursor;
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
#define xnestGetCursorPriv(pCursor, pScreen) ((xnestPrivCursor *) \
|
|
|
|
dixLookupPrivate(&(pCursor)->devPrivates, CursorScreenKey(pScreen)))
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
#define xnestSetCursorPriv(pCursor, pScreen, v) \
|
2009-09-06 13:44:18 -06:00
|
|
|
dixSetPrivate(&(pCursor)->devPrivates, CursorScreenKey(pScreen), v)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#define xnestCursor(pCursor, pScreen) \
|
2008-11-02 08:26:08 -07:00
|
|
|
(xnestGetCursorPriv(pCursor, pScreen)->cursor)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
Bool xnestRealizeCursor(DeviceIntPtr pDev,
|
|
|
|
ScreenPtr pScreen,
|
|
|
|
CursorPtr pCursor);
|
|
|
|
Bool xnestUnrealizeCursor(DeviceIntPtr pDev,
|
|
|
|
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);
|
|
|
|
Bool xnestDeviceCursorInitialize(DeviceIntPtr pDev, ScreenPtr pScreen);
|
|
|
|
void xnestDeviceCursorCleanup(DeviceIntPtr pDev, ScreenPtr pScreen);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif /* XNESTCURSOR_H */
|