diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-05-30 21:28:03 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-06-30 16:21:00 +0200 |
commit | 588be6386adf9dd25bb942af9456d6c07eda4676 (patch) | |
tree | 8d46423c66f14e080ef534523c1c15032c03dc4d /nx-X11/programs/Xserver/hw/nxagent/Window.c | |
parent | c88e87bc8c6d4ee414533c28b600dff70f5ad62a (diff) | |
download | nx-libs-588be6386adf9dd25bb942af9456d6c07eda4676.tar.gz nx-libs-588be6386adf9dd25bb942af9456d6c07eda4676.tar.bz2 nx-libs-588be6386adf9dd25bb942af9456d6c07eda4676.zip |
hw/nxagent/Window.c: Introduce NX_REAL_WINDOW window property.
In nxagent sessions, all X11 clients have a representation of their NX
session-side window object on the real X-Server side.
The window object gets stored in the new NX_REAL_WINDOW window property
immediately after window creation. This mapping is created in
nxagentCreateWindow().
On session resumption, the client side window IDs normally change. Thus,
during session resumption, all NX_REAL_WINDOW properties require being
updated. This happens in nxagentReconnectWindow().
While a session is suspended, the NX_REAL_WINDOW property does not
exist. It gets removed during nxagentDisconnectWindow().
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Window.c')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Window.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Window.c b/nx-X11/programs/Xserver/hw/nxagent/Window.c index 23e1d5452..8d2123095 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Window.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Window.c @@ -466,6 +466,18 @@ FIXME: Do all the windows for which nxagentWindowTopLevel(pWin) nxagentRedirectWindow(pWin); } + if ((nxagentRealWindowProp) && (!nxagentWindowTopLevel(pWin))) + { + Atom prop = MakeAtom("NX_REAL_WINDOW", strlen("NX_REAL_WINDOW"), True); + + if (ChangeWindowProperty(pWin, prop, XA_WINDOW, 32, PropModeReplace, 1, nxagentWindowPriv(pWin), 1) != Success) + fprintf(stderr, "nxagentCreateWindow: Adding NX_REAL_WINDOW failed.\n"); +#ifdef DEBUG + else + fprintf(stderr, "nxagentCreateWindow: Added NX_REAL_WINDOW for Window ID [%x].\n", nxagentWindowPriv(pWin)->window); +#endif + } + nxagentWindowPriv(pWin)->x = pWin->origin.x - wBorderWidth(pWin); nxagentWindowPriv(pWin)->y = pWin->origin.y - wBorderWidth(pWin); nxagentWindowPriv(pWin)->width = pWin->drawable.width; @@ -2674,6 +2686,18 @@ void nxagentDisconnectWindow(void * p0, XID x1, void * p2) } #endif + if ((nxagentRealWindowProp) && (!nxagentWindowTopLevel(pWin))) + { + Atom prop = MakeAtom("NX_REAL_WINDOW", strlen("NX_REAL_WINDOW"), True); + + if (DeleteProperty(pWin, prop) != Success) + fprintf(stderr, "nxagentDisconnectWindow: Deleting NX_REAL_WINDOW failed.\n"); +#ifdef DEBUG + else + fprintf(stderr, "nxagentDisconnectWindow: Deleting NX_REAL_WINDOW from Window ID [%x].\n", nxagentWindowPriv(pWin)->window); +#endif + } + nxagentWindow(pWin) = None; if (nxagentDrawableStatus((DrawablePtr) pWin) == NotSynchronized) @@ -3111,6 +3135,18 @@ FIXME: Do we need to set save unders attribute here? } } + if ((nxagentRealWindowProp) && (!nxagentWindowTopLevel(pWin))) + { + Atom prop = MakeAtom("NX_REAL_WINDOW", strlen("NX_REAL_WINDOW"), True); + + if (ChangeWindowProperty(pWin, prop, XA_WINDOW, 32, PropModeReplace, 1, nxagentWindowPriv(pWin), 1) != Success) + fprintf(stderr, "nxagentReconnectWindow: Updating NX_REAL_WINDOW failed.\n"); +#ifdef DEBUG + else + fprintf(stderr, "nxagentReconnectWindow: Updated NX_REAL_WINDOW for Window ID [%x].\n", nxagentWindowPriv(pWin)->window); +#endif + } + if (nxagentDrawableStatus((DrawablePtr) pWin) == NotSynchronized) { nxagentAllocateCorruptedResource((DrawablePtr) pWin, RT_NX_CORR_WINDOW); |