GetStCmap.c revision 1ab64890
11ab64890Smrg/* $Xorg: GetStCmap.c,v 1.4 2001/02/09 02:03:33 xorgcvs Exp $ */
21ab64890Smrg
31ab64890Smrg/***********************************************************
41ab64890Smrg
51ab64890SmrgCopyright 1987, 1998  The Open Group
61ab64890Smrg
71ab64890SmrgPermission to use, copy, modify, distribute, and sell this software and its
81ab64890Smrgdocumentation for any purpose is hereby granted without fee, provided that
91ab64890Smrgthe above copyright notice appear in all copies and that both that
101ab64890Smrgcopyright notice and this permission notice appear in supporting
111ab64890Smrgdocumentation.
121ab64890Smrg
131ab64890SmrgThe above copyright notice and this permission notice shall be included in
141ab64890Smrgall copies or substantial portions of the Software.
151ab64890Smrg
161ab64890SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
171ab64890SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
181ab64890SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
191ab64890SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
201ab64890SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
211ab64890SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
221ab64890Smrg
231ab64890SmrgExcept as contained in this notice, the name of The Open Group shall not be
241ab64890Smrgused in advertising or otherwise to promote the sale, use or other dealings
251ab64890Smrgin this Software without prior written authorization from The Open Group.
261ab64890Smrg
271ab64890Smrg
281ab64890SmrgCopyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
291ab64890Smrg
301ab64890Smrg                        All Rights Reserved
311ab64890Smrg
321ab64890SmrgPermission to use, copy, modify, and distribute this software and its
331ab64890Smrgdocumentation for any purpose and without fee is hereby granted,
341ab64890Smrgprovided that the above copyright notice appear in all copies and that
351ab64890Smrgboth that copyright notice and this permission notice appear in
361ab64890Smrgsupporting documentation, and that the name of Digital not be
371ab64890Smrgused in advertising or publicity pertaining to distribution of the
381ab64890Smrgsoftware without specific, written prior permission.
391ab64890Smrg
401ab64890SmrgDIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
411ab64890SmrgALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
421ab64890SmrgDIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
431ab64890SmrgANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
441ab64890SmrgWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
451ab64890SmrgARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
461ab64890SmrgSOFTWARE.
471ab64890Smrg
481ab64890Smrg******************************************************************/
491ab64890Smrg
501ab64890Smrg#ifdef HAVE_CONFIG_H
511ab64890Smrg#include <config.h>
521ab64890Smrg#endif
531ab64890Smrg#include <X11/Xlibint.h>
541ab64890Smrg#include <X11/Xutil.h>
551ab64890Smrg#include "Xatomtype.h"
561ab64890Smrg#include <X11/Xatom.h>
571ab64890Smrg
581ab64890Smrg/*
591ab64890Smrg * 				    WARNING
601ab64890Smrg *
611ab64890Smrg * This is a pre-ICCCM routine.  It must not reference any of the new fields
621ab64890Smrg * in the XStandardColormap structure.
631ab64890Smrg */
641ab64890Smrg
651ab64890SmrgStatus XGetStandardColormap (
661ab64890Smrg    Display *dpy,
671ab64890Smrg    Window w,
681ab64890Smrg    XStandardColormap *cmap,
691ab64890Smrg    Atom property)		/* XA_RGB_BEST_MAP, etc. */
701ab64890Smrg{
711ab64890Smrg    Status stat;			/* return value */
721ab64890Smrg    XStandardColormap *stdcmaps;	/* will get malloced value */
731ab64890Smrg    int nstdcmaps;			/* count of above */
741ab64890Smrg
751ab64890Smrg    stat = XGetRGBColormaps (dpy, w, &stdcmaps, &nstdcmaps, property);
761ab64890Smrg    if (stat) {
771ab64890Smrg	XStandardColormap *use;
781ab64890Smrg
791ab64890Smrg	if (nstdcmaps > 1) {
801ab64890Smrg	    VisualID vid;
811ab64890Smrg	    Screen *sp = _XScreenOfWindow (dpy, w);
821ab64890Smrg	    int i;
831ab64890Smrg
841ab64890Smrg	    if (!sp) {
851ab64890Smrg		if (stdcmaps) Xfree ((char *) stdcmaps);
861ab64890Smrg		return False;
871ab64890Smrg	    }
881ab64890Smrg	    vid = sp->root_visual->visualid;
891ab64890Smrg
901ab64890Smrg	    for (i = 0; i < nstdcmaps; i++) {
911ab64890Smrg		if (stdcmaps[i].visualid == vid) break;
921ab64890Smrg	    }
931ab64890Smrg
941ab64890Smrg	    if (i == nstdcmaps) {	/* not found */
951ab64890Smrg		Xfree ((char *) stdcmaps);
961ab64890Smrg		return False;
971ab64890Smrg	    }
981ab64890Smrg	    use = &stdcmaps[i];
991ab64890Smrg	} else {
1001ab64890Smrg	    use = stdcmaps;
1011ab64890Smrg	}
1021ab64890Smrg
1031ab64890Smrg	/*
1041ab64890Smrg	 * assign only those fields which were in the pre-ICCCM version
1051ab64890Smrg	 */
1061ab64890Smrg	cmap->colormap	 = use->colormap;
1071ab64890Smrg	cmap->red_max	 = use->red_max;
1081ab64890Smrg	cmap->red_mult	 = use->red_mult;
1091ab64890Smrg	cmap->green_max	 = use->green_max;
1101ab64890Smrg	cmap->green_mult = use->green_mult;
1111ab64890Smrg	cmap->blue_max	 = use->blue_max;
1121ab64890Smrg	cmap->blue_mult	 = use->blue_mult;
1131ab64890Smrg	cmap->base_pixel = use->base_pixel;
1141ab64890Smrg
1151ab64890Smrg	Xfree ((char *) stdcmaps);	/* don't need alloced memory */
1161ab64890Smrg    }
1171ab64890Smrg    return stat;
1181ab64890Smrg}
119