diff options
author | marha <marha@users.sourceforge.net> | 2010-06-23 06:38:04 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-06-23 06:38:04 +0000 |
commit | c356d5298f18cd103ef7caad015d98d2022044ac (patch) | |
tree | 6eb4fe5cf11588223e1d1da94d5ed41ca5e6f96c /xorg-server/composite/compint.h | |
parent | 5bb359288aac7b23042dc168608f2ced46c851da (diff) | |
download | vcxsrv-c356d5298f18cd103ef7caad015d98d2022044ac.tar.gz vcxsrv-c356d5298f18cd103ef7caad015d98d2022044ac.tar.bz2 vcxsrv-c356d5298f18cd103ef7caad015d98d2022044ac.zip |
xserver git update 23/6/2010
Diffstat (limited to 'xorg-server/composite/compint.h')
-rw-r--r-- | xorg-server/composite/compint.h | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/xorg-server/composite/compint.h b/xorg-server/composite/compint.h index e02d22c6b..8213c1605 100644 --- a/xorg-server/composite/compint.h +++ b/xorg-server/composite/compint.h @@ -127,9 +127,14 @@ typedef struct _CompScreen { UnrealizeWindowProcPtr UnrealizeWindow;
ClipNotifyProcPtr ClipNotify;
/*
- * Called from ConfigureWindow.
+ * Called from ConfigureWindow, these
+ * three track changes to the offscreen storage
+ * geometry
*/
ConfigNotifyProcPtr ConfigNotify;
+ MoveWindowProcPtr MoveWindow;
+ ResizeWindowProcPtr ResizeWindow;
+ ChangeBorderWidthProcPtr ChangeBorderWidth;
/*
* Reparenting has an effect on Subwindows redirect
*/
@@ -281,6 +286,16 @@ void compClipNotify (WindowPtr pWin, int dx, int dy);
void
+compMoveWindow (WindowPtr pWin, int x, int y, WindowPtr pSib, VTKind kind);
+
+void
+compResizeWindow (WindowPtr pWin, int x, int y,
+ unsigned int w, unsigned int h, WindowPtr pSib);
+
+void
+compChangeBorderWidth (WindowPtr pWin, unsigned int border_width);
+
+void
compReparentWindow (WindowPtr pWin, WindowPtr pPriorParent);
Bool
|