147 lines
3.4 KiB
C
147 lines
3.4 KiB
C
/*
|
|
* MetaFile driver DC value functions
|
|
*
|
|
* Copyright 1999 Huw D M Davies
|
|
*
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "mfdrv/metafiledrv.h"
|
|
|
|
INT CDECL MFDRV_SaveDC( PHYSDEV dev )
|
|
{
|
|
return MFDRV_MetaParam0( dev, META_SAVEDC );
|
|
}
|
|
|
|
BOOL CDECL MFDRV_RestoreDC( PHYSDEV dev, INT level )
|
|
{
|
|
return MFDRV_MetaParam1( dev, META_RESTOREDC, level );
|
|
}
|
|
|
|
UINT CDECL MFDRV_SetTextAlign( PHYSDEV dev, UINT align )
|
|
{
|
|
return MFDRV_MetaParam2( dev, META_SETTEXTALIGN, HIWORD(align), LOWORD(align));
|
|
}
|
|
|
|
INT CDECL MFDRV_SetBkMode( PHYSDEV dev, INT mode )
|
|
{
|
|
return MFDRV_MetaParam1( dev, META_SETBKMODE, (WORD)mode);
|
|
}
|
|
|
|
INT CDECL MFDRV_SetROP2( PHYSDEV dev, INT rop )
|
|
{
|
|
return MFDRV_MetaParam1( dev, META_SETROP2, (WORD)rop);
|
|
}
|
|
|
|
INT CDECL MFDRV_SetRelAbs( PHYSDEV dev, INT mode )
|
|
{
|
|
return MFDRV_MetaParam1( dev, META_SETRELABS, (WORD)mode);
|
|
}
|
|
|
|
INT CDECL MFDRV_SetPolyFillMode( PHYSDEV dev, INT mode )
|
|
{
|
|
return MFDRV_MetaParam1( dev, META_SETPOLYFILLMODE, (WORD)mode);
|
|
}
|
|
|
|
INT CDECL MFDRV_SetStretchBltMode( PHYSDEV dev, INT mode )
|
|
{
|
|
return MFDRV_MetaParam1( dev, META_SETSTRETCHBLTMODE, (WORD)mode);
|
|
}
|
|
|
|
INT CDECL MFDRV_IntersectClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
|
|
{
|
|
return MFDRV_MetaParam4( dev, META_INTERSECTCLIPRECT, left, top, right,
|
|
bottom );
|
|
}
|
|
|
|
INT CDECL MFDRV_ExcludeClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
|
|
{
|
|
return MFDRV_MetaParam4( dev, META_EXCLUDECLIPRECT, left, top, right,
|
|
bottom );
|
|
}
|
|
|
|
INT CDECL MFDRV_OffsetClipRgn( PHYSDEV dev, INT x, INT y )
|
|
{
|
|
return MFDRV_MetaParam2( dev, META_OFFSETCLIPRGN, x, y );
|
|
}
|
|
|
|
INT CDECL MFDRV_SetTextJustification( PHYSDEV dev, INT extra, INT breaks )
|
|
{
|
|
return MFDRV_MetaParam2( dev, META_SETTEXTJUSTIFICATION, extra, breaks );
|
|
}
|
|
|
|
INT CDECL MFDRV_SetTextCharacterExtra( PHYSDEV dev, INT extra )
|
|
{
|
|
if(!MFDRV_MetaParam1( dev, META_SETTEXTCHAREXTRA, extra ))
|
|
return 0x80000000;
|
|
return TRUE;
|
|
}
|
|
|
|
DWORD CDECL MFDRV_SetMapperFlags( PHYSDEV dev, DWORD flags )
|
|
{
|
|
return MFDRV_MetaParam2( dev, META_SETMAPPERFLAGS, HIWORD(flags),
|
|
LOWORD(flags) );
|
|
}
|
|
|
|
BOOL CDECL MFDRV_AbortPath( PHYSDEV dev )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CDECL MFDRV_BeginPath( PHYSDEV dev )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CDECL MFDRV_CloseFigure( PHYSDEV dev )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CDECL MFDRV_EndPath( PHYSDEV dev )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CDECL MFDRV_FillPath( PHYSDEV dev )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CDECL MFDRV_FlattenPath( PHYSDEV dev )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CDECL MFDRV_SelectClipPath( PHYSDEV dev, INT iMode )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CDECL MFDRV_StrokeAndFillPath( PHYSDEV dev )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CDECL MFDRV_StrokePath( PHYSDEV dev )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CDECL MFDRV_WidenPath( PHYSDEV dev )
|
|
{
|
|
return FALSE;
|
|
}
|