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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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 %d\n", type
);
199 /***********************************************************************
202 * Returns whether a DIB can be converted to a monochrome DDB.
204 * A DIB can be converted if its color table contains only black and
205 * white. Black must be the first color in the color table.
207 * Note : If the first color in the color table is white followed by
208 * black, we can't convert it to a monochrome DDB with
209 * SetDIBits, because black and white would be inverted.
211 static inline BOOL
is_dib_monochrome( const BITMAPINFO
* info
)
213 if (info
->bmiHeader
.biBitCount
!= 1) return FALSE
;
215 if (info
->bmiHeader
.biSize
== sizeof(BITMAPCOREHEADER
))
217 const RGBTRIPLE
*rgb
= ((const BITMAPCOREINFO
*) info
)->bmciColors
;
219 /* Check if the first color is black */
220 if ((rgb
->rgbtRed
== 0) && (rgb
->rgbtGreen
== 0) && (rgb
->rgbtBlue
== 0))
223 /* Check if the second color is white */
224 return ((rgb
->rgbtRed
== 0xff) && (rgb
->rgbtGreen
== 0xff)
225 && (rgb
->rgbtBlue
== 0xff));
229 else /* assume BITMAPINFOHEADER */
231 const RGBQUAD
*rgb
= info
->bmiColors
;
233 /* Check if the first color is black */
234 if ((rgb
->rgbRed
== 0) && (rgb
->rgbGreen
== 0) &&
235 (rgb
->rgbBlue
== 0) && (rgb
->rgbReserved
== 0))
239 /* Check if the second color is white */
240 return ((rgb
->rgbRed
== 0xff) && (rgb
->rgbGreen
== 0xff)
241 && (rgb
->rgbBlue
== 0xff) && (rgb
->rgbReserved
== 0));
247 /****************************************************************************
248 * EMF_Create_HENHMETAFILE
250 HENHMETAFILE
EMF_Create_HENHMETAFILE(ENHMETAHEADER
*emh
, BOOL on_disk
)
252 HENHMETAFILE hmf
= 0;
253 ENHMETAFILEOBJ
*metaObj
;
255 if (emh
->iType
!= EMR_HEADER
|| emh
->dSignature
!= ENHMETA_SIGNATURE
||
256 (emh
->nBytes
& 3)) /* refuse to load unaligned EMF as Windows does */
258 WARN("Invalid emf header type 0x%08x sig 0x%08x.\n",
259 emh
->iType
, emh
->dSignature
);
260 SetLastError(ERROR_INVALID_DATA
);
264 metaObj
= GDI_AllocObject( sizeof(ENHMETAFILEOBJ
),
266 (HGDIOBJ
*)&hmf
, NULL
);
270 metaObj
->on_disk
= on_disk
;
271 GDI_ReleaseObj( hmf
);
276 /****************************************************************************
277 * EMF_Delete_HENHMETAFILE
279 static BOOL
EMF_Delete_HENHMETAFILE( HENHMETAFILE hmf
)
281 ENHMETAFILEOBJ
*metaObj
= (ENHMETAFILEOBJ
*)GDI_GetObjPtr( hmf
,
283 if(!metaObj
) return FALSE
;
286 UnmapViewOfFile( metaObj
->emh
);
288 HeapFree( GetProcessHeap(), 0, metaObj
->emh
);
289 return GDI_FreeObject( hmf
, metaObj
);
292 /******************************************************************
293 * EMF_GetEnhMetaHeader
295 * Returns ptr to ENHMETAHEADER associated with HENHMETAFILE
297 static ENHMETAHEADER
*EMF_GetEnhMetaHeader( HENHMETAFILE hmf
)
299 ENHMETAHEADER
*ret
= NULL
;
300 ENHMETAFILEOBJ
*metaObj
= (ENHMETAFILEOBJ
*)GDI_GetObjPtr( hmf
, ENHMETAFILE_MAGIC
);
301 TRACE("hmf %p -> enhmetaObj %p\n", hmf
, metaObj
);
305 GDI_ReleaseObj( hmf
);
310 /*****************************************************************************
314 static HENHMETAFILE
EMF_GetEnhMetaFile( HANDLE hFile
)
320 hMapping
= CreateFileMappingA( hFile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
321 emh
= MapViewOfFile( hMapping
, FILE_MAP_READ
, 0, 0, 0 );
322 CloseHandle( hMapping
);
326 hemf
= EMF_Create_HENHMETAFILE( emh
, TRUE
);
328 UnmapViewOfFile( emh
);
333 /*****************************************************************************
334 * GetEnhMetaFileA (GDI32.@)
338 HENHMETAFILE WINAPI
GetEnhMetaFileA(
339 LPCSTR lpszMetaFile
/* [in] filename of enhanced metafile */
345 hFile
= CreateFileA(lpszMetaFile
, GENERIC_READ
, FILE_SHARE_READ
, 0,
346 OPEN_EXISTING
, 0, 0);
347 if (hFile
== INVALID_HANDLE_VALUE
) {
348 WARN("could not open %s\n", lpszMetaFile
);
351 hmf
= EMF_GetEnhMetaFile( hFile
);
352 CloseHandle( hFile
);
356 /*****************************************************************************
357 * GetEnhMetaFileW (GDI32.@)
359 HENHMETAFILE WINAPI
GetEnhMetaFileW(
360 LPCWSTR lpszMetaFile
) /* [in] filename of enhanced metafile */
365 hFile
= CreateFileW(lpszMetaFile
, GENERIC_READ
, FILE_SHARE_READ
, 0,
366 OPEN_EXISTING
, 0, 0);
367 if (hFile
== INVALID_HANDLE_VALUE
) {
368 WARN("could not open %s\n", debugstr_w(lpszMetaFile
));
371 hmf
= EMF_GetEnhMetaFile( hFile
);
372 CloseHandle( hFile
);
376 /*****************************************************************************
377 * GetEnhMetaFileHeader (GDI32.@)
379 * Retrieves the record containing the header for the specified
380 * enhanced-format metafile.
383 * If buf is NULL, returns the size of buffer required.
384 * Otherwise, copy up to bufsize bytes of enhanced metafile header into
387 UINT WINAPI
GetEnhMetaFileHeader(
388 HENHMETAFILE hmf
, /* [in] enhanced metafile */
389 UINT bufsize
, /* [in] size of buffer */
390 LPENHMETAHEADER buf
/* [out] buffer */
396 emh
= EMF_GetEnhMetaHeader(hmf
);
397 if(!emh
) return FALSE
;
399 if (!buf
) return size
;
400 size
= min(size
, bufsize
);
401 memmove(buf
, emh
, size
);
406 /*****************************************************************************
407 * GetEnhMetaFileDescriptionA (GDI32.@)
409 * See GetEnhMetaFileDescriptionW.
411 UINT WINAPI
GetEnhMetaFileDescriptionA(
412 HENHMETAFILE hmf
, /* [in] enhanced metafile */
413 UINT size
, /* [in] size of buf */
414 LPSTR buf
/* [out] buffer to receive description */
417 LPENHMETAHEADER emh
= EMF_GetEnhMetaHeader(hmf
);
421 if(!emh
) return FALSE
;
422 if(emh
->nDescription
== 0 || emh
->offDescription
== 0) return 0;
423 descrW
= (WCHAR
*) ((char *) emh
+ emh
->offDescription
);
424 len
= WideCharToMultiByte( CP_ACP
, 0, descrW
, emh
->nDescription
, NULL
, 0, NULL
, NULL
);
426 if (!buf
|| !size
) return len
;
428 len
= min( size
, len
);
429 WideCharToMultiByte( CP_ACP
, 0, descrW
, emh
->nDescription
, buf
, len
, NULL
, NULL
);
433 /*****************************************************************************
434 * GetEnhMetaFileDescriptionW (GDI32.@)
436 * Copies the description string of an enhanced metafile into a buffer
440 * If _buf_ is NULL, returns size of _buf_ required. Otherwise, returns
441 * number of characters copied.
443 UINT WINAPI
GetEnhMetaFileDescriptionW(
444 HENHMETAFILE hmf
, /* [in] enhanced metafile */
445 UINT size
, /* [in] size of buf */
446 LPWSTR buf
/* [out] buffer to receive description */
449 LPENHMETAHEADER emh
= EMF_GetEnhMetaHeader(hmf
);
451 if(!emh
) return FALSE
;
452 if(emh
->nDescription
== 0 || emh
->offDescription
== 0) return 0;
453 if (!buf
|| !size
) return emh
->nDescription
;
455 memmove(buf
, (char *) emh
+ emh
->offDescription
, min(size
,emh
->nDescription
)*sizeof(WCHAR
));
456 return min(size
, emh
->nDescription
);
459 /****************************************************************************
460 * SetEnhMetaFileBits (GDI32.@)
462 * Creates an enhanced metafile by copying _bufsize_ bytes from _buf_.
464 HENHMETAFILE WINAPI
SetEnhMetaFileBits(UINT bufsize
, const BYTE
*buf
)
466 ENHMETAHEADER
*emh
= HeapAlloc( GetProcessHeap(), 0, bufsize
);
467 memmove(emh
, buf
, bufsize
);
468 return EMF_Create_HENHMETAFILE( emh
, FALSE
);
471 /*****************************************************************************
472 * GetEnhMetaFileBits (GDI32.@)
475 UINT WINAPI
GetEnhMetaFileBits(
481 LPENHMETAHEADER emh
= EMF_GetEnhMetaHeader( hmf
);
487 if( buf
== NULL
) return size
;
489 size
= min( size
, bufsize
);
490 memmove(buf
, emh
, size
);
494 typedef struct enum_emh_data
497 XFORM init_transform
;
498 XFORM world_transform
;
509 #define ENUM_GET_PRIVATE_DATA(ht) \
510 ((enum_emh_data*)(((unsigned char*)(ht))-sizeof (enum_emh_data)))
512 #define WIDTH(rect) ( (rect).right - (rect).left )
513 #define HEIGHT(rect) ( (rect).bottom - (rect).top )
515 #define IS_WIN9X() (GetVersion()&0x80000000)
517 static void EMF_Update_MF_Xform(HDC hdc
, const enum_emh_data
*info
)
519 XFORM mapping_mode_trans
, final_trans
;
520 FLOAT scaleX
, scaleY
;
522 scaleX
= (FLOAT
)info
->vportExtX
/ (FLOAT
)info
->wndExtX
;
523 scaleY
= (FLOAT
)info
->vportExtY
/ (FLOAT
)info
->wndExtY
;
524 mapping_mode_trans
.eM11
= scaleX
;
525 mapping_mode_trans
.eM12
= 0.0;
526 mapping_mode_trans
.eM21
= 0.0;
527 mapping_mode_trans
.eM22
= scaleY
;
528 mapping_mode_trans
.eDx
= (FLOAT
)info
->vportOrgX
- scaleX
* (FLOAT
)info
->wndOrgX
;
529 mapping_mode_trans
.eDy
= (FLOAT
)info
->vportOrgY
- scaleY
* (FLOAT
)info
->wndOrgY
;
531 CombineTransform(&final_trans
, &info
->world_transform
, &mapping_mode_trans
);
532 CombineTransform(&final_trans
, &final_trans
, &info
->init_transform
);
534 if (!SetWorldTransform(hdc
, &final_trans
))
536 ERR("World transform failed!\n");
540 static void EMF_SetMapMode(HDC hdc
, enum_emh_data
*info
)
542 INT horzSize
= GetDeviceCaps( hdc
, HORZSIZE
);
543 INT vertSize
= GetDeviceCaps( hdc
, VERTSIZE
);
544 INT horzRes
= GetDeviceCaps( hdc
, HORZRES
);
545 INT vertRes
= GetDeviceCaps( hdc
, VERTRES
);
547 TRACE("%d\n",info
->mode
);
559 info
->wndExtX
= horzSize
* 10;
560 info
->wndExtY
= vertSize
* 10;
561 info
->vportExtX
= horzRes
;
562 info
->vportExtY
= -vertRes
;
565 info
->wndExtX
= horzSize
* 100;
566 info
->wndExtY
= vertSize
* 100;
567 info
->vportExtX
= horzRes
;
568 info
->vportExtY
= -vertRes
;
571 info
->wndExtX
= MulDiv(1000, horzSize
, 254);
572 info
->wndExtY
= MulDiv(1000, vertSize
, 254);
573 info
->vportExtX
= horzRes
;
574 info
->vportExtY
= -vertRes
;
577 info
->wndExtX
= MulDiv(10000, horzSize
, 254);
578 info
->wndExtY
= MulDiv(10000, vertSize
, 254);
579 info
->vportExtX
= horzRes
;
580 info
->vportExtY
= -vertRes
;
583 info
->wndExtX
= MulDiv(14400, horzSize
, 254);
584 info
->wndExtY
= MulDiv(14400, vertSize
, 254);
585 info
->vportExtX
= horzRes
;
586 info
->vportExtY
= -vertRes
;
595 /***********************************************************************
598 * Fix viewport extensions for isotropic mode.
601 static void EMF_FixIsotropic(HDC hdc
, enum_emh_data
*info
)
603 double xdim
= fabs((double)info
->vportExtX
* GetDeviceCaps( hdc
, HORZSIZE
) /
604 (GetDeviceCaps( hdc
, HORZRES
) * info
->wndExtX
));
605 double ydim
= fabs((double)info
->vportExtY
* GetDeviceCaps( hdc
, VERTSIZE
) /
606 (GetDeviceCaps( hdc
, VERTRES
) * info
->wndExtY
));
610 INT mincx
= (info
->vportExtX
>= 0) ? 1 : -1;
611 info
->vportExtX
= floor(info
->vportExtX
* ydim
/ xdim
+ 0.5);
612 if (!info
->vportExtX
) info
->vportExtX
= mincx
;
616 INT mincy
= (info
->vportExtY
>= 0) ? 1 : -1;
617 info
->vportExtY
= floor(info
->vportExtY
* xdim
/ ydim
+ 0.5);
618 if (!info
->vportExtY
) info
->vportExtY
= mincy
;
622 /*****************************************************************************
623 * emr_produces_output
625 * Returns TRUE if the record type writes something to the dc. Used by
626 * PlayEnhMetaFileRecord to determine whether it needs to update the
627 * dc's xform when in win9x mode.
629 * FIXME: need to test which records should be here.
631 static BOOL
emr_produces_output(int type
)
637 case EMR_POLYBEZIERTO
:
639 case EMR_POLYPOLYLINE
:
640 case EMR_POLYPOLYGON
:
643 case EMR_EXCLUDECLIPRECT
:
644 case EMR_INTERSECTCLIPRECT
:
645 case EMR_SELECTOBJECT
:
653 case EMR_EXTFLOODFILL
:
665 case EMR_SETDIBITSTODEVICE
:
666 case EMR_STRETCHDIBITS
:
667 case EMR_EXTTEXTOUTA
:
668 case EMR_EXTTEXTOUTW
:
669 case EMR_POLYBEZIER16
:
672 case EMR_POLYBEZIERTO16
:
673 case EMR_POLYLINETO16
:
674 case EMR_POLYPOLYLINE16
:
675 case EMR_POLYPOLYGON16
:
677 case EMR_POLYTEXTOUTA
:
678 case EMR_POLYTEXTOUTW
:
679 case EMR_SMALLTEXTOUT
:
681 case EMR_TRANSPARENTBLT
:
689 /*****************************************************************************
690 * PlayEnhMetaFileRecord (GDI32.@)
692 * Render a single enhanced metafile record in the device context hdc.
695 * TRUE (non zero) on success, FALSE on error.
697 * Many unimplemented records.
698 * No error handling on record play failures (ie checking return codes)
701 * WinNT actually updates the current world transform in this function
702 * whereas Win9x does not.
704 BOOL WINAPI
PlayEnhMetaFileRecord(
705 HDC hdc
, /* [in] device context in which to render EMF record */
706 LPHANDLETABLE handletable
, /* [in] array of handles to be used in rendering record */
707 const ENHMETARECORD
*mr
, /* [in] EMF record to render */
708 UINT handles
/* [in] size of handle array */
713 enum_emh_data
*info
= ENUM_GET_PRIVATE_DATA(handletable
);
715 TRACE("hdc = %p, handletable = %p, record = %p, numHandles = %d\n",
716 hdc
, handletable
, mr
, handles
);
717 if (!mr
) return FALSE
;
721 /* In Win9x mode we update the xform if the record will produce output */
722 if ( IS_WIN9X() && emr_produces_output(type
) )
723 EMF_Update_MF_Xform(hdc
, info
);
725 TRACE("record %s\n", get_emr_name(type
));
734 const EMRGDICOMMENT
*lpGdiComment
= (const EMRGDICOMMENT
*)mr
;
735 /* In an enhanced metafile, there can be both public and private GDI comments */
736 GdiComment( hdc
, lpGdiComment
->cbData
, lpGdiComment
->Data
);
741 const EMRSETMAPMODE
*pSetMapMode
= (const EMRSETMAPMODE
*)mr
;
743 if(info
->mode
== pSetMapMode
->iMode
&& (info
->mode
== MM_ISOTROPIC
|| info
->mode
== MM_ANISOTROPIC
))
745 info
->mode
= pSetMapMode
->iMode
;
746 EMF_SetMapMode(hdc
, info
);
751 const EMRSETBKMODE
*pSetBkMode
= (const EMRSETBKMODE
*)mr
;
752 SetBkMode(hdc
, pSetBkMode
->iMode
);
757 const EMRSETBKCOLOR
*pSetBkColor
= (const EMRSETBKCOLOR
*)mr
;
758 SetBkColor(hdc
, pSetBkColor
->crColor
);
761 case EMR_SETPOLYFILLMODE
:
763 const EMRSETPOLYFILLMODE
*pSetPolyFillMode
= (const EMRSETPOLYFILLMODE
*)mr
;
764 SetPolyFillMode(hdc
, pSetPolyFillMode
->iMode
);
769 const EMRSETROP2
*pSetROP2
= (const EMRSETROP2
*)mr
;
770 SetROP2(hdc
, pSetROP2
->iMode
);
773 case EMR_SETSTRETCHBLTMODE
:
775 const EMRSETSTRETCHBLTMODE
*pSetStretchBltMode
= (const EMRSETSTRETCHBLTMODE
*)mr
;
776 SetStretchBltMode(hdc
, pSetStretchBltMode
->iMode
);
779 case EMR_SETTEXTALIGN
:
781 const EMRSETTEXTALIGN
*pSetTextAlign
= (const EMRSETTEXTALIGN
*)mr
;
782 SetTextAlign(hdc
, pSetTextAlign
->iMode
);
785 case EMR_SETTEXTCOLOR
:
787 const EMRSETTEXTCOLOR
*pSetTextColor
= (const EMRSETTEXTCOLOR
*)mr
;
788 SetTextColor(hdc
, pSetTextColor
->crColor
);
798 const EMRRESTOREDC
*pRestoreDC
= (const EMRRESTOREDC
*)mr
;
799 TRACE("EMR_RESTORE: %d\n", pRestoreDC
->iRelative
);
800 RestoreDC(hdc
, pRestoreDC
->iRelative
);
803 case EMR_INTERSECTCLIPRECT
:
805 const EMRINTERSECTCLIPRECT
*pClipRect
= (const EMRINTERSECTCLIPRECT
*)mr
;
806 TRACE("EMR_INTERSECTCLIPRECT: rect %d,%d - %d, %d\n",
807 pClipRect
->rclClip
.left
, pClipRect
->rclClip
.top
,
808 pClipRect
->rclClip
.right
, pClipRect
->rclClip
.bottom
);
809 IntersectClipRect(hdc
, pClipRect
->rclClip
.left
, pClipRect
->rclClip
.top
,
810 pClipRect
->rclClip
.right
, pClipRect
->rclClip
.bottom
);
813 case EMR_SELECTOBJECT
:
815 const EMRSELECTOBJECT
*pSelectObject
= (const EMRSELECTOBJECT
*)mr
;
816 if( pSelectObject
->ihObject
& 0x80000000 ) {
817 /* High order bit is set - it's a stock object
818 * Strip the high bit to get the index.
819 * See MSDN article Q142319
821 SelectObject( hdc
, GetStockObject( pSelectObject
->ihObject
&
824 /* High order bit wasn't set - not a stock object
827 (handletable
->objectHandle
)[pSelectObject
->ihObject
] );
831 case EMR_DELETEOBJECT
:
833 const EMRDELETEOBJECT
*pDeleteObject
= (const EMRDELETEOBJECT
*)mr
;
834 DeleteObject( (handletable
->objectHandle
)[pDeleteObject
->ihObject
]);
835 (handletable
->objectHandle
)[pDeleteObject
->ihObject
] = 0;
838 case EMR_SETWINDOWORGEX
:
840 const EMRSETWINDOWORGEX
*pSetWindowOrgEx
= (const EMRSETWINDOWORGEX
*)mr
;
842 info
->wndOrgX
= pSetWindowOrgEx
->ptlOrigin
.x
;
843 info
->wndOrgY
= pSetWindowOrgEx
->ptlOrigin
.y
;
845 TRACE("SetWindowOrgEx: %d,%d\n",info
->wndOrgX
,info
->wndOrgY
);
848 case EMR_SETWINDOWEXTEX
:
850 const EMRSETWINDOWEXTEX
*pSetWindowExtEx
= (const EMRSETWINDOWEXTEX
*)mr
;
852 if(info
->mode
!= MM_ISOTROPIC
&& info
->mode
!= MM_ANISOTROPIC
)
854 info
->wndExtX
= pSetWindowExtEx
->szlExtent
.cx
;
855 info
->wndExtY
= pSetWindowExtEx
->szlExtent
.cy
;
856 if (info
->mode
== MM_ISOTROPIC
)
857 EMF_FixIsotropic(hdc
, info
);
859 TRACE("SetWindowExtEx: %d,%d\n",info
->wndExtX
,info
->wndExtY
);
862 case EMR_SETVIEWPORTORGEX
:
864 const EMRSETVIEWPORTORGEX
*pSetViewportOrgEx
= (const EMRSETVIEWPORTORGEX
*)mr
;
865 enum_emh_data
*info
= ENUM_GET_PRIVATE_DATA(handletable
);
867 info
->vportOrgX
= pSetViewportOrgEx
->ptlOrigin
.x
;
868 info
->vportOrgY
= pSetViewportOrgEx
->ptlOrigin
.y
;
869 TRACE("SetViewportOrgEx: %d,%d\n",info
->vportOrgX
,info
->vportOrgY
);
872 case EMR_SETVIEWPORTEXTEX
:
874 const EMRSETVIEWPORTEXTEX
*pSetViewportExtEx
= (const EMRSETVIEWPORTEXTEX
*)mr
;
875 enum_emh_data
*info
= ENUM_GET_PRIVATE_DATA(handletable
);
877 if(info
->mode
!= MM_ISOTROPIC
&& info
->mode
!= MM_ANISOTROPIC
)
879 info
->vportExtX
= pSetViewportExtEx
->szlExtent
.cx
;
880 info
->vportExtY
= pSetViewportExtEx
->szlExtent
.cy
;
881 if (info
->mode
== MM_ISOTROPIC
)
882 EMF_FixIsotropic(hdc
, info
);
883 TRACE("SetViewportExtEx: %d,%d\n",info
->vportExtX
,info
->vportExtY
);
888 const EMRCREATEPEN
*pCreatePen
= (const EMRCREATEPEN
*)mr
;
889 (handletable
->objectHandle
)[pCreatePen
->ihPen
] =
890 CreatePenIndirect(&pCreatePen
->lopn
);
893 case EMR_EXTCREATEPEN
:
895 const EMREXTCREATEPEN
*pPen
= (const EMREXTCREATEPEN
*)mr
;
897 lb
.lbStyle
= pPen
->elp
.elpBrushStyle
;
898 lb
.lbColor
= pPen
->elp
.elpColor
;
899 lb
.lbHatch
= pPen
->elp
.elpHatch
;
901 if(pPen
->offBmi
|| pPen
->offBits
)
902 FIXME("EMR_EXTCREATEPEN: Need to copy brush bitmap\n");
904 (handletable
->objectHandle
)[pPen
->ihPen
] =
905 ExtCreatePen(pPen
->elp
.elpPenStyle
, pPen
->elp
.elpWidth
, &lb
,
906 pPen
->elp
.elpNumEntries
, pPen
->elp
.elpStyleEntry
);
909 case EMR_CREATEBRUSHINDIRECT
:
911 const EMRCREATEBRUSHINDIRECT
*pBrush
= (const EMRCREATEBRUSHINDIRECT
*)mr
;
913 brush
.lbStyle
= pBrush
->lb
.lbStyle
;
914 brush
.lbColor
= pBrush
->lb
.lbColor
;
915 brush
.lbHatch
= pBrush
->lb
.lbHatch
;
916 (handletable
->objectHandle
)[pBrush
->ihBrush
] = CreateBrushIndirect(&brush
);
919 case EMR_EXTCREATEFONTINDIRECTW
:
921 const EMREXTCREATEFONTINDIRECTW
*pFont
= (const EMREXTCREATEFONTINDIRECTW
*)mr
;
922 (handletable
->objectHandle
)[pFont
->ihFont
] =
923 CreateFontIndirectW(&pFont
->elfw
.elfLogFont
);
928 const EMRMOVETOEX
*pMoveToEx
= (const EMRMOVETOEX
*)mr
;
929 MoveToEx(hdc
, pMoveToEx
->ptl
.x
, pMoveToEx
->ptl
.y
, NULL
);
934 const EMRLINETO
*pLineTo
= (const EMRLINETO
*)mr
;
935 LineTo(hdc
, pLineTo
->ptl
.x
, pLineTo
->ptl
.y
);
940 const EMRRECTANGLE
*pRect
= (const EMRRECTANGLE
*)mr
;
941 Rectangle(hdc
, pRect
->rclBox
.left
, pRect
->rclBox
.top
,
942 pRect
->rclBox
.right
, pRect
->rclBox
.bottom
);
947 const EMRELLIPSE
*pEllipse
= (const EMRELLIPSE
*)mr
;
948 Ellipse(hdc
, pEllipse
->rclBox
.left
, pEllipse
->rclBox
.top
,
949 pEllipse
->rclBox
.right
, pEllipse
->rclBox
.bottom
);
954 const EMRPOLYGON16
*pPoly
= (const EMRPOLYGON16
*)mr
;
955 /* Shouldn't use Polygon16 since pPoly->cpts is DWORD */
956 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
957 pPoly
->cpts
* sizeof(POINT
) );
959 for(i
= 0; i
< pPoly
->cpts
; i
++)
961 pts
[i
].x
= pPoly
->apts
[i
].x
;
962 pts
[i
].y
= pPoly
->apts
[i
].y
;
964 Polygon(hdc
, pts
, pPoly
->cpts
);
965 HeapFree( GetProcessHeap(), 0, pts
);
970 const EMRPOLYLINE16
*pPoly
= (const EMRPOLYLINE16
*)mr
;
971 /* Shouldn't use Polyline16 since pPoly->cpts is DWORD */
972 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
973 pPoly
->cpts
* sizeof(POINT
) );
975 for(i
= 0; i
< pPoly
->cpts
; i
++)
977 pts
[i
].x
= pPoly
->apts
[i
].x
;
978 pts
[i
].y
= pPoly
->apts
[i
].y
;
980 Polyline(hdc
, pts
, pPoly
->cpts
);
981 HeapFree( GetProcessHeap(), 0, pts
);
984 case EMR_POLYLINETO16
:
986 const EMRPOLYLINETO16
*pPoly
= (const EMRPOLYLINETO16
*)mr
;
987 /* Shouldn't use PolylineTo16 since pPoly->cpts is DWORD */
988 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
989 pPoly
->cpts
* sizeof(POINT
) );
991 for(i
= 0; i
< pPoly
->cpts
; i
++)
993 pts
[i
].x
= pPoly
->apts
[i
].x
;
994 pts
[i
].y
= pPoly
->apts
[i
].y
;
996 PolylineTo(hdc
, pts
, pPoly
->cpts
);
997 HeapFree( GetProcessHeap(), 0, pts
);
1000 case EMR_POLYBEZIER16
:
1002 const EMRPOLYBEZIER16
*pPoly
= (const EMRPOLYBEZIER16
*)mr
;
1003 /* Shouldn't use PolyBezier16 since pPoly->cpts is DWORD */
1004 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
1005 pPoly
->cpts
* sizeof(POINT
) );
1007 for(i
= 0; i
< pPoly
->cpts
; i
++)
1009 pts
[i
].x
= pPoly
->apts
[i
].x
;
1010 pts
[i
].y
= pPoly
->apts
[i
].y
;
1012 PolyBezier(hdc
, pts
, pPoly
->cpts
);
1013 HeapFree( GetProcessHeap(), 0, pts
);
1016 case EMR_POLYBEZIERTO16
:
1018 const EMRPOLYBEZIERTO16
*pPoly
= (const EMRPOLYBEZIERTO16
*)mr
;
1019 /* Shouldn't use PolyBezierTo16 since pPoly->cpts is DWORD */
1020 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
1021 pPoly
->cpts
* sizeof(POINT
) );
1023 for(i
= 0; i
< pPoly
->cpts
; i
++)
1025 pts
[i
].x
= pPoly
->apts
[i
].x
;
1026 pts
[i
].y
= pPoly
->apts
[i
].y
;
1028 PolyBezierTo(hdc
, pts
, pPoly
->cpts
);
1029 HeapFree( GetProcessHeap(), 0, pts
);
1032 case EMR_POLYPOLYGON16
:
1034 const EMRPOLYPOLYGON16
*pPolyPoly
= (const EMRPOLYPOLYGON16
*)mr
;
1035 /* NB POINTS array doesn't start at pPolyPoly->apts it's actually
1036 pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
1038 POINT16
*pts16
= (POINT16
*)(pPolyPoly
->aPolyCounts
+ pPolyPoly
->nPolys
);
1039 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0, pPolyPoly
->cpts
* sizeof(POINT
) );
1041 for(i
= 0; i
< pPolyPoly
->cpts
; i
++)
1043 pts
[i
].x
= pts16
[i
].x
;
1044 pts
[i
].y
= pts16
[i
].y
;
1046 PolyPolygon(hdc
, pts
, (INT
*)pPolyPoly
->aPolyCounts
, pPolyPoly
->nPolys
);
1047 HeapFree( GetProcessHeap(), 0, pts
);
1050 case EMR_POLYPOLYLINE16
:
1052 const EMRPOLYPOLYLINE16
*pPolyPoly
= (const EMRPOLYPOLYLINE16
*)mr
;
1053 /* NB POINTS array doesn't start at pPolyPoly->apts it's actually
1054 pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
1056 POINT16
*pts16
= (POINT16
*)(pPolyPoly
->aPolyCounts
+ pPolyPoly
->nPolys
);
1057 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0, pPolyPoly
->cpts
* sizeof(POINT
) );
1059 for(i
= 0; i
< pPolyPoly
->cpts
; i
++)
1061 pts
[i
].x
= pts16
[i
].x
;
1062 pts
[i
].y
= pts16
[i
].y
;
1064 PolyPolyline(hdc
, pts
, pPolyPoly
->aPolyCounts
, pPolyPoly
->nPolys
);
1065 HeapFree( GetProcessHeap(), 0, pts
);
1069 case EMR_STRETCHDIBITS
:
1071 const EMRSTRETCHDIBITS
*pStretchDIBits
= (const EMRSTRETCHDIBITS
*)mr
;
1074 pStretchDIBits
->xDest
,
1075 pStretchDIBits
->yDest
,
1076 pStretchDIBits
->cxDest
,
1077 pStretchDIBits
->cyDest
,
1078 pStretchDIBits
->xSrc
,
1079 pStretchDIBits
->ySrc
,
1080 pStretchDIBits
->cxSrc
,
1081 pStretchDIBits
->cySrc
,
1082 (const BYTE
*)mr
+ pStretchDIBits
->offBitsSrc
,
1083 (const BITMAPINFO
*)((const BYTE
*)mr
+ pStretchDIBits
->offBmiSrc
),
1084 pStretchDIBits
->iUsageSrc
,
1085 pStretchDIBits
->dwRop
);
1089 case EMR_EXTTEXTOUTA
:
1091 const EMREXTTEXTOUTA
*pExtTextOutA
= (const EMREXTTEXTOUTA
*)mr
;
1093 const INT
*dx
= NULL
;
1095 rc
.left
= pExtTextOutA
->emrtext
.rcl
.left
;
1096 rc
.top
= pExtTextOutA
->emrtext
.rcl
.top
;
1097 rc
.right
= pExtTextOutA
->emrtext
.rcl
.right
;
1098 rc
.bottom
= pExtTextOutA
->emrtext
.rcl
.bottom
;
1099 TRACE("EMR_EXTTEXTOUTA: x,y = %d, %d. rect = %d, %d - %d, %d. flags %08x\n",
1100 pExtTextOutA
->emrtext
.ptlReference
.x
, pExtTextOutA
->emrtext
.ptlReference
.y
,
1101 rc
.left
, rc
.top
, rc
.right
, rc
.bottom
, pExtTextOutA
->emrtext
.fOptions
);
1103 /* Linux version of pstoedit produces EMFs with offDx set to 0.
1104 * These files can be enumerated and played under Win98 just
1105 * fine, but at least Win2k chokes on them.
1107 if (pExtTextOutA
->emrtext
.offDx
)
1108 dx
= (const INT
*)((const BYTE
*)mr
+ pExtTextOutA
->emrtext
.offDx
);
1110 ExtTextOutA(hdc
, pExtTextOutA
->emrtext
.ptlReference
.x
, pExtTextOutA
->emrtext
.ptlReference
.y
,
1111 pExtTextOutA
->emrtext
.fOptions
, &rc
,
1112 (LPCSTR
)((const BYTE
*)mr
+ pExtTextOutA
->emrtext
.offString
), pExtTextOutA
->emrtext
.nChars
,
1117 case EMR_EXTTEXTOUTW
:
1119 const EMREXTTEXTOUTW
*pExtTextOutW
= (const EMREXTTEXTOUTW
*)mr
;
1121 const INT
*dx
= NULL
;
1123 rc
.left
= pExtTextOutW
->emrtext
.rcl
.left
;
1124 rc
.top
= pExtTextOutW
->emrtext
.rcl
.top
;
1125 rc
.right
= pExtTextOutW
->emrtext
.rcl
.right
;
1126 rc
.bottom
= pExtTextOutW
->emrtext
.rcl
.bottom
;
1127 TRACE("EMR_EXTTEXTOUTW: x,y = %d, %d. rect = %d, %d - %d, %d. flags %08x\n",
1128 pExtTextOutW
->emrtext
.ptlReference
.x
, pExtTextOutW
->emrtext
.ptlReference
.y
,
1129 rc
.left
, rc
.top
, rc
.right
, rc
.bottom
, pExtTextOutW
->emrtext
.fOptions
);
1131 /* Linux version of pstoedit produces EMFs with offDx set to 0.
1132 * These files can be enumerated and played under Win98 just
1133 * fine, but at least Win2k chokes on them.
1135 if (pExtTextOutW
->emrtext
.offDx
)
1136 dx
= (const INT
*)((const BYTE
*)mr
+ pExtTextOutW
->emrtext
.offDx
);
1138 ExtTextOutW(hdc
, pExtTextOutW
->emrtext
.ptlReference
.x
, pExtTextOutW
->emrtext
.ptlReference
.y
,
1139 pExtTextOutW
->emrtext
.fOptions
, &rc
,
1140 (LPCWSTR
)((const BYTE
*)mr
+ pExtTextOutW
->emrtext
.offString
), pExtTextOutW
->emrtext
.nChars
,
1145 case EMR_CREATEPALETTE
:
1147 const EMRCREATEPALETTE
*lpCreatePal
= (const EMRCREATEPALETTE
*)mr
;
1149 (handletable
->objectHandle
)[ lpCreatePal
->ihPal
] =
1150 CreatePalette( &lpCreatePal
->lgpl
);
1155 case EMR_SELECTPALETTE
:
1157 const EMRSELECTPALETTE
*lpSelectPal
= (const EMRSELECTPALETTE
*)mr
;
1159 if( lpSelectPal
->ihPal
& 0x80000000 ) {
1160 SelectPalette( hdc
, GetStockObject(lpSelectPal
->ihPal
& 0x7fffffff), TRUE
);
1162 SelectPalette( hdc
, (handletable
->objectHandle
)[lpSelectPal
->ihPal
], TRUE
);
1167 case EMR_REALIZEPALETTE
:
1169 RealizePalette( hdc
);
1173 case EMR_EXTSELECTCLIPRGN
:
1175 static int extselectcliprgn_cases
;
1177 const EMREXTSELECTCLIPRGN lpRgn
= (const EMREXTSELECTCLIPRGN
*)mr
;
1178 HRGN hRgn
= ExtCreateRegion(NULL
, lpRgn
->cbRgnData
, (RGNDATA
*)lpRgn
->RgnData
);
1180 ExtSelectClipRgn(hdc
, hRgn
, (INT
)(lpRgn
->iMode
));
1181 /* ExtSelectClipRgn created a copy of the region */
1184 if(!(extselectcliprgn_cases
++))
1185 FIXME("ExtSelectClipRgn\n");
1189 case EMR_SETMETARGN
:
1195 case EMR_SETWORLDTRANSFORM
:
1197 const EMRSETWORLDTRANSFORM
*lpXfrm
= (const EMRSETWORLDTRANSFORM
*)mr
;
1198 info
->world_transform
= lpXfrm
->xform
;
1202 case EMR_POLYBEZIER
:
1204 const EMRPOLYBEZIER
*lpPolyBez
= (const EMRPOLYBEZIER
*)mr
;
1205 PolyBezier(hdc
, (const POINT
*)lpPolyBez
->aptl
, (UINT
)lpPolyBez
->cptl
);
1211 const EMRPOLYGON
*lpPoly
= (const EMRPOLYGON
*)mr
;
1212 Polygon( hdc
, (const POINT
*)lpPoly
->aptl
, (UINT
)lpPoly
->cptl
);
1218 const EMRPOLYLINE
*lpPolyLine
= (const EMRPOLYLINE
*)mr
;
1219 Polyline(hdc
, (const POINT
*)lpPolyLine
->aptl
, (UINT
)lpPolyLine
->cptl
);
1223 case EMR_POLYBEZIERTO
:
1225 const EMRPOLYBEZIERTO
*lpPolyBezierTo
= (const EMRPOLYBEZIERTO
*)mr
;
1226 PolyBezierTo( hdc
, (const POINT
*)lpPolyBezierTo
->aptl
,
1227 (UINT
)lpPolyBezierTo
->cptl
);
1231 case EMR_POLYLINETO
:
1233 const EMRPOLYLINETO
*lpPolyLineTo
= (const EMRPOLYLINETO
*)mr
;
1234 PolylineTo( hdc
, (const POINT
*)lpPolyLineTo
->aptl
,
1235 (UINT
)lpPolyLineTo
->cptl
);
1239 case EMR_POLYPOLYLINE
:
1241 const EMRPOLYPOLYLINE
*pPolyPolyline
= (const EMRPOLYPOLYLINE
*)mr
;
1242 /* NB Points at pPolyPolyline->aPolyCounts + pPolyPolyline->nPolys */
1244 PolyPolyline(hdc
, (LPPOINT
)(pPolyPolyline
->aPolyCounts
+
1245 pPolyPolyline
->nPolys
),
1246 pPolyPolyline
->aPolyCounts
,
1247 pPolyPolyline
->nPolys
);
1252 case EMR_POLYPOLYGON
:
1254 const EMRPOLYPOLYGON
*pPolyPolygon
= (const EMRPOLYPOLYGON
*)mr
;
1256 /* NB Points at pPolyPolygon->aPolyCounts + pPolyPolygon->nPolys */
1258 PolyPolygon(hdc
, (LPPOINT
)(pPolyPolygon
->aPolyCounts
+
1259 pPolyPolygon
->nPolys
),
1260 (INT
*)pPolyPolygon
->aPolyCounts
, pPolyPolygon
->nPolys
);
1264 case EMR_SETBRUSHORGEX
:
1266 const EMRSETBRUSHORGEX
*lpSetBrushOrgEx
= (const EMRSETBRUSHORGEX
*)mr
;
1269 (INT
)lpSetBrushOrgEx
->ptlOrigin
.x
,
1270 (INT
)lpSetBrushOrgEx
->ptlOrigin
.y
,
1278 const EMRSETPIXELV
*lpSetPixelV
= (const EMRSETPIXELV
*)mr
;
1281 (INT
)lpSetPixelV
->ptlPixel
.x
,
1282 (INT
)lpSetPixelV
->ptlPixel
.y
,
1283 lpSetPixelV
->crColor
);
1288 case EMR_SETMAPPERFLAGS
:
1290 const EMRSETMAPPERFLAGS
*lpSetMapperFlags
= (const EMRSETMAPPERFLAGS
*)mr
;
1292 SetMapperFlags( hdc
, lpSetMapperFlags
->dwFlags
);
1297 case EMR_SETCOLORADJUSTMENT
:
1299 const EMRSETCOLORADJUSTMENT
*lpSetColorAdjust
= (const EMRSETCOLORADJUSTMENT
*)mr
;
1301 SetColorAdjustment( hdc
, &lpSetColorAdjust
->ColorAdjustment
);
1306 case EMR_OFFSETCLIPRGN
:
1308 const EMROFFSETCLIPRGN
*lpOffsetClipRgn
= (const EMROFFSETCLIPRGN
*)mr
;
1311 (INT
)lpOffsetClipRgn
->ptlOffset
.x
,
1312 (INT
)lpOffsetClipRgn
->ptlOffset
.y
);
1313 FIXME("OffsetClipRgn\n");
1318 case EMR_EXCLUDECLIPRECT
:
1320 const EMREXCLUDECLIPRECT
*lpExcludeClipRect
= (const EMREXCLUDECLIPRECT
*)mr
;
1322 ExcludeClipRect( hdc
,
1323 lpExcludeClipRect
->rclClip
.left
,
1324 lpExcludeClipRect
->rclClip
.top
,
1325 lpExcludeClipRect
->rclClip
.right
,
1326 lpExcludeClipRect
->rclClip
.bottom
);
1327 FIXME("ExcludeClipRect\n");
1332 case EMR_SCALEVIEWPORTEXTEX
:
1334 const EMRSCALEVIEWPORTEXTEX
*lpScaleViewportExtEx
= (const EMRSCALEVIEWPORTEXTEX
*)mr
;
1336 if ((info
->mode
!= MM_ISOTROPIC
) && (info
->mode
!= MM_ANISOTROPIC
))
1338 if (!lpScaleViewportExtEx
->xNum
|| !lpScaleViewportExtEx
->xDenom
||
1339 !lpScaleViewportExtEx
->yNum
|| !lpScaleViewportExtEx
->yDenom
)
1341 info
->vportExtX
= MulDiv(info
->vportExtX
, lpScaleViewportExtEx
->xNum
,
1342 lpScaleViewportExtEx
->xDenom
);
1343 info
->vportExtY
= MulDiv(info
->vportExtY
, lpScaleViewportExtEx
->yNum
,
1344 lpScaleViewportExtEx
->yDenom
);
1345 if (info
->vportExtX
== 0) info
->vportExtX
= 1;
1346 if (info
->vportExtY
== 0) info
->vportExtY
= 1;
1347 if (info
->mode
== MM_ISOTROPIC
)
1348 EMF_FixIsotropic(hdc
, info
);
1350 TRACE("EMRSCALEVIEWPORTEXTEX %d/%d %d/%d\n",
1351 lpScaleViewportExtEx
->xNum
,lpScaleViewportExtEx
->xDenom
,
1352 lpScaleViewportExtEx
->yNum
,lpScaleViewportExtEx
->yDenom
);
1357 case EMR_SCALEWINDOWEXTEX
:
1359 const EMRSCALEWINDOWEXTEX
*lpScaleWindowExtEx
= (const EMRSCALEWINDOWEXTEX
*)mr
;
1361 if ((info
->mode
!= MM_ISOTROPIC
) && (info
->mode
!= MM_ANISOTROPIC
))
1363 if (!lpScaleWindowExtEx
->xNum
|| !lpScaleWindowExtEx
->xDenom
||
1364 !lpScaleWindowExtEx
->xNum
|| !lpScaleWindowExtEx
->yDenom
)
1366 info
->wndExtX
= MulDiv(info
->wndExtX
, lpScaleWindowExtEx
->xNum
,
1367 lpScaleWindowExtEx
->xDenom
);
1368 info
->wndExtY
= MulDiv(info
->wndExtY
, lpScaleWindowExtEx
->yNum
,
1369 lpScaleWindowExtEx
->yDenom
);
1370 if (info
->wndExtX
== 0) info
->wndExtX
= 1;
1371 if (info
->wndExtY
== 0) info
->wndExtY
= 1;
1372 if (info
->mode
== MM_ISOTROPIC
)
1373 EMF_FixIsotropic(hdc
, info
);
1375 TRACE("EMRSCALEWINDOWEXTEX %d/%d %d/%d\n",
1376 lpScaleWindowExtEx
->xNum
,lpScaleWindowExtEx
->xDenom
,
1377 lpScaleWindowExtEx
->yNum
,lpScaleWindowExtEx
->yDenom
);
1382 case EMR_MODIFYWORLDTRANSFORM
:
1384 const EMRMODIFYWORLDTRANSFORM
*lpModifyWorldTrans
= (const EMRMODIFYWORLDTRANSFORM
*)mr
;
1386 switch(lpModifyWorldTrans
->iMode
) {
1388 info
->world_transform
.eM11
= info
->world_transform
.eM22
= 1;
1389 info
->world_transform
.eM12
= info
->world_transform
.eM21
= 0;
1390 info
->world_transform
.eDx
= info
->world_transform
.eDy
= 0;
1392 case MWT_LEFTMULTIPLY
:
1393 CombineTransform(&info
->world_transform
, &lpModifyWorldTrans
->xform
,
1394 &info
->world_transform
);
1396 case MWT_RIGHTMULTIPLY
:
1397 CombineTransform(&info
->world_transform
, &info
->world_transform
,
1398 &lpModifyWorldTrans
->xform
);
1401 FIXME("Unknown imode %d\n", lpModifyWorldTrans
->iMode
);
1409 const EMRANGLEARC
*lpAngleArc
= (const EMRANGLEARC
*)mr
;
1412 (INT
)lpAngleArc
->ptlCenter
.x
, (INT
)lpAngleArc
->ptlCenter
.y
,
1413 lpAngleArc
->nRadius
, lpAngleArc
->eStartAngle
,
1414 lpAngleArc
->eSweepAngle
);
1421 const EMRROUNDRECT
*lpRoundRect
= (const EMRROUNDRECT
*)mr
;
1424 lpRoundRect
->rclBox
.left
,
1425 lpRoundRect
->rclBox
.top
,
1426 lpRoundRect
->rclBox
.right
,
1427 lpRoundRect
->rclBox
.bottom
,
1428 lpRoundRect
->szlCorner
.cx
,
1429 lpRoundRect
->szlCorner
.cy
);
1436 const EMRARC
*lpArc
= (const EMRARC
*)mr
;
1439 (INT
)lpArc
->rclBox
.left
,
1440 (INT
)lpArc
->rclBox
.top
,
1441 (INT
)lpArc
->rclBox
.right
,
1442 (INT
)lpArc
->rclBox
.bottom
,
1443 (INT
)lpArc
->ptlStart
.x
,
1444 (INT
)lpArc
->ptlStart
.y
,
1445 (INT
)lpArc
->ptlEnd
.x
,
1446 (INT
)lpArc
->ptlEnd
.y
);
1453 const EMRCHORD
*lpChord
= (const EMRCHORD
*)mr
;
1456 (INT
)lpChord
->rclBox
.left
,
1457 (INT
)lpChord
->rclBox
.top
,
1458 (INT
)lpChord
->rclBox
.right
,
1459 (INT
)lpChord
->rclBox
.bottom
,
1460 (INT
)lpChord
->ptlStart
.x
,
1461 (INT
)lpChord
->ptlStart
.y
,
1462 (INT
)lpChord
->ptlEnd
.x
,
1463 (INT
)lpChord
->ptlEnd
.y
);
1470 const EMRPIE
*lpPie
= (const EMRPIE
*)mr
;
1473 (INT
)lpPie
->rclBox
.left
,
1474 (INT
)lpPie
->rclBox
.top
,
1475 (INT
)lpPie
->rclBox
.right
,
1476 (INT
)lpPie
->rclBox
.bottom
,
1477 (INT
)lpPie
->ptlStart
.x
,
1478 (INT
)lpPie
->ptlStart
.y
,
1479 (INT
)lpPie
->ptlEnd
.x
,
1480 (INT
)lpPie
->ptlEnd
.y
);
1487 const EMRARC
*lpArcTo
= (const EMRARC
*)mr
;
1490 (INT
)lpArcTo
->rclBox
.left
,
1491 (INT
)lpArcTo
->rclBox
.top
,
1492 (INT
)lpArcTo
->rclBox
.right
,
1493 (INT
)lpArcTo
->rclBox
.bottom
,
1494 (INT
)lpArcTo
->ptlStart
.x
,
1495 (INT
)lpArcTo
->ptlStart
.y
,
1496 (INT
)lpArcTo
->ptlEnd
.x
,
1497 (INT
)lpArcTo
->ptlEnd
.y
);
1502 case EMR_EXTFLOODFILL
:
1504 const EMREXTFLOODFILL
*lpExtFloodFill
= (const EMREXTFLOODFILL
*)mr
;
1507 (INT
)lpExtFloodFill
->ptlStart
.x
,
1508 (INT
)lpExtFloodFill
->ptlStart
.y
,
1509 lpExtFloodFill
->crColor
,
1510 (UINT
)lpExtFloodFill
->iMode
);
1517 const EMRPOLYDRAW
*lpPolyDraw
= (const EMRPOLYDRAW
*)mr
;
1519 (const POINT
*)lpPolyDraw
->aptl
,
1520 lpPolyDraw
->abTypes
,
1521 (INT
)lpPolyDraw
->cptl
);
1526 case EMR_SETARCDIRECTION
:
1528 const EMRSETARCDIRECTION
*lpSetArcDirection
= (const EMRSETARCDIRECTION
*)mr
;
1529 SetArcDirection( hdc
, (INT
)lpSetArcDirection
->iArcDirection
);
1533 case EMR_SETMITERLIMIT
:
1535 const EMRSETMITERLIMIT
*lpSetMiterLimit
= (const EMRSETMITERLIMIT
*)mr
;
1536 SetMiterLimit( hdc
, lpSetMiterLimit
->eMiterLimit
, NULL
);
1552 case EMR_CLOSEFIGURE
:
1560 /*const EMRFILLPATH lpFillPath = (const EMRFILLPATH *)mr;*/
1565 case EMR_STROKEANDFILLPATH
:
1567 /*const EMRSTROKEANDFILLPATH lpStrokeAndFillPath = (const EMRSTROKEANDFILLPATH *)mr;*/
1568 StrokeAndFillPath( hdc
);
1572 case EMR_STROKEPATH
:
1574 /*const EMRSTROKEPATH lpStrokePath = (const EMRSTROKEPATH *)mr;*/
1579 case EMR_FLATTENPATH
:
1591 case EMR_SELECTCLIPPATH
:
1593 const EMRSELECTCLIPPATH
*lpSelectClipPath
= (const EMRSELECTCLIPPATH
*)mr
;
1594 SelectClipPath( hdc
, (INT
)lpSelectClipPath
->iMode
);
1604 case EMR_CREATECOLORSPACE
:
1606 PEMRCREATECOLORSPACE lpCreateColorSpace
= (PEMRCREATECOLORSPACE
)mr
;
1607 (handletable
->objectHandle
)[lpCreateColorSpace
->ihCS
] =
1608 CreateColorSpaceA( &lpCreateColorSpace
->lcs
);
1612 case EMR_SETCOLORSPACE
:
1614 const EMRSETCOLORSPACE
*lpSetColorSpace
= (const EMRSETCOLORSPACE
*)mr
;
1616 (handletable
->objectHandle
)[lpSetColorSpace
->ihCS
] );
1620 case EMR_DELETECOLORSPACE
:
1622 const EMRDELETECOLORSPACE
*lpDeleteColorSpace
= (const EMRDELETECOLORSPACE
*)mr
;
1623 DeleteColorSpace( (handletable
->objectHandle
)[lpDeleteColorSpace
->ihCS
] );
1627 case EMR_SETICMMODE
:
1629 const EMRSETICMMODE
*lpSetICMMode
= (const EMRSETICMMODE
*)mr
;
1630 SetICMMode( hdc
, (INT
)lpSetICMMode
->iMode
);
1634 case EMR_PIXELFORMAT
:
1637 const EMRPIXELFORMAT
*lpPixelFormat
= (const EMRPIXELFORMAT
*)mr
;
1639 iPixelFormat
= ChoosePixelFormat( hdc
, &lpPixelFormat
->pfd
);
1640 SetPixelFormat( hdc
, iPixelFormat
, &lpPixelFormat
->pfd
);
1645 case EMR_SETPALETTEENTRIES
:
1647 const EMRSETPALETTEENTRIES
*lpSetPaletteEntries
= (const EMRSETPALETTEENTRIES
*)mr
;
1649 SetPaletteEntries( (handletable
->objectHandle
)[lpSetPaletteEntries
->ihPal
],
1650 (UINT
)lpSetPaletteEntries
->iStart
,
1651 (UINT
)lpSetPaletteEntries
->cEntries
,
1652 lpSetPaletteEntries
->aPalEntries
);
1657 case EMR_RESIZEPALETTE
:
1659 const EMRRESIZEPALETTE
*lpResizePalette
= (const EMRRESIZEPALETTE
*)mr
;
1661 ResizePalette( (handletable
->objectHandle
)[lpResizePalette
->ihPal
],
1662 (UINT
)lpResizePalette
->cEntries
);
1667 case EMR_CREATEDIBPATTERNBRUSHPT
:
1669 const EMRCREATEDIBPATTERNBRUSHPT
*lpCreate
= (const EMRCREATEDIBPATTERNBRUSHPT
*)mr
;
1670 LPVOID lpPackedStruct
;
1672 /* Check that offsets and data are contained within the record
1673 * (including checking for wrap arounds).
1675 if ( lpCreate
->offBmi
+ lpCreate
->cbBmi
> mr
->nSize
1676 || lpCreate
->offBits
+ lpCreate
->cbBits
> mr
->nSize
1677 || lpCreate
->offBmi
+ lpCreate
->cbBmi
< lpCreate
->offBmi
1678 || lpCreate
->offBits
+ lpCreate
->cbBits
< lpCreate
->offBits
)
1680 ERR("Invalid EMR_CREATEDIBPATTERNBRUSHPT record\n");
1684 /* This is a BITMAPINFO struct followed directly by bitmap bits */
1685 lpPackedStruct
= HeapAlloc( GetProcessHeap(), 0,
1686 lpCreate
->cbBmi
+ lpCreate
->cbBits
);
1689 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
1693 /* Now pack this structure */
1694 memcpy( lpPackedStruct
,
1695 ((const BYTE
*)lpCreate
) + lpCreate
->offBmi
,
1697 memcpy( ((BYTE
*)lpPackedStruct
) + lpCreate
->cbBmi
,
1698 ((const BYTE
*)lpCreate
) + lpCreate
->offBits
,
1701 (handletable
->objectHandle
)[lpCreate
->ihBrush
] =
1702 CreateDIBPatternBrushPt( lpPackedStruct
,
1703 (UINT
)lpCreate
->iUsage
);
1705 HeapFree(GetProcessHeap(), 0, lpPackedStruct
);
1709 case EMR_CREATEMONOBRUSH
:
1711 const EMRCREATEMONOBRUSH
*pCreateMonoBrush
= (const EMRCREATEMONOBRUSH
*)mr
;
1712 const BITMAPINFO
*pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pCreateMonoBrush
->offBmi
);
1715 /* Need to check if the bitmap is monochrome, and if the
1716 two colors are really black and white */
1717 if (pCreateMonoBrush
->iUsage
== DIB_PAL_MONO
)
1721 /* Undocumented iUsage indicates a mono bitmap with no palette table,
1722 * aligned to 32 rather than 16 bits.
1725 bm
.bmWidth
= pbi
->bmiHeader
.biWidth
;
1726 bm
.bmHeight
= abs(pbi
->bmiHeader
.biHeight
);
1727 bm
.bmWidthBytes
= 4 * ((pbi
->bmiHeader
.biWidth
+ 31) / 32);
1728 bm
.bmPlanes
= pbi
->bmiHeader
.biPlanes
;
1729 bm
.bmBitsPixel
= pbi
->bmiHeader
.biBitCount
;
1730 bm
.bmBits
= (BYTE
*)mr
+ pCreateMonoBrush
->offBits
;
1731 hBmp
= CreateBitmapIndirect(&bm
);
1733 else if (is_dib_monochrome(pbi
))
1735 /* Top-down DIBs have a negative height */
1736 LONG height
= pbi
->bmiHeader
.biHeight
;
1738 hBmp
= CreateBitmap(pbi
->bmiHeader
.biWidth
, abs(height
), 1, 1, NULL
);
1739 SetDIBits(hdc
, hBmp
, 0, pbi
->bmiHeader
.biHeight
,
1740 (const BYTE
*)mr
+ pCreateMonoBrush
->offBits
, pbi
, pCreateMonoBrush
->iUsage
);
1744 hBmp
= CreateDIBitmap(hdc
, (const BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1745 (const BYTE
*)mr
+ pCreateMonoBrush
->offBits
, pbi
, pCreateMonoBrush
->iUsage
);
1748 (handletable
->objectHandle
)[pCreateMonoBrush
->ihBrush
] = CreatePatternBrush(hBmp
);
1750 /* CreatePatternBrush created a copy of the bitmap */
1757 const EMRBITBLT
*pBitBlt
= (const EMRBITBLT
*)mr
;
1759 if(pBitBlt
->offBmiSrc
== 0) { /* Record is a PatBlt */
1760 PatBlt(hdc
, pBitBlt
->xDest
, pBitBlt
->yDest
, pBitBlt
->cxDest
, pBitBlt
->cyDest
,
1762 } else { /* BitBlt */
1763 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1764 HBRUSH hBrush
, hBrushOld
;
1765 HBITMAP hBmp
= 0, hBmpOld
= 0;
1766 const BITMAPINFO
*pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pBitBlt
->offBmiSrc
);
1768 SetWorldTransform(hdcSrc
, &pBitBlt
->xformSrc
);
1770 hBrush
= CreateSolidBrush(pBitBlt
->crBkColorSrc
);
1771 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1772 PatBlt(hdcSrc
, pBitBlt
->rclBounds
.left
, pBitBlt
->rclBounds
.top
,
1773 pBitBlt
->rclBounds
.right
- pBitBlt
->rclBounds
.left
,
1774 pBitBlt
->rclBounds
.bottom
- pBitBlt
->rclBounds
.top
, PATCOPY
);
1775 SelectObject(hdcSrc
, hBrushOld
);
1776 DeleteObject(hBrush
);
1778 hBmp
= CreateDIBitmap(hdc
, (const BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1779 (const BYTE
*)mr
+ pBitBlt
->offBitsSrc
, pbi
, pBitBlt
->iUsageSrc
);
1780 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1782 BitBlt(hdc
, pBitBlt
->xDest
, pBitBlt
->yDest
, pBitBlt
->cxDest
, pBitBlt
->cyDest
,
1783 hdcSrc
, pBitBlt
->xSrc
, pBitBlt
->ySrc
, pBitBlt
->dwRop
);
1785 SelectObject(hdcSrc
, hBmpOld
);
1792 case EMR_STRETCHBLT
:
1794 const EMRSTRETCHBLT
*pStretchBlt
= (const EMRSTRETCHBLT
*)mr
;
1796 TRACE("EMR_STRETCHBLT: %d, %d %dx%d -> %d, %d %dx%d. rop %08x offBitsSrc %d\n",
1797 pStretchBlt
->xSrc
, pStretchBlt
->ySrc
, pStretchBlt
->cxSrc
, pStretchBlt
->cySrc
,
1798 pStretchBlt
->xDest
, pStretchBlt
->yDest
, pStretchBlt
->cxDest
, pStretchBlt
->cyDest
,
1799 pStretchBlt
->dwRop
, pStretchBlt
->offBitsSrc
);
1801 if(pStretchBlt
->offBmiSrc
== 0) { /* Record is a PatBlt */
1802 PatBlt(hdc
, pStretchBlt
->xDest
, pStretchBlt
->yDest
, pStretchBlt
->cxDest
, pStretchBlt
->cyDest
,
1803 pStretchBlt
->dwRop
);
1804 } else { /* StretchBlt */
1805 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1806 HBRUSH hBrush
, hBrushOld
;
1807 HBITMAP hBmp
= 0, hBmpOld
= 0;
1808 const BITMAPINFO
*pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pStretchBlt
->offBmiSrc
);
1810 SetWorldTransform(hdcSrc
, &pStretchBlt
->xformSrc
);
1812 hBrush
= CreateSolidBrush(pStretchBlt
->crBkColorSrc
);
1813 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1814 PatBlt(hdcSrc
, pStretchBlt
->rclBounds
.left
, pStretchBlt
->rclBounds
.top
,
1815 pStretchBlt
->rclBounds
.right
- pStretchBlt
->rclBounds
.left
,
1816 pStretchBlt
->rclBounds
.bottom
- pStretchBlt
->rclBounds
.top
, PATCOPY
);
1817 SelectObject(hdcSrc
, hBrushOld
);
1818 DeleteObject(hBrush
);
1820 hBmp
= CreateDIBitmap(hdc
, (const BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1821 (const BYTE
*)mr
+ pStretchBlt
->offBitsSrc
, pbi
, pStretchBlt
->iUsageSrc
);
1822 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1824 StretchBlt(hdc
, pStretchBlt
->xDest
, pStretchBlt
->yDest
, pStretchBlt
->cxDest
, pStretchBlt
->cyDest
,
1825 hdcSrc
, pStretchBlt
->xSrc
, pStretchBlt
->ySrc
, pStretchBlt
->cxSrc
, pStretchBlt
->cySrc
,
1826 pStretchBlt
->dwRop
);
1828 SelectObject(hdcSrc
, hBmpOld
);
1835 case EMR_ALPHABLEND
:
1837 const EMRALPHABLEND
*pAlphaBlend
= (const EMRALPHABLEND
*)mr
;
1839 TRACE("EMR_ALPHABLEND: %d, %d %dx%d -> %d, %d %dx%d. blendfn %08x offBitsSrc %d\n",
1840 pAlphaBlend
->xSrc
, pAlphaBlend
->ySrc
, pAlphaBlend
->cxSrc
, pAlphaBlend
->cySrc
,
1841 pAlphaBlend
->xDest
, pAlphaBlend
->yDest
, pAlphaBlend
->cxDest
, pAlphaBlend
->cyDest
,
1842 pAlphaBlend
->dwRop
, pAlphaBlend
->offBitsSrc
);
1844 if(pAlphaBlend
->offBmiSrc
== 0) {
1845 FIXME("EMR_ALPHABLEND: offBmiSrc == 0\n");
1847 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1848 HBITMAP hBmp
= 0, hBmpOld
= 0;
1849 const BITMAPINFO
*pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pAlphaBlend
->offBmiSrc
);
1850 BLENDFUNCTION blendfn
;
1853 SetWorldTransform(hdcSrc
, &pAlphaBlend
->xformSrc
);
1855 hBmp
= CreateDIBSection(hdc
, pbi
, pAlphaBlend
->iUsageSrc
, &bits
, NULL
, 0);
1856 memcpy(bits
, (const BYTE
*)mr
+ pAlphaBlend
->offBitsSrc
, pAlphaBlend
->cbBitsSrc
);
1857 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1859 blendfn
.BlendOp
= (pAlphaBlend
->dwRop
>> 24) & 0xff;
1860 blendfn
.BlendFlags
= (pAlphaBlend
->dwRop
>> 16) & 0xff;
1861 blendfn
.SourceConstantAlpha
= (pAlphaBlend
->dwRop
>> 8) & 0xff;
1862 blendfn
.AlphaFormat
= (pAlphaBlend
->dwRop
) & 0xff;
1864 GdiAlphaBlend(hdc
, pAlphaBlend
->xDest
, pAlphaBlend
->yDest
, pAlphaBlend
->cxDest
, pAlphaBlend
->cyDest
,
1865 hdcSrc
, pAlphaBlend
->xSrc
, pAlphaBlend
->ySrc
, pAlphaBlend
->cxSrc
, pAlphaBlend
->cySrc
,
1868 SelectObject(hdcSrc
, hBmpOld
);
1877 const EMRMASKBLT
*pMaskBlt
= (const EMRMASKBLT
*)mr
;
1878 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1879 HBRUSH hBrush
, hBrushOld
;
1880 HBITMAP hBmp
, hBmpOld
, hBmpMask
;
1881 const BITMAPINFO
*pbi
;
1883 SetWorldTransform(hdcSrc
, &pMaskBlt
->xformSrc
);
1885 hBrush
= CreateSolidBrush(pMaskBlt
->crBkColorSrc
);
1886 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1887 PatBlt(hdcSrc
, pMaskBlt
->rclBounds
.left
, pMaskBlt
->rclBounds
.top
,
1888 pMaskBlt
->rclBounds
.right
- pMaskBlt
->rclBounds
.left
,
1889 pMaskBlt
->rclBounds
.bottom
- pMaskBlt
->rclBounds
.top
, PATCOPY
);
1890 SelectObject(hdcSrc
, hBrushOld
);
1891 DeleteObject(hBrush
);
1893 pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pMaskBlt
->offBmiMask
);
1894 hBmpMask
= CreateBitmap(pbi
->bmiHeader
.biWidth
, pbi
->bmiHeader
.biHeight
,
1896 SetDIBits(hdc
, hBmpMask
, 0, pbi
->bmiHeader
.biHeight
,
1897 (const BYTE
*)mr
+ pMaskBlt
->offBitsMask
, pbi
, pMaskBlt
->iUsageMask
);
1899 pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pMaskBlt
->offBmiSrc
);
1900 hBmp
= CreateDIBitmap(hdc
, (const BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1901 (const BYTE
*)mr
+ pMaskBlt
->offBitsSrc
, pbi
, pMaskBlt
->iUsageSrc
);
1902 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1915 SelectObject(hdcSrc
, hBmpOld
);
1917 DeleteObject(hBmpMask
);
1924 const EMRPLGBLT
*pPlgBlt
= (const EMRPLGBLT
*)mr
;
1925 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1926 HBRUSH hBrush
, hBrushOld
;
1927 HBITMAP hBmp
, hBmpOld
, hBmpMask
;
1928 const BITMAPINFO
*pbi
;
1931 SetWorldTransform(hdcSrc
, &pPlgBlt
->xformSrc
);
1933 pts
[0].x
= pPlgBlt
->aptlDest
[0].x
; pts
[0].y
= pPlgBlt
->aptlDest
[0].y
;
1934 pts
[1].x
= pPlgBlt
->aptlDest
[1].x
; pts
[1].y
= pPlgBlt
->aptlDest
[1].y
;
1935 pts
[2].x
= pPlgBlt
->aptlDest
[2].x
; pts
[2].y
= pPlgBlt
->aptlDest
[2].y
;
1937 hBrush
= CreateSolidBrush(pPlgBlt
->crBkColorSrc
);
1938 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1939 PatBlt(hdcSrc
, pPlgBlt
->rclBounds
.left
, pPlgBlt
->rclBounds
.top
,
1940 pPlgBlt
->rclBounds
.right
- pPlgBlt
->rclBounds
.left
,
1941 pPlgBlt
->rclBounds
.bottom
- pPlgBlt
->rclBounds
.top
, PATCOPY
);
1942 SelectObject(hdcSrc
, hBrushOld
);
1943 DeleteObject(hBrush
);
1945 pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pPlgBlt
->offBmiMask
);
1946 hBmpMask
= CreateBitmap(pbi
->bmiHeader
.biWidth
, pbi
->bmiHeader
.biHeight
,
1948 SetDIBits(hdc
, hBmpMask
, 0, pbi
->bmiHeader
.biHeight
,
1949 (const BYTE
*)mr
+ pPlgBlt
->offBitsMask
, pbi
, pPlgBlt
->iUsageMask
);
1951 pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pPlgBlt
->offBmiSrc
);
1952 hBmp
= CreateDIBitmap(hdc
, (const BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1953 (const BYTE
*)mr
+ pPlgBlt
->offBitsSrc
, pbi
, pPlgBlt
->iUsageSrc
);
1954 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1965 SelectObject(hdcSrc
, hBmpOld
);
1967 DeleteObject(hBmpMask
);
1972 case EMR_SETDIBITSTODEVICE
:
1974 const EMRSETDIBITSTODEVICE
*pSetDIBitsToDevice
= (const EMRSETDIBITSTODEVICE
*)mr
;
1976 SetDIBitsToDevice(hdc
,
1977 pSetDIBitsToDevice
->xDest
,
1978 pSetDIBitsToDevice
->yDest
,
1979 pSetDIBitsToDevice
->cxSrc
,
1980 pSetDIBitsToDevice
->cySrc
,
1981 pSetDIBitsToDevice
->xSrc
,
1982 pSetDIBitsToDevice
->ySrc
,
1983 pSetDIBitsToDevice
->iStartScan
,
1984 pSetDIBitsToDevice
->cScans
,
1985 (const BYTE
*)mr
+ pSetDIBitsToDevice
->offBitsSrc
,
1986 (const BITMAPINFO
*)((const BYTE
*)mr
+ pSetDIBitsToDevice
->offBmiSrc
),
1987 pSetDIBitsToDevice
->iUsageSrc
);
1991 case EMR_POLYTEXTOUTA
:
1993 const EMRPOLYTEXTOUTA
*pPolyTextOutA
= (const EMRPOLYTEXTOUTA
*)mr
;
1994 POLYTEXTA
*polytextA
= HeapAlloc(GetProcessHeap(), 0, pPolyTextOutA
->cStrings
* sizeof(POLYTEXTA
));
1996 XFORM xform
, xformOld
;
1999 gModeOld
= SetGraphicsMode(hdc
, pPolyTextOutA
->iGraphicsMode
);
2000 GetWorldTransform(hdc
, &xformOld
);
2002 xform
.eM11
= pPolyTextOutA
->exScale
;
2005 xform
.eM22
= pPolyTextOutA
->eyScale
;
2008 SetWorldTransform(hdc
, &xform
);
2010 /* Set up POLYTEXTA structures */
2011 for(i
= 0; i
< pPolyTextOutA
->cStrings
; i
++)
2013 polytextA
[i
].x
= pPolyTextOutA
->aemrtext
[i
].ptlReference
.x
;
2014 polytextA
[i
].y
= pPolyTextOutA
->aemrtext
[i
].ptlReference
.y
;
2015 polytextA
[i
].n
= pPolyTextOutA
->aemrtext
[i
].nChars
;
2016 polytextA
[i
].lpstr
= (LPCSTR
)((const BYTE
*)mr
+ pPolyTextOutA
->aemrtext
[i
].offString
);
2017 polytextA
[i
].uiFlags
= pPolyTextOutA
->aemrtext
[i
].fOptions
;
2018 polytextA
[i
].rcl
.left
= pPolyTextOutA
->aemrtext
[i
].rcl
.left
;
2019 polytextA
[i
].rcl
.right
= pPolyTextOutA
->aemrtext
[i
].rcl
.right
;
2020 polytextA
[i
].rcl
.top
= pPolyTextOutA
->aemrtext
[i
].rcl
.top
;
2021 polytextA
[i
].rcl
.bottom
= pPolyTextOutA
->aemrtext
[i
].rcl
.bottom
;
2022 polytextA
[i
].pdx
= (int *)((BYTE
*)mr
+ pPolyTextOutA
->aemrtext
[i
].offDx
);
2024 PolyTextOutA(hdc
, polytextA
, pPolyTextOutA
->cStrings
);
2025 HeapFree(GetProcessHeap(), 0, polytextA
);
2027 SetWorldTransform(hdc
, &xformOld
);
2028 SetGraphicsMode(hdc
, gModeOld
);
2032 case EMR_POLYTEXTOUTW
:
2034 const EMRPOLYTEXTOUTW
*pPolyTextOutW
= (const EMRPOLYTEXTOUTW
*)mr
;
2035 POLYTEXTW
*polytextW
= HeapAlloc(GetProcessHeap(), 0, pPolyTextOutW
->cStrings
* sizeof(POLYTEXTW
));
2037 XFORM xform
, xformOld
;
2040 gModeOld
= SetGraphicsMode(hdc
, pPolyTextOutW
->iGraphicsMode
);
2041 GetWorldTransform(hdc
, &xformOld
);
2043 xform
.eM11
= pPolyTextOutW
->exScale
;
2046 xform
.eM22
= pPolyTextOutW
->eyScale
;
2049 SetWorldTransform(hdc
, &xform
);
2051 /* Set up POLYTEXTW structures */
2052 for(i
= 0; i
< pPolyTextOutW
->cStrings
; i
++)
2054 polytextW
[i
].x
= pPolyTextOutW
->aemrtext
[i
].ptlReference
.x
;
2055 polytextW
[i
].y
= pPolyTextOutW
->aemrtext
[i
].ptlReference
.y
;
2056 polytextW
[i
].n
= pPolyTextOutW
->aemrtext
[i
].nChars
;
2057 polytextW
[i
].lpstr
= (LPCWSTR
)((const BYTE
*)mr
+ pPolyTextOutW
->aemrtext
[i
].offString
);
2058 polytextW
[i
].uiFlags
= pPolyTextOutW
->aemrtext
[i
].fOptions
;
2059 polytextW
[i
].rcl
.left
= pPolyTextOutW
->aemrtext
[i
].rcl
.left
;
2060 polytextW
[i
].rcl
.right
= pPolyTextOutW
->aemrtext
[i
].rcl
.right
;
2061 polytextW
[i
].rcl
.top
= pPolyTextOutW
->aemrtext
[i
].rcl
.top
;
2062 polytextW
[i
].rcl
.bottom
= pPolyTextOutW
->aemrtext
[i
].rcl
.bottom
;
2063 polytextW
[i
].pdx
= (int *)((BYTE
*)mr
+ pPolyTextOutW
->aemrtext
[i
].offDx
);
2065 PolyTextOutW(hdc
, polytextW
, pPolyTextOutW
->cStrings
);
2066 HeapFree(GetProcessHeap(), 0, polytextW
);
2068 SetWorldTransform(hdc
, &xformOld
);
2069 SetGraphicsMode(hdc
, gModeOld
);
2075 const EMRFILLRGN
*pFillRgn
= (const EMRFILLRGN
*)mr
;
2076 HRGN hRgn
= ExtCreateRegion(NULL
, pFillRgn
->cbRgnData
, (RGNDATA
*)pFillRgn
->RgnData
);
2079 (handletable
->objectHandle
)[pFillRgn
->ihBrush
]);
2086 const EMRFRAMERGN
*pFrameRgn
= (const EMRFRAMERGN
*)mr
;
2087 HRGN hRgn
= ExtCreateRegion(NULL
, pFrameRgn
->cbRgnData
, (RGNDATA
*)pFrameRgn
->RgnData
);
2090 (handletable
->objectHandle
)[pFrameRgn
->ihBrush
],
2091 pFrameRgn
->szlStroke
.cx
,
2092 pFrameRgn
->szlStroke
.cy
);
2099 const EMRINVERTRGN
*pInvertRgn
= (const EMRINVERTRGN
*)mr
;
2100 HRGN hRgn
= ExtCreateRegion(NULL
, pInvertRgn
->cbRgnData
, (RGNDATA
*)pInvertRgn
->RgnData
);
2101 InvertRgn(hdc
, hRgn
);
2108 const EMRPAINTRGN
*pPaintRgn
= (const EMRPAINTRGN
*)mr
;
2109 HRGN hRgn
= ExtCreateRegion(NULL
, pPaintRgn
->cbRgnData
, (RGNDATA
*)pPaintRgn
->RgnData
);
2110 PaintRgn(hdc
, hRgn
);
2115 case EMR_SETTEXTJUSTIFICATION
:
2117 const EMRSETTEXTJUSTIFICATION
*pSetTextJust
= (const EMRSETTEXTJUSTIFICATION
*)mr
;
2118 SetTextJustification(hdc
, pSetTextJust
->nBreakExtra
, pSetTextJust
->nBreakCount
);
2124 const EMRSETLAYOUT
*pSetLayout
= (const EMRSETLAYOUT
*)mr
;
2125 SetLayout(hdc
, pSetLayout
->iMode
);
2129 case EMR_POLYDRAW16
:
2131 case EMR_GLSBOUNDEDRECORD
:
2132 case EMR_DRAWESCAPE
:
2135 case EMR_SMALLTEXTOUT
:
2136 case EMR_FORCEUFIMAPPING
:
2137 case EMR_NAMEDESCAPE
:
2138 case EMR_COLORCORRECTPALETTE
:
2139 case EMR_SETICMPROFILEA
:
2140 case EMR_SETICMPROFILEW
:
2141 case EMR_TRANSPARENTBLT
:
2142 case EMR_GRADIENTFILL
:
2143 case EMR_SETLINKEDUFI
:
2144 case EMR_COLORMATCHTOTARGETW
:
2145 case EMR_CREATECOLORSPACEW
:
2148 /* From docs: If PlayEnhMetaFileRecord doesn't recognize a
2149 record then ignore and return TRUE. */
2150 FIXME("type %d is unimplemented\n", type
);
2153 tmprc
.left
= tmprc
.top
= 0;
2154 tmprc
.right
= tmprc
.bottom
= 1000;
2155 LPtoDP(hdc
, (POINT
*)&tmprc
, 2);
2156 TRACE("L:0,0 - 1000,1000 -> D:%d,%d - %d,%d\n", tmprc
.left
,
2157 tmprc
.top
, tmprc
.right
, tmprc
.bottom
);
2161 /* WinNT - update the transform (win9x updates when the next graphics output
2162 record is played). */
2163 EMF_Update_MF_Xform(hdc
, info
);
2170 /*****************************************************************************
2172 * EnumEnhMetaFile (GDI32.@)
2174 * Walk an enhanced metafile, calling a user-specified function _EnhMetaFunc_
2176 * record. Returns when either every record has been used or
2177 * when _EnhMetaFunc_ returns FALSE.
2181 * TRUE if every record is used, FALSE if any invocation of _EnhMetaFunc_
2188 * This function behaves differently in Win9x and WinNT.
2190 * In WinNT, the DC's world transform is updated as the EMF changes
2191 * the Window/Viewport Extent and Origin or it's world transform.
2192 * The actual Window/Viewport Extent and Origin are left untouched.
2194 * In Win9x, the DC is left untouched, and PlayEnhMetaFileRecord
2195 * updates the scaling itself but only just before a record that
2196 * writes anything to the DC.
2198 * I'm not sure where the data (enum_emh_data) is stored in either
2199 * version. For this implementation, it is stored before the handle
2200 * table, but it could be stored in the DC, in the EMF handle or in
2204 BOOL WINAPI
EnumEnhMetaFile(
2205 HDC hdc
, /* [in] device context to pass to _EnhMetaFunc_ */
2206 HENHMETAFILE hmf
, /* [in] EMF to walk */
2207 ENHMFENUMPROC callback
, /* [in] callback function */
2208 LPVOID data
, /* [in] optional data for callback function */
2209 const RECT
*lpRect
/* [in] bounding rectangle for rendered metafile */
2221 HBRUSH hBrush
= NULL
;
2223 enum_emh_data
*info
;
2224 SIZE vp_size
, win_size
;
2225 POINT vp_org
, win_org
;
2226 INT mapMode
= MM_TEXT
, old_align
= 0, old_rop2
= 0, old_arcdir
= 0, old_polyfill
= 0, old_stretchblt
= 0;
2227 COLORREF old_text_color
= 0, old_bk_color
= 0;
2231 SetLastError(ERROR_INVALID_PARAMETER
);
2235 emh
= EMF_GetEnhMetaHeader(hmf
);
2237 SetLastError(ERROR_INVALID_HANDLE
);
2241 info
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
,
2242 sizeof (enum_emh_data
) + sizeof(HANDLETABLE
) * emh
->nHandles
);
2245 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2252 info
->vportOrgX
= 0;
2253 info
->vportOrgY
= 0;
2254 info
->vportExtX
= 1;
2255 info
->vportExtY
= 1;
2256 info
->world_transform
.eM11
= info
->world_transform
.eM22
= 1;
2257 info
->world_transform
.eM12
= info
->world_transform
.eM21
= 0;
2258 info
->world_transform
.eDx
= info
->world_transform
.eDy
= 0;
2260 ht
= (HANDLETABLE
*) &info
[1];
2261 ht
->objectHandle
[0] = hmf
;
2265 savedMode
= SetGraphicsMode(hdc
, GM_ADVANCED
);
2266 GetWorldTransform(hdc
, &savedXform
);
2267 GetViewportExtEx(hdc
, &vp_size
);
2268 GetWindowExtEx(hdc
, &win_size
);
2269 GetViewportOrgEx(hdc
, &vp_org
);
2270 GetWindowOrgEx(hdc
, &win_org
);
2271 mapMode
= GetMapMode(hdc
);
2273 /* save the current pen, brush and font */
2274 hPen
= GetCurrentObject(hdc
, OBJ_PEN
);
2275 hBrush
= GetCurrentObject(hdc
, OBJ_BRUSH
);
2276 hFont
= GetCurrentObject(hdc
, OBJ_FONT
);
2278 old_text_color
= SetTextColor(hdc
, RGB(0,0,0));
2279 old_bk_color
= SetBkColor(hdc
, RGB(0xff, 0xff, 0xff));
2280 old_align
= SetTextAlign(hdc
, 0);
2281 old_rop2
= SetROP2(hdc
, R2_COPYPEN
);
2282 old_arcdir
= SetArcDirection(hdc
, AD_COUNTERCLOCKWISE
);
2283 old_polyfill
= SetPolyFillMode(hdc
, ALTERNATE
);
2284 old_stretchblt
= SetStretchBltMode(hdc
, BLACKONWHITE
);
2287 info
->mode
= MM_TEXT
;
2291 /* Win95 leaves the vp/win ext/org info alone */
2292 info
->init_transform
.eM11
= 1.0;
2293 info
->init_transform
.eM12
= 0.0;
2294 info
->init_transform
.eM21
= 0.0;
2295 info
->init_transform
.eM22
= 1.0;
2296 info
->init_transform
.eDx
= 0.0;
2297 info
->init_transform
.eDy
= 0.0;
2301 /* WinNT combines the vp/win ext/org info into a transform */
2302 FLOAT xscale
, yscale
;
2303 xscale
= (FLOAT
)vp_size
.cx
/ (FLOAT
)win_size
.cx
;
2304 yscale
= (FLOAT
)vp_size
.cy
/ (FLOAT
)win_size
.cy
;
2305 info
->init_transform
.eM11
= xscale
;
2306 info
->init_transform
.eM12
= 0.0;
2307 info
->init_transform
.eM21
= 0.0;
2308 info
->init_transform
.eM22
= yscale
;
2309 info
->init_transform
.eDx
= (FLOAT
)vp_org
.x
- xscale
* (FLOAT
)win_org
.x
;
2310 info
->init_transform
.eDy
= (FLOAT
)vp_org
.y
- yscale
* (FLOAT
)win_org
.y
;
2312 CombineTransform(&info
->init_transform
, &savedXform
, &info
->init_transform
);
2315 if ( lpRect
&& WIDTH(emh
->rclFrame
) && HEIGHT(emh
->rclFrame
) )
2317 FLOAT xSrcPixSize
, ySrcPixSize
, xscale
, yscale
;
2320 TRACE("rect: %d,%d - %d,%d. rclFrame: %d,%d - %d,%d\n",
2321 lpRect
->left
, lpRect
->top
, lpRect
->right
, lpRect
->bottom
,
2322 emh
->rclFrame
.left
, emh
->rclFrame
.top
, emh
->rclFrame
.right
,
2323 emh
->rclFrame
.bottom
);
2325 xSrcPixSize
= (FLOAT
) emh
->szlMillimeters
.cx
/ emh
->szlDevice
.cx
;
2326 ySrcPixSize
= (FLOAT
) emh
->szlMillimeters
.cy
/ emh
->szlDevice
.cy
;
2327 xscale
= (FLOAT
) WIDTH(*lpRect
) * 100.0 /
2328 WIDTH(emh
->rclFrame
) * xSrcPixSize
;
2329 yscale
= (FLOAT
) HEIGHT(*lpRect
) * 100.0 /
2330 HEIGHT(emh
->rclFrame
) * ySrcPixSize
;
2331 TRACE("xscale = %f, yscale = %f\n", xscale
, yscale
);
2333 xform
.eM11
= xscale
;
2336 xform
.eM22
= yscale
;
2337 xform
.eDx
= (FLOAT
) lpRect
->left
- (FLOAT
) WIDTH(*lpRect
) / WIDTH(emh
->rclFrame
) * emh
->rclFrame
.left
;
2338 xform
.eDy
= (FLOAT
) lpRect
->top
- (FLOAT
) HEIGHT(*lpRect
) / HEIGHT(emh
->rclFrame
) * emh
->rclFrame
.top
;
2340 CombineTransform(&info
->init_transform
, &xform
, &info
->init_transform
);
2343 /* WinNT resets the current vp/win org/ext */
2344 if ( !IS_WIN9X() && hdc
)
2346 SetMapMode(hdc
, MM_TEXT
);
2347 SetWindowOrgEx(hdc
, 0, 0, NULL
);
2348 SetViewportOrgEx(hdc
, 0, 0, NULL
);
2349 EMF_Update_MF_Xform(hdc
, info
);
2354 while(ret
&& offset
< emh
->nBytes
)
2356 emr
= (ENHMETARECORD
*)((char *)emh
+ offset
);
2357 TRACE("Calling EnumFunc with record %s, size %d\n", get_emr_name(emr
->iType
), emr
->nSize
);
2358 ret
= (*callback
)(hdc
, ht
, emr
, emh
->nHandles
, (LPARAM
)data
);
2359 offset
+= emr
->nSize
;
2364 SetStretchBltMode(hdc
, old_stretchblt
);
2365 SetPolyFillMode(hdc
, old_polyfill
);
2366 SetArcDirection(hdc
, old_arcdir
);
2367 SetROP2(hdc
, old_rop2
);
2368 SetTextAlign(hdc
, old_align
);
2369 SetBkColor(hdc
, old_bk_color
);
2370 SetTextColor(hdc
, old_text_color
);
2372 /* restore pen, brush and font */
2373 SelectObject(hdc
, hBrush
);
2374 SelectObject(hdc
, hPen
);
2375 SelectObject(hdc
, hFont
);
2377 SetWorldTransform(hdc
, &savedXform
);
2379 SetGraphicsMode(hdc
, savedMode
);
2380 SetMapMode(hdc
, mapMode
);
2381 SetWindowOrgEx(hdc
, win_org
.x
, win_org
.y
, NULL
);
2382 SetWindowExtEx(hdc
, win_size
.cx
, win_size
.cy
, NULL
);
2383 SetViewportOrgEx(hdc
, vp_org
.x
, vp_org
.y
, NULL
);
2384 SetViewportExtEx(hdc
, vp_size
.cx
, vp_size
.cy
, NULL
);
2387 for(i
= 1; i
< emh
->nHandles
; i
++) /* Don't delete element 0 (hmf) */
2388 if( (ht
->objectHandle
)[i
] )
2389 DeleteObject( (ht
->objectHandle
)[i
] );
2391 HeapFree( GetProcessHeap(), 0, info
);
2395 static INT CALLBACK
EMF_PlayEnhMetaFileCallback(HDC hdc
, HANDLETABLE
*ht
,
2396 const ENHMETARECORD
*emr
,
2397 INT handles
, LPARAM data
)
2399 return PlayEnhMetaFileRecord(hdc
, ht
, emr
, handles
);
2402 /**************************************************************************
2403 * PlayEnhMetaFile (GDI32.@)
2405 * Renders an enhanced metafile into a specified rectangle *lpRect
2406 * in device context hdc.
2412 BOOL WINAPI
PlayEnhMetaFile(
2413 HDC hdc
, /* [in] DC to render into */
2414 HENHMETAFILE hmf
, /* [in] metafile to render */
2415 const RECT
*lpRect
/* [in] rectangle to place metafile inside */
2418 return EnumEnhMetaFile(hdc
, hmf
, EMF_PlayEnhMetaFileCallback
, NULL
,
2422 /*****************************************************************************
2423 * DeleteEnhMetaFile (GDI32.@)
2425 * Deletes an enhanced metafile and frees the associated storage.
2427 BOOL WINAPI
DeleteEnhMetaFile(HENHMETAFILE hmf
)
2429 return EMF_Delete_HENHMETAFILE( hmf
);
2432 /*****************************************************************************
2433 * CopyEnhMetaFileA (GDI32.@)
2435 * Duplicate an enhanced metafile.
2439 HENHMETAFILE WINAPI
CopyEnhMetaFileA(
2440 HENHMETAFILE hmfSrc
,
2443 ENHMETAHEADER
*emrSrc
= EMF_GetEnhMetaHeader( hmfSrc
), *emrDst
;
2444 HENHMETAFILE hmfDst
;
2446 if(!emrSrc
) return FALSE
;
2448 emrDst
= HeapAlloc( GetProcessHeap(), 0, emrSrc
->nBytes
);
2449 memcpy( emrDst
, emrSrc
, emrSrc
->nBytes
);
2450 hmfDst
= EMF_Create_HENHMETAFILE( emrDst
, FALSE
);
2454 hFile
= CreateFileA( file
, GENERIC_WRITE
| GENERIC_READ
, 0,
2455 NULL
, CREATE_ALWAYS
, 0, 0);
2456 WriteFile( hFile
, emrSrc
, emrSrc
->nBytes
, &w
, NULL
);
2457 CloseHandle( hFile
);
2458 /* Reopen file for reading only, so that apps can share
2459 read access to the file while hmf is still valid */
2460 hFile
= CreateFileA( file
, GENERIC_READ
, FILE_SHARE_READ
,
2461 NULL
, OPEN_EXISTING
, 0, 0);
2462 if(hFile
== INVALID_HANDLE_VALUE
) {
2463 ERR("Can't reopen emf for reading\n");
2466 hmfDst
= EMF_GetEnhMetaFile( hFile
);
2467 CloseHandle( hFile
);
2472 /*****************************************************************************
2473 * CopyEnhMetaFileW (GDI32.@)
2475 * See CopyEnhMetaFileA.
2479 HENHMETAFILE WINAPI
CopyEnhMetaFileW(
2480 HENHMETAFILE hmfSrc
,
2483 ENHMETAHEADER
*emrSrc
= EMF_GetEnhMetaHeader( hmfSrc
), *emrDst
;
2484 HENHMETAFILE hmfDst
;
2486 if(!emrSrc
) return FALSE
;
2488 emrDst
= HeapAlloc( GetProcessHeap(), 0, emrSrc
->nBytes
);
2489 memcpy( emrDst
, emrSrc
, emrSrc
->nBytes
);
2490 hmfDst
= EMF_Create_HENHMETAFILE( emrDst
, FALSE
);
2494 hFile
= CreateFileW( file
, GENERIC_WRITE
| GENERIC_READ
, 0,
2495 NULL
, CREATE_ALWAYS
, 0, 0);
2496 WriteFile( hFile
, emrSrc
, emrSrc
->nBytes
, &w
, NULL
);
2497 CloseHandle( hFile
);
2498 /* Reopen file for reading only, so that apps can share
2499 read access to the file while hmf is still valid */
2500 hFile
= CreateFileW( file
, GENERIC_READ
, FILE_SHARE_READ
,
2501 NULL
, OPEN_EXISTING
, 0, 0);
2502 if(hFile
== INVALID_HANDLE_VALUE
) {
2503 ERR("Can't reopen emf for reading\n");
2506 hmfDst
= EMF_GetEnhMetaFile( hFile
);
2507 CloseHandle( hFile
);
2513 /* Struct to be used to be passed in the LPVOID parameter for cbEnhPaletteCopy */
2514 typedef struct tagEMF_PaletteCopy
2517 LPPALETTEENTRY lpPe
;
2520 /***************************************************************
2521 * Find the EMR_EOF record and then use it to find the
2522 * palette entries for this enhanced metafile.
2523 * The lpData is actually a pointer to an EMF_PaletteCopy struct
2524 * which contains the max number of elements to copy and where
2527 * NOTE: To be used by GetEnhMetaFilePaletteEntries only!
2529 static INT CALLBACK
cbEnhPaletteCopy( HDC a
,
2531 const ENHMETARECORD
*lpEMR
,
2536 if ( lpEMR
->iType
== EMR_EOF
)
2538 const EMREOF
*lpEof
= (const EMREOF
*)lpEMR
;
2539 EMF_PaletteCopy
* info
= (EMF_PaletteCopy
*)lpData
;
2540 DWORD dwNumPalToCopy
= min( lpEof
->nPalEntries
, info
->cEntries
);
2542 TRACE( "copying 0x%08x palettes\n", dwNumPalToCopy
);
2544 memcpy( (LPVOID
)info
->lpPe
,
2545 (LPCVOID
)(((LPCSTR
)lpEof
) + lpEof
->offPalEntries
),
2546 sizeof( *(info
->lpPe
) ) * dwNumPalToCopy
);
2548 /* Update the passed data as a return code */
2549 info
->lpPe
= NULL
; /* Palettes were copied! */
2550 info
->cEntries
= dwNumPalToCopy
;
2552 return FALSE
; /* That's all we need */
2558 /*****************************************************************************
2559 * GetEnhMetaFilePaletteEntries (GDI32.@)
2561 * Copy the palette and report size
2563 * BUGS: Error codes (SetLastError) are not set on failures
2565 UINT WINAPI
GetEnhMetaFilePaletteEntries( HENHMETAFILE hEmf
,
2567 LPPALETTEENTRY lpPe
)
2569 ENHMETAHEADER
* enhHeader
= EMF_GetEnhMetaHeader( hEmf
);
2570 EMF_PaletteCopy infoForCallBack
;
2572 TRACE( "(%p,%d,%p)\n", hEmf
, cEntries
, lpPe
);
2574 if (!enhHeader
) return 0;
2576 /* First check if there are any palettes associated with
2578 if ( enhHeader
->nPalEntries
== 0 ) return 0;
2580 /* Is the user requesting the number of palettes? */
2581 if ( lpPe
== NULL
) return enhHeader
->nPalEntries
;
2583 /* Copy cEntries worth of PALETTEENTRY structs into the buffer */
2584 infoForCallBack
.cEntries
= cEntries
;
2585 infoForCallBack
.lpPe
= lpPe
;
2587 if ( !EnumEnhMetaFile( 0, hEmf
, cbEnhPaletteCopy
,
2588 &infoForCallBack
, 0 ) )
2591 /* Verify that the callback executed correctly */
2592 if ( infoForCallBack
.lpPe
!= NULL
)
2594 /* Callback proc had error! */
2595 ERR( "cbEnhPaletteCopy didn't execute correctly\n" );
2599 return infoForCallBack
.cEntries
;
2602 typedef struct gdi_mf_comment
2609 DWORD cbWinMetaFile
;
2612 /******************************************************************
2613 * SetWinMetaFileBits (GDI32.@)
2615 * Translate from old style to new style.
2618 HENHMETAFILE WINAPI
SetWinMetaFileBits(UINT cbBuffer
,
2619 CONST BYTE
*lpbBuffer
,
2621 CONST METAFILEPICT
*lpmfp
2624 static const WCHAR szDisplayW
[] = { 'D','I','S','P','L','A','Y','\0' };
2625 HMETAFILE hmf
= NULL
;
2626 HENHMETAFILE ret
= NULL
;
2627 HDC hdc
= NULL
, hdcdisp
= NULL
;
2628 RECT rc
, *prcFrame
= NULL
;
2629 gdi_mf_comment
*mfcomment
;
2630 UINT mfcomment_size
;
2631 LONG mm
, xExt
, yExt
;
2633 TRACE("(%d, %p, %p, %p)\n", cbBuffer
, lpbBuffer
, hdcRef
, lpmfp
);
2635 hmf
= SetMetaFileBitsEx(cbBuffer
, lpbBuffer
);
2638 WARN("SetMetaFileBitsEx failed\n");
2643 hdcRef
= hdcdisp
= CreateDCW(szDisplayW
, NULL
, NULL
, NULL
);
2647 TRACE("mm = %d %dx%d\n", lpmfp
->mm
, lpmfp
->xExt
, lpmfp
->yExt
);
2655 TRACE("lpmfp == NULL\n");
2657 /* Use the whole device surface */
2658 mm
= MM_ANISOTROPIC
;
2663 if (mm
== MM_ISOTROPIC
|| mm
== MM_ANISOTROPIC
)
2665 if (xExt
< 0 || yExt
< 0)
2667 /* Use the whole device surface */
2672 /* Use the x and y extents as the frame box */
2675 rc
.left
= rc
.top
= 0;
2682 if(!(hdc
= CreateEnhMetaFileW(hdcRef
, NULL
, prcFrame
, NULL
)))
2684 ERR("CreateEnhMetaFile failed\n");
2689 * Write the original METAFILE into the enhanced metafile.
2690 * It is encapsulated in a GDICOMMENT_WINDOWS_METAFILE record.
2692 mfcomment_size
= sizeof (gdi_mf_comment
) + cbBuffer
;
2693 mfcomment
= HeapAlloc(GetProcessHeap(), 0, mfcomment_size
);
2696 mfcomment
->ident
= GDICOMMENT_IDENTIFIER
;
2697 mfcomment
->iComment
= GDICOMMENT_WINDOWS_METAFILE
;
2698 mfcomment
->nVersion
= 0x00000300;
2699 mfcomment
->nChecksum
= 0; /* FIXME */
2700 mfcomment
->fFlags
= 0;
2701 mfcomment
->cbWinMetaFile
= cbBuffer
;
2702 memcpy(&mfcomment
[1], lpbBuffer
, cbBuffer
);
2703 GdiComment(hdc
, mfcomment_size
, (BYTE
*) mfcomment
);
2704 HeapFree(GetProcessHeap(), 0, mfcomment
);
2708 SetMapMode(hdc
, mm
);
2710 if (mm
== MM_ISOTROPIC
|| mm
== MM_ANISOTROPIC
)
2712 INT horzsize
, vertsize
, horzres
, vertres
;
2714 horzsize
= GetDeviceCaps(hdcRef
, HORZSIZE
);
2715 vertsize
= GetDeviceCaps(hdcRef
, VERTSIZE
);
2716 horzres
= GetDeviceCaps(hdcRef
, HORZRES
);
2717 vertres
= GetDeviceCaps(hdcRef
, VERTRES
);
2721 /* Use the whole device surface */
2727 xExt
= MulDiv(xExt
, horzres
, 100 * horzsize
);
2728 yExt
= MulDiv(yExt
, vertres
, 100 * vertsize
);
2731 /* set the initial viewport:window ratio as 1:1 */
2732 SetViewportExtEx(hdc
, xExt
, yExt
, NULL
);
2733 SetWindowExtEx(hdc
, xExt
, yExt
, NULL
);
2736 PlayMetaFile(hdc
, hmf
);
2738 ret
= CloseEnhMetaFile(hdc
);
2740 if (hdcdisp
) DeleteDC(hdcdisp
);
2741 DeleteMetaFile(hmf
);