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 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
/* $Xorg: GCOps.c,v 1.3 2000/08/17 19:53:28 cpqbld Exp $ */
/*
Copyright 1993 by Davor Matic
Permission to use, copy, modify, distribute, and sell this software
and its documentation for any purpose is hereby granted without fee,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation. Davor Matic makes no representations about
the suitability of this software for any purpose. It is provided "as
is" without express or implied warranty.
*/
/* $XFree86: xc/programs/Xserver/hw/xnest/GCOps.c,v 3.4 2001/01/17 22:36:55 dawes Exp $ */
#include "X.h"
#include "Xproto.h"
#include "miscstruct.h"
#include "fontstruct.h"
#include "gcstruct.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include "pixmapstr.h"
#include "region.h"
#include "servermd.h"
#include "Xnest.h"
#include "Display.h"
#include "Screen.h"
#include "XNGC.h"
#include "XNFont.h"
#include "GCOps.h"
#include "Drawable.h"
#include "Visual.h"
void xnestFillSpans(pDrawable, pGC, nSpans, pPoints, pWidths, fSorted)
DrawablePtr pDrawable;
GCPtr pGC;
int nSpans;
xPoint *pPoints;
int *pWidths;
int fSorted;
{
ErrorF("xnest warning: function xnestFillSpans not implemented\n");
}
void xnestSetSpans(pDrawable, pGC, pSrc, pPoints, pWidths, nSpans, fSorted)
DrawablePtr pDrawable;
GCPtr pGC;
unsigned char * pSrc;
xPoint *pPoints;
int *pWidths;
int nSpans;
int fSorted;
{
ErrorF("xnest warning: function xnestSetSpans not implemented\n");
}
void xnestGetSpans(pDrawable, maxWidth, pPoints, pWidths, nSpans, pBuffer)
DrawablePtr pDrawable;
int maxWidth;
xPoint *pPoints;
int *pWidths;
int nSpans;
int *pBuffer;
{
ErrorF("xnest warning: function xnestGetSpans not implemented\n");
}
void xnestQueryBestSize(class, pWidth, pHeight, pScreen)
int class;
short *pWidth;
short *pHeight;
ScreenPtr pScreen;
{
unsigned int width, height;
width = *pWidth;
height = *pHeight;
XQueryBestSize(xnestDisplay, class,
xnestDefaultWindows[pScreen->myNum],
width, height, &width, &height);
*pWidth = width;
*pHeight = height;
}
void xnestPutImage(pDrawable, pGC, depth, x, y, w, h, leftPad, format, pImage)
DrawablePtr pDrawable;
GCPtr pGC;
int depth, x, y, w, h;
int leftPad;
unsigned int format;
unsigned char *pImage;
{
XImage *ximage;
ximage = XCreateImage(xnestDisplay, xnestDefaultVisual(pDrawable->pScreen),
depth, format, leftPad, (char *)pImage,
w, h, BitmapPad(xnestDisplay),
(format == ZPixmap) ?
PixmapBytePad(w, depth) : BitmapBytePad(w+leftPad));
if (ximage) {
XPutImage(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
ximage, 0, 0, x, y, w, h);
XFree(ximage);
}
}
void xnestGetImage(pDrawable, x, y, w, h, format, planeMask, pImage)
DrawablePtr pDrawable;
int x, y, w, h;
unsigned int format;
unsigned long planeMask;
unsigned char *pImage;
{
XImage *ximage;
int length;
ximage = XGetImage(xnestDisplay, xnestDrawable(pDrawable),
x, y, w, h, planeMask, format);
if (ximage) {
length = ximage->bytes_per_line * ximage->height;
memmove(pImage, ximage->data, length);
XDestroyImage(ximage);
}
}
static Bool xnestBitBlitPredicate(display, event, args)
Display *display;
XEvent *event;
char *args;
{
return (event->type == GraphicsExpose || event->type == NoExpose);
}
RegionPtr xnestBitBlitHelper(pGC)
GC *pGC;
{
if (!pGC->graphicsExposures)
return NullRegion;
else {
XEvent event;
RegionPtr pReg, pTmpReg;
BoxRec Box;
Bool pending, overlap;
pReg = REGION_CREATE(pGC->pScreen, NULL, 1);
pTmpReg = REGION_CREATE(pGC->pScreen, NULL, 1);
if(!pReg || !pTmpReg) return NullRegion;
pending = True;
while (pending) {
XIfEvent(xnestDisplay, &event, xnestBitBlitPredicate, NULL);
switch (event.type) {
case NoExpose:
pending = False;
break;
case GraphicsExpose:
Box.x1 = event.xgraphicsexpose.x;
Box.y1 = event.xgraphicsexpose.y;
Box.x2 = event.xgraphicsexpose.x + event.xgraphicsexpose.width;
Box.y2 = event.xgraphicsexpose.y + event.xgraphicsexpose.height;
REGION_RESET(pGC->pScreen, pTmpReg, &Box);
REGION_APPEND(pGC->pScreen, pReg, pTmpReg);
pending = event.xgraphicsexpose.count;
break;
}
}
REGION_DESTROY(pGC->pScreen, pTmpReg);
REGION_VALIDATE(pGC->pScreen, pReg, &overlap);
return(pReg);
}
}
RegionPtr xnestCopyArea(pSrcDrawable, pDstDrawable,
pGC, srcx, srcy, width, height, dstx, dsty)
DrawablePtr pSrcDrawable;
DrawablePtr pDstDrawable;
GC *pGC;
int srcx, srcy;
int width, height;
int dstx, dsty;
{
XCopyArea(xnestDisplay,
xnestDrawable(pSrcDrawable), xnestDrawable(pDstDrawable),
xnestGC(pGC), srcx, srcy, width, height, dstx, dsty);
return xnestBitBlitHelper(pGC);
}
RegionPtr xnestCopyPlane(pSrcDrawable, pDstDrawable,
pGC, srcx, srcy, width, height, dstx, dsty, plane)
DrawablePtr pSrcDrawable;
DrawablePtr pDstDrawable;
GC *pGC;
int srcx, srcy;
int width, height;
int dstx, dsty;
unsigned long plane;
{
XCopyPlane(xnestDisplay,
xnestDrawable(pSrcDrawable), xnestDrawable(pDstDrawable),
xnestGC(pGC), srcx, srcy, width, height, dstx, dsty, plane);
return xnestBitBlitHelper(pGC);
}
void xnestPolyPoint(pDrawable, pGC, mode, nPoints, pPoints)
DrawablePtr pDrawable;
GCPtr pGC;
int mode;
int nPoints;
XPoint *pPoints;
{
XDrawPoints(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
pPoints, nPoints, mode);
}
void xnestPolylines(pDrawable, pGC, mode, nPoints, pPoints)
DrawablePtr pDrawable;
GCPtr pGC;
int mode;
int nPoints;
XPoint *pPoints;
{
XDrawLines(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
pPoints, nPoints, mode);
}
void xnestPolySegment(pDrawable, pGC, nSegments, pSegments)
DrawablePtr pDrawable;
GCPtr pGC;
int nSegments;
XSegment *pSegments;
{
XDrawSegments(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
pSegments, nSegments);
}
void xnestPolyRectangle(pDrawable, pGC, nRectangles, pRectangles)
DrawablePtr pDrawable;
GCPtr pGC;
int nRectangles;
XRectangle *pRectangles;
{
XDrawRectangles(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
pRectangles, nRectangles);
}
void xnestPolyArc(pDrawable, pGC, nArcs, pArcs)
DrawablePtr pDrawable;
GCPtr pGC;
int nArcs;
XArc *pArcs;
{
XDrawArcs(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
pArcs, nArcs);
}
void xnestFillPolygon(pDrawable, pGC, shape, mode, nPoints, pPoints)
DrawablePtr pDrawable;
GCPtr pGC;
int shape;
int mode;
int nPoints;
XPoint *pPoints;
{
XFillPolygon(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
pPoints, nPoints, shape, mode);
}
void xnestPolyFillRect(pDrawable, pGC, nRectangles, pRectangles)
DrawablePtr pDrawable;
GCPtr pGC;
int nRectangles;
XRectangle *pRectangles;
{
XFillRectangles(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
pRectangles, nRectangles);
}
void xnestPolyFillArc(pDrawable, pGC, nArcs, pArcs)
DrawablePtr pDrawable;
GCPtr pGC;
int nArcs;
XArc *pArcs;
{
XFillArcs(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
pArcs, nArcs);
}
int xnestPolyText8(pDrawable, pGC, x, y, count, string)
DrawablePtr pDrawable;
GCPtr pGC;
int x, y;
int count;
char *string;
{
int width;
XDrawString(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
x, y, string, count);
width = XTextWidth(xnestFontStruct(pGC->font), string, count);
return width + x;
}
int xnestPolyText16(pDrawable, pGC, x, y, count, string)
DrawablePtr pDrawable;
GCPtr pGC;
int x, y;
int count;
XChar2b *string;
{
int width;
XDrawString16(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
x, y, string, count);
width = XTextWidth16(xnestFontStruct(pGC->font), string, count);
return width + x;
}
void xnestImageText8(pDrawable, pGC, x, y, count, string)
DrawablePtr pDrawable;
GCPtr pGC;
int x, y;
int count;
char *string;
{
XDrawImageString(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
x, y, string, count);
}
void xnestImageText16(pDrawable, pGC, x, y, count, string)
DrawablePtr pDrawable;
GCPtr pGC;
int x, y;
int count;
XChar2b *string;
{
XDrawImageString16(xnestDisplay, xnestDrawable(pDrawable), xnestGC(pGC),
x, y, string, count);
}
void xnestImageGlyphBlt(pDrawable, pGC, x, y, nGlyphs, pCharInfo, pGlyphBase)
DrawablePtr pDrawable;
GC pGC;
int x, y;
int nGlyphs;
CharInfoPtr pCharInfo;
char pGlyphBase;
{
ErrorF("xnest warning: function xnestImageGlyphBlt not implemented\n");
}
void xnestPolyGlyphBlt(pDrawable, pGC, x, y, nGlyphs, pCharInfo, pGlyphBase)
DrawablePtr pDrawable;
GC pGC;
int x, y;
int nGlyphs;
CharInfoPtr pCharInfo;
char pGlyphBase;
{
ErrorF("xnest warning: function xnestPolyGlyphBlt not implemented\n");
}
void xnestPushPixels(pDrawable, pGC, pBitmap, width, height, x, y)
DrawablePtr pDrawable;
GC pGC;
PixmapPtr pBitmap;
int width, height;
int x, y;
{
ErrorF("xnest warning: function xnestPushPixels not implemented\n");
}
|