Initialize Tizen 2.3
[framework/uifw/xorg/lib/libx11.git] / src / FetchName.c
1 /*
2
3 Copyright 1986, 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/Xlibint.h>
31 #include <X11/Xatom.h>
32 #include <X11/Xos.h>
33 #include <stdio.h>
34
35
36 Status XFetchName (
37     register Display *dpy,
38     Window w,
39     char **name)
40 {
41     Atom actual_type;
42     int actual_format;
43     unsigned long nitems;
44     unsigned long leftover;
45     unsigned char *data = NULL;
46     if (XGetWindowProperty(dpy, w, XA_WM_NAME, 0L, (long)BUFSIZ, False, XA_STRING,
47         &actual_type,
48         &actual_format, &nitems, &leftover, &data) != Success) {
49         *name = NULL;
50         return (0);
51         }
52     if ( (actual_type == XA_STRING) &&  (actual_format == 8) ) {
53
54         /* The data returned by XGetWindowProperty is guarranteed to
55         contain one extra byte that is null terminated to make retrieveing
56         string properties easy. */
57
58         *name = (char *)data;
59         return(1);
60         }
61     if (data) Xfree ((char *)data);
62     *name = NULL;
63     return(0);
64 }
65
66 Status XGetIconName (
67     register Display *dpy,
68     Window w,
69     char **icon_name)
70 {
71     Atom actual_type;
72     int actual_format;
73     unsigned long nitems;
74     unsigned long leftover;
75     unsigned char *data = NULL;
76     if (XGetWindowProperty(dpy, w, XA_WM_ICON_NAME, 0L, (long)BUFSIZ, False,
77         XA_STRING,
78         &actual_type,
79         &actual_format, &nitems, &leftover, &data) != Success) {
80         *icon_name = NULL;
81         return (0);
82         }
83     if ( (actual_type == XA_STRING) &&  (actual_format == 8) ) {
84
85         /* The data returned by XGetWindowProperty is guarranteed to
86         contain one extra byte that is null terminated to make retrieveing
87         string properties easy. */
88
89         *icon_name = (char*)data;
90         return(1);
91         }
92     if (data) Xfree ((char *)data);
93     *icon_name = NULL;
94     return(0);
95 }