1997-02-02 20:01:52 +01:00
|
|
|
/*
|
|
|
|
* GDI objects
|
|
|
|
*
|
|
|
|
* Copyright 1993 Alexandre Julliard
|
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
|
1997-02-02 20:01:52 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
1999-07-31 19:36:48 +02:00
|
|
|
#include <string.h>
|
2004-03-04 21:41:12 +01:00
|
|
|
#include <stdarg.h>
|
1999-07-31 19:36:48 +02:00
|
|
|
|
2004-03-04 21:41:12 +01:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
2002-11-21 22:50:04 +01:00
|
|
|
#include "wownt32.h"
|
2002-03-27 22:13:40 +01:00
|
|
|
#include "mfdrv/metafiledrv.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"
|
1997-02-02 20:01:52 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(metafile);
|
2001-07-23 01:34:21 +02:00
|
|
|
|
2003-11-26 04:38:11 +01:00
|
|
|
/******************************************************************
|
|
|
|
* MFDRV_AddHandle
|
|
|
|
*/
|
|
|
|
UINT MFDRV_AddHandle( PHYSDEV dev, HGDIOBJ obj )
|
|
|
|
{
|
|
|
|
METAFILEDRV_PDEVICE *physDev = (METAFILEDRV_PDEVICE *)dev;
|
2004-09-08 03:23:57 +02:00
|
|
|
UINT16 index;
|
2003-11-26 04:38:11 +01:00
|
|
|
|
|
|
|
for(index = 0; index < physDev->handles_size; index++)
|
|
|
|
if(physDev->handles[index] == 0) break;
|
|
|
|
if(index == physDev->handles_size) {
|
|
|
|
physDev->handles_size += HANDLE_LIST_INC;
|
|
|
|
physDev->handles = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
physDev->handles,
|
|
|
|
physDev->handles_size * sizeof(physDev->handles[0]));
|
|
|
|
}
|
|
|
|
physDev->handles[index] = obj;
|
|
|
|
|
|
|
|
physDev->cur_handles++;
|
|
|
|
if(physDev->cur_handles > physDev->mh->mtNoObjects)
|
|
|
|
physDev->mh->mtNoObjects++;
|
|
|
|
|
|
|
|
return index ; /* index 0 is not reserved for metafiles */
|
|
|
|
}
|
|
|
|
|
2007-01-02 17:09:10 +01:00
|
|
|
/******************************************************************
|
|
|
|
* MFDRV_RemoveHandle
|
|
|
|
*/
|
|
|
|
BOOL MFDRV_RemoveHandle( PHYSDEV dev, UINT index )
|
|
|
|
{
|
|
|
|
METAFILEDRV_PDEVICE *physDev = (METAFILEDRV_PDEVICE *)dev;
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
|
|
|
|
if (index < physDev->handles_size && physDev->handles[index])
|
|
|
|
{
|
|
|
|
physDev->handles[index] = 0;
|
|
|
|
physDev->cur_handles--;
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2003-11-26 04:38:11 +01:00
|
|
|
/******************************************************************
|
|
|
|
* MFDRV_FindObject
|
|
|
|
*/
|
|
|
|
static INT16 MFDRV_FindObject( PHYSDEV dev, HGDIOBJ obj )
|
|
|
|
{
|
|
|
|
METAFILEDRV_PDEVICE *physDev = (METAFILEDRV_PDEVICE *)dev;
|
|
|
|
INT16 index;
|
|
|
|
|
|
|
|
for(index = 0; index < physDev->handles_size; index++)
|
|
|
|
if(physDev->handles[index] == obj) break;
|
|
|
|
|
|
|
|
if(index == physDev->handles_size) return -1;
|
|
|
|
|
|
|
|
return index ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* MFDRV_DeleteObject
|
|
|
|
*/
|
|
|
|
BOOL MFDRV_DeleteObject( PHYSDEV dev, HGDIOBJ obj )
|
|
|
|
{
|
|
|
|
METARECORD mr;
|
|
|
|
METAFILEDRV_PDEVICE *physDev = (METAFILEDRV_PDEVICE *)dev;
|
|
|
|
INT16 index;
|
|
|
|
BOOL ret = TRUE;
|
|
|
|
|
|
|
|
index = MFDRV_FindObject(dev, obj);
|
|
|
|
if( index < 0 )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
mr.rdSize = sizeof mr / 2;
|
|
|
|
mr.rdFunction = META_DELETEOBJECT;
|
|
|
|
mr.rdParm[0] = index;
|
|
|
|
|
|
|
|
if(!MFDRV_WriteRecord( dev, &mr, mr.rdSize*2 ))
|
|
|
|
ret = FALSE;
|
|
|
|
|
|
|
|
physDev->handles[index] = 0;
|
|
|
|
physDev->cur_handles--;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* MFDRV_SelectObject
|
|
|
|
*/
|
|
|
|
static BOOL MFDRV_SelectObject( PHYSDEV dev, INT16 index)
|
|
|
|
{
|
|
|
|
METARECORD mr;
|
|
|
|
|
|
|
|
mr.rdSize = sizeof mr / 2;
|
|
|
|
mr.rdFunction = META_SELECTOBJECT;
|
|
|
|
mr.rdParm[0] = index;
|
|
|
|
|
|
|
|
return MFDRV_WriteRecord( dev, &mr, mr.rdSize*2 );
|
|
|
|
}
|
|
|
|
|
1999-04-19 16:56:29 +02:00
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
/***********************************************************************
|
2002-03-28 23:22:05 +01:00
|
|
|
* MFDRV_SelectBitmap
|
1997-02-02 20:01:52 +01:00
|
|
|
*/
|
2002-03-28 23:22:05 +01:00
|
|
|
HBITMAP MFDRV_SelectBitmap( PHYSDEV dev, HBITMAP hbitmap )
|
1997-02-02 20:01:52 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-01-14 16:12:59 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* Internal helper for MFDRV_CreateBrushIndirect():
|
|
|
|
* Change the padding of a bitmap from 16 (BMP) to 32 (DIB) bits.
|
|
|
|
*/
|
|
|
|
static inline void MFDRV_PadTo32(LPBYTE lpRows, int height, int width)
|
|
|
|
{
|
|
|
|
int bytes16 = 2 * ((width + 15) / 16);
|
|
|
|
int bytes32 = 4 * ((width + 31) / 32);
|
|
|
|
LPBYTE lpSrc, lpDst;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!height)
|
|
|
|
return;
|
|
|
|
|
|
|
|
height = abs(height) - 1;
|
|
|
|
lpSrc = lpRows + height * bytes16;
|
|
|
|
lpDst = lpRows + height * bytes32;
|
|
|
|
|
|
|
|
/* Note that we work backwards so we can re-pad in place */
|
|
|
|
while (height >= 0)
|
|
|
|
{
|
|
|
|
for (i = bytes32; i > bytes16; i--)
|
|
|
|
lpDst[i - 1] = 0; /* Zero the padding bytes */
|
|
|
|
for (; i > 0; i--)
|
|
|
|
lpDst[i - 1] = lpSrc[i - 1]; /* Move image bytes into alignment */
|
|
|
|
lpSrc -= bytes16;
|
|
|
|
lpDst -= bytes32;
|
|
|
|
height--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* Internal helper for MFDRV_CreateBrushIndirect():
|
|
|
|
* Reverse order of bitmap rows in going from BMP to DIB.
|
|
|
|
*/
|
|
|
|
static inline void MFDRV_Reverse(LPBYTE lpRows, int height, int width)
|
|
|
|
{
|
|
|
|
int bytes = 4 * ((width + 31) / 32);
|
|
|
|
LPBYTE lpSrc, lpDst;
|
|
|
|
BYTE temp;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!height)
|
|
|
|
return;
|
|
|
|
|
|
|
|
lpSrc = lpRows;
|
|
|
|
lpDst = lpRows + (height-1) * bytes;
|
|
|
|
height = height/2;
|
|
|
|
|
|
|
|
while (height > 0)
|
|
|
|
{
|
|
|
|
for (i = 0; i < bytes; i++)
|
|
|
|
{
|
|
|
|
temp = lpDst[i];
|
|
|
|
lpDst[i] = lpSrc[i];
|
|
|
|
lpSrc[i] = temp;
|
|
|
|
}
|
|
|
|
lpSrc += bytes;
|
|
|
|
lpDst -= bytes;
|
|
|
|
height--;
|
|
|
|
}
|
|
|
|
}
|
1997-02-02 20:01:52 +01:00
|
|
|
|
1999-04-15 18:46:51 +02:00
|
|
|
/******************************************************************
|
|
|
|
* MFDRV_CreateBrushIndirect
|
|
|
|
*/
|
|
|
|
|
2002-03-28 23:22:05 +01:00
|
|
|
INT16 MFDRV_CreateBrushIndirect(PHYSDEV dev, HBRUSH hBrush )
|
1999-04-15 18:46:51 +02:00
|
|
|
{
|
1999-04-25 11:24:23 +02:00
|
|
|
DWORD size;
|
1999-04-15 18:46:51 +02:00
|
|
|
METARECORD *mr;
|
2001-07-23 01:34:21 +02:00
|
|
|
LOGBRUSH logbrush;
|
2002-03-28 23:22:05 +01:00
|
|
|
METAFILEDRV_PDEVICE *physDev = (METAFILEDRV_PDEVICE *)dev;
|
2003-11-26 04:38:11 +01:00
|
|
|
BOOL r;
|
2001-07-23 01:34:21 +02:00
|
|
|
|
|
|
|
if (!GetObjectA( hBrush, sizeof(logbrush), &logbrush )) return -1;
|
|
|
|
|
|
|
|
switch(logbrush.lbStyle)
|
|
|
|
{
|
1999-04-25 11:24:23 +02:00
|
|
|
case BS_SOLID:
|
|
|
|
case BS_NULL:
|
|
|
|
case BS_HATCHED:
|
|
|
|
{
|
|
|
|
LOGBRUSH16 lb16;
|
|
|
|
|
2001-07-23 01:34:21 +02:00
|
|
|
lb16.lbStyle = logbrush.lbStyle;
|
|
|
|
lb16.lbColor = logbrush.lbColor;
|
|
|
|
lb16.lbHatch = logbrush.lbHatch;
|
1999-04-25 11:24:23 +02:00
|
|
|
size = sizeof(METARECORD) + sizeof(LOGBRUSH16) - 2;
|
2000-02-16 23:47:24 +01:00
|
|
|
mr = HeapAlloc( GetProcessHeap(), 0, size );
|
1999-04-25 11:24:23 +02:00
|
|
|
mr->rdSize = size / 2;
|
|
|
|
mr->rdFunction = META_CREATEBRUSHINDIRECT;
|
2003-11-26 04:38:11 +01:00
|
|
|
memcpy( mr->rdParm, &lb16, sizeof(LOGBRUSH16));
|
1999-04-25 11:24:23 +02:00
|
|
|
break;
|
|
|
|
}
|
1999-04-15 18:46:51 +02:00
|
|
|
case BS_PATTERN:
|
|
|
|
{
|
|
|
|
BITMAP bm;
|
1999-04-25 11:24:23 +02:00
|
|
|
BITMAPINFO *info;
|
|
|
|
DWORD bmSize;
|
2005-01-14 16:12:59 +01:00
|
|
|
COLORREF cref;
|
1999-04-15 18:46:51 +02:00
|
|
|
|
2002-11-21 22:50:04 +01:00
|
|
|
GetObjectA((HANDLE)logbrush.lbHatch, sizeof(bm), &bm);
|
1999-04-15 18:46:51 +02:00
|
|
|
if(bm.bmBitsPixel != 1 || bm.bmPlanes != 1) {
|
1999-12-08 04:56:23 +01:00
|
|
|
FIXME("Trying to store a colour pattern brush\n");
|
2000-08-19 23:38:55 +02:00
|
|
|
goto done;
|
1999-04-15 18:46:51 +02:00
|
|
|
}
|
|
|
|
|
2004-11-22 19:19:59 +01:00
|
|
|
bmSize = DIB_GetDIBImageBytes(bm.bmWidth, bm.bmHeight, DIB_PAL_COLORS);
|
1999-04-15 18:46:51 +02:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
size = sizeof(METARECORD) + sizeof(WORD) + sizeof(BITMAPINFO) +
|
1999-04-15 18:46:51 +02:00
|
|
|
sizeof(RGBQUAD) + bmSize;
|
1999-04-25 11:24:23 +02:00
|
|
|
|
2000-02-16 23:47:24 +01:00
|
|
|
mr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
|
2000-08-19 23:38:55 +02:00
|
|
|
if(!mr) goto done;
|
1999-04-15 18:46:51 +02:00
|
|
|
mr->rdFunction = META_DIBCREATEPATTERNBRUSH;
|
1999-04-25 11:24:23 +02:00
|
|
|
mr->rdSize = size / 2;
|
1999-04-15 18:46:51 +02:00
|
|
|
mr->rdParm[0] = BS_PATTERN;
|
|
|
|
mr->rdParm[1] = DIB_RGB_COLORS;
|
|
|
|
info = (BITMAPINFO *)(mr->rdParm + 2);
|
|
|
|
|
|
|
|
info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
|
|
|
|
info->bmiHeader.biWidth = bm.bmWidth;
|
|
|
|
info->bmiHeader.biHeight = bm.bmHeight;
|
|
|
|
info->bmiHeader.biPlanes = 1;
|
|
|
|
info->bmiHeader.biBitCount = 1;
|
2005-01-14 16:12:59 +01:00
|
|
|
info->bmiHeader.biSizeImage = bmSize;
|
|
|
|
|
|
|
|
GetBitmapBits((HANDLE)logbrush.lbHatch,
|
|
|
|
bm.bmHeight * BITMAP_GetWidthBytes (bm.bmWidth, bm.bmBitsPixel),
|
|
|
|
(LPBYTE)info + sizeof(BITMAPINFO) + sizeof(RGBQUAD));
|
|
|
|
|
|
|
|
/* Change the padding to be DIB compatible if needed */
|
|
|
|
if(bm.bmWidth & 31)
|
|
|
|
MFDRV_PadTo32((LPBYTE)info + sizeof(BITMAPINFO) + sizeof(RGBQUAD),
|
|
|
|
bm.bmWidth, bm.bmHeight);
|
|
|
|
/* BMP and DIB have opposite row order conventions */
|
|
|
|
MFDRV_Reverse((LPBYTE)info + sizeof(BITMAPINFO) + sizeof(RGBQUAD),
|
|
|
|
bm.bmWidth, bm.bmHeight);
|
|
|
|
|
|
|
|
cref = GetTextColor(physDev->hdc);
|
|
|
|
info->bmiColors[0].rgbRed = GetRValue(cref);
|
|
|
|
info->bmiColors[0].rgbGreen = GetGValue(cref);
|
|
|
|
info->bmiColors[0].rgbBlue = GetBValue(cref);
|
|
|
|
info->bmiColors[0].rgbReserved = 0;
|
|
|
|
cref = GetBkColor(physDev->hdc);
|
|
|
|
info->bmiColors[1].rgbRed = GetRValue(cref);
|
|
|
|
info->bmiColors[1].rgbGreen = GetGValue(cref);
|
|
|
|
info->bmiColors[1].rgbBlue = GetBValue(cref);
|
|
|
|
info->bmiColors[1].rgbReserved = 0;
|
1999-04-15 18:46:51 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case BS_DIBPATTERN:
|
1999-04-25 11:24:23 +02:00
|
|
|
{
|
|
|
|
BITMAPINFO *info;
|
|
|
|
DWORD bmSize, biSize;
|
|
|
|
|
2001-07-23 01:34:21 +02:00
|
|
|
info = GlobalLock16((HGLOBAL16)logbrush.lbHatch);
|
1999-04-25 11:24:23 +02:00
|
|
|
if (info->bmiHeader.biCompression)
|
|
|
|
bmSize = info->bmiHeader.biSizeImage;
|
|
|
|
else
|
|
|
|
bmSize = DIB_GetDIBImageBytes(info->bmiHeader.biWidth,
|
|
|
|
info->bmiHeader.biHeight,
|
|
|
|
info->bmiHeader.biBitCount);
|
2001-07-23 01:34:21 +02:00
|
|
|
biSize = DIB_BitmapInfoSize(info, LOWORD(logbrush.lbColor));
|
1999-04-25 11:24:23 +02:00
|
|
|
size = sizeof(METARECORD) + biSize + bmSize + 2;
|
2000-02-16 23:47:24 +01:00
|
|
|
mr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
|
2000-08-19 23:38:55 +02:00
|
|
|
if(!mr) goto done;
|
1999-04-25 11:24:23 +02:00
|
|
|
mr->rdFunction = META_DIBCREATEPATTERNBRUSH;
|
|
|
|
mr->rdSize = size / 2;
|
2001-07-23 01:34:21 +02:00
|
|
|
*(mr->rdParm) = logbrush.lbStyle;
|
|
|
|
*(mr->rdParm + 1) = LOWORD(logbrush.lbColor);
|
1999-04-25 11:24:23 +02:00
|
|
|
memcpy(mr->rdParm + 2, info, biSize + bmSize);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2001-07-23 01:34:21 +02:00
|
|
|
FIXME("Unkonwn brush style %x\n", logbrush.lbStyle);
|
2003-11-26 04:38:11 +01:00
|
|
|
return 0;
|
1999-04-15 18:46:51 +02:00
|
|
|
}
|
2003-11-26 04:38:11 +01:00
|
|
|
r = MFDRV_WriteRecord( dev, mr, mr->rdSize * 2);
|
2000-02-16 23:47:24 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, mr);
|
2003-11-26 04:38:11 +01:00
|
|
|
if( !r )
|
|
|
|
return -1;
|
2000-08-19 23:38:55 +02:00
|
|
|
done:
|
2003-11-26 04:38:11 +01:00
|
|
|
return MFDRV_AddHandle( dev, hBrush );
|
1999-04-15 18:46:51 +02:00
|
|
|
}
|
|
|
|
|
1999-04-25 11:24:23 +02:00
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
/***********************************************************************
|
2002-03-28 23:22:05 +01:00
|
|
|
* MFDRV_SelectBrush
|
1997-02-02 20:01:52 +01:00
|
|
|
*/
|
2002-03-28 23:22:05 +01:00
|
|
|
HBRUSH MFDRV_SelectBrush( PHYSDEV dev, HBRUSH hbrush )
|
1997-02-02 20:01:52 +01:00
|
|
|
{
|
2003-11-26 04:38:11 +01:00
|
|
|
METAFILEDRV_PDEVICE *physDev = (METAFILEDRV_PDEVICE *)dev;
|
1999-04-25 11:24:23 +02:00
|
|
|
INT16 index;
|
|
|
|
|
2003-11-26 04:38:11 +01:00
|
|
|
index = MFDRV_FindObject(dev, hbrush);
|
|
|
|
if( index < 0 )
|
|
|
|
{
|
|
|
|
index = MFDRV_CreateBrushIndirect( dev, hbrush );
|
|
|
|
if( index < 0 )
|
|
|
|
return 0;
|
|
|
|
GDI_hdc_using_object(hbrush, physDev->hdc);
|
|
|
|
}
|
|
|
|
return MFDRV_SelectObject( dev, index ) ? hbrush : HGDI_ERROR;
|
1997-02-02 20:01:52 +01:00
|
|
|
}
|
|
|
|
|
1999-04-15 18:46:51 +02:00
|
|
|
/******************************************************************
|
|
|
|
* MFDRV_CreateFontIndirect
|
|
|
|
*/
|
|
|
|
|
2003-11-26 04:38:11 +01:00
|
|
|
static UINT16 MFDRV_CreateFontIndirect(PHYSDEV dev, HFONT hFont, LOGFONT16 *logfont)
|
1999-04-15 18:46:51 +02:00
|
|
|
{
|
|
|
|
char buffer[sizeof(METARECORD) - 2 + sizeof(LOGFONT16)];
|
|
|
|
METARECORD *mr = (METARECORD *)&buffer;
|
|
|
|
|
|
|
|
mr->rdSize = (sizeof(METARECORD) + sizeof(LOGFONT16) - 2) / 2;
|
|
|
|
mr->rdFunction = META_CREATEFONTINDIRECT;
|
|
|
|
memcpy(&(mr->rdParm), logfont, sizeof(LOGFONT16));
|
2003-11-26 04:38:11 +01:00
|
|
|
if (!(MFDRV_WriteRecord( dev, mr, mr->rdSize * 2)))
|
|
|
|
return 0;
|
|
|
|
return MFDRV_AddHandle( dev, hFont );
|
1999-04-15 18:46:51 +02:00
|
|
|
}
|
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
2002-03-28 23:22:05 +01:00
|
|
|
* MFDRV_SelectFont
|
1997-02-02 20:01:52 +01:00
|
|
|
*/
|
2004-03-04 05:05:04 +01:00
|
|
|
HFONT MFDRV_SelectFont( PHYSDEV dev, HFONT hfont, HANDLE gdiFont )
|
1997-02-02 20:01:52 +01:00
|
|
|
{
|
2003-11-26 04:38:11 +01:00
|
|
|
METAFILEDRV_PDEVICE *physDev = (METAFILEDRV_PDEVICE *)dev;
|
2001-02-14 23:56:38 +01:00
|
|
|
LOGFONT16 lf16;
|
2003-11-26 04:38:11 +01:00
|
|
|
INT16 index;
|
2001-07-23 01:34:21 +02:00
|
|
|
|
2003-11-26 04:38:11 +01:00
|
|
|
index = MFDRV_FindObject(dev, hfont);
|
|
|
|
if( index < 0 )
|
|
|
|
{
|
|
|
|
if (!GetObject16( HFONT_16(hfont), sizeof(lf16), &lf16 ))
|
|
|
|
return HGDI_ERROR;
|
|
|
|
index = MFDRV_CreateFontIndirect(dev, hfont, &lf16);
|
|
|
|
if( index < 0 )
|
|
|
|
return HGDI_ERROR;
|
|
|
|
GDI_hdc_using_object(hfont, physDev->hdc);
|
|
|
|
}
|
|
|
|
return MFDRV_SelectObject( dev, index ) ? hfont : HGDI_ERROR;
|
1997-02-02 20:01:52 +01:00
|
|
|
}
|
|
|
|
|
1999-04-15 18:46:51 +02:00
|
|
|
/******************************************************************
|
|
|
|
* MFDRV_CreatePenIndirect
|
|
|
|
*/
|
2003-11-26 04:38:11 +01:00
|
|
|
static UINT16 MFDRV_CreatePenIndirect(PHYSDEV dev, HPEN hPen, LOGPEN16 *logpen)
|
1999-04-15 18:46:51 +02:00
|
|
|
{
|
|
|
|
char buffer[sizeof(METARECORD) - 2 + sizeof(*logpen)];
|
|
|
|
METARECORD *mr = (METARECORD *)&buffer;
|
|
|
|
|
|
|
|
mr->rdSize = (sizeof(METARECORD) + sizeof(*logpen) - 2) / 2;
|
|
|
|
mr->rdFunction = META_CREATEPENINDIRECT;
|
|
|
|
memcpy(&(mr->rdParm), logpen, sizeof(*logpen));
|
2003-11-26 04:38:11 +01:00
|
|
|
if (!(MFDRV_WriteRecord( dev, mr, mr->rdSize * 2)))
|
|
|
|
return 0;
|
|
|
|
return MFDRV_AddHandle( dev, hPen );
|
1999-04-15 18:46:51 +02:00
|
|
|
}
|
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
2002-03-28 23:22:05 +01:00
|
|
|
* MFDRV_SelectPen
|
1997-02-02 20:01:52 +01:00
|
|
|
*/
|
2002-03-28 23:22:05 +01:00
|
|
|
HPEN MFDRV_SelectPen( PHYSDEV dev, HPEN hpen )
|
1997-02-02 20:01:52 +01:00
|
|
|
{
|
2003-11-26 04:38:11 +01:00
|
|
|
METAFILEDRV_PDEVICE *physDev = (METAFILEDRV_PDEVICE *)dev;
|
1999-04-22 18:27:50 +02:00
|
|
|
LOGPEN16 logpen;
|
2003-11-26 04:38:11 +01:00
|
|
|
INT16 index;
|
1999-04-22 18:27:50 +02:00
|
|
|
|
2003-11-26 04:38:11 +01:00
|
|
|
index = MFDRV_FindObject(dev, hpen);
|
|
|
|
if( index < 0 )
|
|
|
|
{
|
|
|
|
if (!GetObject16( HPEN_16(hpen), sizeof(logpen), &logpen ))
|
2006-01-30 18:17:07 +01:00
|
|
|
{
|
|
|
|
/* must be an extended pen */
|
2006-03-09 08:12:43 +01:00
|
|
|
EXTLOGPEN *elp;
|
|
|
|
INT size = GetObjectW( hpen, 0, NULL );
|
|
|
|
|
|
|
|
if (!size) return 0;
|
|
|
|
|
|
|
|
elp = HeapAlloc( GetProcessHeap(), 0, size );
|
|
|
|
|
|
|
|
GetObjectW( hpen, size, elp );
|
|
|
|
/* FIXME: add support for user style pens */
|
|
|
|
logpen.lopnStyle = elp->elpPenStyle;
|
|
|
|
logpen.lopnWidth.x = elp->elpWidth;
|
2006-01-30 18:17:07 +01:00
|
|
|
logpen.lopnWidth.y = 0;
|
2006-03-09 08:12:43 +01:00
|
|
|
logpen.lopnColor = elp->elpColor;
|
|
|
|
|
|
|
|
HeapFree( GetProcessHeap(), 0, elp );
|
2006-01-30 18:17:07 +01:00
|
|
|
}
|
|
|
|
|
2003-11-26 04:38:11 +01:00
|
|
|
index = MFDRV_CreatePenIndirect( dev, hpen, &logpen );
|
|
|
|
if( index < 0 )
|
|
|
|
return 0;
|
|
|
|
GDI_hdc_using_object(hpen, physDev->hdc);
|
|
|
|
}
|
|
|
|
return MFDRV_SelectObject( dev, index ) ? hpen : HGDI_ERROR;
|
1997-02-02 20:01:52 +01:00
|
|
|
}
|
2003-08-30 02:15:12 +02:00
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* MFDRV_CreatePalette
|
|
|
|
*/
|
|
|
|
static BOOL MFDRV_CreatePalette(PHYSDEV dev, HPALETTE hPalette, LOGPALETTE* logPalette, int sizeofPalette)
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
BOOL ret;
|
|
|
|
METARECORD *mr;
|
|
|
|
|
|
|
|
mr = HeapAlloc( GetProcessHeap(), 0, sizeof(METARECORD) + sizeofPalette - sizeof(WORD) );
|
|
|
|
mr->rdSize = (sizeof(METARECORD) + sizeofPalette - sizeof(WORD)) / sizeof(WORD);
|
|
|
|
mr->rdFunction = META_CREATEPALETTE;
|
|
|
|
memcpy(&(mr->rdParm), logPalette, sizeofPalette);
|
|
|
|
if (!(MFDRV_WriteRecord( dev, mr, mr->rdSize * sizeof(WORD))))
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, mr);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
mr->rdSize = sizeof(METARECORD) / sizeof(WORD);
|
|
|
|
mr->rdFunction = META_SELECTPALETTE;
|
|
|
|
|
2003-11-26 04:38:11 +01:00
|
|
|
if ((index = MFDRV_AddHandle( dev, hPalette )) == -1) ret = FALSE;
|
2003-08-30 02:15:12 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
*(mr->rdParm) = index;
|
|
|
|
ret = MFDRV_WriteRecord( dev, mr, mr->rdSize * sizeof(WORD));
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, mr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* MFDRV_SelectPalette
|
|
|
|
*/
|
|
|
|
HPALETTE MFDRV_SelectPalette( PHYSDEV dev, HPALETTE hPalette, BOOL bForceBackground )
|
|
|
|
{
|
|
|
|
#define PALVERSION 0x0300
|
|
|
|
|
|
|
|
PLOGPALETTE logPalette;
|
|
|
|
WORD wNumEntries = 0;
|
|
|
|
BOOL creationSucceed;
|
|
|
|
int sizeofPalette;
|
|
|
|
|
|
|
|
GetObjectA(hPalette, sizeof(WORD), (LPSTR) &wNumEntries);
|
|
|
|
|
|
|
|
if (wNumEntries == 0) return 0;
|
|
|
|
|
|
|
|
sizeofPalette = sizeof(LOGPALETTE) + ((wNumEntries-1) * sizeof(PALETTEENTRY));
|
|
|
|
logPalette = HeapAlloc( GetProcessHeap(), 0, sizeofPalette );
|
|
|
|
|
|
|
|
if (logPalette == NULL) return 0;
|
|
|
|
|
|
|
|
logPalette->palVersion = PALVERSION;
|
|
|
|
logPalette->palNumEntries = wNumEntries;
|
|
|
|
|
|
|
|
GetPaletteEntries(hPalette, 0, wNumEntries, logPalette->palPalEntry);
|
|
|
|
|
|
|
|
creationSucceed = MFDRV_CreatePalette( dev, hPalette, logPalette, sizeofPalette );
|
|
|
|
|
|
|
|
HeapFree( GetProcessHeap(), 0, logPalette );
|
|
|
|
|
|
|
|
if (creationSucceed)
|
|
|
|
return hPalette;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* MFDRV_RealizePalette
|
|
|
|
*/
|
|
|
|
UINT MFDRV_RealizePalette(PHYSDEV dev, HPALETTE hPalette, BOOL dummy)
|
|
|
|
{
|
|
|
|
char buffer[sizeof(METARECORD) - sizeof(WORD)];
|
|
|
|
METARECORD *mr = (METARECORD *)&buffer;
|
|
|
|
|
|
|
|
mr->rdSize = (sizeof(METARECORD) - sizeof(WORD)) / sizeof(WORD);
|
|
|
|
mr->rdFunction = META_REALIZEPALETTE;
|
|
|
|
|
|
|
|
if (!(MFDRV_WriteRecord( dev, mr, mr->rdSize * sizeof(WORD)))) return 0;
|
|
|
|
|
|
|
|
/* The return value is suppose to be the number of entries
|
|
|
|
in the logical palette mapped to the system palette or 0
|
|
|
|
if the function failed. Since it's not trivial here to
|
|
|
|
get that kind of information and since it's of little
|
|
|
|
use in the case of metafiles, we'll always return 1. */
|
|
|
|
return 1;
|
|
|
|
}
|