1998-03-15 21:29:56 +01:00
|
|
|
/*
|
1999-05-02 11:23:51 +02:00
|
|
|
* Enhanced metafile functions
|
|
|
|
* Copyright 1998 Douglas Ridgway
|
2002-06-01 01:06:46 +02:00
|
|
|
* 1999 Huw D M Davies
|
1999-12-04 04:56:53 +01:00
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* NOTES:
|
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* The enhanced format consists of the following elements:
|
1999-12-04 04:56:53 +01:00
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* A header
|
|
|
|
* A table of handles to GDI objects
|
|
|
|
* An array of metafile records
|
|
|
|
* A private palette
|
1999-12-04 04:56:53 +01:00
|
|
|
*
|
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* The standard format consists of a header and an array of metafile records.
|
|
|
|
*
|
|
|
|
*/
|
1998-03-15 21:29:56 +01:00
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2004-11-22 19:22:20 +01:00
|
|
|
#include <stdlib.h>
|
1998-03-15 21:29:56 +01:00
|
|
|
#include <string.h>
|
1999-01-20 15:11:07 +01:00
|
|
|
#include <assert.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
1998-03-15 21:29:56 +01:00
|
|
|
#include "winbase.h"
|
1999-03-18 18:39:57 +01:00
|
|
|
#include "wingdi.h"
|
2003-08-20 20:22:31 +02:00
|
|
|
#include "winnls.h"
|
1998-11-07 13:56:31 +01:00
|
|
|
#include "winerror.h"
|
2004-01-15 01:35:38 +01:00
|
|
|
#include "gdi_private.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1998-03-15 21:29:56 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(enhmetafile);
|
1999-05-02 11:23:51 +02:00
|
|
|
|
2001-07-25 00:15:47 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
ENHMETAHEADER *emh;
|
|
|
|
BOOL on_disk; /* true if metafile is on disk */
|
|
|
|
} ENHMETAFILEOBJ;
|
|
|
|
|
2003-11-11 01:43:03 +01:00
|
|
|
static const struct emr_name {
|
|
|
|
DWORD type;
|
|
|
|
const char *name;
|
|
|
|
} emr_names[] = {
|
|
|
|
#define X(p) {p, #p}
|
|
|
|
X(EMR_HEADER),
|
|
|
|
X(EMR_POLYBEZIER),
|
|
|
|
X(EMR_POLYGON),
|
|
|
|
X(EMR_POLYLINE),
|
|
|
|
X(EMR_POLYBEZIERTO),
|
|
|
|
X(EMR_POLYLINETO),
|
|
|
|
X(EMR_POLYPOLYLINE),
|
|
|
|
X(EMR_POLYPOLYGON),
|
|
|
|
X(EMR_SETWINDOWEXTEX),
|
|
|
|
X(EMR_SETWINDOWORGEX),
|
|
|
|
X(EMR_SETVIEWPORTEXTEX),
|
|
|
|
X(EMR_SETVIEWPORTORGEX),
|
|
|
|
X(EMR_SETBRUSHORGEX),
|
|
|
|
X(EMR_EOF),
|
|
|
|
X(EMR_SETPIXELV),
|
|
|
|
X(EMR_SETMAPPERFLAGS),
|
|
|
|
X(EMR_SETMAPMODE),
|
|
|
|
X(EMR_SETBKMODE),
|
|
|
|
X(EMR_SETPOLYFILLMODE),
|
|
|
|
X(EMR_SETROP2),
|
|
|
|
X(EMR_SETSTRETCHBLTMODE),
|
|
|
|
X(EMR_SETTEXTALIGN),
|
|
|
|
X(EMR_SETCOLORADJUSTMENT),
|
|
|
|
X(EMR_SETTEXTCOLOR),
|
|
|
|
X(EMR_SETBKCOLOR),
|
|
|
|
X(EMR_OFFSETCLIPRGN),
|
|
|
|
X(EMR_MOVETOEX),
|
|
|
|
X(EMR_SETMETARGN),
|
|
|
|
X(EMR_EXCLUDECLIPRECT),
|
|
|
|
X(EMR_INTERSECTCLIPRECT),
|
|
|
|
X(EMR_SCALEVIEWPORTEXTEX),
|
|
|
|
X(EMR_SCALEWINDOWEXTEX),
|
|
|
|
X(EMR_SAVEDC),
|
|
|
|
X(EMR_RESTOREDC),
|
|
|
|
X(EMR_SETWORLDTRANSFORM),
|
|
|
|
X(EMR_MODIFYWORLDTRANSFORM),
|
|
|
|
X(EMR_SELECTOBJECT),
|
|
|
|
X(EMR_CREATEPEN),
|
|
|
|
X(EMR_CREATEBRUSHINDIRECT),
|
|
|
|
X(EMR_DELETEOBJECT),
|
|
|
|
X(EMR_ANGLEARC),
|
|
|
|
X(EMR_ELLIPSE),
|
|
|
|
X(EMR_RECTANGLE),
|
|
|
|
X(EMR_ROUNDRECT),
|
|
|
|
X(EMR_ARC),
|
|
|
|
X(EMR_CHORD),
|
|
|
|
X(EMR_PIE),
|
|
|
|
X(EMR_SELECTPALETTE),
|
|
|
|
X(EMR_CREATEPALETTE),
|
|
|
|
X(EMR_SETPALETTEENTRIES),
|
|
|
|
X(EMR_RESIZEPALETTE),
|
|
|
|
X(EMR_REALIZEPALETTE),
|
|
|
|
X(EMR_EXTFLOODFILL),
|
|
|
|
X(EMR_LINETO),
|
|
|
|
X(EMR_ARCTO),
|
|
|
|
X(EMR_POLYDRAW),
|
|
|
|
X(EMR_SETARCDIRECTION),
|
|
|
|
X(EMR_SETMITERLIMIT),
|
|
|
|
X(EMR_BEGINPATH),
|
|
|
|
X(EMR_ENDPATH),
|
|
|
|
X(EMR_CLOSEFIGURE),
|
|
|
|
X(EMR_FILLPATH),
|
|
|
|
X(EMR_STROKEANDFILLPATH),
|
|
|
|
X(EMR_STROKEPATH),
|
|
|
|
X(EMR_FLATTENPATH),
|
|
|
|
X(EMR_WIDENPATH),
|
|
|
|
X(EMR_SELECTCLIPPATH),
|
|
|
|
X(EMR_ABORTPATH),
|
|
|
|
X(EMR_GDICOMMENT),
|
|
|
|
X(EMR_FILLRGN),
|
|
|
|
X(EMR_FRAMERGN),
|
|
|
|
X(EMR_INVERTRGN),
|
|
|
|
X(EMR_PAINTRGN),
|
|
|
|
X(EMR_EXTSELECTCLIPRGN),
|
|
|
|
X(EMR_BITBLT),
|
|
|
|
X(EMR_STRETCHBLT),
|
|
|
|
X(EMR_MASKBLT),
|
|
|
|
X(EMR_PLGBLT),
|
|
|
|
X(EMR_SETDIBITSTODEVICE),
|
|
|
|
X(EMR_STRETCHDIBITS),
|
|
|
|
X(EMR_EXTCREATEFONTINDIRECTW),
|
|
|
|
X(EMR_EXTTEXTOUTA),
|
|
|
|
X(EMR_EXTTEXTOUTW),
|
|
|
|
X(EMR_POLYBEZIER16),
|
|
|
|
X(EMR_POLYGON16),
|
|
|
|
X(EMR_POLYLINE16),
|
|
|
|
X(EMR_POLYBEZIERTO16),
|
|
|
|
X(EMR_POLYLINETO16),
|
|
|
|
X(EMR_POLYPOLYLINE16),
|
|
|
|
X(EMR_POLYPOLYGON16),
|
|
|
|
X(EMR_POLYDRAW16),
|
|
|
|
X(EMR_CREATEMONOBRUSH),
|
|
|
|
X(EMR_CREATEDIBPATTERNBRUSHPT),
|
|
|
|
X(EMR_EXTCREATEPEN),
|
|
|
|
X(EMR_POLYTEXTOUTA),
|
|
|
|
X(EMR_POLYTEXTOUTW),
|
|
|
|
X(EMR_SETICMMODE),
|
|
|
|
X(EMR_CREATECOLORSPACE),
|
|
|
|
X(EMR_SETCOLORSPACE),
|
|
|
|
X(EMR_DELETECOLORSPACE),
|
|
|
|
X(EMR_GLSRECORD),
|
|
|
|
X(EMR_GLSBOUNDEDRECORD),
|
|
|
|
X(EMR_PIXELFORMAT),
|
|
|
|
X(EMR_DRAWESCAPE),
|
|
|
|
X(EMR_EXTESCAPE),
|
|
|
|
X(EMR_STARTDOC),
|
|
|
|
X(EMR_SMALLTEXTOUT),
|
|
|
|
X(EMR_FORCEUFIMAPPING),
|
|
|
|
X(EMR_NAMEDESCAPE),
|
|
|
|
X(EMR_COLORCORRECTPALETTE),
|
|
|
|
X(EMR_SETICMPROFILEA),
|
|
|
|
X(EMR_SETICMPROFILEW),
|
|
|
|
X(EMR_ALPHABLEND),
|
|
|
|
X(EMR_SETLAYOUT),
|
|
|
|
X(EMR_TRANSPARENTBLT),
|
|
|
|
X(EMR_RESERVED_117),
|
|
|
|
X(EMR_GRADIENTFILL),
|
|
|
|
X(EMR_SETLINKEDUFI),
|
|
|
|
X(EMR_SETTEXTJUSTIFICATION),
|
|
|
|
X(EMR_COLORMATCHTOTARGETW),
|
|
|
|
X(EMR_CREATECOLORSPACEW)
|
|
|
|
#undef X
|
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* get_emr_name
|
|
|
|
*/
|
|
|
|
static const char *get_emr_name(DWORD type)
|
|
|
|
{
|
2004-09-08 03:23:57 +02:00
|
|
|
unsigned int i;
|
2003-11-11 01:43:03 +01:00
|
|
|
for(i = 0; i < sizeof(emr_names) / sizeof(emr_names[0]); i++)
|
|
|
|
if(type == emr_names[i].type) return emr_names[i].name;
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("Unknown record type %d\n", type);
|
2003-11-11 01:43:03 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2001-07-25 00:15:47 +02:00
|
|
|
|
2004-09-13 21:37:03 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* is_dib_monochrome
|
|
|
|
*
|
|
|
|
* Returns whether a DIB can be converted to a monochrome DDB.
|
|
|
|
*
|
|
|
|
* A DIB can be converted if its color table contains only black and
|
|
|
|
* white. Black must be the first color in the color table.
|
|
|
|
*
|
|
|
|
* Note : If the first color in the color table is white followed by
|
|
|
|
* black, we can't convert it to a monochrome DDB with
|
|
|
|
* SetDIBits, because black and white would be inverted.
|
|
|
|
*/
|
2004-11-22 19:22:20 +01:00
|
|
|
static inline BOOL is_dib_monochrome( const BITMAPINFO* info )
|
2004-09-13 21:37:03 +02:00
|
|
|
{
|
|
|
|
if (info->bmiHeader.biBitCount != 1) return FALSE;
|
|
|
|
|
|
|
|
if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const RGBTRIPLE *rgb = ((const BITMAPCOREINFO *) info)->bmciColors;
|
2004-11-22 19:22:20 +01:00
|
|
|
|
2004-09-13 21:37:03 +02:00
|
|
|
/* Check if the first color is black */
|
|
|
|
if ((rgb->rgbtRed == 0) && (rgb->rgbtGreen == 0) && (rgb->rgbtBlue == 0))
|
|
|
|
{
|
|
|
|
rgb++;
|
|
|
|
/* Check if the second color is white */
|
|
|
|
return ((rgb->rgbtRed == 0xff) && (rgb->rgbtGreen == 0xff)
|
|
|
|
&& (rgb->rgbtBlue == 0xff));
|
|
|
|
}
|
|
|
|
else return FALSE;
|
|
|
|
}
|
|
|
|
else /* assume BITMAPINFOHEADER */
|
|
|
|
{
|
2005-01-03 15:50:12 +01:00
|
|
|
const RGBQUAD *rgb = info->bmiColors;
|
2004-09-13 21:37:03 +02:00
|
|
|
|
|
|
|
/* Check if the first color is black */
|
|
|
|
if ((rgb->rgbRed == 0) && (rgb->rgbGreen == 0) &&
|
|
|
|
(rgb->rgbBlue == 0) && (rgb->rgbReserved == 0))
|
|
|
|
{
|
|
|
|
rgb++;
|
|
|
|
|
|
|
|
/* Check if the second color is white */
|
|
|
|
return ((rgb->rgbRed == 0xff) && (rgb->rgbGreen == 0xff)
|
|
|
|
&& (rgb->rgbBlue == 0xff) && (rgb->rgbReserved == 0));
|
|
|
|
}
|
|
|
|
else return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-02 11:23:51 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* EMF_Create_HENHMETAFILE
|
|
|
|
*/
|
2001-07-25 00:15:47 +02:00
|
|
|
HENHMETAFILE EMF_Create_HENHMETAFILE(ENHMETAHEADER *emh, BOOL on_disk )
|
1999-05-02 11:23:51 +02:00
|
|
|
{
|
2009-01-28 18:43:06 +01:00
|
|
|
HENHMETAFILE hmf;
|
2007-05-28 09:21:58 +02:00
|
|
|
ENHMETAFILEOBJ *metaObj;
|
|
|
|
|
2009-04-07 20:44:12 +02:00
|
|
|
if (emh->iType != EMR_HEADER)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_DATA);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (emh->dSignature != ENHMETA_SIGNATURE ||
|
2007-05-28 09:21:58 +02:00
|
|
|
(emh->nBytes & 3)) /* refuse to load unaligned EMF as Windows does */
|
|
|
|
{
|
|
|
|
WARN("Invalid emf header type 0x%08x sig 0x%08x.\n",
|
|
|
|
emh->iType, emh->dSignature);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-28 18:43:06 +01:00
|
|
|
if (!(metaObj = HeapAlloc( GetProcessHeap(), 0, sizeof(*metaObj) ))) return 0;
|
|
|
|
|
|
|
|
metaObj->emh = emh;
|
|
|
|
metaObj->on_disk = on_disk;
|
|
|
|
|
2012-10-17 13:48:45 +02:00
|
|
|
if (!(hmf = alloc_gdi_handle( metaObj, OBJ_ENHMETAFILE, NULL )))
|
2009-01-28 18:43:06 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, metaObj );
|
1999-05-02 11:23:51 +02:00
|
|
|
return hmf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* EMF_Delete_HENHMETAFILE
|
|
|
|
*/
|
|
|
|
static BOOL EMF_Delete_HENHMETAFILE( HENHMETAFILE hmf )
|
|
|
|
{
|
2009-01-28 18:45:21 +01:00
|
|
|
ENHMETAFILEOBJ *metaObj = free_gdi_handle( hmf );
|
2008-10-23 23:51:07 +02:00
|
|
|
|
1999-05-02 11:23:51 +02:00
|
|
|
if(!metaObj) return FALSE;
|
2001-07-25 00:15:47 +02:00
|
|
|
|
|
|
|
if(metaObj->on_disk)
|
1999-05-02 11:23:51 +02:00
|
|
|
UnmapViewOfFile( metaObj->emh );
|
2001-07-25 00:15:47 +02:00
|
|
|
else
|
2000-02-16 23:47:24 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, metaObj->emh );
|
2009-01-28 18:45:21 +01:00
|
|
|
return HeapFree( GetProcessHeap(), 0, metaObj );
|
1999-05-02 11:23:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* EMF_GetEnhMetaHeader
|
|
|
|
*
|
|
|
|
* Returns ptr to ENHMETAHEADER associated with HENHMETAFILE
|
|
|
|
*/
|
|
|
|
static ENHMETAHEADER *EMF_GetEnhMetaHeader( HENHMETAFILE hmf )
|
|
|
|
{
|
2001-08-24 01:37:00 +02:00
|
|
|
ENHMETAHEADER *ret = NULL;
|
2009-01-28 16:20:56 +01:00
|
|
|
ENHMETAFILEOBJ *metaObj = GDI_GetObjPtr( hmf, OBJ_ENHMETAFILE );
|
2002-11-22 23:16:53 +01:00
|
|
|
TRACE("hmf %p -> enhmetaObj %p\n", hmf, metaObj);
|
2001-08-24 01:37:00 +02:00
|
|
|
if (metaObj)
|
|
|
|
{
|
|
|
|
ret = metaObj->emh;
|
|
|
|
GDI_ReleaseObj( hmf );
|
|
|
|
}
|
|
|
|
return ret;
|
1999-05-02 11:23:51 +02:00
|
|
|
}
|
1999-04-19 16:56:29 +02:00
|
|
|
|
1998-03-15 21:29:56 +01:00
|
|
|
/*****************************************************************************
|
1999-05-02 11:23:51 +02:00
|
|
|
* EMF_GetEnhMetaFile
|
|
|
|
*
|
|
|
|
*/
|
2001-01-06 02:29:18 +01:00
|
|
|
static HENHMETAFILE EMF_GetEnhMetaFile( HANDLE hFile )
|
1999-05-02 11:23:51 +02:00
|
|
|
{
|
|
|
|
ENHMETAHEADER *emh;
|
|
|
|
HANDLE hMapping;
|
2007-05-28 09:21:58 +02:00
|
|
|
HENHMETAFILE hemf;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-05-02 11:23:51 +02:00
|
|
|
hMapping = CreateFileMappingA( hFile, NULL, PAGE_READONLY, 0, 0, NULL );
|
|
|
|
emh = MapViewOfFile( hMapping, FILE_MAP_READ, 0, 0, 0 );
|
2001-07-25 00:15:47 +02:00
|
|
|
CloseHandle( hMapping );
|
|
|
|
|
|
|
|
if (!emh) return 0;
|
1999-05-02 11:23:51 +02:00
|
|
|
|
2007-05-28 09:21:58 +02:00
|
|
|
hemf = EMF_Create_HENHMETAFILE( emh, TRUE );
|
|
|
|
if (!hemf)
|
|
|
|
UnmapViewOfFile( emh );
|
|
|
|
return hemf;
|
1999-05-02 11:23:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileA (GDI32.@)
|
1998-03-15 21:29:56 +01:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
HENHMETAFILE WINAPI GetEnhMetaFileA(
|
2000-12-02 00:58:28 +01:00
|
|
|
LPCSTR lpszMetaFile /* [in] filename of enhanced metafile */
|
1998-03-15 21:29:56 +01:00
|
|
|
)
|
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
HENHMETAFILE hmf;
|
2001-01-06 02:29:18 +01:00
|
|
|
HANDLE hFile;
|
1999-05-02 11:23:51 +02:00
|
|
|
|
1999-06-12 08:49:52 +02:00
|
|
|
hFile = CreateFileA(lpszMetaFile, GENERIC_READ, FILE_SHARE_READ, 0,
|
|
|
|
OPEN_EXISTING, 0, 0);
|
1999-05-02 11:23:51 +02:00
|
|
|
if (hFile == INVALID_HANDLE_VALUE) {
|
1999-05-23 12:25:25 +02:00
|
|
|
WARN("could not open %s\n", lpszMetaFile);
|
1999-05-02 11:23:51 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
hmf = EMF_GetEnhMetaFile( hFile );
|
2001-07-25 00:15:47 +02:00
|
|
|
CloseHandle( hFile );
|
1999-05-02 11:23:51 +02:00
|
|
|
return hmf;
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
1998-12-10 16:49:22 +01:00
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileW (GDI32.@)
|
1998-12-10 16:49:22 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
HENHMETAFILE WINAPI GetEnhMetaFileW(
|
2002-06-01 01:06:46 +02:00
|
|
|
LPCWSTR lpszMetaFile) /* [in] filename of enhanced metafile */
|
1998-12-10 16:49:22 +01:00
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
HENHMETAFILE hmf;
|
2001-01-06 02:29:18 +01:00
|
|
|
HANDLE hFile;
|
1999-05-02 11:23:51 +02:00
|
|
|
|
1999-06-12 08:49:52 +02:00
|
|
|
hFile = CreateFileW(lpszMetaFile, GENERIC_READ, FILE_SHARE_READ, 0,
|
|
|
|
OPEN_EXISTING, 0, 0);
|
1999-05-02 11:23:51 +02:00
|
|
|
if (hFile == INVALID_HANDLE_VALUE) {
|
1999-05-23 12:25:25 +02:00
|
|
|
WARN("could not open %s\n", debugstr_w(lpszMetaFile));
|
1999-05-02 11:23:51 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
hmf = EMF_GetEnhMetaFile( hFile );
|
2001-07-25 00:15:47 +02:00
|
|
|
CloseHandle( hFile );
|
1999-05-02 11:23:51 +02:00
|
|
|
return hmf;
|
1998-12-10 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
1998-03-15 21:29:56 +01:00
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileHeader (GDI32.@)
|
1998-03-15 21:29:56 +01:00
|
|
|
*
|
2005-11-05 11:45:02 +01:00
|
|
|
* Retrieves the record containing the header for the specified
|
|
|
|
* enhanced-format metafile.
|
|
|
|
*
|
|
|
|
* RETURNS
|
2000-04-13 17:57:34 +02:00
|
|
|
* If buf is NULL, returns the size of buffer required.
|
2002-06-01 01:06:46 +02:00
|
|
|
* Otherwise, copy up to bufsize bytes of enhanced metafile header into
|
2000-04-13 17:57:34 +02:00
|
|
|
* buf.
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
UINT WINAPI GetEnhMetaFileHeader(
|
2000-12-02 00:58:28 +01:00
|
|
|
HENHMETAFILE hmf, /* [in] enhanced metafile */
|
|
|
|
UINT bufsize, /* [in] size of buffer */
|
2002-06-01 01:06:46 +02:00
|
|
|
LPENHMETAHEADER buf /* [out] buffer */
|
1998-03-15 21:29:56 +01:00
|
|
|
)
|
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
LPENHMETAHEADER emh;
|
2000-04-13 17:57:34 +02:00
|
|
|
UINT size;
|
1999-05-02 11:23:51 +02:00
|
|
|
|
|
|
|
emh = EMF_GetEnhMetaHeader(hmf);
|
1999-06-12 08:49:52 +02:00
|
|
|
if(!emh) return FALSE;
|
2000-04-13 17:57:34 +02:00
|
|
|
size = emh->nSize;
|
2001-08-24 01:37:00 +02:00
|
|
|
if (!buf) return size;
|
2000-04-13 17:57:34 +02:00
|
|
|
size = min(size, bufsize);
|
|
|
|
memmove(buf, emh, size);
|
|
|
|
return size;
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileDescriptionA (GDI32.@)
|
2005-11-05 11:45:02 +01:00
|
|
|
*
|
|
|
|
* See GetEnhMetaFileDescriptionW.
|
1998-04-13 14:21:30 +02:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
UINT WINAPI GetEnhMetaFileDescriptionA(
|
2000-12-02 00:58:28 +01:00
|
|
|
HENHMETAFILE hmf, /* [in] enhanced metafile */
|
2002-06-01 01:06:46 +02:00
|
|
|
UINT size, /* [in] size of buf */
|
2000-12-02 00:58:28 +01:00
|
|
|
LPSTR buf /* [out] buffer to receive description */
|
1998-04-13 14:21:30 +02:00
|
|
|
)
|
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
LPENHMETAHEADER emh = EMF_GetEnhMetaHeader(hmf);
|
2000-11-28 23:40:56 +01:00
|
|
|
DWORD len;
|
|
|
|
WCHAR *descrW;
|
|
|
|
|
1999-06-12 08:49:52 +02:00
|
|
|
if(!emh) return FALSE;
|
2001-08-24 01:37:00 +02:00
|
|
|
if(emh->nDescription == 0 || emh->offDescription == 0) return 0;
|
2000-11-28 23:40:56 +01:00
|
|
|
descrW = (WCHAR *) ((char *) emh + emh->offDescription);
|
|
|
|
len = WideCharToMultiByte( CP_ACP, 0, descrW, emh->nDescription, NULL, 0, NULL, NULL );
|
|
|
|
|
2001-08-24 01:37:00 +02:00
|
|
|
if (!buf || !size ) return len;
|
2000-11-28 23:40:56 +01:00
|
|
|
|
|
|
|
len = min( size, len );
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, descrW, emh->nDescription, buf, len, NULL, NULL );
|
|
|
|
return len;
|
1998-04-13 14:21:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileDescriptionW (GDI32.@)
|
1998-03-15 21:29:56 +01:00
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* Copies the description string of an enhanced metafile into a buffer
|
1998-03-15 21:29:56 +01:00
|
|
|
* _buf_.
|
|
|
|
*
|
2005-11-05 11:45:02 +01:00
|
|
|
* RETURNS
|
1998-04-13 14:21:30 +02:00
|
|
|
* If _buf_ is NULL, returns size of _buf_ required. Otherwise, returns
|
|
|
|
* number of characters copied.
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
UINT WINAPI GetEnhMetaFileDescriptionW(
|
2000-12-02 00:58:28 +01:00
|
|
|
HENHMETAFILE hmf, /* [in] enhanced metafile */
|
2002-06-01 01:06:46 +02:00
|
|
|
UINT size, /* [in] size of buf */
|
2000-12-02 00:58:28 +01:00
|
|
|
LPWSTR buf /* [out] buffer to receive description */
|
1998-03-15 21:29:56 +01:00
|
|
|
)
|
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
LPENHMETAHEADER emh = EMF_GetEnhMetaHeader(hmf);
|
1999-06-12 08:49:52 +02:00
|
|
|
|
|
|
|
if(!emh) return FALSE;
|
2001-08-24 01:37:00 +02:00
|
|
|
if(emh->nDescription == 0 || emh->offDescription == 0) return 0;
|
|
|
|
if (!buf || !size ) return emh->nDescription;
|
|
|
|
|
|
|
|
memmove(buf, (char *) emh + emh->offDescription, min(size,emh->nDescription)*sizeof(WCHAR));
|
2000-03-25 22:44:35 +01:00
|
|
|
return min(size, emh->nDescription);
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
/****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* SetEnhMetaFileBits (GDI32.@)
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
*
|
|
|
|
* Creates an enhanced metafile by copying _bufsize_ bytes from _buf_.
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
HENHMETAFILE WINAPI SetEnhMetaFileBits(UINT bufsize, const BYTE *buf)
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
{
|
2000-02-16 23:47:24 +01:00
|
|
|
ENHMETAHEADER *emh = HeapAlloc( GetProcessHeap(), 0, bufsize );
|
2009-12-14 15:12:58 +01:00
|
|
|
HENHMETAFILE hmf;
|
1999-05-02 11:23:51 +02:00
|
|
|
memmove(emh, buf, bufsize);
|
2009-12-14 15:12:58 +01:00
|
|
|
hmf = EMF_Create_HENHMETAFILE( emh, FALSE );
|
|
|
|
if (!hmf)
|
|
|
|
HeapFree( GetProcessHeap(), 0, emh );
|
|
|
|
return hmf;
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileBits (GDI32.@)
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
*
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
UINT WINAPI GetEnhMetaFileBits(
|
2002-06-01 01:06:46 +02:00
|
|
|
HENHMETAFILE hmf,
|
|
|
|
UINT bufsize,
|
|
|
|
LPBYTE buf
|
|
|
|
)
|
1999-12-04 04:56:53 +01:00
|
|
|
{
|
2000-04-13 17:57:34 +02:00
|
|
|
LPENHMETAHEADER emh = EMF_GetEnhMetaHeader( hmf );
|
|
|
|
UINT size;
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2000-04-13 17:57:34 +02:00
|
|
|
if(!emh) return 0;
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2000-04-13 17:57:34 +02:00
|
|
|
size = emh->nBytes;
|
2001-08-24 01:37:00 +02:00
|
|
|
if( buf == NULL ) return size;
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2000-04-13 17:57:34 +02:00
|
|
|
size = min( size, bufsize );
|
|
|
|
memmove(buf, emh, size);
|
|
|
|
return size;
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
}
|
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
typedef struct EMF_dc_state
|
2003-02-15 00:30:27 +01:00
|
|
|
{
|
|
|
|
INT mode;
|
|
|
|
XFORM world_transform;
|
|
|
|
INT wndOrgX;
|
|
|
|
INT wndOrgY;
|
|
|
|
INT wndExtX;
|
|
|
|
INT wndExtY;
|
|
|
|
INT vportOrgX;
|
|
|
|
INT vportOrgY;
|
|
|
|
INT vportExtX;
|
|
|
|
INT vportExtY;
|
2008-04-28 09:02:31 +02:00
|
|
|
struct EMF_dc_state *next;
|
|
|
|
} EMF_dc_state;
|
|
|
|
|
|
|
|
typedef struct enum_emh_data
|
|
|
|
{
|
|
|
|
XFORM init_transform;
|
|
|
|
EMF_dc_state state;
|
|
|
|
INT save_level;
|
|
|
|
EMF_dc_state *saved_state;
|
2003-02-15 00:30:27 +01:00
|
|
|
} enum_emh_data;
|
|
|
|
|
|
|
|
#define ENUM_GET_PRIVATE_DATA(ht) \
|
|
|
|
((enum_emh_data*)(((unsigned char*)(ht))-sizeof (enum_emh_data)))
|
|
|
|
|
|
|
|
#define WIDTH(rect) ( (rect).right - (rect).left )
|
|
|
|
#define HEIGHT(rect) ( (rect).bottom - (rect).top )
|
|
|
|
|
|
|
|
#define IS_WIN9X() (GetVersion()&0x80000000)
|
|
|
|
|
2007-04-29 14:17:26 +02:00
|
|
|
static void EMF_Update_MF_Xform(HDC hdc, const enum_emh_data *info)
|
2003-02-15 00:30:27 +01:00
|
|
|
{
|
|
|
|
XFORM mapping_mode_trans, final_trans;
|
2008-05-22 17:43:01 +02:00
|
|
|
double scaleX, scaleY;
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2008-05-22 17:43:01 +02:00
|
|
|
scaleX = (double)info->state.vportExtX / (double)info->state.wndExtX;
|
|
|
|
scaleY = (double)info->state.vportExtY / (double)info->state.wndExtY;
|
2003-02-15 00:30:27 +01:00
|
|
|
mapping_mode_trans.eM11 = scaleX;
|
|
|
|
mapping_mode_trans.eM12 = 0.0;
|
|
|
|
mapping_mode_trans.eM21 = 0.0;
|
|
|
|
mapping_mode_trans.eM22 = scaleY;
|
2008-05-22 17:43:01 +02:00
|
|
|
mapping_mode_trans.eDx = (double)info->state.vportOrgX - scaleX * (double)info->state.wndOrgX;
|
|
|
|
mapping_mode_trans.eDy = (double)info->state.vportOrgY - scaleY * (double)info->state.wndOrgY;
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
CombineTransform(&final_trans, &info->state.world_transform, &mapping_mode_trans);
|
2003-02-15 00:30:27 +01:00
|
|
|
CombineTransform(&final_trans, &final_trans, &info->init_transform);
|
|
|
|
|
|
|
|
if (!SetWorldTransform(hdc, &final_trans))
|
|
|
|
{
|
|
|
|
ERR("World transform failed!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
static void EMF_RestoreDC( enum_emh_data *info, INT level )
|
|
|
|
{
|
|
|
|
if (abs(level) > info->save_level || level == 0) return;
|
|
|
|
|
|
|
|
if (level < 0) level = info->save_level + level + 1;
|
|
|
|
|
|
|
|
while (info->save_level >= level)
|
|
|
|
{
|
|
|
|
EMF_dc_state *state = info->saved_state;
|
|
|
|
info->saved_state = state->next;
|
|
|
|
state->next = NULL;
|
|
|
|
if (--info->save_level < level)
|
|
|
|
info->state = *state;
|
|
|
|
HeapFree( GetProcessHeap(), 0, state );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void EMF_SaveDC( enum_emh_data *info )
|
|
|
|
{
|
|
|
|
EMF_dc_state *state = HeapAlloc( GetProcessHeap(), 0, sizeof(*state));
|
|
|
|
if (state)
|
|
|
|
{
|
|
|
|
*state = info->state;
|
|
|
|
state->next = info->saved_state;
|
|
|
|
info->saved_state = state;
|
|
|
|
info->save_level++;
|
|
|
|
TRACE("save_level %d\n", info->save_level);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-05 14:49:14 +02:00
|
|
|
static void EMF_SetMapMode(HDC hdc, enum_emh_data *info)
|
2003-02-15 00:30:27 +01:00
|
|
|
{
|
|
|
|
INT horzSize = GetDeviceCaps( hdc, HORZSIZE );
|
|
|
|
INT vertSize = GetDeviceCaps( hdc, VERTSIZE );
|
|
|
|
INT horzRes = GetDeviceCaps( hdc, HORZRES );
|
|
|
|
INT vertRes = GetDeviceCaps( hdc, VERTRES );
|
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
TRACE("%d\n", info->state.mode);
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
switch(info->state.mode)
|
2003-02-15 00:30:27 +01:00
|
|
|
{
|
|
|
|
case MM_TEXT:
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.wndExtX = 1;
|
|
|
|
info->state.wndExtY = 1;
|
|
|
|
info->state.vportExtX = 1;
|
|
|
|
info->state.vportExtY = 1;
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
case MM_LOMETRIC:
|
|
|
|
case MM_ISOTROPIC:
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.wndExtX = horzSize * 10;
|
|
|
|
info->state.wndExtY = vertSize * 10;
|
|
|
|
info->state.vportExtX = horzRes;
|
|
|
|
info->state.vportExtY = -vertRes;
|
2003-05-11 04:50:21 +02:00
|
|
|
break;
|
|
|
|
case MM_HIMETRIC:
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.wndExtX = horzSize * 100;
|
|
|
|
info->state.wndExtY = vertSize * 100;
|
|
|
|
info->state.vportExtX = horzRes;
|
|
|
|
info->state.vportExtY = -vertRes;
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
case MM_LOENGLISH:
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.wndExtX = MulDiv(1000, horzSize, 254);
|
|
|
|
info->state.wndExtY = MulDiv(1000, vertSize, 254);
|
|
|
|
info->state.vportExtX = horzRes;
|
|
|
|
info->state.vportExtY = -vertRes;
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
case MM_HIENGLISH:
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.wndExtX = MulDiv(10000, horzSize, 254);
|
|
|
|
info->state.wndExtY = MulDiv(10000, vertSize, 254);
|
|
|
|
info->state.vportExtX = horzRes;
|
|
|
|
info->state.vportExtY = -vertRes;
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
case MM_TWIPS:
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.wndExtX = MulDiv(14400, horzSize, 254);
|
|
|
|
info->state.wndExtY = MulDiv(14400, vertSize, 254);
|
|
|
|
info->state.vportExtX = horzRes;
|
|
|
|
info->state.vportExtY = -vertRes;
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
case MM_ANISOTROPIC:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-31 12:56:57 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* EMF_FixIsotropic
|
|
|
|
*
|
|
|
|
* Fix viewport extensions for isotropic mode.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void EMF_FixIsotropic(HDC hdc, enum_emh_data *info)
|
|
|
|
{
|
2008-04-28 09:02:31 +02:00
|
|
|
double xdim = fabs((double)info->state.vportExtX * GetDeviceCaps( hdc, HORZSIZE ) /
|
|
|
|
(GetDeviceCaps( hdc, HORZRES ) * info->state.wndExtX));
|
|
|
|
double ydim = fabs((double)info->state.vportExtY * GetDeviceCaps( hdc, VERTSIZE ) /
|
|
|
|
(GetDeviceCaps( hdc, VERTRES ) * info->state.wndExtY));
|
2006-01-31 12:56:57 +01:00
|
|
|
|
|
|
|
if (xdim > ydim)
|
|
|
|
{
|
2008-04-28 09:02:31 +02:00
|
|
|
INT mincx = (info->state.vportExtX >= 0) ? 1 : -1;
|
|
|
|
info->state.vportExtX = floor(info->state.vportExtX * ydim / xdim + 0.5);
|
|
|
|
if (!info->state.vportExtX) info->state.vportExtX = mincx;
|
2006-01-31 12:56:57 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-04-28 09:02:31 +02:00
|
|
|
INT mincy = (info->state.vportExtY >= 0) ? 1 : -1;
|
|
|
|
info->state.vportExtY = floor(info->state.vportExtY * xdim / ydim + 0.5);
|
|
|
|
if (!info->state.vportExtY) info->state.vportExtY = mincy;
|
2006-01-31 12:56:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* emr_produces_output
|
|
|
|
*
|
|
|
|
* Returns TRUE if the record type writes something to the dc. Used by
|
|
|
|
* PlayEnhMetaFileRecord to determine whether it needs to update the
|
|
|
|
* dc's xform when in win9x mode.
|
|
|
|
*
|
|
|
|
* FIXME: need to test which records should be here.
|
|
|
|
*/
|
|
|
|
static BOOL emr_produces_output(int type)
|
|
|
|
{
|
|
|
|
switch(type) {
|
|
|
|
case EMR_POLYBEZIER:
|
|
|
|
case EMR_POLYGON:
|
|
|
|
case EMR_POLYLINE:
|
|
|
|
case EMR_POLYBEZIERTO:
|
|
|
|
case EMR_POLYLINETO:
|
|
|
|
case EMR_POLYPOLYLINE:
|
|
|
|
case EMR_POLYPOLYGON:
|
|
|
|
case EMR_SETPIXELV:
|
|
|
|
case EMR_MOVETOEX:
|
|
|
|
case EMR_EXCLUDECLIPRECT:
|
|
|
|
case EMR_INTERSECTCLIPRECT:
|
|
|
|
case EMR_SELECTOBJECT:
|
|
|
|
case EMR_ANGLEARC:
|
|
|
|
case EMR_ELLIPSE:
|
|
|
|
case EMR_RECTANGLE:
|
|
|
|
case EMR_ROUNDRECT:
|
|
|
|
case EMR_ARC:
|
|
|
|
case EMR_CHORD:
|
|
|
|
case EMR_PIE:
|
|
|
|
case EMR_EXTFLOODFILL:
|
|
|
|
case EMR_LINETO:
|
|
|
|
case EMR_ARCTO:
|
|
|
|
case EMR_POLYDRAW:
|
2008-10-23 14:32:43 +02:00
|
|
|
case EMR_GDICOMMENT:
|
2003-02-15 00:30:27 +01:00
|
|
|
case EMR_FILLRGN:
|
|
|
|
case EMR_FRAMERGN:
|
|
|
|
case EMR_INVERTRGN:
|
|
|
|
case EMR_PAINTRGN:
|
|
|
|
case EMR_BITBLT:
|
|
|
|
case EMR_STRETCHBLT:
|
|
|
|
case EMR_MASKBLT:
|
|
|
|
case EMR_PLGBLT:
|
|
|
|
case EMR_SETDIBITSTODEVICE:
|
|
|
|
case EMR_STRETCHDIBITS:
|
|
|
|
case EMR_EXTTEXTOUTA:
|
|
|
|
case EMR_EXTTEXTOUTW:
|
|
|
|
case EMR_POLYBEZIER16:
|
|
|
|
case EMR_POLYGON16:
|
|
|
|
case EMR_POLYLINE16:
|
|
|
|
case EMR_POLYBEZIERTO16:
|
|
|
|
case EMR_POLYLINETO16:
|
|
|
|
case EMR_POLYPOLYLINE16:
|
|
|
|
case EMR_POLYPOLYGON16:
|
|
|
|
case EMR_POLYDRAW16:
|
|
|
|
case EMR_POLYTEXTOUTA:
|
|
|
|
case EMR_POLYTEXTOUTW:
|
|
|
|
case EMR_SMALLTEXTOUT:
|
2005-10-31 22:04:18 +01:00
|
|
|
case EMR_ALPHABLEND:
|
2003-02-15 00:30:27 +01:00
|
|
|
case EMR_TRANSPARENTBLT:
|
|
|
|
return TRUE;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-03-15 21:29:56 +01:00
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* PlayEnhMetaFileRecord (GDI32.@)
|
1998-03-15 21:29:56 +01:00
|
|
|
*
|
|
|
|
* Render a single enhanced metafile record in the device context hdc.
|
|
|
|
*
|
|
|
|
* RETURNS
|
1999-12-25 23:58:59 +01:00
|
|
|
* TRUE (non zero) on success, FALSE on error.
|
1998-03-15 21:29:56 +01:00
|
|
|
* BUGS
|
1998-03-29 21:44:57 +02:00
|
|
|
* Many unimplemented records.
|
1999-12-25 23:58:59 +01:00
|
|
|
* No error handling on record play failures (ie checking return codes)
|
2003-02-15 00:30:27 +01:00
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* WinNT actually updates the current world transform in this function
|
|
|
|
* whereas Win9x does not.
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
BOOL WINAPI PlayEnhMetaFileRecord(
|
2000-12-02 00:58:28 +01:00
|
|
|
HDC hdc, /* [in] device context in which to render EMF record */
|
|
|
|
LPHANDLETABLE handletable, /* [in] array of handles to be used in rendering record */
|
|
|
|
const ENHMETARECORD *mr, /* [in] EMF record to render */
|
|
|
|
UINT handles /* [in] size of handle array */
|
2002-06-01 01:06:46 +02:00
|
|
|
)
|
1998-03-15 21:29:56 +01:00
|
|
|
{
|
|
|
|
int type;
|
2003-02-15 00:30:27 +01:00
|
|
|
RECT tmprc;
|
|
|
|
enum_emh_data *info = ENUM_GET_PRIVATE_DATA(handletable);
|
2002-08-17 03:37:50 +02:00
|
|
|
|
2002-11-22 23:16:53 +01:00
|
|
|
TRACE("hdc = %p, handletable = %p, record = %p, numHandles = %d\n",
|
|
|
|
hdc, handletable, mr, handles);
|
1998-03-29 21:44:57 +02:00
|
|
|
if (!mr) return FALSE;
|
1998-03-15 21:29:56 +01:00
|
|
|
|
1998-03-29 21:44:57 +02:00
|
|
|
type = mr->iType;
|
1998-03-15 21:29:56 +01:00
|
|
|
|
2003-11-11 01:43:03 +01:00
|
|
|
TRACE("record %s\n", get_emr_name(type));
|
2002-06-01 01:06:46 +02:00
|
|
|
switch(type)
|
1998-03-15 21:29:56 +01:00
|
|
|
{
|
|
|
|
case EMR_HEADER:
|
2000-04-18 13:52:58 +02:00
|
|
|
break;
|
1998-03-15 21:29:56 +01:00
|
|
|
case EMR_EOF:
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
case EMR_GDICOMMENT:
|
1999-12-12 00:18:10 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRGDICOMMENT *lpGdiComment = (const EMRGDICOMMENT *)mr;
|
1999-12-12 00:18:10 +01:00
|
|
|
/* In an enhanced metafile, there can be both public and private GDI comments */
|
|
|
|
GdiComment( hdc, lpGdiComment->cbData, lpGdiComment->Data );
|
|
|
|
break;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
1998-03-29 21:44:57 +02:00
|
|
|
case EMR_SETMAPMODE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETMAPMODE *pSetMapMode = (const EMRSETMAPMODE *)mr;
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
if (info->state.mode == pSetMapMode->iMode &&
|
|
|
|
(info->state.mode == MM_ISOTROPIC || info->state.mode == MM_ANISOTROPIC))
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.mode = pSetMapMode->iMode;
|
2003-02-15 00:30:27 +01:00
|
|
|
EMF_SetMapMode(hdc, info);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETBKMODE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETBKMODE *pSetBkMode = (const EMRSETBKMODE *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
SetBkMode(hdc, pSetBkMode->iMode);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETBKCOLOR:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETBKCOLOR *pSetBkColor = (const EMRSETBKCOLOR *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
SetBkColor(hdc, pSetBkColor->crColor);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETPOLYFILLMODE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETPOLYFILLMODE *pSetPolyFillMode = (const EMRSETPOLYFILLMODE *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
SetPolyFillMode(hdc, pSetPolyFillMode->iMode);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETROP2:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETROP2 *pSetROP2 = (const EMRSETROP2 *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
SetROP2(hdc, pSetROP2->iMode);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETSTRETCHBLTMODE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETSTRETCHBLTMODE *pSetStretchBltMode = (const EMRSETSTRETCHBLTMODE *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
SetStretchBltMode(hdc, pSetStretchBltMode->iMode);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETTEXTALIGN:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETTEXTALIGN *pSetTextAlign = (const EMRSETTEXTALIGN *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
SetTextAlign(hdc, pSetTextAlign->iMode);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETTEXTCOLOR:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETTEXTCOLOR *pSetTextColor = (const EMRSETTEXTCOLOR *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
SetTextColor(hdc, pSetTextColor->crColor);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SAVEDC:
|
|
|
|
{
|
2008-04-28 09:02:31 +02:00
|
|
|
if (SaveDC( hdc ))
|
|
|
|
EMF_SaveDC( info );
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_RESTOREDC:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRRESTOREDC *pRestoreDC = (const EMRRESTOREDC *)mr;
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("EMR_RESTORE: %d\n", pRestoreDC->iRelative);
|
2008-04-28 09:02:31 +02:00
|
|
|
if (RestoreDC( hdc, pRestoreDC->iRelative ))
|
|
|
|
EMF_RestoreDC( info, pRestoreDC->iRelative );
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_INTERSECTCLIPRECT:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRINTERSECTCLIPRECT *pClipRect = (const EMRINTERSECTCLIPRECT *)mr;
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("EMR_INTERSECTCLIPRECT: rect %d,%d - %d, %d\n",
|
2003-11-11 01:43:03 +01:00
|
|
|
pClipRect->rclClip.left, pClipRect->rclClip.top,
|
|
|
|
pClipRect->rclClip.right, pClipRect->rclClip.bottom);
|
|
|
|
IntersectClipRect(hdc, pClipRect->rclClip.left, pClipRect->rclClip.top,
|
|
|
|
pClipRect->rclClip.right, pClipRect->rclClip.bottom);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SELECTOBJECT:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSELECTOBJECT *pSelectObject = (const EMRSELECTOBJECT *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
if( pSelectObject->ihObject & 0x80000000 ) {
|
|
|
|
/* High order bit is set - it's a stock object
|
|
|
|
* Strip the high bit to get the index.
|
|
|
|
* See MSDN article Q142319
|
|
|
|
*/
|
|
|
|
SelectObject( hdc, GetStockObject( pSelectObject->ihObject &
|
|
|
|
0x7fffffff ) );
|
|
|
|
} else {
|
|
|
|
/* High order bit wasn't set - not a stock object
|
|
|
|
*/
|
|
|
|
SelectObject( hdc,
|
|
|
|
(handletable->objectHandle)[pSelectObject->ihObject] );
|
|
|
|
}
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_DELETEOBJECT:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRDELETEOBJECT *pDeleteObject = (const EMRDELETEOBJECT *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
DeleteObject( (handletable->objectHandle)[pDeleteObject->ihObject]);
|
|
|
|
(handletable->objectHandle)[pDeleteObject->ihObject] = 0;
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETWINDOWORGEX:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETWINDOWORGEX *pSetWindowOrgEx = (const EMRSETWINDOWORGEX *)mr;
|
2002-06-25 01:09:19 +02:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.wndOrgX = pSetWindowOrgEx->ptlOrigin.x;
|
|
|
|
info->state.wndOrgY = pSetWindowOrgEx->ptlOrigin.y;
|
2002-06-25 01:09:19 +02:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
TRACE("SetWindowOrgEx: %d,%d\n", info->state.wndOrgX, info->state.wndOrgY);
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
1998-03-29 21:44:57 +02:00
|
|
|
}
|
|
|
|
case EMR_SETWINDOWEXTEX:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETWINDOWEXTEX *pSetWindowExtEx = (const EMRSETWINDOWEXTEX *)mr;
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
if (info->state.mode != MM_ISOTROPIC && info->state.mode != MM_ANISOTROPIC)
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.wndExtX = pSetWindowExtEx->szlExtent.cx;
|
|
|
|
info->state.wndExtY = pSetWindowExtEx->szlExtent.cy;
|
|
|
|
if (info->state.mode == MM_ISOTROPIC)
|
2006-01-31 12:56:57 +01:00
|
|
|
EMF_FixIsotropic(hdc, info);
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
TRACE("SetWindowExtEx: %d,%d\n",info->state.wndExtX, info->state.wndExtY);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETVIEWPORTORGEX:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETVIEWPORTORGEX *pSetViewportOrgEx = (const EMRSETVIEWPORTORGEX *)mr;
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.vportOrgX = pSetViewportOrgEx->ptlOrigin.x;
|
|
|
|
info->state.vportOrgY = pSetViewportOrgEx->ptlOrigin.y;
|
|
|
|
TRACE("SetViewportOrgEx: %d,%d\n", info->state.vportOrgX, info->state.vportOrgY);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETVIEWPORTEXTEX:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETVIEWPORTEXTEX *pSetViewportExtEx = (const EMRSETVIEWPORTEXTEX *)mr;
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
if (info->state.mode != MM_ISOTROPIC && info->state.mode != MM_ANISOTROPIC)
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.vportExtX = pSetViewportExtEx->szlExtent.cx;
|
|
|
|
info->state.vportExtY = pSetViewportExtEx->szlExtent.cy;
|
|
|
|
if (info->state.mode == MM_ISOTROPIC)
|
2006-01-31 12:56:57 +01:00
|
|
|
EMF_FixIsotropic(hdc, info);
|
2008-04-28 09:02:31 +02:00
|
|
|
TRACE("SetViewportExtEx: %d,%d\n", info->state.vportExtX, info->state.vportExtY);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_CREATEPEN:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRCREATEPEN *pCreatePen = (const EMRCREATEPEN *)mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[pCreatePen->ihPen] =
|
2000-04-18 13:52:58 +02:00
|
|
|
CreatePenIndirect(&pCreatePen->lopn);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_EXTCREATEPEN:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMREXTCREATEPEN *pPen = (const EMREXTCREATEPEN *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
LOGBRUSH lb;
|
|
|
|
lb.lbStyle = pPen->elp.elpBrushStyle;
|
|
|
|
lb.lbColor = pPen->elp.elpColor;
|
|
|
|
lb.lbHatch = pPen->elp.elpHatch;
|
|
|
|
|
|
|
|
if(pPen->offBmi || pPen->offBits)
|
|
|
|
FIXME("EMR_EXTCREATEPEN: Need to copy brush bitmap\n");
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[pPen->ihPen] =
|
|
|
|
ExtCreatePen(pPen->elp.elpPenStyle, pPen->elp.elpWidth, &lb,
|
2011-10-28 15:25:48 +02:00
|
|
|
pPen->elp.elpNumEntries, pPen->elp.elpNumEntries ? pPen->elp.elpStyleEntry : NULL);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_CREATEBRUSHINDIRECT:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRCREATEBRUSHINDIRECT *pBrush = (const EMRCREATEBRUSHINDIRECT *)mr;
|
2005-09-12 13:19:56 +02:00
|
|
|
LOGBRUSH brush;
|
|
|
|
brush.lbStyle = pBrush->lb.lbStyle;
|
|
|
|
brush.lbColor = pBrush->lb.lbColor;
|
|
|
|
brush.lbHatch = pBrush->lb.lbHatch;
|
|
|
|
(handletable->objectHandle)[pBrush->ihBrush] = CreateBrushIndirect(&brush);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_EXTCREATEFONTINDIRECTW:
|
2000-04-18 13:52:58 +02:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMREXTCREATEFONTINDIRECTW *pFont = (const EMREXTCREATEFONTINDIRECTW *)mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[pFont->ihFont] =
|
2000-04-18 13:52:58 +02:00
|
|
|
CreateFontIndirectW(&pFont->elfw.elfLogFont);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
2000-04-18 13:52:58 +02:00
|
|
|
}
|
1998-03-29 21:44:57 +02:00
|
|
|
case EMR_MOVETOEX:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRMOVETOEX *pMoveToEx = (const EMRMOVETOEX *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
MoveToEx(hdc, pMoveToEx->ptl.x, pMoveToEx->ptl.y, NULL);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_LINETO:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRLINETO *pLineTo = (const EMRLINETO *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
LineTo(hdc, pLineTo->ptl.x, pLineTo->ptl.y);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_RECTANGLE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRRECTANGLE *pRect = (const EMRRECTANGLE *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
Rectangle(hdc, pRect->rclBox.left, pRect->rclBox.top,
|
|
|
|
pRect->rclBox.right, pRect->rclBox.bottom);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_ELLIPSE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRELLIPSE *pEllipse = (const EMRELLIPSE *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
Ellipse(hdc, pEllipse->rclBox.left, pEllipse->rclBox.top,
|
|
|
|
pEllipse->rclBox.right, pEllipse->rclBox.bottom);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_POLYGON16:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYGON16 *pPoly = (const EMRPOLYGON16 *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
/* Shouldn't use Polygon16 since pPoly->cpts is DWORD */
|
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPoly->cpts; i++)
|
2004-03-30 01:04:11 +02:00
|
|
|
{
|
|
|
|
pts[i].x = pPoly->apts[i].x;
|
|
|
|
pts[i].y = pPoly->apts[i].y;
|
|
|
|
}
|
2000-04-18 13:52:58 +02:00
|
|
|
Polygon(hdc, pts, pPoly->cpts);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
case EMR_POLYLINE16:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYLINE16 *pPoly = (const EMRPOLYLINE16 *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
/* Shouldn't use Polyline16 since pPoly->cpts is DWORD */
|
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPoly->cpts; i++)
|
2004-03-30 01:04:11 +02:00
|
|
|
{
|
|
|
|
pts[i].x = pPoly->apts[i].x;
|
|
|
|
pts[i].y = pPoly->apts[i].y;
|
|
|
|
}
|
2000-04-18 13:52:58 +02:00
|
|
|
Polyline(hdc, pts, pPoly->cpts);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
break;
|
|
|
|
}
|
2000-08-20 05:40:04 +02:00
|
|
|
case EMR_POLYLINETO16:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYLINETO16 *pPoly = (const EMRPOLYLINETO16 *)mr;
|
2000-08-20 05:40:04 +02:00
|
|
|
/* Shouldn't use PolylineTo16 since pPoly->cpts is DWORD */
|
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPoly->cpts; i++)
|
2004-03-30 01:04:11 +02:00
|
|
|
{
|
|
|
|
pts[i].x = pPoly->apts[i].x;
|
|
|
|
pts[i].y = pPoly->apts[i].y;
|
|
|
|
}
|
2000-08-20 05:40:04 +02:00
|
|
|
PolylineTo(hdc, pts, pPoly->cpts);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_POLYBEZIER16:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYBEZIER16 *pPoly = (const EMRPOLYBEZIER16 *)mr;
|
2000-08-20 05:40:04 +02:00
|
|
|
/* Shouldn't use PolyBezier16 since pPoly->cpts is DWORD */
|
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPoly->cpts; i++)
|
2004-03-30 01:04:11 +02:00
|
|
|
{
|
|
|
|
pts[i].x = pPoly->apts[i].x;
|
|
|
|
pts[i].y = pPoly->apts[i].y;
|
|
|
|
}
|
2000-08-20 05:40:04 +02:00
|
|
|
PolyBezier(hdc, pts, pPoly->cpts);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_POLYBEZIERTO16:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYBEZIERTO16 *pPoly = (const EMRPOLYBEZIERTO16 *)mr;
|
2000-08-20 05:40:04 +02:00
|
|
|
/* Shouldn't use PolyBezierTo16 since pPoly->cpts is DWORD */
|
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPoly->cpts; i++)
|
2004-03-30 01:04:11 +02:00
|
|
|
{
|
|
|
|
pts[i].x = pPoly->apts[i].x;
|
|
|
|
pts[i].y = pPoly->apts[i].y;
|
|
|
|
}
|
2000-08-20 05:40:04 +02:00
|
|
|
PolyBezierTo(hdc, pts, pPoly->cpts);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
|
|
|
break;
|
|
|
|
}
|
1998-03-29 21:44:57 +02:00
|
|
|
case EMR_POLYPOLYGON16:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYPOLYGON16 *pPolyPoly = (const EMRPOLYPOLYGON16 *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
/* NB POINTS array doesn't start at pPolyPoly->apts it's actually
|
|
|
|
pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2010-03-27 11:56:11 +01:00
|
|
|
const POINTS *pts = (const POINTS *)(pPolyPoly->aPolyCounts + pPolyPoly->nPolys);
|
2009-12-05 11:53:37 +01:00
|
|
|
POINT *pt = HeapAlloc( GetProcessHeap(), 0, pPolyPoly->cpts * sizeof(POINT) );
|
2000-04-18 13:52:58 +02:00
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPolyPoly->cpts; i++)
|
2004-08-31 02:02:02 +02:00
|
|
|
{
|
2009-12-05 11:53:37 +01:00
|
|
|
pt[i].x = pts[i].x;
|
|
|
|
pt[i].y = pts[i].y;
|
2004-08-31 02:02:02 +02:00
|
|
|
}
|
2010-03-27 11:56:11 +01:00
|
|
|
PolyPolygon(hdc, pt, (const INT*)pPolyPoly->aPolyCounts, pPolyPoly->nPolys);
|
2009-12-05 11:53:37 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, pt );
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2000-08-20 05:40:04 +02:00
|
|
|
case EMR_POLYPOLYLINE16:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYPOLYLINE16 *pPolyPoly = (const EMRPOLYPOLYLINE16 *)mr;
|
2000-08-20 05:40:04 +02:00
|
|
|
/* NB POINTS array doesn't start at pPolyPoly->apts it's actually
|
|
|
|
pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
|
|
|
|
|
2010-03-27 11:56:11 +01:00
|
|
|
const POINTS *pts = (const POINTS *)(pPolyPoly->aPolyCounts + pPolyPoly->nPolys);
|
2009-12-05 11:53:37 +01:00
|
|
|
POINT *pt = HeapAlloc( GetProcessHeap(), 0, pPolyPoly->cpts * sizeof(POINT) );
|
2000-08-20 05:40:04 +02:00
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPolyPoly->cpts; i++)
|
2004-08-31 02:02:02 +02:00
|
|
|
{
|
2009-12-05 11:53:37 +01:00
|
|
|
pt[i].x = pts[i].x;
|
|
|
|
pt[i].y = pts[i].y;
|
2004-08-31 02:02:02 +02:00
|
|
|
}
|
2009-12-05 11:53:37 +01:00
|
|
|
PolyPolyline(hdc, pt, pPolyPoly->aPolyCounts, pPolyPoly->nPolys);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pt );
|
2000-08-20 05:40:04 +02:00
|
|
|
break;
|
|
|
|
}
|
2000-04-18 13:52:58 +02:00
|
|
|
|
1999-02-09 15:08:57 +01:00
|
|
|
case EMR_STRETCHDIBITS:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSTRETCHDIBITS *pStretchDIBits = (const EMRSTRETCHDIBITS *)mr;
|
2001-02-12 02:19:23 +01:00
|
|
|
|
|
|
|
StretchDIBits(hdc,
|
|
|
|
pStretchDIBits->xDest,
|
|
|
|
pStretchDIBits->yDest,
|
|
|
|
pStretchDIBits->cxDest,
|
|
|
|
pStretchDIBits->cyDest,
|
|
|
|
pStretchDIBits->xSrc,
|
|
|
|
pStretchDIBits->ySrc,
|
|
|
|
pStretchDIBits->cxSrc,
|
|
|
|
pStretchDIBits->cySrc,
|
2006-10-29 18:23:20 +01:00
|
|
|
(const BYTE *)mr + pStretchDIBits->offBitsSrc,
|
|
|
|
(const BITMAPINFO *)((const BYTE *)mr + pStretchDIBits->offBmiSrc),
|
2001-02-12 02:19:23 +01:00
|
|
|
pStretchDIBits->iUsageSrc,
|
|
|
|
pStretchDIBits->dwRop);
|
1999-02-09 15:08:57 +01:00
|
|
|
break;
|
1999-12-12 00:18:10 +01:00
|
|
|
}
|
2001-02-12 02:19:23 +01:00
|
|
|
|
|
|
|
case EMR_EXTTEXTOUTA:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMREXTTEXTOUTA *pExtTextOutA = (const EMREXTTEXTOUTA *)mr;
|
2001-02-12 02:19:23 +01:00
|
|
|
RECT rc;
|
2006-10-29 18:23:20 +01:00
|
|
|
const INT *dx = NULL;
|
2011-02-24 11:19:56 +01:00
|
|
|
int old_mode;
|
2001-02-12 02:19:23 +01:00
|
|
|
|
|
|
|
rc.left = pExtTextOutA->emrtext.rcl.left;
|
|
|
|
rc.top = pExtTextOutA->emrtext.rcl.top;
|
|
|
|
rc.right = pExtTextOutA->emrtext.rcl.right;
|
|
|
|
rc.bottom = pExtTextOutA->emrtext.rcl.bottom;
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("EMR_EXTTEXTOUTA: x,y = %d, %d. rect = %d, %d - %d, %d. flags %08x\n",
|
2004-05-13 21:41:10 +02:00
|
|
|
pExtTextOutA->emrtext.ptlReference.x, pExtTextOutA->emrtext.ptlReference.y,
|
|
|
|
rc.left, rc.top, rc.right, rc.bottom, pExtTextOutA->emrtext.fOptions);
|
|
|
|
|
2011-02-24 11:19:56 +01:00
|
|
|
old_mode = SetGraphicsMode(hdc, pExtTextOutA->iGraphicsMode);
|
|
|
|
/* Reselect the font back into the dc so that the transformation
|
|
|
|
gets updated. */
|
|
|
|
SelectObject(hdc, GetCurrentObject(hdc, OBJ_FONT));
|
|
|
|
|
2004-05-13 21:41:10 +02:00
|
|
|
/* Linux version of pstoedit produces EMFs with offDx set to 0.
|
|
|
|
* These files can be enumerated and played under Win98 just
|
|
|
|
* fine, but at least Win2k chokes on them.
|
|
|
|
*/
|
|
|
|
if (pExtTextOutA->emrtext.offDx)
|
2006-10-29 18:23:20 +01:00
|
|
|
dx = (const INT *)((const BYTE *)mr + pExtTextOutA->emrtext.offDx);
|
2004-05-13 21:41:10 +02:00
|
|
|
|
2001-02-12 02:19:23 +01:00
|
|
|
ExtTextOutA(hdc, pExtTextOutA->emrtext.ptlReference.x, pExtTextOutA->emrtext.ptlReference.y,
|
|
|
|
pExtTextOutA->emrtext.fOptions, &rc,
|
2006-10-29 18:23:20 +01:00
|
|
|
(LPCSTR)((const BYTE *)mr + pExtTextOutA->emrtext.offString), pExtTextOutA->emrtext.nChars,
|
2004-05-13 21:41:10 +02:00
|
|
|
dx);
|
2011-02-24 11:19:56 +01:00
|
|
|
|
|
|
|
SetGraphicsMode(hdc, old_mode);
|
2001-02-12 02:19:23 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1998-03-29 21:44:57 +02:00
|
|
|
case EMR_EXTTEXTOUTW:
|
2001-02-12 02:19:23 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMREXTTEXTOUTW *pExtTextOutW = (const EMREXTTEXTOUTW *)mr;
|
2001-02-12 02:19:23 +01:00
|
|
|
RECT rc;
|
2006-10-29 18:23:20 +01:00
|
|
|
const INT *dx = NULL;
|
2011-02-24 11:19:56 +01:00
|
|
|
int old_mode;
|
2001-02-12 02:19:23 +01:00
|
|
|
|
|
|
|
rc.left = pExtTextOutW->emrtext.rcl.left;
|
|
|
|
rc.top = pExtTextOutW->emrtext.rcl.top;
|
|
|
|
rc.right = pExtTextOutW->emrtext.rcl.right;
|
|
|
|
rc.bottom = pExtTextOutW->emrtext.rcl.bottom;
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("EMR_EXTTEXTOUTW: x,y = %d, %d. rect = %d, %d - %d, %d. flags %08x\n",
|
2003-11-11 01:43:03 +01:00
|
|
|
pExtTextOutW->emrtext.ptlReference.x, pExtTextOutW->emrtext.ptlReference.y,
|
|
|
|
rc.left, rc.top, rc.right, rc.bottom, pExtTextOutW->emrtext.fOptions);
|
|
|
|
|
2011-02-24 11:19:56 +01:00
|
|
|
old_mode = SetGraphicsMode(hdc, pExtTextOutW->iGraphicsMode);
|
|
|
|
/* Reselect the font back into the dc so that the transformation
|
|
|
|
gets updated. */
|
|
|
|
SelectObject(hdc, GetCurrentObject(hdc, OBJ_FONT));
|
|
|
|
|
2004-05-13 21:41:10 +02:00
|
|
|
/* Linux version of pstoedit produces EMFs with offDx set to 0.
|
|
|
|
* These files can be enumerated and played under Win98 just
|
|
|
|
* fine, but at least Win2k chokes on them.
|
|
|
|
*/
|
|
|
|
if (pExtTextOutW->emrtext.offDx)
|
2006-10-29 18:23:20 +01:00
|
|
|
dx = (const INT *)((const BYTE *)mr + pExtTextOutW->emrtext.offDx);
|
2004-05-13 21:41:10 +02:00
|
|
|
|
2001-02-12 02:19:23 +01:00
|
|
|
ExtTextOutW(hdc, pExtTextOutW->emrtext.ptlReference.x, pExtTextOutW->emrtext.ptlReference.y,
|
|
|
|
pExtTextOutW->emrtext.fOptions, &rc,
|
2006-10-29 18:23:20 +01:00
|
|
|
(LPCWSTR)((const BYTE *)mr + pExtTextOutW->emrtext.offString), pExtTextOutW->emrtext.nChars,
|
2004-05-13 21:41:10 +02:00
|
|
|
dx);
|
2011-02-24 11:19:56 +01:00
|
|
|
|
|
|
|
SetGraphicsMode(hdc, old_mode);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
2001-02-12 02:19:23 +01:00
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_CREATEPALETTE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRCREATEPALETTE *lpCreatePal = (const EMRCREATEPALETTE *)mr;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[ lpCreatePal->ihPal ] =
|
1999-12-12 00:18:10 +01:00
|
|
|
CreatePalette( &lpCreatePal->lgpl );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_SELECTPALETTE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSELECTPALETTE *lpSelectPal = (const EMRSELECTPALETTE *)mr;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2001-01-24 20:38:38 +01:00
|
|
|
if( lpSelectPal->ihPal & 0x80000000 ) {
|
|
|
|
SelectPalette( hdc, GetStockObject(lpSelectPal->ihPal & 0x7fffffff), TRUE);
|
|
|
|
} else {
|
|
|
|
SelectPalette( hdc, (handletable->objectHandle)[lpSelectPal->ihPal], TRUE);
|
|
|
|
}
|
1999-12-12 00:18:10 +01:00
|
|
|
break;
|
|
|
|
}
|
1998-03-29 21:44:57 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_REALIZEPALETTE:
|
|
|
|
{
|
|
|
|
RealizePalette( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_EXTSELECTCLIPRGN:
|
|
|
|
{
|
2008-04-21 12:38:03 +02:00
|
|
|
const EMREXTSELECTCLIPRGN *lpRgn = (const EMREXTSELECTCLIPRGN *)mr;
|
|
|
|
HRGN hRgn = 0;
|
|
|
|
|
|
|
|
if (mr->nSize >= sizeof(*lpRgn) + sizeof(RGNDATAHEADER))
|
2010-03-27 11:56:11 +01:00
|
|
|
hRgn = ExtCreateRegion( &info->init_transform, 0, (const RGNDATA *)lpRgn->RgnData );
|
2004-11-22 19:22:20 +01:00
|
|
|
|
2001-02-20 01:48:13 +01:00
|
|
|
ExtSelectClipRgn(hdc, hRgn, (INT)(lpRgn->iMode));
|
|
|
|
/* ExtSelectClipRgn created a copy of the region */
|
|
|
|
DeleteObject(hRgn);
|
2000-12-21 21:16:56 +01:00
|
|
|
break;
|
1999-12-12 00:18:10 +01:00
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETMETARGN:
|
|
|
|
{
|
|
|
|
SetMetaRgn( hdc );
|
|
|
|
break;
|
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETWORLDTRANSFORM:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETWORLDTRANSFORM *lpXfrm = (const EMRSETWORLDTRANSFORM *)mr;
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.world_transform = lpXfrm->xform;
|
1999-12-12 00:18:10 +01:00
|
|
|
break;
|
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYBEZIER:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYBEZIER *lpPolyBez = (const EMRPOLYBEZIER *)mr;
|
2005-01-03 15:50:12 +01:00
|
|
|
PolyBezier(hdc, (const POINT*)lpPolyBez->aptl, (UINT)lpPolyBez->cptl);
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYGON:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYGON *lpPoly = (const EMRPOLYGON *)mr;
|
2005-01-03 15:50:12 +01:00
|
|
|
Polygon( hdc, (const POINT*)lpPoly->aptl, (UINT)lpPoly->cptl );
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYLINE:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYLINE *lpPolyLine = (const EMRPOLYLINE *)mr;
|
2005-01-03 15:50:12 +01:00
|
|
|
Polyline(hdc, (const POINT*)lpPolyLine->aptl, (UINT)lpPolyLine->cptl);
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
1999-12-25 23:58:59 +01:00
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYBEZIERTO:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYBEZIERTO *lpPolyBezierTo = (const EMRPOLYBEZIERTO *)mr;
|
2005-01-03 15:50:12 +01:00
|
|
|
PolyBezierTo( hdc, (const POINT*)lpPolyBezierTo->aptl,
|
2000-04-18 13:52:58 +02:00
|
|
|
(UINT)lpPolyBezierTo->cptl );
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
1999-12-25 23:58:59 +01:00
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYLINETO:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYLINETO *lpPolyLineTo = (const EMRPOLYLINETO *)mr;
|
2005-01-03 15:50:12 +01:00
|
|
|
PolylineTo( hdc, (const POINT*)lpPolyLineTo->aptl,
|
2000-04-18 13:52:58 +02:00
|
|
|
(UINT)lpPolyLineTo->cptl );
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYPOLYLINE:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYPOLYLINE *pPolyPolyline = (const EMRPOLYPOLYLINE *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
/* NB Points at pPolyPolyline->aPolyCounts + pPolyPolyline->nPolys */
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2010-03-27 11:56:11 +01:00
|
|
|
PolyPolyline(hdc, (const POINT*)(pPolyPolyline->aPolyCounts +
|
2002-06-01 01:06:46 +02:00
|
|
|
pPolyPolyline->nPolys),
|
|
|
|
pPolyPolyline->aPolyCounts,
|
|
|
|
pPolyPolyline->nPolys );
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYPOLYGON:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYPOLYGON *pPolyPolygon = (const EMRPOLYPOLYGON *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2000-04-18 13:52:58 +02:00
|
|
|
/* NB Points at pPolyPolygon->aPolyCounts + pPolyPolygon->nPolys */
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2010-03-27 11:56:11 +01:00
|
|
|
PolyPolygon(hdc, (const POINT*)(pPolyPolygon->aPolyCounts +
|
2000-04-18 13:52:58 +02:00
|
|
|
pPolyPolygon->nPolys),
|
2010-03-27 11:56:11 +01:00
|
|
|
(const INT*)pPolyPolygon->aPolyCounts, pPolyPolygon->nPolys );
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETBRUSHORGEX:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETBRUSHORGEX *lpSetBrushOrgEx = (const EMRSETBRUSHORGEX *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
SetBrushOrgEx( hdc,
|
|
|
|
(INT)lpSetBrushOrgEx->ptlOrigin.x,
|
|
|
|
(INT)lpSetBrushOrgEx->ptlOrigin.y,
|
1999-12-25 23:58:59 +01:00
|
|
|
NULL );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETPIXELV:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETPIXELV *lpSetPixelV = (const EMRSETPIXELV *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
SetPixelV( hdc,
|
|
|
|
(INT)lpSetPixelV->ptlPixel.x,
|
|
|
|
(INT)lpSetPixelV->ptlPixel.y,
|
1999-12-25 23:58:59 +01:00
|
|
|
lpSetPixelV->crColor );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETMAPPERFLAGS:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETMAPPERFLAGS *lpSetMapperFlags = (const EMRSETMAPPERFLAGS *)mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
SetMapperFlags( hdc, lpSetMapperFlags->dwFlags );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETCOLORADJUSTMENT:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETCOLORADJUSTMENT *lpSetColorAdjust = (const EMRSETCOLORADJUSTMENT *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
SetColorAdjustment( hdc, &lpSetColorAdjust->ColorAdjustment );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_OFFSETCLIPRGN:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMROFFSETCLIPRGN *lpOffsetClipRgn = (const EMROFFSETCLIPRGN *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
OffsetClipRgn( hdc,
|
1999-12-25 23:58:59 +01:00
|
|
|
(INT)lpOffsetClipRgn->ptlOffset.x,
|
|
|
|
(INT)lpOffsetClipRgn->ptlOffset.y );
|
2003-02-15 00:30:27 +01:00
|
|
|
FIXME("OffsetClipRgn\n");
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
break;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_EXCLUDECLIPRECT:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMREXCLUDECLIPRECT *lpExcludeClipRect = (const EMREXCLUDECLIPRECT *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
ExcludeClipRect( hdc,
|
|
|
|
lpExcludeClipRect->rclClip.left,
|
|
|
|
lpExcludeClipRect->rclClip.top,
|
|
|
|
lpExcludeClipRect->rclClip.right,
|
1999-12-25 23:58:59 +01:00
|
|
|
lpExcludeClipRect->rclClip.bottom );
|
2003-02-15 00:30:27 +01:00
|
|
|
FIXME("ExcludeClipRect\n");
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SCALEVIEWPORTEXTEX:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSCALEVIEWPORTEXTEX *lpScaleViewportExtEx = (const EMRSCALEVIEWPORTEXTEX *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
if ((info->state.mode != MM_ISOTROPIC) && (info->state.mode != MM_ANISOTROPIC))
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
if (!lpScaleViewportExtEx->xNum || !lpScaleViewportExtEx->xDenom ||
|
2004-01-06 01:37:05 +01:00
|
|
|
!lpScaleViewportExtEx->yNum || !lpScaleViewportExtEx->yDenom)
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.vportExtX = MulDiv(info->state.vportExtX, lpScaleViewportExtEx->xNum,
|
2006-06-20 16:02:37 +02:00
|
|
|
lpScaleViewportExtEx->xDenom);
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.vportExtY = MulDiv(info->state.vportExtY, lpScaleViewportExtEx->yNum,
|
2006-06-20 16:02:37 +02:00
|
|
|
lpScaleViewportExtEx->yDenom);
|
2008-04-28 09:02:31 +02:00
|
|
|
if (info->state.vportExtX == 0) info->state.vportExtX = 1;
|
|
|
|
if (info->state.vportExtY == 0) info->state.vportExtY = 1;
|
|
|
|
if (info->state.mode == MM_ISOTROPIC)
|
2006-01-31 12:56:57 +01:00
|
|
|
EMF_FixIsotropic(hdc, info);
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("EMRSCALEVIEWPORTEXTEX %d/%d %d/%d\n",
|
2003-02-15 00:30:27 +01:00
|
|
|
lpScaleViewportExtEx->xNum,lpScaleViewportExtEx->xDenom,
|
|
|
|
lpScaleViewportExtEx->yNum,lpScaleViewportExtEx->yDenom);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SCALEWINDOWEXTEX:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSCALEWINDOWEXTEX *lpScaleWindowExtEx = (const EMRSCALEWINDOWEXTEX *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
if ((info->state.mode != MM_ISOTROPIC) && (info->state.mode != MM_ANISOTROPIC))
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
if (!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->xDenom ||
|
2014-10-28 00:02:07 +01:00
|
|
|
!lpScaleWindowExtEx->yNum || !lpScaleWindowExtEx->yDenom)
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.wndExtX = MulDiv(info->state.wndExtX, lpScaleWindowExtEx->xNum,
|
2006-06-20 16:02:37 +02:00
|
|
|
lpScaleWindowExtEx->xDenom);
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.wndExtY = MulDiv(info->state.wndExtY, lpScaleWindowExtEx->yNum,
|
2006-06-20 16:02:37 +02:00
|
|
|
lpScaleWindowExtEx->yDenom);
|
2008-04-28 09:02:31 +02:00
|
|
|
if (info->state.wndExtX == 0) info->state.wndExtX = 1;
|
|
|
|
if (info->state.wndExtY == 0) info->state.wndExtY = 1;
|
|
|
|
if (info->state.mode == MM_ISOTROPIC)
|
2006-01-31 12:56:57 +01:00
|
|
|
EMF_FixIsotropic(hdc, info);
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("EMRSCALEWINDOWEXTEX %d/%d %d/%d\n",
|
2003-02-15 00:30:27 +01:00
|
|
|
lpScaleWindowExtEx->xNum,lpScaleWindowExtEx->xDenom,
|
|
|
|
lpScaleWindowExtEx->yNum,lpScaleWindowExtEx->yDenom);
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_MODIFYWORLDTRANSFORM:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRMODIFYWORLDTRANSFORM *lpModifyWorldTrans = (const EMRMODIFYWORLDTRANSFORM *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
switch(lpModifyWorldTrans->iMode) {
|
|
|
|
case MWT_IDENTITY:
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.world_transform.eM11 = info->state.world_transform.eM22 = 1;
|
|
|
|
info->state.world_transform.eM12 = info->state.world_transform.eM21 = 0;
|
|
|
|
info->state.world_transform.eDx = info->state.world_transform.eDy = 0;
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
case MWT_LEFTMULTIPLY:
|
2008-04-28 09:02:31 +02:00
|
|
|
CombineTransform(&info->state.world_transform, &lpModifyWorldTrans->xform,
|
|
|
|
&info->state.world_transform);
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
case MWT_RIGHTMULTIPLY:
|
2008-04-28 09:02:31 +02:00
|
|
|
CombineTransform(&info->state.world_transform, &info->state.world_transform,
|
2003-02-15 00:30:27 +01:00
|
|
|
&lpModifyWorldTrans->xform);
|
|
|
|
break;
|
|
|
|
default:
|
2006-10-12 22:56:56 +02:00
|
|
|
FIXME("Unknown imode %d\n", lpModifyWorldTrans->iMode);
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_ANGLEARC:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRANGLEARC *lpAngleArc = (const EMRANGLEARC *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
AngleArc( hdc,
|
1999-12-25 23:58:59 +01:00
|
|
|
(INT)lpAngleArc->ptlCenter.x, (INT)lpAngleArc->ptlCenter.y,
|
2002-06-01 01:06:46 +02:00
|
|
|
lpAngleArc->nRadius, lpAngleArc->eStartAngle,
|
1999-12-25 23:58:59 +01:00
|
|
|
lpAngleArc->eSweepAngle );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
|
|
|
case EMR_ROUNDRECT:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRROUNDRECT *lpRoundRect = (const EMRROUNDRECT *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
RoundRect( hdc,
|
1999-12-25 23:58:59 +01:00
|
|
|
lpRoundRect->rclBox.left,
|
|
|
|
lpRoundRect->rclBox.top,
|
|
|
|
lpRoundRect->rclBox.right,
|
|
|
|
lpRoundRect->rclBox.bottom,
|
|
|
|
lpRoundRect->szlCorner.cx,
|
|
|
|
lpRoundRect->szlCorner.cy );
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
1999-12-25 23:58:59 +01:00
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_ARC:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRARC *lpArc = (const EMRARC *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
Arc( hdc,
|
1999-12-25 23:58:59 +01:00
|
|
|
(INT)lpArc->rclBox.left,
|
|
|
|
(INT)lpArc->rclBox.top,
|
|
|
|
(INT)lpArc->rclBox.right,
|
|
|
|
(INT)lpArc->rclBox.bottom,
|
2002-06-01 01:06:46 +02:00
|
|
|
(INT)lpArc->ptlStart.x,
|
1999-12-25 23:58:59 +01:00
|
|
|
(INT)lpArc->ptlStart.y,
|
|
|
|
(INT)lpArc->ptlEnd.x,
|
|
|
|
(INT)lpArc->ptlEnd.y );
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
1999-12-25 23:58:59 +01:00
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_CHORD:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRCHORD *lpChord = (const EMRCHORD *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
Chord( hdc,
|
|
|
|
(INT)lpChord->rclBox.left,
|
|
|
|
(INT)lpChord->rclBox.top,
|
|
|
|
(INT)lpChord->rclBox.right,
|
|
|
|
(INT)lpChord->rclBox.bottom,
|
|
|
|
(INT)lpChord->ptlStart.x,
|
|
|
|
(INT)lpChord->ptlStart.y,
|
|
|
|
(INT)lpChord->ptlEnd.x,
|
|
|
|
(INT)lpChord->ptlEnd.y );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_PIE:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPIE *lpPie = (const EMRPIE *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
Pie( hdc,
|
|
|
|
(INT)lpPie->rclBox.left,
|
|
|
|
(INT)lpPie->rclBox.top,
|
|
|
|
(INT)lpPie->rclBox.right,
|
|
|
|
(INT)lpPie->rclBox.bottom,
|
|
|
|
(INT)lpPie->ptlStart.x,
|
|
|
|
(INT)lpPie->ptlStart.y,
|
|
|
|
(INT)lpPie->ptlEnd.x,
|
|
|
|
(INT)lpPie->ptlEnd.y );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
case EMR_ARCTO:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRARC *lpArcTo = (const EMRARC *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
ArcTo( hdc,
|
|
|
|
(INT)lpArcTo->rclBox.left,
|
|
|
|
(INT)lpArcTo->rclBox.top,
|
|
|
|
(INT)lpArcTo->rclBox.right,
|
|
|
|
(INT)lpArcTo->rclBox.bottom,
|
|
|
|
(INT)lpArcTo->ptlStart.x,
|
|
|
|
(INT)lpArcTo->ptlStart.y,
|
|
|
|
(INT)lpArcTo->ptlEnd.x,
|
|
|
|
(INT)lpArcTo->ptlEnd.y );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_EXTFLOODFILL:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMREXTFLOODFILL *lpExtFloodFill = (const EMREXTFLOODFILL *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
ExtFloodFill( hdc,
|
1999-12-25 23:58:59 +01:00
|
|
|
(INT)lpExtFloodFill->ptlStart.x,
|
|
|
|
(INT)lpExtFloodFill->ptlStart.y,
|
|
|
|
lpExtFloodFill->crColor,
|
|
|
|
(UINT)lpExtFloodFill->iMode );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYDRAW:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYDRAW *lpPolyDraw = (const EMRPOLYDRAW *)mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
PolyDraw( hdc,
|
2005-01-03 15:50:12 +01:00
|
|
|
(const POINT*)lpPolyDraw->aptl,
|
1999-12-25 23:58:59 +01:00
|
|
|
lpPolyDraw->abTypes,
|
|
|
|
(INT)lpPolyDraw->cptl );
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETARCDIRECTION:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETARCDIRECTION *lpSetArcDirection = (const EMRSETARCDIRECTION *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
SetArcDirection( hdc, (INT)lpSetArcDirection->iArcDirection );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETMITERLIMIT:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETMITERLIMIT *lpSetMiterLimit = (const EMRSETMITERLIMIT *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
SetMiterLimit( hdc, lpSetMiterLimit->eMiterLimit, NULL );
|
|
|
|
break;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_BEGINPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
BeginPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
case EMR_ENDPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
EndPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_CLOSEFIGURE:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
CloseFigure( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_FILLPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
/*const EMRFILLPATH lpFillPath = (const EMRFILLPATH *)mr;*/
|
1999-12-25 23:58:59 +01:00
|
|
|
FillPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_STROKEANDFILLPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
/*const EMRSTROKEANDFILLPATH lpStrokeAndFillPath = (const EMRSTROKEANDFILLPATH *)mr;*/
|
1999-12-25 23:58:59 +01:00
|
|
|
StrokeAndFillPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_STROKEPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
/*const EMRSTROKEPATH lpStrokePath = (const EMRSTROKEPATH *)mr;*/
|
1999-12-25 23:58:59 +01:00
|
|
|
StrokePath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_FLATTENPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
FlattenPath( hdc );
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_WIDENPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
WidenPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SELECTCLIPPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSELECTCLIPPATH *lpSelectClipPath = (const EMRSELECTCLIPPATH *)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
SelectClipPath( hdc, (INT)lpSelectClipPath->iMode );
|
|
|
|
break;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_ABORTPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
AbortPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-01-15 23:17:49 +01:00
|
|
|
case EMR_CREATECOLORSPACE:
|
|
|
|
{
|
|
|
|
PEMRCREATECOLORSPACE lpCreateColorSpace = (PEMRCREATECOLORSPACE)mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[lpCreateColorSpace->ihCS] =
|
|
|
|
CreateColorSpaceA( &lpCreateColorSpace->lcs );
|
2000-01-15 23:17:49 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_SETCOLORSPACE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETCOLORSPACE *lpSetColorSpace = (const EMRSETCOLORSPACE *)mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
SetColorSpace( hdc,
|
2000-01-15 23:17:49 +01:00
|
|
|
(handletable->objectHandle)[lpSetColorSpace->ihCS] );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_DELETECOLORSPACE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRDELETECOLORSPACE *lpDeleteColorSpace = (const EMRDELETECOLORSPACE *)mr;
|
2000-01-15 23:17:49 +01:00
|
|
|
DeleteColorSpace( (handletable->objectHandle)[lpDeleteColorSpace->ihCS] );
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
2000-01-15 23:17:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_SETICMMODE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETICMMODE *lpSetICMMode = (const EMRSETICMMODE *)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
SetICMMode( hdc, (INT)lpSetICMMode->iMode );
|
2000-01-15 23:17:49 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
case EMR_PIXELFORMAT:
|
2000-01-15 23:17:49 +01:00
|
|
|
{
|
|
|
|
INT iPixelFormat;
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPIXELFORMAT *lpPixelFormat = (const EMRPIXELFORMAT *)mr;
|
2000-01-15 23:17:49 +01:00
|
|
|
|
|
|
|
iPixelFormat = ChoosePixelFormat( hdc, &lpPixelFormat->pfd );
|
2002-06-01 01:06:46 +02:00
|
|
|
SetPixelFormat( hdc, iPixelFormat, &lpPixelFormat->pfd );
|
|
|
|
|
2000-01-15 23:17:49 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
case EMR_SETPALETTEENTRIES:
|
2000-01-15 23:17:49 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETPALETTEENTRIES *lpSetPaletteEntries = (const EMRSETPALETTEENTRIES *)mr;
|
2000-01-15 23:17:49 +01:00
|
|
|
|
|
|
|
SetPaletteEntries( (handletable->objectHandle)[lpSetPaletteEntries->ihPal],
|
|
|
|
(UINT)lpSetPaletteEntries->iStart,
|
|
|
|
(UINT)lpSetPaletteEntries->cEntries,
|
2002-06-01 01:06:46 +02:00
|
|
|
lpSetPaletteEntries->aPalEntries );
|
|
|
|
|
2000-01-15 23:17:49 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_RESIZEPALETTE:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRRESIZEPALETTE *lpResizePalette = (const EMRRESIZEPALETTE *)mr;
|
2000-01-15 23:17:49 +01:00
|
|
|
|
|
|
|
ResizePalette( (handletable->objectHandle)[lpResizePalette->ihPal],
|
|
|
|
(UINT)lpResizePalette->cEntries );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_CREATEDIBPATTERNBRUSHPT:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRCREATEDIBPATTERNBRUSHPT *lpCreate = (const EMRCREATEDIBPATTERNBRUSHPT *)mr;
|
2002-08-17 20:30:48 +02:00
|
|
|
LPVOID lpPackedStruct;
|
|
|
|
|
2008-01-06 18:42:57 +01:00
|
|
|
/* Check that offsets and data are contained within the record
|
2008-04-03 19:10:30 +02:00
|
|
|
* (including checking for wrap-arounds).
|
2008-01-06 18:42:57 +01:00
|
|
|
*/
|
|
|
|
if ( lpCreate->offBmi + lpCreate->cbBmi > mr->nSize
|
|
|
|
|| lpCreate->offBits + lpCreate->cbBits > mr->nSize
|
|
|
|
|| lpCreate->offBmi + lpCreate->cbBmi < lpCreate->offBmi
|
|
|
|
|| lpCreate->offBits + lpCreate->cbBits < lpCreate->offBits )
|
2002-08-17 20:30:48 +02:00
|
|
|
{
|
|
|
|
ERR("Invalid EMR_CREATEDIBPATTERNBRUSHPT record\n");
|
|
|
|
break;
|
|
|
|
}
|
2000-01-15 23:17:49 +01:00
|
|
|
|
|
|
|
/* This is a BITMAPINFO struct followed directly by bitmap bits */
|
2002-08-17 20:30:48 +02:00
|
|
|
lpPackedStruct = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
lpCreate->cbBmi + lpCreate->cbBits );
|
|
|
|
if(!lpPackedStruct)
|
|
|
|
{
|
2004-11-22 19:22:20 +01:00
|
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
2002-08-17 20:30:48 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-01-15 23:17:49 +01:00
|
|
|
/* Now pack this structure */
|
2002-06-01 01:06:46 +02:00
|
|
|
memcpy( lpPackedStruct,
|
2006-10-29 18:23:20 +01:00
|
|
|
((const BYTE *)lpCreate) + lpCreate->offBmi,
|
2002-06-01 01:06:46 +02:00
|
|
|
lpCreate->cbBmi );
|
2000-01-15 23:17:49 +01:00
|
|
|
memcpy( ((BYTE*)lpPackedStruct) + lpCreate->cbBmi,
|
2006-10-29 18:23:20 +01:00
|
|
|
((const BYTE *)lpCreate) + lpCreate->offBits,
|
2000-01-15 23:17:49 +01:00
|
|
|
lpCreate->cbBits );
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[lpCreate->ihBrush] =
|
2000-01-15 23:17:49 +01:00
|
|
|
CreateDIBPatternBrushPt( lpPackedStruct,
|
2002-06-01 01:06:46 +02:00
|
|
|
(UINT)lpCreate->iUsage );
|
2000-01-15 23:17:49 +01:00
|
|
|
|
2002-08-17 20:30:48 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpPackedStruct);
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
2000-01-15 23:17:49 +01:00
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2001-02-12 02:19:23 +01:00
|
|
|
case EMR_CREATEMONOBRUSH:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRCREATEMONOBRUSH *pCreateMonoBrush = (const EMRCREATEMONOBRUSH *)mr;
|
2006-10-29 18:23:20 +01:00
|
|
|
const BITMAPINFO *pbi = (const BITMAPINFO *)((const BYTE *)mr + pCreateMonoBrush->offBmi);
|
2004-09-13 21:37:03 +02:00
|
|
|
HBITMAP hBmp;
|
|
|
|
|
|
|
|
/* Need to check if the bitmap is monochrome, and if the
|
|
|
|
two colors are really black and white */
|
2004-11-22 19:22:20 +01:00
|
|
|
if (pCreateMonoBrush->iUsage == DIB_PAL_MONO)
|
|
|
|
{
|
|
|
|
BITMAP bm;
|
|
|
|
|
|
|
|
/* Undocumented iUsage indicates a mono bitmap with no palette table,
|
|
|
|
* aligned to 32 rather than 16 bits.
|
|
|
|
*/
|
|
|
|
bm.bmType = 0;
|
|
|
|
bm.bmWidth = pbi->bmiHeader.biWidth;
|
|
|
|
bm.bmHeight = abs(pbi->bmiHeader.biHeight);
|
|
|
|
bm.bmWidthBytes = 4 * ((pbi->bmiHeader.biWidth + 31) / 32);
|
|
|
|
bm.bmPlanes = pbi->bmiHeader.biPlanes;
|
|
|
|
bm.bmBitsPixel = pbi->bmiHeader.biBitCount;
|
|
|
|
bm.bmBits = (BYTE *)mr + pCreateMonoBrush->offBits;
|
|
|
|
hBmp = CreateBitmapIndirect(&bm);
|
|
|
|
}
|
|
|
|
else if (is_dib_monochrome(pbi))
|
2004-09-13 21:37:03 +02:00
|
|
|
{
|
|
|
|
/* Top-down DIBs have a negative height */
|
|
|
|
LONG height = pbi->bmiHeader.biHeight;
|
|
|
|
|
2004-11-22 19:22:20 +01:00
|
|
|
hBmp = CreateBitmap(pbi->bmiHeader.biWidth, abs(height), 1, 1, NULL);
|
2004-09-13 21:37:03 +02:00
|
|
|
SetDIBits(hdc, hBmp, 0, pbi->bmiHeader.biHeight,
|
2006-10-29 18:23:20 +01:00
|
|
|
(const BYTE *)mr + pCreateMonoBrush->offBits, pbi, pCreateMonoBrush->iUsage);
|
2004-09-13 21:37:03 +02:00
|
|
|
}
|
2004-11-22 19:22:20 +01:00
|
|
|
else
|
|
|
|
{
|
2006-10-29 18:23:20 +01:00
|
|
|
hBmp = CreateDIBitmap(hdc, (const BITMAPINFOHEADER *)pbi, CBM_INIT,
|
|
|
|
(const BYTE *)mr + pCreateMonoBrush->offBits, pbi, pCreateMonoBrush->iUsage);
|
2004-09-13 21:37:03 +02:00
|
|
|
}
|
|
|
|
|
2001-02-12 02:19:23 +01:00
|
|
|
(handletable->objectHandle)[pCreateMonoBrush->ihBrush] = CreatePatternBrush(hBmp);
|
2004-09-13 21:37:03 +02:00
|
|
|
|
2001-02-12 02:19:23 +01:00
|
|
|
/* CreatePatternBrush created a copy of the bitmap */
|
|
|
|
DeleteObject(hBmp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_BITBLT:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRBITBLT *pBitBlt = (const EMRBITBLT *)mr;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
|
2003-11-11 01:43:03 +01:00
|
|
|
if(pBitBlt->offBmiSrc == 0) { /* Record is a PatBlt */
|
|
|
|
PatBlt(hdc, pBitBlt->xDest, pBitBlt->yDest, pBitBlt->cxDest, pBitBlt->cyDest,
|
|
|
|
pBitBlt->dwRop);
|
|
|
|
} else { /* BitBlt */
|
|
|
|
HDC hdcSrc = CreateCompatibleDC(hdc);
|
|
|
|
HBRUSH hBrush, hBrushOld;
|
|
|
|
HBITMAP hBmp = 0, hBmpOld = 0;
|
2006-10-29 18:23:20 +01:00
|
|
|
const BITMAPINFO *pbi = (const BITMAPINFO *)((const BYTE *)mr + pBitBlt->offBmiSrc);
|
2003-11-11 01:43:03 +01:00
|
|
|
|
|
|
|
SetWorldTransform(hdcSrc, &pBitBlt->xformSrc);
|
|
|
|
|
|
|
|
hBrush = CreateSolidBrush(pBitBlt->crBkColorSrc);
|
|
|
|
hBrushOld = SelectObject(hdcSrc, hBrush);
|
|
|
|
PatBlt(hdcSrc, pBitBlt->rclBounds.left, pBitBlt->rclBounds.top,
|
|
|
|
pBitBlt->rclBounds.right - pBitBlt->rclBounds.left,
|
|
|
|
pBitBlt->rclBounds.bottom - pBitBlt->rclBounds.top, PATCOPY);
|
|
|
|
SelectObject(hdcSrc, hBrushOld);
|
|
|
|
DeleteObject(hBrush);
|
|
|
|
|
2006-10-29 18:23:20 +01:00
|
|
|
hBmp = CreateDIBitmap(hdc, (const BITMAPINFOHEADER *)pbi, CBM_INIT,
|
|
|
|
(const BYTE *)mr + pBitBlt->offBitsSrc, pbi, pBitBlt->iUsageSrc);
|
2003-11-11 01:43:03 +01:00
|
|
|
hBmpOld = SelectObject(hdcSrc, hBmp);
|
|
|
|
|
|
|
|
BitBlt(hdc, pBitBlt->xDest, pBitBlt->yDest, pBitBlt->cxDest, pBitBlt->cyDest,
|
|
|
|
hdcSrc, pBitBlt->xSrc, pBitBlt->ySrc, pBitBlt->dwRop);
|
|
|
|
|
|
|
|
SelectObject(hdcSrc, hBmpOld);
|
|
|
|
DeleteObject(hBmp);
|
|
|
|
DeleteDC(hdcSrc);
|
|
|
|
}
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_STRETCHBLT:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSTRETCHBLT *pStretchBlt = (const EMRSTRETCHBLT *)mr;
|
2002-06-25 01:09:19 +02:00
|
|
|
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("EMR_STRETCHBLT: %d, %d %dx%d -> %d, %d %dx%d. rop %08x offBitsSrc %d\n",
|
2003-11-11 01:43:03 +01:00
|
|
|
pStretchBlt->xSrc, pStretchBlt->ySrc, pStretchBlt->cxSrc, pStretchBlt->cySrc,
|
|
|
|
pStretchBlt->xDest, pStretchBlt->yDest, pStretchBlt->cxDest, pStretchBlt->cyDest,
|
|
|
|
pStretchBlt->dwRop, pStretchBlt->offBitsSrc);
|
|
|
|
|
|
|
|
if(pStretchBlt->offBmiSrc == 0) { /* Record is a PatBlt */
|
|
|
|
PatBlt(hdc, pStretchBlt->xDest, pStretchBlt->yDest, pStretchBlt->cxDest, pStretchBlt->cyDest,
|
|
|
|
pStretchBlt->dwRop);
|
|
|
|
} else { /* StretchBlt */
|
|
|
|
HDC hdcSrc = CreateCompatibleDC(hdc);
|
|
|
|
HBRUSH hBrush, hBrushOld;
|
|
|
|
HBITMAP hBmp = 0, hBmpOld = 0;
|
2006-10-29 18:23:20 +01:00
|
|
|
const BITMAPINFO *pbi = (const BITMAPINFO *)((const BYTE *)mr + pStretchBlt->offBmiSrc);
|
2003-11-11 01:43:03 +01:00
|
|
|
|
|
|
|
SetWorldTransform(hdcSrc, &pStretchBlt->xformSrc);
|
|
|
|
|
|
|
|
hBrush = CreateSolidBrush(pStretchBlt->crBkColorSrc);
|
|
|
|
hBrushOld = SelectObject(hdcSrc, hBrush);
|
|
|
|
PatBlt(hdcSrc, pStretchBlt->rclBounds.left, pStretchBlt->rclBounds.top,
|
|
|
|
pStretchBlt->rclBounds.right - pStretchBlt->rclBounds.left,
|
|
|
|
pStretchBlt->rclBounds.bottom - pStretchBlt->rclBounds.top, PATCOPY);
|
|
|
|
SelectObject(hdcSrc, hBrushOld);
|
|
|
|
DeleteObject(hBrush);
|
|
|
|
|
2006-10-29 18:23:20 +01:00
|
|
|
hBmp = CreateDIBitmap(hdc, (const BITMAPINFOHEADER *)pbi, CBM_INIT,
|
|
|
|
(const BYTE *)mr + pStretchBlt->offBitsSrc, pbi, pStretchBlt->iUsageSrc);
|
2003-11-11 01:43:03 +01:00
|
|
|
hBmpOld = SelectObject(hdcSrc, hBmp);
|
|
|
|
|
|
|
|
StretchBlt(hdc, pStretchBlt->xDest, pStretchBlt->yDest, pStretchBlt->cxDest, pStretchBlt->cyDest,
|
|
|
|
hdcSrc, pStretchBlt->xSrc, pStretchBlt->ySrc, pStretchBlt->cxSrc, pStretchBlt->cySrc,
|
|
|
|
pStretchBlt->dwRop);
|
|
|
|
|
|
|
|
SelectObject(hdcSrc, hBmpOld);
|
|
|
|
DeleteObject(hBmp);
|
|
|
|
DeleteDC(hdcSrc);
|
|
|
|
}
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-10-31 22:04:18 +01:00
|
|
|
case EMR_ALPHABLEND:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRALPHABLEND *pAlphaBlend = (const EMRALPHABLEND *)mr;
|
2005-10-31 22:04:18 +01:00
|
|
|
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("EMR_ALPHABLEND: %d, %d %dx%d -> %d, %d %dx%d. blendfn %08x offBitsSrc %d\n",
|
2005-10-31 22:04:18 +01:00
|
|
|
pAlphaBlend->xSrc, pAlphaBlend->ySrc, pAlphaBlend->cxSrc, pAlphaBlend->cySrc,
|
|
|
|
pAlphaBlend->xDest, pAlphaBlend->yDest, pAlphaBlend->cxDest, pAlphaBlend->cyDest,
|
|
|
|
pAlphaBlend->dwRop, pAlphaBlend->offBitsSrc);
|
|
|
|
|
|
|
|
if(pAlphaBlend->offBmiSrc == 0) {
|
|
|
|
FIXME("EMR_ALPHABLEND: offBmiSrc == 0\n");
|
|
|
|
} else {
|
|
|
|
HDC hdcSrc = CreateCompatibleDC(hdc);
|
|
|
|
HBITMAP hBmp = 0, hBmpOld = 0;
|
2006-10-29 18:23:20 +01:00
|
|
|
const BITMAPINFO *pbi = (const BITMAPINFO *)((const BYTE *)mr + pAlphaBlend->offBmiSrc);
|
2005-10-31 22:04:18 +01:00
|
|
|
void *bits;
|
|
|
|
|
|
|
|
SetWorldTransform(hdcSrc, &pAlphaBlend->xformSrc);
|
|
|
|
|
|
|
|
hBmp = CreateDIBSection(hdc, pbi, pAlphaBlend->iUsageSrc, &bits, NULL, 0);
|
2006-10-29 18:23:20 +01:00
|
|
|
memcpy(bits, (const BYTE *)mr + pAlphaBlend->offBitsSrc, pAlphaBlend->cbBitsSrc);
|
2005-10-31 22:04:18 +01:00
|
|
|
hBmpOld = SelectObject(hdcSrc, hBmp);
|
|
|
|
|
|
|
|
GdiAlphaBlend(hdc, pAlphaBlend->xDest, pAlphaBlend->yDest, pAlphaBlend->cxDest, pAlphaBlend->cyDest,
|
|
|
|
hdcSrc, pAlphaBlend->xSrc, pAlphaBlend->ySrc, pAlphaBlend->cxSrc, pAlphaBlend->cySrc,
|
2011-07-29 20:08:53 +02:00
|
|
|
*(BLENDFUNCTION *)&pAlphaBlend->dwRop);
|
2005-10-31 22:04:18 +01:00
|
|
|
|
|
|
|
SelectObject(hdcSrc, hBmpOld);
|
|
|
|
DeleteObject(hBmp);
|
|
|
|
DeleteDC(hdcSrc);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_MASKBLT:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRMASKBLT *pMaskBlt = (const EMRMASKBLT *)mr;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
HDC hdcSrc = CreateCompatibleDC(hdc);
|
|
|
|
HBRUSH hBrush, hBrushOld;
|
|
|
|
HBITMAP hBmp, hBmpOld, hBmpMask;
|
2006-10-29 18:23:20 +01:00
|
|
|
const BITMAPINFO *pbi;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
|
|
|
|
SetWorldTransform(hdcSrc, &pMaskBlt->xformSrc);
|
|
|
|
|
|
|
|
hBrush = CreateSolidBrush(pMaskBlt->crBkColorSrc);
|
|
|
|
hBrushOld = SelectObject(hdcSrc, hBrush);
|
|
|
|
PatBlt(hdcSrc, pMaskBlt->rclBounds.left, pMaskBlt->rclBounds.top,
|
|
|
|
pMaskBlt->rclBounds.right - pMaskBlt->rclBounds.left,
|
|
|
|
pMaskBlt->rclBounds.bottom - pMaskBlt->rclBounds.top, PATCOPY);
|
|
|
|
SelectObject(hdcSrc, hBrushOld);
|
|
|
|
DeleteObject(hBrush);
|
|
|
|
|
2006-10-29 18:23:20 +01:00
|
|
|
pbi = (const BITMAPINFO *)((const BYTE *)mr + pMaskBlt->offBmiMask);
|
2004-09-13 21:37:03 +02:00
|
|
|
hBmpMask = CreateBitmap(pbi->bmiHeader.biWidth, pbi->bmiHeader.biHeight,
|
|
|
|
1, 1, NULL);
|
|
|
|
SetDIBits(hdc, hBmpMask, 0, pbi->bmiHeader.biHeight,
|
2006-10-29 18:23:20 +01:00
|
|
|
(const BYTE *)mr + pMaskBlt->offBitsMask, pbi, pMaskBlt->iUsageMask);
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
|
2006-10-29 18:23:20 +01:00
|
|
|
pbi = (const BITMAPINFO *)((const BYTE *)mr + pMaskBlt->offBmiSrc);
|
|
|
|
hBmp = CreateDIBitmap(hdc, (const BITMAPINFOHEADER *)pbi, CBM_INIT,
|
|
|
|
(const BYTE *)mr + pMaskBlt->offBitsSrc, pbi, pMaskBlt->iUsageSrc);
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
hBmpOld = SelectObject(hdcSrc, hBmp);
|
|
|
|
MaskBlt(hdc,
|
|
|
|
pMaskBlt->xDest,
|
|
|
|
pMaskBlt->yDest,
|
|
|
|
pMaskBlt->cxDest,
|
|
|
|
pMaskBlt->cyDest,
|
|
|
|
hdcSrc,
|
|
|
|
pMaskBlt->xSrc,
|
|
|
|
pMaskBlt->ySrc,
|
|
|
|
hBmpMask,
|
|
|
|
pMaskBlt->xMask,
|
|
|
|
pMaskBlt->yMask,
|
|
|
|
pMaskBlt->dwRop);
|
|
|
|
SelectObject(hdcSrc, hBmpOld);
|
|
|
|
DeleteObject(hBmp);
|
|
|
|
DeleteObject(hBmpMask);
|
|
|
|
DeleteDC(hdcSrc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_PLGBLT:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPLGBLT *pPlgBlt = (const EMRPLGBLT *)mr;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
HDC hdcSrc = CreateCompatibleDC(hdc);
|
|
|
|
HBRUSH hBrush, hBrushOld;
|
|
|
|
HBITMAP hBmp, hBmpOld, hBmpMask;
|
2006-10-29 18:23:20 +01:00
|
|
|
const BITMAPINFO *pbi;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
POINT pts[3];
|
|
|
|
|
|
|
|
SetWorldTransform(hdcSrc, &pPlgBlt->xformSrc);
|
|
|
|
|
2002-10-23 20:50:10 +02:00
|
|
|
pts[0].x = pPlgBlt->aptlDest[0].x; pts[0].y = pPlgBlt->aptlDest[0].y;
|
|
|
|
pts[1].x = pPlgBlt->aptlDest[1].x; pts[1].y = pPlgBlt->aptlDest[1].y;
|
|
|
|
pts[2].x = pPlgBlt->aptlDest[2].x; pts[2].y = pPlgBlt->aptlDest[2].y;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
|
|
|
|
hBrush = CreateSolidBrush(pPlgBlt->crBkColorSrc);
|
|
|
|
hBrushOld = SelectObject(hdcSrc, hBrush);
|
|
|
|
PatBlt(hdcSrc, pPlgBlt->rclBounds.left, pPlgBlt->rclBounds.top,
|
|
|
|
pPlgBlt->rclBounds.right - pPlgBlt->rclBounds.left,
|
|
|
|
pPlgBlt->rclBounds.bottom - pPlgBlt->rclBounds.top, PATCOPY);
|
|
|
|
SelectObject(hdcSrc, hBrushOld);
|
|
|
|
DeleteObject(hBrush);
|
|
|
|
|
2006-10-29 18:23:20 +01:00
|
|
|
pbi = (const BITMAPINFO *)((const BYTE *)mr + pPlgBlt->offBmiMask);
|
2004-09-13 21:37:03 +02:00
|
|
|
hBmpMask = CreateBitmap(pbi->bmiHeader.biWidth, pbi->bmiHeader.biHeight,
|
|
|
|
1, 1, NULL);
|
|
|
|
SetDIBits(hdc, hBmpMask, 0, pbi->bmiHeader.biHeight,
|
2006-10-29 18:23:20 +01:00
|
|
|
(const BYTE *)mr + pPlgBlt->offBitsMask, pbi, pPlgBlt->iUsageMask);
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
|
2006-10-29 18:23:20 +01:00
|
|
|
pbi = (const BITMAPINFO *)((const BYTE *)mr + pPlgBlt->offBmiSrc);
|
|
|
|
hBmp = CreateDIBitmap(hdc, (const BITMAPINFOHEADER *)pbi, CBM_INIT,
|
|
|
|
(const BYTE *)mr + pPlgBlt->offBitsSrc, pbi, pPlgBlt->iUsageSrc);
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
hBmpOld = SelectObject(hdcSrc, hBmp);
|
|
|
|
PlgBlt(hdc,
|
|
|
|
pts,
|
|
|
|
hdcSrc,
|
|
|
|
pPlgBlt->xSrc,
|
|
|
|
pPlgBlt->ySrc,
|
|
|
|
pPlgBlt->cxSrc,
|
|
|
|
pPlgBlt->cySrc,
|
|
|
|
hBmpMask,
|
|
|
|
pPlgBlt->xMask,
|
|
|
|
pPlgBlt->yMask);
|
|
|
|
SelectObject(hdcSrc, hBmpOld);
|
|
|
|
DeleteObject(hBmp);
|
|
|
|
DeleteObject(hBmpMask);
|
|
|
|
DeleteDC(hdcSrc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETDIBITSTODEVICE:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETDIBITSTODEVICE *pSetDIBitsToDevice = (const EMRSETDIBITSTODEVICE *)mr;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
|
|
|
|
SetDIBitsToDevice(hdc,
|
|
|
|
pSetDIBitsToDevice->xDest,
|
|
|
|
pSetDIBitsToDevice->yDest,
|
|
|
|
pSetDIBitsToDevice->cxSrc,
|
|
|
|
pSetDIBitsToDevice->cySrc,
|
|
|
|
pSetDIBitsToDevice->xSrc,
|
|
|
|
pSetDIBitsToDevice->ySrc,
|
|
|
|
pSetDIBitsToDevice->iStartScan,
|
|
|
|
pSetDIBitsToDevice->cScans,
|
2006-10-29 18:23:20 +01:00
|
|
|
(const BYTE *)mr + pSetDIBitsToDevice->offBitsSrc,
|
|
|
|
(const BITMAPINFO *)((const BYTE *)mr + pSetDIBitsToDevice->offBmiSrc),
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
pSetDIBitsToDevice->iUsageSrc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYTEXTOUTA:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYTEXTOUTA *pPolyTextOutA = (const EMRPOLYTEXTOUTA *)mr;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
POLYTEXTA *polytextA = HeapAlloc(GetProcessHeap(), 0, pPolyTextOutA->cStrings * sizeof(POLYTEXTA));
|
|
|
|
LONG i;
|
|
|
|
XFORM xform, xformOld;
|
|
|
|
int gModeOld;
|
|
|
|
|
|
|
|
gModeOld = SetGraphicsMode(hdc, pPolyTextOutA->iGraphicsMode);
|
|
|
|
GetWorldTransform(hdc, &xformOld);
|
|
|
|
|
|
|
|
xform.eM11 = pPolyTextOutA->exScale;
|
|
|
|
xform.eM12 = 0.0;
|
|
|
|
xform.eM21 = 0.0;
|
|
|
|
xform.eM22 = pPolyTextOutA->eyScale;
|
|
|
|
xform.eDx = 0.0;
|
|
|
|
xform.eDy = 0.0;
|
|
|
|
SetWorldTransform(hdc, &xform);
|
|
|
|
|
|
|
|
/* Set up POLYTEXTA structures */
|
|
|
|
for(i = 0; i < pPolyTextOutA->cStrings; i++)
|
|
|
|
{
|
|
|
|
polytextA[i].x = pPolyTextOutA->aemrtext[i].ptlReference.x;
|
|
|
|
polytextA[i].y = pPolyTextOutA->aemrtext[i].ptlReference.y;
|
|
|
|
polytextA[i].n = pPolyTextOutA->aemrtext[i].nChars;
|
2006-10-29 18:23:20 +01:00
|
|
|
polytextA[i].lpstr = (LPCSTR)((const BYTE *)mr + pPolyTextOutA->aemrtext[i].offString);
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
polytextA[i].uiFlags = pPolyTextOutA->aemrtext[i].fOptions;
|
|
|
|
polytextA[i].rcl.left = pPolyTextOutA->aemrtext[i].rcl.left;
|
|
|
|
polytextA[i].rcl.right = pPolyTextOutA->aemrtext[i].rcl.right;
|
|
|
|
polytextA[i].rcl.top = pPolyTextOutA->aemrtext[i].rcl.top;
|
|
|
|
polytextA[i].rcl.bottom = pPolyTextOutA->aemrtext[i].rcl.bottom;
|
|
|
|
polytextA[i].pdx = (int *)((BYTE *)mr + pPolyTextOutA->aemrtext[i].offDx);
|
|
|
|
}
|
|
|
|
PolyTextOutA(hdc, polytextA, pPolyTextOutA->cStrings);
|
|
|
|
HeapFree(GetProcessHeap(), 0, polytextA);
|
|
|
|
|
|
|
|
SetWorldTransform(hdc, &xformOld);
|
|
|
|
SetGraphicsMode(hdc, gModeOld);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYTEXTOUTW:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPOLYTEXTOUTW *pPolyTextOutW = (const EMRPOLYTEXTOUTW *)mr;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
POLYTEXTW *polytextW = HeapAlloc(GetProcessHeap(), 0, pPolyTextOutW->cStrings * sizeof(POLYTEXTW));
|
|
|
|
LONG i;
|
|
|
|
XFORM xform, xformOld;
|
|
|
|
int gModeOld;
|
|
|
|
|
|
|
|
gModeOld = SetGraphicsMode(hdc, pPolyTextOutW->iGraphicsMode);
|
|
|
|
GetWorldTransform(hdc, &xformOld);
|
|
|
|
|
|
|
|
xform.eM11 = pPolyTextOutW->exScale;
|
|
|
|
xform.eM12 = 0.0;
|
|
|
|
xform.eM21 = 0.0;
|
|
|
|
xform.eM22 = pPolyTextOutW->eyScale;
|
|
|
|
xform.eDx = 0.0;
|
|
|
|
xform.eDy = 0.0;
|
|
|
|
SetWorldTransform(hdc, &xform);
|
|
|
|
|
|
|
|
/* Set up POLYTEXTW structures */
|
|
|
|
for(i = 0; i < pPolyTextOutW->cStrings; i++)
|
|
|
|
{
|
|
|
|
polytextW[i].x = pPolyTextOutW->aemrtext[i].ptlReference.x;
|
|
|
|
polytextW[i].y = pPolyTextOutW->aemrtext[i].ptlReference.y;
|
|
|
|
polytextW[i].n = pPolyTextOutW->aemrtext[i].nChars;
|
2006-10-29 18:23:20 +01:00
|
|
|
polytextW[i].lpstr = (LPCWSTR)((const BYTE *)mr + pPolyTextOutW->aemrtext[i].offString);
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
polytextW[i].uiFlags = pPolyTextOutW->aemrtext[i].fOptions;
|
|
|
|
polytextW[i].rcl.left = pPolyTextOutW->aemrtext[i].rcl.left;
|
|
|
|
polytextW[i].rcl.right = pPolyTextOutW->aemrtext[i].rcl.right;
|
|
|
|
polytextW[i].rcl.top = pPolyTextOutW->aemrtext[i].rcl.top;
|
|
|
|
polytextW[i].rcl.bottom = pPolyTextOutW->aemrtext[i].rcl.bottom;
|
|
|
|
polytextW[i].pdx = (int *)((BYTE *)mr + pPolyTextOutW->aemrtext[i].offDx);
|
|
|
|
}
|
|
|
|
PolyTextOutW(hdc, polytextW, pPolyTextOutW->cStrings);
|
|
|
|
HeapFree(GetProcessHeap(), 0, polytextW);
|
|
|
|
|
|
|
|
SetWorldTransform(hdc, &xformOld);
|
|
|
|
SetGraphicsMode(hdc, gModeOld);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
case EMR_FILLRGN:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRFILLRGN *pFillRgn = (const EMRFILLRGN *)mr;
|
2010-03-27 11:56:11 +01:00
|
|
|
HRGN hRgn = ExtCreateRegion(NULL, pFillRgn->cbRgnData, (const RGNDATA *)pFillRgn->RgnData);
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
FillRgn(hdc,
|
|
|
|
hRgn,
|
|
|
|
(handletable->objectHandle)[pFillRgn->ihBrush]);
|
|
|
|
DeleteObject(hRgn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
case EMR_FRAMERGN:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRFRAMERGN *pFrameRgn = (const EMRFRAMERGN *)mr;
|
2010-03-27 11:56:11 +01:00
|
|
|
HRGN hRgn = ExtCreateRegion(NULL, pFrameRgn->cbRgnData, (const RGNDATA *)pFrameRgn->RgnData);
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
FrameRgn(hdc,
|
|
|
|
hRgn,
|
|
|
|
(handletable->objectHandle)[pFrameRgn->ihBrush],
|
|
|
|
pFrameRgn->szlStroke.cx,
|
|
|
|
pFrameRgn->szlStroke.cy);
|
|
|
|
DeleteObject(hRgn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
case EMR_INVERTRGN:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRINVERTRGN *pInvertRgn = (const EMRINVERTRGN *)mr;
|
2010-03-27 11:56:11 +01:00
|
|
|
HRGN hRgn = ExtCreateRegion(NULL, pInvertRgn->cbRgnData, (const RGNDATA *)pInvertRgn->RgnData);
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
InvertRgn(hdc, hRgn);
|
|
|
|
DeleteObject(hRgn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
case EMR_PAINTRGN:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRPAINTRGN *pPaintRgn = (const EMRPAINTRGN *)mr;
|
2010-03-27 11:56:11 +01:00
|
|
|
HRGN hRgn = ExtCreateRegion(NULL, pPaintRgn->cbRgnData, (const RGNDATA *)pPaintRgn->RgnData);
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
PaintRgn(hdc, hRgn);
|
|
|
|
DeleteObject(hRgn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-06-25 01:09:19 +02:00
|
|
|
case EMR_SETTEXTJUSTIFICATION:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETTEXTJUSTIFICATION *pSetTextJust = (const EMRSETTEXTJUSTIFICATION *)mr;
|
2002-06-25 01:09:19 +02:00
|
|
|
SetTextJustification(hdc, pSetTextJust->nBreakExtra, pSetTextJust->nBreakCount);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_SETLAYOUT:
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMRSETLAYOUT *pSetLayout = (const EMRSETLAYOUT *)mr;
|
2002-06-25 01:09:19 +02:00
|
|
|
SetLayout(hdc, pSetLayout->iMode);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-04-08 12:40:57 +02:00
|
|
|
case EMR_GRADIENTFILL:
|
|
|
|
{
|
|
|
|
EMRGRADIENTFILL *grad = (EMRGRADIENTFILL *)mr;
|
|
|
|
GdiGradientFill( hdc, grad->Ver, grad->nVer, grad->Ver + grad->nVer,
|
|
|
|
grad->nTri, grad->ulMode );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
case EMR_POLYDRAW16:
|
2000-01-15 23:17:49 +01:00
|
|
|
case EMR_GLSRECORD:
|
|
|
|
case EMR_GLSBOUNDEDRECORD:
|
2016-04-08 12:40:57 +02:00
|
|
|
case EMR_DRAWESCAPE:
|
|
|
|
case EMR_EXTESCAPE:
|
|
|
|
case EMR_STARTDOC:
|
|
|
|
case EMR_SMALLTEXTOUT:
|
|
|
|
case EMR_FORCEUFIMAPPING:
|
|
|
|
case EMR_NAMEDESCAPE:
|
|
|
|
case EMR_COLORCORRECTPALETTE:
|
|
|
|
case EMR_SETICMPROFILEA:
|
|
|
|
case EMR_SETICMPROFILEW:
|
|
|
|
case EMR_TRANSPARENTBLT:
|
|
|
|
case EMR_SETLINKEDUFI:
|
|
|
|
case EMR_COLORMATCHTOTARGETW:
|
|
|
|
case EMR_CREATECOLORSPACEW:
|
2002-06-25 01:09:19 +02:00
|
|
|
|
1998-03-29 21:44:57 +02:00
|
|
|
default:
|
2002-06-01 01:06:46 +02:00
|
|
|
/* From docs: If PlayEnhMetaFileRecord doesn't recognize a
|
1999-12-25 23:58:59 +01:00
|
|
|
record then ignore and return TRUE. */
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("type %d is unimplemented\n", type);
|
1998-03-15 21:29:56 +01:00
|
|
|
break;
|
|
|
|
}
|
2003-02-15 00:30:27 +01:00
|
|
|
tmprc.left = tmprc.top = 0;
|
|
|
|
tmprc.right = tmprc.bottom = 1000;
|
|
|
|
LPtoDP(hdc, (POINT*)&tmprc, 2);
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("L:0,0 - 1000,1000 -> D:%d,%d - %d,%d\n", tmprc.left,
|
2003-02-15 00:30:27 +01:00
|
|
|
tmprc.top, tmprc.right, tmprc.bottom);
|
|
|
|
|
1998-03-29 21:44:57 +02:00
|
|
|
return TRUE;
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
*
|
2001-02-15 00:11:17 +01:00
|
|
|
* EnumEnhMetaFile (GDI32.@)
|
1998-03-15 21:29:56 +01:00
|
|
|
*
|
|
|
|
* Walk an enhanced metafile, calling a user-specified function _EnhMetaFunc_
|
|
|
|
* for each
|
2002-06-01 01:06:46 +02:00
|
|
|
* record. Returns when either every record has been used or
|
1998-03-15 21:29:56 +01:00
|
|
|
* when _EnhMetaFunc_ returns FALSE.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE if every record is used, FALSE if any invocation of _EnhMetaFunc_
|
|
|
|
* returns FALSE.
|
|
|
|
*
|
|
|
|
* BUGS
|
1998-03-29 21:44:57 +02:00
|
|
|
* Ignores rect.
|
2003-02-15 00:30:27 +01:00
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* This function behaves differently in Win9x and WinNT.
|
|
|
|
*
|
|
|
|
* In WinNT, the DC's world transform is updated as the EMF changes
|
2014-02-07 22:42:49 +01:00
|
|
|
* the Window/Viewport Extent and Origin or its world transform.
|
2003-02-15 00:30:27 +01:00
|
|
|
* The actual Window/Viewport Extent and Origin are left untouched.
|
|
|
|
*
|
|
|
|
* In Win9x, the DC is left untouched, and PlayEnhMetaFileRecord
|
|
|
|
* updates the scaling itself but only just before a record that
|
|
|
|
* writes anything to the DC.
|
|
|
|
*
|
|
|
|
* I'm not sure where the data (enum_emh_data) is stored in either
|
|
|
|
* version. For this implementation, it is stored before the handle
|
|
|
|
* table, but it could be stored in the DC, in the EMF handle or in
|
|
|
|
* TLS.
|
|
|
|
* MJM 5 Oct 2002
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
BOOL WINAPI EnumEnhMetaFile(
|
2000-12-02 00:58:28 +01:00
|
|
|
HDC hdc, /* [in] device context to pass to _EnhMetaFunc_ */
|
|
|
|
HENHMETAFILE hmf, /* [in] EMF to walk */
|
2002-06-01 01:06:46 +02:00
|
|
|
ENHMFENUMPROC callback, /* [in] callback function */
|
2000-12-02 00:58:28 +01:00
|
|
|
LPVOID data, /* [in] optional data for callback function */
|
|
|
|
const RECT *lpRect /* [in] bounding rectangle for rendered metafile */
|
1998-03-15 21:29:56 +01:00
|
|
|
)
|
|
|
|
{
|
2000-10-24 03:37:49 +02:00
|
|
|
BOOL ret;
|
2001-08-24 01:37:00 +02:00
|
|
|
ENHMETAHEADER *emh;
|
2000-10-24 03:37:49 +02:00
|
|
|
ENHMETARECORD *emr;
|
|
|
|
DWORD offset;
|
2001-01-10 23:45:33 +01:00
|
|
|
UINT i;
|
1999-06-12 08:49:52 +02:00
|
|
|
HANDLETABLE *ht;
|
1999-05-02 11:23:51 +02:00
|
|
|
INT savedMode = 0;
|
2003-02-15 00:30:27 +01:00
|
|
|
XFORM savedXform;
|
2002-12-02 19:10:57 +01:00
|
|
|
HPEN hPen = NULL;
|
|
|
|
HBRUSH hBrush = NULL;
|
|
|
|
HFONT hFont = NULL;
|
2008-05-25 14:32:31 +02:00
|
|
|
HRGN hRgn = NULL;
|
2003-02-15 00:30:27 +01:00
|
|
|
enum_emh_data *info;
|
|
|
|
SIZE vp_size, win_size;
|
|
|
|
POINT vp_org, win_org;
|
2005-10-12 23:06:20 +02:00
|
|
|
INT mapMode = MM_TEXT, old_align = 0, old_rop2 = 0, old_arcdir = 0, old_polyfill = 0, old_stretchblt = 0;
|
2003-11-11 01:43:03 +01:00
|
|
|
COLORREF old_text_color = 0, old_bk_color = 0;
|
2001-01-24 20:38:38 +01:00
|
|
|
|
2005-03-29 20:56:35 +02:00
|
|
|
if(!lpRect && hdc)
|
2000-10-24 03:37:49 +02:00
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
emh = EMF_GetEnhMetaHeader(hmf);
|
2000-04-13 17:57:34 +02:00
|
|
|
if(!emh) {
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2000-10-24 03:37:49 +02:00
|
|
|
|
2008-04-29 07:48:55 +02:00
|
|
|
info = HeapAlloc( GetProcessHeap(), 0,
|
2003-02-15 00:30:27 +01:00
|
|
|
sizeof (enum_emh_data) + sizeof(HANDLETABLE) * emh->nHandles );
|
|
|
|
if(!info)
|
2000-10-24 03:37:49 +02:00
|
|
|
{
|
|
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2015-03-28 13:29:06 +01:00
|
|
|
info->state.mode = MM_TEXT;
|
2008-04-28 09:02:31 +02:00
|
|
|
info->state.wndOrgX = 0;
|
|
|
|
info->state.wndOrgY = 0;
|
|
|
|
info->state.wndExtX = 1;
|
|
|
|
info->state.wndExtY = 1;
|
|
|
|
info->state.vportOrgX = 0;
|
|
|
|
info->state.vportOrgY = 0;
|
|
|
|
info->state.vportExtX = 1;
|
|
|
|
info->state.vportExtY = 1;
|
|
|
|
info->state.world_transform.eM11 = info->state.world_transform.eM22 = 1;
|
|
|
|
info->state.world_transform.eM12 = info->state.world_transform.eM21 = 0;
|
|
|
|
info->state.world_transform.eDx = info->state.world_transform.eDy = 0;
|
|
|
|
|
2008-04-29 07:48:55 +02:00
|
|
|
info->state.next = NULL;
|
2008-04-28 09:02:31 +02:00
|
|
|
info->save_level = 0;
|
|
|
|
info->saved_state = NULL;
|
2003-02-15 00:30:27 +01:00
|
|
|
|
|
|
|
ht = (HANDLETABLE*) &info[1];
|
2000-03-30 22:22:41 +02:00
|
|
|
ht->objectHandle[0] = hmf;
|
2008-06-09 14:39:16 +02:00
|
|
|
for(i = 1; i < emh->nHandles; i++)
|
|
|
|
ht->objectHandle[i] = NULL;
|
2000-04-13 17:57:34 +02:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
if(hdc)
|
2001-01-24 20:38:38 +01:00
|
|
|
{
|
|
|
|
savedMode = SetGraphicsMode(hdc, GM_ADVANCED);
|
|
|
|
GetWorldTransform(hdc, &savedXform);
|
2003-02-15 00:30:27 +01:00
|
|
|
GetViewportExtEx(hdc, &vp_size);
|
|
|
|
GetWindowExtEx(hdc, &win_size);
|
|
|
|
GetViewportOrgEx(hdc, &vp_org);
|
|
|
|
GetWindowOrgEx(hdc, &win_org);
|
|
|
|
mapMode = GetMapMode(hdc);
|
2001-01-24 20:38:38 +01:00
|
|
|
|
2008-05-25 14:32:31 +02:00
|
|
|
/* save DC */
|
2001-01-24 20:38:38 +01:00
|
|
|
hPen = GetCurrentObject(hdc, OBJ_PEN);
|
|
|
|
hBrush = GetCurrentObject(hdc, OBJ_BRUSH);
|
|
|
|
hFont = GetCurrentObject(hdc, OBJ_FONT);
|
2003-11-11 01:43:03 +01:00
|
|
|
|
2008-05-25 14:32:31 +02:00
|
|
|
hRgn = CreateRectRgn(0, 0, 0, 0);
|
|
|
|
if (!GetClipRgn(hdc, hRgn))
|
|
|
|
{
|
|
|
|
DeleteObject(hRgn);
|
|
|
|
hRgn = 0;
|
|
|
|
}
|
|
|
|
|
2003-11-11 01:43:03 +01:00
|
|
|
old_text_color = SetTextColor(hdc, RGB(0,0,0));
|
|
|
|
old_bk_color = SetBkColor(hdc, RGB(0xff, 0xff, 0xff));
|
2005-10-12 23:06:20 +02:00
|
|
|
old_align = SetTextAlign(hdc, 0);
|
|
|
|
old_rop2 = SetROP2(hdc, R2_COPYPEN);
|
|
|
|
old_arcdir = SetArcDirection(hdc, AD_COUNTERCLOCKWISE);
|
|
|
|
old_polyfill = SetPolyFillMode(hdc, ALTERNATE);
|
|
|
|
old_stretchblt = SetStretchBltMode(hdc, BLACKONWHITE);
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2015-03-28 13:29:06 +01:00
|
|
|
if ( IS_WIN9X() )
|
|
|
|
{
|
|
|
|
/* Win95 leaves the vp/win ext/org info alone */
|
|
|
|
info->init_transform.eM11 = 1.0;
|
|
|
|
info->init_transform.eM12 = 0.0;
|
|
|
|
info->init_transform.eM21 = 0.0;
|
|
|
|
info->init_transform.eM22 = 1.0;
|
|
|
|
info->init_transform.eDx = 0.0;
|
|
|
|
info->init_transform.eDy = 0.0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* WinNT combines the vp/win ext/org info into a transform */
|
|
|
|
double xscale, yscale;
|
|
|
|
xscale = (double)vp_size.cx / (double)win_size.cx;
|
|
|
|
yscale = (double)vp_size.cy / (double)win_size.cy;
|
|
|
|
info->init_transform.eM11 = xscale;
|
|
|
|
info->init_transform.eM12 = 0.0;
|
|
|
|
info->init_transform.eM21 = 0.0;
|
|
|
|
info->init_transform.eM22 = yscale;
|
|
|
|
info->init_transform.eDx = (double)vp_org.x - xscale * (double)win_org.x;
|
|
|
|
info->init_transform.eDy = (double)vp_org.y - yscale * (double)win_org.y;
|
|
|
|
|
|
|
|
CombineTransform(&info->init_transform, &savedXform, &info->init_transform);
|
|
|
|
}
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2015-03-28 13:29:06 +01:00
|
|
|
if ( lpRect && WIDTH(emh->rclFrame) && HEIGHT(emh->rclFrame) )
|
|
|
|
{
|
|
|
|
double xSrcPixSize, ySrcPixSize, xscale, yscale;
|
|
|
|
XFORM xform;
|
|
|
|
|
|
|
|
TRACE("rect: %d,%d - %d,%d. rclFrame: %d,%d - %d,%d\n",
|
|
|
|
lpRect->left, lpRect->top, lpRect->right, lpRect->bottom,
|
|
|
|
emh->rclFrame.left, emh->rclFrame.top, emh->rclFrame.right,
|
|
|
|
emh->rclFrame.bottom);
|
|
|
|
|
|
|
|
xSrcPixSize = (double) emh->szlMillimeters.cx / emh->szlDevice.cx;
|
|
|
|
ySrcPixSize = (double) emh->szlMillimeters.cy / emh->szlDevice.cy;
|
|
|
|
xscale = (double) WIDTH(*lpRect) * 100.0 /
|
|
|
|
WIDTH(emh->rclFrame) * xSrcPixSize;
|
|
|
|
yscale = (double) HEIGHT(*lpRect) * 100.0 /
|
|
|
|
HEIGHT(emh->rclFrame) * ySrcPixSize;
|
|
|
|
TRACE("xscale = %f, yscale = %f\n", xscale, yscale);
|
|
|
|
|
|
|
|
xform.eM11 = xscale;
|
|
|
|
xform.eM12 = 0;
|
|
|
|
xform.eM21 = 0;
|
|
|
|
xform.eM22 = yscale;
|
|
|
|
xform.eDx = (double) lpRect->left - (double) WIDTH(*lpRect) / WIDTH(emh->rclFrame) * emh->rclFrame.left;
|
|
|
|
xform.eDy = (double) lpRect->top - (double) HEIGHT(*lpRect) / HEIGHT(emh->rclFrame) * emh->rclFrame.top;
|
|
|
|
|
|
|
|
CombineTransform(&info->init_transform, &xform, &info->init_transform);
|
|
|
|
}
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2015-03-28 13:29:06 +01:00
|
|
|
/* WinNT resets the current vp/win org/ext */
|
|
|
|
if ( !IS_WIN9X() )
|
|
|
|
{
|
|
|
|
SetMapMode(hdc, MM_TEXT);
|
|
|
|
SetWindowOrgEx(hdc, 0, 0, NULL);
|
|
|
|
SetViewportOrgEx(hdc, 0, 0, NULL);
|
|
|
|
EMF_Update_MF_Xform(hdc, info);
|
|
|
|
}
|
2003-02-15 00:30:27 +01:00
|
|
|
}
|
2000-10-24 03:37:49 +02:00
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
offset = 0;
|
|
|
|
while(ret && offset < emh->nBytes)
|
|
|
|
{
|
|
|
|
emr = (ENHMETARECORD *)((char *)emh + offset);
|
2008-10-22 06:43:19 +02:00
|
|
|
|
|
|
|
/* In Win9x mode we update the xform if the record will produce output */
|
|
|
|
if (hdc && IS_WIN9X() && emr_produces_output(emr->iType))
|
|
|
|
EMF_Update_MF_Xform(hdc, info);
|
|
|
|
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("Calling EnumFunc with record %s, size %d\n", get_emr_name(emr->iType), emr->nSize);
|
2003-02-15 00:30:27 +01:00
|
|
|
ret = (*callback)(hdc, ht, emr, emh->nHandles, (LPARAM)data);
|
2000-10-24 03:37:49 +02:00
|
|
|
offset += emr->nSize;
|
2008-10-22 06:43:19 +02:00
|
|
|
|
|
|
|
/* WinNT - update the transform (win9x updates when the next graphics
|
|
|
|
output record is played). */
|
|
|
|
if (hdc && !IS_WIN9X())
|
|
|
|
EMF_Update_MF_Xform(hdc, info);
|
1999-05-02 11:23:51 +02:00
|
|
|
}
|
2000-10-24 03:37:49 +02:00
|
|
|
|
2001-01-24 20:38:38 +01:00
|
|
|
if (hdc)
|
|
|
|
{
|
2005-10-12 23:06:20 +02:00
|
|
|
SetStretchBltMode(hdc, old_stretchblt);
|
|
|
|
SetPolyFillMode(hdc, old_polyfill);
|
|
|
|
SetArcDirection(hdc, old_arcdir);
|
|
|
|
SetROP2(hdc, old_rop2);
|
|
|
|
SetTextAlign(hdc, old_align);
|
2003-11-11 01:43:03 +01:00
|
|
|
SetBkColor(hdc, old_bk_color);
|
|
|
|
SetTextColor(hdc, old_text_color);
|
|
|
|
|
2008-05-25 14:32:31 +02:00
|
|
|
/* restore DC */
|
2001-01-24 20:38:38 +01:00
|
|
|
SelectObject(hdc, hBrush);
|
|
|
|
SelectObject(hdc, hPen);
|
|
|
|
SelectObject(hdc, hFont);
|
2008-05-25 14:32:31 +02:00
|
|
|
ExtSelectClipRgn(hdc, hRgn, RGN_COPY);
|
|
|
|
DeleteObject(hRgn);
|
2001-01-24 20:38:38 +01:00
|
|
|
|
|
|
|
SetWorldTransform(hdc, &savedXform);
|
|
|
|
if (savedMode)
|
|
|
|
SetGraphicsMode(hdc, savedMode);
|
2003-02-15 00:30:27 +01:00
|
|
|
SetMapMode(hdc, mapMode);
|
|
|
|
SetWindowOrgEx(hdc, win_org.x, win_org.y, NULL);
|
|
|
|
SetWindowExtEx(hdc, win_size.cx, win_size.cy, NULL);
|
|
|
|
SetViewportOrgEx(hdc, vp_org.x, vp_org.y, NULL);
|
|
|
|
SetViewportExtEx(hdc, vp_size.cx, vp_size.cy, NULL);
|
2001-01-24 20:38:38 +01:00
|
|
|
}
|
2000-10-24 03:37:49 +02:00
|
|
|
|
2001-01-24 20:38:38 +01:00
|
|
|
for(i = 1; i < emh->nHandles; i++) /* Don't delete element 0 (hmf) */
|
2000-03-30 22:22:41 +02:00
|
|
|
if( (ht->objectHandle)[i] )
|
|
|
|
DeleteObject( (ht->objectHandle)[i] );
|
2000-10-24 03:37:49 +02:00
|
|
|
|
2008-04-28 09:02:31 +02:00
|
|
|
while (info->saved_state)
|
|
|
|
{
|
|
|
|
EMF_dc_state *state = info->saved_state;
|
|
|
|
info->saved_state = info->saved_state->next;
|
|
|
|
HeapFree( GetProcessHeap(), 0, state );
|
|
|
|
}
|
2003-02-15 00:30:27 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, info );
|
1999-05-02 11:23:51 +02:00
|
|
|
return ret;
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
2000-03-30 22:22:41 +02:00
|
|
|
static INT CALLBACK EMF_PlayEnhMetaFileCallback(HDC hdc, HANDLETABLE *ht,
|
2003-02-15 00:30:27 +01:00
|
|
|
const ENHMETARECORD *emr,
|
|
|
|
INT handles, LPARAM data)
|
2000-03-30 22:22:41 +02:00
|
|
|
{
|
|
|
|
return PlayEnhMetaFileRecord(hdc, ht, emr, handles);
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-03-30 22:22:41 +02:00
|
|
|
/**************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* PlayEnhMetaFile (GDI32.@)
|
2000-03-30 22:22:41 +02:00
|
|
|
*
|
|
|
|
* Renders an enhanced metafile into a specified rectangle *lpRect
|
|
|
|
* in device context hdc.
|
|
|
|
*
|
2005-11-05 11:45:02 +01:00
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
2000-03-30 22:22:41 +02:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
BOOL WINAPI PlayEnhMetaFile(
|
2000-12-02 00:58:28 +01:00
|
|
|
HDC hdc, /* [in] DC to render into */
|
|
|
|
HENHMETAFILE hmf, /* [in] metafile to render */
|
|
|
|
const RECT *lpRect /* [in] rectangle to place metafile inside */
|
2000-03-30 22:22:41 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return EnumEnhMetaFile(hdc, hmf, EMF_PlayEnhMetaFileCallback, NULL,
|
|
|
|
lpRect);
|
|
|
|
}
|
|
|
|
|
1998-03-15 21:29:56 +01:00
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* DeleteEnhMetaFile (GDI32.@)
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
*
|
|
|
|
* Deletes an enhanced metafile and frees the associated storage.
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
1999-05-02 11:23:51 +02:00
|
|
|
BOOL WINAPI DeleteEnhMetaFile(HENHMETAFILE hmf)
|
|
|
|
{
|
|
|
|
return EMF_Delete_HENHMETAFILE( hmf );
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2004-02-09 21:47:42 +01:00
|
|
|
* CopyEnhMetaFileA (GDI32.@)
|
|
|
|
*
|
|
|
|
* Duplicate an enhanced metafile.
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
HENHMETAFILE WINAPI CopyEnhMetaFileA(
|
2002-06-01 01:06:46 +02:00
|
|
|
HENHMETAFILE hmfSrc,
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
LPCSTR file)
|
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
ENHMETAHEADER *emrSrc = EMF_GetEnhMetaHeader( hmfSrc ), *emrDst;
|
|
|
|
HENHMETAFILE hmfDst;
|
|
|
|
|
1999-06-12 08:49:52 +02:00
|
|
|
if(!emrSrc) return FALSE;
|
1999-05-02 11:23:51 +02:00
|
|
|
if (!file) {
|
2000-02-16 23:47:24 +01:00
|
|
|
emrDst = HeapAlloc( GetProcessHeap(), 0, emrSrc->nBytes );
|
1999-05-02 11:23:51 +02:00
|
|
|
memcpy( emrDst, emrSrc, emrSrc->nBytes );
|
2001-07-25 00:15:47 +02:00
|
|
|
hmfDst = EMF_Create_HENHMETAFILE( emrDst, FALSE );
|
2009-12-14 15:12:58 +01:00
|
|
|
if (!hmfDst)
|
|
|
|
HeapFree( GetProcessHeap(), 0, emrDst );
|
1999-05-02 11:23:51 +02:00
|
|
|
} else {
|
2001-01-06 02:29:18 +01:00
|
|
|
HANDLE hFile;
|
2004-12-22 19:38:31 +01:00
|
|
|
DWORD w;
|
2002-08-17 03:37:50 +02:00
|
|
|
hFile = CreateFileA( file, GENERIC_WRITE | GENERIC_READ, 0,
|
|
|
|
NULL, CREATE_ALWAYS, 0, 0);
|
2004-12-22 19:38:31 +01:00
|
|
|
WriteFile( hFile, emrSrc, emrSrc->nBytes, &w, NULL);
|
2002-08-17 03:37:50 +02:00
|
|
|
CloseHandle( hFile );
|
|
|
|
/* Reopen file for reading only, so that apps can share
|
|
|
|
read access to the file while hmf is still valid */
|
|
|
|
hFile = CreateFileA( file, GENERIC_READ, FILE_SHARE_READ,
|
|
|
|
NULL, OPEN_EXISTING, 0, 0);
|
|
|
|
if(hFile == INVALID_HANDLE_VALUE) {
|
|
|
|
ERR("Can't reopen emf for reading\n");
|
|
|
|
return 0;
|
|
|
|
}
|
1999-05-02 11:23:51 +02:00
|
|
|
hmfDst = EMF_GetEnhMetaFile( hFile );
|
2001-07-25 00:15:47 +02:00
|
|
|
CloseHandle( hFile );
|
1999-05-02 11:23:51 +02:00
|
|
|
}
|
|
|
|
return hmfDst;
|
1998-03-29 21:44:57 +02:00
|
|
|
}
|
|
|
|
|
2003-12-01 23:42:56 +01:00
|
|
|
/*****************************************************************************
|
2004-02-09 21:47:42 +01:00
|
|
|
* CopyEnhMetaFileW (GDI32.@)
|
|
|
|
*
|
|
|
|
* See CopyEnhMetaFileA.
|
2003-12-01 23:42:56 +01:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HENHMETAFILE WINAPI CopyEnhMetaFileW(
|
|
|
|
HENHMETAFILE hmfSrc,
|
|
|
|
LPCWSTR file)
|
|
|
|
{
|
|
|
|
ENHMETAHEADER *emrSrc = EMF_GetEnhMetaHeader( hmfSrc ), *emrDst;
|
|
|
|
HENHMETAFILE hmfDst;
|
|
|
|
|
|
|
|
if(!emrSrc) return FALSE;
|
|
|
|
if (!file) {
|
|
|
|
emrDst = HeapAlloc( GetProcessHeap(), 0, emrSrc->nBytes );
|
|
|
|
memcpy( emrDst, emrSrc, emrSrc->nBytes );
|
|
|
|
hmfDst = EMF_Create_HENHMETAFILE( emrDst, FALSE );
|
2009-12-14 15:12:58 +01:00
|
|
|
if (!hmfDst)
|
|
|
|
HeapFree( GetProcessHeap(), 0, emrDst );
|
2003-12-01 23:42:56 +01:00
|
|
|
} else {
|
|
|
|
HANDLE hFile;
|
2004-12-22 19:38:31 +01:00
|
|
|
DWORD w;
|
2003-12-01 23:42:56 +01:00
|
|
|
hFile = CreateFileW( file, GENERIC_WRITE | GENERIC_READ, 0,
|
|
|
|
NULL, CREATE_ALWAYS, 0, 0);
|
2004-12-22 19:38:31 +01:00
|
|
|
WriteFile( hFile, emrSrc, emrSrc->nBytes, &w, NULL);
|
2003-12-01 23:42:56 +01:00
|
|
|
CloseHandle( hFile );
|
|
|
|
/* Reopen file for reading only, so that apps can share
|
|
|
|
read access to the file while hmf is still valid */
|
|
|
|
hFile = CreateFileW( file, GENERIC_READ, FILE_SHARE_READ,
|
|
|
|
NULL, OPEN_EXISTING, 0, 0);
|
|
|
|
if(hFile == INVALID_HANDLE_VALUE) {
|
|
|
|
ERR("Can't reopen emf for reading\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
hmfDst = EMF_GetEnhMetaFile( hFile );
|
|
|
|
CloseHandle( hFile );
|
|
|
|
}
|
|
|
|
return hmfDst;
|
|
|
|
}
|
|
|
|
|
1999-05-02 11:23:51 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
/* Struct to be used to be passed in the LPVOID parameter for cbEnhPaletteCopy */
|
|
|
|
typedef struct tagEMF_PaletteCopy
|
|
|
|
{
|
|
|
|
UINT cEntries;
|
|
|
|
LPPALETTEENTRY lpPe;
|
|
|
|
} EMF_PaletteCopy;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
/***************************************************************
|
1999-12-12 00:18:10 +01:00
|
|
|
* Find the EMR_EOF record and then use it to find the
|
2002-06-01 01:06:46 +02:00
|
|
|
* palette entries for this enhanced metafile.
|
2005-03-23 14:15:18 +01:00
|
|
|
* The lpData is actually a pointer to an EMF_PaletteCopy struct
|
1999-12-12 00:18:10 +01:00
|
|
|
* which contains the max number of elements to copy and where
|
|
|
|
* to copy them to.
|
|
|
|
*
|
|
|
|
* NOTE: To be used by GetEnhMetaFilePaletteEntries only!
|
|
|
|
*/
|
2005-07-05 14:49:14 +02:00
|
|
|
static INT CALLBACK cbEnhPaletteCopy( HDC a,
|
2003-02-15 00:30:27 +01:00
|
|
|
HANDLETABLE *b,
|
|
|
|
const ENHMETARECORD *lpEMR,
|
1999-12-12 00:18:10 +01:00
|
|
|
INT c,
|
2003-02-15 00:30:27 +01:00
|
|
|
LPARAM lpData )
|
1999-12-12 00:18:10 +01:00
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
if ( lpEMR->iType == EMR_EOF )
|
|
|
|
{
|
2006-09-14 02:19:34 +02:00
|
|
|
const EMREOF *lpEof = (const EMREOF *)lpEMR;
|
1999-12-12 00:18:10 +01:00
|
|
|
EMF_PaletteCopy* info = (EMF_PaletteCopy*)lpData;
|
2000-03-25 22:44:35 +01:00
|
|
|
DWORD dwNumPalToCopy = min( lpEof->nPalEntries, info->cEntries );
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE( "copying 0x%08x palettes\n", dwNumPalToCopy );
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2009-01-26 11:01:12 +01:00
|
|
|
memcpy( info->lpPe, (LPCSTR)lpEof + lpEof->offPalEntries,
|
1999-12-12 00:18:10 +01:00
|
|
|
sizeof( *(info->lpPe) ) * dwNumPalToCopy );
|
|
|
|
|
|
|
|
/* Update the passed data as a return code */
|
|
|
|
info->lpPe = NULL; /* Palettes were copied! */
|
2008-01-05 17:44:09 +01:00
|
|
|
info->cEntries = dwNumPalToCopy;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
|
|
|
return FALSE; /* That's all we need */
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1998-11-07 13:56:31 +01:00
|
|
|
/*****************************************************************************
|
2002-06-01 01:06:46 +02:00
|
|
|
* GetEnhMetaFilePaletteEntries (GDI32.@)
|
|
|
|
*
|
|
|
|
* Copy the palette and report size
|
|
|
|
*
|
1999-12-12 00:18:10 +01:00
|
|
|
* BUGS: Error codes (SetLastError) are not set on failures
|
1998-11-07 13:56:31 +01:00
|
|
|
*/
|
1999-12-12 00:18:10 +01:00
|
|
|
UINT WINAPI GetEnhMetaFilePaletteEntries( HENHMETAFILE hEmf,
|
|
|
|
UINT cEntries,
|
|
|
|
LPPALETTEENTRY lpPe )
|
1998-11-07 13:56:31 +01:00
|
|
|
{
|
1999-12-12 00:18:10 +01:00
|
|
|
ENHMETAHEADER* enhHeader = EMF_GetEnhMetaHeader( hEmf );
|
2002-06-01 01:06:46 +02:00
|
|
|
EMF_PaletteCopy infoForCallBack;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2002-11-22 23:16:53 +01:00
|
|
|
TRACE( "(%p,%d,%p)\n", hEmf, cEntries, lpPe );
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2006-04-07 18:37:06 +02:00
|
|
|
if (!enhHeader) return 0;
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
/* First check if there are any palettes associated with
|
|
|
|
this metafile. */
|
2001-08-24 01:37:00 +02:00
|
|
|
if ( enhHeader->nPalEntries == 0 ) return 0;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
|
|
|
/* Is the user requesting the number of palettes? */
|
2008-01-05 17:44:09 +01:00
|
|
|
if ( lpPe == NULL ) return enhHeader->nPalEntries;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
|
|
|
/* Copy cEntries worth of PALETTEENTRY structs into the buffer */
|
|
|
|
infoForCallBack.cEntries = cEntries;
|
2002-06-01 01:06:46 +02:00
|
|
|
infoForCallBack.lpPe = lpPe;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
if ( !EnumEnhMetaFile( 0, hEmf, cbEnhPaletteCopy,
|
2003-02-15 00:30:27 +01:00
|
|
|
&infoForCallBack, 0 ) )
|
2001-08-24 01:37:00 +02:00
|
|
|
return GDI_ERROR;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
|
|
|
/* Verify that the callback executed correctly */
|
|
|
|
if ( infoForCallBack.lpPe != NULL )
|
|
|
|
{
|
|
|
|
/* Callback proc had error! */
|
|
|
|
ERR( "cbEnhPaletteCopy didn't execute correctly\n" );
|
2001-08-24 01:37:00 +02:00
|
|
|
return GDI_ERROR;
|
1999-12-12 00:18:10 +01:00
|
|
|
}
|
|
|
|
|
2001-08-24 01:37:00 +02:00
|
|
|
return infoForCallBack.cEntries;
|
1998-11-07 13:56:31 +01:00
|
|
|
}
|
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
typedef struct gdi_mf_comment
|
|
|
|
{
|
|
|
|
DWORD ident;
|
|
|
|
DWORD iComment;
|
|
|
|
DWORD nVersion;
|
|
|
|
DWORD nChecksum;
|
|
|
|
DWORD fFlags;
|
|
|
|
DWORD cbWinMetaFile;
|
|
|
|
} gdi_mf_comment;
|
|
|
|
|
1998-11-07 13:56:31 +01:00
|
|
|
/******************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* SetWinMetaFileBits (GDI32.@)
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
1998-11-07 13:56:31 +01:00
|
|
|
* Translate from old style to new style.
|
1999-12-04 04:56:53 +01:00
|
|
|
*
|
1998-11-07 13:56:31 +01:00
|
|
|
*/
|
2013-09-23 00:23:49 +02:00
|
|
|
HENHMETAFILE WINAPI SetWinMetaFileBits(UINT cbBuffer, const BYTE *lpbBuffer, HDC hdcRef,
|
|
|
|
const METAFILEPICT *lpmfp)
|
1998-11-07 13:56:31 +01:00
|
|
|
{
|
2004-09-14 01:22:30 +02:00
|
|
|
static const WCHAR szDisplayW[] = { 'D','I','S','P','L','A','Y','\0' };
|
2005-04-13 12:57:59 +02:00
|
|
|
HMETAFILE hmf = NULL;
|
|
|
|
HENHMETAFILE ret = NULL;
|
|
|
|
HDC hdc = NULL, hdcdisp = NULL;
|
2002-08-17 03:37:50 +02:00
|
|
|
RECT rc, *prcFrame = NULL;
|
2006-06-20 16:02:37 +02:00
|
|
|
LONG mm, xExt, yExt;
|
2008-05-25 14:32:31 +02:00
|
|
|
INT horzsize, vertsize, horzres, vertres;
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2002-11-22 23:16:53 +01:00
|
|
|
TRACE("(%d, %p, %p, %p)\n", cbBuffer, lpbBuffer, hdcRef, lpmfp);
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
hmf = SetMetaFileBitsEx(cbBuffer, lpbBuffer);
|
|
|
|
if(!hmf)
|
|
|
|
{
|
|
|
|
WARN("SetMetaFileBitsEx failed\n");
|
2005-04-13 12:57:59 +02:00
|
|
|
return NULL;
|
2002-08-17 03:37:50 +02:00
|
|
|
}
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2002-08-17 03:37:50 +02:00
|
|
|
if(!hdcRef)
|
2004-09-14 01:22:30 +02:00
|
|
|
hdcRef = hdcdisp = CreateDCW(szDisplayW, NULL, NULL, NULL);
|
2002-08-17 03:37:50 +02:00
|
|
|
|
2005-04-13 12:57:59 +02:00
|
|
|
if (lpmfp)
|
2006-06-20 16:02:37 +02:00
|
|
|
{
|
2006-10-12 22:56:56 +02:00
|
|
|
TRACE("mm = %d %dx%d\n", lpmfp->mm, lpmfp->xExt, lpmfp->yExt);
|
2006-06-20 16:02:37 +02:00
|
|
|
|
|
|
|
mm = lpmfp->mm;
|
|
|
|
xExt = lpmfp->xExt;
|
|
|
|
yExt = lpmfp->yExt;
|
|
|
|
}
|
|
|
|
else
|
2005-04-13 12:57:59 +02:00
|
|
|
{
|
2006-06-20 16:02:37 +02:00
|
|
|
TRACE("lpmfp == NULL\n");
|
|
|
|
|
|
|
|
/* Use the whole device surface */
|
|
|
|
mm = MM_ANISOTROPIC;
|
|
|
|
xExt = 0;
|
|
|
|
yExt = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mm == MM_ISOTROPIC || mm == MM_ANISOTROPIC)
|
|
|
|
{
|
|
|
|
if (xExt < 0 || yExt < 0)
|
|
|
|
{
|
|
|
|
/* Use the whole device surface */
|
|
|
|
xExt = 0;
|
|
|
|
yExt = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Use the x and y extents as the frame box */
|
|
|
|
if (xExt && yExt)
|
|
|
|
{
|
|
|
|
rc.left = rc.top = 0;
|
|
|
|
rc.right = xExt;
|
|
|
|
rc.bottom = yExt;
|
|
|
|
prcFrame = &rc;
|
|
|
|
}
|
2002-08-17 03:37:50 +02:00
|
|
|
}
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2005-04-13 12:57:59 +02:00
|
|
|
if(!(hdc = CreateEnhMetaFileW(hdcRef, NULL, prcFrame, NULL)))
|
|
|
|
{
|
2006-06-20 16:02:37 +02:00
|
|
|
ERR("CreateEnhMetaFile failed\n");
|
2005-04-13 12:57:59 +02:00
|
|
|
goto end;
|
2002-08-17 03:37:50 +02:00
|
|
|
}
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
/*
|
|
|
|
* Write the original METAFILE into the enhanced metafile.
|
|
|
|
* It is encapsulated in a GDICOMMENT_WINDOWS_METAFILE record.
|
|
|
|
*/
|
2006-06-20 16:02:37 +02:00
|
|
|
if (mm != MM_TEXT)
|
2005-04-13 12:57:59 +02:00
|
|
|
{
|
2008-05-25 14:32:31 +02:00
|
|
|
gdi_mf_comment *mfcomment;
|
|
|
|
UINT mfcomment_size;
|
2005-04-13 12:57:59 +02:00
|
|
|
|
2008-05-25 14:32:31 +02:00
|
|
|
mfcomment_size = sizeof (gdi_mf_comment) + cbBuffer;
|
|
|
|
mfcomment = HeapAlloc(GetProcessHeap(), 0, mfcomment_size);
|
|
|
|
if (mfcomment)
|
2006-06-20 16:02:37 +02:00
|
|
|
{
|
2008-05-25 14:32:31 +02:00
|
|
|
mfcomment->ident = GDICOMMENT_IDENTIFIER;
|
|
|
|
mfcomment->iComment = GDICOMMENT_WINDOWS_METAFILE;
|
|
|
|
mfcomment->nVersion = 0x00000300;
|
|
|
|
mfcomment->nChecksum = 0; /* FIXME */
|
|
|
|
mfcomment->fFlags = 0;
|
|
|
|
mfcomment->cbWinMetaFile = cbBuffer;
|
|
|
|
memcpy(&mfcomment[1], lpbBuffer, cbBuffer);
|
|
|
|
GdiComment(hdc, mfcomment_size, (BYTE*) mfcomment);
|
|
|
|
HeapFree(GetProcessHeap(), 0, mfcomment);
|
2006-06-20 16:02:37 +02:00
|
|
|
}
|
2008-05-25 14:32:31 +02:00
|
|
|
SetMapMode(hdc, mm);
|
|
|
|
}
|
2005-04-13 12:57:59 +02:00
|
|
|
|
2008-05-25 14:32:31 +02:00
|
|
|
|
|
|
|
horzsize = GetDeviceCaps(hdcRef, HORZSIZE);
|
|
|
|
vertsize = GetDeviceCaps(hdcRef, VERTSIZE);
|
|
|
|
horzres = GetDeviceCaps(hdcRef, HORZRES);
|
|
|
|
vertres = GetDeviceCaps(hdcRef, VERTRES);
|
|
|
|
|
|
|
|
if (!xExt || !yExt)
|
|
|
|
{
|
|
|
|
/* Use the whole device surface */
|
|
|
|
xExt = horzres;
|
|
|
|
yExt = vertres;
|
2005-04-13 12:57:59 +02:00
|
|
|
}
|
2008-05-25 14:32:31 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
xExt = MulDiv(xExt, horzres, 100 * horzsize);
|
|
|
|
yExt = MulDiv(yExt, vertres, 100 * vertsize);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set the initial viewport:window ratio as 1:1 */
|
|
|
|
SetViewportExtEx(hdc, xExt, yExt, NULL);
|
|
|
|
SetWindowExtEx(hdc, xExt, yExt, NULL);
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
PlayMetaFile(hdc, hmf);
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2002-08-17 03:37:50 +02:00
|
|
|
ret = CloseEnhMetaFile(hdc);
|
2003-02-15 00:30:27 +01:00
|
|
|
end:
|
2005-04-13 12:57:59 +02:00
|
|
|
if (hdcdisp) DeleteDC(hdcdisp);
|
2002-08-17 03:37:50 +02:00
|
|
|
DeleteMetaFile(hmf);
|
|
|
|
return ret;
|
1999-12-04 04:56:53 +01:00
|
|
|
}
|