00001 /* $Xorg: ScrOfWin.c,v 1.4 2001/02/09 02:03:53 xorgcvs Exp $ */ 00002 00003 /* 00004 00005 Copyright 1989, 1998 The Open Group 00006 00007 Permission to use, copy, modify, distribute, and sell this software and its 00008 documentation for any purpose is hereby granted without fee, provided that 00009 the above copyright notice appear in all copies and that both that 00010 copyright notice and this permission notice appear in supporting 00011 documentation. 00012 00013 The above copyright notice and this permission notice shall be included in 00014 all copies or substantial portions of the Software. 00015 00016 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 00017 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00018 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 00019 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 00020 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 00021 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 00022 00023 Except as contained in this notice, the name of The Open Group shall not be 00024 used in advertising or otherwise to promote the sale, use or other dealings 00025 in this Software without prior written authorization from The Open Group. 00026 00027 */ 00028 /* $XFree86: xc/lib/Xmu/ScrOfWin.c,v 1.6 2001/01/17 19:42:56 dawes Exp $ */ 00029 00030 /* 00031 * Author: Jim Fulton, MIT X Consortium 00032 */ 00033 00034 #include <stdio.h> 00035 #include <X11/Xlib.h> 00036 #include <X11/Xmu/WinUtil.h> 00037 00038 Screen * 00039 XmuScreenOfWindow(Display *dpy, Window w) 00040 { 00041 register int i; 00042 Window root; 00043 int x, y; /* dummy variables */ 00044 unsigned int width, height, bw, depth; /* dummy variables */ 00045 00046 if (!XGetGeometry (dpy, w, &root, &x, &y, &width, &height, 00047 &bw, &depth)) { 00048 return NULL; 00049 } 00050 for (i = 0; i < ScreenCount (dpy); i++) { /* find root from list */ 00051 if (root == RootWindow (dpy, i)) { 00052 return ScreenOfDisplay (dpy, i); 00053 } 00054 } 00055 return NULL; 00056 } 00057