2 * Enhanced metafile functions
3 * Copyright 1998 Douglas Ridgway
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * The enhanced format consists of the following elements:
25 * A table of handles to GDI objects
26 * An array of metafile records
30 * The standard format consists of a header and an array of metafile records.
35 #include "wine/port.h"
46 #include "gdi_private.h"
47 #include "wine/debug.h"
49 WINE_DEFAULT_DEBUG_CHANNEL(enhmetafile
);
55 BOOL on_disk
; /* true if metafile is on disk */
58 static const struct emr_name
{
71 X(EMR_SETWINDOWEXTEX
),
72 X(EMR_SETWINDOWORGEX
),
73 X(EMR_SETVIEWPORTEXTEX
),
74 X(EMR_SETVIEWPORTORGEX
),
78 X(EMR_SETMAPPERFLAGS
),
81 X(EMR_SETPOLYFILLMODE
),
83 X(EMR_SETSTRETCHBLTMODE
),
85 X(EMR_SETCOLORADJUSTMENT
),
91 X(EMR_EXCLUDECLIPRECT
),
92 X(EMR_INTERSECTCLIPRECT
),
93 X(EMR_SCALEVIEWPORTEXTEX
),
94 X(EMR_SCALEWINDOWEXTEX
),
97 X(EMR_SETWORLDTRANSFORM
),
98 X(EMR_MODIFYWORLDTRANSFORM
),
101 X(EMR_CREATEBRUSHINDIRECT
),
110 X(EMR_SELECTPALETTE
),
111 X(EMR_CREATEPALETTE
),
112 X(EMR_SETPALETTEENTRIES
),
113 X(EMR_RESIZEPALETTE
),
114 X(EMR_REALIZEPALETTE
),
119 X(EMR_SETARCDIRECTION
),
120 X(EMR_SETMITERLIMIT
),
125 X(EMR_STROKEANDFILLPATH
),
129 X(EMR_SELECTCLIPPATH
),
136 X(EMR_EXTSELECTCLIPRGN
),
141 X(EMR_SETDIBITSTODEVICE
),
142 X(EMR_STRETCHDIBITS
),
143 X(EMR_EXTCREATEFONTINDIRECTW
),
149 X(EMR_POLYBEZIERTO16
),
151 X(EMR_POLYPOLYLINE16
),
152 X(EMR_POLYPOLYGON16
),
154 X(EMR_CREATEMONOBRUSH
),
155 X(EMR_CREATEDIBPATTERNBRUSHPT
),
160 X(EMR_CREATECOLORSPACE
),
161 X(EMR_SETCOLORSPACE
),
162 X(EMR_DELETECOLORSPACE
),
164 X(EMR_GLSBOUNDEDRECORD
),
170 X(EMR_FORCEUFIMAPPING
),
172 X(EMR_COLORCORRECTPALETTE
),
173 X(EMR_SETICMPROFILEA
),
174 X(EMR_SETICMPROFILEW
),
177 X(EMR_TRANSPARENTBLT
),
181 X(EMR_SETTEXTJUSTIFICATION
),
182 X(EMR_COLORMATCHTOTARGETW
),
183 X(EMR_CREATECOLORSPACEW
)
187 /****************************************************************************
190 static const char *get_emr_name(DWORD type
)
193 for(i
= 0; i
< sizeof(emr_names
) / sizeof(emr_names
[0]); i
++)
194 if(type
== emr_names
[i
].type
) return emr_names
[i
].name
;
195 TRACE("Unknown record type %ld\n", type
);
199 /****************************************************************************
200 * EMF_Create_HENHMETAFILE
202 HENHMETAFILE
EMF_Create_HENHMETAFILE(ENHMETAHEADER
*emh
, BOOL on_disk
)
204 HENHMETAFILE hmf
= 0;
205 ENHMETAFILEOBJ
*metaObj
= GDI_AllocObject( sizeof(ENHMETAFILEOBJ
),
207 (HGDIOBJ
*)&hmf
, NULL
);
211 metaObj
->on_disk
= on_disk
;
212 GDI_ReleaseObj( hmf
);
217 /****************************************************************************
218 * EMF_Delete_HENHMETAFILE
220 static BOOL
EMF_Delete_HENHMETAFILE( HENHMETAFILE hmf
)
222 ENHMETAFILEOBJ
*metaObj
= (ENHMETAFILEOBJ
*)GDI_GetObjPtr( hmf
,
224 if(!metaObj
) return FALSE
;
227 UnmapViewOfFile( metaObj
->emh
);
229 HeapFree( GetProcessHeap(), 0, metaObj
->emh
);
230 return GDI_FreeObject( hmf
, metaObj
);
233 /******************************************************************
234 * EMF_GetEnhMetaHeader
236 * Returns ptr to ENHMETAHEADER associated with HENHMETAFILE
238 static ENHMETAHEADER
*EMF_GetEnhMetaHeader( HENHMETAFILE hmf
)
240 ENHMETAHEADER
*ret
= NULL
;
241 ENHMETAFILEOBJ
*metaObj
= (ENHMETAFILEOBJ
*)GDI_GetObjPtr( hmf
, ENHMETAFILE_MAGIC
);
242 TRACE("hmf %p -> enhmetaObj %p\n", hmf
, metaObj
);
246 GDI_ReleaseObj( hmf
);
251 /*****************************************************************************
255 static HENHMETAFILE
EMF_GetEnhMetaFile( HANDLE hFile
)
260 hMapping
= CreateFileMappingA( hFile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
261 emh
= MapViewOfFile( hMapping
, FILE_MAP_READ
, 0, 0, 0 );
262 CloseHandle( hMapping
);
266 if (emh
->iType
!= EMR_HEADER
|| emh
->dSignature
!= ENHMETA_SIGNATURE
) {
267 WARN("Invalid emf header type 0x%08lx sig 0x%08lx.\n",
268 emh
->iType
, emh
->dSignature
);
272 /* refuse to load unaligned EMF as Windows does */
275 WARN("Refusing to load unaligned EMF\n");
279 return EMF_Create_HENHMETAFILE( emh
, TRUE
);
282 UnmapViewOfFile( emh
);
287 /*****************************************************************************
288 * GetEnhMetaFileA (GDI32.@)
292 HENHMETAFILE WINAPI
GetEnhMetaFileA(
293 LPCSTR lpszMetaFile
/* [in] filename of enhanced metafile */
299 hFile
= CreateFileA(lpszMetaFile
, GENERIC_READ
, FILE_SHARE_READ
, 0,
300 OPEN_EXISTING
, 0, 0);
301 if (hFile
== INVALID_HANDLE_VALUE
) {
302 WARN("could not open %s\n", lpszMetaFile
);
305 hmf
= EMF_GetEnhMetaFile( hFile
);
306 CloseHandle( hFile
);
310 /*****************************************************************************
311 * GetEnhMetaFileW (GDI32.@)
313 HENHMETAFILE WINAPI
GetEnhMetaFileW(
314 LPCWSTR lpszMetaFile
) /* [in] filename of enhanced metafile */
319 hFile
= CreateFileW(lpszMetaFile
, GENERIC_READ
, FILE_SHARE_READ
, 0,
320 OPEN_EXISTING
, 0, 0);
321 if (hFile
== INVALID_HANDLE_VALUE
) {
322 WARN("could not open %s\n", debugstr_w(lpszMetaFile
));
325 hmf
= EMF_GetEnhMetaFile( hFile
);
326 CloseHandle( hFile
);
330 /*****************************************************************************
331 * GetEnhMetaFileHeader (GDI32.@)
333 * If buf is NULL, returns the size of buffer required.
334 * Otherwise, copy up to bufsize bytes of enhanced metafile header into
337 UINT WINAPI
GetEnhMetaFileHeader(
338 HENHMETAFILE hmf
, /* [in] enhanced metafile */
339 UINT bufsize
, /* [in] size of buffer */
340 LPENHMETAHEADER buf
/* [out] buffer */
346 emh
= EMF_GetEnhMetaHeader(hmf
);
347 if(!emh
) return FALSE
;
349 if (!buf
) return size
;
350 size
= min(size
, bufsize
);
351 memmove(buf
, emh
, size
);
356 /*****************************************************************************
357 * GetEnhMetaFileDescriptionA (GDI32.@)
359 UINT WINAPI
GetEnhMetaFileDescriptionA(
360 HENHMETAFILE hmf
, /* [in] enhanced metafile */
361 UINT size
, /* [in] size of buf */
362 LPSTR buf
/* [out] buffer to receive description */
365 LPENHMETAHEADER emh
= EMF_GetEnhMetaHeader(hmf
);
369 if(!emh
) return FALSE
;
370 if(emh
->nDescription
== 0 || emh
->offDescription
== 0) return 0;
371 descrW
= (WCHAR
*) ((char *) emh
+ emh
->offDescription
);
372 len
= WideCharToMultiByte( CP_ACP
, 0, descrW
, emh
->nDescription
, NULL
, 0, NULL
, NULL
);
374 if (!buf
|| !size
) return len
;
376 len
= min( size
, len
);
377 WideCharToMultiByte( CP_ACP
, 0, descrW
, emh
->nDescription
, buf
, len
, NULL
, NULL
);
381 /*****************************************************************************
382 * GetEnhMetaFileDescriptionW (GDI32.@)
384 * Copies the description string of an enhanced metafile into a buffer
387 * If _buf_ is NULL, returns size of _buf_ required. Otherwise, returns
388 * number of characters copied.
390 UINT WINAPI
GetEnhMetaFileDescriptionW(
391 HENHMETAFILE hmf
, /* [in] enhanced metafile */
392 UINT size
, /* [in] size of buf */
393 LPWSTR buf
/* [out] buffer to receive description */
396 LPENHMETAHEADER emh
= EMF_GetEnhMetaHeader(hmf
);
398 if(!emh
) return FALSE
;
399 if(emh
->nDescription
== 0 || emh
->offDescription
== 0) return 0;
400 if (!buf
|| !size
) return emh
->nDescription
;
402 memmove(buf
, (char *) emh
+ emh
->offDescription
, min(size
,emh
->nDescription
)*sizeof(WCHAR
));
403 return min(size
, emh
->nDescription
);
406 /****************************************************************************
407 * SetEnhMetaFileBits (GDI32.@)
409 * Creates an enhanced metafile by copying _bufsize_ bytes from _buf_.
411 HENHMETAFILE WINAPI
SetEnhMetaFileBits(UINT bufsize
, const BYTE
*buf
)
413 ENHMETAHEADER
*emh
= HeapAlloc( GetProcessHeap(), 0, bufsize
);
414 memmove(emh
, buf
, bufsize
);
415 return EMF_Create_HENHMETAFILE( emh
, FALSE
);
418 /*****************************************************************************
419 * GetEnhMetaFileBits (GDI32.@)
422 UINT WINAPI
GetEnhMetaFileBits(
428 LPENHMETAHEADER emh
= EMF_GetEnhMetaHeader( hmf
);
434 if( buf
== NULL
) return size
;
436 size
= min( size
, bufsize
);
437 memmove(buf
, emh
, size
);
441 typedef struct enum_emh_data
444 XFORM init_transform
;
445 XFORM world_transform
;
456 #define ENUM_GET_PRIVATE_DATA(ht) \
457 ((enum_emh_data*)(((unsigned char*)(ht))-sizeof (enum_emh_data)))
459 #define WIDTH(rect) ( (rect).right - (rect).left )
460 #define HEIGHT(rect) ( (rect).bottom - (rect).top )
462 #define IS_WIN9X() (GetVersion()&0x80000000)
464 void EMF_Update_MF_Xform(HDC hdc
, enum_emh_data
*info
)
466 XFORM mapping_mode_trans
, final_trans
;
467 FLOAT scaleX
, scaleY
;
469 scaleX
= (FLOAT
)info
->vportExtX
/ (FLOAT
)info
->wndExtX
;
470 scaleY
= (FLOAT
)info
->vportExtY
/ (FLOAT
)info
->wndExtY
;
471 mapping_mode_trans
.eM11
= scaleX
;
472 mapping_mode_trans
.eM12
= 0.0;
473 mapping_mode_trans
.eM21
= 0.0;
474 mapping_mode_trans
.eM22
= scaleY
;
475 mapping_mode_trans
.eDx
= (FLOAT
)info
->vportOrgX
- scaleX
* (FLOAT
)info
->wndOrgX
;
476 mapping_mode_trans
.eDy
= (FLOAT
)info
->vportOrgY
- scaleY
* (FLOAT
)info
->wndOrgY
;
478 CombineTransform(&final_trans
, &info
->world_transform
, &mapping_mode_trans
);
479 CombineTransform(&final_trans
, &final_trans
, &info
->init_transform
);
481 if (!SetWorldTransform(hdc
, &final_trans
))
483 ERR("World transform failed!\n");
487 void EMF_SetMapMode(HDC hdc
, enum_emh_data
*info
)
489 INT horzSize
= GetDeviceCaps( hdc
, HORZSIZE
);
490 INT vertSize
= GetDeviceCaps( hdc
, VERTSIZE
);
491 INT horzRes
= GetDeviceCaps( hdc
, HORZRES
);
492 INT vertRes
= GetDeviceCaps( hdc
, VERTRES
);
494 TRACE("%d\n",info
->mode
);
506 info
->wndExtX
= horzSize
* 10;
507 info
->wndExtY
= vertSize
* 10;
508 info
->vportExtX
= horzRes
;
509 info
->vportExtY
= -vertRes
;
512 info
->wndExtX
= horzSize
* 100;
513 info
->wndExtY
= vertSize
* 100;
514 info
->vportExtX
= horzRes
;
515 info
->vportExtY
= -vertRes
;
518 info
->wndExtX
= MulDiv(1000, horzSize
, 254);
519 info
->wndExtY
= MulDiv(1000, vertSize
, 254);
520 info
->vportExtX
= horzRes
;
521 info
->vportExtY
= -vertRes
;
524 info
->wndExtX
= MulDiv(10000, horzSize
, 254);
525 info
->wndExtY
= MulDiv(10000, vertSize
, 254);
526 info
->vportExtX
= horzRes
;
527 info
->vportExtY
= -vertRes
;
530 info
->wndExtX
= MulDiv(14400, horzSize
, 254);
531 info
->wndExtY
= MulDiv(14400, vertSize
, 254);
532 info
->vportExtX
= horzRes
;
533 info
->vportExtY
= -vertRes
;
542 /*****************************************************************************
543 * emr_produces_output
545 * Returns TRUE if the record type writes something to the dc. Used by
546 * PlayEnhMetaFileRecord to determine whether it needs to update the
547 * dc's xform when in win9x mode.
549 * FIXME: need to test which records should be here.
551 static BOOL
emr_produces_output(int type
)
557 case EMR_POLYBEZIERTO
:
559 case EMR_POLYPOLYLINE
:
560 case EMR_POLYPOLYGON
:
563 case EMR_EXCLUDECLIPRECT
:
564 case EMR_INTERSECTCLIPRECT
:
565 case EMR_SELECTOBJECT
:
573 case EMR_EXTFLOODFILL
:
585 case EMR_SETDIBITSTODEVICE
:
586 case EMR_STRETCHDIBITS
:
587 case EMR_EXTTEXTOUTA
:
588 case EMR_EXTTEXTOUTW
:
589 case EMR_POLYBEZIER16
:
592 case EMR_POLYBEZIERTO16
:
593 case EMR_POLYLINETO16
:
594 case EMR_POLYPOLYLINE16
:
595 case EMR_POLYPOLYGON16
:
597 case EMR_POLYTEXTOUTA
:
598 case EMR_POLYTEXTOUTW
:
599 case EMR_SMALLTEXTOUT
:
600 case EMR_TRANSPARENTBLT
:
608 /*****************************************************************************
609 * PlayEnhMetaFileRecord (GDI32.@)
611 * Render a single enhanced metafile record in the device context hdc.
614 * TRUE (non zero) on success, FALSE on error.
616 * Many unimplemented records.
617 * No error handling on record play failures (ie checking return codes)
620 * WinNT actually updates the current world transform in this function
621 * whereas Win9x does not.
623 BOOL WINAPI
PlayEnhMetaFileRecord(
624 HDC hdc
, /* [in] device context in which to render EMF record */
625 LPHANDLETABLE handletable
, /* [in] array of handles to be used in rendering record */
626 const ENHMETARECORD
*mr
, /* [in] EMF record to render */
627 UINT handles
/* [in] size of handle array */
632 enum_emh_data
*info
= ENUM_GET_PRIVATE_DATA(handletable
);
634 TRACE("hdc = %p, handletable = %p, record = %p, numHandles = %d\n",
635 hdc
, handletable
, mr
, handles
);
636 if (!mr
) return FALSE
;
640 /* In Win9x mode we update the xform if the record will produce output */
641 if ( IS_WIN9X() && emr_produces_output(type
) )
642 EMF_Update_MF_Xform(hdc
, info
);
644 TRACE("record %s\n", get_emr_name(type
));
653 PEMRGDICOMMENT lpGdiComment
= (PEMRGDICOMMENT
)mr
;
654 /* In an enhanced metafile, there can be both public and private GDI comments */
655 GdiComment( hdc
, lpGdiComment
->cbData
, lpGdiComment
->Data
);
660 PEMRSETMAPMODE pSetMapMode
= (PEMRSETMAPMODE
) mr
;
662 if(info
->mode
== pSetMapMode
->iMode
&& (info
->mode
== MM_ISOTROPIC
|| info
->mode
== MM_ANISOTROPIC
))
664 info
->mode
= pSetMapMode
->iMode
;
665 EMF_SetMapMode(hdc
, info
);
670 PEMRSETBKMODE pSetBkMode
= (PEMRSETBKMODE
) mr
;
671 SetBkMode(hdc
, pSetBkMode
->iMode
);
676 PEMRSETBKCOLOR pSetBkColor
= (PEMRSETBKCOLOR
) mr
;
677 SetBkColor(hdc
, pSetBkColor
->crColor
);
680 case EMR_SETPOLYFILLMODE
:
682 PEMRSETPOLYFILLMODE pSetPolyFillMode
= (PEMRSETPOLYFILLMODE
) mr
;
683 SetPolyFillMode(hdc
, pSetPolyFillMode
->iMode
);
688 PEMRSETROP2 pSetROP2
= (PEMRSETROP2
) mr
;
689 SetROP2(hdc
, pSetROP2
->iMode
);
692 case EMR_SETSTRETCHBLTMODE
:
694 PEMRSETSTRETCHBLTMODE pSetStretchBltMode
= (PEMRSETSTRETCHBLTMODE
) mr
;
695 SetStretchBltMode(hdc
, pSetStretchBltMode
->iMode
);
698 case EMR_SETTEXTALIGN
:
700 PEMRSETTEXTALIGN pSetTextAlign
= (PEMRSETTEXTALIGN
) mr
;
701 SetTextAlign(hdc
, pSetTextAlign
->iMode
);
704 case EMR_SETTEXTCOLOR
:
706 PEMRSETTEXTCOLOR pSetTextColor
= (PEMRSETTEXTCOLOR
) mr
;
707 SetTextColor(hdc
, pSetTextColor
->crColor
);
717 PEMRRESTOREDC pRestoreDC
= (PEMRRESTOREDC
) mr
;
718 TRACE("EMR_RESTORE: %ld\n", pRestoreDC
->iRelative
);
719 RestoreDC(hdc
, pRestoreDC
->iRelative
);
722 case EMR_INTERSECTCLIPRECT
:
724 PEMRINTERSECTCLIPRECT pClipRect
= (PEMRINTERSECTCLIPRECT
) mr
;
725 TRACE("EMR_INTERSECTCLIPRECT: rect %ld,%ld - %ld, %ld\n",
726 pClipRect
->rclClip
.left
, pClipRect
->rclClip
.top
,
727 pClipRect
->rclClip
.right
, pClipRect
->rclClip
.bottom
);
728 IntersectClipRect(hdc
, pClipRect
->rclClip
.left
, pClipRect
->rclClip
.top
,
729 pClipRect
->rclClip
.right
, pClipRect
->rclClip
.bottom
);
732 case EMR_SELECTOBJECT
:
734 PEMRSELECTOBJECT pSelectObject
= (PEMRSELECTOBJECT
) mr
;
735 if( pSelectObject
->ihObject
& 0x80000000 ) {
736 /* High order bit is set - it's a stock object
737 * Strip the high bit to get the index.
738 * See MSDN article Q142319
740 SelectObject( hdc
, GetStockObject( pSelectObject
->ihObject
&
743 /* High order bit wasn't set - not a stock object
746 (handletable
->objectHandle
)[pSelectObject
->ihObject
] );
750 case EMR_DELETEOBJECT
:
752 PEMRDELETEOBJECT pDeleteObject
= (PEMRDELETEOBJECT
) mr
;
753 DeleteObject( (handletable
->objectHandle
)[pDeleteObject
->ihObject
]);
754 (handletable
->objectHandle
)[pDeleteObject
->ihObject
] = 0;
757 case EMR_SETWINDOWORGEX
:
759 PEMRSETWINDOWORGEX pSetWindowOrgEx
= (PEMRSETWINDOWORGEX
) mr
;
761 info
->wndOrgX
= pSetWindowOrgEx
->ptlOrigin
.x
;
762 info
->wndOrgY
= pSetWindowOrgEx
->ptlOrigin
.y
;
764 TRACE("SetWindowOrgEx: %d,%d\n",info
->wndOrgX
,info
->wndOrgY
);
767 case EMR_SETWINDOWEXTEX
:
769 PEMRSETWINDOWEXTEX pSetWindowExtEx
= (PEMRSETWINDOWEXTEX
) mr
;
771 if(info
->mode
!= MM_ISOTROPIC
&& info
->mode
!= MM_ANISOTROPIC
)
773 info
->wndExtX
= pSetWindowExtEx
->szlExtent
.cx
;
774 info
->wndExtY
= pSetWindowExtEx
->szlExtent
.cy
;
776 TRACE("SetWindowExtEx: %d,%d\n",info
->wndExtX
,info
->wndExtY
);
779 case EMR_SETVIEWPORTORGEX
:
781 PEMRSETVIEWPORTORGEX pSetViewportOrgEx
= (PEMRSETVIEWPORTORGEX
) mr
;
782 enum_emh_data
*info
= ENUM_GET_PRIVATE_DATA(handletable
);
784 info
->vportOrgX
= pSetViewportOrgEx
->ptlOrigin
.x
;
785 info
->vportOrgY
= pSetViewportOrgEx
->ptlOrigin
.y
;
786 TRACE("SetViewportOrgEx: %d,%d\n",info
->vportOrgX
,info
->vportOrgY
);
789 case EMR_SETVIEWPORTEXTEX
:
791 PEMRSETVIEWPORTEXTEX pSetViewportExtEx
= (PEMRSETVIEWPORTEXTEX
) mr
;
792 enum_emh_data
*info
= ENUM_GET_PRIVATE_DATA(handletable
);
794 if(info
->mode
!= MM_ISOTROPIC
&& info
->mode
!= MM_ANISOTROPIC
)
796 info
->vportExtX
= pSetViewportExtEx
->szlExtent
.cx
;
797 info
->vportExtY
= pSetViewportExtEx
->szlExtent
.cy
;
798 TRACE("SetViewportExtEx: %d,%d\n",info
->vportExtX
,info
->vportExtY
);
803 PEMRCREATEPEN pCreatePen
= (PEMRCREATEPEN
) mr
;
804 (handletable
->objectHandle
)[pCreatePen
->ihPen
] =
805 CreatePenIndirect(&pCreatePen
->lopn
);
808 case EMR_EXTCREATEPEN
:
810 PEMREXTCREATEPEN pPen
= (PEMREXTCREATEPEN
) mr
;
812 lb
.lbStyle
= pPen
->elp
.elpBrushStyle
;
813 lb
.lbColor
= pPen
->elp
.elpColor
;
814 lb
.lbHatch
= pPen
->elp
.elpHatch
;
816 if(pPen
->offBmi
|| pPen
->offBits
)
817 FIXME("EMR_EXTCREATEPEN: Need to copy brush bitmap\n");
819 (handletable
->objectHandle
)[pPen
->ihPen
] =
820 ExtCreatePen(pPen
->elp
.elpPenStyle
, pPen
->elp
.elpWidth
, &lb
,
821 pPen
->elp
.elpNumEntries
, pPen
->elp
.elpStyleEntry
);
824 case EMR_CREATEBRUSHINDIRECT
:
826 PEMRCREATEBRUSHINDIRECT pBrush
= (PEMRCREATEBRUSHINDIRECT
) mr
;
827 (handletable
->objectHandle
)[pBrush
->ihBrush
] =
828 CreateBrushIndirect(&pBrush
->lb
);
831 case EMR_EXTCREATEFONTINDIRECTW
:
833 PEMREXTCREATEFONTINDIRECTW pFont
= (PEMREXTCREATEFONTINDIRECTW
) mr
;
834 (handletable
->objectHandle
)[pFont
->ihFont
] =
835 CreateFontIndirectW(&pFont
->elfw
.elfLogFont
);
840 PEMRMOVETOEX pMoveToEx
= (PEMRMOVETOEX
) mr
;
841 MoveToEx(hdc
, pMoveToEx
->ptl
.x
, pMoveToEx
->ptl
.y
, NULL
);
846 PEMRLINETO pLineTo
= (PEMRLINETO
) mr
;
847 LineTo(hdc
, pLineTo
->ptl
.x
, pLineTo
->ptl
.y
);
852 PEMRRECTANGLE pRect
= (PEMRRECTANGLE
) mr
;
853 Rectangle(hdc
, pRect
->rclBox
.left
, pRect
->rclBox
.top
,
854 pRect
->rclBox
.right
, pRect
->rclBox
.bottom
);
859 PEMRELLIPSE pEllipse
= (PEMRELLIPSE
) mr
;
860 Ellipse(hdc
, pEllipse
->rclBox
.left
, pEllipse
->rclBox
.top
,
861 pEllipse
->rclBox
.right
, pEllipse
->rclBox
.bottom
);
866 PEMRPOLYGON16 pPoly
= (PEMRPOLYGON16
) mr
;
867 /* Shouldn't use Polygon16 since pPoly->cpts is DWORD */
868 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
869 pPoly
->cpts
* sizeof(POINT
) );
871 for(i
= 0; i
< pPoly
->cpts
; i
++)
873 pts
[i
].x
= pPoly
->apts
[i
].x
;
874 pts
[i
].y
= pPoly
->apts
[i
].y
;
876 Polygon(hdc
, pts
, pPoly
->cpts
);
877 HeapFree( GetProcessHeap(), 0, pts
);
882 PEMRPOLYLINE16 pPoly
= (PEMRPOLYLINE16
) mr
;
883 /* Shouldn't use Polyline16 since pPoly->cpts is DWORD */
884 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
885 pPoly
->cpts
* sizeof(POINT
) );
887 for(i
= 0; i
< pPoly
->cpts
; i
++)
889 pts
[i
].x
= pPoly
->apts
[i
].x
;
890 pts
[i
].y
= pPoly
->apts
[i
].y
;
892 Polyline(hdc
, pts
, pPoly
->cpts
);
893 HeapFree( GetProcessHeap(), 0, pts
);
896 case EMR_POLYLINETO16
:
898 PEMRPOLYLINETO16 pPoly
= (PEMRPOLYLINETO16
) mr
;
899 /* Shouldn't use PolylineTo16 since pPoly->cpts is DWORD */
900 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
901 pPoly
->cpts
* sizeof(POINT
) );
903 for(i
= 0; i
< pPoly
->cpts
; i
++)
905 pts
[i
].x
= pPoly
->apts
[i
].x
;
906 pts
[i
].y
= pPoly
->apts
[i
].y
;
908 PolylineTo(hdc
, pts
, pPoly
->cpts
);
909 HeapFree( GetProcessHeap(), 0, pts
);
912 case EMR_POLYBEZIER16
:
914 PEMRPOLYBEZIER16 pPoly
= (PEMRPOLYBEZIER16
) mr
;
915 /* Shouldn't use PolyBezier16 since pPoly->cpts is DWORD */
916 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
917 pPoly
->cpts
* sizeof(POINT
) );
919 for(i
= 0; i
< pPoly
->cpts
; i
++)
921 pts
[i
].x
= pPoly
->apts
[i
].x
;
922 pts
[i
].y
= pPoly
->apts
[i
].y
;
924 PolyBezier(hdc
, pts
, pPoly
->cpts
);
925 HeapFree( GetProcessHeap(), 0, pts
);
928 case EMR_POLYBEZIERTO16
:
930 PEMRPOLYBEZIERTO16 pPoly
= (PEMRPOLYBEZIERTO16
) mr
;
931 /* Shouldn't use PolyBezierTo16 since pPoly->cpts is DWORD */
932 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
933 pPoly
->cpts
* sizeof(POINT
) );
935 for(i
= 0; i
< pPoly
->cpts
; i
++)
937 pts
[i
].x
= pPoly
->apts
[i
].x
;
938 pts
[i
].y
= pPoly
->apts
[i
].y
;
940 PolyBezierTo(hdc
, pts
, pPoly
->cpts
);
941 HeapFree( GetProcessHeap(), 0, pts
);
944 case EMR_POLYPOLYGON16
:
946 PEMRPOLYPOLYGON16 pPolyPoly
= (PEMRPOLYPOLYGON16
) mr
;
947 /* NB POINTS array doesn't start at pPolyPoly->apts it's actually
948 pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
950 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
951 pPolyPoly
->cpts
* sizeof(POINT
) );
953 for(i
= 0; i
< pPolyPoly
->cpts
; i
++)
954 CONV_POINT16TO32((POINT16
*) (pPolyPoly
->aPolyCounts
+
955 pPolyPoly
->nPolys
) + i
, pts
+ i
);
957 PolyPolygon(hdc
, pts
, (INT
*)pPolyPoly
->aPolyCounts
, pPolyPoly
->nPolys
);
958 HeapFree( GetProcessHeap(), 0, pts
);
961 case EMR_POLYPOLYLINE16
:
963 PEMRPOLYPOLYLINE16 pPolyPoly
= (PEMRPOLYPOLYLINE16
) mr
;
964 /* NB POINTS array doesn't start at pPolyPoly->apts it's actually
965 pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
967 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
968 pPolyPoly
->cpts
* sizeof(POINT
) );
970 for(i
= 0; i
< pPolyPoly
->cpts
; i
++)
971 CONV_POINT16TO32((POINT16
*) (pPolyPoly
->aPolyCounts
+
972 pPolyPoly
->nPolys
) + i
, pts
+ i
);
974 PolyPolyline(hdc
, pts
, pPolyPoly
->aPolyCounts
, pPolyPoly
->nPolys
);
975 HeapFree( GetProcessHeap(), 0, pts
);
979 case EMR_STRETCHDIBITS
:
981 EMRSTRETCHDIBITS
*pStretchDIBits
= (EMRSTRETCHDIBITS
*)mr
;
984 pStretchDIBits
->xDest
,
985 pStretchDIBits
->yDest
,
986 pStretchDIBits
->cxDest
,
987 pStretchDIBits
->cyDest
,
988 pStretchDIBits
->xSrc
,
989 pStretchDIBits
->ySrc
,
990 pStretchDIBits
->cxSrc
,
991 pStretchDIBits
->cySrc
,
992 (BYTE
*)mr
+ pStretchDIBits
->offBitsSrc
,
993 (const BITMAPINFO
*)((BYTE
*)mr
+ pStretchDIBits
->offBmiSrc
),
994 pStretchDIBits
->iUsageSrc
,
995 pStretchDIBits
->dwRop
);
999 case EMR_EXTTEXTOUTA
:
1001 PEMREXTTEXTOUTA pExtTextOutA
= (PEMREXTTEXTOUTA
)mr
;
1004 rc
.left
= pExtTextOutA
->emrtext
.rcl
.left
;
1005 rc
.top
= pExtTextOutA
->emrtext
.rcl
.top
;
1006 rc
.right
= pExtTextOutA
->emrtext
.rcl
.right
;
1007 rc
.bottom
= pExtTextOutA
->emrtext
.rcl
.bottom
;
1008 ExtTextOutA(hdc
, pExtTextOutA
->emrtext
.ptlReference
.x
, pExtTextOutA
->emrtext
.ptlReference
.y
,
1009 pExtTextOutA
->emrtext
.fOptions
, &rc
,
1010 (LPSTR
)((BYTE
*)mr
+ pExtTextOutA
->emrtext
.offString
), pExtTextOutA
->emrtext
.nChars
,
1011 (INT
*)((BYTE
*)mr
+ pExtTextOutA
->emrtext
.offDx
));
1015 case EMR_EXTTEXTOUTW
:
1017 PEMREXTTEXTOUTW pExtTextOutW
= (PEMREXTTEXTOUTW
)mr
;
1020 rc
.left
= pExtTextOutW
->emrtext
.rcl
.left
;
1021 rc
.top
= pExtTextOutW
->emrtext
.rcl
.top
;
1022 rc
.right
= pExtTextOutW
->emrtext
.rcl
.right
;
1023 rc
.bottom
= pExtTextOutW
->emrtext
.rcl
.bottom
;
1024 TRACE("EMR_EXTTEXTOUTW: x,y = %ld, %ld. rect = %ld, %ld - %ld, %ld. flags %08lx\n",
1025 pExtTextOutW
->emrtext
.ptlReference
.x
, pExtTextOutW
->emrtext
.ptlReference
.y
,
1026 rc
.left
, rc
.top
, rc
.right
, rc
.bottom
, pExtTextOutW
->emrtext
.fOptions
);
1028 ExtTextOutW(hdc
, pExtTextOutW
->emrtext
.ptlReference
.x
, pExtTextOutW
->emrtext
.ptlReference
.y
,
1029 pExtTextOutW
->emrtext
.fOptions
, &rc
,
1030 (LPWSTR
)((BYTE
*)mr
+ pExtTextOutW
->emrtext
.offString
), pExtTextOutW
->emrtext
.nChars
,
1031 (INT
*)((BYTE
*)mr
+ pExtTextOutW
->emrtext
.offDx
));
1035 case EMR_CREATEPALETTE
:
1037 PEMRCREATEPALETTE lpCreatePal
= (PEMRCREATEPALETTE
)mr
;
1039 (handletable
->objectHandle
)[ lpCreatePal
->ihPal
] =
1040 CreatePalette( &lpCreatePal
->lgpl
);
1045 case EMR_SELECTPALETTE
:
1047 PEMRSELECTPALETTE lpSelectPal
= (PEMRSELECTPALETTE
)mr
;
1049 if( lpSelectPal
->ihPal
& 0x80000000 ) {
1050 SelectPalette( hdc
, GetStockObject(lpSelectPal
->ihPal
& 0x7fffffff), TRUE
);
1052 (handletable
->objectHandle
)[ lpSelectPal
->ihPal
] =
1053 SelectPalette( hdc
, (handletable
->objectHandle
)[lpSelectPal
->ihPal
], TRUE
);
1058 case EMR_REALIZEPALETTE
:
1060 RealizePalette( hdc
);
1064 case EMR_EXTSELECTCLIPRGN
:
1067 PEMREXTSELECTCLIPRGN lpRgn
= (PEMREXTSELECTCLIPRGN
)mr
;
1068 HRGN hRgn
= ExtCreateRegion(NULL
, lpRgn
->cbRgnData
, (RGNDATA
*)lpRgn
->RgnData
);
1069 ExtSelectClipRgn(hdc
, hRgn
, (INT
)(lpRgn
->iMode
));
1070 /* ExtSelectClipRgn created a copy of the region */
1073 FIXME("ExtSelectClipRgn\n");
1077 case EMR_SETMETARGN
:
1083 case EMR_SETWORLDTRANSFORM
:
1085 PEMRSETWORLDTRANSFORM lpXfrm
= (PEMRSETWORLDTRANSFORM
)mr
;
1086 info
->world_transform
= lpXfrm
->xform
;
1090 case EMR_POLYBEZIER
:
1092 PEMRPOLYBEZIER lpPolyBez
= (PEMRPOLYBEZIER
)mr
;
1093 PolyBezier(hdc
, (const LPPOINT
)lpPolyBez
->aptl
, (UINT
)lpPolyBez
->cptl
);
1099 PEMRPOLYGON lpPoly
= (PEMRPOLYGON
)mr
;
1100 Polygon( hdc
, (const LPPOINT
)lpPoly
->aptl
, (UINT
)lpPoly
->cptl
);
1106 PEMRPOLYLINE lpPolyLine
= (PEMRPOLYLINE
)mr
;
1107 Polyline(hdc
, (const LPPOINT
)lpPolyLine
->aptl
, (UINT
)lpPolyLine
->cptl
);
1111 case EMR_POLYBEZIERTO
:
1113 PEMRPOLYBEZIERTO lpPolyBezierTo
= (PEMRPOLYBEZIERTO
)mr
;
1114 PolyBezierTo( hdc
, (const LPPOINT
)lpPolyBezierTo
->aptl
,
1115 (UINT
)lpPolyBezierTo
->cptl
);
1119 case EMR_POLYLINETO
:
1121 PEMRPOLYLINETO lpPolyLineTo
= (PEMRPOLYLINETO
)mr
;
1122 PolylineTo( hdc
, (const LPPOINT
)lpPolyLineTo
->aptl
,
1123 (UINT
)lpPolyLineTo
->cptl
);
1127 case EMR_POLYPOLYLINE
:
1129 PEMRPOLYPOLYLINE pPolyPolyline
= (PEMRPOLYPOLYLINE
) mr
;
1130 /* NB Points at pPolyPolyline->aPolyCounts + pPolyPolyline->nPolys */
1132 PolyPolyline(hdc
, (LPPOINT
)(pPolyPolyline
->aPolyCounts
+
1133 pPolyPolyline
->nPolys
),
1134 pPolyPolyline
->aPolyCounts
,
1135 pPolyPolyline
->nPolys
);
1140 case EMR_POLYPOLYGON
:
1142 PEMRPOLYPOLYGON pPolyPolygon
= (PEMRPOLYPOLYGON
) mr
;
1144 /* NB Points at pPolyPolygon->aPolyCounts + pPolyPolygon->nPolys */
1146 PolyPolygon(hdc
, (LPPOINT
)(pPolyPolygon
->aPolyCounts
+
1147 pPolyPolygon
->nPolys
),
1148 (INT
*)pPolyPolygon
->aPolyCounts
, pPolyPolygon
->nPolys
);
1152 case EMR_SETBRUSHORGEX
:
1154 PEMRSETBRUSHORGEX lpSetBrushOrgEx
= (PEMRSETBRUSHORGEX
)mr
;
1157 (INT
)lpSetBrushOrgEx
->ptlOrigin
.x
,
1158 (INT
)lpSetBrushOrgEx
->ptlOrigin
.y
,
1166 PEMRSETPIXELV lpSetPixelV
= (PEMRSETPIXELV
)mr
;
1169 (INT
)lpSetPixelV
->ptlPixel
.x
,
1170 (INT
)lpSetPixelV
->ptlPixel
.y
,
1171 lpSetPixelV
->crColor
);
1176 case EMR_SETMAPPERFLAGS
:
1178 PEMRSETMAPPERFLAGS lpSetMapperFlags
= (PEMRSETMAPPERFLAGS
)mr
;
1180 SetMapperFlags( hdc
, lpSetMapperFlags
->dwFlags
);
1185 case EMR_SETCOLORADJUSTMENT
:
1187 PEMRSETCOLORADJUSTMENT lpSetColorAdjust
= (PEMRSETCOLORADJUSTMENT
)mr
;
1189 SetColorAdjustment( hdc
, &lpSetColorAdjust
->ColorAdjustment
);
1194 case EMR_OFFSETCLIPRGN
:
1196 PEMROFFSETCLIPRGN lpOffsetClipRgn
= (PEMROFFSETCLIPRGN
)mr
;
1199 (INT
)lpOffsetClipRgn
->ptlOffset
.x
,
1200 (INT
)lpOffsetClipRgn
->ptlOffset
.y
);
1201 FIXME("OffsetClipRgn\n");
1206 case EMR_EXCLUDECLIPRECT
:
1208 PEMREXCLUDECLIPRECT lpExcludeClipRect
= (PEMREXCLUDECLIPRECT
)mr
;
1210 ExcludeClipRect( hdc
,
1211 lpExcludeClipRect
->rclClip
.left
,
1212 lpExcludeClipRect
->rclClip
.top
,
1213 lpExcludeClipRect
->rclClip
.right
,
1214 lpExcludeClipRect
->rclClip
.bottom
);
1215 FIXME("ExcludeClipRect\n");
1220 case EMR_SCALEVIEWPORTEXTEX
:
1222 PEMRSCALEVIEWPORTEXTEX lpScaleViewportExtEx
= (PEMRSCALEVIEWPORTEXTEX
)mr
;
1224 if ((info
->mode
!= MM_ISOTROPIC
) && (info
->mode
!= MM_ANISOTROPIC
))
1226 if (!lpScaleViewportExtEx
->xNum
|| !lpScaleViewportExtEx
->xDenom
||
1227 !lpScaleViewportExtEx
->yNum
|| !lpScaleViewportExtEx
->yDenom
)
1229 info
->vportExtX
= (info
->vportExtX
* lpScaleViewportExtEx
->xNum
) /
1230 lpScaleViewportExtEx
->xDenom
;
1231 info
->vportExtY
= (info
->vportExtY
* lpScaleViewportExtEx
->yNum
) /
1232 lpScaleViewportExtEx
->yDenom
;
1233 if (info
->vportExtX
== 0) info
->vportExtX
= 1;
1234 if (info
->vportExtY
== 0) info
->vportExtY
= 1;
1235 if (info
->mode
== MM_ISOTROPIC
)
1236 FIXME("EMRSCALEVIEWPORTEXTEX MM_ISOTROPIC mapping\n");
1237 /* MAPPING_FixIsotropic( dc ); */
1239 TRACE("EMRSCALEVIEWPORTEXTEX %ld/%ld %ld/%ld\n",
1240 lpScaleViewportExtEx
->xNum
,lpScaleViewportExtEx
->xDenom
,
1241 lpScaleViewportExtEx
->yNum
,lpScaleViewportExtEx
->yDenom
);
1246 case EMR_SCALEWINDOWEXTEX
:
1248 PEMRSCALEWINDOWEXTEX lpScaleWindowExtEx
= (PEMRSCALEWINDOWEXTEX
)mr
;
1250 if ((info
->mode
!= MM_ISOTROPIC
) && (info
->mode
!= MM_ANISOTROPIC
))
1252 if (!lpScaleWindowExtEx
->xNum
|| !lpScaleWindowExtEx
->xDenom
||
1253 !lpScaleWindowExtEx
->xNum
|| !lpScaleWindowExtEx
->yDenom
)
1255 info
->wndExtX
= (info
->wndExtX
* lpScaleWindowExtEx
->xNum
) /
1256 lpScaleWindowExtEx
->xDenom
;
1257 info
->wndExtY
= (info
->wndExtY
* lpScaleWindowExtEx
->yNum
) /
1258 lpScaleWindowExtEx
->yDenom
;
1259 if (info
->wndExtX
== 0) info
->wndExtX
= 1;
1260 if (info
->wndExtY
== 0) info
->wndExtY
= 1;
1261 if (info
->mode
== MM_ISOTROPIC
)
1262 FIXME("EMRSCALEWINDOWEXTEX MM_ISOTROPIC mapping\n");
1263 /* MAPPING_FixIsotropic( dc ); */
1265 TRACE("EMRSCALEWINDOWEXTEX %ld/%ld %ld/%ld\n",
1266 lpScaleWindowExtEx
->xNum
,lpScaleWindowExtEx
->xDenom
,
1267 lpScaleWindowExtEx
->yNum
,lpScaleWindowExtEx
->yDenom
);
1272 case EMR_MODIFYWORLDTRANSFORM
:
1274 PEMRMODIFYWORLDTRANSFORM lpModifyWorldTrans
= (PEMRMODIFYWORLDTRANSFORM
)mr
;
1276 switch(lpModifyWorldTrans
->iMode
) {
1278 info
->world_transform
.eM11
= info
->world_transform
.eM22
= 1;
1279 info
->world_transform
.eM12
= info
->world_transform
.eM21
= 0;
1280 info
->world_transform
.eDx
= info
->world_transform
.eDy
= 0;
1282 case MWT_LEFTMULTIPLY
:
1283 CombineTransform(&info
->world_transform
, &lpModifyWorldTrans
->xform
,
1284 &info
->world_transform
);
1286 case MWT_RIGHTMULTIPLY
:
1287 CombineTransform(&info
->world_transform
, &info
->world_transform
,
1288 &lpModifyWorldTrans
->xform
);
1291 FIXME("Unknown imode %ld\n", lpModifyWorldTrans
->iMode
);
1299 PEMRANGLEARC lpAngleArc
= (PEMRANGLEARC
)mr
;
1302 (INT
)lpAngleArc
->ptlCenter
.x
, (INT
)lpAngleArc
->ptlCenter
.y
,
1303 lpAngleArc
->nRadius
, lpAngleArc
->eStartAngle
,
1304 lpAngleArc
->eSweepAngle
);
1311 PEMRROUNDRECT lpRoundRect
= (PEMRROUNDRECT
)mr
;
1314 lpRoundRect
->rclBox
.left
,
1315 lpRoundRect
->rclBox
.top
,
1316 lpRoundRect
->rclBox
.right
,
1317 lpRoundRect
->rclBox
.bottom
,
1318 lpRoundRect
->szlCorner
.cx
,
1319 lpRoundRect
->szlCorner
.cy
);
1326 PEMRARC lpArc
= (PEMRARC
)mr
;
1329 (INT
)lpArc
->rclBox
.left
,
1330 (INT
)lpArc
->rclBox
.top
,
1331 (INT
)lpArc
->rclBox
.right
,
1332 (INT
)lpArc
->rclBox
.bottom
,
1333 (INT
)lpArc
->ptlStart
.x
,
1334 (INT
)lpArc
->ptlStart
.y
,
1335 (INT
)lpArc
->ptlEnd
.x
,
1336 (INT
)lpArc
->ptlEnd
.y
);
1343 PEMRCHORD lpChord
= (PEMRCHORD
)mr
;
1346 (INT
)lpChord
->rclBox
.left
,
1347 (INT
)lpChord
->rclBox
.top
,
1348 (INT
)lpChord
->rclBox
.right
,
1349 (INT
)lpChord
->rclBox
.bottom
,
1350 (INT
)lpChord
->ptlStart
.x
,
1351 (INT
)lpChord
->ptlStart
.y
,
1352 (INT
)lpChord
->ptlEnd
.x
,
1353 (INT
)lpChord
->ptlEnd
.y
);
1360 PEMRPIE lpPie
= (PEMRPIE
)mr
;
1363 (INT
)lpPie
->rclBox
.left
,
1364 (INT
)lpPie
->rclBox
.top
,
1365 (INT
)lpPie
->rclBox
.right
,
1366 (INT
)lpPie
->rclBox
.bottom
,
1367 (INT
)lpPie
->ptlStart
.x
,
1368 (INT
)lpPie
->ptlStart
.y
,
1369 (INT
)lpPie
->ptlEnd
.x
,
1370 (INT
)lpPie
->ptlEnd
.y
);
1377 PEMRARC lpArcTo
= (PEMRARC
)mr
;
1380 (INT
)lpArcTo
->rclBox
.left
,
1381 (INT
)lpArcTo
->rclBox
.top
,
1382 (INT
)lpArcTo
->rclBox
.right
,
1383 (INT
)lpArcTo
->rclBox
.bottom
,
1384 (INT
)lpArcTo
->ptlStart
.x
,
1385 (INT
)lpArcTo
->ptlStart
.y
,
1386 (INT
)lpArcTo
->ptlEnd
.x
,
1387 (INT
)lpArcTo
->ptlEnd
.y
);
1392 case EMR_EXTFLOODFILL
:
1394 PEMREXTFLOODFILL lpExtFloodFill
= (PEMREXTFLOODFILL
)mr
;
1397 (INT
)lpExtFloodFill
->ptlStart
.x
,
1398 (INT
)lpExtFloodFill
->ptlStart
.y
,
1399 lpExtFloodFill
->crColor
,
1400 (UINT
)lpExtFloodFill
->iMode
);
1407 PEMRPOLYDRAW lpPolyDraw
= (PEMRPOLYDRAW
)mr
;
1409 (const LPPOINT
)lpPolyDraw
->aptl
,
1410 lpPolyDraw
->abTypes
,
1411 (INT
)lpPolyDraw
->cptl
);
1416 case EMR_SETARCDIRECTION
:
1418 PEMRSETARCDIRECTION lpSetArcDirection
= (PEMRSETARCDIRECTION
)mr
;
1419 SetArcDirection( hdc
, (INT
)lpSetArcDirection
->iArcDirection
);
1423 case EMR_SETMITERLIMIT
:
1425 PEMRSETMITERLIMIT lpSetMiterLimit
= (PEMRSETMITERLIMIT
)mr
;
1426 SetMiterLimit( hdc
, lpSetMiterLimit
->eMiterLimit
, NULL
);
1442 case EMR_CLOSEFIGURE
:
1450 /*PEMRFILLPATH lpFillPath = (PEMRFILLPATH)mr;*/
1455 case EMR_STROKEANDFILLPATH
:
1457 /*PEMRSTROKEANDFILLPATH lpStrokeAndFillPath = (PEMRSTROKEANDFILLPATH)mr;*/
1458 StrokeAndFillPath( hdc
);
1462 case EMR_STROKEPATH
:
1464 /*PEMRSTROKEPATH lpStrokePath = (PEMRSTROKEPATH)mr;*/
1469 case EMR_FLATTENPATH
:
1481 case EMR_SELECTCLIPPATH
:
1483 PEMRSELECTCLIPPATH lpSelectClipPath
= (PEMRSELECTCLIPPATH
)mr
;
1484 SelectClipPath( hdc
, (INT
)lpSelectClipPath
->iMode
);
1494 case EMR_CREATECOLORSPACE
:
1496 PEMRCREATECOLORSPACE lpCreateColorSpace
= (PEMRCREATECOLORSPACE
)mr
;
1497 (handletable
->objectHandle
)[lpCreateColorSpace
->ihCS
] =
1498 CreateColorSpaceA( &lpCreateColorSpace
->lcs
);
1502 case EMR_SETCOLORSPACE
:
1504 PEMRSETCOLORSPACE lpSetColorSpace
= (PEMRSETCOLORSPACE
)mr
;
1506 (handletable
->objectHandle
)[lpSetColorSpace
->ihCS
] );
1510 case EMR_DELETECOLORSPACE
:
1512 PEMRDELETECOLORSPACE lpDeleteColorSpace
= (PEMRDELETECOLORSPACE
)mr
;
1513 DeleteColorSpace( (handletable
->objectHandle
)[lpDeleteColorSpace
->ihCS
] );
1517 case EMR_SETICMMODE
:
1519 PEMRSETICMMODE lpSetICMMode
= (PEMRSETICMMODE
)mr
;
1520 SetICMMode( hdc
, (INT
)lpSetICMMode
->iMode
);
1524 case EMR_PIXELFORMAT
:
1527 PEMRPIXELFORMAT lpPixelFormat
= (PEMRPIXELFORMAT
)mr
;
1529 iPixelFormat
= ChoosePixelFormat( hdc
, &lpPixelFormat
->pfd
);
1530 SetPixelFormat( hdc
, iPixelFormat
, &lpPixelFormat
->pfd
);
1535 case EMR_SETPALETTEENTRIES
:
1537 PEMRSETPALETTEENTRIES lpSetPaletteEntries
= (PEMRSETPALETTEENTRIES
)mr
;
1539 SetPaletteEntries( (handletable
->objectHandle
)[lpSetPaletteEntries
->ihPal
],
1540 (UINT
)lpSetPaletteEntries
->iStart
,
1541 (UINT
)lpSetPaletteEntries
->cEntries
,
1542 lpSetPaletteEntries
->aPalEntries
);
1547 case EMR_RESIZEPALETTE
:
1549 PEMRRESIZEPALETTE lpResizePalette
= (PEMRRESIZEPALETTE
)mr
;
1551 ResizePalette( (handletable
->objectHandle
)[lpResizePalette
->ihPal
],
1552 (UINT
)lpResizePalette
->cEntries
);
1557 case EMR_CREATEDIBPATTERNBRUSHPT
:
1559 PEMRCREATEDIBPATTERNBRUSHPT lpCreate
= (PEMRCREATEDIBPATTERNBRUSHPT
)mr
;
1560 LPVOID lpPackedStruct
;
1562 /* check that offsets and data are contained within the record */
1563 if ( !( (lpCreate
->cbBmi
>=0) && (lpCreate
->cbBits
>=0) &&
1564 (lpCreate
->offBmi
>=0) && (lpCreate
->offBits
>=0) &&
1565 ((lpCreate
->offBmi
+lpCreate
->cbBmi
) <= mr
->nSize
) &&
1566 ((lpCreate
->offBits
+lpCreate
->cbBits
) <= mr
->nSize
) ) )
1568 ERR("Invalid EMR_CREATEDIBPATTERNBRUSHPT record\n");
1572 /* This is a BITMAPINFO struct followed directly by bitmap bits */
1573 lpPackedStruct
= HeapAlloc( GetProcessHeap(), 0,
1574 lpCreate
->cbBmi
+ lpCreate
->cbBits
);
1577 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
1581 /* Now pack this structure */
1582 memcpy( lpPackedStruct
,
1583 ((BYTE
*)lpCreate
) + lpCreate
->offBmi
,
1585 memcpy( ((BYTE
*)lpPackedStruct
) + lpCreate
->cbBmi
,
1586 ((BYTE
*)lpCreate
) + lpCreate
->offBits
,
1589 (handletable
->objectHandle
)[lpCreate
->ihBrush
] =
1590 CreateDIBPatternBrushPt( lpPackedStruct
,
1591 (UINT
)lpCreate
->iUsage
);
1593 HeapFree(GetProcessHeap(), 0, lpPackedStruct
);
1598 case EMR_CREATEMONOBRUSH
:
1600 PEMRCREATEMONOBRUSH pCreateMonoBrush
= (PEMRCREATEMONOBRUSH
)mr
;
1601 BITMAPINFO
*pbi
= (BITMAPINFO
*)((BYTE
*)mr
+ pCreateMonoBrush
->offBmi
);
1602 HBITMAP hBmp
= CreateDIBitmap(0, (BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1603 (BYTE
*)mr
+ pCreateMonoBrush
->offBits
, pbi
, pCreateMonoBrush
->iUsage
);
1604 (handletable
->objectHandle
)[pCreateMonoBrush
->ihBrush
] = CreatePatternBrush(hBmp
);
1605 /* CreatePatternBrush created a copy of the bitmap */
1612 PEMRBITBLT pBitBlt
= (PEMRBITBLT
)mr
;
1614 if(pBitBlt
->offBmiSrc
== 0) { /* Record is a PatBlt */
1615 PatBlt(hdc
, pBitBlt
->xDest
, pBitBlt
->yDest
, pBitBlt
->cxDest
, pBitBlt
->cyDest
,
1617 } else { /* BitBlt */
1618 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1619 HBRUSH hBrush
, hBrushOld
;
1620 HBITMAP hBmp
= 0, hBmpOld
= 0;
1621 BITMAPINFO
*pbi
= (BITMAPINFO
*)((BYTE
*)mr
+ pBitBlt
->offBmiSrc
);
1623 SetWorldTransform(hdcSrc
, &pBitBlt
->xformSrc
);
1625 hBrush
= CreateSolidBrush(pBitBlt
->crBkColorSrc
);
1626 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1627 PatBlt(hdcSrc
, pBitBlt
->rclBounds
.left
, pBitBlt
->rclBounds
.top
,
1628 pBitBlt
->rclBounds
.right
- pBitBlt
->rclBounds
.left
,
1629 pBitBlt
->rclBounds
.bottom
- pBitBlt
->rclBounds
.top
, PATCOPY
);
1630 SelectObject(hdcSrc
, hBrushOld
);
1631 DeleteObject(hBrush
);
1633 hBmp
= CreateDIBitmap(0, (BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1634 (BYTE
*)mr
+ pBitBlt
->offBitsSrc
, pbi
, pBitBlt
->iUsageSrc
);
1635 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1637 BitBlt(hdc
, pBitBlt
->xDest
, pBitBlt
->yDest
, pBitBlt
->cxDest
, pBitBlt
->cyDest
,
1638 hdcSrc
, pBitBlt
->xSrc
, pBitBlt
->ySrc
, pBitBlt
->dwRop
);
1640 SelectObject(hdcSrc
, hBmpOld
);
1647 case EMR_STRETCHBLT
:
1649 PEMRSTRETCHBLT pStretchBlt
= (PEMRSTRETCHBLT
)mr
;
1651 TRACE("EMR_STRETCHBLT: %ld, %ld %ldx%ld -> %ld, %ld %ldx%ld. rop %08lx offBitsSrc %ld\n",
1652 pStretchBlt
->xSrc
, pStretchBlt
->ySrc
, pStretchBlt
->cxSrc
, pStretchBlt
->cySrc
,
1653 pStretchBlt
->xDest
, pStretchBlt
->yDest
, pStretchBlt
->cxDest
, pStretchBlt
->cyDest
,
1654 pStretchBlt
->dwRop
, pStretchBlt
->offBitsSrc
);
1656 if(pStretchBlt
->offBmiSrc
== 0) { /* Record is a PatBlt */
1657 PatBlt(hdc
, pStretchBlt
->xDest
, pStretchBlt
->yDest
, pStretchBlt
->cxDest
, pStretchBlt
->cyDest
,
1658 pStretchBlt
->dwRop
);
1659 } else { /* StretchBlt */
1660 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1661 HBRUSH hBrush
, hBrushOld
;
1662 HBITMAP hBmp
= 0, hBmpOld
= 0;
1663 BITMAPINFO
*pbi
= (BITMAPINFO
*)((BYTE
*)mr
+ pStretchBlt
->offBmiSrc
);
1665 SetWorldTransform(hdcSrc
, &pStretchBlt
->xformSrc
);
1667 hBrush
= CreateSolidBrush(pStretchBlt
->crBkColorSrc
);
1668 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1669 PatBlt(hdcSrc
, pStretchBlt
->rclBounds
.left
, pStretchBlt
->rclBounds
.top
,
1670 pStretchBlt
->rclBounds
.right
- pStretchBlt
->rclBounds
.left
,
1671 pStretchBlt
->rclBounds
.bottom
- pStretchBlt
->rclBounds
.top
, PATCOPY
);
1672 SelectObject(hdcSrc
, hBrushOld
);
1673 DeleteObject(hBrush
);
1675 hBmp
= CreateDIBitmap(0, (BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1676 (BYTE
*)mr
+ pStretchBlt
->offBitsSrc
, pbi
, pStretchBlt
->iUsageSrc
);
1677 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1679 StretchBlt(hdc
, pStretchBlt
->xDest
, pStretchBlt
->yDest
, pStretchBlt
->cxDest
, pStretchBlt
->cyDest
,
1680 hdcSrc
, pStretchBlt
->xSrc
, pStretchBlt
->ySrc
, pStretchBlt
->cxSrc
, pStretchBlt
->cySrc
,
1681 pStretchBlt
->dwRop
);
1683 SelectObject(hdcSrc
, hBmpOld
);
1692 PEMRMASKBLT pMaskBlt
= (PEMRMASKBLT
)mr
;
1693 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1694 HBRUSH hBrush
, hBrushOld
;
1695 HBITMAP hBmp
, hBmpOld
, hBmpMask
;
1698 SetWorldTransform(hdcSrc
, &pMaskBlt
->xformSrc
);
1700 hBrush
= CreateSolidBrush(pMaskBlt
->crBkColorSrc
);
1701 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1702 PatBlt(hdcSrc
, pMaskBlt
->rclBounds
.left
, pMaskBlt
->rclBounds
.top
,
1703 pMaskBlt
->rclBounds
.right
- pMaskBlt
->rclBounds
.left
,
1704 pMaskBlt
->rclBounds
.bottom
- pMaskBlt
->rclBounds
.top
, PATCOPY
);
1705 SelectObject(hdcSrc
, hBrushOld
);
1706 DeleteObject(hBrush
);
1708 pbi
= (BITMAPINFO
*)((BYTE
*)mr
+ pMaskBlt
->offBmiMask
);
1709 hBmpMask
= CreateDIBitmap(0, (BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1710 (BYTE
*)mr
+ pMaskBlt
->offBitsMask
, pbi
, pMaskBlt
->iUsageMask
);
1712 pbi
= (BITMAPINFO
*)((BYTE
*)mr
+ pMaskBlt
->offBmiSrc
);
1713 hBmp
= CreateDIBitmap(0, (BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1714 (BYTE
*)mr
+ pMaskBlt
->offBitsSrc
, pbi
, pMaskBlt
->iUsageSrc
);
1715 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1728 SelectObject(hdcSrc
, hBmpOld
);
1730 DeleteObject(hBmpMask
);
1737 PEMRPLGBLT pPlgBlt
= (PEMRPLGBLT
)mr
;
1738 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1739 HBRUSH hBrush
, hBrushOld
;
1740 HBITMAP hBmp
, hBmpOld
, hBmpMask
;
1744 SetWorldTransform(hdcSrc
, &pPlgBlt
->xformSrc
);
1746 pts
[0].x
= pPlgBlt
->aptlDest
[0].x
; pts
[0].y
= pPlgBlt
->aptlDest
[0].y
;
1747 pts
[1].x
= pPlgBlt
->aptlDest
[1].x
; pts
[1].y
= pPlgBlt
->aptlDest
[1].y
;
1748 pts
[2].x
= pPlgBlt
->aptlDest
[2].x
; pts
[2].y
= pPlgBlt
->aptlDest
[2].y
;
1750 hBrush
= CreateSolidBrush(pPlgBlt
->crBkColorSrc
);
1751 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1752 PatBlt(hdcSrc
, pPlgBlt
->rclBounds
.left
, pPlgBlt
->rclBounds
.top
,
1753 pPlgBlt
->rclBounds
.right
- pPlgBlt
->rclBounds
.left
,
1754 pPlgBlt
->rclBounds
.bottom
- pPlgBlt
->rclBounds
.top
, PATCOPY
);
1755 SelectObject(hdcSrc
, hBrushOld
);
1756 DeleteObject(hBrush
);
1758 pbi
= (BITMAPINFO
*)((BYTE
*)mr
+ pPlgBlt
->offBmiMask
);
1759 hBmpMask
= CreateDIBitmap(0, (BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1760 (BYTE
*)mr
+ pPlgBlt
->offBitsMask
, pbi
, pPlgBlt
->iUsageMask
);
1762 pbi
= (BITMAPINFO
*)((BYTE
*)mr
+ pPlgBlt
->offBmiSrc
);
1763 hBmp
= CreateDIBitmap(0, (BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1764 (BYTE
*)mr
+ pPlgBlt
->offBitsSrc
, pbi
, pPlgBlt
->iUsageSrc
);
1765 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1776 SelectObject(hdcSrc
, hBmpOld
);
1778 DeleteObject(hBmpMask
);
1783 case EMR_SETDIBITSTODEVICE
:
1785 PEMRSETDIBITSTODEVICE pSetDIBitsToDevice
= (PEMRSETDIBITSTODEVICE
)mr
;
1787 SetDIBitsToDevice(hdc
,
1788 pSetDIBitsToDevice
->xDest
,
1789 pSetDIBitsToDevice
->yDest
,
1790 pSetDIBitsToDevice
->cxSrc
,
1791 pSetDIBitsToDevice
->cySrc
,
1792 pSetDIBitsToDevice
->xSrc
,
1793 pSetDIBitsToDevice
->ySrc
,
1794 pSetDIBitsToDevice
->iStartScan
,
1795 pSetDIBitsToDevice
->cScans
,
1796 (BYTE
*)mr
+ pSetDIBitsToDevice
->offBitsSrc
,
1797 (BITMAPINFO
*)((BYTE
*)mr
+ pSetDIBitsToDevice
->offBmiSrc
),
1798 pSetDIBitsToDevice
->iUsageSrc
);
1802 case EMR_POLYTEXTOUTA
:
1804 PEMRPOLYTEXTOUTA pPolyTextOutA
= (PEMRPOLYTEXTOUTA
)mr
;
1805 POLYTEXTA
*polytextA
= HeapAlloc(GetProcessHeap(), 0, pPolyTextOutA
->cStrings
* sizeof(POLYTEXTA
));
1807 XFORM xform
, xformOld
;
1810 gModeOld
= SetGraphicsMode(hdc
, pPolyTextOutA
->iGraphicsMode
);
1811 GetWorldTransform(hdc
, &xformOld
);
1813 xform
.eM11
= pPolyTextOutA
->exScale
;
1816 xform
.eM22
= pPolyTextOutA
->eyScale
;
1819 SetWorldTransform(hdc
, &xform
);
1821 /* Set up POLYTEXTA structures */
1822 for(i
= 0; i
< pPolyTextOutA
->cStrings
; i
++)
1824 polytextA
[i
].x
= pPolyTextOutA
->aemrtext
[i
].ptlReference
.x
;
1825 polytextA
[i
].y
= pPolyTextOutA
->aemrtext
[i
].ptlReference
.y
;
1826 polytextA
[i
].n
= pPolyTextOutA
->aemrtext
[i
].nChars
;
1827 polytextA
[i
].lpstr
= (LPSTR
)((BYTE
*)mr
+ pPolyTextOutA
->aemrtext
[i
].offString
);
1828 polytextA
[i
].uiFlags
= pPolyTextOutA
->aemrtext
[i
].fOptions
;
1829 polytextA
[i
].rcl
.left
= pPolyTextOutA
->aemrtext
[i
].rcl
.left
;
1830 polytextA
[i
].rcl
.right
= pPolyTextOutA
->aemrtext
[i
].rcl
.right
;
1831 polytextA
[i
].rcl
.top
= pPolyTextOutA
->aemrtext
[i
].rcl
.top
;
1832 polytextA
[i
].rcl
.bottom
= pPolyTextOutA
->aemrtext
[i
].rcl
.bottom
;
1833 polytextA
[i
].pdx
= (int *)((BYTE
*)mr
+ pPolyTextOutA
->aemrtext
[i
].offDx
);
1835 PolyTextOutA(hdc
, polytextA
, pPolyTextOutA
->cStrings
);
1836 HeapFree(GetProcessHeap(), 0, polytextA
);
1838 SetWorldTransform(hdc
, &xformOld
);
1839 SetGraphicsMode(hdc
, gModeOld
);
1843 case EMR_POLYTEXTOUTW
:
1845 PEMRPOLYTEXTOUTW pPolyTextOutW
= (PEMRPOLYTEXTOUTW
)mr
;
1846 POLYTEXTW
*polytextW
= HeapAlloc(GetProcessHeap(), 0, pPolyTextOutW
->cStrings
* sizeof(POLYTEXTW
));
1848 XFORM xform
, xformOld
;
1851 gModeOld
= SetGraphicsMode(hdc
, pPolyTextOutW
->iGraphicsMode
);
1852 GetWorldTransform(hdc
, &xformOld
);
1854 xform
.eM11
= pPolyTextOutW
->exScale
;
1857 xform
.eM22
= pPolyTextOutW
->eyScale
;
1860 SetWorldTransform(hdc
, &xform
);
1862 /* Set up POLYTEXTW structures */
1863 for(i
= 0; i
< pPolyTextOutW
->cStrings
; i
++)
1865 polytextW
[i
].x
= pPolyTextOutW
->aemrtext
[i
].ptlReference
.x
;
1866 polytextW
[i
].y
= pPolyTextOutW
->aemrtext
[i
].ptlReference
.y
;
1867 polytextW
[i
].n
= pPolyTextOutW
->aemrtext
[i
].nChars
;
1868 polytextW
[i
].lpstr
= (LPWSTR
)((BYTE
*)mr
+ pPolyTextOutW
->aemrtext
[i
].offString
);
1869 polytextW
[i
].uiFlags
= pPolyTextOutW
->aemrtext
[i
].fOptions
;
1870 polytextW
[i
].rcl
.left
= pPolyTextOutW
->aemrtext
[i
].rcl
.left
;
1871 polytextW
[i
].rcl
.right
= pPolyTextOutW
->aemrtext
[i
].rcl
.right
;
1872 polytextW
[i
].rcl
.top
= pPolyTextOutW
->aemrtext
[i
].rcl
.top
;
1873 polytextW
[i
].rcl
.bottom
= pPolyTextOutW
->aemrtext
[i
].rcl
.bottom
;
1874 polytextW
[i
].pdx
= (int *)((BYTE
*)mr
+ pPolyTextOutW
->aemrtext
[i
].offDx
);
1876 PolyTextOutW(hdc
, polytextW
, pPolyTextOutW
->cStrings
);
1877 HeapFree(GetProcessHeap(), 0, polytextW
);
1879 SetWorldTransform(hdc
, &xformOld
);
1880 SetGraphicsMode(hdc
, gModeOld
);
1886 PEMRFILLRGN pFillRgn
= (PEMRFILLRGN
)mr
;
1887 HRGN hRgn
= ExtCreateRegion(NULL
, pFillRgn
->cbRgnData
, (RGNDATA
*)pFillRgn
->RgnData
);
1890 (handletable
->objectHandle
)[pFillRgn
->ihBrush
]);
1897 PEMRFRAMERGN pFrameRgn
= (PEMRFRAMERGN
)mr
;
1898 HRGN hRgn
= ExtCreateRegion(NULL
, pFrameRgn
->cbRgnData
, (RGNDATA
*)pFrameRgn
->RgnData
);
1901 (handletable
->objectHandle
)[pFrameRgn
->ihBrush
],
1902 pFrameRgn
->szlStroke
.cx
,
1903 pFrameRgn
->szlStroke
.cy
);
1910 PEMRINVERTRGN pInvertRgn
= (PEMRINVERTRGN
)mr
;
1911 HRGN hRgn
= ExtCreateRegion(NULL
, pInvertRgn
->cbRgnData
, (RGNDATA
*)pInvertRgn
->RgnData
);
1912 InvertRgn(hdc
, hRgn
);
1919 PEMRPAINTRGN pPaintRgn
= (PEMRPAINTRGN
)mr
;
1920 HRGN hRgn
= ExtCreateRegion(NULL
, pPaintRgn
->cbRgnData
, (RGNDATA
*)pPaintRgn
->RgnData
);
1921 PaintRgn(hdc
, hRgn
);
1926 case EMR_SETTEXTJUSTIFICATION
:
1928 PEMRSETTEXTJUSTIFICATION pSetTextJust
= (PEMRSETTEXTJUSTIFICATION
)mr
;
1929 SetTextJustification(hdc
, pSetTextJust
->nBreakExtra
, pSetTextJust
->nBreakCount
);
1935 PEMRSETLAYOUT pSetLayout
= (PEMRSETLAYOUT
)mr
;
1936 SetLayout(hdc
, pSetLayout
->iMode
);
1940 case EMR_POLYDRAW16
:
1942 case EMR_GLSBOUNDEDRECORD
:
1943 case EMR_DRAWESCAPE
:
1946 case EMR_SMALLTEXTOUT
:
1947 case EMR_FORCEUFIMAPPING
:
1948 case EMR_NAMEDESCAPE
:
1949 case EMR_COLORCORRECTPALETTE
:
1950 case EMR_SETICMPROFILEA
:
1951 case EMR_SETICMPROFILEW
:
1952 case EMR_ALPHABLEND
:
1953 case EMR_TRANSPARENTBLT
:
1954 case EMR_GRADIENTFILL
:
1955 case EMR_SETLINKEDUFI
:
1956 case EMR_COLORMATCHTOTARGETW
:
1957 case EMR_CREATECOLORSPACEW
:
1960 /* From docs: If PlayEnhMetaFileRecord doesn't recognize a
1961 record then ignore and return TRUE. */
1962 FIXME("type %d is unimplemented\n", type
);
1965 tmprc
.left
= tmprc
.top
= 0;
1966 tmprc
.right
= tmprc
.bottom
= 1000;
1967 LPtoDP(hdc
, (POINT
*)&tmprc
, 2);
1968 TRACE("L:0,0 - 1000,1000 -> D:%ld,%ld - %ld,%ld\n", tmprc
.left
,
1969 tmprc
.top
, tmprc
.right
, tmprc
.bottom
);
1973 /* WinNT - update the transform (win9x updates when the next graphics output
1974 record is played). */
1975 EMF_Update_MF_Xform(hdc
, info
);
1982 /*****************************************************************************
1984 * EnumEnhMetaFile (GDI32.@)
1986 * Walk an enhanced metafile, calling a user-specified function _EnhMetaFunc_
1988 * record. Returns when either every record has been used or
1989 * when _EnhMetaFunc_ returns FALSE.
1993 * TRUE if every record is used, FALSE if any invocation of _EnhMetaFunc_
2000 * This function behaves differently in Win9x and WinNT.
2002 * In WinNT, the DC's world transform is updated as the EMF changes
2003 * the Window/Viewport Extent and Origin or it's world transform.
2004 * The actual Window/Viewport Extent and Origin are left untouched.
2006 * In Win9x, the DC is left untouched, and PlayEnhMetaFileRecord
2007 * updates the scaling itself but only just before a record that
2008 * writes anything to the DC.
2010 * I'm not sure where the data (enum_emh_data) is stored in either
2011 * version. For this implementation, it is stored before the handle
2012 * table, but it could be stored in the DC, in the EMF handle or in
2016 BOOL WINAPI
EnumEnhMetaFile(
2017 HDC hdc
, /* [in] device context to pass to _EnhMetaFunc_ */
2018 HENHMETAFILE hmf
, /* [in] EMF to walk */
2019 ENHMFENUMPROC callback
, /* [in] callback function */
2020 LPVOID data
, /* [in] optional data for callback function */
2021 const RECT
*lpRect
/* [in] bounding rectangle for rendered metafile */
2033 HBRUSH hBrush
= NULL
;
2035 enum_emh_data
*info
;
2036 SIZE vp_size
, win_size
;
2037 POINT vp_org
, win_org
;
2038 INT mapMode
= MM_TEXT
;
2039 COLORREF old_text_color
= 0, old_bk_color
= 0;
2043 SetLastError(ERROR_INVALID_PARAMETER
);
2047 emh
= EMF_GetEnhMetaHeader(hmf
);
2049 SetLastError(ERROR_INVALID_HANDLE
);
2053 info
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
,
2054 sizeof (enum_emh_data
) + sizeof(HANDLETABLE
) * emh
->nHandles
);
2057 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2064 info
->vportOrgX
= 0;
2065 info
->vportOrgY
= 0;
2066 info
->vportExtX
= 1;
2067 info
->vportExtY
= 1;
2068 info
->world_transform
.eM11
= info
->world_transform
.eM22
= 1;
2069 info
->world_transform
.eM12
= info
->world_transform
.eM21
= 0;
2070 info
->world_transform
.eDx
= info
->world_transform
.eDy
= 0;
2072 ht
= (HANDLETABLE
*) &info
[1];
2073 ht
->objectHandle
[0] = hmf
;
2077 savedMode
= SetGraphicsMode(hdc
, GM_ADVANCED
);
2078 GetWorldTransform(hdc
, &savedXform
);
2079 GetViewportExtEx(hdc
, &vp_size
);
2080 GetWindowExtEx(hdc
, &win_size
);
2081 GetViewportOrgEx(hdc
, &vp_org
);
2082 GetWindowOrgEx(hdc
, &win_org
);
2083 mapMode
= GetMapMode(hdc
);
2085 /* save the current pen, brush and font */
2086 hPen
= GetCurrentObject(hdc
, OBJ_PEN
);
2087 hBrush
= GetCurrentObject(hdc
, OBJ_BRUSH
);
2088 hFont
= GetCurrentObject(hdc
, OBJ_FONT
);
2090 old_text_color
= SetTextColor(hdc
, RGB(0,0,0));
2091 old_bk_color
= SetBkColor(hdc
, RGB(0xff, 0xff, 0xff));
2094 info
->mode
= MM_TEXT
;
2098 /* Win95 leaves the vp/win ext/org info alone */
2099 info
->init_transform
.eM11
= 1.0;
2100 info
->init_transform
.eM12
= 0.0;
2101 info
->init_transform
.eM21
= 0.0;
2102 info
->init_transform
.eM22
= 1.0;
2103 info
->init_transform
.eDx
= 0.0;
2104 info
->init_transform
.eDy
= 0.0;
2108 /* WinNT combines the vp/win ext/org info into a transform */
2109 FLOAT xscale
, yscale
;
2110 xscale
= (FLOAT
)vp_size
.cx
/ (FLOAT
)win_size
.cx
;
2111 yscale
= (FLOAT
)vp_size
.cy
/ (FLOAT
)win_size
.cy
;
2112 info
->init_transform
.eM11
= xscale
;
2113 info
->init_transform
.eM12
= 0.0;
2114 info
->init_transform
.eM21
= 0.0;
2115 info
->init_transform
.eM22
= yscale
;
2116 info
->init_transform
.eDx
= (FLOAT
)vp_org
.x
- xscale
* (FLOAT
)win_org
.x
;
2117 info
->init_transform
.eDy
= (FLOAT
)vp_org
.y
- yscale
* (FLOAT
)win_org
.y
;
2119 CombineTransform(&info
->init_transform
, &savedXform
, &info
->init_transform
);
2122 if ( WIDTH(emh
->rclFrame
) && HEIGHT(emh
->rclFrame
) )
2124 FLOAT xSrcPixSize
, ySrcPixSize
, xscale
, yscale
;
2127 TRACE("rect: %ld,%ld - %ld,%ld. rclFrame: %ld,%ld - %ld,%ld\n",
2128 lpRect
->left
, lpRect
->top
, lpRect
->right
, lpRect
->bottom
,
2129 emh
->rclFrame
.left
, emh
->rclFrame
.top
, emh
->rclFrame
.right
,
2130 emh
->rclFrame
.bottom
);
2132 xSrcPixSize
= (FLOAT
) emh
->szlMillimeters
.cx
/ emh
->szlDevice
.cx
;
2133 ySrcPixSize
= (FLOAT
) emh
->szlMillimeters
.cy
/ emh
->szlDevice
.cy
;
2134 xscale
= (FLOAT
) WIDTH(*lpRect
) * 100.0 /
2135 WIDTH(emh
->rclFrame
) * xSrcPixSize
;
2136 yscale
= (FLOAT
) HEIGHT(*lpRect
) * 100.0 /
2137 HEIGHT(emh
->rclFrame
) * ySrcPixSize
;
2139 xform
.eM11
= xscale
;
2142 xform
.eM22
= yscale
;
2143 xform
.eDx
= (FLOAT
) lpRect
->left
- (FLOAT
) WIDTH(*lpRect
) / WIDTH(emh
->rclFrame
) * emh
->rclFrame
.left
;
2144 xform
.eDy
= (FLOAT
) lpRect
->top
- (FLOAT
) HEIGHT(*lpRect
) / HEIGHT(emh
->rclFrame
) * emh
->rclFrame
.top
;
2146 CombineTransform(&info
->init_transform
, &xform
, &info
->init_transform
);
2149 /* WinNT resets the current vp/win org/ext */
2152 SetMapMode(hdc
, MM_TEXT
);
2153 SetWindowOrgEx(hdc
, 0, 0, NULL
);
2154 SetViewportOrgEx(hdc
, 0, 0, NULL
);
2155 EMF_Update_MF_Xform(hdc
, info
);
2160 while(ret
&& offset
< emh
->nBytes
)
2162 emr
= (ENHMETARECORD
*)((char *)emh
+ offset
);
2163 TRACE("Calling EnumFunc with record %s, size %ld\n", get_emr_name(emr
->iType
), emr
->nSize
);
2164 ret
= (*callback
)(hdc
, ht
, emr
, emh
->nHandles
, (LPARAM
)data
);
2165 offset
+= emr
->nSize
;
2170 SetBkColor(hdc
, old_bk_color
);
2171 SetTextColor(hdc
, old_text_color
);
2173 /* restore pen, brush and font */
2174 SelectObject(hdc
, hBrush
);
2175 SelectObject(hdc
, hPen
);
2176 SelectObject(hdc
, hFont
);
2178 SetWorldTransform(hdc
, &savedXform
);
2180 SetGraphicsMode(hdc
, savedMode
);
2181 SetMapMode(hdc
, mapMode
);
2182 SetWindowOrgEx(hdc
, win_org
.x
, win_org
.y
, NULL
);
2183 SetWindowExtEx(hdc
, win_size
.cx
, win_size
.cy
, NULL
);
2184 SetViewportOrgEx(hdc
, vp_org
.x
, vp_org
.y
, NULL
);
2185 SetViewportExtEx(hdc
, vp_size
.cx
, vp_size
.cy
, NULL
);
2188 for(i
= 1; i
< emh
->nHandles
; i
++) /* Don't delete element 0 (hmf) */
2189 if( (ht
->objectHandle
)[i
] )
2190 DeleteObject( (ht
->objectHandle
)[i
] );
2192 HeapFree( GetProcessHeap(), 0, info
);
2196 static INT CALLBACK
EMF_PlayEnhMetaFileCallback(HDC hdc
, HANDLETABLE
*ht
,
2197 const ENHMETARECORD
*emr
,
2198 INT handles
, LPARAM data
)
2200 return PlayEnhMetaFileRecord(hdc
, ht
, emr
, handles
);
2203 /**************************************************************************
2204 * PlayEnhMetaFile (GDI32.@)
2206 * Renders an enhanced metafile into a specified rectangle *lpRect
2207 * in device context hdc.
2210 BOOL WINAPI
PlayEnhMetaFile(
2211 HDC hdc
, /* [in] DC to render into */
2212 HENHMETAFILE hmf
, /* [in] metafile to render */
2213 const RECT
*lpRect
/* [in] rectangle to place metafile inside */
2216 return EnumEnhMetaFile(hdc
, hmf
, EMF_PlayEnhMetaFileCallback
, NULL
,
2220 /*****************************************************************************
2221 * DeleteEnhMetaFile (GDI32.@)
2223 * Deletes an enhanced metafile and frees the associated storage.
2225 BOOL WINAPI
DeleteEnhMetaFile(HENHMETAFILE hmf
)
2227 return EMF_Delete_HENHMETAFILE( hmf
);
2230 /*****************************************************************************
2231 * CopyEnhMetaFileA (GDI32.@)
2233 * Duplicate an enhanced metafile.
2237 HENHMETAFILE WINAPI
CopyEnhMetaFileA(
2238 HENHMETAFILE hmfSrc
,
2241 ENHMETAHEADER
*emrSrc
= EMF_GetEnhMetaHeader( hmfSrc
), *emrDst
;
2242 HENHMETAFILE hmfDst
;
2244 if(!emrSrc
) return FALSE
;
2246 emrDst
= HeapAlloc( GetProcessHeap(), 0, emrSrc
->nBytes
);
2247 memcpy( emrDst
, emrSrc
, emrSrc
->nBytes
);
2248 hmfDst
= EMF_Create_HENHMETAFILE( emrDst
, FALSE
);
2251 hFile
= CreateFileA( file
, GENERIC_WRITE
| GENERIC_READ
, 0,
2252 NULL
, CREATE_ALWAYS
, 0, 0);
2253 WriteFile( hFile
, emrSrc
, emrSrc
->nBytes
, 0, 0);
2254 CloseHandle( hFile
);
2255 /* Reopen file for reading only, so that apps can share
2256 read access to the file while hmf is still valid */
2257 hFile
= CreateFileA( file
, GENERIC_READ
, FILE_SHARE_READ
,
2258 NULL
, OPEN_EXISTING
, 0, 0);
2259 if(hFile
== INVALID_HANDLE_VALUE
) {
2260 ERR("Can't reopen emf for reading\n");
2263 hmfDst
= EMF_GetEnhMetaFile( hFile
);
2264 CloseHandle( hFile
);
2269 /*****************************************************************************
2270 * CopyEnhMetaFileW (GDI32.@)
2272 * See CopyEnhMetaFileA.
2276 HENHMETAFILE WINAPI
CopyEnhMetaFileW(
2277 HENHMETAFILE hmfSrc
,
2280 ENHMETAHEADER
*emrSrc
= EMF_GetEnhMetaHeader( hmfSrc
), *emrDst
;
2281 HENHMETAFILE hmfDst
;
2283 if(!emrSrc
) return FALSE
;
2285 emrDst
= HeapAlloc( GetProcessHeap(), 0, emrSrc
->nBytes
);
2286 memcpy( emrDst
, emrSrc
, emrSrc
->nBytes
);
2287 hmfDst
= EMF_Create_HENHMETAFILE( emrDst
, FALSE
);
2290 hFile
= CreateFileW( file
, GENERIC_WRITE
| GENERIC_READ
, 0,
2291 NULL
, CREATE_ALWAYS
, 0, 0);
2292 WriteFile( hFile
, emrSrc
, emrSrc
->nBytes
, 0, 0);
2293 CloseHandle( hFile
);
2294 /* Reopen file for reading only, so that apps can share
2295 read access to the file while hmf is still valid */
2296 hFile
= CreateFileW( file
, GENERIC_READ
, FILE_SHARE_READ
,
2297 NULL
, OPEN_EXISTING
, 0, 0);
2298 if(hFile
== INVALID_HANDLE_VALUE
) {
2299 ERR("Can't reopen emf for reading\n");
2302 hmfDst
= EMF_GetEnhMetaFile( hFile
);
2303 CloseHandle( hFile
);
2309 /* Struct to be used to be passed in the LPVOID parameter for cbEnhPaletteCopy */
2310 typedef struct tagEMF_PaletteCopy
2313 LPPALETTEENTRY lpPe
;
2316 /***************************************************************
2317 * Find the EMR_EOF record and then use it to find the
2318 * palette entries for this enhanced metafile.
2319 * The lpData is actually a pointer to a EMF_PaletteCopy struct
2320 * which contains the max number of elements to copy and where
2323 * NOTE: To be used by GetEnhMetaFilePaletteEntries only!
2325 INT CALLBACK
cbEnhPaletteCopy( HDC a
,
2327 const ENHMETARECORD
*lpEMR
,
2332 if ( lpEMR
->iType
== EMR_EOF
)
2334 PEMREOF lpEof
= (PEMREOF
)lpEMR
;
2335 EMF_PaletteCopy
* info
= (EMF_PaletteCopy
*)lpData
;
2336 DWORD dwNumPalToCopy
= min( lpEof
->nPalEntries
, info
->cEntries
);
2338 TRACE( "copying 0x%08lx palettes\n", dwNumPalToCopy
);
2340 memcpy( (LPVOID
)info
->lpPe
,
2341 (LPVOID
)(((LPSTR
)lpEof
) + lpEof
->offPalEntries
),
2342 sizeof( *(info
->lpPe
) ) * dwNumPalToCopy
);
2344 /* Update the passed data as a return code */
2345 info
->lpPe
= NULL
; /* Palettes were copied! */
2346 info
->cEntries
= (UINT
)dwNumPalToCopy
;
2348 return FALSE
; /* That's all we need */
2354 /*****************************************************************************
2355 * GetEnhMetaFilePaletteEntries (GDI32.@)
2357 * Copy the palette and report size
2359 * BUGS: Error codes (SetLastError) are not set on failures
2361 UINT WINAPI
GetEnhMetaFilePaletteEntries( HENHMETAFILE hEmf
,
2363 LPPALETTEENTRY lpPe
)
2365 ENHMETAHEADER
* enhHeader
= EMF_GetEnhMetaHeader( hEmf
);
2366 EMF_PaletteCopy infoForCallBack
;
2368 TRACE( "(%p,%d,%p)\n", hEmf
, cEntries
, lpPe
);
2370 /* First check if there are any palettes associated with
2372 if ( enhHeader
->nPalEntries
== 0 ) return 0;
2374 /* Is the user requesting the number of palettes? */
2375 if ( lpPe
== NULL
) return (UINT
)enhHeader
->nPalEntries
;
2377 /* Copy cEntries worth of PALETTEENTRY structs into the buffer */
2378 infoForCallBack
.cEntries
= cEntries
;
2379 infoForCallBack
.lpPe
= lpPe
;
2381 if ( !EnumEnhMetaFile( 0, hEmf
, cbEnhPaletteCopy
,
2382 &infoForCallBack
, 0 ) )
2385 /* Verify that the callback executed correctly */
2386 if ( infoForCallBack
.lpPe
!= NULL
)
2388 /* Callback proc had error! */
2389 ERR( "cbEnhPaletteCopy didn't execute correctly\n" );
2393 return infoForCallBack
.cEntries
;
2396 typedef struct gdi_mf_comment
2403 DWORD cbWinMetaFile
;
2406 /******************************************************************
2407 * SetWinMetaFileBits (GDI32.@)
2409 * Translate from old style to new style.
2412 HENHMETAFILE WINAPI
SetWinMetaFileBits(UINT cbBuffer
,
2413 CONST BYTE
*lpbBuffer
,
2415 CONST METAFILEPICT
*lpmfp
2419 HENHMETAFILE ret
= 0;
2420 HDC hdc
= 0, hdcdisp
= 0;
2422 RECT rc
, *prcFrame
= NULL
;
2423 gdi_mf_comment
*mfcomment
;
2424 UINT mfcomment_size
;
2425 INT horzres
, vertres
;
2427 TRACE("(%d, %p, %p, %p)\n", cbBuffer
, lpbBuffer
, hdcRef
, lpmfp
);
2429 hmf
= SetMetaFileBitsEx(cbBuffer
, lpbBuffer
);
2432 WARN("SetMetaFileBitsEx failed\n");
2437 hdcRef
= hdcdisp
= CreateDCA("DISPLAY", NULL
, NULL
, NULL
);
2441 mfp
.mm
= MM_ANISOTROPIC
;
2446 TRACE("mm = %ld %ldx%ld\n", lpmfp
->mm
, lpmfp
->xExt
, lpmfp
->yExt
);
2448 if((lpmfp
->mm
== MM_ISOTROPIC
|| lpmfp
->mm
== MM_ANISOTROPIC
) &&
2449 mfp
.xExt
> 0 && mfp
.yExt
> 0) {
2450 rc
.left
= rc
.top
= 0;
2451 rc
.right
= lpmfp
->xExt
;
2452 rc
.bottom
= lpmfp
->yExt
;
2456 if(!(hdc
= CreateEnhMetaFileW(hdcRef
, NULL
, prcFrame
, NULL
))) {
2457 ERR("CreateEnhMetaFile fails?\n");
2461 horzres
= GetDeviceCaps(hdcRef
, HORZRES
);
2462 vertres
= GetDeviceCaps(hdcRef
, VERTRES
);
2470 * Write the original METAFILE into the enhanced metafile.
2471 * It is encapsulated in a GDICOMMENT_WINDOWS_METAFILE record.
2473 mfcomment_size
= sizeof (gdi_mf_comment
) + cbBuffer
;
2474 mfcomment
= HeapAlloc(GetProcessHeap(), 0, mfcomment_size
);
2477 mfcomment
->ident
= GDICOMMENT_IDENTIFIER
;
2478 mfcomment
->iComment
= GDICOMMENT_WINDOWS_METAFILE
;
2479 mfcomment
->nVersion
= 0x00000300;
2480 mfcomment
->nChecksum
= 0; /* FIXME */
2481 mfcomment
->fFlags
= 0;
2482 mfcomment
->cbWinMetaFile
= cbBuffer
;
2483 memcpy(&mfcomment
[1], lpbBuffer
, cbBuffer
);
2484 GdiComment(hdc
, mfcomment_size
, (BYTE
*) mfcomment
);
2485 HeapFree(GetProcessHeap(), 0, mfcomment
);
2488 if(lpmfp
->mm
!= MM_TEXT
)
2489 SetMapMode(hdc
, lpmfp
->mm
);
2491 /* set the initial viewport:window ratio as 1:1 */
2492 SetViewportExtEx(hdc
, horzres
, vertres
, NULL
);
2493 SetWindowExtEx(hdc
, horzres
, vertres
, NULL
);
2495 PlayMetaFile(hdc
, hmf
);
2497 ret
= CloseEnhMetaFile(hdc
);
2499 DeleteMetaFile(hmf
);