11ab64890Smrg
21ab64890Smrg/***********************************************************
31ab64890Smrg
41ab64890SmrgCopyright 1987, 1998  The Open Group
51ab64890Smrg
61ab64890SmrgPermission to use, copy, modify, distribute, and sell this software and its
71ab64890Smrgdocumentation for any purpose is hereby granted without fee, provided that
81ab64890Smrgthe above copyright notice appear in all copies and that both that
91ab64890Smrgcopyright notice and this permission notice appear in supporting
101ab64890Smrgdocumentation.
111ab64890Smrg
121ab64890SmrgThe above copyright notice and this permission notice shall be included in
131ab64890Smrgall copies or substantial portions of the Software.
141ab64890Smrg
151ab64890SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
161ab64890SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
171ab64890SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
181ab64890SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
191ab64890SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
201ab64890SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
211ab64890Smrg
221ab64890SmrgExcept as contained in this notice, the name of The Open Group shall not be
231ab64890Smrgused in advertising or otherwise to promote the sale, use or other dealings
241ab64890Smrgin this Software without prior written authorization from The Open Group.
251ab64890Smrg
261ab64890Smrg
271ab64890SmrgCopyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
281ab64890Smrg
291ab64890Smrg                        All Rights Reserved
301ab64890Smrg
3161b2299dSmrgPermission to use, copy, modify, and distribute this software and its
3261b2299dSmrgdocumentation for any purpose and without fee is hereby granted,
331ab64890Smrgprovided that the above copyright notice appear in all copies and that
3461b2299dSmrgboth that copyright notice and this permission notice appear in
351ab64890Smrgsupporting documentation, and that the name of Digital not be
361ab64890Smrgused in advertising or publicity pertaining to distribution of the
3761b2299dSmrgsoftware without specific, written prior permission.
381ab64890Smrg
391ab64890SmrgDIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
401ab64890SmrgALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
411ab64890SmrgDIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
421ab64890SmrgANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
431ab64890SmrgWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
441ab64890SmrgARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
451ab64890SmrgSOFTWARE.
461ab64890Smrg
471ab64890Smrg******************************************************************/
481ab64890Smrg
491ab64890Smrg#ifdef HAVE_CONFIG_H
501ab64890Smrg#include <config.h>
511ab64890Smrg#endif
521ab64890Smrg#include <X11/Xlibint.h>
531ab64890Smrg#include <X11/Xutil.h>
541ab64890Smrg#include "Xatomtype.h"
551ab64890Smrg#include <X11/Xatom.h>
561ab64890Smrg
571ab64890Smrg/*
581ab64890Smrg * 				    WARNING
5961b2299dSmrg *
601ab64890Smrg * This is a pre-ICCCM routine.  It must not reference any of the new fields
611ab64890Smrg * in the XStandardColormap structure.
621ab64890Smrg */
631ab64890Smrg
641ab64890Smrgvoid XSetStandardColormap(
651ab64890Smrg    Display *dpy,
661ab64890Smrg    Window w,
671ab64890Smrg    XStandardColormap *cmap,
681ab64890Smrg    Atom property)		/* XA_RGB_BEST_MAP, etc. */
691ab64890Smrg{
701ab64890Smrg    Screen *sp;
711ab64890Smrg    XStandardColormap stdcmap;
721ab64890Smrg
731ab64890Smrg    sp = _XScreenOfWindow (dpy, w);
741ab64890Smrg    if (!sp) {
751ab64890Smrg	/* already caught the XGetGeometry error in _XScreenOfWindow */
761ab64890Smrg	return;
771ab64890Smrg    }
781ab64890Smrg
791ab64890Smrg    stdcmap.colormap	= cmap->colormap;
801ab64890Smrg    stdcmap.red_max	= cmap->red_max;
811ab64890Smrg    stdcmap.red_mult	= cmap->red_mult;
821ab64890Smrg    stdcmap.green_max	= cmap->green_max;
831ab64890Smrg    stdcmap.green_mult  = cmap->green_mult;
841ab64890Smrg    stdcmap.blue_max	= cmap->blue_max;
851ab64890Smrg    stdcmap.blue_mult	= cmap->blue_mult;
861ab64890Smrg    stdcmap.base_pixel	= cmap->base_pixel;
871ab64890Smrg    stdcmap.visualid	= sp->root_visual->visualid;
881ab64890Smrg    stdcmap.killid	= None;		/* don't know how to kill this one */
891ab64890Smrg
901ab64890Smrg#ifdef XCMS
911ab64890Smrg    XSetRGBColormaps (dpy, w, &stdcmap, 1, property);
921ab64890Smrg#endif
931ab64890Smrg
941ab64890Smrg    return;
951ab64890Smrg}
96