|
ReactOS 0.4.16-dev-1946-g52006dd
|
#include <stdarg.h>#include <math.h>#include <assert.h>#include "windef.h"#include "winbase.h"#include "wingdi.h"#include "wine/unicode.h"#include "objbase.h"#include "ocidl.h"#include "olectl.h"#include "ole2.h"#include "winreg.h"#include "shlwapi.h"#include "gdiplus.h"#include "gdiplus_private.h"#include "wine/debug.h"#include "wine/list.h"
Go to the source code of this file.
Macros | |
| #define | NONAMELESSUNION |
| #define | COBJMACROS |
| #define COBJMACROS |
Definition at line 30 of file metafile.c.
| #define NONAMELESSUNION |
Definition at line 23 of file metafile.c.
| typedef ARGB EmfPlusARGB |
Definition at line 48 of file metafile.c.
| typedef struct EmfPlusBitmap EmfPlusBitmap |
| typedef struct EmfPlusBrush EmfPlusBrush |
| typedef struct EmfPlusClear EmfPlusClear |
| typedef struct EmfPlusDrawArc EmfPlusDrawArc |
| typedef struct EmfPlusDrawImage EmfPlusDrawImage |
| typedef struct EmfPlusDrawPath EmfPlusDrawPath |
| typedef struct EmfPlusDrawPie EmfPlusDrawPie |
| typedef struct EmfPlusDrawRects EmfPlusDrawRects |
| typedef struct EmfPlusFillPath EmfPlusFillPath |
| typedef struct EmfPlusFillPie EmfPlusFillPie |
| typedef struct EmfPlusFillRects EmfPlusFillRects |
| typedef struct EmfPlusFont EmfPlusFont |
| typedef struct EmfPlusHeader EmfPlusHeader |
| typedef struct EmfPlusImage EmfPlusImage |
| typedef struct EmfPlusMetafile EmfPlusMetafile |
| typedef struct EmfPlusObject EmfPlusObject |
| typedef struct EmfPlusPalette EmfPlusPalette |
| typedef struct EmfPlusPath EmfPlusPath |
| typedef struct EmfPlusPen EmfPlusPen |
| typedef struct EmfPlusPenData EmfPlusPenData |
| typedef struct EmfPlusPoint EmfPlusPoint |
| typedef struct EmfPlusPointF EmfPlusPointF |
| typedef struct EmfPlusPointR7 EmfPlusPointR7 |
| typedef struct EmfPlusRect EmfPlusRect |
| typedef struct EmfPlusRectF EmfPlusRectF |
| typedef struct EmfPlusRegion EmfPlusRegion |
| typedef enum ImageDataType ImageDataType |
| Enumerator | |
|---|---|
| BitmapDataTypePixel | |
| BitmapDataTypeCompressed | |
Definition at line 331 of file metafile.c.
| Enumerator | |
|---|---|
| BrushDataPath | |
| BrushDataTransform | |
| BrushDataPresetColors | |
| BrushDataBlendFactorsH | |
| BrushDataBlendFactorsV | |
| BrushDataFocusScales | |
| BrushDataIsGammaCorrected | |
| BrushDataDoNotTransform | |
Definition at line 228 of file metafile.c.
| Enumerator | |
|---|---|
| BEGIN_CONTAINER | |
| SAVE_GRAPHICS | |
Definition at line 146 of file metafile.c.
| Enumerator | |
|---|---|
| ImageDataTypeUnknown | |
| ImageDataTypeBitmap | |
| ImageDataTypeMetafile | |
| ImageDataTypeUnknown | |
| ImageDataTypeBitmap | |
| ImageDataTypeMetafile | |
Definition at line 354 of file metafile.c.
| Enumerator | |
|---|---|
| LineStyleSolid | |
| LineStyleDash | |
| LineStyleDot | |
| LineStyleDashDot | |
| LineStyleDashDotDot | |
| LineStyleCustom | |
Definition at line 186 of file metafile.c.
Definition at line 164 of file metafile.c.
|
static |
Definition at line 3385 of file metafile.c.
Referenced by check_metafile(), and GdipEnumerateMetafileSrcRectDestPoints().
| GpStatus WINGDIPAPI GdipConvertToEmfPlus | ( | const GpGraphics * | ref, |
| GpMetafile * | metafile, | ||
| BOOL * | succ, | ||
| EmfType | emfType, | ||
| const WCHAR * | description, | ||
| GpMetafile ** | out_metafile | ||
| ) |
Definition at line 3964 of file metafile.c.
| GpStatus WINGDIPAPI GdipConvertToEmfPlusToFile | ( | const GpGraphics * | refGraphics, |
| GpMetafile * | metafile, | ||
| BOOL * | conversionSuccess, | ||
| const WCHAR * | filename, | ||
| EmfType | emfType, | ||
| const WCHAR * | description, | ||
| GpMetafile ** | out_metafile | ||
| ) |
Definition at line 4018 of file metafile.c.
| GpStatus WINGDIPAPI GdipCreateMetafileFromEmf | ( | HENHMETAFILE | hemf, |
| BOOL | delete, | ||
| GpMetafile ** | metafile | ||
| ) |
Definition at line 3804 of file metafile.c.
Referenced by GdipCreateMetafileFromWmf(), GdipCreateMetafileFromWmfFile(), load_emf(), sync_metafile(), test_drawimage(), test_emfonly(), and test_empty().
| GpStatus WINGDIPAPI GdipCreateMetafileFromFile | ( | GDIPCONST WCHAR * | file, |
| GpMetafile ** | metafile | ||
| ) |
Definition at line 3915 of file metafile.c.
Referenced by GdipGetMetafileHeaderFromFile().
| GpStatus WINGDIPAPI GdipCreateMetafileFromStream | ( | IStream * | stream, |
| GpMetafile ** | metafile | ||
| ) |
Definition at line 3936 of file metafile.c.
Referenced by GdipCreateMetafileFromFile(), and GdipGetMetafileHeaderFromStream().
| GpStatus WINGDIPAPI GdipCreateMetafileFromWmf | ( | HMETAFILE | hwmf, |
| BOOL | delete, | ||
| GDIPCONST WmfPlaceableFileHeader * | placeable, | ||
| GpMetafile ** | metafile | ||
| ) |
Definition at line 3845 of file metafile.c.
Referenced by GdipCreateMetafileFromWmfFile(), GdipGetMetafileHeaderFromWmf(), load_wmf(), test_createfromwmf(), and test_createfromwmf_noplaceable().
| GpStatus WINGDIPAPI GdipCreateMetafileFromWmfFile | ( | GDIPCONST WCHAR * | file, |
| GDIPCONST WmfPlaceableFileHeader * | placeable, | ||
| GpMetafile ** | metafile | ||
| ) |
Definition at line 3896 of file metafile.c.
Referenced by test_fillpath().
| GpStatus WINGDIPAPI GdipEmfToWmfBits | ( | HENHMETAFILE | hemf, |
| UINT | cbData16, | ||
| LPBYTE | pData16, | ||
| INT | iMapMode, | ||
| INT | eFlags | ||
| ) |
Definition at line 3986 of file metafile.c.
| GpStatus WINGDIPAPI GdipEnumerateMetafileDestPoint | ( | GpGraphics * | graphics, |
| GDIPCONST GpMetafile * | metafile, | ||
| GDIPCONST GpPointF * | dest, | ||
| EnumerateMetafileProc | callback, | ||
| VOID * | cb_data, | ||
| GDIPCONST GpImageAttributes * | attrs | ||
| ) |
Definition at line 3602 of file metafile.c.
Referenced by GdipEnumerateMetafileDestPointI().
| GpStatus WINGDIPAPI GdipEnumerateMetafileDestPointI | ( | GpGraphics * | graphics, |
| GDIPCONST GpMetafile * | metafile, | ||
| GDIPCONST GpPoint * | dest, | ||
| EnumerateMetafileProc | callback, | ||
| VOID * | cb_data, | ||
| GDIPCONST GpImageAttributes * | attrs | ||
| ) |
Definition at line 3618 of file metafile.c.
| GpStatus WINGDIPAPI GdipEnumerateMetafileDestRect | ( | GpGraphics * | graphics, |
| GDIPCONST GpMetafile * | metafile, | ||
| GDIPCONST GpRectF * | dest, | ||
| EnumerateMetafileProc | callback, | ||
| VOID * | cb_data, | ||
| GDIPCONST GpImageAttributes * | attrs | ||
| ) |
Definition at line 3569 of file metafile.c.
Referenced by GdipEnumerateMetafileDestPoint(), and GdipEnumerateMetafileDestRectI().
| GpStatus WINGDIPAPI GdipEnumerateMetafileDestRectI | ( | GpGraphics * | graphics, |
| GDIPCONST GpMetafile * | metafile, | ||
| GDIPCONST GpRect * | dest, | ||
| EnumerateMetafileProc | callback, | ||
| VOID * | cb_data, | ||
| GDIPCONST GpImageAttributes * | attrs | ||
| ) |
Definition at line 3586 of file metafile.c.
| GpStatus WINGDIPAPI GdipEnumerateMetafileSrcRectDestPoints | ( | GpGraphics * | graphics, |
| GDIPCONST GpMetafile * | metafile, | ||
| GDIPCONST GpPointF * | destPoints, | ||
| INT | count, | ||
| GDIPCONST GpRectF * | srcRect, | ||
| Unit | srcUnit, | ||
| EnumerateMetafileProc | callback, | ||
| VOID * | callbackData, | ||
| GDIPCONST GpImageAttributes * | imageAttributes | ||
| ) |
Definition at line 3435 of file metafile.c.
Referenced by check_metafile(), GdipDrawImagePointsRect(), GdipEnumerateMetafileDestRect(), and play_metafile().
| GpStatus WINGDIPAPI GdipGetHemfFromMetafile | ( | GpMetafile * | metafile, |
| HENHMETAFILE * | hEmf | ||
| ) |
Definition at line 1613 of file metafile.c.
Referenced by sync_metafile(), test_clear(), test_drawimage(), test_drawpath(), test_emfonly(), test_empty(), test_fillpath(), test_fillrect(), test_gditransform(), test_getdc(), and test_properties().
| GpStatus WINGDIPAPI GdipGetMetafileHeaderFromEmf | ( | HENHMETAFILE | hemf, |
| MetafileHeader * | header | ||
| ) |
Definition at line 3688 of file metafile.c.
Referenced by GdipCreateMetafileFromEmf(), GdipGetMetafileHeaderFromMetafile(), METAFILE_GraphicsDeleted(), test_emfonly(), and test_empty().
| GpStatus WINGDIPAPI GdipGetMetafileHeaderFromFile | ( | GDIPCONST WCHAR * | filename, |
| MetafileHeader * | header | ||
| ) |
Definition at line 3764 of file metafile.c.
| GpStatus WINGDIPAPI GdipGetMetafileHeaderFromMetafile | ( | GpMetafile * | metafile, |
| MetafileHeader * | header | ||
| ) |
Definition at line 3632 of file metafile.c.
Referenced by GdipGetMetafileHeaderFromFile(), GdipGetMetafileHeaderFromStream(), GdipGetMetafileHeaderFromWmf(), test_createfromwmf(), test_emfonly(), test_empty(), test_gditransform(), and test_loadwmf().
| GpStatus WINGDIPAPI GdipGetMetafileHeaderFromStream | ( | IStream * | stream, |
| MetafileHeader * | header | ||
| ) |
Definition at line 3784 of file metafile.c.
| GpStatus WINGDIPAPI GdipGetMetafileHeaderFromWmf | ( | HMETAFILE | hwmf, |
| GDIPCONST WmfPlaceableFileHeader * | placeable, | ||
| MetafileHeader * | header | ||
| ) |
Definition at line 3747 of file metafile.c.
| GpStatus WINGDIPAPI GdipPlayMetafileRecord | ( | GDIPCONST GpMetafile * | metafile, |
| EmfPlusRecordType | recordType, | ||
| UINT | flags, | ||
| UINT | dataSize, | ||
| GDIPCONST BYTE * | data | ||
| ) |
Definition at line 2461 of file metafile.c.
Referenced by play_metafile_proc(), and test_gditransform_cb().
| GpStatus WINGDIPAPI GdipRecordMetafile | ( | HDC | hdc, |
| EmfType | type, | ||
| GDIPCONST GpRectF * | frameRect, | ||
| MetafileFrameUnit | frameUnit, | ||
| GDIPCONST WCHAR * | desc, | ||
| GpMetafile ** | metafile | ||
| ) |
Definition at line 735 of file metafile.c.
Referenced by GdipRecordMetafileI(), GdipRecordMetafileStream(), test_clear(), test_clipping(), test_containers(), test_converttoemfplus(), test_drawimage(), test_drawpath(), test_emfonly(), test_empty(), test_fillpath(), test_fillrect(), test_frameunit(), test_gditransform(), test_getdc(), test_nullframerect(), test_pagetransform(), test_properties(), and test_worldtransform().
| GpStatus WINGDIPAPI GdipRecordMetafileFileName | ( | GDIPCONST WCHAR * | fileName, |
| HDC | hdc, | ||
| EmfType | type, | ||
| GDIPCONST GpRectF * | pFrameRect, | ||
| MetafileFrameUnit | frameUnit, | ||
| GDIPCONST WCHAR * | desc, | ||
| GpMetafile ** | metafile | ||
| ) |
Definition at line 3993 of file metafile.c.
| GpStatus WINGDIPAPI GdipRecordMetafileFileNameI | ( | GDIPCONST WCHAR * | fileName, |
| HDC | hdc, | ||
| EmfType | type, | ||
| GDIPCONST GpRect * | pFrameRect, | ||
| MetafileFrameUnit | frameUnit, | ||
| GDIPCONST WCHAR * | desc, | ||
| GpMetafile ** | metafile | ||
| ) |
Definition at line 4004 of file metafile.c.
| GpStatus WINGDIPAPI GdipRecordMetafileI | ( | HDC | hdc, |
| EmfType | type, | ||
| GDIPCONST GpRect * | frameRect, | ||
| MetafileFrameUnit | frameUnit, | ||
| GDIPCONST WCHAR * | desc, | ||
| GpMetafile ** | metafile | ||
| ) |
Definition at line 842 of file metafile.c.
| GpStatus WINGDIPAPI GdipRecordMetafileStream | ( | IStream * | stream, |
| HDC | hdc, | ||
| EmfType | type, | ||
| GDIPCONST GpRectF * | frameRect, | ||
| MetafileFrameUnit | frameUnit, | ||
| GDIPCONST WCHAR * | desc, | ||
| GpMetafile ** | metafile | ||
| ) |
Definition at line 863 of file metafile.c.
| GpStatus WINGDIPAPI GdipSetMetafileDownLevelRasterizationLimit | ( | GpMetafile * | metafile, |
| UINT | limitDpi | ||
| ) |
Definition at line 3956 of file metafile.c.
|
static |
Definition at line 3662 of file metafile.c.
Referenced by GdipGetMetafileHeaderFromEmf().
|
static |
Definition at line 1027 of file metafile.c.
Referenced by METAFILE_FillPath(), and METAFILE_FillRectangles().
|
static |
Definition at line 4158 of file metafile.c.
Referenced by METAFILE_DrawImagePointsRect().
|
static |
Definition at line 4080 of file metafile.c.
Referenced by METAFILE_DrawImagePointsRect().
|
static |
Definition at line 613 of file metafile.c.
Referenced by METAFILE_AddBrushObject(), METAFILE_AddImageAttributesObject(), METAFILE_AddImageObject(), METAFILE_AddPathObject(), METAFILE_AddPenObject(), and METAFILE_AddRegionObject().
|
static |
Definition at line 4287 of file metafile.c.
Referenced by METAFILE_DrawPath(), and METAFILE_FillPath().
|
static |
Definition at line 4310 of file metafile.c.
Referenced by METAFILE_DrawPath().
|
static |
Definition at line 1167 of file metafile.c.
Referenced by METAFILE_SetClipRegion().
| GpStatus METAFILE_AddSimpleProperty | ( | GpMetafile * | metafile, |
| SHORT | prop, | ||
| SHORT | val | ||
| ) |
Definition at line 4269 of file metafile.c.
Referenced by GdipSetCompositingMode(), GdipSetCompositingQuality(), GdipSetInterpolationMode(), GdipSetPixelOffsetMode(), GdipSetSmoothingMode(), and GdipSetTextRenderingHint().
|
static |
Definition at line 884 of file metafile.c.
Referenced by METAFILE_FillRectangles().
|
static |
Definition at line 618 of file metafile.c.
Referenced by METAFILE_AddBrushObject(), METAFILE_AddImageAttributesObject(), METAFILE_AddImageObject(), METAFILE_AddPathObject(), METAFILE_AddPenObject(), METAFILE_AddRegionObject(), METAFILE_AddSimpleProperty(), METAFILE_BeginContainer(), METAFILE_BeginContainerNoParams(), METAFILE_DrawImagePointsRect(), METAFILE_DrawPath(), METAFILE_EndContainer(), METAFILE_FillPath(), METAFILE_FillRectangles(), METAFILE_GetDC(), METAFILE_GraphicsClear(), METAFILE_MultiplyWorldTransform(), METAFILE_ResetWorldTransform(), METAFILE_RestoreGraphics(), METAFILE_RotateWorldTransform(), METAFILE_SaveGraphics(), METAFILE_ScaleWorldTransform(), METAFILE_SetClipRect(), METAFILE_SetClipRegion(), METAFILE_SetPageTransform(), METAFILE_SetWorldTransform(), METAFILE_TranslateWorldTransform(), METAFILE_WriteEndOfFile(), and METAFILE_WriteHeader().
| GpStatus METAFILE_BeginContainer | ( | GpMetafile * | metafile, |
| GDIPCONST GpRectF * | dstrect, | ||
| GDIPCONST GpRectF * | srcrect, | ||
| GpUnit | unit, | ||
| DWORD | StackIndex | ||
| ) |
Definition at line 1376 of file metafile.c.
Referenced by GdipBeginContainer().
| GpStatus METAFILE_BeginContainerNoParams | ( | GpMetafile * | metafile, |
| DWORD | StackIndex | ||
| ) |
Definition at line 1400 of file metafile.c.
Referenced by begin_container().
|
static |
Definition at line 4027 of file metafile.c.
Referenced by METAFILE_AddImageObject().
|
static |
Definition at line 2023 of file metafile.c.
Referenced by METAFILE_PlaybackObject().
|
static |
Definition at line 1726 of file metafile.c.
Referenced by metafile_deserialize_brush(), and METAFILE_PlaybackObject().
|
static |
Definition at line 1828 of file metafile.c.
Referenced by METAFILE_PlaybackObject(), and metafile_read_region_node().
|
static |
Definition at line 1992 of file metafile.c.
Referenced by METAFILE_PlaybackObject().
| GpStatus METAFILE_DrawImagePointsRect | ( | GpMetafile * | metafile, |
| GpImage * | image, | ||
| GDIPCONST GpPointF * | points, | ||
| INT | count, | ||
| REAL | srcx, | ||
| REAL | srcy, | ||
| REAL | srcwidth, | ||
| REAL | srcheight, | ||
| GpUnit | srcUnit, | ||
| GDIPCONST GpImageAttributes * | imageAttributes, | ||
| DrawImageAbort | callback, | ||
| VOID * | callbackData | ||
| ) |
Definition at line 4190 of file metafile.c.
Referenced by GdipDrawImagePointsRect().
| GpStatus METAFILE_DrawPath | ( | GpMetafile * | metafile, |
| GpPen * | pen, | ||
| GpPath * | path | ||
| ) |
Definition at line 4476 of file metafile.c.
Referenced by GdipDrawPath().
| GpStatus METAFILE_EndContainer | ( | GpMetafile * | metafile, |
| DWORD | StackIndex | ||
| ) |
Definition at line 1423 of file metafile.c.
Referenced by end_container().
|
static |
Definition at line 1001 of file metafile.c.
Referenced by METAFILE_AddBrushObject(), and METAFILE_AddPenObject().
|
static |
Definition at line 4065 of file metafile.c.
Referenced by METAFILE_AddImageObject().
| GpStatus METAFILE_FillPath | ( | GpMetafile * | metafile, |
| GpBrush * | brush, | ||
| GpPath * | path | ||
| ) |
Definition at line 4505 of file metafile.c.
Referenced by GdipFillPath().
| GpStatus METAFILE_FillRectangles | ( | GpMetafile * | metafile, |
| GpBrush * | brush, | ||
| GDIPCONST GpRectF * | rects, | ||
| INT | count | ||
| ) |
Definition at line 1051 of file metafile.c.
Referenced by GdipFillRectangles().
| void METAFILE_Free | ( | GpMetafile * | metafile | ) |
Definition at line 590 of file metafile.c.
Referenced by free_image_data().
|
static |
Definition at line 552 of file metafile.c.
Referenced by METAFILE_Free(), and metafile_set_object_table_entry().
|
static |
Definition at line 2162 of file metafile.c.
Referenced by METAFILE_PlaybackObject().
| GpStatus METAFILE_GetDC | ( | GpMetafile * | metafile, |
| HDC * | hdc | ||
| ) |
Definition at line 927 of file metafile.c.
Referenced by GdipGetDC().
|
static |
Definition at line 1626 of file metafile.c.
Referenced by GdipPlayMetafileRecord(), and METAFILE_PlaybackUpdateGdiTransform().
| GpStatus METAFILE_GetGraphicsContext | ( | GpMetafile * | metafile, |
| GpGraphics ** | result | ||
| ) |
Definition at line 908 of file metafile.c.
Referenced by GdipGetImageGraphicsContext().
| GpStatus METAFILE_GraphicsClear | ( | GpMetafile * | metafile, |
| ARGB | color | ||
| ) |
Definition at line 949 of file metafile.c.
Referenced by GdipGraphicsClear().
| GpStatus METAFILE_GraphicsDeleted | ( | GpMetafile * | metafile | ) |
Definition at line 1500 of file metafile.c.
Referenced by GdipDeleteGraphics().
| GpStatus METAFILE_MultiplyWorldTransform | ( | GpMetafile * | metafile, |
| GDIPCONST GpMatrix * | matrix, | ||
| MatrixOrder | order | ||
| ) |
Definition at line 1284 of file metafile.c.
Referenced by GdipMultiplyWorldTransform().
|
static |
Definition at line 1656 of file metafile.c.
Referenced by GdipEnumerateMetafileSrcRectDestPoints(), and GdipPlayMetafileRecord().
|
static |
Definition at line 2249 of file metafile.c.
Referenced by GdipPlayMetafileRecord().
|
static |
Definition at line 1673 of file metafile.c.
Referenced by GdipEnumerateMetafileSrcRectDestPoints(), and GdipPlayMetafileRecord().
|
static |
Definition at line 1682 of file metafile.c.
Referenced by GdipEnumerateMetafileSrcRectDestPoints(), and metafile_set_clip_region().
|
static |
Definition at line 1642 of file metafile.c.
Referenced by GdipPlayMetafileRecord(), and METAFILE_PlaybackGetDC().
|
static |
Definition at line 1691 of file metafile.c.
Referenced by GdipEnumerateMetafileSrcRectDestPoints(), and GdipPlayMetafileRecord().
Definition at line 983 of file metafile.c.
Referenced by METAFILE_AddBrushObject(), and METAFILE_AddPenObject().
|
static |
Definition at line 1897 of file metafile.c.
Referenced by metafile_deserialize_region(), and metafile_read_region_node().
| GpStatus METAFILE_ReleaseDC | ( | GpMetafile * | metafile, |
| HDC | hdc | ||
| ) |
Definition at line 1492 of file metafile.c.
Referenced by GdipReleaseDC().
|
static |
| GpStatus METAFILE_ResetWorldTransform | ( | GpMetafile * | metafile | ) |
Definition at line 1354 of file metafile.c.
Referenced by GdipResetWorldTransform().
| GpStatus METAFILE_RestoreGraphics | ( | GpMetafile * | metafile, |
| DWORD | StackIndex | ||
| ) |
Definition at line 1469 of file metafile.c.
Referenced by end_container().
| GpStatus METAFILE_RotateWorldTransform | ( | GpMetafile * | metafile, |
| REAL | angle, | ||
| MatrixOrder | order | ||
| ) |
Definition at line 1307 of file metafile.c.
Referenced by GdipRotateWorldTransform().
| GpStatus METAFILE_SaveGraphics | ( | GpMetafile * | metafile, |
| DWORD | StackIndex | ||
| ) |
Definition at line 1446 of file metafile.c.
Referenced by begin_container().
| GpStatus METAFILE_ScaleWorldTransform | ( | GpMetafile * | metafile, |
| REAL | sx, | ||
| REAL | sy, | ||
| MatrixOrder | order | ||
| ) |
Definition at line 1260 of file metafile.c.
Referenced by GdipScaleWorldTransform().
|
static |
Definition at line 2449 of file metafile.c.
Referenced by GdipPlayMetafileRecord().
|
static |
| GpStatus METAFILE_SetClipRect | ( | GpMetafile * | metafile, |
| REAL | x, | ||
| REAL | y, | ||
| REAL | width, | ||
| REAL | height, | ||
| CombineMode | mode | ||
| ) |
Definition at line 1141 of file metafile.c.
Referenced by GdipSetClipRect().
| GpStatus METAFILE_SetClipRegion | ( | GpMetafile * | metafile, |
| GpRegion * | region, | ||
| CombineMode | mode | ||
| ) |
Definition at line 1189 of file metafile.c.
Referenced by GdipSetClipRegion().
| GpStatus METAFILE_SetPageTransform | ( | GpMetafile * | metafile, |
| GpUnit | unit, | ||
| REAL | scale | ||
| ) |
Definition at line 1214 of file metafile.c.
Referenced by GdipSetPageScale(), and GdipSetPageUnit().
| GpStatus METAFILE_SetWorldTransform | ( | GpMetafile * | metafile, |
| GDIPCONST GpMatrix * | transform | ||
| ) |
Definition at line 1237 of file metafile.c.
Referenced by GdipSetWorldTransform().
| GpStatus METAFILE_TranslateWorldTransform | ( | GpMetafile * | metafile, |
| REAL | dx, | ||
| REAL | dy, | ||
| MatrixOrder | order | ||
| ) |
Definition at line 1330 of file metafile.c.
Referenced by GdipTranslateWorldTransform().
|
static |
Definition at line 714 of file metafile.c.
Referenced by METAFILE_GraphicsDeleted().
|
static |
Definition at line 679 of file metafile.c.
Referenced by GdipRecordMetafile().
|
static |
Definition at line 670 of file metafile.c.
Referenced by METAFILE_AddSimpleProperty(), METAFILE_BeginContainer(), METAFILE_BeginContainerNoParams(), METAFILE_DrawImagePointsRect(), METAFILE_DrawPath(), METAFILE_EndContainer(), METAFILE_FillPath(), METAFILE_FillRectangles(), METAFILE_GetDC(), METAFILE_GraphicsClear(), METAFILE_MultiplyWorldTransform(), METAFILE_ResetWorldTransform(), METAFILE_RestoreGraphics(), METAFILE_RotateWorldTransform(), METAFILE_SaveGraphics(), METAFILE_ScaleWorldTransform(), METAFILE_SetClipRect(), METAFILE_SetClipRegion(), METAFILE_SetPageTransform(), METAFILE_SetWorldTransform(), METAFILE_TranslateWorldTransform(), METAFILE_WriteEndOfFile(), and METAFILE_WriteHeader().
| HRESULT WINAPI WICCreateImagingFactory_Proxy | ( | UINT | SDKVersion, |
| IWICImagingFactory ** | ppIImagingFactory | ||
| ) |
Definition at line 649 of file proxy.c.
Referenced by metafile_deserialize_image().
| WINE_DEFAULT_DEBUG_CHANNEL | ( | gdiplus | ) |