/* * 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" BOOL METADC_SaveDC( HDC hdc ) { return metadc_param0( hdc, META_SAVEDC ); } BOOL CDECL MFDRV_RestoreDC( PHYSDEV dev, INT level ) { return MFDRV_MetaParam1( dev, META_RESTOREDC, level ); } BOOL METADC_SetTextAlign( HDC hdc, UINT align ) { return metadc_param2( hdc, META_SETTEXTALIGN, HIWORD(align), LOWORD(align) ); } BOOL METADC_SetBkMode( HDC hdc, INT mode ) { return metadc_param1( hdc, META_SETBKMODE, (WORD)mode ); } COLORREF CDECL MFDRV_SetBkColor( PHYSDEV dev, COLORREF color ) { return MFDRV_MetaParam2(dev, META_SETBKCOLOR, HIWORD(color), LOWORD(color)) ? color : CLR_INVALID; } COLORREF CDECL MFDRV_SetTextColor( PHYSDEV dev, COLORREF color ) { return MFDRV_MetaParam2(dev, META_SETTEXTCOLOR, HIWORD(color), LOWORD(color)) ? color : CLR_INVALID; } BOOL METADC_SetROP2( HDC hdc, INT rop ) { return metadc_param1( hdc, META_SETROP2, (WORD)rop ); } BOOL METADC_SetRelAbs( HDC hdc, INT mode ) { return metadc_param1( hdc, META_SETRELABS, (WORD)mode ); } BOOL METADC_SetPolyFillMode( HDC hdc, INT mode ) { return metadc_param1( hdc, META_SETPOLYFILLMODE, mode ); } BOOL METADC_SetStretchBltMode( HDC hdc, INT mode ) { return metadc_param1( hdc, META_SETSTRETCHBLTMODE, mode ); } BOOL METADC_IntersectClipRect( HDC hdc, INT left, INT top, INT right, INT bottom ) { return metadc_param4( hdc, META_INTERSECTCLIPRECT, left, top, right, bottom ); } BOOL METADC_ExcludeClipRect( HDC hdc, INT left, INT top, INT right, INT bottom ) { return metadc_param4( hdc, META_EXCLUDECLIPRECT, left, top, right, bottom ); } BOOL METADC_OffsetClipRgn( HDC hdc, INT x, INT y ) { return metadc_param2( hdc, META_OFFSETCLIPRGN, x, y ); } BOOL METADC_SetLayout( HDC hdc, DWORD layout ) { return metadc_param2( hdc, META_SETLAYOUT, HIWORD(layout), LOWORD(layout) ); } BOOL METADC_SetMapMode( HDC hdc, INT mode ) { return metadc_param1( hdc, META_SETMAPMODE, mode ); } BOOL CDECL MFDRV_SetViewportExtEx( PHYSDEV dev, INT x, INT y, SIZE *size ) { return MFDRV_MetaParam2( dev, META_SETVIEWPORTEXT, x, y ); } BOOL CDECL MFDRV_SetViewportOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) { return MFDRV_MetaParam2( dev, META_SETVIEWPORTORG, x, y ); } BOOL CDECL MFDRV_SetWindowExtEx( PHYSDEV dev, INT x, INT y, SIZE *size ) { return MFDRV_MetaParam2( dev, META_SETWINDOWEXT, x, y ); } BOOL CDECL MFDRV_SetWindowOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) { return MFDRV_MetaParam2( dev, META_SETWINDOWORG, x, y ); } BOOL CDECL MFDRV_OffsetViewportOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) { return MFDRV_MetaParam2( dev, META_OFFSETVIEWPORTORG, x, y ); } BOOL CDECL MFDRV_OffsetWindowOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) { return MFDRV_MetaParam2( dev, META_OFFSETWINDOWORG, x, y ); } BOOL METADC_ScaleViewportExtEx( HDC hdc, INT x_num, INT x_denom, INT y_num, INT y_denom ) { return metadc_param4( hdc, META_SCALEVIEWPORTEXT, x_num, x_denom, y_num, y_denom ); } BOOL METADC_ScaleWindowExtEx( HDC hdc, INT x_num, INT x_denom, INT y_num, INT y_denom ) { return metadc_param4( hdc, META_SCALEWINDOWEXT, x_num, x_denom, y_num, y_denom ); } BOOL METADC_SetTextJustification( HDC hdc, INT extra, INT breaks ) { return metadc_param2( hdc, META_SETTEXTJUSTIFICATION, extra, breaks ); } BOOL METADC_SetTextCharacterExtra( HDC hdc, INT extra ) { return metadc_param1( hdc, META_SETTEXTCHAREXTRA, extra ); } BOOL METADC_SetMapperFlags( HDC hdc, DWORD flags ) { return metadc_param2( hdc, 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; } COLORREF CDECL MFDRV_SetDCBrushColor( PHYSDEV dev, COLORREF color ) { return CLR_INVALID; } COLORREF CDECL MFDRV_SetDCPenColor( PHYSDEV dev, COLORREF color ) { return CLR_INVALID; }