Add multi-lib support
[platform/upstream/libXmu.git] / src / ClientWin.c
1 /*
2
3 Copyright 1989, 1998  The Open Group
4
5 Permission to use, copy, modify, distribute, and sell this software and its
6 documentation for any purpose is hereby granted without fee, provided that
7 the above copyright notice appear in all copies and that both that
8 copyright notice and this permission notice appear in supporting
9 documentation.
10
11 The above copyright notice and this permission notice shall be included in
12 all copies or substantial portions of the Software.
13
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
17 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
21 Except as contained in this notice, the name of The Open Group shall not be
22 used in advertising or otherwise to promote the sale, use or other dealings
23 in this Software without prior written authorization from The Open Group.
24
25 */
26
27 #ifdef HAVE_CONFIG_H
28 #include <config.h>
29 #endif
30 #include <X11/Xlib.h>
31 #include <X11/Xatom.h>
32
33 #include <X11/Xmu/WinUtil.h>
34
35 /*
36  * Prototypes
37  */
38 static Window TryChildren(Display*, Window, Atom);
39
40 /* Find a window with WM_STATE, else return win itself, as per ICCCM */
41
42 Window
43 XmuClientWindow(Display *dpy, Window win)
44 {
45     Atom WM_STATE;
46     Atom type = None;
47     int format;
48     unsigned long nitems, after;
49     unsigned char *data = NULL;
50     Window inf;
51
52     WM_STATE = XInternAtom(dpy, "WM_STATE", True);
53     if (!WM_STATE)
54         return win;
55     XGetWindowProperty(dpy, win, WM_STATE, 0, 0, False, AnyPropertyType,
56                        &type, &format, &nitems, &after, &data);
57     if (data)
58         XFree(data);
59     if (type)
60         return win;
61     inf = TryChildren(dpy, win, WM_STATE);
62     if (!inf)
63         inf = win;
64     return inf;
65 }
66
67 static Window
68 TryChildren(Display *dpy, Window win, Atom WM_STATE)
69 {
70     Window root, parent;
71     Window *children;
72     unsigned int nchildren;
73     unsigned int i;
74     Atom type = None;
75     int format;
76     unsigned long nitems, after;
77     unsigned char *data;
78     Window inf = 0;
79
80     if (!XQueryTree(dpy, win, &root, &parent, &children, &nchildren))
81         return 0;
82     for (i = 0; !inf && (i < nchildren); i++) {
83         data = NULL;
84         XGetWindowProperty(dpy, children[i], WM_STATE, 0, 0, False,
85                            AnyPropertyType, &type, &format, &nitems,
86                            &after, &data);
87         if (data)
88             XFree(data);
89         if (type)
90             inf = children[i];
91     }
92     for (i = 0; !inf && (i < nchildren); i++)
93         inf = TryChildren(dpy, children[i], WM_STATE);
94     if (children)
95         XFree(children);
96     return inf;
97 }