11ab64890Smrg/* 21ab64890Smrg 31ab64890SmrgCopyright 1987, 1998 The Open Group 41ab64890Smrg 51ab64890SmrgPermission to use, copy, modify, distribute, and sell this software and its 61ab64890Smrgdocumentation for any purpose is hereby granted without fee, provided that 71ab64890Smrgthe above copyright notice appear in all copies and that both that 81ab64890Smrgcopyright notice and this permission notice appear in supporting 91ab64890Smrgdocumentation. 101ab64890Smrg 111ab64890SmrgThe above copyright notice and this permission notice shall be included in 121ab64890Smrgall copies or substantial portions of the Software. 131ab64890Smrg 141ab64890SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 151ab64890SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 161ab64890SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 171ab64890SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 181ab64890SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 191ab64890SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 201ab64890Smrg 211ab64890SmrgExcept as contained in this notice, the name of The Open Group shall not be 221ab64890Smrgused in advertising or otherwise to promote the sale, use or other dealings 231ab64890Smrgin this Software without prior written authorization from The Open Group. 241ab64890Smrg 251ab64890Smrg*/ 261ab64890Smrg 271ab64890Smrg#ifdef HAVE_CONFIG_H 281ab64890Smrg#include <config.h> 291ab64890Smrg#endif 301ab64890Smrg#include "Xlib.h" 311ab64890Smrg#include <stdio.h> 321ab64890Smrg 331ab64890Smrg/* 341ab64890Smrg * XCreatePixmapFromBitmapData: Routine to make a pixmap from user supplied bitmap data. 351ab64890Smrg * D is any drawable on the same screen that the pixmap will be used in. 3661b2299dSmrg * Data is a pointer to the bit data, and 371ab64890Smrg * width & height give the size in bits of the pixmap. 381ab64890Smrg * Fg and Bg are the pixel values to use for the two colors. 391ab64890Smrg * Depth is the depth of the pixmap to create. 401ab64890Smrg * 411ab64890Smrg * The following format is assumed for data: 421ab64890Smrg * 431ab64890Smrg * format=XYPixmap 441ab64890Smrg * bit_order=LSBFirst 451ab64890Smrg * byte_order=LSBFirst 461ab64890Smrg * padding=8 471ab64890Smrg * bitmap_unit=8 481ab64890Smrg * xoffset=0 491ab64890Smrg * no extra bytes per line 5061b2299dSmrg */ 511ab64890SmrgPixmap XCreatePixmapFromBitmapData( 521ab64890Smrg Display *display, 531ab64890Smrg Drawable d, 541ab64890Smrg char *data, 5561b2299dSmrg unsigned int width, 561ab64890Smrg unsigned int height, 5761b2299dSmrg unsigned long fg, 581ab64890Smrg unsigned long bg, 591ab64890Smrg unsigned int depth) 601ab64890Smrg{ 61eb411b4bSmrg Pixmap pix = XCreatePixmap(display, d, width, height, depth); 62eb411b4bSmrg XGCValues gcv = { 63eb411b4bSmrg .foreground = fg, 64eb411b4bSmrg .background = bg 65eb411b4bSmrg }; 66eb411b4bSmrg GC gc = XCreateGC(display, pix, GCForeground|GCBackground, &gcv); 67eb411b4bSmrg if (gc == NULL) { 68eb411b4bSmrg XFreePixmap(display, pix); 69eb411b4bSmrg return (Pixmap) None; 70eb411b4bSmrg } else { 71eb411b4bSmrg XImage ximage = { 72eb411b4bSmrg .height = height, 73eb411b4bSmrg .width = width, 74eb411b4bSmrg .depth = 1, 75eb411b4bSmrg .bits_per_pixel = 1, 76eb411b4bSmrg .xoffset = 0, 77eb411b4bSmrg .format = XYBitmap, 78eb411b4bSmrg .data = data, 79eb411b4bSmrg .byte_order = LSBFirst, 80eb411b4bSmrg .bitmap_unit = 8, 81eb411b4bSmrg .bitmap_bit_order = LSBFirst, 82eb411b4bSmrg .bitmap_pad = 8, 83eb411b4bSmrg .bytes_per_line = (width + 7) / 8 84eb411b4bSmrg }; 85eb411b4bSmrg XPutImage(display, pix, gc, &ximage, 0, 0, 0, 0, width, height); 86eb411b4bSmrg XFreeGC(display, gc); 87eb411b4bSmrg return(pix); 88eb411b4bSmrg } 891ab64890Smrg} 90