xserver-multidpi/mi/mipointer.c

587 lines
16 KiB
C
Raw Normal View History

2003-11-14 16:54:54 +01:00
/*
Copyright 1989, 1998 The Open Group
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.
*/
#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif
# include <X11/X.h>
# include <X11/Xmd.h>
# include <X11/Xproto.h>
2003-11-14 16:54:54 +01:00
# include "misc.h"
# include "windowstr.h"
# include "pixmapstr.h"
# include "mi.h"
# include "scrnintstr.h"
# include "mipointrst.h"
# include "cursorstr.h"
# include "dixstruct.h"
# include "inputstr.h"
2003-11-14 16:54:54 +01:00
DevPrivateKeyRec miPointerScreenKeyRec;
2003-11-14 16:54:54 +01:00
#define GetScreenPrivate(s) ((miPointerScreenPtr) \
dixLookupPrivate(&(s)->devPrivates, miPointerScreenKey))
2003-11-14 16:54:54 +01:00
#define SetupScreen(s) miPointerScreenPtr pScreenPriv = GetScreenPrivate(s)
DevPrivateKeyRec miPointerPrivKeyRec;
2003-11-14 16:54:54 +01:00
#define MIPOINTER(dev) \
((!IsMaster(dev) && !dev->u.master) ? \
(miPointerPtr)dixLookupPrivate(&(dev)->devPrivates, miPointerPrivKey): \
(miPointerPtr)dixLookupPrivate(&(GetMaster(dev, MASTER_POINTER))->devPrivates, miPointerPrivKey))
static Bool miPointerRealizeCursor(DeviceIntPtr pDev, ScreenPtr pScreen,
CursorPtr pCursor);
static Bool miPointerUnrealizeCursor(DeviceIntPtr pDev, ScreenPtr pScreen,
CursorPtr pCursor);
static Bool miPointerDisplayCursor(DeviceIntPtr pDev, ScreenPtr pScreen,
CursorPtr pCursor);
2006-11-21 05:16:00 +01:00
static void miPointerConstrainCursor(DeviceIntPtr pDev, ScreenPtr pScreen,
BoxPtr pBox);
static void miPointerCursorLimits(DeviceIntPtr pDev, ScreenPtr pScreen,
CursorPtr pCursor, BoxPtr pHotBox,
BoxPtr pTopLeftBox);
static Bool miPointerSetCursorPosition(DeviceIntPtr pDev, ScreenPtr pScreen,
int x, int y,
2003-11-14 17:49:22 +01:00
Bool generateEvent);
static Bool miPointerCloseScreen(int index, ScreenPtr pScreen);
static void miPointerMove(DeviceIntPtr pDev, ScreenPtr pScreen,
int x, int y);
static Bool miPointerDeviceInitialize(DeviceIntPtr pDev, ScreenPtr pScreen);
static void miPointerDeviceCleanup(DeviceIntPtr pDev,
ScreenPtr pScreen);
static void miPointerMoveNoEvent (DeviceIntPtr pDev, ScreenPtr pScreen, int x, int y);
2003-11-14 16:54:54 +01:00
static EventList* events; /* for WarpPointer MotionNotifies */
Bool
2008-05-28 04:57:07 +02:00
miPointerInitialize (ScreenPtr pScreen,
miPointerSpriteFuncPtr spriteFuncs,
miPointerScreenFuncPtr screenFuncs,
Bool waitForUpdate)
2003-11-14 16:54:54 +01:00
{
miPointerScreenPtr pScreenPriv;
if (!dixRegisterPrivateKey(&miPointerScreenKeyRec, PRIVATE_SCREEN, 0))
return FALSE;
if (!dixRegisterPrivateKey(&miPointerPrivKeyRec, PRIVATE_DEVICE, 0))
return FALSE;
pScreenPriv = malloc(sizeof (miPointerScreenRec));
2003-11-14 16:54:54 +01:00
if (!pScreenPriv)
return FALSE;
pScreenPriv->spriteFuncs = spriteFuncs;
pScreenPriv->screenFuncs = screenFuncs;
/*
* check for uninitialized methods
*/
if (!screenFuncs->EnqueueEvent)
screenFuncs->EnqueueEvent = mieqEnqueue;
if (!screenFuncs->NewEventScreen)
screenFuncs->NewEventScreen = mieqSwitchScreen;
pScreenPriv->waitForUpdate = waitForUpdate;
2003-11-14 17:49:22 +01:00
pScreenPriv->showTransparent = FALSE;
2003-11-14 16:54:54 +01:00
pScreenPriv->CloseScreen = pScreen->CloseScreen;
pScreen->CloseScreen = miPointerCloseScreen;
dixSetPrivate(&pScreen->devPrivates, miPointerScreenKey, pScreenPriv);
2003-11-14 16:54:54 +01:00
/*
* set up screen cursor method table
*/
pScreen->ConstrainCursor = miPointerConstrainCursor;
pScreen->CursorLimits = miPointerCursorLimits;
pScreen->DisplayCursor = miPointerDisplayCursor;
pScreen->RealizeCursor = miPointerRealizeCursor;
pScreen->UnrealizeCursor = miPointerUnrealizeCursor;
pScreen->SetCursorPosition = miPointerSetCursorPosition;
pScreen->RecolorCursor = miRecolorCursor;
pScreen->DeviceCursorInitialize = miPointerDeviceInitialize;
pScreen->DeviceCursorCleanup = miPointerDeviceCleanup;
events = NULL;
2003-11-14 16:54:54 +01:00
return TRUE;
}
static Bool
2008-05-28 04:57:07 +02:00
miPointerCloseScreen (int index, ScreenPtr pScreen)
2003-11-14 16:54:54 +01:00
{
#if 0
miPointerPtr pPointer;
DeviceIntPtr pDev;
#endif
2003-11-14 16:54:54 +01:00
SetupScreen(pScreen);
#if 0
for (pDev = inputInfo.devices; pDev; pDev = pDev->next)
{
if (DevHasCursor(pDev))
{
pPointer = MIPOINTER(pDev);
if (pScreen == pPointer->pScreen)
pPointer->pScreen = 0;
if (pScreen == pPointer->pSpriteScreen)
pPointer->pSpriteScreen = 0;
}
}
if (MIPOINTER(inputInfo.pointer)->pScreen == pScreen)
MIPOINTER(inputInfo.pointer)->pScreen = 0;
if (MIPOINTER(inputInfo.pointer)->pSpriteScreen == pScreen)
MIPOINTER(inputInfo.pointer)->pSpriteScreen = 0;
#endif
2003-11-14 16:54:54 +01:00
pScreen->CloseScreen = pScreenPriv->CloseScreen;
free((pointer) pScreenPriv);
FreeEventList(events, GetMaximumEventsNum());
events = NULL;
2003-11-14 16:54:54 +01:00
return (*pScreen->CloseScreen) (index, pScreen);
}
/*
* DIX/DDX interface routines
*/
static Bool
2008-05-28 04:57:07 +02:00
miPointerRealizeCursor (DeviceIntPtr pDev, ScreenPtr pScreen, CursorPtr pCursor)
2003-11-14 16:54:54 +01:00
{
SetupScreen(pScreen);
return (*pScreenPriv->spriteFuncs->RealizeCursor) (pDev, pScreen, pCursor);
2003-11-14 16:54:54 +01:00
}
static Bool
2008-05-28 04:57:07 +02:00
miPointerUnrealizeCursor (DeviceIntPtr pDev,
ScreenPtr pScreen,
CursorPtr pCursor)
2003-11-14 16:54:54 +01:00
{
SetupScreen(pScreen);
return (*pScreenPriv->spriteFuncs->UnrealizeCursor) (pDev, pScreen, pCursor);
2003-11-14 16:54:54 +01:00
}
static Bool
2008-05-28 04:57:07 +02:00
miPointerDisplayCursor (DeviceIntPtr pDev, ScreenPtr pScreen, CursorPtr pCursor)
2003-11-14 16:54:54 +01:00
{
miPointerPtr pPointer;
2008-05-28 04:57:07 +02:00
/* return for keyboards */
if ((IsMaster(pDev) && !DevHasCursor(pDev)) ||
(!IsMaster(pDev) && pDev->u.master && !DevHasCursor(pDev->u.master)))
return FALSE;
pPointer = MIPOINTER(pDev);
pPointer->pCursor = pCursor;
pPointer->pScreen = pScreen;
miPointerUpdateSprite(pDev);
2003-11-14 16:54:54 +01:00
return TRUE;
}
static void
2008-05-28 04:57:07 +02:00
miPointerConstrainCursor (DeviceIntPtr pDev, ScreenPtr pScreen, BoxPtr pBox)
2003-11-14 16:54:54 +01:00
{
miPointerPtr pPointer;
pPointer = MIPOINTER(pDev);
pPointer->limits = *pBox;
pPointer->confined = PointerConfinedToScreen(pDev);
2003-11-14 16:54:54 +01:00
}
/*ARGSUSED*/
static void
2008-05-28 04:57:07 +02:00
miPointerCursorLimits(DeviceIntPtr pDev, ScreenPtr pScreen, CursorPtr pCursor,
BoxPtr pHotBox, BoxPtr pTopLeftBox)
2003-11-14 16:54:54 +01:00
{
*pTopLeftBox = *pHotBox;
}
static Bool GenerateEvent;
static Bool
2008-05-28 04:57:07 +02:00
miPointerSetCursorPosition(DeviceIntPtr pDev, ScreenPtr pScreen,
int x, int y, Bool generateEvent)
2003-11-14 16:54:54 +01:00
{
SetupScreen (pScreen);
GenerateEvent = generateEvent;
/* device dependent - must pend signal and call miPointerWarpCursor */
(*pScreenPriv->screenFuncs->WarpCursor) (pDev, pScreen, x, y);
2003-11-14 16:54:54 +01:00
if (!generateEvent)
miPointerUpdateSprite(pDev);
2003-11-14 16:54:54 +01:00
return TRUE;
}
2008-05-28 04:57:07 +02:00
/* Set up sprite information for the device.
This function will be called once for each device after it is initialized
in the DIX.
2008-05-28 04:57:07 +02:00
*/
static Bool
2008-05-28 04:57:07 +02:00
miPointerDeviceInitialize(DeviceIntPtr pDev, ScreenPtr pScreen)
{
miPointerPtr pPointer;
SetupScreen (pScreen);
pPointer = malloc(sizeof(miPointerRec));
if (!pPointer)
return FALSE;
pPointer->pScreen = NULL;
pPointer->pSpriteScreen = NULL;
pPointer->pCursor = NULL;
pPointer->pSpriteCursor = NULL;
pPointer->limits.x1 = 0;
pPointer->limits.x2 = 32767;
pPointer->limits.y1 = 0;
pPointer->limits.y2 = 32767;
pPointer->confined = FALSE;
pPointer->x = 0;
pPointer->y = 0;
if (!((*pScreenPriv->spriteFuncs->DeviceCursorInitialize)(pDev, pScreen)))
{
free(pPointer);
return FALSE;
}
dixSetPrivate(&pDev->devPrivates, miPointerPrivKey, pPointer);
return TRUE;
}
2008-05-28 04:57:07 +02:00
/* Clean up after device.
This function will be called once before the device is freed in the DIX
*/
static void
2008-05-28 04:57:07 +02:00
miPointerDeviceCleanup(DeviceIntPtr pDev, ScreenPtr pScreen)
{
2009-01-11 08:42:57 +01:00
SetupScreen(pScreen);
if (!IsMaster(pDev) && pDev->u.master)
return;
(*pScreenPriv->spriteFuncs->DeviceCursorCleanup)(pDev, pScreen);
free(dixLookupPrivate(&pDev->devPrivates, miPointerPrivKey));
dixSetPrivate(&pDev->devPrivates, miPointerPrivKey, NULL);
}
2003-11-14 16:54:54 +01:00
/* Once signals are ignored, the WarpCursor function can call this */
void
2008-05-28 04:57:07 +02:00
miPointerWarpCursor (DeviceIntPtr pDev, ScreenPtr pScreen, int x, int y)
2003-11-14 16:54:54 +01:00
{
miPointerPtr pPointer;
BOOL changedScreen = FALSE;
2003-11-14 16:54:54 +01:00
SetupScreen (pScreen);
2009-01-11 08:42:57 +01:00
pPointer = MIPOINTER(pDev);
2003-11-14 16:54:54 +01:00
if (pPointer->pScreen != pScreen)
{
(*pScreenPriv->screenFuncs->NewEventScreen) (pDev, pScreen, TRUE);
changedScreen = TRUE;
}
2003-11-14 16:54:54 +01:00
if (GenerateEvent)
miPointerMove (pDev, pScreen, x, y);
2003-11-14 16:54:54 +01:00
else
miPointerMoveNoEvent(pDev, pScreen, x, y);
/* Don't call USFS if we use Xinerama, otherwise the root window is
* updated to the second screen, and we never receive any events.
* (FDO bug #18668) */
if (changedScreen
#ifdef PANORAMIX
&& noPanoramiXExtension
#endif
)
UpdateSpriteForScreen (pDev, pScreen) ;
2003-11-14 16:54:54 +01:00
}
/*
* Pointer/CursorDisplay interface routines
*/
/*
* miPointerUpdateSprite
2003-11-14 16:54:54 +01:00
*
* Syncronize the sprite with the cursor - called from ProcessInputEvents
*/
void
miPointerUpdateSprite (DeviceIntPtr pDev)
2003-11-14 16:54:54 +01:00
{
ScreenPtr pScreen;
miPointerScreenPtr pScreenPriv;
2003-11-14 17:49:22 +01:00
CursorPtr pCursor;
2003-11-14 16:54:54 +01:00
int x, y, devx, devy;
miPointerPtr pPointer;
2003-11-14 16:54:54 +01:00
if (!pDev || !pDev->coreEvents)
return;
pPointer = MIPOINTER(pDev);
if (!pPointer)
return;
pScreen = pPointer->pScreen;
if (!pScreen)
return;
x = pPointer->x;
y = pPointer->y;
devx = pPointer->devx;
devy = pPointer->devy;
2003-11-14 16:54:54 +01:00
pScreenPriv = GetScreenPrivate (pScreen);
/*
* if the cursor has switched screens, disable the sprite
* on the old screen
*/
if (pScreen != pPointer->pSpriteScreen)
2003-11-14 16:54:54 +01:00
{
if (pPointer->pSpriteScreen)
2003-11-14 16:54:54 +01:00
{
miPointerScreenPtr pOldPriv;
pOldPriv = GetScreenPrivate (pPointer->pSpriteScreen);
if (pPointer->pCursor)
2003-11-14 16:54:54 +01:00
{
(*pOldPriv->spriteFuncs->SetCursor)
(pDev, pPointer->pSpriteScreen, NullCursor, 0, 0);
2003-11-14 16:54:54 +01:00
}
(*pOldPriv->screenFuncs->CrossScreen) (pPointer->pSpriteScreen, FALSE);
2003-11-14 16:54:54 +01:00
}
(*pScreenPriv->screenFuncs->CrossScreen) (pScreen, TRUE);
(*pScreenPriv->spriteFuncs->SetCursor)
(pDev, pScreen, pPointer->pCursor, x, y);
pPointer->devx = x;
pPointer->devy = y;
pPointer->pSpriteCursor = pPointer->pCursor;
pPointer->pSpriteScreen = pScreen;
2003-11-14 16:54:54 +01:00
}
/*
* if the cursor has changed, display the new one
*/
else if (pPointer->pCursor != pPointer->pSpriteCursor)
2003-11-14 16:54:54 +01:00
{
pCursor = pPointer->pCursor;
if (!pCursor || (pCursor->bits->emptyMask && !pScreenPriv->showTransparent))
2003-11-14 17:49:22 +01:00
pCursor = NullCursor;
(*pScreenPriv->spriteFuncs->SetCursor) (pDev, pScreen, pCursor, x, y);
2003-11-14 17:49:22 +01:00
pPointer->devx = x;
pPointer->devy = y;
pPointer->pSpriteCursor = pPointer->pCursor;
2003-11-14 16:54:54 +01:00
}
else if (x != devx || y != devy)
{
pPointer->devx = x;
pPointer->devy = y;
if(pPointer->pCursor && !pPointer->pCursor->bits->emptyMask)
(*pScreenPriv->spriteFuncs->MoveCursor) (pDev, pScreen, x, y);
2003-11-14 16:54:54 +01:00
}
}
void
miPointerSetScreen(DeviceIntPtr pDev, int screen_no, int x, int y)
2003-11-14 17:49:22 +01:00
{
miPointerScreenPtr pScreenPriv;
ScreenPtr pScreen;
miPointerPtr pPointer;
pPointer = MIPOINTER(pDev);
2003-11-14 17:49:22 +01:00
pScreen = screenInfo.screens[screen_no];
pScreenPriv = GetScreenPrivate (pScreen);
(*pScreenPriv->screenFuncs->NewEventScreen) (pDev, pScreen, FALSE);
NewCurrentScreen (pDev, pScreen, x, y);
pPointer->limits.x2 = pScreen->width;
pPointer->limits.y2 = pScreen->height;
2003-11-14 17:49:22 +01:00
}
ScreenPtr
2009-01-11 08:42:28 +01:00
miPointerCurrentScreen (void)
2003-11-14 17:49:22 +01:00
{
return miPointerGetScreen(inputInfo.pointer);
2003-11-14 17:49:22 +01:00
}
ScreenPtr
miPointerGetScreen(DeviceIntPtr pDev)
{
miPointerPtr pPointer = MIPOINTER(pDev);
return (pPointer) ? pPointer->pScreen : NULL;
}
2003-11-14 16:54:54 +01:00
/* Controls whether the cursor image should be updated immediately when
moved (FALSE) or if something else will be responsible for updating
it later (TRUE). Returns current setting.
Caller is responsible for calling OsBlockSignal first.
*/
Bool
miPointerSetWaitForUpdate(ScreenPtr pScreen, Bool wait)
{
SetupScreen(pScreen);
Bool prevWait = pScreenPriv->waitForUpdate;
pScreenPriv->waitForUpdate = wait;
return prevWait;
}
2007-03-25 23:56:32 +02:00
/* Move the pointer on the current screen, and update the sprite. */
static void
miPointerMoveNoEvent (DeviceIntPtr pDev, ScreenPtr pScreen,
int x, int y)
2007-03-25 23:56:32 +02:00
{
miPointerPtr pPointer;
2007-03-25 23:56:32 +02:00
SetupScreen(pScreen);
pPointer = MIPOINTER(pDev);
/* Hack: We mustn't call into ->MoveCursor for anything but the
* VCP, as this may cause a non-HW rendered cursor to be rendered during
* SIGIO. This again leads to allocs during SIGIO which leads to SIGABRT.
*/
if ((pDev == inputInfo.pointer || (!IsMaster(pDev) && pDev->u.master == inputInfo.pointer))
&& !pScreenPriv->waitForUpdate && pScreen == pPointer->pSpriteScreen)
2007-03-25 23:56:32 +02:00
{
pPointer->devx = x;
pPointer->devy = y;
if(pPointer->pCursor && !pPointer->pCursor->bits->emptyMask)
(*pScreenPriv->spriteFuncs->MoveCursor) (pDev, pScreen, x, y);
2007-03-25 23:56:32 +02:00
}
pPointer->x = x;
pPointer->y = y;
pPointer->pScreen = pScreen;
2007-03-25 23:56:32 +02:00
}
void
miPointerSetPosition(DeviceIntPtr pDev, int *x, int *y)
2003-11-14 16:54:54 +01:00
{
miPointerScreenPtr pScreenPriv;
ScreenPtr pScreen;
ScreenPtr newScreen;
miPointerPtr pPointer;
if (!pDev || !pDev->coreEvents)
return;
pPointer = MIPOINTER(pDev);
pScreen = pPointer->pScreen;
2003-11-14 16:54:54 +01:00
if (!pScreen)
return; /* called before ready */
if (*x < 0 || *x >= pScreen->width || *y < 0 || *y >= pScreen->height)
2003-11-14 16:54:54 +01:00
{
pScreenPriv = GetScreenPrivate (pScreen);
if (!pPointer->confined)
2003-11-14 16:54:54 +01:00
{
newScreen = pScreen;
(*pScreenPriv->screenFuncs->CursorOffScreen) (&newScreen, x, y);
2003-11-14 16:54:54 +01:00
if (newScreen != pScreen)
{
pScreen = newScreen;
(*pScreenPriv->screenFuncs->NewEventScreen) (pDev, pScreen,
FALSE);
2003-11-14 16:54:54 +01:00
pScreenPriv = GetScreenPrivate (pScreen);
/* Smash the confine to the new screen */
pPointer->limits.x2 = pScreen->width;
pPointer->limits.y2 = pScreen->height;
2003-11-14 16:54:54 +01:00
}
}
}
/* Constrain the sprite to the current limits. */
if (*x < pPointer->limits.x1)
*x = pPointer->limits.x1;
if (*x >= pPointer->limits.x2)
*x = pPointer->limits.x2 - 1;
if (*y < pPointer->limits.y1)
*y = pPointer->limits.y1;
if (*y >= pPointer->limits.y2)
*y = pPointer->limits.y2 - 1;
if (pPointer->x == *x && pPointer->y == *y &&
pPointer->pScreen == pScreen)
return;
miPointerMoveNoEvent(pDev, pScreen, *x, *y);
2003-11-14 16:54:54 +01:00
}
void
miPointerGetPosition(DeviceIntPtr pDev, int *x, int *y)
2003-11-14 16:54:54 +01:00
{
*x = MIPOINTER(pDev)->x;
*y = MIPOINTER(pDev)->y;
2003-11-14 16:54:54 +01:00
}
#ifdef XQUARTZ
#include <pthread.h>
void darwinEvents_lock(void);
void darwinEvents_unlock(void);
#endif
void
miPointerMove (DeviceIntPtr pDev, ScreenPtr pScreen, int x, int y)
{
int i, nevents;
int valuators[2];
miPointerMoveNoEvent(pDev, pScreen, x, y);
/* generate motion notify */
valuators[0] = x;
valuators[1] = y;
if (!events)
{
events = InitEventList(GetMaximumEventsNum());
if (!events)
{
FatalError("Could not allocate event store.\n");
return;
}
}
nevents = GetPointerEvents(events, pDev, MotionNotify, 0, POINTER_SCREEN | POINTER_ABSOLUTE, 0, 2, valuators);
OsBlockSignals();
#ifdef XQUARTZ
darwinEvents_lock();
#endif
for (i = 0; i < nevents; i++)
mieqEnqueue(pDev, (InternalEvent*)events[i].event);
#ifdef XQUARTZ
darwinEvents_unlock();
#endif
OsReleaseSignals();
}