434 lines
12 KiB
C
434 lines
12 KiB
C
/*
|
|
* Metafile driver graphics functions
|
|
*
|
|
* Copyright 1993, 1994 Alexandre Julliard
|
|
*
|
|
* 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
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "gdi.h"
|
|
#include "mfdrv/metafiledrv.h"
|
|
#include "wine/debug.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(metafile);
|
|
|
|
/**********************************************************************
|
|
* MFDRV_MoveTo
|
|
*/
|
|
BOOL
|
|
MFDRV_MoveTo(PHYSDEV dev, INT x, INT y)
|
|
{
|
|
return MFDRV_MetaParam2(dev,META_MOVETO,x,y);
|
|
}
|
|
|
|
/***********************************************************************
|
|
* MFDRV_LineTo
|
|
*/
|
|
BOOL
|
|
MFDRV_LineTo( PHYSDEV dev, INT x, INT y )
|
|
{
|
|
return MFDRV_MetaParam2(dev, META_LINETO, x, y);
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* MFDRV_Arc
|
|
*/
|
|
BOOL
|
|
MFDRV_Arc( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
|
|
INT xstart, INT ystart, INT xend, INT yend )
|
|
{
|
|
return MFDRV_MetaParam8(dev, META_ARC, left, top, right, bottom,
|
|
xstart, ystart, xend, yend);
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* MFDRV_Pie
|
|
*/
|
|
BOOL
|
|
MFDRV_Pie( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
|
|
INT xstart, INT ystart, INT xend, INT yend )
|
|
{
|
|
return MFDRV_MetaParam8(dev, META_PIE, left, top, right, bottom,
|
|
xstart, ystart, xend, yend);
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* MFDRV_Chord
|
|
*/
|
|
BOOL
|
|
MFDRV_Chord( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
|
|
INT xstart, INT ystart, INT xend, INT yend )
|
|
{
|
|
return MFDRV_MetaParam8(dev, META_CHORD, left, top, right, bottom,
|
|
xstart, ystart, xend, yend);
|
|
}
|
|
|
|
/***********************************************************************
|
|
* MFDRV_Ellipse
|
|
*/
|
|
BOOL
|
|
MFDRV_Ellipse( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
|
|
{
|
|
return MFDRV_MetaParam4(dev, META_ELLIPSE, left, top, right, bottom);
|
|
}
|
|
|
|
/***********************************************************************
|
|
* MFDRV_Rectangle
|
|
*/
|
|
BOOL
|
|
MFDRV_Rectangle(PHYSDEV dev, INT left, INT top, INT right, INT bottom)
|
|
{
|
|
return MFDRV_MetaParam4(dev, META_RECTANGLE, left, top, right, bottom);
|
|
}
|
|
|
|
/***********************************************************************
|
|
* MFDRV_RoundRect
|
|
*/
|
|
BOOL
|
|
MFDRV_RoundRect( PHYSDEV dev, INT left, INT top, INT right,
|
|
INT bottom, INT ell_width, INT ell_height )
|
|
{
|
|
return MFDRV_MetaParam6(dev, META_ROUNDRECT, left, top, right, bottom,
|
|
ell_width, ell_height);
|
|
}
|
|
|
|
/***********************************************************************
|
|
* MFDRV_SetPixel
|
|
*/
|
|
COLORREF
|
|
MFDRV_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF color )
|
|
{
|
|
return MFDRV_MetaParam4(dev, META_SETPIXEL, x, y,HIWORD(color),
|
|
LOWORD(color));
|
|
}
|
|
|
|
|
|
/******************************************************************
|
|
* MFDRV_MetaPoly - implements Polygon and Polyline
|
|
*/
|
|
static BOOL MFDRV_MetaPoly(PHYSDEV dev, short func, LPPOINT16 pt, short count)
|
|
{
|
|
BOOL ret;
|
|
DWORD len;
|
|
METARECORD *mr;
|
|
|
|
len = sizeof(METARECORD) + (count * 4);
|
|
if (!(mr = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, len )))
|
|
return FALSE;
|
|
|
|
mr->rdSize = len / 2;
|
|
mr->rdFunction = func;
|
|
*(mr->rdParm) = count;
|
|
memcpy(mr->rdParm + 1, pt, count * 4);
|
|
ret = MFDRV_WriteRecord( dev, mr, mr->rdSize * 2);
|
|
HeapFree( GetProcessHeap(), 0, mr);
|
|
return ret;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* MFDRV_Polyline
|
|
*/
|
|
BOOL
|
|
MFDRV_Polyline( PHYSDEV dev, const POINT* pt, INT count )
|
|
{
|
|
register int i;
|
|
LPPOINT16 pt16;
|
|
BOOL16 ret;
|
|
|
|
pt16 = (LPPOINT16)HeapAlloc( GetProcessHeap(), 0, sizeof(POINT16)*count );
|
|
if(!pt16) return FALSE;
|
|
for (i=count;i--;) CONV_POINT32TO16(&(pt[i]),&(pt16[i]));
|
|
ret = MFDRV_MetaPoly(dev, META_POLYLINE, pt16, count);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pt16 );
|
|
return ret;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* MFDRV_Polygon
|
|
*/
|
|
BOOL
|
|
MFDRV_Polygon( PHYSDEV dev, const POINT* pt, INT count )
|
|
{
|
|
register int i;
|
|
LPPOINT16 pt16;
|
|
BOOL16 ret;
|
|
|
|
pt16 = (LPPOINT16) HeapAlloc( GetProcessHeap(), 0, sizeof(POINT16)*count );
|
|
if(!pt16) return FALSE;
|
|
for (i=count;i--;) CONV_POINT32TO16(&(pt[i]),&(pt16[i]));
|
|
ret = MFDRV_MetaPoly(dev, META_POLYGON, pt16, count);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pt16 );
|
|
return ret;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* MFDRV_PolyPolygon
|
|
*/
|
|
BOOL
|
|
MFDRV_PolyPolygon( PHYSDEV dev, const POINT* pt, const INT* counts, UINT polygons)
|
|
{
|
|
int i,j;
|
|
LPPOINT16 pt16;
|
|
const POINT* curpt=pt;
|
|
BOOL ret;
|
|
|
|
for (i=0;i<polygons;i++) {
|
|
pt16=(LPPOINT16)HeapAlloc( GetProcessHeap(), 0,
|
|
sizeof(POINT16) * counts[i] );
|
|
if(!pt16) return FALSE;
|
|
for (j=counts[i];j--;) CONV_POINT32TO16(&(curpt[j]),&(pt16[j]));
|
|
ret = MFDRV_MetaPoly(dev, META_POLYGON, pt16, counts[i]);
|
|
HeapFree( GetProcessHeap(), 0, pt16 );
|
|
if (!ret)
|
|
return FALSE;
|
|
curpt+=counts[i];
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* MFDRV_ExtFloodFill
|
|
*/
|
|
BOOL
|
|
MFDRV_ExtFloodFill( PHYSDEV dev, INT x, INT y, COLORREF color, UINT fillType )
|
|
{
|
|
return MFDRV_MetaParam4(dev,META_FLOODFILL,x,y,HIWORD(color),
|
|
LOWORD(color));
|
|
}
|
|
|
|
|
|
/******************************************************************
|
|
* MFDRV_CreateRegion
|
|
*
|
|
* For explanation of the format of the record see MF_Play_MetaCreateRegion in
|
|
* objects/metafile.c
|
|
*/
|
|
static INT16 MFDRV_CreateRegion(PHYSDEV dev, HRGN hrgn)
|
|
{
|
|
DWORD len;
|
|
METARECORD *mr;
|
|
RGNDATA *rgndata;
|
|
RECT *pCurRect, *pEndRect;
|
|
WORD Bands = 0, MaxBands = 0;
|
|
WORD *Param, *StartBand;
|
|
BOOL ret;
|
|
|
|
if (!(len = GetRegionData( hrgn, 0, NULL ))) return -1;
|
|
if( !(rgndata = HeapAlloc( GetProcessHeap(), 0, len )) ) {
|
|
WARN("Can't alloc rgndata buffer\n");
|
|
return -1;
|
|
}
|
|
GetRegionData( hrgn, len, rgndata );
|
|
|
|
/* Overestimate of length:
|
|
* Assume every rect is a separate band -> 6 WORDs per rect
|
|
*/
|
|
len = sizeof(METARECORD) + 20 + (rgndata->rdh.nCount * 12);
|
|
if( !(mr = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, len )) ) {
|
|
WARN("Can't alloc METARECORD buffer\n");
|
|
HeapFree( GetProcessHeap(), 0, rgndata );
|
|
return -1;
|
|
}
|
|
|
|
Param = mr->rdParm + 11;
|
|
StartBand = NULL;
|
|
|
|
pEndRect = (RECT *)rgndata->Buffer + rgndata->rdh.nCount;
|
|
for(pCurRect = (RECT *)rgndata->Buffer; pCurRect < pEndRect; pCurRect++)
|
|
{
|
|
if( StartBand && pCurRect->top == *(StartBand + 1) )
|
|
{
|
|
*Param++ = pCurRect->left;
|
|
*Param++ = pCurRect->right;
|
|
}
|
|
else
|
|
{
|
|
if(StartBand)
|
|
{
|
|
*StartBand = Param - StartBand - 3;
|
|
*Param++ = *StartBand;
|
|
if(*StartBand > MaxBands)
|
|
MaxBands = *StartBand;
|
|
Bands++;
|
|
}
|
|
StartBand = Param++;
|
|
*Param++ = pCurRect->top;
|
|
*Param++ = pCurRect->bottom;
|
|
*Param++ = pCurRect->left;
|
|
*Param++ = pCurRect->right;
|
|
}
|
|
}
|
|
len = Param - (WORD *)mr;
|
|
|
|
mr->rdParm[0] = 0;
|
|
mr->rdParm[1] = 6;
|
|
mr->rdParm[2] = 0x1234;
|
|
mr->rdParm[3] = 0;
|
|
mr->rdParm[4] = len * 2;
|
|
mr->rdParm[5] = Bands;
|
|
mr->rdParm[6] = MaxBands;
|
|
mr->rdParm[7] = rgndata->rdh.rcBound.left;
|
|
mr->rdParm[8] = rgndata->rdh.rcBound.top;
|
|
mr->rdParm[9] = rgndata->rdh.rcBound.right;
|
|
mr->rdParm[10] = rgndata->rdh.rcBound.bottom;
|
|
mr->rdFunction = META_CREATEREGION;
|
|
mr->rdSize = len / 2;
|
|
ret = MFDRV_WriteRecord( dev, mr, mr->rdSize * 2 );
|
|
HeapFree( GetProcessHeap(), 0, mr );
|
|
HeapFree( GetProcessHeap(), 0, rgndata );
|
|
if(!ret)
|
|
{
|
|
WARN("MFDRV_WriteRecord failed\n");
|
|
return -1;
|
|
}
|
|
return MFDRV_AddHandleDC( dev );
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* MFDRV_PaintRgn
|
|
*/
|
|
BOOL
|
|
MFDRV_PaintRgn( PHYSDEV dev, HRGN hrgn )
|
|
{
|
|
INT16 index;
|
|
index = MFDRV_CreateRegion( dev, hrgn );
|
|
if(index == -1)
|
|
return FALSE;
|
|
return MFDRV_MetaParam1( dev, META_PAINTREGION, index );
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* MFDRV_InvertRgn
|
|
*/
|
|
BOOL
|
|
MFDRV_InvertRgn( PHYSDEV dev, HRGN hrgn )
|
|
{
|
|
INT16 index;
|
|
index = MFDRV_CreateRegion( dev, hrgn );
|
|
if(index == -1)
|
|
return FALSE;
|
|
return MFDRV_MetaParam1( dev, META_INVERTREGION, index );
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* MFDRV_FillRgn
|
|
*/
|
|
BOOL
|
|
MFDRV_FillRgn( PHYSDEV dev, HRGN hrgn, HBRUSH hbrush )
|
|
{
|
|
INT16 iRgn, iBrush;
|
|
iRgn = MFDRV_CreateRegion( dev, hrgn );
|
|
if(iRgn == -1)
|
|
return FALSE;
|
|
iBrush = MFDRV_CreateBrushIndirect( dev, hbrush );
|
|
if(iBrush == -1)
|
|
return FALSE;
|
|
return MFDRV_MetaParam2( dev, META_FILLREGION, iRgn, iBrush );
|
|
}
|
|
|
|
/**********************************************************************
|
|
* MFDRV_FrameRgn
|
|
*/
|
|
BOOL
|
|
MFDRV_FrameRgn( PHYSDEV dev, HRGN hrgn, HBRUSH hbrush, INT x, INT y )
|
|
{
|
|
INT16 iRgn, iBrush;
|
|
iRgn = MFDRV_CreateRegion( dev, hrgn );
|
|
if(iRgn == -1)
|
|
return FALSE;
|
|
iBrush = MFDRV_CreateBrushIndirect( dev, hbrush );
|
|
if(iBrush == -1)
|
|
return FALSE;
|
|
return MFDRV_MetaParam4( dev, META_FRAMEREGION, iRgn, iBrush, x, y );
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* MFDRV_ExtSelectClipRgn
|
|
*/
|
|
INT MFDRV_ExtSelectClipRgn( PHYSDEV dev, HRGN hrgn, INT mode )
|
|
{
|
|
INT16 iRgn;
|
|
INT ret;
|
|
|
|
if (mode != RGN_COPY) return ERROR;
|
|
if (!hrgn) return NULLREGION;
|
|
iRgn = MFDRV_CreateRegion( dev, hrgn );
|
|
if(iRgn == -1) return ERROR;
|
|
ret = MFDRV_MetaParam1( dev, META_SELECTCLIPREGION, iRgn ) ? NULLREGION : ERROR;
|
|
MFDRV_MetaParam1( dev, META_DELETEOBJECT, iRgn );
|
|
return ret;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* MFDRV_SetBkColor
|
|
*/
|
|
COLORREF
|
|
MFDRV_SetBkColor( PHYSDEV dev, COLORREF color )
|
|
{
|
|
return MFDRV_MetaParam2(dev, META_SETBKCOLOR, HIWORD(color),
|
|
LOWORD(color)) ? color : CLR_INVALID;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* MFDRV_SetTextColor
|
|
*/
|
|
COLORREF
|
|
MFDRV_SetTextColor( PHYSDEV dev, COLORREF color )
|
|
{
|
|
return MFDRV_MetaParam2(dev, META_SETTEXTCOLOR, HIWORD(color),
|
|
LOWORD(color)) ? color : CLR_INVALID;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* MFDRV_PolyBezier
|
|
* Since MetaFiles don't record Beziers and they don't even record
|
|
* approximations to them using lines, we need this stub function.
|
|
*/
|
|
BOOL
|
|
MFDRV_PolyBezier( PHYSDEV dev, const POINT *pts, DWORD count )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
/**********************************************************************
|
|
* MFDRV_PolyBezierTo
|
|
* Since MetaFiles don't record Beziers and they don't even record
|
|
* approximations to them using lines, we need this stub function.
|
|
*/
|
|
BOOL
|
|
MFDRV_PolyBezierTo( PHYSDEV dev, const POINT *pts, DWORD count )
|
|
{
|
|
return FALSE;
|
|
}
|