1/* 2 3Copyright 1988, 1998 The Open Group 4 5Permission to use, copy, modify, distribute, and sell this software and its 6documentation for any purpose is hereby granted without fee, provided that 7the above copyright notice appear in all copies and that both that 8copyright notice and this permission notice appear in supporting 9documentation. 10 11The above copyright notice and this permission notice shall be included in 12all copies or substantial portions of the Software. 13 14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 18AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 19CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20 21Except as contained in this notice, the name of The Open Group shall not be 22used in advertising or otherwise to promote the sale, use or other dealings 23in this Software without prior written authorization from The Open Group. 24 25*/ 26 27/* 28 * This file contains miscellaneous utility routines and is not part of the 29 * Xlib standard. 30 */ 31 32/* 33 * Public entry points: 34 * 35 * XmuCreatePixmapFromBitmap make a pixmap from a bitmap 36 */ 37 38#ifdef HAVE_CONFIG_H 39#include <config.h> 40#endif 41#include <X11/Xos.h> 42#include <X11/Xlib.h> 43#include <X11/Xmu/Drawing.h> 44 45Pixmap 46XmuCreatePixmapFromBitmap(Display *dpy, Drawable d, Pixmap bitmap, 47 unsigned int width, unsigned int height, 48 unsigned int depth, 49 unsigned long fore, unsigned long back) 50 /* 51 * dpy - connection to X server 52 * d - drawable indicating screen 53 * bitmap - single plane pixmap 54 * width, height - dimensions of bitmap and pixmap 55 * depth - depth of pixmap to create 56 * fore, back - colors to use 57 */ 58{ 59 Pixmap pixmap; 60 61 pixmap = XCreatePixmap (dpy, d, width, height, depth); 62 if (pixmap != None) { 63 GC gc; 64 XGCValues xgcv; 65 66 xgcv.foreground = fore; 67 xgcv.background = back; 68 xgcv.graphics_exposures = False; 69 70 gc = XCreateGC (dpy, d, 71 (GCForeground | GCBackground | GCGraphicsExposures), 72 &xgcv); 73 if (gc) { 74 XCopyPlane (dpy, bitmap, pixmap, gc, 0, 0, width, height, 0, 0, 1); 75 XFreeGC (dpy, gc); 76 } else { 77 XFreePixmap (dpy, pixmap); 78 pixmap = None; 79 } 80 } 81 return pixmap; 82} 83