2021-07-17 14:56:39 +00:00
|
|
|
/*
|
|
|
|
* GDI Device Context functions
|
|
|
|
*
|
|
|
|
* Copyright 1993, 1994 Alexandre Julliard
|
|
|
|
* Copyright 1997 Bertho A. Stultiens
|
|
|
|
* 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 "gdi_private.h"
|
2021-07-30 11:01:38 +00:00
|
|
|
#include "winternl.h"
|
|
|
|
|
2021-07-17 14:56:39 +00:00
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(gdi);
|
|
|
|
|
2021-08-09 09:30:16 +00:00
|
|
|
DC_ATTR *get_dc_attr( HDC hdc )
|
2021-07-20 07:18:50 +00:00
|
|
|
{
|
|
|
|
WORD type = gdi_handle_type( hdc );
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
if ((type & 0x1f) != NTGDI_OBJ_DC || !(dc_attr = get_gdi_client_ptr( hdc, 0 )))
|
|
|
|
{
|
|
|
|
SetLastError( ERROR_INVALID_HANDLE );
|
|
|
|
return NULL;
|
|
|
|
}
|
2021-07-28 09:38:58 +00:00
|
|
|
return dc_attr->disabled ? NULL : dc_attr;
|
2021-07-20 07:18:50 +00:00
|
|
|
}
|
|
|
|
|
2021-07-30 11:01:38 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* CreateDCA (GDI32.@)
|
|
|
|
*/
|
|
|
|
HDC WINAPI CreateDCA( const char *driver, const char *device, const char *output,
|
|
|
|
const DEVMODEA *init_data )
|
|
|
|
{
|
|
|
|
UNICODE_STRING driverW, deviceW, outputW;
|
|
|
|
DEVMODEW *init_dataW = NULL;
|
|
|
|
HDC ret;
|
|
|
|
|
|
|
|
if (driver) RtlCreateUnicodeStringFromAsciiz( &driverW, driver );
|
|
|
|
else driverW.Buffer = NULL;
|
|
|
|
|
|
|
|
if (device) RtlCreateUnicodeStringFromAsciiz( &deviceW, device );
|
|
|
|
else deviceW.Buffer = NULL;
|
|
|
|
|
|
|
|
if (output) RtlCreateUnicodeStringFromAsciiz( &outputW, output );
|
|
|
|
else outputW.Buffer = NULL;
|
|
|
|
|
|
|
|
if (init_data)
|
|
|
|
{
|
|
|
|
/* don't convert init_data for DISPLAY driver, it's not used */
|
|
|
|
if (!driverW.Buffer || wcsicmp( driverW.Buffer, L"display" ))
|
|
|
|
init_dataW = GdiConvertToDevmodeW( init_data );
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = CreateDCW( driverW.Buffer, deviceW.Buffer, outputW.Buffer, init_dataW );
|
|
|
|
|
|
|
|
RtlFreeUnicodeString( &driverW );
|
|
|
|
RtlFreeUnicodeString( &deviceW );
|
|
|
|
RtlFreeUnicodeString( &outputW );
|
|
|
|
HeapFree( GetProcessHeap(), 0, init_dataW );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CreateICA (GDI32.@)
|
|
|
|
*/
|
|
|
|
HDC WINAPI CreateICA( const char *driver, const char *device, const char *output,
|
|
|
|
const DEVMODEA *init_data )
|
|
|
|
{
|
|
|
|
/* Nothing special yet for ICs */
|
|
|
|
return CreateDCA( driver, device, output, init_data );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CreateICW (GDI32.@)
|
|
|
|
*/
|
|
|
|
HDC WINAPI CreateICW( const WCHAR *driver, const WCHAR *device, const WCHAR *output,
|
|
|
|
const DEVMODEW *init_data )
|
|
|
|
{
|
|
|
|
/* Nothing special yet for ICs */
|
|
|
|
return CreateDCW( driver, device, output, init_data );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ResetDCA (GDI32.@)
|
|
|
|
*/
|
|
|
|
HDC WINAPI ResetDCA( HDC hdc, const DEVMODEA *devmode )
|
|
|
|
{
|
|
|
|
DEVMODEW *devmodeW;
|
|
|
|
HDC ret;
|
|
|
|
|
|
|
|
if (devmode) devmodeW = GdiConvertToDevmodeW( devmode );
|
|
|
|
else devmodeW = NULL;
|
|
|
|
|
|
|
|
ret = ResetDCW( hdc, devmodeW );
|
|
|
|
|
|
|
|
HeapFree( GetProcessHeap(), 0, devmodeW );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-07-30 11:01:56 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SaveDC (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SaveDC( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SaveDC( hdc );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_SaveDC( dc_attr )) return FALSE;
|
|
|
|
return NtGdiSaveDC( hdc );
|
|
|
|
}
|
|
|
|
|
2021-07-30 11:03:15 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetDeviceCaps (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI GetDeviceCaps( HDC hdc, INT cap )
|
|
|
|
{
|
|
|
|
if (is_meta_dc( hdc )) return METADC_GetDeviceCaps( hdc, cap );
|
|
|
|
if (!get_dc_attr( hdc )) return FALSE;
|
|
|
|
return NtGdiGetDeviceCaps( hdc, cap );
|
|
|
|
}
|
|
|
|
|
2021-07-23 08:49:19 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetTextAlign (GDI32.@)
|
|
|
|
*/
|
|
|
|
UINT WINAPI GetTextAlign( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->text_align : 0;
|
|
|
|
}
|
|
|
|
|
2021-07-26 21:29:36 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetTextAlign (GDI32.@)
|
|
|
|
*/
|
|
|
|
UINT WINAPI SetTextAlign( HDC hdc, UINT align )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
UINT ret;
|
|
|
|
|
|
|
|
TRACE("hdc=%p align=%d\n", hdc, align);
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetTextAlign( hdc, align );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return GDI_ERROR;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetTextAlign( dc_attr, align )) return GDI_ERROR;
|
|
|
|
|
|
|
|
ret = dc_attr->text_align;
|
|
|
|
dc_attr->text_align = align;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-07-28 09:39:37 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetBkColor (GDI32.@)
|
|
|
|
*/
|
|
|
|
COLORREF WINAPI GetBkColor( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->background_color : CLR_INVALID;
|
|
|
|
}
|
|
|
|
|
2021-07-30 11:00:45 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetDCBrushColor (GDI32.@)
|
|
|
|
*/
|
|
|
|
COLORREF WINAPI GetDCBrushColor( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->brush_color : CLR_INVALID;
|
|
|
|
}
|
|
|
|
|
2021-07-30 11:00:54 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetDCPenColor (GDI32.@)
|
|
|
|
*/
|
|
|
|
COLORREF WINAPI GetDCPenColor(HDC hdc)
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->pen_color : CLR_INVALID;
|
|
|
|
}
|
|
|
|
|
2021-07-28 09:40:07 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetTextColor (GDI32.@)
|
|
|
|
*/
|
|
|
|
COLORREF WINAPI GetTextColor( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->text_color : 0;
|
|
|
|
}
|
|
|
|
|
2021-07-26 21:29:51 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetBkMode (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI GetBkMode( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->background_mode : 0;
|
|
|
|
}
|
|
|
|
|
2021-07-26 21:30:20 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetBkMode (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SetBkMode( HDC hdc, INT mode )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
INT ret;
|
|
|
|
|
|
|
|
if (mode <= 0 || mode > BKMODE_LAST)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetBkMode( hdc, mode );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return 0;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetBkMode( dc_attr, mode )) return 0;
|
|
|
|
|
|
|
|
ret = dc_attr->background_mode;
|
|
|
|
dc_attr->background_mode = mode;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-07-28 09:39:46 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetGraphicsMode (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI GetGraphicsMode( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->graphics_mode : 0;
|
|
|
|
}
|
|
|
|
|
2021-07-28 09:40:15 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetArcDirection (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI GetArcDirection( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->arc_direction : 0;
|
|
|
|
}
|
|
|
|
|
2021-07-29 12:21:56 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetArcDirection (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SetArcDirection( HDC hdc, INT dir )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
INT ret;
|
|
|
|
|
|
|
|
if (dir != AD_COUNTERCLOCKWISE && dir != AD_CLOCKWISE)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return 0;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetArcDirection( dc_attr, dir )) return 0;
|
|
|
|
|
|
|
|
ret = dc_attr->arc_direction;
|
|
|
|
dc_attr->arc_direction = dir;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-07-28 09:39:26 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetLayout (GDI32.@)
|
|
|
|
*/
|
|
|
|
DWORD WINAPI GetLayout( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->layout : GDI_ERROR;
|
|
|
|
}
|
|
|
|
|
2021-08-05 09:26:55 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetLayout (GDI32.@)
|
|
|
|
*/
|
|
|
|
DWORD WINAPI SetLayout( HDC hdc, DWORD layout )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetLayout( hdc, layout );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return GDI_ERROR;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetLayout( dc_attr, layout )) return GDI_ERROR;
|
|
|
|
return NtGdiSetLayout( hdc, -1, layout );
|
|
|
|
}
|
|
|
|
|
2021-07-29 12:22:04 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetMapMode (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI GetMapMode( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->map_mode : 0;
|
|
|
|
}
|
|
|
|
|
2021-08-05 09:25:57 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetMapMode (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SetMapMode( HDC hdc, INT mode )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
DWORD ret;
|
|
|
|
|
|
|
|
TRACE("%p %d\n", hdc, mode );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetMapMode( hdc, mode );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return 0;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetMapMode( dc_attr, mode )) return 0;
|
|
|
|
return NtGdiGetAndSetDCDword( hdc, NtGdiSetMapMode, mode, &ret ) ? ret : 0;
|
|
|
|
}
|
|
|
|
|
2021-08-05 09:26:13 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetTextCharacterExtra (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI GetTextCharacterExtra( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->char_extra : 0x80000000;
|
|
|
|
}
|
|
|
|
|
2021-08-05 09:26:28 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetTextCharacterExtra (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SetTextCharacterExtra( HDC hdc, INT extra )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
INT ret;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetTextCharacterExtra( hdc, extra );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return 0x8000000;
|
|
|
|
ret = dc_attr->char_extra;
|
|
|
|
dc_attr->char_extra = extra;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-08-05 09:26:43 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetMapperFlags (GDI32.@)
|
|
|
|
*/
|
|
|
|
DWORD WINAPI SetMapperFlags( HDC hdc, DWORD flags )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
DWORD ret;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetMapperFlags( hdc, flags );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return GDI_ERROR;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetMapperFlags( dc_attr, flags )) return GDI_ERROR;
|
|
|
|
ret = dc_attr->mapper_flags;
|
|
|
|
dc_attr->mapper_flags = flags;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-07-29 12:22:00 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetPolyFillMode (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI GetPolyFillMode( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->poly_fill_mode : 0;
|
|
|
|
}
|
|
|
|
|
2021-07-29 12:22:01 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetPolyFillMode (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SetPolyFillMode( HDC hdc, INT mode )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
INT ret;
|
|
|
|
|
|
|
|
if (mode <= 0 || mode > POLYFILL_LAST)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetPolyFillMode( hdc, mode );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return 0;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetPolyFillMode( dc_attr, mode )) return 0;
|
|
|
|
|
|
|
|
ret = dc_attr->poly_fill_mode;
|
|
|
|
dc_attr->poly_fill_mode = mode;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-07-29 12:22:02 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetStretchBltMode (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI GetStretchBltMode( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->stretch_blt_mode : 0;
|
|
|
|
}
|
|
|
|
|
2021-08-03 10:56:21 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetBrushOrgEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetBrushOrgEx( HDC hdc, POINT *point )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
*point = dc_attr->brush_org;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-08-03 10:56:29 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetBrushOrgEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetBrushOrgEx( HDC hdc, INT x, INT y, POINT *oldorg )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (oldorg) *oldorg = dc_attr->brush_org;
|
|
|
|
dc_attr->brush_org.x = x;
|
|
|
|
dc_attr->brush_org.y = y;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FixBrushOrgEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FixBrushOrgEx( HDC hdc, INT x, INT y, POINT *oldorg )
|
|
|
|
{
|
|
|
|
return SetBrushOrgEx( hdc, x, y, oldorg );
|
|
|
|
}
|
|
|
|
|
2021-08-02 08:03:33 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetDCOrgEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetDCOrgEx( HDC hdc, POINT *point )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
if (!point || !(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
point->x = dc_attr->vis_rect.left;
|
|
|
|
point->y = dc_attr->vis_rect.top;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-08-03 10:56:10 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetWindowExtEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetWindowExtEx( HDC hdc, SIZE *size )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
*size = dc_attr->wnd_ext;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-08-10 06:37:42 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetWindowExtEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetWindowExtEx( HDC hdc, INT x, INT y, SIZE *size )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetWindowExtEx( hdc, x, y );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetWindowExtEx( dc_attr, x, y )) return FALSE;
|
|
|
|
|
|
|
|
if (size) *size = dc_attr->wnd_ext;
|
|
|
|
if (dc_attr->map_mode != MM_ISOTROPIC && dc_attr->map_mode != MM_ANISOTROPIC) return TRUE;
|
|
|
|
if (!x || !y) return FALSE;
|
|
|
|
dc_attr->wnd_ext.cx = x;
|
|
|
|
dc_attr->wnd_ext.cy = y;
|
|
|
|
return NtGdiComputeXformCoefficients( hdc );
|
|
|
|
}
|
|
|
|
|
2021-08-03 10:56:01 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetWindowOrgEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetWindowOrgEx( HDC hdc, POINT *point )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
*point = dc_attr->wnd_org;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-08-10 06:37:43 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetWindowOrgEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetWindowOrgEx( HDC hdc, INT x, INT y, POINT *point )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetWindowOrgEx( hdc, x, y );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetWindowOrgEx( dc_attr, x, y )) return FALSE;
|
|
|
|
|
|
|
|
if (point) *point = dc_attr->wnd_org;
|
|
|
|
dc_attr->wnd_org.x = x;
|
|
|
|
dc_attr->wnd_org.y = y;
|
|
|
|
return NtGdiComputeXformCoefficients( hdc );
|
|
|
|
}
|
|
|
|
|
2021-08-03 10:55:47 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetViewportExtEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetViewportExtEx( HDC hdc, SIZE *size )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
*size = dc_attr->vport_ext;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-08-10 06:37:40 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetViewportExtEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetViewportExtEx( HDC hdc, INT x, INT y, LPSIZE size )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetViewportExtEx( hdc, x, y );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetViewportExtEx( dc_attr, x, y )) return FALSE;
|
|
|
|
|
|
|
|
if (size) *size = dc_attr->vport_ext;
|
|
|
|
if (dc_attr->map_mode != MM_ISOTROPIC && dc_attr->map_mode != MM_ANISOTROPIC) return TRUE;
|
|
|
|
if (!x || !y) return FALSE;
|
|
|
|
dc_attr->vport_ext.cx = x;
|
|
|
|
dc_attr->vport_ext.cy = y;
|
|
|
|
return NtGdiComputeXformCoefficients( hdc );
|
|
|
|
}
|
|
|
|
|
2021-08-03 10:55:55 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetViewportOrgEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetViewportOrgEx( HDC hdc, POINT *point )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
*point = dc_attr->vport_org;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-08-10 06:37:41 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetViewportOrgEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetViewportOrgEx( HDC hdc, INT x, INT y, POINT *point )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetViewportOrgEx( hdc, x, y );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetViewportOrgEx( dc_attr, x, y )) return FALSE;
|
|
|
|
|
|
|
|
if (point) *point = dc_attr->vport_org;
|
|
|
|
dc_attr->vport_org.x = x;
|
|
|
|
dc_attr->vport_org.y = y;
|
|
|
|
return NtGdiComputeXformCoefficients( hdc );
|
|
|
|
}
|
|
|
|
|
2021-08-04 09:23:17 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetWorldTransform (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetWorldTransform( HDC hdc, XFORM *xform )
|
|
|
|
{
|
|
|
|
return NtGdiGetTransform( hdc, 0x203, xform );
|
|
|
|
}
|
|
|
|
|
2021-07-29 12:22:03 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetStretchBltMode (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SetStretchBltMode( HDC hdc, INT mode )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
INT ret;
|
|
|
|
|
|
|
|
if (mode <= 0 || mode > MAXSTRETCHBLTMODE)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetStretchBltMode( hdc, mode );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return 0;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetStretchBltMode( dc_attr, mode )) return 0;
|
|
|
|
|
|
|
|
ret = dc_attr->stretch_blt_mode;
|
|
|
|
dc_attr->stretch_blt_mode = mode;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-07-20 07:18:59 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetCurrentPositionEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetCurrentPositionEx( HDC hdc, POINT *point )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
*point = dc_attr->cur_pos;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-07-28 09:39:05 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetROP2 (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI GetROP2( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->rop_mode : 0;
|
|
|
|
}
|
|
|
|
|
2021-07-29 12:21:58 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetRelAbs (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI GetRelAbs( HDC hdc, DWORD ignore )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr = get_dc_attr( hdc );
|
|
|
|
return dc_attr ? dc_attr->rel_abs_mode : 0;
|
|
|
|
}
|
|
|
|
|
2021-07-29 12:21:59 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetRelAbs (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SetRelAbs( HDC hdc, INT mode )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
INT ret;
|
|
|
|
|
|
|
|
if (mode != ABSOLUTE && mode != RELATIVE)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetRelAbs( hdc, mode );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return 0;
|
|
|
|
ret = dc_attr->rel_abs_mode;
|
|
|
|
dc_attr->rel_abs_mode = mode;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-07-28 09:39:15 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetROP2 (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SetROP2( HDC hdc, INT mode )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
INT ret;
|
|
|
|
|
|
|
|
if ((mode < R2_BLACK) || (mode > R2_WHITE))
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetROP2( hdc, mode );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return 0;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetROP2( dc_attr, mode )) return 0;
|
|
|
|
|
|
|
|
ret = dc_attr->rop_mode;
|
|
|
|
dc_attr->rop_mode = mode;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-07-30 11:01:05 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetMiterLimit (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetMiterLimit( HDC hdc, FLOAT *limit )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (limit) *limit = dc_attr->miter_limit;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-07-30 11:01:11 +00:00
|
|
|
/*******************************************************************
|
|
|
|
* SetMiterLimit (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetMiterLimit( HDC hdc, FLOAT limit, FLOAT *old_limit )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
/* FIXME: record EMFs */
|
|
|
|
if (old_limit) *old_limit = dc_attr->miter_limit;
|
|
|
|
dc_attr->miter_limit = limit;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-07-23 08:51:16 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetPixel (GDI32.@)
|
|
|
|
*/
|
|
|
|
COLORREF WINAPI SetPixel( HDC hdc, INT x, INT y, COLORREF color )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetPixel( hdc, x, y, color );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return CLR_INVALID;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetPixel( dc_attr, x, y, color )) return CLR_INVALID;
|
|
|
|
return NtGdiSetPixel( hdc, x, y, color );
|
|
|
|
}
|
|
|
|
|
2021-07-23 08:51:51 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetPixelV (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetPixelV( HDC hdc, INT x, INT y, COLORREF color )
|
|
|
|
{
|
|
|
|
return SetPixel( hdc, x, y, color ) != CLR_INVALID;
|
|
|
|
}
|
|
|
|
|
2021-07-17 14:56:39 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* LineTo (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI LineTo( HDC hdc, INT x, INT y )
|
|
|
|
{
|
2021-07-20 07:18:50 +00:00
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
2021-07-17 14:56:39 +00:00
|
|
|
TRACE( "%p, (%d, %d)\n", hdc, x, y );
|
2021-07-17 15:00:55 +00:00
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_LineTo( hdc, x, y );
|
2021-07-20 07:18:50 +00:00
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_LineTo( dc_attr, x, y )) return FALSE;
|
2021-07-17 14:56:39 +00:00
|
|
|
return NtGdiLineTo( hdc, x, y );
|
|
|
|
}
|
2021-07-17 14:56:46 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* MoveToEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI MoveToEx( HDC hdc, INT x, INT y, POINT *pt )
|
|
|
|
{
|
2021-07-20 07:19:05 +00:00
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
2021-07-17 14:56:46 +00:00
|
|
|
TRACE( "%p, (%d, %d), %p\n", hdc, x, y, pt );
|
2021-07-17 15:20:11 +00:00
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_MoveTo( hdc, x, y );
|
2021-07-20 07:19:05 +00:00
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_MoveTo( dc_attr, x, y )) return FALSE;
|
2021-07-17 14:56:46 +00:00
|
|
|
return NtGdiMoveTo( hdc, x, y, pt );
|
|
|
|
}
|
2021-07-17 14:56:54 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* Arc (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI Arc( HDC hdc, INT left, INT top, INT right, INT bottom,
|
|
|
|
INT xstart, INT ystart, INT xend, INT yend )
|
|
|
|
{
|
2021-07-20 07:19:24 +00:00
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
2021-07-17 14:56:54 +00:00
|
|
|
TRACE( "%p, (%d, %d)-(%d, %d), (%d, %d), (%d, %d)\n", hdc, left, top,
|
|
|
|
right, bottom, xstart, ystart, xend, yend );
|
2021-07-18 10:57:34 +00:00
|
|
|
|
|
|
|
if (is_meta_dc( hdc ))
|
|
|
|
return METADC_Arc( hdc, left, top, right, bottom,
|
|
|
|
xstart, ystart, xend, yend );
|
|
|
|
|
2021-07-20 07:19:24 +00:00
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_ArcChordPie( dc_attr, left, top, right, bottom,
|
|
|
|
xstart, ystart, xend, yend, EMR_ARC ))
|
|
|
|
return FALSE;
|
|
|
|
|
2021-07-17 14:56:54 +00:00
|
|
|
return NtGdiArcInternal( NtGdiArc, hdc, left, top, right, bottom,
|
|
|
|
xstart, ystart, xend, yend );
|
|
|
|
}
|
2021-07-17 14:57:06 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ArcTo (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI ArcTo( HDC hdc, INT left, INT top, INT right, INT bottom,
|
|
|
|
INT xstart, INT ystart, INT xend, INT yend )
|
|
|
|
{
|
2021-07-20 07:19:24 +00:00
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
2021-07-17 14:57:06 +00:00
|
|
|
TRACE( "%p, (%d, %d)-(%d, %d), (%d, %d), (%d, %d)\n", hdc, left, top,
|
|
|
|
right, bottom, xstart, ystart, xend, yend );
|
|
|
|
|
2021-07-20 07:19:24 +00:00
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_ArcChordPie( dc_attr, left, top, right, bottom,
|
|
|
|
xstart, ystart, xend, yend, EMR_ARCTO ))
|
|
|
|
return FALSE;
|
|
|
|
|
2021-07-17 14:57:06 +00:00
|
|
|
return NtGdiArcInternal( NtGdiArcTo, hdc, left, top, right, bottom,
|
|
|
|
xstart, ystart, xend, yend );
|
|
|
|
}
|
2021-07-17 14:57:16 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* Chord (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI Chord( HDC hdc, INT left, INT top, INT right, INT bottom,
|
|
|
|
INT xstart, INT ystart, INT xend, INT yend )
|
|
|
|
{
|
2021-07-20 07:19:24 +00:00
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
2021-07-17 14:57:16 +00:00
|
|
|
TRACE( "%p, (%d, %d)-(%d, %d), (%d, %d), (%d, %d)\n", hdc, left, top,
|
|
|
|
right, bottom, xstart, ystart, xend, yend );
|
|
|
|
|
2021-07-17 15:01:18 +00:00
|
|
|
if (is_meta_dc( hdc ))
|
|
|
|
return METADC_Chord( hdc, left, top, right, bottom,
|
|
|
|
xstart, ystart, xend, yend );
|
|
|
|
|
2021-07-20 07:19:24 +00:00
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_ArcChordPie( dc_attr, left, top, right, bottom,
|
|
|
|
xstart, ystart, xend, yend, EMR_CHORD ))
|
|
|
|
return FALSE;
|
|
|
|
|
2021-07-17 14:57:16 +00:00
|
|
|
return NtGdiArcInternal( NtGdiChord, hdc, left, top, right, bottom,
|
|
|
|
xstart, ystart, xend, yend );
|
|
|
|
}
|
2021-07-17 14:57:25 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* Pie (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI Pie( HDC hdc, INT left, INT top, INT right, INT bottom,
|
|
|
|
INT xstart, INT ystart, INT xend, INT yend )
|
|
|
|
{
|
2021-07-20 07:19:24 +00:00
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
2021-07-17 14:57:25 +00:00
|
|
|
TRACE( "%p, (%d, %d)-(%d, %d), (%d, %d), (%d, %d)\n", hdc, left, top,
|
|
|
|
right, bottom, xstart, ystart, xend, yend );
|
|
|
|
|
2021-07-17 15:01:18 +00:00
|
|
|
if (is_meta_dc( hdc ))
|
|
|
|
return METADC_Pie( hdc, left, top, right, bottom,
|
|
|
|
xstart, ystart, xend, yend );
|
|
|
|
|
2021-07-20 07:19:24 +00:00
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_ArcChordPie( dc_attr, left, top, right, bottom,
|
|
|
|
xstart, ystart, xend, yend, EMR_PIE ))
|
|
|
|
return FALSE;
|
|
|
|
|
2021-07-17 14:57:25 +00:00
|
|
|
return NtGdiArcInternal( NtGdiPie, hdc, left, top, right, bottom,
|
|
|
|
xstart, ystart, xend, yend );
|
|
|
|
}
|
2021-07-20 07:19:33 +00:00
|
|
|
|
2021-07-20 07:20:02 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* AngleArc (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI AngleArc( HDC hdc, INT x, INT y, DWORD radius, FLOAT start_angle, FLOAT sweep_angle )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, (%d, %d), %u, %f, %f\n", hdc, x, y, radius, start_angle, sweep_angle );
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_AngleArc( dc_attr, x, y, radius, start_angle, sweep_angle ))
|
|
|
|
return FALSE;
|
|
|
|
return NtGdiAngleArc( hdc, x, y, radius, start_angle, sweep_angle );
|
|
|
|
}
|
|
|
|
|
2021-07-20 07:19:33 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* Ellipse (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI Ellipse( HDC hdc, INT left, INT top, INT right, INT bottom )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, (%d, %d)-(%d, %d)\n", hdc, left, top, right, bottom );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_Ellipse( hdc, left, top, right, bottom );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_Ellipse( dc_attr, left, top, right, bottom )) return FALSE;
|
|
|
|
return NtGdiEllipse( hdc, left, top, right, bottom );
|
|
|
|
}
|
2021-07-20 07:19:41 +00:00
|
|
|
|
2021-07-20 07:19:51 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* Rectangle (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI Rectangle( HDC hdc, INT left, INT top, INT right, INT bottom )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, (%d, %d)-(%d, %d)\n", hdc, left, top, right, bottom );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_Rectangle( hdc, left, top, right, bottom );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_Rectangle( dc_attr, left, top, right, bottom )) return FALSE;
|
|
|
|
return NtGdiRectangle( hdc, left, top, right, bottom );
|
|
|
|
}
|
|
|
|
|
2021-07-20 07:19:41 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* RoundRect (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI RoundRect( HDC hdc, INT left, INT top, INT right,
|
|
|
|
INT bottom, INT ell_width, INT ell_height )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, (%d, %d)-(%d, %d), %dx%d\n", hdc, left, top, right, bottom,
|
|
|
|
ell_width, ell_height );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc ))
|
|
|
|
return METADC_RoundRect( hdc, left, top, right, bottom, ell_width, ell_height );
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_RoundRect( dc_attr, left, top, right, bottom,
|
|
|
|
ell_width, ell_height ))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return NtGdiRoundRect( hdc, left, top, right, bottom, ell_width, ell_height );
|
|
|
|
}
|
2021-07-22 09:25:17 +00:00
|
|
|
|
2021-07-22 09:26:00 +00:00
|
|
|
/**********************************************************************
|
|
|
|
* Polygon (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI Polygon( HDC hdc, const POINT *points, INT count )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p, %d\n", hdc, points, count );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_Polygon( hdc, points, count );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_Polygon( dc_attr, points, count )) return FALSE;
|
|
|
|
return NtGdiPolyPolyDraw( hdc, points, (const UINT *)&count, 1, NtGdiPolyPolygon );
|
|
|
|
}
|
|
|
|
|
2021-07-22 09:25:17 +00:00
|
|
|
/**********************************************************************
|
|
|
|
* PolyPolygon (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PolyPolygon( HDC hdc, const POINT *points, const INT *counts, UINT polygons )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p, %p, %u\n", hdc, points, counts, polygons );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_PolyPolygon( hdc, points, counts, polygons );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_PolyPolygon( dc_attr, points, counts, polygons )) return FALSE;
|
|
|
|
return NtGdiPolyPolyDraw( hdc, points, (const UINT *)counts, polygons, NtGdiPolyPolygon );
|
|
|
|
}
|
2021-07-22 09:26:15 +00:00
|
|
|
|
2021-07-22 09:26:36 +00:00
|
|
|
/**********************************************************************
|
|
|
|
* Polyline (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI Polyline( HDC hdc, const POINT *points, INT count )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p, %d\n", hdc, points, count );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_Polyline( hdc, points, count );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_Polyline( dc_attr, points, count )) return FALSE;
|
|
|
|
return NtGdiPolyPolyDraw( hdc, points, (const UINT *)&count, 1, NtGdiPolyPolyline );
|
|
|
|
}
|
|
|
|
|
2021-07-22 09:26:15 +00:00
|
|
|
/**********************************************************************
|
|
|
|
* PolyPolyline (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PolyPolyline( HDC hdc, const POINT *points, const DWORD *counts, DWORD polylines )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p, %p, %u\n", hdc, points, counts, polylines );
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_PolyPolyline( dc_attr, points, counts, polylines )) return FALSE;
|
|
|
|
return NtGdiPolyPolyDraw( hdc, points, counts, polylines, NtGdiPolyPolyline );
|
|
|
|
}
|
2021-07-22 09:27:07 +00:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* PolyBezier (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PolyBezier( HDC hdc, const POINT *points, DWORD count )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p, %u\n", hdc, points, count );
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_PolyBezier( dc_attr, points, count )) return FALSE;
|
|
|
|
return NtGdiPolyPolyDraw( hdc, points, &count, 1, NtGdiPolyBezier );
|
|
|
|
}
|
2021-07-22 09:27:20 +00:00
|
|
|
|
2021-07-22 09:27:36 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* PolyBezierTo (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PolyBezierTo( HDC hdc, const POINT *points, DWORD count )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p, %u\n", hdc, points, count );
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_PolyBezierTo( dc_attr, points, count )) return FALSE;
|
|
|
|
return NtGdiPolyPolyDraw( hdc, points, &count, 1, NtGdiPolyBezierTo );
|
|
|
|
}
|
|
|
|
|
2021-07-22 09:27:20 +00:00
|
|
|
/**********************************************************************
|
|
|
|
* PolylineTo (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PolylineTo( HDC hdc, const POINT *points, DWORD count )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p, %u\n", hdc, points, count );
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_PolylineTo( dc_attr, points, count )) return FALSE;
|
|
|
|
return NtGdiPolyPolyDraw( hdc, points, &count, 1, NtGdiPolylineTo );
|
|
|
|
}
|
2021-07-23 08:48:48 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* PolyDraw (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PolyDraw( HDC hdc, const POINT *points, const BYTE *types, DWORD count )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p, %p, %u\n", hdc, points, types, count );
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_PolyDraw( dc_attr, points, types, count )) return FALSE;
|
|
|
|
return NtGdiPolyDraw( hdc, points, types, count );
|
|
|
|
}
|
2021-07-23 08:49:42 +00:00
|
|
|
|
2021-07-25 08:56:11 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* FillRgn (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FillRgn( HDC hdc, HRGN hrgn, HBRUSH hbrush )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p, %p\n", hdc, hrgn, hbrush );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_FillRgn( hdc, hrgn, hbrush );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_FillRgn( dc_attr, hrgn, hbrush )) return FALSE;
|
|
|
|
return NtGdiFillRgn( hdc, hrgn, hbrush );
|
|
|
|
}
|
|
|
|
|
2021-07-25 08:56:36 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* PaintRgn (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PaintRgn( HDC hdc, HRGN hrgn )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p\n", hdc, hrgn );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_PaintRgn( hdc, hrgn );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_PaintRgn( dc_attr, hrgn )) return FALSE;
|
|
|
|
return NtGdiFillRgn( hdc, hrgn, GetCurrentObject( hdc, OBJ_BRUSH ));
|
|
|
|
}
|
|
|
|
|
2021-07-25 08:56:56 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* FrameRgn (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FrameRgn( HDC hdc, HRGN hrgn, HBRUSH hbrush, INT width, INT height )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p, %p, %dx%d\n", hdc, hrgn, hbrush, width, height );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_FrameRgn( hdc, hrgn, hbrush, width, height );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_FrameRgn( dc_attr, hrgn, hbrush, width, height ))
|
|
|
|
return FALSE;
|
|
|
|
return NtGdiFrameRgn( hdc, hrgn, hbrush, width, height );
|
|
|
|
}
|
|
|
|
|
2021-07-25 08:57:12 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* InvertRgn (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InvertRgn( HDC hdc, HRGN hrgn )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, %p\n", hdc, hrgn );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_InvertRgn( hdc, hrgn );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_InvertRgn( dc_attr, hrgn )) return FALSE;
|
|
|
|
return NtGdiInvertRgn( hdc, hrgn );
|
|
|
|
}
|
|
|
|
|
2021-07-25 08:57:58 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* ExtFloodFill (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI ExtFloodFill( HDC hdc, INT x, INT y, COLORREF color, UINT fill_type )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p, (%d, %d), %08x, %x\n", hdc, x, y, color, fill_type );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_ExtFloodFill( hdc, x, y, color, fill_type );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_ExtFloodFill( dc_attr, x, y, color, fill_type )) return FALSE;
|
|
|
|
return NtGdiExtFloodFill( hdc, x, y, color, fill_type );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FloodFill (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI FloodFill( HDC hdc, INT x, INT y, COLORREF color )
|
|
|
|
{
|
|
|
|
return ExtFloodFill( hdc, x, y, color, FLOODFILLBORDER );
|
|
|
|
}
|
|
|
|
|
2021-07-25 08:58:49 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* GdiGradientFill (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GdiGradientFill( HDC hdc, TRIVERTEX *vert_array, ULONG nvert,
|
|
|
|
void *grad_array, ULONG ngrad, ULONG mode )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE( "%p vert_array:%p nvert:%d grad_array:%p ngrad:%d\n", hdc, vert_array,
|
|
|
|
nvert, grad_array, ngrad );
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc )))
|
|
|
|
{
|
|
|
|
SetLastError( ERROR_INVALID_PARAMETER );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (dc_attr->emf &&
|
|
|
|
!EMFDC_GradientFill( dc_attr, vert_array, nvert, grad_array, ngrad, mode ))
|
|
|
|
return FALSE;
|
|
|
|
return NtGdiGradientFill( hdc, vert_array, nvert, grad_array, ngrad, mode );
|
|
|
|
}
|
|
|
|
|
2021-07-23 08:49:42 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* ExtTextOutW (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI ExtTextOutW( HDC hdc, INT x, INT y, UINT flags, const RECT *rect,
|
|
|
|
const WCHAR *str, UINT count, const INT *dx )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_ExtTextOut( hdc, x, y, flags, rect, str, count, dx );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_ExtTextOut( dc_attr, x, y, flags, rect, str, count, dx ))
|
|
|
|
return FALSE;
|
|
|
|
return NtGdiExtTextOutW( hdc, x, y, flags, rect, str, count, dx, 0 );
|
|
|
|
}
|
2021-07-23 08:50:13 +00:00
|
|
|
|
2021-08-05 09:25:19 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetTextJustification (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetTextJustification( HDC hdc, INT extra, INT breaks )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_SetTextJustification( hdc, extra, breaks );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_SetTextJustification( dc_attr, extra, breaks ))
|
|
|
|
return FALSE;
|
|
|
|
return NtGdiSetTextJustification( hdc, extra, breaks );
|
|
|
|
}
|
|
|
|
|
2021-08-03 10:56:49 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* PatBlt (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI PatBlt( HDC hdc, INT left, INT top, INT width, INT height, DWORD rop )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_PatBlt( hdc, left, top, width, height, rop );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_PatBlt( dc_attr, left, top, width, height, rop ))
|
|
|
|
return FALSE;
|
|
|
|
return NtGdiPatBlt( hdc, left, top, width, height, rop );
|
|
|
|
}
|
|
|
|
|
2021-07-23 08:50:37 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* BeginPath (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI BeginPath(HDC hdc)
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_BeginPath( dc_attr )) return FALSE;
|
|
|
|
return NtGdiBeginPath( hdc );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* EndPath (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI EndPath(HDC hdc)
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_EndPath( dc_attr )) return FALSE;
|
|
|
|
return NtGdiEndPath( hdc );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* AbortPath (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI AbortPath( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_AbortPath( dc_attr )) return FALSE;
|
|
|
|
return NtGdiAbortPath( hdc );
|
|
|
|
}
|
|
|
|
|
2021-07-23 08:50:13 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* CloseFigure (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CloseFigure( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_CloseFigure( dc_attr )) return FALSE;
|
|
|
|
return NtGdiCloseFigure( hdc );
|
|
|
|
}
|
2021-07-25 08:55:31 +00:00
|
|
|
|
2021-08-04 09:20:21 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* IntersectClipRect (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI IntersectClipRect( HDC hdc, INT left, INT top, INT right, INT bottom )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE("%p %d,%d - %d,%d\n", hdc, left, top, right, bottom );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_IntersectClipRect( hdc, left, top, right, bottom );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_IntersectClipRect( dc_attr, left, top, right, bottom ))
|
|
|
|
return FALSE;
|
|
|
|
return NtGdiIntersectClipRect( hdc, left, top, right, bottom );
|
|
|
|
}
|
|
|
|
|
2021-08-04 09:20:53 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* OffsetClipRgn (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI OffsetClipRgn( HDC hdc, INT x, INT y )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_OffsetClipRgn( hdc, x, y );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_OffsetClipRgn( dc_attr, x, y )) return FALSE;
|
|
|
|
return NtGdiOffsetClipRgn( hdc, x, y );
|
|
|
|
}
|
|
|
|
|
2021-08-04 09:21:13 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* ExcludeClipRect (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI ExcludeClipRect( HDC hdc, INT left, INT top, INT right, INT bottom )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_ExcludeClipRect( hdc, left, top, right, bottom );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_ExcludeClipRect( dc_attr, left, top, right, bottom ))
|
|
|
|
return FALSE;
|
|
|
|
return NtGdiExcludeClipRect( hdc, left, top, right, bottom );
|
|
|
|
}
|
|
|
|
|
2021-08-04 09:22:02 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* ExtSelectClipRgn (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI ExtSelectClipRgn( HDC hdc, HRGN hrgn, INT mode )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
TRACE("%p %p %d\n", hdc, hrgn, mode );
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_ExtSelectClipRgn( hdc, hrgn, mode );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_ExtSelectClipRgn( dc_attr, hrgn, mode ))
|
|
|
|
return FALSE;
|
|
|
|
return NtGdiExtSelectClipRgn( hdc, hrgn, mode );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* SelectClipRgn (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SelectClipRgn( HDC hdc, HRGN hrgn )
|
|
|
|
{
|
|
|
|
return ExtSelectClipRgn( hdc, hrgn, RGN_COPY );
|
|
|
|
}
|
|
|
|
|
2021-08-04 09:22:19 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* SetMetaRgn (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SetMetaRgn( HDC hdc )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf) FIXME( "EMFs are not yet supported\n" );
|
|
|
|
return NtGdiSetMetaRgn( hdc );
|
|
|
|
}
|
|
|
|
|
2021-08-05 09:25:32 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* DPtoLP (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DPtoLP( HDC hdc, POINT *points, INT count )
|
|
|
|
{
|
|
|
|
return NtGdiTransformPoints( hdc, points, points, count, NtGdiDPtoLP );
|
|
|
|
}
|
|
|
|
|
2021-08-05 09:25:45 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* LPtoDP (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI LPtoDP( HDC hdc, POINT *points, INT count )
|
|
|
|
{
|
|
|
|
return NtGdiTransformPoints( hdc, points, points, count, NtGdiLPtoDP );
|
|
|
|
}
|
|
|
|
|
2021-08-06 14:59:08 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* ScaleViewportExtEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI ScaleViewportExtEx( HDC hdc, INT x_num, INT x_denom,
|
|
|
|
INT y_num, INT y_denom, SIZE *size )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_ScaleViewportExtEx( hdc, x_num, x_denom, y_num, y_denom );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_ScaleViewportExtEx( dc_attr, x_num, x_denom, y_num, y_denom ))
|
|
|
|
return FALSE;
|
|
|
|
return NtGdiScaleViewportExtEx( hdc, x_num, x_denom, y_num, y_denom, size );
|
|
|
|
}
|
2021-08-05 09:25:45 +00:00
|
|
|
|
2021-08-06 14:59:09 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* ScaleWindowExtEx (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI ScaleWindowExtEx( HDC hdc, INT x_num, INT x_denom,
|
|
|
|
INT y_num, INT y_denom, SIZE *size )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return METADC_ScaleWindowExtEx( hdc, x_num, x_denom, y_num, y_denom );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_ScaleWindowExtEx( dc_attr, x_num, x_denom, y_num, y_denom ))
|
|
|
|
return FALSE;
|
|
|
|
return NtGdiScaleWindowExtEx( hdc, x_num, x_denom, y_num, y_denom, size );
|
|
|
|
}
|
|
|
|
|
2021-08-09 09:30:56 +00:00
|
|
|
/* Pointers to USER implementation of SelectPalette/RealizePalette */
|
|
|
|
/* they will be patched by USER on startup */
|
|
|
|
extern HPALETTE WINAPI GDISelectPalette( HDC hdc, HPALETTE hpal, WORD wBkg );
|
2021-08-09 09:31:13 +00:00
|
|
|
extern UINT WINAPI GDIRealizePalette( HDC hdc );
|
2021-08-09 09:30:56 +00:00
|
|
|
HPALETTE (WINAPI *pfnSelectPalette)( HDC hdc, HPALETTE hpal, WORD bkgnd ) = GDISelectPalette;
|
2021-08-09 09:31:13 +00:00
|
|
|
UINT (WINAPI *pfnRealizePalette)( HDC hdc ) = GDIRealizePalette;
|
2021-08-09 09:30:56 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* SelectPalette (GDI32.@)
|
|
|
|
*/
|
|
|
|
HPALETTE WINAPI SelectPalette( HDC hdc, HPALETTE palette, BOOL force_background )
|
|
|
|
{
|
|
|
|
DC_ATTR *dc_attr;
|
|
|
|
|
|
|
|
if (is_meta_dc( hdc )) return ULongToHandle( METADC_SelectPalette( hdc, palette ) );
|
|
|
|
if (!(dc_attr = get_dc_attr( hdc ))) return FALSE;
|
|
|
|
if (dc_attr->emf && !EMFDC_SelectPalette( dc_attr, palette )) return 0;
|
|
|
|
return pfnSelectPalette( hdc, palette, force_background );
|
|
|
|
}
|
|
|
|
|
2021-08-09 09:31:13 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* RealizePalette (GDI32.@)
|
|
|
|
*/
|
|
|
|
UINT WINAPI RealizePalette( HDC hdc )
|
|
|
|
{
|
|
|
|
if (is_meta_dc( hdc )) return METADC_RealizePalette( hdc );
|
|
|
|
return pfnRealizePalette( hdc );
|
|
|
|
}
|
|
|
|
|
2021-07-25 08:55:31 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GdiSetPixelFormat (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GdiSetPixelFormat( HDC hdc, INT format, const PIXELFORMATDESCRIPTOR *descr )
|
|
|
|
{
|
|
|
|
TRACE( "(%p,%d,%p)\n", hdc, format, descr );
|
|
|
|
return NtGdiSetPixelFormat( hdc, format );
|
|
|
|
}
|
2021-07-30 11:01:38 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CancelDC (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI CancelDC(HDC hdc)
|
|
|
|
{
|
|
|
|
FIXME( "stub\n" );
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* SetICMMode (GDI32.@)
|
|
|
|
*/
|
|
|
|
INT WINAPI SetICMMode( HDC hdc, INT mode )
|
|
|
|
{
|
|
|
|
/* FIXME: Assume that ICM is always off, and cannot be turned on */
|
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case ICM_OFF: return ICM_OFF;
|
|
|
|
case ICM_ON: return 0;
|
|
|
|
case ICM_QUERY: return ICM_OFF;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GdiIsMetaPrintDC (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GdiIsMetaPrintDC( HDC hdc )
|
|
|
|
{
|
|
|
|
FIXME( "%p\n", hdc );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GdiIsMetaFileDC (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GdiIsMetaFileDC( HDC hdc )
|
|
|
|
{
|
|
|
|
TRACE( "%p\n", hdc );
|
|
|
|
|
|
|
|
switch (GetObjectType( hdc ))
|
|
|
|
{
|
|
|
|
case OBJ_METADC:
|
|
|
|
case OBJ_ENHMETADC:
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GdiIsPlayMetafileDC (GDI32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GdiIsPlayMetafileDC( HDC hdc )
|
|
|
|
{
|
|
|
|
FIXME( "%p\n", hdc );
|
|
|
|
return FALSE;
|
|
|
|
}
|