Lines Matching refs:window
67 // all the Xinerama windows share the same root window
82 * Checks if the given window is a root window for the given screen
103 * Returns the bounds of the given window, in absolute coordinates
105 static Rectangle getWindowGeometry(long window)
111 window,
138 * Translates the given point from one window to another. Returns
174 * Translates the given rectangle from one window to another.
191 * Returns the parent for the given window
193 static long getParentWindow(long window)
198 XBaseWindow bw = XToolkit.windowToXWindow(window);
208 XQueryTree qt = new XQueryTree(window);
232 * Returns all the children for the given window
234 static Set<Long> getChildWindows(long window)
239 XBaseWindow bw = XToolkit.windowToXWindow(window);
245 XQueryTree xqt = new XQueryTree(window);
283 * Checks if the given window is a Java window and is an
286 static boolean isXAWTToplevelWindow(long window)
288 return XToolkit.windowToXWindow(window) instanceof XWindowPeer;
294 static boolean isToplevelWindow(long window)
296 if (XToolkit.windowToXWindow(window) instanceof XDecoratedPeer)
305 new WindowPropertyGetter(window, XWM.XA_WM_STATE, 0, 1, false,
329 * The same as isToplevelWindow(window), but doesn't treat
332 static boolean isTrueToplevelWindow(long window)
334 if (XToolkit.windowToXWindow(window) instanceof XEmbeddedFramePeer)
339 return isToplevelWindow(window);
342 static int getWindowMapState(long window)
350 window, wattr.pData);