gdi32: Add null driver entry points for the various DC settings functions.
[wine.git] / dlls / gdi32 / enhmfdrv / graphics.c
blob5926d622e7d195c6273ae25a27f71c3194465d65
1 /*
2 * Enhanced MetaFile driver graphics functions
4 * Copyright 1999 Huw D M Davies
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <stdarg.h>
25 #include <stdlib.h>
26 #include <string.h>
28 #include "windef.h"
29 #include "winbase.h"
30 #include "wingdi.h"
31 #include "enhmfdrv/enhmetafiledrv.h"
32 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(enhmetafile);
36 /**********************************************************************
37 * EMFDRV_MoveTo
39 BOOL CDECL
40 EMFDRV_MoveTo(PHYSDEV dev, INT x, INT y)
42 EMRMOVETOEX emr;
44 emr.emr.iType = EMR_MOVETOEX;
45 emr.emr.nSize = sizeof(emr);
46 emr.ptl.x = x;
47 emr.ptl.y = y;
49 return EMFDRV_WriteRecord( dev, &emr.emr );
52 /***********************************************************************
53 * EMFDRV_LineTo
55 BOOL CDECL
56 EMFDRV_LineTo( PHYSDEV dev, INT x, INT y )
58 POINT pt;
59 EMRLINETO emr;
60 RECTL bounds;
61 EMFDRV_PDEVICE *physDev = (EMFDRV_PDEVICE *)dev;
63 emr.emr.iType = EMR_LINETO;
64 emr.emr.nSize = sizeof(emr);
65 emr.ptl.x = x;
66 emr.ptl.y = y;
68 if(!EMFDRV_WriteRecord( dev, &emr.emr ))
69 return FALSE;
71 GetCurrentPositionEx(physDev->hdc, &pt);
73 bounds.left = min(x, pt.x);
74 bounds.top = min(y, pt.y);
75 bounds.right = max(x, pt.x);
76 bounds.bottom = max(y, pt.y);
78 EMFDRV_UpdateBBox( dev, &bounds );
80 return TRUE;
84 /***********************************************************************
85 * EMFDRV_ArcChordPie
87 static BOOL
88 EMFDRV_ArcChordPie( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
89 INT xstart, INT ystart, INT xend, INT yend, DWORD iType )
91 INT temp, xCentre, yCentre, i;
92 double angleStart, angleEnd;
93 double xinterStart, yinterStart, xinterEnd, yinterEnd;
94 EMRARC emr;
95 RECTL bounds;
96 EMFDRV_PDEVICE *physDev = (EMFDRV_PDEVICE *)dev;
98 if(left == right || top == bottom) return FALSE;
100 if(left > right) {temp = left; left = right; right = temp;}
101 if(top > bottom) {temp = top; top = bottom; bottom = temp;}
103 if(GetGraphicsMode(physDev->hdc) == GM_COMPATIBLE) {
104 right--;
105 bottom--;
108 emr.emr.iType = iType;
109 emr.emr.nSize = sizeof(emr);
110 emr.rclBox.left = left;
111 emr.rclBox.top = top;
112 emr.rclBox.right = right;
113 emr.rclBox.bottom = bottom;
114 emr.ptlStart.x = xstart;
115 emr.ptlStart.y = ystart;
116 emr.ptlEnd.x = xend;
117 emr.ptlEnd.y = yend;
120 /* Now calculate the BBox */
121 xCentre = (left + right + 1) / 2;
122 yCentre = (top + bottom + 1) / 2;
124 xstart -= xCentre;
125 ystart -= yCentre;
126 xend -= xCentre;
127 yend -= yCentre;
129 /* invert y co-ords to get angle anti-clockwise from x-axis */
130 angleStart = atan2( -(double)ystart, (double)xstart);
131 angleEnd = atan2( -(double)yend, (double)xend);
133 /* These are the intercepts of the start/end lines with the arc */
135 xinterStart = (right - left + 1)/2 * cos(angleStart) + xCentre;
136 yinterStart = -(bottom - top + 1)/2 * sin(angleStart) + yCentre;
137 xinterEnd = (right - left + 1)/2 * cos(angleEnd) + xCentre;
138 yinterEnd = -(bottom - top + 1)/2 * sin(angleEnd) + yCentre;
140 if(angleStart < 0) angleStart += 2 * M_PI;
141 if(angleEnd < 0) angleEnd += 2 * M_PI;
142 if(angleEnd < angleStart) angleEnd += 2 * M_PI;
144 bounds.left = min(xinterStart, xinterEnd);
145 bounds.top = min(yinterStart, yinterEnd);
146 bounds.right = max(xinterStart, xinterEnd);
147 bounds.bottom = max(yinterStart, yinterEnd);
149 for(i = 0; i <= 8; i++) {
150 if(i * M_PI / 2 < angleStart) /* loop until we're past start */
151 continue;
152 if(i * M_PI / 2 > angleEnd) /* if we're past end we're finished */
153 break;
155 /* the arc touches the rectangle at the start of quadrant i, so adjust
156 BBox to reflect this. */
158 switch(i % 4) {
159 case 0:
160 bounds.right = right;
161 break;
162 case 1:
163 bounds.top = top;
164 break;
165 case 2:
166 bounds.left = left;
167 break;
168 case 3:
169 bounds.bottom = bottom;
170 break;
174 /* If we're drawing a pie then make sure we include the centre */
175 if(iType == EMR_PIE) {
176 if(bounds.left > xCentre) bounds.left = xCentre;
177 else if(bounds.right < xCentre) bounds.right = xCentre;
178 if(bounds.top > yCentre) bounds.top = yCentre;
179 else if(bounds.bottom < yCentre) bounds.right = yCentre;
181 if(!EMFDRV_WriteRecord( dev, &emr.emr ))
182 return FALSE;
183 EMFDRV_UpdateBBox( dev, &bounds );
184 return TRUE;
188 /***********************************************************************
189 * EMFDRV_Arc
191 BOOL CDECL
192 EMFDRV_Arc( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
193 INT xstart, INT ystart, INT xend, INT yend )
195 return EMFDRV_ArcChordPie( dev, left, top, right, bottom, xstart, ystart,
196 xend, yend, EMR_ARC );
199 /***********************************************************************
200 * EMFDRV_Pie
202 BOOL CDECL
203 EMFDRV_Pie( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
204 INT xstart, INT ystart, INT xend, INT yend )
206 return EMFDRV_ArcChordPie( dev, left, top, right, bottom, xstart, ystart,
207 xend, yend, EMR_PIE );
211 /***********************************************************************
212 * EMFDRV_Chord
214 BOOL CDECL
215 EMFDRV_Chord( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
216 INT xstart, INT ystart, INT xend, INT yend )
218 return EMFDRV_ArcChordPie( dev, left, top, right, bottom, xstart, ystart,
219 xend, yend, EMR_CHORD );
222 /***********************************************************************
223 * EMFDRV_Ellipse
225 BOOL CDECL
226 EMFDRV_Ellipse( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
228 EMRELLIPSE emr;
229 INT temp;
230 EMFDRV_PDEVICE *physDev = (EMFDRV_PDEVICE *)dev;
232 TRACE("%d,%d - %d,%d\n", left, top, right, bottom);
234 if(left == right || top == bottom) return FALSE;
236 if(left > right) {temp = left; left = right; right = temp;}
237 if(top > bottom) {temp = top; top = bottom; bottom = temp;}
239 if(GetGraphicsMode(physDev->hdc) == GM_COMPATIBLE) {
240 right--;
241 bottom--;
244 emr.emr.iType = EMR_ELLIPSE;
245 emr.emr.nSize = sizeof(emr);
246 emr.rclBox.left = left;
247 emr.rclBox.top = top;
248 emr.rclBox.right = right;
249 emr.rclBox.bottom = bottom;
251 EMFDRV_UpdateBBox( dev, &emr.rclBox );
252 return EMFDRV_WriteRecord( dev, &emr.emr );
255 /***********************************************************************
256 * EMFDRV_Rectangle
258 BOOL CDECL
259 EMFDRV_Rectangle(PHYSDEV dev, INT left, INT top, INT right, INT bottom)
261 EMRRECTANGLE emr;
262 INT temp;
263 EMFDRV_PDEVICE *physDev = (EMFDRV_PDEVICE *)dev;
265 TRACE("%d,%d - %d,%d\n", left, top, right, bottom);
267 if(left == right || top == bottom) return FALSE;
269 if(left > right) {temp = left; left = right; right = temp;}
270 if(top > bottom) {temp = top; top = bottom; bottom = temp;}
272 if(GetGraphicsMode(physDev->hdc) == GM_COMPATIBLE) {
273 right--;
274 bottom--;
277 emr.emr.iType = EMR_RECTANGLE;
278 emr.emr.nSize = sizeof(emr);
279 emr.rclBox.left = left;
280 emr.rclBox.top = top;
281 emr.rclBox.right = right;
282 emr.rclBox.bottom = bottom;
284 EMFDRV_UpdateBBox( dev, &emr.rclBox );
285 return EMFDRV_WriteRecord( dev, &emr.emr );
288 /***********************************************************************
289 * EMFDRV_RoundRect
291 BOOL CDECL
292 EMFDRV_RoundRect( PHYSDEV dev, INT left, INT top, INT right,
293 INT bottom, INT ell_width, INT ell_height )
295 EMRROUNDRECT emr;
296 INT temp;
297 EMFDRV_PDEVICE *physDev = (EMFDRV_PDEVICE *)dev;
299 if(left == right || top == bottom) return FALSE;
301 if(left > right) {temp = left; left = right; right = temp;}
302 if(top > bottom) {temp = top; top = bottom; bottom = temp;}
304 if(GetGraphicsMode(physDev->hdc) == GM_COMPATIBLE) {
305 right--;
306 bottom--;
309 emr.emr.iType = EMR_ROUNDRECT;
310 emr.emr.nSize = sizeof(emr);
311 emr.rclBox.left = left;
312 emr.rclBox.top = top;
313 emr.rclBox.right = right;
314 emr.rclBox.bottom = bottom;
315 emr.szlCorner.cx = ell_width;
316 emr.szlCorner.cy = ell_height;
318 EMFDRV_UpdateBBox( dev, &emr.rclBox );
319 return EMFDRV_WriteRecord( dev, &emr.emr );
322 /***********************************************************************
323 * EMFDRV_SetPixel
325 COLORREF CDECL
326 EMFDRV_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF color )
328 EMRSETPIXELV emr;
330 emr.emr.iType = EMR_SETPIXELV;
331 emr.emr.nSize = sizeof(emr);
332 emr.ptlPixel.x = x;
333 emr.ptlPixel.y = y;
334 emr.crColor = color;
336 if (EMFDRV_WriteRecord( dev, &emr.emr )) {
337 RECTL bounds;
338 bounds.left = bounds.right = x;
339 bounds.top = bounds.bottom = y;
340 EMFDRV_UpdateBBox( dev, &bounds );
341 return color;
343 return -1;
346 /**********************************************************************
347 * EMFDRV_Polylinegon
349 * Helper for EMFDRV_Poly{line|gon}
351 static BOOL
352 EMFDRV_Polylinegon( PHYSDEV dev, const POINT* pt, INT count, DWORD iType )
354 EMRPOLYLINE *emr;
355 DWORD size;
356 INT i;
357 BOOL ret;
359 size = sizeof(EMRPOLYLINE) + sizeof(POINTL) * (count - 1);
361 emr = HeapAlloc( GetProcessHeap(), 0, size );
362 emr->emr.iType = iType;
363 emr->emr.nSize = size;
365 emr->rclBounds.left = emr->rclBounds.right = pt[0].x;
366 emr->rclBounds.top = emr->rclBounds.bottom = pt[0].y;
368 for(i = 1; i < count; i++) {
369 if(pt[i].x < emr->rclBounds.left)
370 emr->rclBounds.left = pt[i].x;
371 else if(pt[i].x > emr->rclBounds.right)
372 emr->rclBounds.right = pt[i].x;
373 if(pt[i].y < emr->rclBounds.top)
374 emr->rclBounds.top = pt[i].y;
375 else if(pt[i].y > emr->rclBounds.bottom)
376 emr->rclBounds.bottom = pt[i].y;
379 emr->cptl = count;
380 memcpy(emr->aptl, pt, count * sizeof(POINTL));
382 ret = EMFDRV_WriteRecord( dev, &emr->emr );
383 if(ret)
384 EMFDRV_UpdateBBox( dev, &emr->rclBounds );
385 HeapFree( GetProcessHeap(), 0, emr );
386 return ret;
390 /**********************************************************************
391 * EMFDRV_Polylinegon16
393 * Helper for EMFDRV_Poly{line|gon}
395 * This is not a legacy function!
396 * We are using SHORT integers to save space.
398 static BOOL
399 EMFDRV_Polylinegon16( PHYSDEV dev, const POINT* pt, INT count, DWORD iType )
401 EMRPOLYLINE16 *emr;
402 DWORD size;
403 INT i;
404 BOOL ret;
406 /* check whether all points fit in the SHORT int POINT structure */
407 for(i = 0; i < count; i++) {
408 if( ((pt[i].x+0x8000) & ~0xffff ) ||
409 ((pt[i].y+0x8000) & ~0xffff ) )
410 return FALSE;
413 size = sizeof(EMRPOLYLINE16) + sizeof(POINTS) * (count - 1);
415 emr = HeapAlloc( GetProcessHeap(), 0, size );
416 emr->emr.iType = iType;
417 emr->emr.nSize = size;
419 emr->rclBounds.left = emr->rclBounds.right = pt[0].x;
420 emr->rclBounds.top = emr->rclBounds.bottom = pt[0].y;
422 for(i = 1; i < count; i++) {
423 if(pt[i].x < emr->rclBounds.left)
424 emr->rclBounds.left = pt[i].x;
425 else if(pt[i].x > emr->rclBounds.right)
426 emr->rclBounds.right = pt[i].x;
427 if(pt[i].y < emr->rclBounds.top)
428 emr->rclBounds.top = pt[i].y;
429 else if(pt[i].y > emr->rclBounds.bottom)
430 emr->rclBounds.bottom = pt[i].y;
433 emr->cpts = count;
434 for(i = 0; i < count; i++ ) {
435 emr->apts[i].x = pt[i].x;
436 emr->apts[i].y = pt[i].y;
439 ret = EMFDRV_WriteRecord( dev, &emr->emr );
440 if(ret)
441 EMFDRV_UpdateBBox( dev, &emr->rclBounds );
442 HeapFree( GetProcessHeap(), 0, emr );
443 return ret;
447 /**********************************************************************
448 * EMFDRV_Polyline
450 BOOL CDECL
451 EMFDRV_Polyline( PHYSDEV dev, const POINT* pt, INT count )
453 if( EMFDRV_Polylinegon16( dev, pt, count, EMR_POLYLINE16 ) )
454 return TRUE;
455 return EMFDRV_Polylinegon( dev, pt, count, EMR_POLYLINE );
458 /**********************************************************************
459 * EMFDRV_Polygon
461 BOOL CDECL
462 EMFDRV_Polygon( PHYSDEV dev, const POINT* pt, INT count )
464 if(count < 2) return FALSE;
465 if( EMFDRV_Polylinegon16( dev, pt, count, EMR_POLYGON16 ) )
466 return TRUE;
467 return EMFDRV_Polylinegon( dev, pt, count, EMR_POLYGON );
471 /**********************************************************************
472 * EMFDRV_PolyPolylinegon
474 * Helper for EMFDRV_PolyPoly{line|gon}
476 static BOOL
477 EMFDRV_PolyPolylinegon( PHYSDEV dev, const POINT* pt, const INT* counts, UINT polys,
478 DWORD iType)
480 EMRPOLYPOLYLINE *emr;
481 DWORD cptl = 0, poly, size;
482 INT point;
483 RECTL bounds;
484 const POINT *pts;
485 BOOL ret;
487 bounds.left = bounds.right = pt[0].x;
488 bounds.top = bounds.bottom = pt[0].y;
490 pts = pt;
491 for(poly = 0; poly < polys; poly++) {
492 cptl += counts[poly];
493 for(point = 0; point < counts[poly]; point++) {
494 if(bounds.left > pts->x) bounds.left = pts->x;
495 else if(bounds.right < pts->x) bounds.right = pts->x;
496 if(bounds.top > pts->y) bounds.top = pts->y;
497 else if(bounds.bottom < pts->y) bounds.bottom = pts->y;
498 pts++;
502 size = sizeof(EMRPOLYPOLYLINE) + (polys - 1) * sizeof(DWORD) +
503 (cptl - 1) * sizeof(POINTL);
505 emr = HeapAlloc( GetProcessHeap(), 0, size );
507 emr->emr.iType = iType;
508 emr->emr.nSize = size;
509 emr->rclBounds = bounds;
510 emr->nPolys = polys;
511 emr->cptl = cptl;
512 memcpy(emr->aPolyCounts, counts, polys * sizeof(DWORD));
513 memcpy(emr->aPolyCounts + polys, pt, cptl * sizeof(POINTL));
514 ret = EMFDRV_WriteRecord( dev, &emr->emr );
515 if(ret)
516 EMFDRV_UpdateBBox( dev, &emr->rclBounds );
517 HeapFree( GetProcessHeap(), 0, emr );
518 return ret;
521 /**********************************************************************
522 * EMFDRV_PolyPolyline
524 BOOL CDECL
525 EMFDRV_PolyPolyline(PHYSDEV dev, const POINT* pt, const DWORD* counts, DWORD polys)
527 return EMFDRV_PolyPolylinegon( dev, pt, (const INT *)counts, polys,
528 EMR_POLYPOLYLINE );
531 /**********************************************************************
532 * EMFDRV_PolyPolygon
534 BOOL CDECL
535 EMFDRV_PolyPolygon( PHYSDEV dev, const POINT* pt, const INT* counts, UINT polys )
537 return EMFDRV_PolyPolylinegon( dev, pt, counts, polys, EMR_POLYPOLYGON );
541 /**********************************************************************
542 * EMFDRV_ExtFloodFill
544 BOOL CDECL
545 EMFDRV_ExtFloodFill( PHYSDEV dev, INT x, INT y, COLORREF color, UINT fillType )
547 EMREXTFLOODFILL emr;
549 emr.emr.iType = EMR_EXTFLOODFILL;
550 emr.emr.nSize = sizeof(emr);
551 emr.ptlStart.x = x;
552 emr.ptlStart.y = y;
553 emr.crColor = color;
554 emr.iMode = fillType;
556 return EMFDRV_WriteRecord( dev, &emr.emr );
560 /*********************************************************************
561 * EMFDRV_FillRgn
563 BOOL CDECL EMFDRV_FillRgn( PHYSDEV dev, HRGN hrgn, HBRUSH hbrush )
565 EMRFILLRGN *emr;
566 DWORD size, rgnsize, index;
567 BOOL ret;
569 index = EMFDRV_CreateBrushIndirect( dev, hbrush );
570 if(!index) return FALSE;
572 rgnsize = GetRegionData( hrgn, 0, NULL );
573 size = rgnsize + offsetof(EMRFILLRGN,RgnData);
574 emr = HeapAlloc( GetProcessHeap(), 0, size );
576 GetRegionData( hrgn, rgnsize, (RGNDATA *)&emr->RgnData );
578 emr->emr.iType = EMR_FILLRGN;
579 emr->emr.nSize = size;
580 emr->rclBounds.left = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.left;
581 emr->rclBounds.top = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.top;
582 emr->rclBounds.right = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.right - 1;
583 emr->rclBounds.bottom = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.bottom - 1;
584 emr->cbRgnData = rgnsize;
585 emr->ihBrush = index;
587 ret = EMFDRV_WriteRecord( dev, &emr->emr );
588 if(ret)
589 EMFDRV_UpdateBBox( dev, &emr->rclBounds );
590 HeapFree( GetProcessHeap(), 0, emr );
591 return ret;
593 /*********************************************************************
594 * EMFDRV_FrameRgn
596 BOOL CDECL EMFDRV_FrameRgn( PHYSDEV dev, HRGN hrgn, HBRUSH hbrush, INT width, INT height )
598 EMRFRAMERGN *emr;
599 DWORD size, rgnsize, index;
600 BOOL ret;
602 index = EMFDRV_CreateBrushIndirect( dev, hbrush );
603 if(!index) return FALSE;
605 rgnsize = GetRegionData( hrgn, 0, NULL );
606 size = rgnsize + offsetof(EMRFRAMERGN,RgnData);
607 emr = HeapAlloc( GetProcessHeap(), 0, size );
609 GetRegionData( hrgn, rgnsize, (RGNDATA *)&emr->RgnData );
611 emr->emr.iType = EMR_FRAMERGN;
612 emr->emr.nSize = size;
613 emr->rclBounds.left = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.left;
614 emr->rclBounds.top = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.top;
615 emr->rclBounds.right = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.right - 1;
616 emr->rclBounds.bottom = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.bottom - 1;
617 emr->cbRgnData = rgnsize;
618 emr->ihBrush = index;
619 emr->szlStroke.cx = width;
620 emr->szlStroke.cy = height;
622 ret = EMFDRV_WriteRecord( dev, &emr->emr );
623 if(ret)
624 EMFDRV_UpdateBBox( dev, &emr->rclBounds );
625 HeapFree( GetProcessHeap(), 0, emr );
626 return ret;
629 /*********************************************************************
630 * EMFDRV_PaintInvertRgn
632 * Helper for EMFDRV_{Paint|Invert}Rgn
634 static BOOL EMFDRV_PaintInvertRgn( PHYSDEV dev, HRGN hrgn, DWORD iType )
636 EMRINVERTRGN *emr;
637 DWORD size, rgnsize;
638 BOOL ret;
641 rgnsize = GetRegionData( hrgn, 0, NULL );
642 size = rgnsize + offsetof(EMRINVERTRGN,RgnData);
643 emr = HeapAlloc( GetProcessHeap(), 0, size );
645 GetRegionData( hrgn, rgnsize, (RGNDATA *)&emr->RgnData );
647 emr->emr.iType = iType;
648 emr->emr.nSize = size;
649 emr->rclBounds.left = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.left;
650 emr->rclBounds.top = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.top;
651 emr->rclBounds.right = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.right - 1;
652 emr->rclBounds.bottom = ((RGNDATA *)&emr->RgnData)->rdh.rcBound.bottom - 1;
653 emr->cbRgnData = rgnsize;
655 ret = EMFDRV_WriteRecord( dev, &emr->emr );
656 if(ret)
657 EMFDRV_UpdateBBox( dev, &emr->rclBounds );
658 HeapFree( GetProcessHeap(), 0, emr );
659 return ret;
662 /**********************************************************************
663 * EMFDRV_PaintRgn
665 BOOL CDECL
666 EMFDRV_PaintRgn( PHYSDEV dev, HRGN hrgn )
668 return EMFDRV_PaintInvertRgn( dev, hrgn, EMR_PAINTRGN );
671 /**********************************************************************
672 * EMFDRV_InvertRgn
674 BOOL CDECL
675 EMFDRV_InvertRgn( PHYSDEV dev, HRGN hrgn )
677 return EMFDRV_PaintInvertRgn( dev, hrgn, EMR_INVERTRGN );
680 /**********************************************************************
681 * EMFDRV_SetBkColor
683 COLORREF CDECL
684 EMFDRV_SetBkColor( PHYSDEV dev, COLORREF color )
686 EMRSETBKCOLOR emr;
687 EMFDRV_PDEVICE *physDev = (EMFDRV_PDEVICE *)dev;
689 if (physDev->restoring) return color; /* don't output records during RestoreDC */
691 emr.emr.iType = EMR_SETBKCOLOR;
692 emr.emr.nSize = sizeof(emr);
693 emr.crColor = color;
695 return EMFDRV_WriteRecord( dev, &emr.emr ) ? color : CLR_INVALID;
699 /**********************************************************************
700 * EMFDRV_SetTextColor
702 COLORREF CDECL
703 EMFDRV_SetTextColor( PHYSDEV dev, COLORREF color )
705 EMRSETTEXTCOLOR emr;
706 EMFDRV_PDEVICE *physDev = (EMFDRV_PDEVICE *)dev;
708 if (physDev->restoring) return color; /* don't output records during RestoreDC */
710 emr.emr.iType = EMR_SETTEXTCOLOR;
711 emr.emr.nSize = sizeof(emr);
712 emr.crColor = color;
714 return EMFDRV_WriteRecord( dev, &emr.emr ) ? color : CLR_INVALID;
717 /**********************************************************************
718 * EMFDRV_ExtTextOut
720 BOOL CDECL EMFDRV_ExtTextOut( PHYSDEV dev, INT x, INT y, UINT flags,
721 const RECT *lprect, LPCWSTR str, UINT count,
722 const INT *lpDx )
724 EMREXTTEXTOUTW *pemr;
725 DWORD nSize;
726 BOOL ret;
727 EMFDRV_PDEVICE *physDev = (EMFDRV_PDEVICE*) dev;
728 int textHeight = 0;
729 int textWidth = 0;
730 const UINT textAlign = GetTextAlign(physDev->hdc);
731 const INT graphicsMode = GetGraphicsMode(physDev->hdc);
732 FLOAT exScale, eyScale;
734 nSize = sizeof(*pemr) + ((count+1) & ~1) * sizeof(WCHAR) + count * sizeof(INT);
736 TRACE("%s %s count %d nSize = %d\n", debugstr_wn(str, count),
737 wine_dbgstr_rect(lprect), count, nSize);
738 pemr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, nSize);
740 if (graphicsMode == GM_COMPATIBLE)
742 const INT horzSize = GetDeviceCaps(physDev->hdc, HORZSIZE);
743 const INT horzRes = GetDeviceCaps(physDev->hdc, HORZRES);
744 const INT vertSize = GetDeviceCaps(physDev->hdc, VERTSIZE);
745 const INT vertRes = GetDeviceCaps(physDev->hdc, VERTRES);
746 SIZE wndext, vportext;
748 GetViewportExtEx(physDev->hdc, &vportext);
749 GetWindowExtEx(physDev->hdc, &wndext);
750 exScale = 100.0 * ((FLOAT)horzSize / (FLOAT)horzRes) /
751 ((FLOAT)wndext.cx / (FLOAT)vportext.cx);
752 eyScale = 100.0 * ((FLOAT)vertSize / (FLOAT)vertRes) /
753 ((FLOAT)wndext.cy / (FLOAT)vportext.cy);
755 else
757 exScale = 0.0;
758 eyScale = 0.0;
761 pemr->emr.iType = EMR_EXTTEXTOUTW;
762 pemr->emr.nSize = nSize;
763 pemr->iGraphicsMode = graphicsMode;
764 pemr->exScale = exScale;
765 pemr->eyScale = eyScale;
766 pemr->emrtext.ptlReference.x = x;
767 pemr->emrtext.ptlReference.y = y;
768 pemr->emrtext.nChars = count;
769 pemr->emrtext.offString = sizeof(*pemr);
770 memcpy((char*)pemr + pemr->emrtext.offString, str, count * sizeof(WCHAR));
771 pemr->emrtext.fOptions = flags;
772 if(!lprect) {
773 pemr->emrtext.rcl.left = pemr->emrtext.rcl.top = 0;
774 pemr->emrtext.rcl.right = pemr->emrtext.rcl.bottom = -1;
775 } else {
776 pemr->emrtext.rcl.left = lprect->left;
777 pemr->emrtext.rcl.top = lprect->top;
778 pemr->emrtext.rcl.right = lprect->right;
779 pemr->emrtext.rcl.bottom = lprect->bottom;
782 pemr->emrtext.offDx = pemr->emrtext.offString + ((count+1) & ~1) * sizeof(WCHAR);
783 if(lpDx) {
784 UINT i;
785 SIZE strSize;
786 memcpy((char*)pemr + pemr->emrtext.offDx, lpDx, count * sizeof(INT));
787 for (i = 0; i < count; i++) {
788 textWidth += lpDx[i];
790 if (GetTextExtentPoint32W(physDev->hdc, str, count, &strSize))
791 textHeight = strSize.cy;
793 else {
794 UINT i;
795 INT *dx = (INT *)((char*)pemr + pemr->emrtext.offDx);
796 SIZE charSize;
797 for (i = 0; i < count; i++) {
798 if (GetTextExtentPoint32W(physDev->hdc, str + i, 1, &charSize)) {
799 dx[i] = charSize.cx;
800 textWidth += charSize.cx;
801 textHeight = max(textHeight, charSize.cy);
806 if (!lprect)
808 pemr->rclBounds.left = pemr->rclBounds.top = 0;
809 pemr->rclBounds.right = pemr->rclBounds.bottom = -1;
810 goto no_bounds;
813 switch (textAlign & (TA_LEFT | TA_RIGHT | TA_CENTER)) {
814 case TA_CENTER: {
815 pemr->rclBounds.left = x - (textWidth / 2) - 1;
816 pemr->rclBounds.right = x + (textWidth / 2) + 1;
817 break;
819 case TA_RIGHT: {
820 pemr->rclBounds.left = x - textWidth - 1;
821 pemr->rclBounds.right = x;
822 break;
824 default: { /* TA_LEFT */
825 pemr->rclBounds.left = x;
826 pemr->rclBounds.right = x + textWidth + 1;
830 switch (textAlign & (TA_TOP | TA_BOTTOM | TA_BASELINE)) {
831 case TA_BASELINE: {
832 TEXTMETRICW tm;
833 if (!GetTextMetricsW(physDev->hdc, &tm))
834 tm.tmDescent = 0;
835 /* Play safe here... it's better to have a bounding box */
836 /* that is too big than too small. */
837 pemr->rclBounds.top = y - textHeight - 1;
838 pemr->rclBounds.bottom = y + tm.tmDescent + 1;
839 break;
841 case TA_BOTTOM: {
842 pemr->rclBounds.top = y - textHeight - 1;
843 pemr->rclBounds.bottom = y;
844 break;
846 default: { /* TA_TOP */
847 pemr->rclBounds.top = y;
848 pemr->rclBounds.bottom = y + textHeight + 1;
851 EMFDRV_UpdateBBox( dev, &pemr->rclBounds );
853 no_bounds:
854 ret = EMFDRV_WriteRecord( dev, &pemr->emr );
855 HeapFree( GetProcessHeap(), 0, pemr );
856 return ret;
859 /**********************************************************************
860 * EMFDRV_SetArcDirection
862 INT CDECL EMFDRV_SetArcDirection(PHYSDEV dev, INT arcDirection)
864 EMRSETARCDIRECTION emr;
866 emr.emr.iType = EMR_SETARCDIRECTION;
867 emr.emr.nSize = sizeof(emr);
868 emr.iArcDirection = arcDirection;
869 return EMFDRV_WriteRecord(dev, &emr.emr) ? arcDirection : 0;