Displaying 1 result from an estimated 1 matches for "compwindowstatebelowmask".
2006 Dec 09
1
setWindowState(), how use it?
...windows
here the code:
    if (skipTaskBar != -1)
        windowState |= CompWindowStateSkipTaskbarMask;
    if (skipPager != -1)
        windowState |= CompWindowStateSkipPagerMask;
    if (above != -1)
        windowState |= CompWindowStateAboveMask;
    else if (below != -1)
	windowState |= CompWindowStateBelowMask;
    setWindowState(w->screen->display, 
	                          w->state|windowState,
		                  w->id);
Any idea why already existing windows don't get above/below on the fly, if i 
use xprop, i can see _NET_WM_STATE_ABOVE but compiz seems to ignore this (if 
i resta...