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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
/*
*imgWinPmap.c --
*
* Implement the Windows specific function calls for the pixmap
* image type.
*
* Copyright (c) 1996, Expert Interface Technologies
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
*/
#include "tkInt.h"
#include "tkWinInt.h"
#include "pixmapInt.h"
#include <stdlib.h>
#include "X11/Xlib.h"
#include "X11/Xutil.h"
typedef struct PixmapData {
HDC bitmapDC; /* Bitmap used on Windows platforms */
HDC maskDC; /* Mask used on Windows platforms */
HBITMAP bitmap, bitmapOld;
HBITMAP maskBm, maskBmOld;
} PixmapData;
static void CopyTransparent(Display* display,
HDC srcDC, Drawable dest,
int src_x, int src_y, int width,
int height, int dest_x, int dest_y,
HDC maskDC);
/*----------------------------------------------------------------------
* TkimgInitPixmapInstance --
*
* Initializes the platform-specific data of a pixmap instance
*
*----------------------------------------------------------------------
*/
void
TkimgInitPixmapInstance(
PixmapMaster *masterPtr, /* Pointer to master for image. */
PixmapInstance *instancePtr /* The pixmap instance. */
) {
PixmapData * dataPtr;
dataPtr = (PixmapData *)ckalloc(sizeof(PixmapData));
dataPtr->maskDC = NULL;
dataPtr->bitmapDC = NULL;
instancePtr->clientData = (ClientData)dataPtr;
}
/*----------------------------------------------------------------------
* TkimgXpmAllocTmpBuffer --
*
* Allocate a temporary space to draw the image.
*
*----------------------------------------------------------------------
*/
void
TkimgXpmAllocTmpBuffer(
PixmapMaster * masterPtr,
PixmapInstance * instancePtr,
XImage ** imagePtr,
XImage ** maskPtr
) {
XImage * image = NULL, * mask = NULL;
Display *display = Tk_Display(instancePtr->tkwin);
int depth;
depth = Tk_Depth(instancePtr->tkwin);
instancePtr->pixmap = Tk_GetPixmap(display,
Tk_WindowId(instancePtr->tkwin),
masterPtr->size[0], masterPtr->size[1], depth);
mask = (XImage*)ckalloc(sizeof(XImage));
mask->width = masterPtr->size[0];
mask->height = masterPtr->size[1];
mask->bytes_per_line = (mask->width+7)/8;
mask->data =
(char *)ckalloc(mask->bytes_per_line * masterPtr->size[1]);
*imagePtr = image;
*maskPtr = mask;
}
void
TkimgXpmFreeTmpBuffer(
PixmapMaster * masterPtr,
PixmapInstance * instancePtr,
XImage * image,
XImage * mask
) {
if (image) {
ckfree((char*)image->data);
image->data = NULL;
XDestroyImage(image);
}
if (mask) {
ckfree((char*)mask->data);
mask->data = NULL;
ckfree((char*)mask);
}
}
/*----------------------------------------------------------------------
* TkimgXpmSetPixel --
*
* Sets the pixel at the given (x,y) coordinate to be the given
* color.
*----------------------------------------------------------------------
*/
void
TkimgXpmSetPixel(
PixmapInstance * instancePtr,
XImage * image,
XImage * mask,
int x,
int y,
XColor * colorPtr,
int * isTranspPtr
) {
char * p;
int n;
GC gc;
XGCValues gcValues;
Display *display = Tk_Display(instancePtr->tkwin);
if (colorPtr != NULL) {
gcValues.foreground = colorPtr->pixel;
gc = Tk_GetGC(instancePtr->tkwin, GCForeground, &gcValues);
XDrawRectangle(display, instancePtr->pixmap, gc, x, y, 1, 1);
Tk_FreeGC(display, gc);
}
p = mask->data;
p+= y*(mask->bytes_per_line);
p+= x/8;
n = x%8;
if (colorPtr != NULL) {
*p |= (1 << (7-n));
} else {
*p &= ~(1 << (7-n));
*isTranspPtr = 1;
}
}
/*----------------------------------------------------------------------
* TkimgXpmRealizePixmap --
*
* On Unix: Create the pixmap from the buffer.
* On Windows: Free the mask if there are no transparent pixels.
*----------------------------------------------------------------------
*/
void
TkimgXpmRealizePixmap(
PixmapMaster * masterPtr,
PixmapInstance * instancePtr,
XImage * image,
XImage * mask,
int isTransp
) {
Display *display = Tk_Display(instancePtr->tkwin);
PixmapData *dataPtr = (PixmapData*)instancePtr->clientData;
HDC dc, bitmapDC;
TkWinDCState dcState;
HBITMAP bitmap, bitmapOld;
int w, h;
w = masterPtr->size[0];
h = masterPtr->size[1];
dc = TkWinGetDrawableDC(display, instancePtr->pixmap, &dcState);
bitmapDC = CreateCompatibleDC(dc);
bitmap = CreateCompatibleBitmap(dc, w, h);
bitmapOld = SelectObject(bitmapDC, bitmap);
BitBlt(bitmapDC, 0, 0, w, h, dc, 0, 0, SRCCOPY);
if (isTransp) {
HDC maskDC;
HBITMAP maskBm, maskBmOld;
/*
* There are transparent pixels. We need a mask.
*/
maskDC = CreateCompatibleDC(dc);
maskBm = CreateBitmap(w, h, 1, 1, (const void*)mask->data);
maskBmOld = SelectObject(maskDC, maskBm);
BitBlt(bitmapDC, 0, 0, w, h, maskDC, 0, 0, SRCAND);
BitBlt(maskDC, 0, 0, w, h, maskDC, 0, 0, NOTSRCCOPY);
dataPtr->maskDC = maskDC;
dataPtr->maskBm = maskBm;
dataPtr->maskBmOld = maskBmOld;
} else {
dataPtr->maskDC = NULL;
}
TkWinReleaseDrawableDC(instancePtr->pixmap, dc, &dcState);
dataPtr->bitmapDC = bitmapDC;
dataPtr->bitmap = bitmap;
dataPtr->bitmapOld = bitmapOld;
}
void
TkimgXpmFreeInstanceData(
PixmapInstance *instancePtr, /* Pixmap instance. */
int delete /* Should the instance data structure
* be deleted as well? */
) {
PixmapData *dataPtr = (PixmapData*)instancePtr->clientData;
if (dataPtr->maskDC != NULL) {
DeleteObject(SelectObject(dataPtr->maskDC,
dataPtr->maskBmOld));
DeleteDC(dataPtr->maskDC);
dataPtr->maskDC = NULL;
}
if (dataPtr->bitmapDC != NULL) {
DeleteObject(SelectObject(dataPtr->bitmapDC,
dataPtr->bitmapOld));
DeleteDC(dataPtr->bitmapDC);
dataPtr->bitmapDC = NULL;
}
if (delete) {
ckfree((char*)dataPtr);
instancePtr->clientData = NULL;
}
}
void
TkimgpXpmDisplay(
ClientData clientData, /* Pointer to PixmapInstance structure for
* for instance to be displayed. */
Display *display, /* Display on which to draw image. */
Drawable drawable, /* Pixmap or window in which to draw image. */
int imageX, int imageY, /* Upper-left corner of region within image
* to draw. */
int width, int height, /* Dimensions of region within image to draw.*/
int drawableX, int drawableY/* Coordinates within drawable that
* correspond to imageX and imageY. */
) {
PixmapInstance *instancePtr = (PixmapInstance *) clientData;
PixmapData *dataPtr = (PixmapData*)instancePtr->clientData;
CopyTransparent(display, dataPtr->bitmapDC, drawable,
imageX, imageY, width, height,
drawableX, drawableY, dataPtr->maskDC);
}
static void
CopyTransparent(
Display* display,
HDC srcDC,
Drawable dest,
int src_x,
int src_y,
int width,
int height,
int dest_x,
int dest_y,
HDC maskDC
) {
HDC destDC;
TkWinDCState destState;
destDC = TkWinGetDrawableDC(display, dest, &destState);
if (maskDC) {
BitBlt(destDC, dest_x, dest_y, width, height, maskDC, src_x, src_y,
SRCAND);
BitBlt(destDC, dest_x, dest_y, width, height, srcDC, src_x, src_y,
SRCPAINT);
} else {
BitBlt(destDC, dest_x, dest_y, width, height, srcDC, src_x, src_y,
SRCCOPY);
}
TkWinReleaseDrawableDC(dest, destDC, &destState);
}
|