GetHints.c 9.62 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

/***********************************************************

Copyright 1987, 1998  The Open Group

Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.


Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.

                        All Rights Reserved

31 32
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
33
provided that the above copyright notice appear in all copies and that
34
both that copyright notice and this permission notice appear in
35 36
supporting documentation, and that the name of Digital not be
used in advertising or publicity pertaining to distribution of the
37
software without specific, written prior permission.
38 39 40 41 42 43 44 45 46 47 48 49 50 51

DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.

******************************************************************/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
52 53 54
#include <nx-X11/Xlibint.h>
#include <nx-X11/Xos.h>
#include <nx-X11/Xutil.h>
55
#include "Xatomtype.h"
56
#include <nx-X11/Xatom.h>
57 58
#include <stdio.h>

59 60 61 62 63
Status XGetSizeHints (
	Display *dpy,
	Window w,
	XSizeHints *hints,
        Atom property)
64 65 66 67 68 69 70 71 72 73 74 75 76 77
{
	xPropSizeHints *prop = NULL;
        Atom actual_type;
        int actual_format;
        unsigned long leftover;
        unsigned long nitems;
	if (XGetWindowProperty(dpy, w, property, 0L,
			       (long) OldNumPropSizeElements,
	    False, XA_WM_SIZE_HINTS, &actual_type, &actual_format,
            &nitems, &leftover, (unsigned char **)&prop)
            != Success) return (0);

        if ((actual_type != XA_WM_SIZE_HINTS) ||
	    (nitems < OldNumPropSizeElements) || (actual_format != 32)) {
78
		Xfree (prop);
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
                return(0);
		}
	hints->flags	  = (prop->flags & (USPosition|USSize|PAllHints));
	hints->x 	  = cvtINT32toInt (prop->x);
	hints->y 	  = cvtINT32toInt (prop->y);
	hints->width      = cvtINT32toInt (prop->width);
	hints->height     = cvtINT32toInt (prop->height);
	hints->min_width  = cvtINT32toInt (prop->minWidth);
	hints->min_height = cvtINT32toInt (prop->minHeight);
	hints->max_width  = cvtINT32toInt (prop->maxWidth);
	hints->max_height = cvtINT32toInt (prop->maxHeight);
	hints->width_inc  = cvtINT32toInt (prop->widthInc);
	hints->height_inc = cvtINT32toInt (prop->heightInc);
	hints->min_aspect.x = cvtINT32toInt (prop->minAspectX);
	hints->min_aspect.y = cvtINT32toInt (prop->minAspectY);
	hints->max_aspect.x = cvtINT32toInt (prop->maxAspectX);
	hints->max_aspect.y = cvtINT32toInt (prop->maxAspectY);
96
	Xfree(prop);
97 98 99
	return(1);
}

100
/*
101 102 103 104 105
 * must return a pointer to the hint, in malloc'd memory, or routine is not
 * extensible; any use of the caller's memory would cause things to be stepped
 * on.
 */

106 107 108
XWMHints *XGetWMHints (
	Display *dpy,
	Window w)
109 110 111 112 113 114 115
{
	xPropWMHints *prop = NULL;
	register XWMHints *hints;
        Atom actual_type;
        int actual_format;
        unsigned long leftover;
        unsigned long nitems;
116
	if (XGetWindowProperty(dpy, w, XA_WM_HINTS,
117 118 119 120 121 122 123 124 125 126
	    0L, (long)NumPropWMHintsElements,
	    False, XA_WM_HINTS, &actual_type, &actual_format,
            &nitems, &leftover, (unsigned char **)&prop)
            != Success) return (NULL);

	/* If the property is undefined on the window, return null pointer. */
	/* pre-R3 bogusly truncated window_group, don't fail on them */

        if ((actual_type != XA_WM_HINTS) ||
	    (nitems < (NumPropWMHintsElements - 1)) || (actual_format != 32)) {
127
		Xfree (prop);
128 129 130
                return(NULL);
		}
	/* static copies not allowed in library, due to reentrancy constraint*/
131
	if ((hints = Xcalloc (1, sizeof(XWMHints)))) {
132 133 134 135 136 137 138 139 140 141 142 143 144
	    hints->flags = prop->flags;
	    hints->input = (prop->input ? True : False);
	    hints->initial_state = cvtINT32toInt (prop->initialState);
	    hints->icon_pixmap = prop->iconPixmap;
	    hints->icon_window = prop->iconWindow;
	    hints->icon_x = cvtINT32toInt (prop->iconX);
	    hints->icon_y = cvtINT32toInt (prop->iconY);
	    hints->icon_mask = prop->iconMask;
	    if (nitems >= NumPropWMHintsElements)
		hints->window_group = prop->windowGroup;
	    else
		hints->window_group = 0;
	}
145
	Xfree (prop);
146 147 148 149
	return(hints);
}

Status
150 151 152 153
XGetZoomHints (
	Display *dpy,
	Window w,
	XSizeHints *zhints)
154 155 156 157 158
{
	return (XGetSizeHints(dpy, w, zhints, XA_WM_ZOOM_HINTS));
}

Status
159 160 161 162
XGetNormalHints (
	Display *dpy,
	Window w,
	XSizeHints *hints)
163 164 165 166
{
	return (XGetSizeHints(dpy, w, hints, XA_WM_NORMAL_HINTS));
}

167

168
/*
169
 * XGetIconSizes reads the property
170 171 172
 *	ICONSIZE_ATOM	type: ICONSIZE_ATOM format: 32
 */

173 174 175 176 177
Status XGetIconSizes (
	Display *dpy,
	Window w,	/* typically, root */
	XIconSize **size_list,	/* RETURN */
	int *count) 		/* RETURN number of items on the list */
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
{
	xPropIconSize *prop = NULL;
	register xPropIconSize *pp;
	register XIconSize *hp, *hints;
        Atom actual_type;
        int actual_format;
        unsigned long leftover;
        unsigned long nitems;
	register int i;

	if (XGetWindowProperty(dpy, w, XA_WM_ICON_SIZE, 0L, 60L,
	    False, XA_WM_ICON_SIZE, &actual_type, &actual_format,
            &nitems, &leftover, (unsigned char **)&prop)
            != Success) return (0);

	pp = prop;

        if ((actual_type != XA_WM_ICON_SIZE) ||
	    (nitems < NumPropIconSizeElements) ||
	    (nitems % NumPropIconSizeElements != 0) ||
	    (actual_format != 32)) {
199
		Xfree (prop);
200 201 202 203 204 205
                return(0);
		}

	/* static copies not allowed in library, due to reentrancy constraint*/

	nitems /= NumPropIconSizeElements;
206
	if (! (hp = hints = Xcalloc (nitems, sizeof(XIconSize)))) {
207
	    Xfree (prop);
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
	    return 0;
	}

	/* march down array putting things into native form */
	for (i = 0; i < nitems; i++) {
	    hp->min_width  = cvtINT32toInt (pp->minWidth);
	    hp->min_height = cvtINT32toInt (pp->minHeight);
	    hp->max_width  = cvtINT32toInt (pp->maxWidth);
	    hp->max_height = cvtINT32toInt (pp->maxHeight);
	    hp->width_inc  = cvtINT32toInt (pp->widthInc);
	    hp->height_inc = cvtINT32toInt (pp->heightInc);
	    hp += 1;
	    pp += 1;
	}
	*count = nitems;
	*size_list = hints;
224
	Xfree (prop);
225 226 227 228
	return(1);
}


229 230 231 232 233
Status XGetCommand (
    Display *dpy,
    Window w,
    char ***argvp,
    int *argcp)
234 235 236 237 238 239 240 241
{
    XTextProperty tp;
    int argc;
    char **argv;

    if (!XGetTextProperty (dpy, w, &tp, XA_WM_COMMAND)) return 0;

    if (tp.encoding != XA_STRING || tp.format != 8) {
242
	Xfree (tp.value);
243 244 245 246 247 248 249 250 251 252 253 254 255 256
	return 0;
    }


    /*
     * ignore final <NUL> if present since UNIX WM_COMMAND is nul-terminated
     */
    if (tp.nitems && (tp.value[tp.nitems - 1] == '\0')) tp.nitems--;


    /*
     * create a string list and return if successful
     */
    if (!XTextPropertyToStringList (&tp, &argv, &argc)) {
257
	Xfree (tp.value);
258 259 260
	return (0);
    }

261
    Xfree (tp.value);
262 263 264 265 266 267 268
    *argvp = argv;
    *argcp = argc;
    return 1;
}


Status
269 270 271 272
XGetTransientForHint(
	Display *dpy,
	Window w,
	Window *propWindow)
273 274 275 276 277 278 279
{
    Atom actual_type;
    int actual_format;
    unsigned long nitems;
    unsigned long leftover;
    Window *data = NULL;
    if (XGetWindowProperty(dpy, w, XA_WM_TRANSIENT_FOR, 0L, 1L, False,
280
        XA_WINDOW,
281 282 283 284 285 286 287 288 289 290 291 292 293
	&actual_type,
	&actual_format, &nitems, &leftover, (unsigned char **) &data)
	!= Success) {
	*propWindow = None;
	return (0);
	}
    if ( (actual_type == XA_WINDOW) && (actual_format == 32) &&
	 (nitems != 0) ) {
	*propWindow = *data;
	Xfree( (char *) data);
	return (1);
	}
    *propWindow = None;
294
    Xfree( (char *) data);
295 296 297 298
    return(0);
}

Status
299 300 301 302
XGetClassHint(
	Display *dpy,
	Window w,
	XClassHint *classhint)	/* RETURN */
303 304 305 306 307 308 309 310 311
{
    int len_name, len_class;

    Atom actual_type;
    int actual_format;
    unsigned long nitems;
    unsigned long leftover;
    unsigned char *data = NULL;
    if (XGetWindowProperty(dpy, w, XA_WM_CLASS, 0L, (long)BUFSIZ, False,
312
        XA_STRING,
313 314 315
	&actual_type,
	&actual_format, &nitems, &leftover, &data) != Success)
           return (0);
316

317 318
   if ( (actual_type == XA_STRING) && (actual_format == 8) ) {
	len_name = strlen((char *) data);
319
	if (! (classhint->res_name = Xmalloc(len_name + 1))) {
320
	    Xfree(data);
321 322 323 324 325
	    return (0);
	}
	strcpy(classhint->res_name, (char *) data);
	if (len_name == nitems) len_name--;
	len_class = strlen((char *) (data+len_name+1));
326
	if (! (classhint->res_class = Xmalloc(len_class + 1))) {
327 328
	    Xfree(classhint->res_name);
	    classhint->res_name = (char *) NULL;
329
	    Xfree(data);
330 331 332 333 334 335
	    return (0);
	}
	strcpy(classhint->res_class, (char *) (data+len_name+1));
	Xfree( (char *) data);
	return(1);
	}
336
    Xfree( (char *) data);
337 338
    return(0);
}