(!1714) composite: use window position notify hook
Wrapping ScreenRec's function pointers is problematic for many reasons, so use the new window position notify hook instead. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
479484b631
commit
9dad5500ac
|
@ -79,10 +79,10 @@ compCloseScreen(ScreenPtr pScreen)
|
||||||
pScreen->RealizeWindow = cs->RealizeWindow;
|
pScreen->RealizeWindow = cs->RealizeWindow;
|
||||||
pScreen->CreateWindow = cs->CreateWindow;
|
pScreen->CreateWindow = cs->CreateWindow;
|
||||||
pScreen->CopyWindow = cs->CopyWindow;
|
pScreen->CopyWindow = cs->CopyWindow;
|
||||||
pScreen->PositionWindow = cs->PositionWindow;
|
|
||||||
pScreen->SourceValidate = cs->SourceValidate;
|
pScreen->SourceValidate = cs->SourceValidate;
|
||||||
|
|
||||||
dixScreenUnhookWindowDestroy(pScreen, compWindowDestroy);
|
dixScreenUnhookWindowDestroy(pScreen, compWindowDestroy);
|
||||||
|
dixScreenUnhookWindowPosition(pScreen, compWindowPosition);
|
||||||
|
|
||||||
free(cs);
|
free(cs);
|
||||||
dixSetPrivate(&pScreen->devPrivates, CompScreenPrivateKey, NULL);
|
dixSetPrivate(&pScreen->devPrivates, CompScreenPrivateKey, NULL);
|
||||||
|
@ -371,9 +371,7 @@ compScreenInit(ScreenPtr pScreen)
|
||||||
pScreen->backingStoreSupport = WhenMapped;
|
pScreen->backingStoreSupport = WhenMapped;
|
||||||
|
|
||||||
dixScreenHookWindowDestroy(pScreen, compWindowDestroy);
|
dixScreenHookWindowDestroy(pScreen, compWindowDestroy);
|
||||||
|
dixScreenHookWindowPosition(pScreen, compWindowPosition);
|
||||||
cs->PositionWindow = pScreen->PositionWindow;
|
|
||||||
pScreen->PositionWindow = compPositionWindow;
|
|
||||||
|
|
||||||
cs->CopyWindow = pScreen->CopyWindow;
|
cs->CopyWindow = pScreen->CopyWindow;
|
||||||
pScreen->CopyWindow = compCopyWindow;
|
pScreen->CopyWindow = compCopyWindow;
|
||||||
|
|
|
@ -124,7 +124,6 @@ typedef struct _CompImplicitRedirectException {
|
||||||
} CompImplicitRedirectException;
|
} CompImplicitRedirectException;
|
||||||
|
|
||||||
typedef struct _CompScreen {
|
typedef struct _CompScreen {
|
||||||
PositionWindowProcPtr PositionWindow;
|
|
||||||
CopyWindowProcPtr CopyWindow;
|
CopyWindowProcPtr CopyWindow;
|
||||||
CreateWindowProcPtr CreateWindow;
|
CreateWindowProcPtr CreateWindow;
|
||||||
RealizeWindowProcPtr RealizeWindow;
|
RealizeWindowProcPtr RealizeWindow;
|
||||||
|
@ -278,8 +277,9 @@ void
|
||||||
Bool
|
Bool
|
||||||
compCheckRedirect(WindowPtr pWin);
|
compCheckRedirect(WindowPtr pWin);
|
||||||
|
|
||||||
Bool
|
void compWindowPosition(CallbackListPtr *pcbl,
|
||||||
compPositionWindow(WindowPtr pWin, int x, int y);
|
ScreenPtr pScreen,
|
||||||
|
XorgScreenWindowPositionParamRec *param);
|
||||||
|
|
||||||
Bool
|
Bool
|
||||||
compRealizeWindow(WindowPtr pWin);
|
compRealizeWindow(WindowPtr pWin);
|
||||||
|
|
|
@ -224,14 +224,9 @@ updateOverlayWindow(ScreenPtr pScreen)
|
||||||
return Success;
|
return Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
Bool
|
void compWindowPosition(CallbackListPtr *pcbl, ScreenPtr pScreen, XorgScreenWindowPositionParamRec *param)
|
||||||
compPositionWindow(WindowPtr pWin, int x, int y)
|
|
||||||
{
|
{
|
||||||
ScreenPtr pScreen = pWin->drawable.pScreen;
|
WindowPtr pWin = param->window;
|
||||||
CompScreenPtr cs = GetCompScreen(pScreen);
|
|
||||||
Bool ret = TRUE;
|
|
||||||
|
|
||||||
pScreen->PositionWindow = cs->PositionWindow;
|
|
||||||
/*
|
/*
|
||||||
* "Shouldn't need this as all possible places should be wrapped
|
* "Shouldn't need this as all possible places should be wrapped
|
||||||
*
|
*
|
||||||
|
@ -255,14 +250,8 @@ compPositionWindow(WindowPtr pWin, int x, int y)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(*pScreen->PositionWindow) (pWin, x, y))
|
|
||||||
ret = FALSE;
|
|
||||||
cs->PositionWindow = pScreen->PositionWindow;
|
|
||||||
pScreen->PositionWindow = compPositionWindow;
|
|
||||||
compCheckTree(pWin->drawable.pScreen);
|
compCheckTree(pWin->drawable.pScreen);
|
||||||
if (updateOverlayWindow(pScreen) != Success)
|
updateOverlayWindow(pScreen);
|
||||||
ret = FALSE;
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Bool
|
Bool
|
||||||
|
|
Loading…
Reference in New Issue