f78b12e570284aa8291f4ca1add24937fd107403vboxsync/*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * Copyright 2001-2004 Red Hat Inc., Durham, North Carolina.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * All Rights Reserved.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * Permission is hereby granted, free of charge, to any person obtaining
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * a copy of this software and associated documentation files (the
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * "Software"), to deal in the Software without restriction, including
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * without limitation on the rights to use, copy, modify, merge,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * publish, distribute, sublicense, and/or sell copies of the Software,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * and to permit persons to whom the Software is furnished to do so,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * subject to the following conditions:
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * The above copyright notice and this permission notice (including the
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * next paragraph) shall be included in all copies or substantial
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * portions of the Software.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * SOFTWARE.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync */
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync/*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * Authors:
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * David H. Dawes <dawes@xfree86.org>
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * Kevin E. Martin <kem@redhat.com>
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * Rickard E. (Rik) Faith <faith@redhat.com>
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync */
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync/** \file
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * Interface for cursor support. \see dmxcursor.c. */
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#ifndef DMXCURSOR_H
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#define DMXCURSOR_H
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#include "mipointer.h"
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync/** Cursor private area. */
f78b12e570284aa8291f4ca1add24937fd107403vboxsynctypedef struct _dmxCursorPriv {
f78b12e570284aa8291f4ca1add24937fd107403vboxsync Cursor cursor;
f78b12e570284aa8291f4ca1add24937fd107403vboxsync} dmxCursorPrivRec, *dmxCursorPrivPtr;
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync/** Cursor functions for mi layer. \see dmxcursor.c \see dmxscrinit.c */
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern miPointerScreenFuncRec dmxPointerCursorFuncs;
f78b12e570284aa8291f4ca1add24937fd107403vboxsync/** Sprite functions for mi layer. \see dmxcursor.c \see dmxscrinit.c */
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern miPointerSpriteFuncRec dmxPointerSpriteFuncs;
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxReInitOrigins(void);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxInitOrigins(void);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxInitOverlap(void);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxCursorNoMulti(void);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxMoveCursor(DeviceIntPtr pDev, ScreenPtr pScreen, int x, int y);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxCheckCursor(void);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern int dmxOnScreen(int x, int y, DMXScreenInfo *dmxScreen);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxHideCursor(DMXScreenInfo *dmxScreen);
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxBECreateCursor(ScreenPtr pScreen, CursorPtr pCursor);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern Bool dmxBEFreeCursor(ScreenPtr pScreen, CursorPtr pCursor);
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#define DMX_GET_CURSOR_PRIV(_pCursor, _pScreen) ((dmxCursorPrivPtr) \
f78b12e570284aa8291f4ca1add24937fd107403vboxsync dixLookupPrivate(&(_pCursor)->devPrivates, CursorScreenKey(_pScreen)))
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#define DMX_SET_CURSOR_PRIV(_pCursor, _pScreen, v) \
f78b12e570284aa8291f4ca1add24937fd107403vboxsync dixSetPrivate(&(_pCursor)->devPrivates, CursorScreenKey(_pScreen), v)
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#endif /* DMXCURSOR_H */