]>
Commit | Line | Data |
---|---|---|
fa5f72b3 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/msw/gdiplus.cpp | |
3 | // Purpose: implements wrappers for GDI+ flat API | |
4 | // Author: Vadim Zeitlin | |
5 | // Created: 2007-03-14 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org> | |
8 | // Licence: wxWindows licence | |
9 | /////////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | // ============================================================================ | |
12 | // declarations | |
13 | // ============================================================================ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | // for compilers that support precompilation, includes "wx.h". | |
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
26 | #if wxUSE_GRAPHICS_CONTEXT | |
27 | ||
28 | #ifndef WX_PRECOMP | |
29 | #include "wx/cpp.h" | |
30 | #include "wx/module.h" | |
31 | #include "wx/string.h" | |
32 | #endif // WX_PRECOMP | |
33 | ||
34 | #include "wx/dynload.h" | |
35 | ||
36 | #include "wx/msw/wrapgdip.h" | |
37 | ||
38 | // ---------------------------------------------------------------------------- | |
39 | // helper macros | |
40 | // ---------------------------------------------------------------------------- | |
41 | ||
42 | // return the name we use for the type of the function with the given name | |
43 | // (without "Gdip" prefix) | |
44 | #define wxGDIPLUS_FUNC_T(name) Gdip##name##_t | |
45 | ||
46 | // to avoid repeating all (several hundreds) of GDI+ functions names several | |
47 | // times in this file, we define a macro which allows us to apply another macro | |
48 | // to all (or almost all, as we sometimes have to handle functions not | |
49 | // returning GpStatus separately) these functions at once | |
50 | ||
51 | // this macro expands into an invocation of the given macro m for all GDI+ | |
52 | // functions returning standard GpStatus | |
53 | // | |
54 | // m is called with the name of the function without "Gdip" prefix as the first | |
55 | // argument, the list of function parameters with their names as the second one | |
56 | // and the list of just the parameter names as the third one | |
57 | #define wxFOR_ALL_GDIPLUS_STATUS_FUNCS(m) \ | |
58 | m(CreatePath, (GpFillMode brushMode, GpPath **path), (brushMode, path)) \ | |
59 | m(CreatePath2, (GDIPCONST GpPointF* a1, GDIPCONST BYTE* a2, INT a3, GpFillMode a4, GpPath **path), (a1, a2, a3, a4, path)) \ | |
60 | m(CreatePath2I, (GDIPCONST GpPoint* a1, GDIPCONST BYTE* a2, INT a3, GpFillMode a4, GpPath **path), (a1, a2, a3, a4, path)) \ | |
61 | m(ClonePath, (GpPath* path, GpPath **clonePath), (path, clonePath)) \ | |
62 | m(DeletePath, (GpPath* path), (path)) \ | |
63 | m(ResetPath, (GpPath* path), (path)) \ | |
64 | m(GetPointCount, (GpPath* path, INT* count), (path, count)) \ | |
65 | m(GetPathTypes, (GpPath* path, BYTE* types, INT count), (path, types, count)) \ | |
66 | m(GetPathPoints, (GpPath* a1, GpPointF* points, INT count), (a1, points, count)) \ | |
67 | m(GetPathPointsI, (GpPath* a1, GpPoint* points, INT count), (a1, points, count)) \ | |
68 | m(GetPathFillMode, (GpPath *path, GpFillMode *fillmode), (path, fillmode)) \ | |
69 | m(SetPathFillMode, (GpPath *path, GpFillMode fillmode), (path, fillmode)) \ | |
70 | m(GetPathData, (GpPath *path, GpPathData* pathData), (path, pathData)) \ | |
71 | m(StartPathFigure, (GpPath *path), (path)) \ | |
72 | m(ClosePathFigure, (GpPath *path), (path)) \ | |
73 | m(ClosePathFigures, (GpPath *path), (path)) \ | |
74 | m(SetPathMarker, (GpPath* path), (path)) \ | |
75 | m(ClearPathMarkers, (GpPath* path), (path)) \ | |
76 | m(ReversePath, (GpPath* path), (path)) \ | |
77 | m(GetPathLastPoint, (GpPath* path, GpPointF* lastPoint), (path, lastPoint)) \ | |
78 | m(AddPathLine, (GpPath *path, REAL x1, REAL y1, REAL x2, REAL y2), (path, x1, y1, x2, y2)) \ | |
79 | m(AddPathLine2, (GpPath *path, GDIPCONST GpPointF *points, INT count), (path, points, count)) \ | |
80 | m(AddPathArc, (GpPath *path, REAL x, REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle), (path, x, y, width, height, startAngle, sweepAngle)) \ | |
81 | m(AddPathBezier, (GpPath *path, REAL x1, REAL y1, REAL x2, REAL y2, REAL x3, REAL y3, REAL x4, REAL y4), (path, x1, y1, x2, y2, x3, y3, x4, y4)) \ | |
82 | m(AddPathBeziers, (GpPath *path, GDIPCONST GpPointF *points, INT count), (path, points, count)) \ | |
83 | m(AddPathCurve, (GpPath *path, GDIPCONST GpPointF *points, INT count), (path, points, count)) \ | |
84 | m(AddPathCurve2, (GpPath *path, GDIPCONST GpPointF *points, INT count, REAL tension), (path, points, count, tension)) \ | |
85 | m(AddPathCurve3, (GpPath *path, GDIPCONST GpPointF *points, INT count, INT offset, INT numberOfSegments, REAL tension), (path, points, count, offset, numberOfSegments, tension)) \ | |
86 | m(AddPathClosedCurve, (GpPath *path, GDIPCONST GpPointF *points, INT count), (path, points, count)) \ | |
87 | m(AddPathClosedCurve2, (GpPath *path, GDIPCONST GpPointF *points, INT count, REAL tension), (path, points, count, tension)) \ | |
88 | m(AddPathRectangle, (GpPath *path, REAL x, REAL y, REAL width, REAL height), (path, x, y, width, height)) \ | |
89 | m(AddPathRectangles, (GpPath *path, GDIPCONST GpRectF *rects, INT count), (path, rects, count)) \ | |
90 | m(AddPathEllipse, (GpPath *path, REAL x, REAL y, REAL width, REAL height), (path, x, y, width, height)) \ | |
91 | m(AddPathPie, (GpPath *path, REAL x, REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle), (path, x, y, width, height, startAngle, sweepAngle)) \ | |
92 | m(AddPathPolygon, (GpPath *path, GDIPCONST GpPointF *points, INT count), (path, points, count)) \ | |
93 | m(AddPathPath, (GpPath *path, GDIPCONST GpPath* addingPath, BOOL connect), (path, addingPath, connect)) \ | |
94 | m(AddPathString, (GpPath *path, GDIPCONST WCHAR *string, INT length, GDIPCONST GpFontFamily *family, INT style, REAL emSize, GDIPCONST RectF *layoutRect, GDIPCONST GpStringFormat *format), (path, string, length, family, style, emSize, layoutRect, format)) \ | |
95 | m(AddPathStringI, (GpPath *path, GDIPCONST WCHAR *string, INT length, GDIPCONST GpFontFamily *family, INT style, REAL emSize, GDIPCONST Rect *layoutRect, GDIPCONST GpStringFormat *format), (path, string, length, family, style, emSize, layoutRect, format)) \ | |
96 | m(AddPathLineI, (GpPath *path, INT x1, INT y1, INT x2, INT y2), (path, x1, y1, x2, y2)) \ | |
97 | m(AddPathLine2I, (GpPath *path, GDIPCONST GpPoint *points, INT count), (path, points, count)) \ | |
98 | m(AddPathArcI, (GpPath *path, INT x, INT y, INT width, INT height, REAL startAngle, REAL sweepAngle), (path, x, y, width, height, startAngle, sweepAngle)) \ | |
99 | m(AddPathBezierI, (GpPath *path, INT x1, INT y1, INT x2, INT y2, INT x3, INT y3, INT x4, INT y4), (path, x1, y1, x2, y2, x3, y3, x4, y4)) \ | |
100 | m(AddPathBeziersI, (GpPath *path, GDIPCONST GpPoint *points, INT count), (path, points, count)) \ | |
101 | m(AddPathCurveI, (GpPath *path, GDIPCONST GpPoint *points, INT count), (path, points, count)) \ | |
102 | m(AddPathCurve2I, (GpPath *path, GDIPCONST GpPoint *points, INT count, REAL tension), (path, points, count, tension)) \ | |
103 | m(AddPathCurve3I, (GpPath *path, GDIPCONST GpPoint *points, INT count, INT offset, INT numberOfSegments, REAL tension), (path, points, count, offset, numberOfSegments, tension)) \ | |
104 | m(AddPathClosedCurveI, (GpPath *path, GDIPCONST GpPoint *points, INT count), (path, points, count)) \ | |
105 | m(AddPathClosedCurve2I, (GpPath *path, GDIPCONST GpPoint *points, INT count, REAL tension), (path, points, count, tension)) \ | |
106 | m(AddPathRectangleI, (GpPath *path, INT x, INT y, INT width, INT height), (path, x, y, width, height)) \ | |
107 | m(AddPathRectanglesI, (GpPath *path, GDIPCONST GpRect *rects, INT count), (path, rects, count)) \ | |
108 | m(AddPathEllipseI, (GpPath *path, INT x, INT y, INT width, INT height), (path, x, y, width, height)) \ | |
109 | m(AddPathPieI, (GpPath *path, INT x, INT y, INT width, INT height, REAL startAngle, REAL sweepAngle), (path, x, y, width, height, startAngle, sweepAngle)) \ | |
110 | m(AddPathPolygonI, (GpPath *path, GDIPCONST GpPoint *points, INT count), (path, points, count)) \ | |
111 | m(FlattenPath, (GpPath *path, GpMatrix* matrix, REAL flatness), (path, matrix, flatness)) \ | |
112 | m(WindingModeOutline, (GpPath *path, GpMatrix *matrix, REAL flatness), (path, matrix, flatness)) \ | |
113 | m(WidenPath, (GpPath *nativePath, GpPen *pen, GpMatrix *matrix, REAL flatness), (nativePath, pen, matrix, flatness)) \ | |
114 | m(WarpPath, (GpPath *path, GpMatrix* matrix, GDIPCONST GpPointF *points, INT count, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight, WarpMode warpMode, REAL flatness), (path, matrix, points, count, srcx, srcy, srcwidth, srcheight, warpMode, flatness)) \ | |
115 | m(TransformPath, (GpPath* path, GpMatrix* matrix), (path, matrix)) \ | |
116 | m(GetPathWorldBounds, (GpPath* path, GpRectF* bounds, GDIPCONST GpMatrix *matrix, GDIPCONST GpPen *pen), (path, bounds, matrix, pen)) \ | |
117 | m(GetPathWorldBoundsI, (GpPath* path, GpRect* bounds, GDIPCONST GpMatrix *matrix, GDIPCONST GpPen *pen), (path, bounds, matrix, pen)) \ | |
118 | m(IsVisiblePathPoint, (GpPath* path, REAL x, REAL y, GpGraphics *graphics, BOOL *result), (path, x, y, graphics, result)) \ | |
119 | m(IsVisiblePathPointI, (GpPath* path, INT x, INT y, GpGraphics *graphics, BOOL *result), (path, x, y, graphics, result)) \ | |
120 | m(IsOutlineVisiblePathPoint, (GpPath* path, REAL x, REAL y, GpPen *pen, GpGraphics *graphics, BOOL *result), (path, x, y, pen, graphics, result)) \ | |
121 | m(IsOutlineVisiblePathPointI, (GpPath* path, INT x, INT y, GpPen *pen, GpGraphics *graphics, BOOL *result), (path, x, y, pen, graphics, result)) \ | |
122 | m(CreatePathIter, (GpPathIterator **iterator, GpPath* path), (iterator, path)) \ | |
123 | m(DeletePathIter, (GpPathIterator *iterator), (iterator)) \ | |
124 | m(PathIterNextSubpath, (GpPathIterator* iterator, INT *resultCount, INT* startIndex, INT* endIndex, BOOL* isClosed), (iterator, resultCount, startIndex, endIndex, isClosed)) \ | |
125 | m(PathIterNextSubpathPath, (GpPathIterator* iterator, INT* resultCount, GpPath* path, BOOL* isClosed), (iterator, resultCount, path, isClosed)) \ | |
126 | m(PathIterNextPathType, (GpPathIterator* iterator, INT* resultCount, BYTE* pathType, INT* startIndex, INT* endIndex), (iterator, resultCount, pathType, startIndex, endIndex)) \ | |
127 | m(PathIterNextMarker, (GpPathIterator* iterator, INT *resultCount, INT* startIndex, INT* endIndex), (iterator, resultCount, startIndex, endIndex)) \ | |
128 | m(PathIterNextMarkerPath, (GpPathIterator* iterator, INT* resultCount, GpPath* path), (iterator, resultCount, path)) \ | |
129 | m(PathIterGetCount, (GpPathIterator* iterator, INT* count), (iterator, count)) \ | |
130 | m(PathIterGetSubpathCount, (GpPathIterator* iterator, INT* count), (iterator, count)) \ | |
131 | m(PathIterIsValid, (GpPathIterator* iterator, BOOL* valid), (iterator, valid)) \ | |
132 | m(PathIterHasCurve, (GpPathIterator* iterator, BOOL* hasCurve), (iterator, hasCurve)) \ | |
133 | m(PathIterRewind, (GpPathIterator* iterator), (iterator)) \ | |
134 | m(PathIterEnumerate, (GpPathIterator* iterator, INT* resultCount, GpPointF *points, BYTE *types, INT count), (iterator, resultCount, points, types, count)) \ | |
135 | m(PathIterCopyData, (GpPathIterator* iterator, INT* resultCount, GpPointF* points, BYTE* types, INT startIndex, INT endIndex), (iterator, resultCount, points, types, startIndex, endIndex)) \ | |
136 | m(CreateMatrix, (GpMatrix **matrix), (matrix)) \ | |
137 | m(CreateMatrix2, (REAL m11, REAL m12, REAL m21, REAL m22, REAL dx, REAL dy, GpMatrix **matrix), (m11, m12, m21, m22, dx, dy, matrix)) \ | |
138 | m(CreateMatrix3, (GDIPCONST GpRectF *rect, GDIPCONST GpPointF *dstplg, GpMatrix **matrix), (rect, dstplg, matrix)) \ | |
139 | m(CreateMatrix3I, (GDIPCONST GpRect *rect, GDIPCONST GpPoint *dstplg, GpMatrix **matrix), (rect, dstplg, matrix)) \ | |
140 | m(CloneMatrix, (GpMatrix *matrix, GpMatrix **cloneMatrix), (matrix, cloneMatrix)) \ | |
141 | m(DeleteMatrix, (GpMatrix *matrix), (matrix)) \ | |
142 | m(SetMatrixElements, (GpMatrix *matrix, REAL m11, REAL m12, REAL m21, REAL m22, REAL dx, REAL dy), (matrix, m11, m12, m21, m22, dx, dy)) \ | |
143 | m(MultiplyMatrix, (GpMatrix *matrix, GpMatrix* matrix2, GpMatrixOrder order), (matrix, matrix2, order)) \ | |
144 | m(TranslateMatrix, (GpMatrix *matrix, REAL offsetX, REAL offsetY, GpMatrixOrder order), (matrix, offsetX, offsetY, order)) \ | |
145 | m(ScaleMatrix, (GpMatrix *matrix, REAL scaleX, REAL scaleY, GpMatrixOrder order), (matrix, scaleX, scaleY, order)) \ | |
146 | m(RotateMatrix, (GpMatrix *matrix, REAL angle, GpMatrixOrder order), (matrix, angle, order)) \ | |
147 | m(ShearMatrix, (GpMatrix *matrix, REAL shearX, REAL shearY, GpMatrixOrder order), (matrix, shearX, shearY, order)) \ | |
148 | m(InvertMatrix, (GpMatrix *matrix), (matrix)) \ | |
149 | m(TransformMatrixPoints, (GpMatrix *matrix, GpPointF *pts, INT count), (matrix, pts, count)) \ | |
150 | m(TransformMatrixPointsI, (GpMatrix *matrix, GpPoint *pts, INT count), (matrix, pts, count)) \ | |
151 | m(VectorTransformMatrixPoints, (GpMatrix *matrix, GpPointF *pts, INT count), (matrix, pts, count)) \ | |
152 | m(VectorTransformMatrixPointsI, (GpMatrix *matrix, GpPoint *pts, INT count), (matrix, pts, count)) \ | |
153 | m(GetMatrixElements, (GDIPCONST GpMatrix *matrix, REAL *matrixOut), (matrix, matrixOut)) \ | |
154 | m(IsMatrixInvertible, (GDIPCONST GpMatrix *matrix, BOOL *result), (matrix, result)) \ | |
155 | m(IsMatrixIdentity, (GDIPCONST GpMatrix *matrix, BOOL *result), (matrix, result)) \ | |
156 | m(IsMatrixEqual, (GDIPCONST GpMatrix *matrix, GDIPCONST GpMatrix *matrix2, BOOL *result), (matrix, matrix2, result)) \ | |
157 | m(CreateRegion, (GpRegion **region), (region)) \ | |
158 | m(CreateRegionRect, (GDIPCONST GpRectF *rect, GpRegion **region), (rect, region)) \ | |
159 | m(CreateRegionRectI, (GDIPCONST GpRect *rect, GpRegion **region), (rect, region)) \ | |
160 | m(CreateRegionPath, (GpPath *path, GpRegion **region), (path, region)) \ | |
161 | m(CreateRegionRgnData, (GDIPCONST BYTE *regionData, INT size, GpRegion **region), (regionData, size, region)) \ | |
162 | m(CreateRegionHrgn, (HRGN hRgn, GpRegion **region), (hRgn, region)) \ | |
163 | m(CloneRegion, (GpRegion *region, GpRegion **cloneRegion), (region, cloneRegion)) \ | |
164 | m(DeleteRegion, (GpRegion *region), (region)) \ | |
165 | m(SetInfinite, (GpRegion *region), (region)) \ | |
166 | m(SetEmpty, (GpRegion *region), (region)) \ | |
167 | m(CombineRegionRect, (GpRegion *region, GDIPCONST GpRectF *rect, CombineMode combineMode), (region, rect, combineMode)) \ | |
168 | m(CombineRegionRectI, (GpRegion *region, GDIPCONST GpRect *rect, CombineMode combineMode), (region, rect, combineMode)) \ | |
169 | m(CombineRegionPath, (GpRegion *region, GpPath *path, CombineMode combineMode), (region, path, combineMode)) \ | |
170 | m(CombineRegionRegion, (GpRegion *region, GpRegion *region2, CombineMode combineMode), (region, region2, combineMode)) \ | |
171 | m(TranslateRegion, (GpRegion *region, REAL dx, REAL dy), (region, dx, dy)) \ | |
172 | m(TranslateRegionI, (GpRegion *region, INT dx, INT dy), (region, dx, dy)) \ | |
173 | m(TransformRegion, (GpRegion *region, GpMatrix *matrix), (region, matrix)) \ | |
174 | m(GetRegionBounds, (GpRegion *region, GpGraphics *graphics, GpRectF *rect), (region, graphics, rect)) \ | |
175 | m(GetRegionBoundsI, (GpRegion *region, GpGraphics *graphics, GpRect *rect), (region, graphics, rect)) \ | |
176 | m(GetRegionHRgn, (GpRegion *region, GpGraphics *graphics, HRGN *hRgn), (region, graphics, hRgn)) \ | |
177 | m(IsEmptyRegion, (GpRegion *region, GpGraphics *graphics, BOOL *result), (region, graphics, result)) \ | |
178 | m(IsInfiniteRegion, (GpRegion *region, GpGraphics *graphics, BOOL *result), (region, graphics, result)) \ | |
179 | m(IsEqualRegion, (GpRegion *region, GpRegion *region2, GpGraphics *graphics, BOOL *result), (region, region2, graphics, result)) \ | |
180 | m(GetRegionDataSize, (GpRegion *region, UINT *bufferSize), (region, bufferSize)) \ | |
181 | m(GetRegionData, (GpRegion *region, BYTE *buffer, UINT bufferSize, UINT *sizeFilled), (region, buffer, bufferSize, sizeFilled)) \ | |
182 | m(IsVisibleRegionPoint, (GpRegion *region, REAL x, REAL y, GpGraphics *graphics, BOOL *result), (region, x, y, graphics, result)) \ | |
183 | m(IsVisibleRegionPointI, (GpRegion *region, INT x, INT y, GpGraphics *graphics, BOOL *result), (region, x, y, graphics, result)) \ | |
184 | m(IsVisibleRegionRect, (GpRegion *region, REAL x, REAL y, REAL width, REAL height, GpGraphics *graphics, BOOL *result), (region, x, y, width, height, graphics, result)) \ | |
185 | m(IsVisibleRegionRectI, (GpRegion *region, INT x, INT y, INT width, INT height, GpGraphics *graphics, BOOL *result), (region, x, y, width, height, graphics, result)) \ | |
186 | m(GetRegionScansCount, (GpRegion *region, UINT* count, GpMatrix* matrix), (region, count, matrix)) \ | |
187 | m(GetRegionScans, (GpRegion *region, GpRectF* rects, INT* count, GpMatrix* matrix), (region, rects, count, matrix)) \ | |
188 | m(GetRegionScansI, (GpRegion *region, GpRect* rects, INT* count, GpMatrix* matrix), (region, rects, count, matrix)) \ | |
189 | m(CloneBrush, (GpBrush *brush, GpBrush **cloneBrush), (brush, cloneBrush)) \ | |
190 | m(DeleteBrush, (GpBrush *brush), (brush)) \ | |
191 | m(GetBrushType, (GpBrush *brush, GpBrushType *type), (brush, type)) \ | |
192 | m(CreateHatchBrush, (GpHatchStyle hatchstyle, ARGB forecol, ARGB backcol, GpHatch **brush), (hatchstyle, forecol, backcol, brush)) \ | |
193 | m(GetHatchStyle, (GpHatch *brush, GpHatchStyle *hatchstyle), (brush, hatchstyle)) \ | |
194 | m(GetHatchForegroundColor, (GpHatch *brush, ARGB* forecol), (brush, forecol)) \ | |
195 | m(GetHatchBackgroundColor, (GpHatch *brush, ARGB* backcol), (brush, backcol)) \ | |
196 | m(CreateTexture, (GpImage *image, GpWrapMode wrapmode, GpTexture **texture), (image, wrapmode, texture)) \ | |
197 | m(CreateTexture2, (GpImage *image, GpWrapMode wrapmode, REAL x, REAL y, REAL width, REAL height, GpTexture **texture), (image, wrapmode, x, y, width, height, texture)) \ | |
198 | m(CreateTextureIA, (GpImage *image, GDIPCONST GpImageAttributes *imageAttributes, REAL x, REAL y, REAL width, REAL height, GpTexture **texture), (image, imageAttributes, x, y, width, height, texture)) \ | |
199 | m(CreateTexture2I, (GpImage *image, GpWrapMode wrapmode, INT x, INT y, INT width, INT height, GpTexture **texture), (image, wrapmode, x, y, width, height, texture)) \ | |
200 | m(CreateTextureIAI, (GpImage *image, GDIPCONST GpImageAttributes *imageAttributes, INT x, INT y, INT width, INT height, GpTexture **texture), (image, imageAttributes, x, y, width, height, texture)) \ | |
201 | m(GetTextureTransform, (GpTexture *brush, GpMatrix *matrix), (brush, matrix)) \ | |
202 | m(SetTextureTransform, (GpTexture *brush, GDIPCONST GpMatrix *matrix), (brush, matrix)) \ | |
203 | m(ResetTextureTransform, (GpTexture* brush), (brush)) \ | |
204 | m(MultiplyTextureTransform, (GpTexture* brush, GDIPCONST GpMatrix *matrix, GpMatrixOrder order), (brush, matrix, order)) \ | |
205 | m(TranslateTextureTransform, (GpTexture* brush, REAL dx, REAL dy, GpMatrixOrder order), (brush, dx, dy, order)) \ | |
206 | m(ScaleTextureTransform, (GpTexture* brush, REAL sx, REAL sy, GpMatrixOrder order), (brush, sx, sy, order)) \ | |
207 | m(RotateTextureTransform, (GpTexture* brush, REAL angle, GpMatrixOrder order), (brush, angle, order)) \ | |
208 | m(SetTextureWrapMode, (GpTexture *brush, GpWrapMode wrapmode), (brush, wrapmode)) \ | |
209 | m(GetTextureWrapMode, (GpTexture *brush, GpWrapMode *wrapmode), (brush, wrapmode)) \ | |
210 | m(GetTextureImage, (GpTexture *brush, GpImage **image), (brush, image)) \ | |
211 | m(CreateSolidFill, (ARGB color, GpSolidFill **brush), (color, brush)) \ | |
212 | m(SetSolidFillColor, (GpSolidFill *brush, ARGB color), (brush, color)) \ | |
213 | m(GetSolidFillColor, (GpSolidFill *brush, ARGB *color), (brush, color)) \ | |
214 | m(CreateLineBrush, (GDIPCONST GpPointF* point1, GDIPCONST GpPointF* point2, ARGB color1, ARGB color2, GpWrapMode wrapMode, GpLineGradient **lineGradient), (point1, point2, color1, color2, wrapMode, lineGradient)) \ | |
215 | m(CreateLineBrushI, (GDIPCONST GpPoint* point1, GDIPCONST GpPoint* point2, ARGB color1, ARGB color2, GpWrapMode wrapMode, GpLineGradient **lineGradient), (point1, point2, color1, color2, wrapMode, lineGradient)) \ | |
216 | m(CreateLineBrushFromRect, (GDIPCONST GpRectF* rect, ARGB color1, ARGB color2, LinearGradientMode mode, GpWrapMode wrapMode, GpLineGradient **lineGradient), (rect, color1, color2, mode, wrapMode, lineGradient)) \ | |
217 | m(CreateLineBrushFromRectI, (GDIPCONST GpRect* rect, ARGB color1, ARGB color2, LinearGradientMode mode, GpWrapMode wrapMode, GpLineGradient **lineGradient), (rect, color1, color2, mode, wrapMode, lineGradient)) \ | |
218 | m(CreateLineBrushFromRectWithAngle, (GDIPCONST GpRectF* rect, ARGB color1, ARGB color2, REAL angle, BOOL isAngleScalable, GpWrapMode wrapMode, GpLineGradient **lineGradient), (rect, color1, color2, angle, isAngleScalable, wrapMode, lineGradient)) \ | |
219 | m(CreateLineBrushFromRectWithAngleI, (GDIPCONST GpRect* rect, ARGB color1, ARGB color2, REAL angle, BOOL isAngleScalable, GpWrapMode wrapMode, GpLineGradient **lineGradient), (rect, color1, color2, angle, isAngleScalable, wrapMode, lineGradient)) \ | |
220 | m(SetLineColors, (GpLineGradient *brush, ARGB color1, ARGB color2), (brush, color1, color2)) \ | |
221 | m(GetLineColors, (GpLineGradient *brush, ARGB* colors), (brush, colors)) \ | |
222 | m(GetLineRect, (GpLineGradient *brush, GpRectF *rect), (brush, rect)) \ | |
223 | m(GetLineRectI, (GpLineGradient *brush, GpRect *rect), (brush, rect)) \ | |
224 | m(SetLineGammaCorrection, (GpLineGradient *brush, BOOL useGammaCorrection), (brush, useGammaCorrection)) \ | |
225 | m(GetLineGammaCorrection, (GpLineGradient *brush, BOOL *useGammaCorrection), (brush, useGammaCorrection)) \ | |
226 | m(GetLineBlendCount, (GpLineGradient *brush, INT *count), (brush, count)) \ | |
227 | m(GetLineBlend, (GpLineGradient *brush, REAL *blend, REAL* positions, INT count), (brush, blend, positions, count)) \ | |
228 | m(SetLineBlend, (GpLineGradient *brush, GDIPCONST REAL *blend, GDIPCONST REAL* positions, INT count), (brush, blend, positions, count)) \ | |
229 | m(GetLinePresetBlendCount, (GpLineGradient *brush, INT *count), (brush, count)) \ | |
230 | m(GetLinePresetBlend, (GpLineGradient *brush, ARGB *blend, REAL* positions, INT count), (brush, blend, positions, count)) \ | |
231 | m(SetLinePresetBlend, (GpLineGradient *brush, GDIPCONST ARGB *blend, GDIPCONST REAL* positions, INT count), (brush, blend, positions, count)) \ | |
232 | m(SetLineSigmaBlend, (GpLineGradient *brush, REAL focus, REAL scale), (brush, focus, scale)) \ | |
233 | m(SetLineLinearBlend, (GpLineGradient *brush, REAL focus, REAL scale), (brush, focus, scale)) \ | |
234 | m(SetLineWrapMode, (GpLineGradient *brush, GpWrapMode wrapmode), (brush, wrapmode)) \ | |
235 | m(GetLineWrapMode, (GpLineGradient *brush, GpWrapMode *wrapmode), (brush, wrapmode)) \ | |
236 | m(GetLineTransform, (GpLineGradient *brush, GpMatrix *matrix), (brush, matrix)) \ | |
237 | m(SetLineTransform, (GpLineGradient *brush, GDIPCONST GpMatrix *matrix), (brush, matrix)) \ | |
238 | m(ResetLineTransform, (GpLineGradient* brush), (brush)) \ | |
239 | m(MultiplyLineTransform, (GpLineGradient* brush, GDIPCONST GpMatrix *matrix, GpMatrixOrder order), (brush, matrix, order)) \ | |
240 | m(TranslateLineTransform, (GpLineGradient* brush, REAL dx, REAL dy, GpMatrixOrder order), (brush, dx, dy, order)) \ | |
241 | m(ScaleLineTransform, (GpLineGradient* brush, REAL sx, REAL sy, GpMatrixOrder order), (brush, sx, sy, order)) \ | |
242 | m(RotateLineTransform, (GpLineGradient* brush, REAL angle, GpMatrixOrder order), (brush, angle, order)) \ | |
243 | m(CreatePathGradient, (GDIPCONST GpPointF* points, INT count, GpWrapMode wrapMode, GpPathGradient **polyGradient), (points, count, wrapMode, polyGradient)) \ | |
244 | m(CreatePathGradientI, (GDIPCONST GpPoint* points, INT count, GpWrapMode wrapMode, GpPathGradient **polyGradient), (points, count, wrapMode, polyGradient)) \ | |
245 | m(CreatePathGradientFromPath, (GDIPCONST GpPath* path, GpPathGradient **polyGradient), (path, polyGradient)) \ | |
246 | m(GetPathGradientCenterColor, (GpPathGradient *brush, ARGB* colors), (brush, colors)) \ | |
247 | m(SetPathGradientCenterColor, (GpPathGradient *brush, ARGB colors), (brush, colors)) \ | |
248 | m(GetPathGradientSurroundColorsWithCount, (GpPathGradient *brush, ARGB* color, INT* count), (brush, color, count)) \ | |
249 | m(SetPathGradientSurroundColorsWithCount, (GpPathGradient *brush, GDIPCONST ARGB* color, INT* count), (brush, color, count)) \ | |
250 | m(GetPathGradientPath, (GpPathGradient *brush, GpPath *path), (brush, path)) \ | |
251 | m(SetPathGradientPath, (GpPathGradient *brush, GDIPCONST GpPath *path), (brush, path)) \ | |
252 | m(GetPathGradientCenterPoint, (GpPathGradient *brush, GpPointF* points), (brush, points)) \ | |
253 | m(GetPathGradientCenterPointI, (GpPathGradient *brush, GpPoint* points), (brush, points)) \ | |
254 | m(SetPathGradientCenterPoint, (GpPathGradient *brush, GDIPCONST GpPointF* points), (brush, points)) \ | |
255 | m(SetPathGradientCenterPointI, (GpPathGradient *brush, GDIPCONST GpPoint* points), (brush, points)) \ | |
256 | m(GetPathGradientRect, (GpPathGradient *brush, GpRectF *rect), (brush, rect)) \ | |
257 | m(GetPathGradientRectI, (GpPathGradient *brush, GpRect *rect), (brush, rect)) \ | |
258 | m(GetPathGradientPointCount, (GpPathGradient *brush, INT* count), (brush, count)) \ | |
259 | m(GetPathGradientSurroundColorCount, (GpPathGradient *brush, INT* count), (brush, count)) \ | |
260 | m(SetPathGradientGammaCorrection, (GpPathGradient *brush, BOOL useGammaCorrection), (brush, useGammaCorrection)) \ | |
261 | m(GetPathGradientGammaCorrection, (GpPathGradient *brush, BOOL *useGammaCorrection), (brush, useGammaCorrection)) \ | |
262 | m(GetPathGradientBlendCount, (GpPathGradient *brush, INT *count), (brush, count)) \ | |
263 | m(GetPathGradientBlend, (GpPathGradient *brush, REAL *blend, REAL *positions, INT count), (brush, blend, positions, count)) \ | |
264 | m(SetPathGradientBlend, (GpPathGradient *brush, GDIPCONST REAL *blend, GDIPCONST REAL *positions, INT count), (brush, blend, positions, count)) \ | |
265 | m(GetPathGradientPresetBlendCount, (GpPathGradient *brush, INT *count), (brush, count)) \ | |
266 | m(GetPathGradientPresetBlend, (GpPathGradient *brush, ARGB *blend, REAL* positions, INT count), (brush, blend, positions, count)) \ | |
267 | m(SetPathGradientPresetBlend, (GpPathGradient *brush, GDIPCONST ARGB *blend, GDIPCONST REAL* positions, INT count), (brush, blend, positions, count)) \ | |
268 | m(SetPathGradientSigmaBlend, (GpPathGradient *brush, REAL focus, REAL scale), (brush, focus, scale)) \ | |
269 | m(SetPathGradientLinearBlend, (GpPathGradient *brush, REAL focus, REAL scale), (brush, focus, scale)) \ | |
270 | m(GetPathGradientWrapMode, (GpPathGradient *brush, GpWrapMode *wrapmode), (brush, wrapmode)) \ | |
271 | m(SetPathGradientWrapMode, (GpPathGradient *brush, GpWrapMode wrapmode), (brush, wrapmode)) \ | |
272 | m(GetPathGradientTransform, (GpPathGradient *brush, GpMatrix *matrix), (brush, matrix)) \ | |
273 | m(SetPathGradientTransform, (GpPathGradient *brush, GpMatrix *matrix), (brush, matrix)) \ | |
274 | m(ResetPathGradientTransform, (GpPathGradient* brush), (brush)) \ | |
275 | m(MultiplyPathGradientTransform, (GpPathGradient* brush, GDIPCONST GpMatrix *matrix, GpMatrixOrder order), (brush, matrix, order)) \ | |
276 | m(TranslatePathGradientTransform, (GpPathGradient* brush, REAL dx, REAL dy, GpMatrixOrder order), (brush, dx, dy, order)) \ | |
277 | m(ScalePathGradientTransform, (GpPathGradient* brush, REAL sx, REAL sy, GpMatrixOrder order), (brush, sx, sy, order)) \ | |
278 | m(RotatePathGradientTransform, (GpPathGradient* brush, REAL angle, GpMatrixOrder order), (brush, angle, order)) \ | |
279 | m(GetPathGradientFocusScales, (GpPathGradient *brush, REAL* xScale, REAL* yScale), (brush, xScale, yScale)) \ | |
280 | m(SetPathGradientFocusScales, (GpPathGradient *brush, REAL xScale, REAL yScale), (brush, xScale, yScale)) \ | |
281 | m(CreatePen1, (ARGB color, REAL width, GpUnit unit, GpPen **pen), (color, width, unit, pen)) \ | |
282 | m(CreatePen2, (GpBrush *brush, REAL width, GpUnit unit, GpPen **pen), (brush, width, unit, pen)) \ | |
283 | m(ClonePen, (GpPen *pen, GpPen **clonepen), (pen, clonepen)) \ | |
284 | m(DeletePen, (GpPen *pen), (pen)) \ | |
285 | m(SetPenWidth, (GpPen *pen, REAL width), (pen, width)) \ | |
286 | m(GetPenWidth, (GpPen *pen, REAL *width), (pen, width)) \ | |
287 | m(SetPenUnit, (GpPen *pen, GpUnit unit), (pen, unit)) \ | |
288 | m(GetPenUnit, (GpPen *pen, GpUnit *unit), (pen, unit)) \ | |
289 | m(SetPenLineCap197819, (GpPen *pen, GpLineCap startCap, GpLineCap endCap, GpDashCap dashCap), (pen, startCap, endCap, dashCap)) \ | |
290 | m(SetPenStartCap, (GpPen *pen, GpLineCap startCap), (pen, startCap)) \ | |
291 | m(SetPenEndCap, (GpPen *pen, GpLineCap endCap), (pen, endCap)) \ | |
292 | m(SetPenDashCap197819, (GpPen *pen, GpDashCap dashCap), (pen, dashCap)) \ | |
293 | m(GetPenStartCap, (GpPen *pen, GpLineCap *startCap), (pen, startCap)) \ | |
294 | m(GetPenEndCap, (GpPen *pen, GpLineCap *endCap), (pen, endCap)) \ | |
295 | m(GetPenDashCap197819, (GpPen *pen, GpDashCap *dashCap), (pen, dashCap)) \ | |
296 | m(SetPenLineJoin, (GpPen *pen, GpLineJoin lineJoin), (pen, lineJoin)) \ | |
297 | m(GetPenLineJoin, (GpPen *pen, GpLineJoin *lineJoin), (pen, lineJoin)) \ | |
298 | m(SetPenCustomStartCap, (GpPen *pen, GpCustomLineCap* customCap), (pen, customCap)) \ | |
299 | m(GetPenCustomStartCap, (GpPen *pen, GpCustomLineCap** customCap), (pen, customCap)) \ | |
300 | m(SetPenCustomEndCap, (GpPen *pen, GpCustomLineCap* customCap), (pen, customCap)) \ | |
301 | m(GetPenCustomEndCap, (GpPen *pen, GpCustomLineCap** customCap), (pen, customCap)) \ | |
302 | m(SetPenMiterLimit, (GpPen *pen, REAL miterLimit), (pen, miterLimit)) \ | |
303 | m(GetPenMiterLimit, (GpPen *pen, REAL *miterLimit), (pen, miterLimit)) \ | |
304 | m(SetPenMode, (GpPen *pen, GpPenAlignment penMode), (pen, penMode)) \ | |
305 | m(GetPenMode, (GpPen *pen, GpPenAlignment *penMode), (pen, penMode)) \ | |
306 | m(SetPenTransform, (GpPen *pen, GpMatrix *matrix), (pen, matrix)) \ | |
307 | m(GetPenTransform, (GpPen *pen, GpMatrix *matrix), (pen, matrix)) \ | |
308 | m(ResetPenTransform, (GpPen *pen), (pen)) \ | |
309 | m(MultiplyPenTransform, (GpPen *pen, GDIPCONST GpMatrix *matrix, GpMatrixOrder order), (pen, matrix, order)) \ | |
310 | m(TranslatePenTransform, (GpPen *pen, REAL dx, REAL dy, GpMatrixOrder order), (pen, dx, dy, order)) \ | |
311 | m(ScalePenTransform, (GpPen *pen, REAL sx, REAL sy, GpMatrixOrder order), (pen, sx, sy, order)) \ | |
312 | m(RotatePenTransform, (GpPen *pen, REAL angle, GpMatrixOrder order), (pen, angle, order)) \ | |
313 | m(SetPenColor, (GpPen *pen, ARGB argb), (pen, argb)) \ | |
314 | m(GetPenColor, (GpPen *pen, ARGB *argb), (pen, argb)) \ | |
315 | m(SetPenBrushFill, (GpPen *pen, GpBrush *brush), (pen, brush)) \ | |
316 | m(GetPenBrushFill, (GpPen *pen, GpBrush **brush), (pen, brush)) \ | |
317 | m(GetPenFillType, (GpPen *pen, GpPenType* type), (pen, type)) \ | |
318 | m(GetPenDashStyle, (GpPen *pen, GpDashStyle *dashstyle), (pen, dashstyle)) \ | |
319 | m(SetPenDashStyle, (GpPen *pen, GpDashStyle dashstyle), (pen, dashstyle)) \ | |
320 | m(GetPenDashOffset, (GpPen *pen, REAL *offset), (pen, offset)) \ | |
321 | m(SetPenDashOffset, (GpPen *pen, REAL offset), (pen, offset)) \ | |
322 | m(GetPenDashCount, (GpPen *pen, INT *count), (pen, count)) \ | |
323 | m(SetPenDashArray, (GpPen *pen, GDIPCONST REAL *dash, INT count), (pen, dash, count)) \ | |
324 | m(GetPenDashArray, (GpPen *pen, REAL *dash, INT count), (pen, dash, count)) \ | |
325 | m(GetPenCompoundCount, (GpPen *pen, INT *count), (pen, count)) \ | |
326 | m(SetPenCompoundArray, (GpPen *pen, GDIPCONST REAL *dash, INT count), (pen, dash, count)) \ | |
327 | m(GetPenCompoundArray, (GpPen *pen, REAL *dash, INT count), (pen, dash, count)) \ | |
328 | m(CreateCustomLineCap, (GpPath* fillPath, GpPath* strokePath, GpLineCap baseCap, REAL baseInset, GpCustomLineCap **customCap), (fillPath, strokePath, baseCap, baseInset, customCap)) \ | |
329 | m(DeleteCustomLineCap, (GpCustomLineCap* customCap), (customCap)) \ | |
330 | m(CloneCustomLineCap, (GpCustomLineCap* customCap, GpCustomLineCap** clonedCap), (customCap, clonedCap)) \ | |
331 | m(GetCustomLineCapType, (GpCustomLineCap* customCap, CustomLineCapType* capType), (customCap, capType)) \ | |
332 | m(SetCustomLineCapStrokeCaps, (GpCustomLineCap* customCap, GpLineCap startCap, GpLineCap endCap), (customCap, startCap, endCap)) \ | |
333 | m(GetCustomLineCapStrokeCaps, (GpCustomLineCap* customCap, GpLineCap* startCap, GpLineCap* endCap), (customCap, startCap, endCap)) \ | |
334 | m(SetCustomLineCapStrokeJoin, (GpCustomLineCap* customCap, GpLineJoin lineJoin), (customCap, lineJoin)) \ | |
335 | m(GetCustomLineCapStrokeJoin, (GpCustomLineCap* customCap, GpLineJoin* lineJoin), (customCap, lineJoin)) \ | |
336 | m(SetCustomLineCapBaseCap, (GpCustomLineCap* customCap, GpLineCap baseCap), (customCap, baseCap)) \ | |
337 | m(GetCustomLineCapBaseCap, (GpCustomLineCap* customCap, GpLineCap* baseCap), (customCap, baseCap)) \ | |
338 | m(SetCustomLineCapBaseInset, (GpCustomLineCap* customCap, REAL inset), (customCap, inset)) \ | |
339 | m(GetCustomLineCapBaseInset, (GpCustomLineCap* customCap, REAL* inset), (customCap, inset)) \ | |
340 | m(SetCustomLineCapWidthScale, (GpCustomLineCap* customCap, REAL widthScale), (customCap, widthScale)) \ | |
341 | m(GetCustomLineCapWidthScale, (GpCustomLineCap* customCap, REAL* widthScale), (customCap, widthScale)) \ | |
342 | m(CreateAdjustableArrowCap, (REAL height, REAL width, BOOL isFilled, GpAdjustableArrowCap **cap), (height, width, isFilled, cap)) \ | |
343 | m(SetAdjustableArrowCapHeight, (GpAdjustableArrowCap* cap, REAL height), (cap, height)) \ | |
344 | m(GetAdjustableArrowCapHeight, (GpAdjustableArrowCap* cap, REAL* height), (cap, height)) \ | |
345 | m(SetAdjustableArrowCapWidth, (GpAdjustableArrowCap* cap, REAL width), (cap, width)) \ | |
346 | m(GetAdjustableArrowCapWidth, (GpAdjustableArrowCap* cap, REAL* width), (cap, width)) \ | |
347 | m(SetAdjustableArrowCapMiddleInset, (GpAdjustableArrowCap* cap, REAL middleInset), (cap, middleInset)) \ | |
348 | m(GetAdjustableArrowCapMiddleInset, (GpAdjustableArrowCap* cap, REAL* middleInset), (cap, middleInset)) \ | |
349 | m(SetAdjustableArrowCapFillState, (GpAdjustableArrowCap* cap, BOOL fillState), (cap, fillState)) \ | |
350 | m(GetAdjustableArrowCapFillState, (GpAdjustableArrowCap* cap, BOOL* fillState), (cap, fillState)) \ | |
351 | m(LoadImageFromStream, (IStream* stream, GpImage **image), (stream, image)) \ | |
352 | m(LoadImageFromFile, (GDIPCONST WCHAR* filename, GpImage **image), (filename, image)) \ | |
353 | m(LoadImageFromStreamICM, (IStream* stream, GpImage **image), (stream, image)) \ | |
354 | m(LoadImageFromFileICM, (GDIPCONST WCHAR* filename, GpImage **image), (filename, image)) \ | |
355 | m(CloneImage, (GpImage *image, GpImage **cloneImage), (image, cloneImage)) \ | |
356 | m(DisposeImage, (GpImage *image), (image)) \ | |
357 | m(SaveImageToFile, (GpImage *image, GDIPCONST WCHAR* filename, GDIPCONST CLSID* clsidEncoder, GDIPCONST EncoderParameters* encoderParams), (image, filename, clsidEncoder, encoderParams)) \ | |
358 | m(SaveImageToStream, (GpImage *image, IStream* stream, GDIPCONST CLSID* clsidEncoder, GDIPCONST EncoderParameters* encoderParams), (image, stream, clsidEncoder, encoderParams)) \ | |
359 | m(SaveAdd, (GpImage *image, GDIPCONST EncoderParameters* encoderParams), (image, encoderParams)) \ | |
360 | m(SaveAddImage, (GpImage *image, GpImage* newImage, GDIPCONST EncoderParameters* encoderParams), (image, newImage, encoderParams)) \ | |
361 | m(GetImageGraphicsContext, (GpImage *image, GpGraphics **graphics), (image, graphics)) \ | |
362 | m(GetImageBounds, (GpImage *image, GpRectF *srcRect, GpUnit *srcUnit), (image, srcRect, srcUnit)) \ | |
363 | m(GetImageDimension, (GpImage *image, REAL *width, REAL *height), (image, width, height)) \ | |
364 | m(GetImageType, (GpImage *image, ImageType *type), (image, type)) \ | |
365 | m(GetImageWidth, (GpImage *image, UINT *width), (image, width)) \ | |
366 | m(GetImageHeight, (GpImage *image, UINT *height), (image, height)) \ | |
367 | m(GetImageHorizontalResolution, (GpImage *image, REAL *resolution), (image, resolution)) \ | |
368 | m(GetImageVerticalResolution, (GpImage *image, REAL *resolution), (image, resolution)) \ | |
369 | m(GetImageFlags, (GpImage *image, UINT *flags), (image, flags)) \ | |
370 | m(GetImageRawFormat, (GpImage *image, GUID *format), (image, format)) \ | |
371 | m(GetImagePixelFormat, (GpImage *image, PixelFormat *format), (image, format)) \ | |
372 | m(GetImageThumbnail, (GpImage *image, UINT thumbWidth, UINT thumbHeight, GpImage **thumbImage, GetThumbnailImageAbort callback, VOID *callbackData), (image, thumbWidth, thumbHeight, thumbImage, callback, callbackData)) \ | |
373 | m(GetEncoderParameterListSize, (GpImage *image, GDIPCONST CLSID* clsidEncoder, UINT* size), (image, clsidEncoder, size)) \ | |
374 | m(GetEncoderParameterList, (GpImage *image, GDIPCONST CLSID* clsidEncoder, UINT size, EncoderParameters* buffer), (image, clsidEncoder, size, buffer)) \ | |
375 | m(ImageGetFrameDimensionsCount, (GpImage* image, UINT* count), (image, count)) \ | |
376 | m(ImageGetFrameDimensionsList, (GpImage* image, GUID* dimensionIDs, UINT count), (image, dimensionIDs, count)) \ | |
377 | m(ImageGetFrameCount, (GpImage *image, GDIPCONST GUID* dimensionID, UINT* count), (image, dimensionID, count)) \ | |
378 | m(ImageSelectActiveFrame, (GpImage *image, GDIPCONST GUID* dimensionID, UINT frameIndex), (image, dimensionID, frameIndex)) \ | |
379 | m(ImageRotateFlip, (GpImage *image, RotateFlipType rfType), (image, rfType)) \ | |
380 | m(GetImagePalette, (GpImage *image, ColorPalette *palette, INT size), (image, palette, size)) \ | |
381 | m(SetImagePalette, (GpImage *image, GDIPCONST ColorPalette *palette), (image, palette)) \ | |
382 | m(GetImagePaletteSize, (GpImage *image, INT *size), (image, size)) \ | |
383 | m(GetPropertyCount, (GpImage *image, UINT* numOfProperty), (image, numOfProperty)) \ | |
384 | m(GetPropertyIdList, (GpImage *image, UINT numOfProperty, PROPID* list), (image, numOfProperty, list)) \ | |
385 | m(GetPropertyItemSize, (GpImage *image, PROPID propId, UINT* size), (image, propId, size)) \ | |
386 | m(GetPropertyItem, (GpImage *image, PROPID propId,UINT propSize, PropertyItem* buffer), (image, propId, propSize, buffer)) \ | |
387 | m(GetPropertySize, (GpImage *image, UINT* totalBufferSize, UINT* numProperties), (image, totalBufferSize, numProperties)) \ | |
388 | m(GetAllPropertyItems, (GpImage *image, UINT totalBufferSize, UINT numProperties, PropertyItem* allItems), (image, totalBufferSize, numProperties, allItems)) \ | |
389 | m(RemovePropertyItem, (GpImage *image, PROPID propId), (image, propId)) \ | |
390 | m(SetPropertyItem, (GpImage *image, GDIPCONST PropertyItem* item), (image, item)) \ | |
391 | m(ImageForceValidation, (GpImage *image), (image)) \ | |
392 | m(CreateBitmapFromStream, (IStream* stream, GpBitmap **bitmap), (stream, bitmap)) \ | |
393 | m(CreateBitmapFromFile, (GDIPCONST WCHAR* filename, GpBitmap **bitmap), (filename, bitmap)) \ | |
394 | m(CreateBitmapFromStreamICM, (IStream* stream, GpBitmap **bitmap), (stream, bitmap)) \ | |
395 | m(CreateBitmapFromFileICM, (GDIPCONST WCHAR* filename, GpBitmap **bitmap), (filename, bitmap)) \ | |
396 | m(CreateBitmapFromScan0, (INT width, INT height, INT stride, PixelFormat format, BYTE* scan0, GpBitmap** bitmap), (width, height, stride, format, scan0, bitmap)) \ | |
397 | m(CreateBitmapFromGraphics, (INT width, INT height, GpGraphics* target, GpBitmap** bitmap), (width, height, target, bitmap)) \ | |
398 | m(CreateBitmapFromDirectDrawSurface, (IDirectDrawSurface7* surface, GpBitmap** bitmap), (surface, bitmap)) \ | |
399 | m(CreateBitmapFromGdiDib, (GDIPCONST BITMAPINFO* gdiBitmapInfo, VOID* gdiBitmapData, GpBitmap** bitmap), (gdiBitmapInfo, gdiBitmapData, bitmap)) \ | |
400 | m(CreateBitmapFromHBITMAP, (HBITMAP hbm, HPALETTE hpal, GpBitmap** bitmap), (hbm, hpal, bitmap)) \ | |
401 | m(CreateHBITMAPFromBitmap, (GpBitmap* bitmap, HBITMAP* hbmReturn, ARGB background), (bitmap, hbmReturn, background)) \ | |
402 | m(CreateBitmapFromHICON, (HICON hicon, GpBitmap** bitmap), (hicon, bitmap)) \ | |
403 | m(CreateHICONFromBitmap, (GpBitmap* bitmap, HICON* hbmReturn), (bitmap, hbmReturn)) \ | |
404 | m(CreateBitmapFromResource, (HINSTANCE hInstance, GDIPCONST WCHAR* lpBitmapName, GpBitmap** bitmap), (hInstance, lpBitmapName, bitmap)) \ | |
405 | m(CloneBitmapArea, (REAL x, REAL y, REAL width, REAL height, PixelFormat format, GpBitmap *srcBitmap, GpBitmap **dstBitmap), (x, y, width, height, format, srcBitmap, dstBitmap)) \ | |
406 | m(CloneBitmapAreaI, (INT x, INT y, INT width, INT height, PixelFormat format, GpBitmap *srcBitmap, GpBitmap **dstBitmap), (x, y, width, height, format, srcBitmap, dstBitmap)) \ | |
407 | m(BitmapLockBits, (GpBitmap* bitmap, GDIPCONST GpRect* rect, UINT flags, PixelFormat format, BitmapData* lockedBitmapData), (bitmap, rect, flags, format, lockedBitmapData)) \ | |
408 | m(BitmapUnlockBits, (GpBitmap* bitmap, BitmapData* lockedBitmapData), (bitmap, lockedBitmapData)) \ | |
409 | m(BitmapGetPixel, (GpBitmap* bitmap, INT x, INT y, ARGB *color), (bitmap, x, y, color)) \ | |
410 | m(BitmapSetPixel, (GpBitmap* bitmap, INT x, INT y, ARGB color), (bitmap, x, y, color)) \ | |
411 | m(BitmapSetResolution, (GpBitmap* bitmap, REAL xdpi, REAL ydpi), (bitmap, xdpi, ydpi)) \ | |
412 | m(CreateImageAttributes, (GpImageAttributes **imageattr), (imageattr)) \ | |
413 | m(CloneImageAttributes, (GDIPCONST GpImageAttributes *imageattr, GpImageAttributes **cloneImageattr), (imageattr, cloneImageattr)) \ | |
414 | m(DisposeImageAttributes, (GpImageAttributes *imageattr), (imageattr)) \ | |
415 | m(SetImageAttributesToIdentity, (GpImageAttributes *imageattr, ColorAdjustType type), (imageattr, type)) \ | |
416 | m(ResetImageAttributes, (GpImageAttributes *imageattr, ColorAdjustType type), (imageattr, type)) \ | |
417 | m(SetImageAttributesColorMatrix, (GpImageAttributes *imageattr, ColorAdjustType type, BOOL enableFlag, GDIPCONST ColorMatrix* colorMatrix, GDIPCONST ColorMatrix* grayMatrix, ColorMatrixFlags flags), (imageattr, type, enableFlag, colorMatrix, grayMatrix, flags)) \ | |
418 | m(SetImageAttributesThreshold, (GpImageAttributes *imageattr, ColorAdjustType type, BOOL enableFlag, REAL threshold), (imageattr, type, enableFlag, threshold)) \ | |
419 | m(SetImageAttributesGamma, (GpImageAttributes *imageattr, ColorAdjustType type, BOOL enableFlag, REAL gamma), (imageattr, type, enableFlag, gamma)) \ | |
420 | m(SetImageAttributesNoOp, (GpImageAttributes *imageattr, ColorAdjustType type, BOOL enableFlag), (imageattr, type, enableFlag)) \ | |
421 | m(SetImageAttributesColorKeys, (GpImageAttributes *imageattr, ColorAdjustType type, BOOL enableFlag, ARGB colorLow, ARGB colorHigh), (imageattr, type, enableFlag, colorLow, colorHigh)) \ | |
422 | m(SetImageAttributesOutputChannel, (GpImageAttributes *imageattr, ColorAdjustType type, BOOL enableFlag, ColorChannelFlags channelFlags), (imageattr, type, enableFlag, channelFlags)) \ | |
423 | m(SetImageAttributesOutputChannelColorProfile, (GpImageAttributes *imageattr, ColorAdjustType type, BOOL enableFlag, GDIPCONST WCHAR *colorProfileFilename), (imageattr, type, enableFlag, colorProfileFilename)) \ | |
424 | m(SetImageAttributesRemapTable, (GpImageAttributes *imageattr, ColorAdjustType type, BOOL enableFlag, UINT mapSize, GDIPCONST ColorMap *map), (imageattr, type, enableFlag, mapSize, map)) \ | |
425 | m(SetImageAttributesWrapMode, (GpImageAttributes *imageAttr, WrapMode wrap, ARGB argb, BOOL clamp), (imageAttr, wrap, argb, clamp)) \ | |
426 | m(GetImageAttributesAdjustedPalette, (GpImageAttributes *imageAttr, ColorPalette *colorPalette, ColorAdjustType colorAdjustType), (imageAttr, colorPalette, colorAdjustType)) \ | |
427 | m(Flush, (GpGraphics *graphics, GpFlushIntention intention), (graphics, intention)) \ | |
428 | m(CreateFromHDC, (HDC hdc, GpGraphics **graphics), (hdc, graphics)) \ | |
429 | m(CreateFromHDC2, (HDC hdc, HANDLE hDevice, GpGraphics **graphics), (hdc, hDevice, graphics)) \ | |
430 | m(CreateFromHWND, (HWND hwnd, GpGraphics **graphics), (hwnd, graphics)) \ | |
431 | m(CreateFromHWNDICM, (HWND hwnd, GpGraphics **graphics), (hwnd, graphics)) \ | |
432 | m(DeleteGraphics, (GpGraphics *graphics), (graphics)) \ | |
433 | m(GetDC, (GpGraphics* graphics, HDC *hdc), (graphics, hdc)) \ | |
434 | m(ReleaseDC, (GpGraphics* graphics, HDC hdc), (graphics, hdc)) \ | |
435 | m(SetCompositingMode, (GpGraphics *graphics, CompositingMode compositingMode), (graphics, compositingMode)) \ | |
436 | m(GetCompositingMode, (GpGraphics *graphics, CompositingMode *compositingMode), (graphics, compositingMode)) \ | |
437 | m(SetRenderingOrigin, (GpGraphics *graphics, INT x, INT y), (graphics, x, y)) \ | |
438 | m(GetRenderingOrigin, (GpGraphics *graphics, INT *x, INT *y), (graphics, x, y)) \ | |
439 | m(SetCompositingQuality, (GpGraphics *graphics, CompositingQuality compositingQuality), (graphics, compositingQuality)) \ | |
440 | m(GetCompositingQuality, (GpGraphics *graphics, CompositingQuality *compositingQuality), (graphics, compositingQuality)) \ | |
441 | m(SetSmoothingMode, (GpGraphics *graphics, SmoothingMode smoothingMode), (graphics, smoothingMode)) \ | |
442 | m(GetSmoothingMode, (GpGraphics *graphics, SmoothingMode *smoothingMode), (graphics, smoothingMode)) \ | |
443 | m(SetPixelOffsetMode, (GpGraphics* graphics, PixelOffsetMode pixelOffsetMode), (graphics, pixelOffsetMode)) \ | |
444 | m(GetPixelOffsetMode, (GpGraphics *graphics, PixelOffsetMode *pixelOffsetMode), (graphics, pixelOffsetMode)) \ | |
445 | m(SetTextRenderingHint, (GpGraphics *graphics, TextRenderingHint mode), (graphics, mode)) \ | |
446 | m(GetTextRenderingHint, (GpGraphics *graphics, TextRenderingHint *mode), (graphics, mode)) \ | |
447 | m(SetTextContrast, (GpGraphics *graphics, UINT contrast), (graphics, contrast)) \ | |
448 | m(GetTextContrast, (GpGraphics *graphics, UINT *contrast), (graphics, contrast)) \ | |
449 | m(SetInterpolationMode, (GpGraphics *graphics, InterpolationMode interpolationMode), (graphics, interpolationMode)) \ | |
450 | m(GetInterpolationMode, (GpGraphics *graphics, InterpolationMode *interpolationMode), (graphics, interpolationMode)) \ | |
451 | m(SetWorldTransform, (GpGraphics *graphics, GpMatrix *matrix), (graphics, matrix)) \ | |
452 | m(ResetWorldTransform, (GpGraphics *graphics), (graphics)) \ | |
453 | m(MultiplyWorldTransform, (GpGraphics *graphics, GDIPCONST GpMatrix *matrix, GpMatrixOrder order), (graphics, matrix, order)) \ | |
454 | m(TranslateWorldTransform, (GpGraphics *graphics, REAL dx, REAL dy, GpMatrixOrder order), (graphics, dx, dy, order)) \ | |
455 | m(ScaleWorldTransform, (GpGraphics *graphics, REAL sx, REAL sy, GpMatrixOrder order), (graphics, sx, sy, order)) \ | |
456 | m(RotateWorldTransform, (GpGraphics *graphics, REAL angle, GpMatrixOrder order), (graphics, angle, order)) \ | |
457 | m(GetWorldTransform, (GpGraphics *graphics, GpMatrix *matrix), (graphics, matrix)) \ | |
458 | m(ResetPageTransform, (GpGraphics *graphics), (graphics)) \ | |
459 | m(GetPageUnit, (GpGraphics *graphics, GpUnit *unit), (graphics, unit)) \ | |
460 | m(GetPageScale, (GpGraphics *graphics, REAL *scale), (graphics, scale)) \ | |
461 | m(SetPageUnit, (GpGraphics *graphics, GpUnit unit), (graphics, unit)) \ | |
462 | m(SetPageScale, (GpGraphics *graphics, REAL scale), (graphics, scale)) \ | |
463 | m(GetDpiX, (GpGraphics *graphics, REAL* dpi), (graphics, dpi)) \ | |
464 | m(GetDpiY, (GpGraphics *graphics, REAL* dpi), (graphics, dpi)) \ | |
465 | m(TransformPoints, (GpGraphics *graphics, GpCoordinateSpace destSpace, GpCoordinateSpace srcSpace, GpPointF *points, INT count), (graphics, destSpace, srcSpace, points, count)) \ | |
466 | m(TransformPointsI, (GpGraphics *graphics, GpCoordinateSpace destSpace, GpCoordinateSpace srcSpace, GpPoint *points, INT count), (graphics, destSpace, srcSpace, points, count)) \ | |
467 | m(GetNearestColor, (GpGraphics *graphics, ARGB* argb), (graphics, argb)) \ | |
468 | m(DrawLine, (GpGraphics *graphics, GpPen *pen, REAL x1, REAL y1, REAL x2, REAL y2), (graphics, pen, x1, y1, x2, y2)) \ | |
469 | m(DrawLineI, (GpGraphics *graphics, GpPen *pen, INT x1, INT y1, INT x2, INT y2), (graphics, pen, x1, y1, x2, y2)) \ | |
470 | m(DrawLines, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points, INT count), (graphics, pen, points, count)) \ | |
471 | m(DrawLinesI, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points, INT count), (graphics, pen, points, count)) \ | |
472 | m(DrawArc, (GpGraphics *graphics, GpPen *pen, REAL x, REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle), (graphics, pen, x, y, width, height, startAngle, sweepAngle)) \ | |
473 | m(DrawArcI, (GpGraphics *graphics, GpPen *pen, INT x, INT y, INT width, INT height, REAL startAngle, REAL sweepAngle), (graphics, pen, x, y, width, height, startAngle, sweepAngle)) \ | |
474 | m(DrawBezier, (GpGraphics *graphics, GpPen *pen, REAL x1, REAL y1, REAL x2, REAL y2, REAL x3, REAL y3, REAL x4, REAL y4), (graphics, pen, x1, y1, x2, y2, x3, y3, x4, y4)) \ | |
475 | m(DrawBezierI, (GpGraphics *graphics, GpPen *pen, INT x1, INT y1, INT x2, INT y2, INT x3, INT y3, INT x4, INT y4), (graphics, pen, x1, y1, x2, y2, x3, y3, x4, y4)) \ | |
476 | m(DrawBeziers, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points, INT count), (graphics, pen, points, count)) \ | |
477 | m(DrawBeziersI, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points, INT count), (graphics, pen, points, count)) \ | |
478 | m(DrawRectangle, (GpGraphics *graphics, GpPen *pen, REAL x, REAL y, REAL width, REAL height), (graphics, pen, x, y, width, height)) \ | |
479 | m(DrawRectangleI, (GpGraphics *graphics, GpPen *pen, INT x, INT y, INT width, INT height), (graphics, pen, x, y, width, height)) \ | |
480 | m(DrawRectangles, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpRectF *rects, INT count), (graphics, pen, rects, count)) \ | |
481 | m(DrawRectanglesI, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpRect *rects, INT count), (graphics, pen, rects, count)) \ | |
482 | m(DrawEllipse, (GpGraphics *graphics, GpPen *pen, REAL x, REAL y, REAL width, REAL height), (graphics, pen, x, y, width, height)) \ | |
483 | m(DrawEllipseI, (GpGraphics *graphics, GpPen *pen, INT x, INT y, INT width, INT height), (graphics, pen, x, y, width, height)) \ | |
484 | m(DrawPie, (GpGraphics *graphics, GpPen *pen, REAL x, REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle), (graphics, pen, x, y, width, height, startAngle, sweepAngle)) \ | |
485 | m(DrawPieI, (GpGraphics *graphics, GpPen *pen, INT x, INT y, INT width, INT height, REAL startAngle, REAL sweepAngle), (graphics, pen, x, y, width, height, startAngle, sweepAngle)) \ | |
486 | m(DrawPolygon, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points, INT count), (graphics, pen, points, count)) \ | |
487 | m(DrawPolygonI, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points, INT count), (graphics, pen, points, count)) \ | |
488 | m(DrawPath, (GpGraphics *graphics, GpPen *pen, GpPath *path), (graphics, pen, path)) \ | |
489 | m(DrawCurve, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points, INT count), (graphics, pen, points, count)) \ | |
490 | m(DrawCurveI, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points, INT count), (graphics, pen, points, count)) \ | |
491 | m(DrawCurve2, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points, INT count, REAL tension), (graphics, pen, points, count, tension)) \ | |
492 | m(DrawCurve2I, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points, INT count, REAL tension), (graphics, pen, points, count, tension)) \ | |
493 | m(DrawCurve3, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points, INT count, INT offset, INT numberOfSegments, REAL tension), (graphics, pen, points, count, offset, numberOfSegments, tension)) \ | |
494 | m(DrawCurve3I, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points, INT count, INT offset, INT numberOfSegments, REAL tension), (graphics, pen, points, count, offset, numberOfSegments, tension)) \ | |
495 | m(DrawClosedCurve, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points, INT count), (graphics, pen, points, count)) \ | |
496 | m(DrawClosedCurveI, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points, INT count), (graphics, pen, points, count)) \ | |
497 | m(DrawClosedCurve2, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points, INT count, REAL tension), (graphics, pen, points, count, tension)) \ | |
498 | m(DrawClosedCurve2I, (GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points, INT count, REAL tension), (graphics, pen, points, count, tension)) \ | |
499 | m(GraphicsClear, (GpGraphics *graphics, ARGB color), (graphics, color)) \ | |
500 | m(FillRectangle, (GpGraphics *graphics, GpBrush *brush, REAL x, REAL y, REAL width, REAL height), (graphics, brush, x, y, width, height)) \ | |
501 | m(FillRectangleI, (GpGraphics *graphics, GpBrush *brush, INT x, INT y, INT width, INT height), (graphics, brush, x, y, width, height)) \ | |
502 | m(FillRectangles, (GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRectF *rects, INT count), (graphics, brush, rects, count)) \ | |
503 | m(FillRectanglesI, (GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRect *rects, INT count), (graphics, brush, rects, count)) \ | |
504 | m(FillPolygon, (GpGraphics *graphics, GpBrush *brush, GDIPCONST GpPointF *points, INT count, GpFillMode fillMode), (graphics, brush, points, count, fillMode)) \ | |
505 | m(FillPolygonI, (GpGraphics *graphics, GpBrush *brush, GDIPCONST GpPoint *points, INT count, GpFillMode fillMode), (graphics, brush, points, count, fillMode)) \ | |
506 | m(FillPolygon2, (GpGraphics *graphics, GpBrush *brush, GDIPCONST GpPointF *points, INT count), (graphics, brush, points, count)) \ | |
507 | m(FillPolygon2I, (GpGraphics *graphics, GpBrush *brush, GDIPCONST GpPoint *points, INT count), (graphics, brush, points, count)) \ | |
508 | m(FillEllipse, (GpGraphics *graphics, GpBrush *brush, REAL x, REAL y, REAL width, REAL height), (graphics, brush, x, y, width, height)) \ | |
509 | m(FillEllipseI, (GpGraphics *graphics, GpBrush *brush, INT x, INT y, INT width, INT height), (graphics, brush, x, y, width, height)) \ | |
510 | m(FillPie, (GpGraphics *graphics, GpBrush *brush, REAL x, REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle), (graphics, brush, x, y, width, height, startAngle, sweepAngle)) \ | |
511 | m(FillPieI, (GpGraphics *graphics, GpBrush *brush, INT x, INT y, INT width, INT height, REAL startAngle, REAL sweepAngle), (graphics, brush, x, y, width, height, startAngle, sweepAngle)) \ | |
512 | m(FillPath, (GpGraphics *graphics, GpBrush *brush, GpPath *path), (graphics, brush, path)) \ | |
513 | m(FillClosedCurve, (GpGraphics *graphics, GpBrush *brush, GDIPCONST GpPointF *points, INT count), (graphics, brush, points, count)) \ | |
514 | m(FillClosedCurveI, (GpGraphics *graphics, GpBrush *brush, GDIPCONST GpPoint *points, INT count), (graphics, brush, points, count)) \ | |
515 | m(FillClosedCurve2, (GpGraphics *graphics, GpBrush *brush, GDIPCONST GpPointF *points, INT count, REAL tension, GpFillMode fillMode), (graphics, brush, points, count, tension, fillMode)) \ | |
516 | m(FillClosedCurve2I, (GpGraphics *graphics, GpBrush *brush, GDIPCONST GpPoint *points, INT count, REAL tension, GpFillMode fillMode), (graphics, brush, points, count, tension, fillMode)) \ | |
517 | m(FillRegion, (GpGraphics *graphics, GpBrush *brush, GpRegion *region), (graphics, brush, region)) \ | |
518 | m(DrawImage, (GpGraphics *graphics, GpImage *image, REAL x, REAL y), (graphics, image, x, y)) \ | |
519 | m(DrawImageI, (GpGraphics *graphics, GpImage *image, INT x, INT y), (graphics, image, x, y)) \ | |
520 | m(DrawImageRect, (GpGraphics *graphics, GpImage *image, REAL x, REAL y, REAL width, REAL height), (graphics, image, x, y, width, height)) \ | |
521 | m(DrawImageRectI, (GpGraphics *graphics, GpImage *image, INT x, INT y, INT width, INT height), (graphics, image, x, y, width, height)) \ | |
522 | m(DrawImagePoints, (GpGraphics *graphics, GpImage *image, GDIPCONST GpPointF *dstpoints, INT count), (graphics, image, dstpoints, count)) \ | |
523 | m(DrawImagePointsI, (GpGraphics *graphics, GpImage *image, GDIPCONST GpPoint *dstpoints, INT count), (graphics, image, dstpoints, count)) \ | |
524 | m(DrawImagePointRect, (GpGraphics *graphics, GpImage *image, REAL x, REAL y, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight, GpUnit srcUnit), (graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit)) \ | |
525 | m(DrawImagePointRectI, (GpGraphics *graphics, GpImage *image, INT x, INT y, INT srcx, INT srcy, INT srcwidth, INT srcheight, GpUnit srcUnit), (graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit)) \ | |
526 | m(DrawImageRectRect, (GpGraphics *graphics, GpImage *image, REAL dstx, REAL dsty, REAL dstwidth, REAL dstheight, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes, DrawImageAbort callback, VOID *callbackData), (graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData)) \ | |
527 | m(DrawImageRectRectI, (GpGraphics *graphics, GpImage *image, INT dstx, INT dsty, INT dstwidth, INT dstheight, INT srcx, INT srcy, INT srcwidth, INT srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes, DrawImageAbort callback, VOID *callbackData), (graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData)) \ | |
528 | m(DrawImagePointsRect, (GpGraphics *graphics, GpImage *image, GDIPCONST GpPointF *points, INT count, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes, DrawImageAbort callback, VOID *callbackData), (graphics, image, points, count, srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData)) \ | |
529 | m(DrawImagePointsRectI, (GpGraphics *graphics, GpImage *image, GDIPCONST GpPoint *points, INT count, INT srcx, INT srcy, INT srcwidth, INT srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes, DrawImageAbort callback, VOID *callbackData), (graphics, image, points, count, srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData)) \ | |
530 | m(EnumerateMetafileDestPoint, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST PointF & destPoint, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destPoint, callback, callbackData, imageAttributes)) \ | |
531 | m(EnumerateMetafileDestPointI, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST Point & destPoint, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destPoint, callback, callbackData, imageAttributes)) \ | |
532 | m(EnumerateMetafileDestRect, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST RectF & destRect, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destRect, callback, callbackData, imageAttributes)) \ | |
533 | m(EnumerateMetafileDestRectI, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST Rect & destRect, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destRect, callback, callbackData, imageAttributes)) \ | |
534 | m(EnumerateMetafileDestPoints, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST PointF *destPoints, INT count, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destPoints, count, callback, callbackData, imageAttributes)) \ | |
535 | m(EnumerateMetafileDestPointsI, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST Point *destPoints, INT count, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destPoints, count, callback, callbackData, imageAttributes)) \ | |
536 | m(EnumerateMetafileSrcRectDestPoint, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST PointF & destPoint, GDIPCONST RectF & srcRect, Unit srcUnit, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destPoint, srcRect, srcUnit, callback, callbackData, imageAttributes)) \ | |
537 | m(EnumerateMetafileSrcRectDestPointI, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST Point & destPoint, GDIPCONST Rect & srcRect, Unit srcUnit, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destPoint, srcRect, srcUnit, callback, callbackData, imageAttributes)) \ | |
538 | m(EnumerateMetafileSrcRectDestRect, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST RectF & destRect, GDIPCONST RectF & srcRect, Unit srcUnit, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destRect, srcRect, srcUnit, callback, callbackData, imageAttributes)) \ | |
539 | m(EnumerateMetafileSrcRectDestRectI, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST Rect & destRect, GDIPCONST Rect & srcRect, Unit srcUnit, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destRect, srcRect, srcUnit, callback, callbackData, imageAttributes)) \ | |
540 | m(EnumerateMetafileSrcRectDestPoints, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST PointF *destPoints, INT count, GDIPCONST RectF & srcRect, Unit srcUnit, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destPoints, count, srcRect, srcUnit, callback, callbackData, imageAttributes)) \ | |
541 | m(EnumerateMetafileSrcRectDestPointsI, (GpGraphics *graphics, GDIPCONST GpMetafile *metafile, GDIPCONST Point *destPoints, INT count, GDIPCONST Rect & srcRect, Unit srcUnit, EnumerateMetafileProc callback, VOID *callbackData, GDIPCONST GpImageAttributes *imageAttributes), (graphics, metafile, destPoints, count, srcRect, srcUnit, callback, callbackData, imageAttributes)) \ | |
542 | m(PlayMetafileRecord, (GDIPCONST GpMetafile *metafile, EmfPlusRecordType recordType, UINT flags, UINT dataSize, GDIPCONST BYTE *data), (metafile, recordType, flags, dataSize, data)) \ | |
543 | m(SetClipGraphics, (GpGraphics *graphics, GpGraphics *srcgraphics, CombineMode combineMode), (graphics, srcgraphics, combineMode)) \ | |
544 | m(SetClipRect, (GpGraphics *graphics, REAL x, REAL y, REAL width, REAL height, CombineMode combineMode), (graphics, x, y, width, height, combineMode)) \ | |
545 | m(SetClipRectI, (GpGraphics *graphics, INT x, INT y, INT width, INT height, CombineMode combineMode), (graphics, x, y, width, height, combineMode)) \ | |
546 | m(SetClipPath, (GpGraphics *graphics, GpPath *path, CombineMode combineMode), (graphics, path, combineMode)) \ | |
547 | m(SetClipRegion, (GpGraphics *graphics, GpRegion *region, CombineMode combineMode), (graphics, region, combineMode)) \ | |
548 | m(SetClipHrgn, (GpGraphics *graphics, HRGN hRgn, CombineMode combineMode), (graphics, hRgn, combineMode)) \ | |
549 | m(ResetClip, (GpGraphics *graphics), (graphics)) \ | |
550 | m(TranslateClip, (GpGraphics *graphics, REAL dx, REAL dy), (graphics, dx, dy)) \ | |
551 | m(TranslateClipI, (GpGraphics *graphics, INT dx, INT dy), (graphics, dx, dy)) \ | |
552 | m(GetClip, (GpGraphics *graphics, GpRegion *region), (graphics, region)) \ | |
553 | m(GetClipBounds, (GpGraphics *graphics, GpRectF *rect), (graphics, rect)) \ | |
554 | m(GetClipBoundsI, (GpGraphics *graphics, GpRect *rect), (graphics, rect)) \ | |
555 | m(IsClipEmpty, (GpGraphics *graphics, BOOL *result), (graphics, result)) \ | |
556 | m(GetVisibleClipBounds, (GpGraphics *graphics, GpRectF *rect), (graphics, rect)) \ | |
557 | m(GetVisibleClipBoundsI, (GpGraphics *graphics, GpRect *rect), (graphics, rect)) \ | |
558 | m(IsVisibleClipEmpty, (GpGraphics *graphics, BOOL *result), (graphics, result)) \ | |
559 | m(IsVisiblePoint, (GpGraphics *graphics, REAL x, REAL y, BOOL *result), (graphics, x, y, result)) \ | |
560 | m(IsVisiblePointI, (GpGraphics *graphics, INT x, INT y, BOOL *result), (graphics, x, y, result)) \ | |
561 | m(IsVisibleRect, (GpGraphics *graphics, REAL x, REAL y, REAL width, REAL height, BOOL *result), (graphics, x, y, width, height, result)) \ | |
562 | m(IsVisibleRectI, (GpGraphics *graphics, INT x, INT y, INT width, INT height, BOOL *result), (graphics, x, y, width, height, result)) \ | |
563 | m(SaveGraphics, (GpGraphics *graphics, GraphicsState *state), (graphics, state)) \ | |
564 | m(RestoreGraphics, (GpGraphics *graphics, GraphicsState state), (graphics, state)) \ | |
565 | m(BeginContainer, (GpGraphics *graphics, GDIPCONST GpRectF* dstrect, GDIPCONST GpRectF *srcrect, GpUnit unit, GraphicsContainer *state), (graphics, dstrect, srcrect, unit, state)) \ | |
566 | m(BeginContainerI, (GpGraphics *graphics, GDIPCONST GpRect* dstrect, GDIPCONST GpRect *srcrect, GpUnit unit, GraphicsContainer *state), (graphics, dstrect, srcrect, unit, state)) \ | |
567 | m(BeginContainer2, (GpGraphics *graphics, GraphicsContainer* state), (graphics, state)) \ | |
568 | m(EndContainer, (GpGraphics *graphics, GraphicsContainer state), (graphics, state)) \ | |
569 | m(GetMetafileHeaderFromEmf, (HENHMETAFILE hEmf, MetafileHeader *header), (hEmf, header)) \ | |
570 | m(GetMetafileHeaderFromFile, (GDIPCONST WCHAR* filename, MetafileHeader *header), (filename, header)) \ | |
571 | m(GetMetafileHeaderFromStream, (IStream *stream, MetafileHeader *header), (stream, header)) \ | |
572 | m(GetMetafileHeaderFromMetafile, (GpMetafile *metafile, MetafileHeader *header), (metafile, header)) \ | |
573 | m(GetHemfFromMetafile, (GpMetafile *metafile, HENHMETAFILE *hEmf), (metafile, hEmf)) \ | |
574 | m(CreateStreamOnFile, (GDIPCONST WCHAR *filename, UINT access, IStream **stream), (filename, access, stream)) \ | |
575 | m(CreateMetafileFromWmf, (HMETAFILE hWmf, BOOL deleteWmf, GDIPCONST WmfPlaceableFileHeader *wmfPlaceableFileHeader, GpMetafile **metafile), (hWmf, deleteWmf, wmfPlaceableFileHeader, metafile)) \ | |
576 | m(CreateMetafileFromEmf, (HENHMETAFILE hEmf, BOOL deleteEmf, GpMetafile **metafile), (hEmf, deleteEmf, metafile)) \ | |
577 | m(CreateMetafileFromFile, (GDIPCONST WCHAR* file, GpMetafile **metafile), (file, metafile)) \ | |
578 | m(CreateMetafileFromWmfFile, (GDIPCONST WCHAR* file, GDIPCONST WmfPlaceableFileHeader *wmfPlaceableFileHeader, GpMetafile **metafile), (file, wmfPlaceableFileHeader, metafile)) \ | |
579 | m(CreateMetafileFromStream, (IStream *stream, GpMetafile **metafile), (stream, metafile)) \ | |
580 | m(RecordMetafile, (HDC referenceHdc, EmfType type, GDIPCONST GpRectF *frameRect, MetafileFrameUnit frameUnit, GDIPCONST WCHAR *description, GpMetafile ** metafile), (referenceHdc, type, frameRect, frameUnit, description, metafile)) \ | |
581 | m(RecordMetafileI, (HDC referenceHdc, EmfType type, GDIPCONST GpRect *frameRect, MetafileFrameUnit frameUnit, GDIPCONST WCHAR *description, GpMetafile ** metafile), (referenceHdc, type, frameRect, frameUnit, description, metafile)) \ | |
582 | m(RecordMetafileFileName, (GDIPCONST WCHAR* fileName, HDC referenceHdc, EmfType type, GDIPCONST GpRectF *frameRect, MetafileFrameUnit frameUnit, GDIPCONST WCHAR *description, GpMetafile ** metafile), (fileName, referenceHdc, type, frameRect, frameUnit, description, metafile)) \ | |
583 | m(RecordMetafileFileNameI, (GDIPCONST WCHAR* fileName, HDC referenceHdc, EmfType type, GDIPCONST GpRect *frameRect, MetafileFrameUnit frameUnit, GDIPCONST WCHAR *description, GpMetafile ** metafile), (fileName, referenceHdc, type, frameRect, frameUnit, description, metafile)) \ | |
584 | m(RecordMetafileStream, (IStream *stream, HDC referenceHdc, EmfType type, GDIPCONST GpRectF *frameRect, MetafileFrameUnit frameUnit, GDIPCONST WCHAR *description, GpMetafile ** metafile), (stream, referenceHdc, type, frameRect, frameUnit, description, metafile)) \ | |
585 | m(RecordMetafileStreamI, (IStream *stream, HDC referenceHdc, EmfType type, GDIPCONST GpRect *frameRect, MetafileFrameUnit frameUnit, GDIPCONST WCHAR *description, GpMetafile ** metafile), (stream, referenceHdc, type, frameRect, frameUnit, description, metafile)) \ | |
586 | m(SetMetafileDownLevelRasterizationLimit, (GpMetafile *metafile, UINT metafileRasterizationLimitDpi), (metafile, metafileRasterizationLimitDpi)) \ | |
587 | m(GetMetafileDownLevelRasterizationLimit, (GDIPCONST GpMetafile *metafile, UINT *metafileRasterizationLimitDpi), (metafile, metafileRasterizationLimitDpi)) \ | |
588 | m(GetImageDecodersSize, (UINT *numDecoders, UINT *size), (numDecoders, size)) \ | |
589 | m(GetImageDecoders, (UINT numDecoders, UINT size, ImageCodecInfo *decoders), (numDecoders, size, decoders)) \ | |
590 | m(GetImageEncodersSize, (UINT *numEncoders, UINT *size), (numEncoders, size)) \ | |
591 | m(GetImageEncoders, (UINT numEncoders, UINT size, ImageCodecInfo *encoders), (numEncoders, size, encoders)) \ | |
592 | m(Comment, (GpGraphics* graphics, UINT sizeData, GDIPCONST BYTE *data), (graphics, sizeData, data)) \ | |
593 | m(CreateFontFamilyFromName, (GDIPCONST WCHAR *name, GpFontCollection *fontCollection, GpFontFamily **FontFamily), (name, fontCollection, FontFamily)) \ | |
594 | m(DeleteFontFamily, (GpFontFamily *FontFamily), (FontFamily)) \ | |
595 | m(CloneFontFamily, (GpFontFamily *FontFamily, GpFontFamily **clonedFontFamily), (FontFamily, clonedFontFamily)) \ | |
596 | m(GetGenericFontFamilySansSerif, (GpFontFamily **nativeFamily), (nativeFamily)) \ | |
597 | m(GetGenericFontFamilySerif, (GpFontFamily **nativeFamily), (nativeFamily)) \ | |
598 | m(GetGenericFontFamilyMonospace, (GpFontFamily **nativeFamily), (nativeFamily)) \ | |
599 | m(GetFamilyName, (GDIPCONST GpFontFamily *family, WCHAR name[LF_FACESIZE], LANGID language), (family, name, language)) \ | |
600 | m(IsStyleAvailable, (GDIPCONST GpFontFamily *family, INT style, BOOL *IsStyleAvailable), (family, style, IsStyleAvailable)) \ | |
601 | m(GetEmHeight, (GDIPCONST GpFontFamily *family, INT style, UINT16 *EmHeight), (family, style, EmHeight)) \ | |
602 | m(GetCellAscent, (GDIPCONST GpFontFamily *family, INT style, UINT16 *CellAscent), (family, style, CellAscent)) \ | |
603 | m(GetCellDescent, (GDIPCONST GpFontFamily *family, INT style, UINT16 *CellDescent), (family, style, CellDescent)) \ | |
604 | m(GetLineSpacing, (GDIPCONST GpFontFamily *family, INT style, UINT16 *LineSpacing), (family, style, LineSpacing)) \ | |
605 | m(CreateFontFromDC, (HDC hdc, GpFont **font), (hdc, font)) \ | |
606 | m(CreateFontFromLogfontA, (HDC hdc, GDIPCONST LOGFONTA *logfont, GpFont **font), (hdc, logfont, font)) \ | |
607 | m(CreateFontFromLogfontW, (HDC hdc, GDIPCONST LOGFONTW *logfont, GpFont **font), (hdc, logfont, font)) \ | |
608 | m(CreateFont, (GDIPCONST GpFontFamily *fontFamily, REAL emSize, INT style, Unit unit, GpFont **font), (fontFamily, emSize, style, unit, font)) \ | |
609 | m(CloneFont, (GpFont* font, GpFont** cloneFont), (font, cloneFont)) \ | |
610 | m(DeleteFont, (GpFont* font), (font)) \ | |
611 | m(GetFamily, (GpFont *font, GpFontFamily **family), (font, family)) \ | |
612 | m(GetFontStyle, (GpFont *font, INT *style), (font, style)) \ | |
613 | m(GetFontSize, (GpFont *font, REAL *size), (font, size)) \ | |
614 | m(GetFontUnit, (GpFont *font, Unit *unit), (font, unit)) \ | |
615 | m(GetFontHeight, (GDIPCONST GpFont *font, GDIPCONST GpGraphics *graphics, REAL *height), (font, graphics, height)) \ | |
616 | m(GetFontHeightGivenDPI, (GDIPCONST GpFont *font, REAL dpi, REAL *height), (font, dpi, height)) \ | |
617 | m(GetLogFontA, (GpFont *font, GpGraphics *graphics, LOGFONTA *logfontA), (font, graphics, logfontA)) \ | |
618 | m(GetLogFontW, (GpFont *font, GpGraphics *graphics, LOGFONTW *logfontW), (font, graphics, logfontW)) \ | |
619 | m(NewInstalledFontCollection, (GpFontCollection** fontCollection), (fontCollection)) \ | |
620 | m(NewPrivateFontCollection, (GpFontCollection** fontCollection), (fontCollection)) \ | |
621 | m(DeletePrivateFontCollection, (GpFontCollection** fontCollection), (fontCollection)) \ | |
622 | m(GetFontCollectionFamilyCount, (GpFontCollection* fontCollection, INT *numFound), (fontCollection, numFound)) \ | |
623 | m(GetFontCollectionFamilyList, (GpFontCollection* fontCollection, INT numSought, GpFontFamily* gpfamilies[], INT* numFound), (fontCollection, numSought, gpfamilies, numFound)) \ | |
624 | m(PrivateAddFontFile, (GpFontCollection* fontCollection, GDIPCONST WCHAR* filename), (fontCollection, filename)) \ | |
625 | m(PrivateAddMemoryFont, (GpFontCollection* fontCollection, GDIPCONST void* memory, INT length), (fontCollection, memory, length)) \ | |
626 | m(DrawString, (GpGraphics *graphics, GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font, GDIPCONST RectF *layoutRect, GDIPCONST GpStringFormat *stringFormat, GDIPCONST GpBrush *brush), (graphics, string, length, font, layoutRect, stringFormat, brush)) \ | |
627 | m(MeasureString, (GpGraphics *graphics, GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font, GDIPCONST RectF *layoutRect, GDIPCONST GpStringFormat *stringFormat, RectF *boundingBox, INT *codepointsFitted, INT *linesFilled), (graphics, string, length, font, layoutRect, stringFormat, boundingBox, codepointsFitted, linesFilled)) \ | |
628 | m(MeasureCharacterRanges, (GpGraphics *graphics, GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font, GDIPCONST RectF &layoutRect, GDIPCONST GpStringFormat *stringFormat, INT regionCount, GpRegion **regions), (graphics, string, length, font, layoutRect, stringFormat, regionCount, regions)) \ | |
629 | m(DrawDriverString, (GpGraphics *graphics, GDIPCONST UINT16 *text, INT length, GDIPCONST GpFont *font, GDIPCONST GpBrush *brush, GDIPCONST PointF *positions, INT flags, GDIPCONST GpMatrix *matrix), (graphics, text, length, font, brush, positions, flags, matrix)) \ | |
630 | m(MeasureDriverString, (GpGraphics *graphics, GDIPCONST UINT16 *text, INT length, GDIPCONST GpFont *font, GDIPCONST PointF *positions, INT flags, GDIPCONST GpMatrix *matrix, RectF *boundingBox), (graphics, text, length, font, positions, flags, matrix, boundingBox)) \ | |
631 | m(CreateStringFormat, (INT formatAttributes, LANGID language, GpStringFormat **format), (formatAttributes, language, format)) \ | |
632 | m(StringFormatGetGenericDefault, (GpStringFormat **format), (format)) \ | |
633 | m(StringFormatGetGenericTypographic, (GpStringFormat **format), (format)) \ | |
634 | m(DeleteStringFormat, (GpStringFormat *format), (format)) \ | |
635 | m(CloneStringFormat, (GDIPCONST GpStringFormat *format, GpStringFormat **newFormat), (format, newFormat)) \ | |
636 | m(SetStringFormatFlags, (GpStringFormat *format, INT flags), (format, flags)) \ | |
637 | m(GetStringFormatFlags, (GDIPCONST GpStringFormat *format, INT *flags), (format, flags)) \ | |
638 | m(SetStringFormatAlign, (GpStringFormat *format, StringAlignment align), (format, align)) \ | |
639 | m(GetStringFormatAlign, (GDIPCONST GpStringFormat *format, StringAlignment *align), (format, align)) \ | |
640 | m(SetStringFormatLineAlign, (GpStringFormat *format, StringAlignment align), (format, align)) \ | |
641 | m(GetStringFormatLineAlign, (GDIPCONST GpStringFormat *format, StringAlignment *align), (format, align)) \ | |
642 | m(SetStringFormatTrimming, (GpStringFormat *format, StringTrimming trimming), (format, trimming)) \ | |
643 | m(GetStringFormatTrimming, (GDIPCONST GpStringFormat *format, StringTrimming *trimming), (format, trimming)) \ | |
644 | m(SetStringFormatHotkeyPrefix, (GpStringFormat *format, INT hotkeyPrefix), (format, hotkeyPrefix)) \ | |
645 | m(GetStringFormatHotkeyPrefix, (GDIPCONST GpStringFormat *format, INT *hotkeyPrefix), (format, hotkeyPrefix)) \ | |
646 | m(SetStringFormatTabStops, (GpStringFormat *format, REAL firstTabOffset, INT count, GDIPCONST REAL *tabStops), (format, firstTabOffset, count, tabStops)) \ | |
647 | m(GetStringFormatTabStops, (GDIPCONST GpStringFormat *format, INT count, REAL *firstTabOffset, REAL *tabStops), (format, count, firstTabOffset, tabStops)) \ | |
648 | m(GetStringFormatTabStopCount, (GDIPCONST GpStringFormat *format, INT *count), (format, count)) \ | |
649 | m(SetStringFormatDigitSubstitution, (GpStringFormat *format, LANGID language, StringDigitSubstitute substitute), (format, language, substitute)) \ | |
650 | m(GetStringFormatDigitSubstitution, (GDIPCONST GpStringFormat *format, LANGID *language, StringDigitSubstitute *substitute), (format, language, substitute)) \ | |
651 | m(GetStringFormatMeasurableCharacterRangeCount, (GDIPCONST GpStringFormat *format, INT *count), (format, count)) \ | |
652 | m(SetStringFormatMeasurableCharacterRanges, (GpStringFormat *format, INT rangeCount, GDIPCONST CharacterRange *ranges), (format, rangeCount, ranges)) \ | |
653 | m(CreateCachedBitmap, (GpBitmap *bitmap, GpGraphics *graphics, GpCachedBitmap **cachedBitmap), (bitmap, graphics, cachedBitmap)) \ | |
654 | m(DeleteCachedBitmap, (GpCachedBitmap *cachedBitmap), (cachedBitmap)) \ | |
655 | m(DrawCachedBitmap, (GpGraphics *graphics, GpCachedBitmap *cachedBitmap, INT x, INT y), (graphics, cachedBitmap, x, y)) \ | |
656 | m(SetImageAttributesCachedBackground, (GpImageAttributes *imageattr, BOOL enableFlag), (imageattr, enableFlag)) \ | |
657 | m(TestControl, (GpTestControlEnum control, void *param), (control, param)) \ | |
658 | ||
659 | // non-standard/problematic functions, to review later if needed | |
660 | #if 0 | |
661 | // these functions don't seem to exist in the DLL even though they are | |
662 | // declared in the header | |
663 | m(SetImageAttributesICMMode, (GpImageAttributes *imageAttr, BOOL on), (imageAttr, on)) \ | |
664 | m(FontCollectionEnumerable, (GpFontCollection* fontCollection, GpGraphics* graphics, INT *numFound), (fontCollection, graphics, numFound)) \ | |
665 | m(FontCollectionEnumerate, (GpFontCollection* fontCollection, INT numSought, GpFontFamily* gpfamilies[], INT* numFound, GpGraphics* graphics), (fontCollection, numSought, gpfamilies, numFound, graphics)) \ | |
666 | ||
667 | GpStatus | |
668 | GdipGetMetafileHeaderFromWmf( | |
669 | HMETAFILE hWmf, | |
670 | GDIPCONST WmfPlaceableFileHeader * wmfPlaceableFileHeader, | |
671 | MetafileHeader * header | |
672 | ); | |
673 | HPALETTE WINGDIPAPI | |
674 | GdipCreateHalftonePalette(); | |
675 | ||
676 | UINT WINGDIPAPI | |
677 | GdipEmfToWmfBits( | |
678 | HENHMETAFILE hemf, | |
679 | UINT cbData16, | |
680 | LPBYTE pData16, | |
681 | INT iMapMode, | |
682 | INT eFlags | |
683 | ); | |
684 | #endif // 0 | |
685 | ||
686 | // this macro expands into an invocation of the given macro m for all GDI+ | |
687 | // functions: m is called with the name of the function without "Gdip" prefix | |
688 | #define wxFOR_ALL_GDIP_FUNCNAMES(m) \ | |
689 | m(Alloc, (size_t size), (size)) \ | |
690 | m(Free, (void *ptr), (ptr)) \ | |
691 | wxFOR_ALL_GDIPLUS_STATUS_FUNCS(m) | |
692 | ||
693 | // unfortunately we need a separate macro for these functions as they have | |
694 | // "Gdiplus" prefix instead of "Gdip" for (almost) all the others (and also | |
695 | // WINAPI calling convention instead of WINGDIPAPI although they happen to be | |
696 | // both stdcall in fact) | |
697 | #define wxFOR_ALL_GDIPLUS_FUNCNAMES(m) \ | |
698 | m(Startup, (ULONG_PTR *token, \ | |
699 | const GdiplusStartupInput *input, \ | |
700 | GdiplusStartupOutput *output), \ | |
701 | (token, input, output)) \ | |
702 | m(Shutdown, (ULONG_PTR token), (token)) \ | |
703 | m(NotificationHook, (ULONG_PTR *token), (token)) \ | |
704 | m(NotificationUnhook, (ULONG_PTR token), (token)) \ | |
705 | ||
706 | #define wxFOR_ALL_FUNCNAMES(m) \ | |
707 | wxFOR_ALL_GDIP_FUNCNAMES(m) \ | |
708 | wxFOR_ALL_GDIPLUS_FUNCNAMES(m) | |
709 | ||
710 | // ---------------------------------------------------------------------------- | |
711 | // declare typedefs for types of all GDI+ functions | |
712 | // ---------------------------------------------------------------------------- | |
713 | ||
714 | extern "C" | |
715 | { | |
716 | ||
717 | typedef void* (WINGDIPAPI *wxGDIPLUS_FUNC_T(Alloc))(size_t size); | |
718 | typedef void (WINGDIPAPI *wxGDIPLUS_FUNC_T(Free))(void* ptr); | |
719 | typedef Status | |
720 | (WINAPI *wxGDIPLUS_FUNC_T(Startup))(ULONG_PTR *token, | |
721 | const GdiplusStartupInput *input, | |
722 | GdiplusStartupOutput *output); | |
723 | typedef void (WINAPI *wxGDIPLUS_FUNC_T(Shutdown))(ULONG_PTR token); | |
724 | typedef GpStatus (WINAPI *wxGDIPLUS_FUNC_T(NotificationHook))(ULONG_PTR *token); | |
725 | typedef void (WINAPI *wxGDIPLUS_FUNC_T(NotificationUnhook))(ULONG_PTR token); | |
726 | ||
727 | #define wxDECL_GDIPLUS_FUNC_TYPE(name, params, args) \ | |
728 | typedef GpStatus (WINGDIPAPI *wxGDIPLUS_FUNC_T(name)) params ; | |
729 | ||
730 | wxFOR_ALL_GDIPLUS_STATUS_FUNCS(wxDECL_GDIPLUS_FUNC_TYPE) | |
731 | ||
732 | #undef wxDECL_GDIPLUS_FUNC_TYPE | |
733 | ||
734 | } // extern "C" | |
735 | ||
736 | // ============================================================================ | |
737 | // wxGdiPlus helper class | |
738 | // ============================================================================ | |
739 | ||
740 | class wxGdiPlus | |
741 | { | |
742 | public: | |
743 | // load GDI+ DLL when we're called for the first time, return true on | |
744 | // success or false on failure | |
745 | static bool Initialize() | |
746 | { | |
747 | if ( m_initialized == -1 ) | |
748 | m_initialized = DoInit(); | |
749 | ||
750 | return m_initialized == 1; | |
751 | } | |
752 | ||
753 | // check if we're initialized without loading the GDI+ DLL | |
754 | static bool IsInitialized() | |
755 | { | |
756 | return m_initialized == 1; | |
757 | } | |
758 | ||
759 | // shutdown: should be called on termination to unload the GDI+ DLL, safe | |
760 | // to call even if we hadn't loaded it | |
761 | static void Terminate() | |
762 | { | |
763 | if ( m_hdll ) | |
764 | { | |
765 | wxDynamicLibrary::Unload(m_hdll); | |
766 | m_hdll = 0; | |
767 | } | |
768 | ||
769 | m_initialized = -1; | |
770 | } | |
771 | ||
772 | ||
773 | // define function pointers as members | |
774 | #define wxDECL_GDIPLUS_FUNC_MEMBER(name, params, args) \ | |
775 | static wxGDIPLUS_FUNC_T(name) name; | |
776 | ||
777 | wxFOR_ALL_FUNCNAMES(wxDECL_GDIPLUS_FUNC_MEMBER) | |
778 | ||
779 | #undef wxDECL_GDIPLUS_FUNC_MEMBER | |
780 | ||
781 | private: | |
782 | // do load the GDI+ DLL and bind all the functions | |
783 | static bool DoInit(); | |
784 | ||
785 | ||
786 | // initially -1 meaning unknown, set to false or true by Initialize() | |
787 | static int m_initialized; | |
788 | ||
789 | // handle of the GDI+ DLL if we loaded it successfully | |
790 | static wxDllType m_hdll; | |
791 | }; | |
792 | ||
793 | #define wxINIT_GDIPLUS_FUNC(name, params, args) \ | |
794 | wxGDIPLUS_FUNC_T(name) wxGdiPlus::name = NULL; | |
795 | ||
796 | wxFOR_ALL_FUNCNAMES(wxINIT_GDIPLUS_FUNC) | |
797 | ||
798 | #undef wxINIT_GDIPLUS_FUNC | |
799 | ||
800 | int wxGdiPlus::m_initialized = -1; | |
801 | wxDllType wxGdiPlus::m_hdll = 0; | |
802 | ||
803 | /* static */ | |
804 | bool wxGdiPlus::DoInit() | |
805 | { | |
806 | // we're prepared to handler errors so suppress log messages about them | |
807 | wxLogNull noLog; | |
808 | ||
809 | wxDynamicLibrary dllGdip(_T("gdiplus.dll"), wxDL_VERBATIM); | |
810 | if ( !dllGdip.IsLoaded() ) | |
811 | return false; | |
812 | ||
813 | // use RawGetSymbol() for efficiency, we have ~600 functions to load... | |
814 | #define wxDO_LOAD_FUNC(name, namedll) \ | |
815 | name = (wxGDIPLUS_FUNC_T(name))dllGdip.RawGetSymbol(namedll); \ | |
816 | if ( !name ) \ | |
817 | return false; | |
818 | ||
819 | #define wxLOAD_GDIPLUS_FUNC(name, params, args) \ | |
820 | wxDO_LOAD_FUNC(name, _T("Gdiplus") wxSTRINGIZE_T(name)) | |
821 | ||
822 | wxFOR_ALL_GDIPLUS_FUNCNAMES(wxLOAD_GDIPLUS_FUNC) | |
823 | ||
824 | #undef wxLOAD_GDIPLUS_FUNC | |
825 | ||
826 | #define wxLOAD_GDIP_FUNC(name, params, args) \ | |
827 | wxDO_LOAD_FUNC(name, _T("Gdip") wxSTRINGIZE_T(name)) | |
828 | ||
829 | wxFOR_ALL_GDIP_FUNCNAMES(wxLOAD_GDIP_FUNC) | |
830 | ||
831 | #undef wxLOAD_GDIP_FUNC | |
832 | ||
833 | // ok, prevent the DLL from being unloaded right now, we'll do it later | |
834 | m_hdll = dllGdip.Detach(); | |
835 | ||
836 | return true; | |
837 | } | |
838 | ||
839 | // ============================================================================ | |
840 | // module to unload GDI+ DLL on program termination | |
841 | // ============================================================================ | |
842 | ||
843 | class wxGdiPlusModule : public wxModule | |
844 | { | |
845 | public: | |
846 | virtual bool OnInit() { return true; } | |
847 | virtual void OnExit() { wxGdiPlus::Terminate(); } | |
848 | ||
849 | DECLARE_DYNAMIC_CLASS(wxGdiPlusModule) | |
850 | }; | |
851 | ||
852 | IMPLEMENT_DYNAMIC_CLASS(wxGdiPlusModule, wxModule) | |
853 | ||
854 | // ============================================================================ | |
855 | // implementation of the functions themselves | |
856 | // ============================================================================ | |
857 | ||
858 | extern "C" | |
859 | { | |
860 | ||
861 | void* WINGDIPAPI | |
862 | GdipAlloc(size_t size) | |
863 | { | |
864 | return wxGdiPlus::Initialize() ? wxGdiPlus::Alloc(size) : NULL; | |
865 | } | |
866 | ||
867 | void WINGDIPAPI | |
868 | GdipFree(void* ptr) | |
869 | { | |
870 | if ( wxGdiPlus::Initialize() ) | |
871 | wxGdiPlus::Free(ptr); | |
872 | } | |
873 | ||
874 | Status WINAPI | |
875 | GdiplusStartup(ULONG_PTR *token, | |
876 | const GdiplusStartupInput *input, | |
877 | GdiplusStartupOutput *output) | |
878 | { | |
879 | return wxGdiPlus::Initialize() ? wxGdiPlus::Startup(token, input, output) | |
880 | : GdiplusNotInitialized; | |
881 | } | |
882 | ||
883 | void WINAPI | |
884 | GdiplusShutdown(ULONG_PTR token) | |
885 | { | |
886 | if ( wxGdiPlus::IsInitialized() ) | |
887 | wxGdiPlus::Shutdown(token); | |
888 | } | |
889 | ||
890 | #define wxIMPL_GDIPLUS_FUNC(name, params, args) \ | |
891 | GpStatus WINGDIPAPI \ | |
892 | Gdip##name params \ | |
893 | { \ | |
894 | return wxGdiPlus::Initialize() ? wxGdiPlus::name args \ | |
895 | : GdiplusNotInitialized; \ | |
896 | } | |
897 | ||
898 | wxFOR_ALL_GDIPLUS_STATUS_FUNCS(wxIMPL_GDIPLUS_FUNC) | |
899 | ||
900 | #undef wxIMPL_GDIPLUS_FUNC | |
901 | ||
902 | } // extern "C" | |
903 | ||
904 | #endif // wxUSE_GRAPHICS_CONTEXT |