Lines Matching refs:xnestWindowPriv

119     xnestWindowPriv(pWin)->window = XCreateWindow(xnestDisplay,  in xnestCreateWindow()
131 xnestWindowPriv(pWin)->parent = xnestWindowParent(pWin); in xnestCreateWindow()
132 xnestWindowPriv(pWin)->x = pWin->origin.x - wBorderWidth(pWin); in xnestCreateWindow()
133 xnestWindowPriv(pWin)->y = pWin->origin.y - wBorderWidth(pWin); in xnestCreateWindow()
134 xnestWindowPriv(pWin)->width = pWin->drawable.width; in xnestCreateWindow()
135 xnestWindowPriv(pWin)->height = pWin->drawable.height; in xnestCreateWindow()
136 xnestWindowPriv(pWin)->border_width = pWin->borderWidth; in xnestCreateWindow()
137 xnestWindowPriv(pWin)->sibling_above = None; in xnestCreateWindow()
139 xnestWindowPriv(pWin->nextSib)->sibling_above = xnestWindow(pWin); in xnestCreateWindow()
140 xnestWindowPriv(pWin)->bounding_shape = RegionCreate(NULL, 1); in xnestCreateWindow()
141 xnestWindowPriv(pWin)->clip_shape = RegionCreate(NULL, 1); in xnestCreateWindow()
153 xnestWindowPriv(pWin->nextSib)->sibling_above = in xnestDestroyWindow()
154 xnestWindowPriv(pWin)->sibling_above; in xnestDestroyWindow()
155 RegionDestroy(xnestWindowPriv(pWin)->bounding_shape); in xnestDestroyWindow()
156 RegionDestroy(xnestWindowPriv(pWin)->clip_shape); in xnestDestroyWindow()
158 xnestWindowPriv(pWin)->window = None; in xnestDestroyWindow()
183 xnestWindowPriv(pWin)->parent != xnestWindowParent(pWin)) { in xnestConfigureWindow()
188 xnestWindowPriv(pWin)->parent = xnestWindowParent(pWin); in xnestConfigureWindow()
189 xnestWindowPriv(pWin)->x = pWin->origin.x - wBorderWidth(pWin); in xnestConfigureWindow()
190 xnestWindowPriv(pWin)->y = pWin->origin.y - wBorderWidth(pWin); in xnestConfigureWindow()
191 xnestWindowPriv(pWin)->sibling_above = None; in xnestConfigureWindow()
193 xnestWindowPriv(pWin->nextSib)->sibling_above = xnestWindow(pWin); in xnestConfigureWindow()
199 xnestWindowPriv(pWin)->x != pWin->origin.x - wBorderWidth(pWin)) { in xnestConfigureWindow()
202 xnestWindowPriv(pWin)->x = pWin->origin.x - wBorderWidth(pWin); in xnestConfigureWindow()
206 xnestWindowPriv(pWin)->y != pWin->origin.y - wBorderWidth(pWin)) { in xnestConfigureWindow()
209 xnestWindowPriv(pWin)->y = pWin->origin.y - wBorderWidth(pWin); in xnestConfigureWindow()
212 if (mask & CWWidth && xnestWindowPriv(pWin)->width != pWin->drawable.width) { in xnestConfigureWindow()
214 values.width = xnestWindowPriv(pWin)->width = pWin->drawable.width; in xnestConfigureWindow()
218 xnestWindowPriv(pWin)->height != pWin->drawable.height) { in xnestConfigureWindow()
220 values.height = xnestWindowPriv(pWin)->height = pWin->drawable.height; in xnestConfigureWindow()
224 xnestWindowPriv(pWin)->border_width != pWin->borderWidth) { in xnestConfigureWindow()
227 xnestWindowPriv(pWin)->border_width = pWin->borderWidth; in xnestConfigureWindow()
234 xnestWindowPriv(pWin)->sibling_above != xnestWindowSiblingAbove(pWin)) { in xnestConfigureWindow()
244 xnestWindowPriv(pSib)->sibling_above = None; in xnestConfigureWindow()
253 xnestWindowPriv(pSib)->sibling_above = in xnestConfigureWindow()
461 if (!xnestRegionEqual(xnestWindowPriv(pWin)->bounding_shape, in xnestShapeWindow()
465 RegionCopy(xnestWindowPriv(pWin)->bounding_shape, in xnestShapeWindow()
469 pBox = RegionRects(xnestWindowPriv(pWin)->bounding_shape); in xnestShapeWindow()
471 i < RegionNumRects(xnestWindowPriv(pWin)->bounding_shape); in xnestShapeWindow()
484 RegionEmpty(xnestWindowPriv(pWin)->bounding_shape); in xnestShapeWindow()
491 if (!xnestRegionEqual(xnestWindowPriv(pWin)->clip_shape, wClipShape(pWin))) { in xnestShapeWindow()
494 RegionCopy(xnestWindowPriv(pWin)->clip_shape, wClipShape(pWin)); in xnestShapeWindow()
497 pBox = RegionRects(xnestWindowPriv(pWin)->clip_shape); in xnestShapeWindow()
499 i < RegionNumRects(xnestWindowPriv(pWin)->clip_shape); i++) { in xnestShapeWindow()
511 RegionEmpty(xnestWindowPriv(pWin)->clip_shape); in xnestShapeWindow()