2 * Copyright (C) 2007 Google (Evan Stade)
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include "wine/unicode.h"
39 #include "gdiplus_private.h"
40 #include "wine/debug.h"
41 #include "wine/list.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(gdiplus
);
45 /* looks-right constants */
46 #define ANCHOR_WIDTH (2.0)
47 #define MAX_ITERS (50)
49 /* Converts angle (in degrees) to x/y coordinates */
50 static void deg2xy(REAL angle
, REAL x_0
, REAL y_0
, REAL
*x
, REAL
*y
)
52 REAL radAngle
, hypotenuse
;
54 radAngle
= deg2rad(angle
);
55 hypotenuse
= 50.0; /* arbitrary */
57 *x
= x_0
+ cos(radAngle
) * hypotenuse
;
58 *y
= y_0
+ sin(radAngle
) * hypotenuse
;
61 /* Converts from gdiplus path point type to gdi path point type. */
62 static BYTE
convert_path_point_type(BYTE type
)
66 switch(type
& PathPointTypePathTypeMask
){
67 case PathPointTypeBezier
:
70 case PathPointTypeLine
:
73 case PathPointTypeStart
:
77 ERR("Bad point type\n");
81 if(type
& PathPointTypeCloseSubpath
)
82 ret
|= PT_CLOSEFIGURE
;
87 static INT
prepare_dc(GpGraphics
*graphics
, GpPen
*pen
)
91 INT save_state
= SaveDC(graphics
->hdc
), i
, numdashes
;
93 DWORD dash_array
[MAX_DASHLEN
];
95 EndPath(graphics
->hdc
);
97 if(pen
->unit
== UnitPixel
){
101 /* Get an estimate for the amount the pen width is affected by the world
102 * transform. (This is similar to what some of the wine drivers do.) */
107 GdipTransformMatrixPoints(graphics
->worldtrans
, pt
, 2);
108 width
= sqrt((pt
[1].X
- pt
[0].X
) * (pt
[1].X
- pt
[0].X
) +
109 (pt
[1].Y
- pt
[0].Y
) * (pt
[1].Y
- pt
[0].Y
)) / sqrt(2.0);
111 width
*= pen
->width
* convert_unit(graphics
->hdc
,
112 pen
->unit
== UnitWorld
? graphics
->unit
: pen
->unit
);
115 if(pen
->dash
== DashStyleCustom
){
116 numdashes
= min(pen
->numdashes
, MAX_DASHLEN
);
118 TRACE("dashes are: ");
119 for(i
= 0; i
< numdashes
; i
++){
120 dash_array
[i
] = roundr(width
* pen
->dashes
[i
]);
121 TRACE("%d, ", dash_array
[i
]);
123 TRACE("\n and the pen style is %x\n", pen
->style
);
125 gdipen
= ExtCreatePen(pen
->style
, roundr(width
), &pen
->brush
->lb
,
126 numdashes
, dash_array
);
129 gdipen
= ExtCreatePen(pen
->style
, roundr(width
), &pen
->brush
->lb
, 0, NULL
);
131 SelectObject(graphics
->hdc
, gdipen
);
136 static void restore_dc(GpGraphics
*graphics
, INT state
)
138 DeleteObject(SelectObject(graphics
->hdc
, GetStockObject(NULL_PEN
)));
139 RestoreDC(graphics
->hdc
, state
);
142 /* This helper applies all the changes that the points listed in ptf need in
143 * order to be drawn on the device context. In the end, this should include at
145 * -scaling by page unit
146 * -applying world transformation
147 * -converting from float to int
148 * Native gdiplus uses gdi32 to do all this (via SetMapMode, SetViewportExtEx,
149 * SetWindowExtEx, SetWorldTransform, etc.) but we cannot because we are using
150 * gdi to draw, and these functions would irreparably mess with line widths.
152 static void transform_and_round_points(GpGraphics
*graphics
, POINT
*pti
,
153 GpPointF
*ptf
, INT count
)
159 unitscale
= convert_unit(graphics
->hdc
, graphics
->unit
);
161 /* apply page scale */
162 if(graphics
->unit
!= UnitDisplay
)
163 unitscale
*= graphics
->scale
;
165 GdipCloneMatrix(graphics
->worldtrans
, &matrix
);
166 GdipScaleMatrix(matrix
, unitscale
, unitscale
, MatrixOrderAppend
);
167 GdipTransformMatrixPoints(matrix
, ptf
, count
);
168 GdipDeleteMatrix(matrix
);
170 for(i
= 0; i
< count
; i
++){
171 pti
[i
].x
= roundr(ptf
[i
].X
);
172 pti
[i
].y
= roundr(ptf
[i
].Y
);
176 static ARGB
blend_colors(ARGB start
, ARGB end
, REAL position
)
180 for (i
=0xff; i
<=0xff0000; i
= i
<< 8)
181 result
|= (int)((start
&i
)*(1.0f
- position
)+(end
&i
)*(position
))&i
;
185 static ARGB
blend_line_gradient(GpLineGradient
* brush
, REAL position
)
189 /* clamp to between 0.0 and 1.0, using the wrap mode */
190 if (brush
->wrap
== WrapModeTile
)
192 position
= fmodf(position
, 1.0f
);
193 if (position
< 0.0f
) position
+= 1.0f
;
195 else /* WrapModeFlip* */
197 position
= fmodf(position
, 2.0f
);
198 if (position
< 0.0f
) position
+= 2.0f
;
199 if (position
> 1.0f
) position
= 2.0f
- position
;
202 if (brush
->blendcount
== 1)
207 REAL left_blendpos
, left_blendfac
, right_blendpos
, right_blendfac
;
210 /* locate the blend positions surrounding this position */
211 while (position
> brush
->blendpos
[i
])
214 /* interpolate between the blend positions */
215 left_blendpos
= brush
->blendpos
[i
-1];
216 left_blendfac
= brush
->blendfac
[i
-1];
217 right_blendpos
= brush
->blendpos
[i
];
218 right_blendfac
= brush
->blendfac
[i
];
219 range
= right_blendpos
- left_blendpos
;
220 blendfac
= (left_blendfac
* (right_blendpos
- position
) +
221 right_blendfac
* (position
- left_blendpos
)) / range
;
224 if (brush
->pblendcount
== 0)
225 return blend_colors(brush
->startcolor
, brush
->endcolor
, blendfac
);
229 ARGB left_blendcolor
, right_blendcolor
;
230 REAL left_blendpos
, right_blendpos
;
232 /* locate the blend colors surrounding this position */
233 while (blendfac
> brush
->pblendpos
[i
])
236 /* interpolate between the blend colors */
237 left_blendpos
= brush
->pblendpos
[i
-1];
238 left_blendcolor
= brush
->pblendcolor
[i
-1];
239 right_blendpos
= brush
->pblendpos
[i
];
240 right_blendcolor
= brush
->pblendcolor
[i
];
241 blendfac
= (blendfac
- left_blendpos
) / (right_blendpos
- left_blendpos
);
242 return blend_colors(left_blendcolor
, right_blendcolor
, blendfac
);
246 static void brush_fill_path(GpGraphics
*graphics
, GpBrush
* brush
)
250 case BrushTypeLinearGradient
:
252 GpLineGradient
*line
= (GpLineGradient
*)brush
;
255 SelectClipPath(graphics
->hdc
, RGN_AND
);
256 if (GetClipBox(graphics
->hdc
, &rc
) != NULLREGION
)
258 GpPointF endpointsf
[2];
262 SelectObject(graphics
->hdc
, GetStockObject(NULL_PEN
));
264 endpointsf
[0] = line
->startpoint
;
265 endpointsf
[1] = line
->endpoint
;
266 transform_and_round_points(graphics
, endpointsi
, endpointsf
, 2);
268 if (abs(endpointsi
[0].x
-endpointsi
[1].x
) > abs(endpointsi
[0].y
-endpointsi
[1].y
))
270 /* vertical-ish gradient */
271 int startx
, endx
; /* x co-ordinates of endpoints shifted to intersect the top of the visible rectangle */
272 int startbottomx
; /* x co-ordinate of start point shifted to intersect the bottom of the visible rectangle */
275 HBRUSH hbrush
, hprevbrush
;
276 int leftx
, rightx
; /* x co-ordinates where the leftmost and rightmost gradient lines hit the top of the visible rectangle */
278 int tilt
; /* horizontal distance covered by a gradient line */
280 startx
= roundr((rc
.top
- endpointsf
[0].Y
) * (endpointsf
[1].Y
- endpointsf
[0].Y
) / (endpointsf
[0].X
- endpointsf
[1].X
) + endpointsf
[0].X
);
281 endx
= roundr((rc
.top
- endpointsf
[1].Y
) * (endpointsf
[1].Y
- endpointsf
[0].Y
) / (endpointsf
[0].X
- endpointsf
[1].X
) + endpointsf
[1].X
);
282 width
= endx
- startx
;
283 startbottomx
= roundr((rc
.bottom
- endpointsf
[0].Y
) * (endpointsf
[1].Y
- endpointsf
[0].Y
) / (endpointsf
[0].X
- endpointsf
[1].X
) + endpointsf
[0].X
);
284 tilt
= startx
- startbottomx
;
286 if (startx
>= startbottomx
)
289 rightx
= rc
.right
+ tilt
;
293 leftx
= rc
.left
+ tilt
;
297 poly
[0].y
= rc
.bottom
;
300 poly
[3].y
= rc
.bottom
;
302 for (x
=leftx
; x
<=rightx
; x
++)
304 ARGB argb
= blend_line_gradient(line
, (x
-startx
)/(REAL
)width
);
305 col
= ARGB2COLORREF(argb
);
306 hbrush
= CreateSolidBrush(col
);
307 hprevbrush
= SelectObject(graphics
->hdc
, hbrush
);
308 poly
[0].x
= x
- tilt
- 1;
311 poly
[3].x
= x
- tilt
;
312 Polygon(graphics
->hdc
, poly
, 4);
313 SelectObject(graphics
->hdc
, hprevbrush
);
314 DeleteObject(hbrush
);
317 else if (endpointsi
[0].y
!= endpointsi
[1].y
)
319 /* horizontal-ish gradient */
320 int starty
, endy
; /* y co-ordinates of endpoints shifted to intersect the left of the visible rectangle */
321 int startrighty
; /* y co-ordinate of start point shifted to intersect the right of the visible rectangle */
324 HBRUSH hbrush
, hprevbrush
;
325 int topy
, bottomy
; /* y co-ordinates where the topmost and bottommost gradient lines hit the left of the visible rectangle */
327 int tilt
; /* vertical distance covered by a gradient line */
329 starty
= roundr((rc
.left
- endpointsf
[0].X
) * (endpointsf
[0].X
- endpointsf
[1].X
) / (endpointsf
[1].Y
- endpointsf
[0].Y
) + endpointsf
[0].Y
);
330 endy
= roundr((rc
.left
- endpointsf
[1].X
) * (endpointsf
[0].X
- endpointsf
[1].X
) / (endpointsf
[1].Y
- endpointsf
[0].Y
) + endpointsf
[1].Y
);
331 height
= endy
- starty
;
332 startrighty
= roundr((rc
.right
- endpointsf
[0].X
) * (endpointsf
[0].X
- endpointsf
[1].X
) / (endpointsf
[1].Y
- endpointsf
[0].Y
) + endpointsf
[0].Y
);
333 tilt
= starty
- startrighty
;
335 if (starty
>= startrighty
)
338 bottomy
= rc
.bottom
+ tilt
;
342 topy
= rc
.top
+ tilt
;
346 poly
[0].x
= rc
.right
;
349 poly
[3].x
= rc
.right
;
351 for (y
=topy
; y
<=bottomy
; y
++)
353 ARGB argb
= blend_line_gradient(line
, (y
-starty
)/(REAL
)height
);
354 col
= ARGB2COLORREF(argb
);
355 hbrush
= CreateSolidBrush(col
);
356 hprevbrush
= SelectObject(graphics
->hdc
, hbrush
);
357 poly
[0].y
= y
- tilt
- 1;
360 poly
[3].y
= y
- tilt
;
361 Polygon(graphics
->hdc
, poly
, 4);
362 SelectObject(graphics
->hdc
, hprevbrush
);
363 DeleteObject(hbrush
);
366 /* else startpoint == endpoint */
370 case BrushTypeSolidColor
:
372 GpSolidFill
*fill
= (GpSolidFill
*)brush
;
376 /* partially transparent fill */
378 SelectClipPath(graphics
->hdc
, RGN_AND
);
379 if (GetClipBox(graphics
->hdc
, &rc
) != NULLREGION
)
381 HDC hdc
= CreateCompatibleDC(NULL
);
387 oldbmp
= SelectObject(hdc
, fill
->bmp
);
389 bf
.BlendOp
= AC_SRC_OVER
;
391 bf
.SourceConstantAlpha
= 255;
392 bf
.AlphaFormat
= AC_SRC_ALPHA
;
394 GdiAlphaBlend(graphics
->hdc
, rc
.left
, rc
.top
, rc
.right
-rc
.left
, rc
.bottom
-rc
.top
, hdc
, 0, 0, 1, 1, bf
);
396 SelectObject(hdc
, oldbmp
);
402 /* else fall through */
405 SelectObject(graphics
->hdc
, brush
->gdibrush
);
406 FillPath(graphics
->hdc
);
411 /* GdipDrawPie/GdipFillPie helper function */
412 static void draw_pie(GpGraphics
*graphics
, REAL x
, REAL y
, REAL width
,
413 REAL height
, REAL startAngle
, REAL sweepAngle
)
420 ptf
[1].X
= x
+ width
;
421 ptf
[1].Y
= y
+ height
;
423 deg2xy(startAngle
+sweepAngle
, x
+ width
/ 2.0, y
+ width
/ 2.0, &ptf
[2].X
, &ptf
[2].Y
);
424 deg2xy(startAngle
, x
+ width
/ 2.0, y
+ width
/ 2.0, &ptf
[3].X
, &ptf
[3].Y
);
426 transform_and_round_points(graphics
, pti
, ptf
, 4);
428 Pie(graphics
->hdc
, pti
[0].x
, pti
[0].y
, pti
[1].x
, pti
[1].y
, pti
[2].x
,
429 pti
[2].y
, pti
[3].x
, pti
[3].y
);
432 /* Draws the linecap the specified color and size on the hdc. The linecap is in
433 * direction of the line from x1, y1 to x2, y2 and is anchored on x2, y2. Probably
434 * should not be called on an hdc that has a path you care about. */
435 static void draw_cap(GpGraphics
*graphics
, COLORREF color
, GpLineCap cap
, REAL size
,
436 const GpCustomLineCap
*custom
, REAL x1
, REAL y1
, REAL x2
, REAL y2
)
438 HGDIOBJ oldbrush
= NULL
, oldpen
= NULL
;
439 GpMatrix
*matrix
= NULL
;
442 PointF ptf
[4], *custptf
= NULL
;
443 POINT pt
[4], *custpt
= NULL
;
445 REAL theta
, dsmall
, dbig
, dx
, dy
= 0.0;
450 if((x1
== x2
) && (y1
== y2
))
453 theta
= gdiplus_atan2(y2
- y1
, x2
- x1
);
455 customstroke
= (cap
== LineCapCustom
) && custom
&& (!custom
->fill
);
457 brush
= CreateSolidBrush(color
);
458 lb
.lbStyle
= BS_SOLID
;
461 pen
= ExtCreatePen(PS_GEOMETRIC
| PS_SOLID
| PS_ENDCAP_FLAT
|
462 PS_JOIN_MITER
, 1, &lb
, 0,
464 oldbrush
= SelectObject(graphics
->hdc
, brush
);
465 oldpen
= SelectObject(graphics
->hdc
, pen
);
472 case LineCapSquareAnchor
:
473 case LineCapDiamondAnchor
:
474 size
= size
* (cap
& LineCapNoAnchor
? ANCHOR_WIDTH
: 1.0) / 2.0;
475 if(cap
== LineCapDiamondAnchor
){
476 dsmall
= cos(theta
+ M_PI_2
) * size
;
477 dbig
= sin(theta
+ M_PI_2
) * size
;
480 dsmall
= cos(theta
+ M_PI_4
) * size
;
481 dbig
= sin(theta
+ M_PI_4
) * size
;
484 ptf
[0].X
= x2
- dsmall
;
485 ptf
[1].X
= x2
+ dbig
;
487 ptf
[0].Y
= y2
- dbig
;
488 ptf
[3].Y
= y2
+ dsmall
;
490 ptf
[1].Y
= y2
- dsmall
;
491 ptf
[2].Y
= y2
+ dbig
;
493 ptf
[3].X
= x2
- dbig
;
494 ptf
[2].X
= x2
+ dsmall
;
496 transform_and_round_points(graphics
, pt
, ptf
, 4);
497 Polygon(graphics
->hdc
, pt
, 4);
500 case LineCapArrowAnchor
:
501 size
= size
* 4.0 / sqrt(3.0);
503 dx
= cos(M_PI
/ 6.0 + theta
) * size
;
504 dy
= sin(M_PI
/ 6.0 + theta
) * size
;
509 dx
= cos(- M_PI
/ 6.0 + theta
) * size
;
510 dy
= sin(- M_PI
/ 6.0 + theta
) * size
;
518 transform_and_round_points(graphics
, pt
, ptf
, 3);
519 Polygon(graphics
->hdc
, pt
, 3);
522 case LineCapRoundAnchor
:
523 dx
= dy
= ANCHOR_WIDTH
* size
/ 2.0;
530 transform_and_round_points(graphics
, pt
, ptf
, 2);
531 Ellipse(graphics
->hdc
, pt
[0].x
, pt
[0].y
, pt
[1].x
, pt
[1].y
);
534 case LineCapTriangle
:
536 dx
= cos(M_PI_2
+ theta
) * size
;
537 dy
= sin(M_PI_2
+ theta
) * size
;
544 dx
= cos(theta
) * size
;
545 dy
= sin(theta
) * size
;
550 transform_and_round_points(graphics
, pt
, ptf
, 3);
551 Polygon(graphics
->hdc
, pt
, 3);
555 dx
= dy
= size
/ 2.0;
562 dx
= -cos(M_PI_2
+ theta
) * size
;
563 dy
= -sin(M_PI_2
+ theta
) * size
;
570 transform_and_round_points(graphics
, pt
, ptf
, 4);
571 Pie(graphics
->hdc
, pt
[0].x
, pt
[0].y
, pt
[1].x
, pt
[1].y
, pt
[2].x
,
572 pt
[2].y
, pt
[3].x
, pt
[3].y
);
579 count
= custom
->pathdata
.Count
;
580 custptf
= GdipAlloc(count
* sizeof(PointF
));
581 custpt
= GdipAlloc(count
* sizeof(POINT
));
582 tp
= GdipAlloc(count
);
584 if(!custptf
|| !custpt
|| !tp
|| (GdipCreateMatrix(&matrix
) != Ok
))
587 memcpy(custptf
, custom
->pathdata
.Points
, count
* sizeof(PointF
));
589 GdipScaleMatrix(matrix
, size
, size
, MatrixOrderAppend
);
590 GdipRotateMatrix(matrix
, (180.0 / M_PI
) * (theta
- M_PI_2
),
592 GdipTranslateMatrix(matrix
, x2
, y2
, MatrixOrderAppend
);
593 GdipTransformMatrixPoints(matrix
, custptf
, count
);
595 transform_and_round_points(graphics
, custpt
, custptf
, count
);
597 for(i
= 0; i
< count
; i
++)
598 tp
[i
] = convert_path_point_type(custom
->pathdata
.Types
[i
]);
601 BeginPath(graphics
->hdc
);
602 PolyDraw(graphics
->hdc
, custpt
, tp
, count
);
603 EndPath(graphics
->hdc
);
604 StrokeAndFillPath(graphics
->hdc
);
607 PolyDraw(graphics
->hdc
, custpt
, tp
, count
);
613 GdipDeleteMatrix(matrix
);
620 SelectObject(graphics
->hdc
, oldbrush
);
621 SelectObject(graphics
->hdc
, oldpen
);
627 /* Shortens the line by the given percent by changing x2, y2.
628 * If percent is > 1.0 then the line will change direction.
629 * If percent is negative it can lengthen the line. */
630 static void shorten_line_percent(REAL x1
, REAL y1
, REAL
*x2
, REAL
*y2
, REAL percent
)
632 REAL dist
, theta
, dx
, dy
;
634 if((y1
== *y2
) && (x1
== *x2
))
637 dist
= sqrt((*x2
- x1
) * (*x2
- x1
) + (*y2
- y1
) * (*y2
- y1
)) * -percent
;
638 theta
= gdiplus_atan2((*y2
- y1
), (*x2
- x1
));
639 dx
= cos(theta
) * dist
;
640 dy
= sin(theta
) * dist
;
646 /* Shortens the line by the given amount by changing x2, y2.
647 * If the amount is greater than the distance, the line will become length 0.
648 * If the amount is negative, it can lengthen the line. */
649 static void shorten_line_amt(REAL x1
, REAL y1
, REAL
*x2
, REAL
*y2
, REAL amt
)
651 REAL dx
, dy
, percent
;
655 if(dx
== 0 && dy
== 0)
658 percent
= amt
/ sqrt(dx
* dx
+ dy
* dy
);
665 shorten_line_percent(x1
, y1
, x2
, y2
, percent
);
668 /* Draws lines between the given points, and if caps is true then draws an endcap
669 * at the end of the last line. */
670 static GpStatus
draw_polyline(GpGraphics
*graphics
, GpPen
*pen
,
671 GDIPCONST GpPointF
* pt
, INT count
, BOOL caps
)
674 GpPointF
*ptcopy
= NULL
;
675 GpStatus status
= GenericError
;
680 pti
= GdipAlloc(count
* sizeof(POINT
));
681 ptcopy
= GdipAlloc(count
* sizeof(GpPointF
));
684 status
= OutOfMemory
;
688 memcpy(ptcopy
, pt
, count
* sizeof(GpPointF
));
691 if(pen
->endcap
== LineCapArrowAnchor
)
692 shorten_line_amt(ptcopy
[count
-2].X
, ptcopy
[count
-2].Y
,
693 &ptcopy
[count
-1].X
, &ptcopy
[count
-1].Y
, pen
->width
);
694 else if((pen
->endcap
== LineCapCustom
) && pen
->customend
)
695 shorten_line_amt(ptcopy
[count
-2].X
, ptcopy
[count
-2].Y
,
696 &ptcopy
[count
-1].X
, &ptcopy
[count
-1].Y
,
697 pen
->customend
->inset
* pen
->width
);
699 if(pen
->startcap
== LineCapArrowAnchor
)
700 shorten_line_amt(ptcopy
[1].X
, ptcopy
[1].Y
,
701 &ptcopy
[0].X
, &ptcopy
[0].Y
, pen
->width
);
702 else if((pen
->startcap
== LineCapCustom
) && pen
->customstart
)
703 shorten_line_amt(ptcopy
[1].X
, ptcopy
[1].Y
,
704 &ptcopy
[0].X
, &ptcopy
[0].Y
,
705 pen
->customstart
->inset
* pen
->width
);
707 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->endcap
, pen
->width
, pen
->customend
,
708 pt
[count
- 2].X
, pt
[count
- 2].Y
, pt
[count
- 1].X
, pt
[count
- 1].Y
);
709 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->startcap
, pen
->width
, pen
->customstart
,
710 pt
[1].X
, pt
[1].Y
, pt
[0].X
, pt
[0].Y
);
713 transform_and_round_points(graphics
, pti
, ptcopy
, count
);
715 if(Polyline(graphics
->hdc
, pti
, count
))
725 /* Conducts a linear search to find the bezier points that will back off
726 * the endpoint of the curve by a distance of amt. Linear search works
727 * better than binary in this case because there are multiple solutions,
728 * and binary searches often find a bad one. I don't think this is what
729 * Windows does but short of rendering the bezier without GDI's help it's
730 * the best we can do. If rev then work from the start of the passed points
731 * instead of the end. */
732 static void shorten_bezier_amt(GpPointF
* pt
, REAL amt
, BOOL rev
)
735 REAL percent
= 0.00, dx
, dy
, origx
, origy
, diff
= -1.0;
736 INT i
, first
= 0, second
= 1, third
= 2, fourth
= 3;
745 origx
= pt
[fourth
].X
;
746 origy
= pt
[fourth
].Y
;
747 memcpy(origpt
, pt
, sizeof(GpPointF
) * 4);
749 for(i
= 0; (i
< MAX_ITERS
) && (diff
< amt
); i
++){
750 /* reset bezier points to original values */
751 memcpy(pt
, origpt
, sizeof(GpPointF
) * 4);
752 /* Perform magic on bezier points. Order is important here.*/
753 shorten_line_percent(pt
[third
].X
, pt
[third
].Y
, &pt
[fourth
].X
, &pt
[fourth
].Y
, percent
);
754 shorten_line_percent(pt
[second
].X
, pt
[second
].Y
, &pt
[third
].X
, &pt
[third
].Y
, percent
);
755 shorten_line_percent(pt
[third
].X
, pt
[third
].Y
, &pt
[fourth
].X
, &pt
[fourth
].Y
, percent
);
756 shorten_line_percent(pt
[first
].X
, pt
[first
].Y
, &pt
[second
].X
, &pt
[second
].Y
, percent
);
757 shorten_line_percent(pt
[second
].X
, pt
[second
].Y
, &pt
[third
].X
, &pt
[third
].Y
, percent
);
758 shorten_line_percent(pt
[third
].X
, pt
[third
].Y
, &pt
[fourth
].X
, &pt
[fourth
].Y
, percent
);
760 dx
= pt
[fourth
].X
- origx
;
761 dy
= pt
[fourth
].Y
- origy
;
763 diff
= sqrt(dx
* dx
+ dy
* dy
);
764 percent
+= 0.0005 * amt
;
768 /* Draws bezier curves between given points, and if caps is true then draws an
769 * endcap at the end of the last line. */
770 static GpStatus
draw_polybezier(GpGraphics
*graphics
, GpPen
*pen
,
771 GDIPCONST GpPointF
* pt
, INT count
, BOOL caps
)
775 GpStatus status
= GenericError
;
780 pti
= GdipAlloc(count
* sizeof(POINT
));
781 ptcopy
= GdipAlloc(count
* sizeof(GpPointF
));
784 status
= OutOfMemory
;
788 memcpy(ptcopy
, pt
, count
* sizeof(GpPointF
));
791 if(pen
->endcap
== LineCapArrowAnchor
)
792 shorten_bezier_amt(&ptcopy
[count
-4], pen
->width
, FALSE
);
793 else if((pen
->endcap
== LineCapCustom
) && pen
->customend
)
794 shorten_bezier_amt(&ptcopy
[count
-4], pen
->width
* pen
->customend
->inset
,
797 if(pen
->startcap
== LineCapArrowAnchor
)
798 shorten_bezier_amt(ptcopy
, pen
->width
, TRUE
);
799 else if((pen
->startcap
== LineCapCustom
) && pen
->customstart
)
800 shorten_bezier_amt(ptcopy
, pen
->width
* pen
->customstart
->inset
, TRUE
);
802 /* the direction of the line cap is parallel to the direction at the
803 * end of the bezier (which, if it has been shortened, is not the same
804 * as the direction from pt[count-2] to pt[count-1]) */
805 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->endcap
, pen
->width
, pen
->customend
,
806 pt
[count
- 1].X
- (ptcopy
[count
- 1].X
- ptcopy
[count
- 2].X
),
807 pt
[count
- 1].Y
- (ptcopy
[count
- 1].Y
- ptcopy
[count
- 2].Y
),
808 pt
[count
- 1].X
, pt
[count
- 1].Y
);
810 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->startcap
, pen
->width
, pen
->customstart
,
811 pt
[0].X
- (ptcopy
[0].X
- ptcopy
[1].X
),
812 pt
[0].Y
- (ptcopy
[0].Y
- ptcopy
[1].Y
), pt
[0].X
, pt
[0].Y
);
815 transform_and_round_points(graphics
, pti
, ptcopy
, count
);
817 PolyBezier(graphics
->hdc
, pti
, count
);
828 /* Draws a combination of bezier curves and lines between points. */
829 static GpStatus
draw_poly(GpGraphics
*graphics
, GpPen
*pen
, GDIPCONST GpPointF
* pt
,
830 GDIPCONST BYTE
* types
, INT count
, BOOL caps
)
832 POINT
*pti
= GdipAlloc(count
* sizeof(POINT
));
833 BYTE
*tp
= GdipAlloc(count
);
834 GpPointF
*ptcopy
= GdipAlloc(count
* sizeof(GpPointF
));
836 GpStatus status
= GenericError
;
842 if(!pti
|| !tp
|| !ptcopy
){
843 status
= OutOfMemory
;
847 for(i
= 1; i
< count
; i
++){
848 if((types
[i
] & PathPointTypePathTypeMask
) == PathPointTypeBezier
){
849 if((i
+ 2 >= count
) || !(types
[i
+ 1] & PathPointTypeBezier
)
850 || !(types
[i
+ 1] & PathPointTypeBezier
)){
851 ERR("Bad bezier points\n");
858 memcpy(ptcopy
, pt
, count
* sizeof(GpPointF
));
860 /* If we are drawing caps, go through the points and adjust them accordingly,
861 * and draw the caps. */
863 switch(types
[count
- 1] & PathPointTypePathTypeMask
){
864 case PathPointTypeBezier
:
865 if(pen
->endcap
== LineCapArrowAnchor
)
866 shorten_bezier_amt(&ptcopy
[count
- 4], pen
->width
, FALSE
);
867 else if((pen
->endcap
== LineCapCustom
) && pen
->customend
)
868 shorten_bezier_amt(&ptcopy
[count
- 4],
869 pen
->width
* pen
->customend
->inset
, FALSE
);
871 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->endcap
, pen
->width
, pen
->customend
,
872 pt
[count
- 1].X
- (ptcopy
[count
- 1].X
- ptcopy
[count
- 2].X
),
873 pt
[count
- 1].Y
- (ptcopy
[count
- 1].Y
- ptcopy
[count
- 2].Y
),
874 pt
[count
- 1].X
, pt
[count
- 1].Y
);
877 case PathPointTypeLine
:
878 if(pen
->endcap
== LineCapArrowAnchor
)
879 shorten_line_amt(ptcopy
[count
- 2].X
, ptcopy
[count
- 2].Y
,
880 &ptcopy
[count
- 1].X
, &ptcopy
[count
- 1].Y
,
882 else if((pen
->endcap
== LineCapCustom
) && pen
->customend
)
883 shorten_line_amt(ptcopy
[count
- 2].X
, ptcopy
[count
- 2].Y
,
884 &ptcopy
[count
- 1].X
, &ptcopy
[count
- 1].Y
,
885 pen
->customend
->inset
* pen
->width
);
887 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->endcap
, pen
->width
, pen
->customend
,
888 pt
[count
- 2].X
, pt
[count
- 2].Y
, pt
[count
- 1].X
,
893 ERR("Bad path last point\n");
897 /* Find start of points */
898 for(j
= 1; j
< count
&& ((types
[j
] & PathPointTypePathTypeMask
)
899 == PathPointTypeStart
); j
++);
901 switch(types
[j
] & PathPointTypePathTypeMask
){
902 case PathPointTypeBezier
:
903 if(pen
->startcap
== LineCapArrowAnchor
)
904 shorten_bezier_amt(&ptcopy
[j
- 1], pen
->width
, TRUE
);
905 else if((pen
->startcap
== LineCapCustom
) && pen
->customstart
)
906 shorten_bezier_amt(&ptcopy
[j
- 1],
907 pen
->width
* pen
->customstart
->inset
, TRUE
);
909 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->startcap
, pen
->width
, pen
->customstart
,
910 pt
[j
- 1].X
- (ptcopy
[j
- 1].X
- ptcopy
[j
].X
),
911 pt
[j
- 1].Y
- (ptcopy
[j
- 1].Y
- ptcopy
[j
].Y
),
912 pt
[j
- 1].X
, pt
[j
- 1].Y
);
915 case PathPointTypeLine
:
916 if(pen
->startcap
== LineCapArrowAnchor
)
917 shorten_line_amt(ptcopy
[j
].X
, ptcopy
[j
].Y
,
918 &ptcopy
[j
- 1].X
, &ptcopy
[j
- 1].Y
,
920 else if((pen
->startcap
== LineCapCustom
) && pen
->customstart
)
921 shorten_line_amt(ptcopy
[j
].X
, ptcopy
[j
].Y
,
922 &ptcopy
[j
- 1].X
, &ptcopy
[j
- 1].Y
,
923 pen
->customstart
->inset
* pen
->width
);
925 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->startcap
, pen
->width
, pen
->customstart
,
926 pt
[j
].X
, pt
[j
].Y
, pt
[j
- 1].X
,
931 ERR("Bad path points\n");
936 transform_and_round_points(graphics
, pti
, ptcopy
, count
);
938 for(i
= 0; i
< count
; i
++){
939 tp
[i
] = convert_path_point_type(types
[i
]);
942 PolyDraw(graphics
->hdc
, pti
, tp
, count
);
954 GpStatus
trace_path(GpGraphics
*graphics
, GpPath
*path
)
958 BeginPath(graphics
->hdc
);
959 result
= draw_poly(graphics
, NULL
, path
->pathdata
.Points
,
960 path
->pathdata
.Types
, path
->pathdata
.Count
, FALSE
);
961 EndPath(graphics
->hdc
);
965 typedef struct _GraphicsContainerItem
{
967 GraphicsContainer contid
;
969 SmoothingMode smoothing
;
970 CompositingQuality compqual
;
971 InterpolationMode interpolation
;
972 CompositingMode compmode
;
973 TextRenderingHint texthint
;
976 PixelOffsetMode pixeloffset
;
978 GpMatrix
* worldtrans
;
980 } GraphicsContainerItem
;
982 static GpStatus
init_container(GraphicsContainerItem
** container
,
983 GDIPCONST GpGraphics
* graphics
){
986 *container
= GdipAlloc(sizeof(GraphicsContainerItem
));
990 (*container
)->contid
= graphics
->contid
+ 1;
992 (*container
)->smoothing
= graphics
->smoothing
;
993 (*container
)->compqual
= graphics
->compqual
;
994 (*container
)->interpolation
= graphics
->interpolation
;
995 (*container
)->compmode
= graphics
->compmode
;
996 (*container
)->texthint
= graphics
->texthint
;
997 (*container
)->scale
= graphics
->scale
;
998 (*container
)->unit
= graphics
->unit
;
999 (*container
)->textcontrast
= graphics
->textcontrast
;
1000 (*container
)->pixeloffset
= graphics
->pixeloffset
;
1002 sts
= GdipCloneMatrix(graphics
->worldtrans
, &(*container
)->worldtrans
);
1004 GdipFree(*container
);
1009 sts
= GdipCloneRegion(graphics
->clip
, &(*container
)->clip
);
1011 GdipDeleteMatrix((*container
)->worldtrans
);
1012 GdipFree(*container
);
1020 static void delete_container(GraphicsContainerItem
* container
){
1021 GdipDeleteMatrix(container
->worldtrans
);
1022 GdipDeleteRegion(container
->clip
);
1023 GdipFree(container
);
1026 static GpStatus
restore_container(GpGraphics
* graphics
,
1027 GDIPCONST GraphicsContainerItem
* container
){
1032 sts
= GdipCloneMatrix(container
->worldtrans
, &newTrans
);
1036 sts
= GdipCloneRegion(container
->clip
, &newClip
);
1038 GdipDeleteMatrix(newTrans
);
1042 GdipDeleteMatrix(graphics
->worldtrans
);
1043 graphics
->worldtrans
= newTrans
;
1045 GdipDeleteRegion(graphics
->clip
);
1046 graphics
->clip
= newClip
;
1048 graphics
->contid
= container
->contid
- 1;
1050 graphics
->smoothing
= container
->smoothing
;
1051 graphics
->compqual
= container
->compqual
;
1052 graphics
->interpolation
= container
->interpolation
;
1053 graphics
->compmode
= container
->compmode
;
1054 graphics
->texthint
= container
->texthint
;
1055 graphics
->scale
= container
->scale
;
1056 graphics
->unit
= container
->unit
;
1057 graphics
->textcontrast
= container
->textcontrast
;
1058 graphics
->pixeloffset
= container
->pixeloffset
;
1063 static GpStatus
get_graphics_bounds(GpGraphics
* graphics
, GpRectF
* rect
)
1067 if(graphics
->hwnd
) {
1068 if(!GetClientRect(graphics
->hwnd
, &wnd_rect
))
1069 return GenericError
;
1071 rect
->X
= wnd_rect
.left
;
1072 rect
->Y
= wnd_rect
.top
;
1073 rect
->Width
= wnd_rect
.right
- wnd_rect
.left
;
1074 rect
->Height
= wnd_rect
.bottom
- wnd_rect
.top
;
1078 rect
->Width
= GetDeviceCaps(graphics
->hdc
, HORZRES
);
1079 rect
->Height
= GetDeviceCaps(graphics
->hdc
, VERTRES
);
1085 /* on success, rgn will contain the region of the graphics object which
1086 * is visible after clipping has been applied */
1087 static GpStatus
get_visible_clip_region(GpGraphics
*graphics
, GpRegion
*rgn
)
1093 if((stat
= get_graphics_bounds(graphics
, &rectf
)) != Ok
)
1096 if((stat
= GdipCreateRegion(&tmp
)) != Ok
)
1099 if((stat
= GdipCombineRegionRect(tmp
, &rectf
, CombineModeReplace
)) != Ok
)
1102 if((stat
= GdipCombineRegionRegion(tmp
, graphics
->clip
, CombineModeIntersect
)) != Ok
)
1105 stat
= GdipCombineRegionRegion(rgn
, tmp
, CombineModeReplace
);
1108 GdipDeleteRegion(tmp
);
1112 GpStatus WINGDIPAPI
GdipCreateFromHDC(HDC hdc
, GpGraphics
**graphics
)
1114 TRACE("(%p, %p)\n", hdc
, graphics
);
1116 return GdipCreateFromHDC2(hdc
, NULL
, graphics
);
1119 GpStatus WINGDIPAPI
GdipCreateFromHDC2(HDC hdc
, HANDLE hDevice
, GpGraphics
**graphics
)
1123 TRACE("(%p, %p, %p)\n", hdc
, hDevice
, graphics
);
1125 if(hDevice
!= NULL
) {
1126 FIXME("Don't know how to handle parameter hDevice\n");
1127 return NotImplemented
;
1133 if(graphics
== NULL
)
1134 return InvalidParameter
;
1136 *graphics
= GdipAlloc(sizeof(GpGraphics
));
1137 if(!*graphics
) return OutOfMemory
;
1139 if((retval
= GdipCreateMatrix(&(*graphics
)->worldtrans
)) != Ok
){
1140 GdipFree(*graphics
);
1144 if((retval
= GdipCreateRegion(&(*graphics
)->clip
)) != Ok
){
1145 GdipFree((*graphics
)->worldtrans
);
1146 GdipFree(*graphics
);
1150 (*graphics
)->hdc
= hdc
;
1151 (*graphics
)->hwnd
= WindowFromDC(hdc
);
1152 (*graphics
)->owndc
= FALSE
;
1153 (*graphics
)->smoothing
= SmoothingModeDefault
;
1154 (*graphics
)->compqual
= CompositingQualityDefault
;
1155 (*graphics
)->interpolation
= InterpolationModeDefault
;
1156 (*graphics
)->pixeloffset
= PixelOffsetModeDefault
;
1157 (*graphics
)->compmode
= CompositingModeSourceOver
;
1158 (*graphics
)->unit
= UnitDisplay
;
1159 (*graphics
)->scale
= 1.0;
1160 (*graphics
)->busy
= FALSE
;
1161 (*graphics
)->textcontrast
= 4;
1162 list_init(&(*graphics
)->containers
);
1163 (*graphics
)->contid
= 0;
1165 TRACE("<-- %p\n", *graphics
);
1170 GpStatus WINGDIPAPI
GdipCreateFromHWND(HWND hwnd
, GpGraphics
**graphics
)
1175 TRACE("(%p, %p)\n", hwnd
, graphics
);
1179 if((ret
= GdipCreateFromHDC(hdc
, graphics
)) != Ok
)
1181 ReleaseDC(hwnd
, hdc
);
1185 (*graphics
)->hwnd
= hwnd
;
1186 (*graphics
)->owndc
= TRUE
;
1191 /* FIXME: no icm handling */
1192 GpStatus WINGDIPAPI
GdipCreateFromHWNDICM(HWND hwnd
, GpGraphics
**graphics
)
1194 TRACE("(%p, %p)\n", hwnd
, graphics
);
1196 return GdipCreateFromHWND(hwnd
, graphics
);
1199 GpStatus WINGDIPAPI
GdipCreateMetafileFromEmf(HENHMETAFILE hemf
, BOOL
delete,
1200 GpMetafile
**metafile
)
1204 TRACE("(%p,%i,%p)\n", hemf
, delete, metafile
);
1206 if(!hemf
|| !metafile
)
1207 return InvalidParameter
;
1210 FIXME("not implemented\n");
1212 return NotImplemented
;
1215 GpStatus WINGDIPAPI
GdipCreateMetafileFromWmf(HMETAFILE hwmf
, BOOL
delete,
1216 GDIPCONST WmfPlaceableFileHeader
* placeable
, GpMetafile
**metafile
)
1218 IStream
*stream
= NULL
;
1222 GpStatus retval
= Ok
;
1224 TRACE("(%p, %d, %p, %p)\n", hwmf
, delete, placeable
, metafile
);
1226 if(!hwmf
|| !metafile
|| !placeable
)
1227 return InvalidParameter
;
1230 read
= GetMetaFileBitsEx(hwmf
, 0, NULL
);
1232 return GenericError
;
1233 copy
= GdipAlloc(read
);
1234 GetMetaFileBitsEx(hwmf
, read
, copy
);
1236 hemf
= SetWinMetaFileBits(read
, copy
, NULL
, NULL
);
1239 read
= GetEnhMetaFileBits(hemf
, 0, NULL
);
1240 copy
= GdipAlloc(read
);
1241 GetEnhMetaFileBits(hemf
, read
, copy
);
1242 DeleteEnhMetaFile(hemf
);
1244 if(CreateStreamOnHGlobal(copy
, TRUE
, &stream
) != S_OK
){
1245 ERR("could not make stream\n");
1247 retval
= GenericError
;
1251 *metafile
= GdipAlloc(sizeof(GpMetafile
));
1253 retval
= OutOfMemory
;
1257 if(OleLoadPicture(stream
, 0, FALSE
, &IID_IPicture
,
1258 (LPVOID
*) &((*metafile
)->image
.picture
)) != S_OK
)
1260 retval
= GenericError
;
1265 (*metafile
)->image
.type
= ImageTypeMetafile
;
1266 memcpy(&(*metafile
)->image
.format
, &ImageFormatWMF
, sizeof(GUID
));
1267 (*metafile
)->image
.palette_flags
= 0;
1268 (*metafile
)->image
.palette_count
= 0;
1269 (*metafile
)->image
.palette_size
= 0;
1270 (*metafile
)->image
.palette_entries
= NULL
;
1271 (*metafile
)->image
.xres
= (REAL
)placeable
->Inch
;
1272 (*metafile
)->image
.yres
= (REAL
)placeable
->Inch
;
1273 (*metafile
)->bounds
.X
= ((REAL
) placeable
->BoundingBox
.Left
) / ((REAL
) placeable
->Inch
);
1274 (*metafile
)->bounds
.Y
= ((REAL
) placeable
->BoundingBox
.Top
) / ((REAL
) placeable
->Inch
);
1275 (*metafile
)->bounds
.Width
= ((REAL
) (placeable
->BoundingBox
.Right
1276 - placeable
->BoundingBox
.Left
)) / ((REAL
) placeable
->Inch
);
1277 (*metafile
)->bounds
.Height
= ((REAL
) (placeable
->BoundingBox
.Bottom
1278 - placeable
->BoundingBox
.Top
)) / ((REAL
) placeable
->Inch
);
1279 (*metafile
)->unit
= UnitInch
;
1282 DeleteMetaFile(hwmf
);
1284 TRACE("<-- %p\n", *metafile
);
1288 GdipFree(*metafile
);
1289 IStream_Release(stream
);
1293 GpStatus WINGDIPAPI
GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR
*file
,
1294 GDIPCONST WmfPlaceableFileHeader
* placeable
, GpMetafile
**metafile
)
1296 HMETAFILE hmf
= GetMetaFileW(file
);
1298 TRACE("(%s, %p, %p)\n", debugstr_w(file
), placeable
, metafile
);
1300 if(!hmf
) return InvalidParameter
;
1302 return GdipCreateMetafileFromWmf(hmf
, TRUE
, placeable
, metafile
);
1305 GpStatus WINGDIPAPI
GdipCreateMetafileFromFile(GDIPCONST WCHAR
*file
,
1306 GpMetafile
**metafile
)
1308 FIXME("(%p, %p): stub\n", file
, metafile
);
1309 return NotImplemented
;
1312 GpStatus WINGDIPAPI
GdipCreateMetafileFromStream(IStream
*stream
,
1313 GpMetafile
**metafile
)
1315 FIXME("(%p, %p): stub\n", stream
, metafile
);
1316 return NotImplemented
;
1319 GpStatus WINGDIPAPI
GdipCreateStreamOnFile(GDIPCONST WCHAR
* filename
,
1320 UINT access
, IStream
**stream
)
1325 TRACE("(%s, %u, %p)\n", debugstr_w(filename
), access
, stream
);
1327 if(!stream
|| !filename
)
1328 return InvalidParameter
;
1330 if(access
& GENERIC_WRITE
)
1331 dwMode
= STGM_SHARE_DENY_WRITE
| STGM_WRITE
| STGM_CREATE
;
1332 else if(access
& GENERIC_READ
)
1333 dwMode
= STGM_SHARE_DENY_WRITE
| STGM_READ
| STGM_FAILIFTHERE
;
1335 return InvalidParameter
;
1337 ret
= SHCreateStreamOnFileW(filename
, dwMode
, stream
);
1339 return hresult_to_status(ret
);
1342 GpStatus WINGDIPAPI
GdipDeleteGraphics(GpGraphics
*graphics
)
1344 GraphicsContainerItem
*cont
, *next
;
1345 TRACE("(%p)\n", graphics
);
1347 if(!graphics
) return InvalidParameter
;
1348 if(graphics
->busy
) return ObjectBusy
;
1351 ReleaseDC(graphics
->hwnd
, graphics
->hdc
);
1353 LIST_FOR_EACH_ENTRY_SAFE(cont
, next
, &graphics
->containers
, GraphicsContainerItem
, entry
){
1354 list_remove(&cont
->entry
);
1355 delete_container(cont
);
1358 GdipDeleteRegion(graphics
->clip
);
1359 GdipDeleteMatrix(graphics
->worldtrans
);
1365 GpStatus WINGDIPAPI
GdipDrawArc(GpGraphics
*graphics
, GpPen
*pen
, REAL x
,
1366 REAL y
, REAL width
, REAL height
, REAL startAngle
, REAL sweepAngle
)
1368 INT save_state
, num_pts
;
1369 GpPointF points
[MAX_ARC_PTS
];
1372 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x
, y
,
1373 width
, height
, startAngle
, sweepAngle
);
1375 if(!graphics
|| !pen
|| width
<= 0 || height
<= 0)
1376 return InvalidParameter
;
1381 num_pts
= arc2polybezier(points
, x
, y
, width
, height
, startAngle
, sweepAngle
);
1383 save_state
= prepare_dc(graphics
, pen
);
1385 retval
= draw_polybezier(graphics
, pen
, points
, num_pts
, TRUE
);
1387 restore_dc(graphics
, save_state
);
1392 GpStatus WINGDIPAPI
GdipDrawArcI(GpGraphics
*graphics
, GpPen
*pen
, INT x
,
1393 INT y
, INT width
, INT height
, REAL startAngle
, REAL sweepAngle
)
1395 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics
, pen
, x
, y
,
1396 width
, height
, startAngle
, sweepAngle
);
1398 return GdipDrawArc(graphics
,pen
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
,startAngle
,sweepAngle
);
1401 GpStatus WINGDIPAPI
GdipDrawBezier(GpGraphics
*graphics
, GpPen
*pen
, REAL x1
,
1402 REAL y1
, REAL x2
, REAL y2
, REAL x3
, REAL y3
, REAL x4
, REAL y4
)
1408 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x1
, y1
,
1409 x2
, y2
, x3
, y3
, x4
, y4
);
1411 if(!graphics
|| !pen
)
1412 return InvalidParameter
;
1426 save_state
= prepare_dc(graphics
, pen
);
1428 retval
= draw_polybezier(graphics
, pen
, pt
, 4, TRUE
);
1430 restore_dc(graphics
, save_state
);
1435 GpStatus WINGDIPAPI
GdipDrawBezierI(GpGraphics
*graphics
, GpPen
*pen
, INT x1
,
1436 INT y1
, INT x2
, INT y2
, INT x3
, INT y3
, INT x4
, INT y4
)
1442 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d)\n", graphics
, pen
, x1
, y1
,
1443 x2
, y2
, x3
, y3
, x4
, y4
);
1445 if(!graphics
|| !pen
)
1446 return InvalidParameter
;
1460 save_state
= prepare_dc(graphics
, pen
);
1462 retval
= draw_polybezier(graphics
, pen
, pt
, 4, TRUE
);
1464 restore_dc(graphics
, save_state
);
1469 GpStatus WINGDIPAPI
GdipDrawBeziers(GpGraphics
*graphics
, GpPen
*pen
,
1470 GDIPCONST GpPointF
*points
, INT count
)
1475 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1477 if(!graphics
|| !pen
|| !points
|| (count
<= 0))
1478 return InvalidParameter
;
1483 for(i
= 0; i
< floor(count
/ 4); i
++){
1484 ret
= GdipDrawBezier(graphics
, pen
,
1485 points
[4*i
].X
, points
[4*i
].Y
,
1486 points
[4*i
+ 1].X
, points
[4*i
+ 1].Y
,
1487 points
[4*i
+ 2].X
, points
[4*i
+ 2].Y
,
1488 points
[4*i
+ 3].X
, points
[4*i
+ 3].Y
);
1496 GpStatus WINGDIPAPI
GdipDrawBeziersI(GpGraphics
*graphics
, GpPen
*pen
,
1497 GDIPCONST GpPoint
*points
, INT count
)
1503 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1505 if(!graphics
|| !pen
|| !points
|| (count
<= 0))
1506 return InvalidParameter
;
1511 pts
= GdipAlloc(sizeof(GpPointF
) * count
);
1515 for(i
= 0; i
< count
; i
++){
1516 pts
[i
].X
= (REAL
)points
[i
].X
;
1517 pts
[i
].Y
= (REAL
)points
[i
].Y
;
1520 ret
= GdipDrawBeziers(graphics
,pen
,pts
,count
);
1527 GpStatus WINGDIPAPI
GdipDrawClosedCurve(GpGraphics
*graphics
, GpPen
*pen
,
1528 GDIPCONST GpPointF
*points
, INT count
)
1530 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1532 return GdipDrawClosedCurve2(graphics
, pen
, points
, count
, 1.0);
1535 GpStatus WINGDIPAPI
GdipDrawClosedCurveI(GpGraphics
*graphics
, GpPen
*pen
,
1536 GDIPCONST GpPoint
*points
, INT count
)
1538 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1540 return GdipDrawClosedCurve2I(graphics
, pen
, points
, count
, 1.0);
1543 GpStatus WINGDIPAPI
GdipDrawClosedCurve2(GpGraphics
*graphics
, GpPen
*pen
,
1544 GDIPCONST GpPointF
*points
, INT count
, REAL tension
)
1549 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics
, pen
, points
, count
, tension
);
1551 if(!graphics
|| !pen
|| !points
|| count
<= 0)
1552 return InvalidParameter
;
1557 if((stat
= GdipCreatePath(FillModeAlternate
, &path
)) != Ok
)
1560 stat
= GdipAddPathClosedCurve2(path
, points
, count
, tension
);
1562 GdipDeletePath(path
);
1566 stat
= GdipDrawPath(graphics
, pen
, path
);
1568 GdipDeletePath(path
);
1573 GpStatus WINGDIPAPI
GdipDrawClosedCurve2I(GpGraphics
*graphics
, GpPen
*pen
,
1574 GDIPCONST GpPoint
*points
, INT count
, REAL tension
)
1580 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics
, pen
, points
, count
, tension
);
1582 if(!points
|| count
<= 0)
1583 return InvalidParameter
;
1585 ptf
= GdipAlloc(sizeof(GpPointF
)*count
);
1589 for(i
= 0; i
< count
; i
++){
1590 ptf
[i
].X
= (REAL
)points
[i
].X
;
1591 ptf
[i
].Y
= (REAL
)points
[i
].Y
;
1594 stat
= GdipDrawClosedCurve2(graphics
, pen
, ptf
, count
, tension
);
1601 GpStatus WINGDIPAPI
GdipDrawCurve(GpGraphics
*graphics
, GpPen
*pen
,
1602 GDIPCONST GpPointF
*points
, INT count
)
1604 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1606 return GdipDrawCurve2(graphics
,pen
,points
,count
,1.0);
1609 GpStatus WINGDIPAPI
GdipDrawCurveI(GpGraphics
*graphics
, GpPen
*pen
,
1610 GDIPCONST GpPoint
*points
, INT count
)
1616 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1619 return InvalidParameter
;
1621 pointsF
= GdipAlloc(sizeof(GpPointF
)*count
);
1625 for(i
= 0; i
< count
; i
++){
1626 pointsF
[i
].X
= (REAL
)points
[i
].X
;
1627 pointsF
[i
].Y
= (REAL
)points
[i
].Y
;
1630 ret
= GdipDrawCurve(graphics
,pen
,pointsF
,count
);
1636 /* Approximates cardinal spline with Bezier curves. */
1637 GpStatus WINGDIPAPI
GdipDrawCurve2(GpGraphics
*graphics
, GpPen
*pen
,
1638 GDIPCONST GpPointF
*points
, INT count
, REAL tension
)
1640 /* PolyBezier expects count*3-2 points. */
1641 INT i
, len_pt
= count
*3-2, save_state
;
1643 REAL x1
, x2
, y1
, y2
;
1646 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics
, pen
, points
, count
, tension
);
1648 if(!graphics
|| !pen
)
1649 return InvalidParameter
;
1655 return InvalidParameter
;
1657 pt
= GdipAlloc(len_pt
* sizeof(GpPointF
));
1661 tension
= tension
* TENSION_CONST
;
1663 calc_curve_bezier_endp(points
[0].X
, points
[0].Y
, points
[1].X
, points
[1].Y
,
1666 pt
[0].X
= points
[0].X
;
1667 pt
[0].Y
= points
[0].Y
;
1671 for(i
= 0; i
< count
-2; i
++){
1672 calc_curve_bezier(&(points
[i
]), tension
, &x1
, &y1
, &x2
, &y2
);
1676 pt
[3*i
+3].X
= points
[i
+1].X
;
1677 pt
[3*i
+3].Y
= points
[i
+1].Y
;
1682 calc_curve_bezier_endp(points
[count
-1].X
, points
[count
-1].Y
,
1683 points
[count
-2].X
, points
[count
-2].Y
, tension
, &x1
, &y1
);
1685 pt
[len_pt
-2].X
= x1
;
1686 pt
[len_pt
-2].Y
= y1
;
1687 pt
[len_pt
-1].X
= points
[count
-1].X
;
1688 pt
[len_pt
-1].Y
= points
[count
-1].Y
;
1690 save_state
= prepare_dc(graphics
, pen
);
1692 retval
= draw_polybezier(graphics
, pen
, pt
, len_pt
, TRUE
);
1695 restore_dc(graphics
, save_state
);
1700 GpStatus WINGDIPAPI
GdipDrawCurve2I(GpGraphics
*graphics
, GpPen
*pen
,
1701 GDIPCONST GpPoint
*points
, INT count
, REAL tension
)
1707 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics
, pen
, points
, count
, tension
);
1710 return InvalidParameter
;
1712 pointsF
= GdipAlloc(sizeof(GpPointF
)*count
);
1716 for(i
= 0; i
< count
; i
++){
1717 pointsF
[i
].X
= (REAL
)points
[i
].X
;
1718 pointsF
[i
].Y
= (REAL
)points
[i
].Y
;
1721 ret
= GdipDrawCurve2(graphics
,pen
,pointsF
,count
,tension
);
1727 GpStatus WINGDIPAPI
GdipDrawCurve3(GpGraphics
*graphics
, GpPen
*pen
,
1728 GDIPCONST GpPointF
*points
, INT count
, INT offset
, INT numberOfSegments
,
1731 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics
, pen
, points
, count
, offset
, numberOfSegments
, tension
);
1733 if(offset
>= count
|| numberOfSegments
> count
- offset
- 1 || numberOfSegments
<= 0){
1734 return InvalidParameter
;
1737 return GdipDrawCurve2(graphics
, pen
, points
+ offset
, numberOfSegments
+ 1, tension
);
1740 GpStatus WINGDIPAPI
GdipDrawCurve3I(GpGraphics
*graphics
, GpPen
*pen
,
1741 GDIPCONST GpPoint
*points
, INT count
, INT offset
, INT numberOfSegments
,
1744 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics
, pen
, points
, count
, offset
, numberOfSegments
, tension
);
1750 if(offset
>= count
|| numberOfSegments
> count
- offset
- 1 || numberOfSegments
<= 0){
1751 return InvalidParameter
;
1754 return GdipDrawCurve2I(graphics
, pen
, points
+ offset
, numberOfSegments
+ 1, tension
);
1757 GpStatus WINGDIPAPI
GdipDrawEllipse(GpGraphics
*graphics
, GpPen
*pen
, REAL x
,
1758 REAL y
, REAL width
, REAL height
)
1764 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x
, y
, width
, height
);
1766 if(!graphics
|| !pen
)
1767 return InvalidParameter
;
1774 ptf
[1].X
= x
+ width
;
1775 ptf
[1].Y
= y
+ height
;
1777 save_state
= prepare_dc(graphics
, pen
);
1778 SelectObject(graphics
->hdc
, GetStockObject(NULL_BRUSH
));
1780 transform_and_round_points(graphics
, pti
, ptf
, 2);
1782 Ellipse(graphics
->hdc
, pti
[0].x
, pti
[0].y
, pti
[1].x
, pti
[1].y
);
1784 restore_dc(graphics
, save_state
);
1789 GpStatus WINGDIPAPI
GdipDrawEllipseI(GpGraphics
*graphics
, GpPen
*pen
, INT x
,
1790 INT y
, INT width
, INT height
)
1792 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, pen
, x
, y
, width
, height
);
1794 return GdipDrawEllipse(graphics
,pen
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
);
1798 GpStatus WINGDIPAPI
GdipDrawImage(GpGraphics
*graphics
, GpImage
*image
, REAL x
, REAL y
)
1803 TRACE("(%p, %p, %.2f, %.2f)\n", graphics
, image
, x
, y
);
1805 if(!graphics
|| !image
)
1806 return InvalidParameter
;
1808 GdipGetImageWidth(image
, &width
);
1809 GdipGetImageHeight(image
, &height
);
1811 /* FIXME: we should use the graphics and image dpi, somehow */
1813 points
[0].X
= points
[2].X
= x
;
1814 points
[0].Y
= points
[1].Y
= y
;
1815 points
[1].X
= x
+ width
;
1816 points
[2].Y
= y
+ height
;
1818 return GdipDrawImagePointsRect(graphics
, image
, points
, 3, 0, 0, width
, height
,
1819 UnitPixel
, NULL
, NULL
, NULL
);
1822 GpStatus WINGDIPAPI
GdipDrawImageI(GpGraphics
*graphics
, GpImage
*image
, INT x
,
1825 TRACE("(%p, %p, %d, %d)\n", graphics
, image
, x
, y
);
1827 return GdipDrawImage(graphics
, image
, (REAL
)x
, (REAL
)y
);
1830 GpStatus WINGDIPAPI
GdipDrawImagePointRect(GpGraphics
*graphics
, GpImage
*image
,
1831 REAL x
, REAL y
, REAL srcx
, REAL srcy
, REAL srcwidth
, REAL srcheight
,
1835 TRACE("(%p, %p, %f, %f, %f, %f, %f, %f, %d)\n", graphics
, image
, x
, y
, srcx
, srcy
, srcwidth
, srcheight
, srcUnit
);
1837 points
[0].X
= points
[2].X
= x
;
1838 points
[0].Y
= points
[1].Y
= y
;
1840 /* FIXME: convert image coordinates to Graphics coordinates? */
1841 points
[1].X
= x
+ srcwidth
;
1842 points
[2].Y
= y
+ srcheight
;
1844 return GdipDrawImagePointsRect(graphics
, image
, points
, 3, srcx
, srcy
,
1845 srcwidth
, srcheight
, srcUnit
, NULL
, NULL
, NULL
);
1848 GpStatus WINGDIPAPI
GdipDrawImagePointRectI(GpGraphics
*graphics
, GpImage
*image
,
1849 INT x
, INT y
, INT srcx
, INT srcy
, INT srcwidth
, INT srcheight
,
1852 return GdipDrawImagePointRect(graphics
, image
, x
, y
, srcx
, srcy
, srcwidth
, srcheight
, srcUnit
);
1855 GpStatus WINGDIPAPI
GdipDrawImagePoints(GpGraphics
*graphics
, GpImage
*image
,
1856 GDIPCONST GpPointF
*dstpoints
, INT count
)
1858 FIXME("(%p, %p, %p, %d): stub\n", graphics
, image
, dstpoints
, count
);
1859 return NotImplemented
;
1862 GpStatus WINGDIPAPI
GdipDrawImagePointsI(GpGraphics
*graphics
, GpImage
*image
,
1863 GDIPCONST GpPoint
*dstpoints
, INT count
)
1865 FIXME("(%p, %p, %p, %d): stub\n", graphics
, image
, dstpoints
, count
);
1866 return NotImplemented
;
1869 /* FIXME: partially implemented (only works for rectangular parallelograms) */
1870 GpStatus WINGDIPAPI
GdipDrawImagePointsRect(GpGraphics
*graphics
, GpImage
*image
,
1871 GDIPCONST GpPointF
*points
, INT count
, REAL srcx
, REAL srcy
, REAL srcwidth
,
1872 REAL srcheight
, GpUnit srcUnit
, GDIPCONST GpImageAttributes
* imageAttributes
,
1873 DrawImageAbort callback
, VOID
* callbackData
)
1879 TRACE("(%p, %p, %p, %d, %f, %f, %f, %f, %d, %p, %p, %p)\n", graphics
, image
, points
,
1880 count
, srcx
, srcy
, srcwidth
, srcheight
, srcUnit
, imageAttributes
, callback
,
1883 if(!graphics
|| !image
|| !points
|| count
!= 3)
1884 return InvalidParameter
;
1886 TRACE("%s %s %s\n", debugstr_pointf(&points
[0]), debugstr_pointf(&points
[1]),
1887 debugstr_pointf(&points
[2]));
1889 memcpy(ptf
, points
, 3 * sizeof(GpPointF
));
1890 transform_and_round_points(graphics
, pti
, ptf
, 3);
1894 if(srcUnit
== UnitInch
)
1895 dx
= dy
= (REAL
) INCH_HIMETRIC
;
1896 else if(srcUnit
== UnitPixel
){
1897 dx
= ((REAL
) INCH_HIMETRIC
) /
1898 ((REAL
) GetDeviceCaps(graphics
->hdc
, LOGPIXELSX
));
1899 dy
= ((REAL
) INCH_HIMETRIC
) /
1900 ((REAL
) GetDeviceCaps(graphics
->hdc
, LOGPIXELSY
));
1903 return NotImplemented
;
1905 if(IPicture_Render(image
->picture
, graphics
->hdc
,
1906 pti
[0].x
, pti
[0].y
, pti
[1].x
- pti
[0].x
, pti
[2].y
- pti
[0].y
,
1907 srcx
* dx
, srcy
* dy
,
1908 srcwidth
* dx
, srcheight
* dy
,
1911 callback(callbackData
);
1912 return GenericError
;
1915 else if (image
->type
== ImageTypeBitmap
&& ((GpBitmap
*)image
)->hbitmap
)
1918 GpBitmap
* bitmap
= (GpBitmap
*)image
;
1919 int temp_hdc
=0, temp_bitmap
=0;
1920 HBITMAP hbitmap
, old_hbm
=NULL
;
1922 if (srcUnit
== UnitInch
)
1923 dx
= dy
= 96.0; /* FIXME: use the image resolution */
1924 else if (srcUnit
== UnitPixel
)
1927 return NotImplemented
;
1929 if (!(bitmap
->format
== PixelFormat16bppRGB555
||
1930 bitmap
->format
== PixelFormat24bppRGB
||
1931 bitmap
->format
== PixelFormat32bppRGB
||
1932 bitmap
->format
== PixelFormat32bppPARGB
))
1934 BITMAPINFOHEADER bih
;
1936 PixelFormat dst_format
;
1938 /* we can't draw a bitmap of this format directly */
1939 hdc
= CreateCompatibleDC(0);
1943 bih
.biSize
= sizeof(BITMAPINFOHEADER
);
1944 bih
.biWidth
= bitmap
->width
;
1945 bih
.biHeight
= -bitmap
->height
;
1947 bih
.biBitCount
= 32;
1948 bih
.biCompression
= BI_RGB
;
1949 bih
.biSizeImage
= 0;
1950 bih
.biXPelsPerMeter
= 0;
1951 bih
.biYPelsPerMeter
= 0;
1953 bih
.biClrImportant
= 0;
1955 hbitmap
= CreateDIBSection(hdc
, (BITMAPINFO
*)&bih
, DIB_RGB_COLORS
,
1956 (void**)&temp_bits
, NULL
, 0);
1958 if (bitmap
->format
& (PixelFormatAlpha
|PixelFormatPAlpha
))
1959 dst_format
= PixelFormat32bppPARGB
;
1961 dst_format
= PixelFormat32bppRGB
;
1963 convert_pixels(bitmap
->width
, bitmap
->height
,
1964 bitmap
->width
*4, temp_bits
, dst_format
,
1965 bitmap
->stride
, bitmap
->bits
, bitmap
->format
, bitmap
->image
.palette_entries
);
1969 hbitmap
= bitmap
->hbitmap
;
1971 temp_hdc
= (hdc
== 0);
1976 if (!hdc
) hdc
= CreateCompatibleDC(0);
1977 old_hbm
= SelectObject(hdc
, hbitmap
);
1980 if (bitmap
->format
& (PixelFormatAlpha
|PixelFormatPAlpha
))
1984 bf
.BlendOp
= AC_SRC_OVER
;
1986 bf
.SourceConstantAlpha
= 255;
1987 bf
.AlphaFormat
= AC_SRC_ALPHA
;
1989 GdiAlphaBlend(graphics
->hdc
, pti
[0].x
, pti
[0].y
, pti
[1].x
-pti
[0].x
, pti
[2].y
-pti
[0].y
,
1990 hdc
, srcx
*dx
, srcy
*dy
, srcwidth
*dx
, srcheight
*dy
, bf
);
1994 StretchBlt(graphics
->hdc
, pti
[0].x
, pti
[0].y
, pti
[1].x
-pti
[0].x
, pti
[2].y
-pti
[0].y
,
1995 hdc
, srcx
*dx
, srcy
*dy
, srcwidth
*dx
, srcheight
*dy
, SRCCOPY
);
2000 SelectObject(hdc
, old_hbm
);
2005 DeleteObject(hbitmap
);
2009 ERR("GpImage with no IPicture or HBITMAP?!\n");
2010 return NotImplemented
;
2016 GpStatus WINGDIPAPI
GdipDrawImagePointsRectI(GpGraphics
*graphics
, GpImage
*image
,
2017 GDIPCONST GpPoint
*points
, INT count
, INT srcx
, INT srcy
, INT srcwidth
,
2018 INT srcheight
, GpUnit srcUnit
, GDIPCONST GpImageAttributes
* imageAttributes
,
2019 DrawImageAbort callback
, VOID
* callbackData
)
2021 GpPointF pointsF
[3];
2024 TRACE("(%p, %p, %p, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n", graphics
, image
, points
, count
,
2025 srcx
, srcy
, srcwidth
, srcheight
, srcUnit
, imageAttributes
, callback
,
2028 if(!points
|| count
!=3)
2029 return InvalidParameter
;
2031 for(i
= 0; i
< count
; i
++){
2032 pointsF
[i
].X
= (REAL
)points
[i
].X
;
2033 pointsF
[i
].Y
= (REAL
)points
[i
].Y
;
2036 return GdipDrawImagePointsRect(graphics
, image
, pointsF
, count
, (REAL
)srcx
, (REAL
)srcy
,
2037 (REAL
)srcwidth
, (REAL
)srcheight
, srcUnit
, imageAttributes
,
2038 callback
, callbackData
);
2041 GpStatus WINGDIPAPI
GdipDrawImageRectRect(GpGraphics
*graphics
, GpImage
*image
,
2042 REAL dstx
, REAL dsty
, REAL dstwidth
, REAL dstheight
, REAL srcx
, REAL srcy
,
2043 REAL srcwidth
, REAL srcheight
, GpUnit srcUnit
,
2044 GDIPCONST GpImageAttributes
* imageattr
, DrawImageAbort callback
,
2045 VOID
* callbackData
)
2049 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)\n",
2050 graphics
, image
, dstx
, dsty
, dstwidth
, dstheight
, srcx
, srcy
,
2051 srcwidth
, srcheight
, srcUnit
, imageattr
, callback
, callbackData
);
2055 points
[1].X
= dstx
+ dstwidth
;
2058 points
[2].Y
= dsty
+ dstheight
;
2060 return GdipDrawImagePointsRect(graphics
, image
, points
, 3, srcx
, srcy
,
2061 srcwidth
, srcheight
, srcUnit
, imageattr
, callback
, callbackData
);
2064 GpStatus WINGDIPAPI
GdipDrawImageRectRectI(GpGraphics
*graphics
, GpImage
*image
,
2065 INT dstx
, INT dsty
, INT dstwidth
, INT dstheight
, INT srcx
, INT srcy
,
2066 INT srcwidth
, INT srcheight
, GpUnit srcUnit
,
2067 GDIPCONST GpImageAttributes
* imageAttributes
, DrawImageAbort callback
,
2068 VOID
* callbackData
)
2072 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n",
2073 graphics
, image
, dstx
, dsty
, dstwidth
, dstheight
, srcx
, srcy
,
2074 srcwidth
, srcheight
, srcUnit
, imageAttributes
, callback
, callbackData
);
2078 points
[1].X
= dstx
+ dstwidth
;
2081 points
[2].Y
= dsty
+ dstheight
;
2083 return GdipDrawImagePointsRect(graphics
, image
, points
, 3, srcx
, srcy
,
2084 srcwidth
, srcheight
, srcUnit
, imageAttributes
, callback
, callbackData
);
2087 GpStatus WINGDIPAPI
GdipDrawImageRect(GpGraphics
*graphics
, GpImage
*image
,
2088 REAL x
, REAL y
, REAL width
, REAL height
)
2094 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, image
, x
, y
, width
, height
);
2096 if(!graphics
|| !image
)
2097 return InvalidParameter
;
2099 ret
= GdipGetImageBounds(image
, &bounds
, &unit
);
2103 return GdipDrawImageRectRect(graphics
, image
, x
, y
, width
, height
,
2104 bounds
.X
, bounds
.Y
, bounds
.Width
, bounds
.Height
,
2105 unit
, NULL
, NULL
, NULL
);
2108 GpStatus WINGDIPAPI
GdipDrawImageRectI(GpGraphics
*graphics
, GpImage
*image
,
2109 INT x
, INT y
, INT width
, INT height
)
2111 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, image
, x
, y
, width
, height
);
2113 return GdipDrawImageRect(graphics
, image
, (REAL
)x
, (REAL
)y
, (REAL
)width
, (REAL
)height
);
2116 GpStatus WINGDIPAPI
GdipDrawLine(GpGraphics
*graphics
, GpPen
*pen
, REAL x1
,
2117 REAL y1
, REAL x2
, REAL y2
)
2123 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x1
, y1
, x2
, y2
);
2125 if(!pen
|| !graphics
)
2126 return InvalidParameter
;
2136 save_state
= prepare_dc(graphics
, pen
);
2138 retval
= draw_polyline(graphics
, pen
, pt
, 2, TRUE
);
2140 restore_dc(graphics
, save_state
);
2145 GpStatus WINGDIPAPI
GdipDrawLineI(GpGraphics
*graphics
, GpPen
*pen
, INT x1
,
2146 INT y1
, INT x2
, INT y2
)
2152 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, pen
, x1
, y1
, x2
, y2
);
2154 if(!pen
|| !graphics
)
2155 return InvalidParameter
;
2165 save_state
= prepare_dc(graphics
, pen
);
2167 retval
= draw_polyline(graphics
, pen
, pt
, 2, TRUE
);
2169 restore_dc(graphics
, save_state
);
2174 GpStatus WINGDIPAPI
GdipDrawLines(GpGraphics
*graphics
, GpPen
*pen
, GDIPCONST
2175 GpPointF
*points
, INT count
)
2180 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
2182 if(!pen
|| !graphics
|| (count
< 2))
2183 return InvalidParameter
;
2188 save_state
= prepare_dc(graphics
, pen
);
2190 retval
= draw_polyline(graphics
, pen
, points
, count
, TRUE
);
2192 restore_dc(graphics
, save_state
);
2197 GpStatus WINGDIPAPI
GdipDrawLinesI(GpGraphics
*graphics
, GpPen
*pen
, GDIPCONST
2198 GpPoint
*points
, INT count
)
2202 GpPointF
*ptf
= NULL
;
2205 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
2207 if(!pen
|| !graphics
|| (count
< 2))
2208 return InvalidParameter
;
2213 ptf
= GdipAlloc(count
* sizeof(GpPointF
));
2214 if(!ptf
) return OutOfMemory
;
2216 for(i
= 0; i
< count
; i
++){
2217 ptf
[i
].X
= (REAL
) points
[i
].X
;
2218 ptf
[i
].Y
= (REAL
) points
[i
].Y
;
2221 save_state
= prepare_dc(graphics
, pen
);
2223 retval
= draw_polyline(graphics
, pen
, ptf
, count
, TRUE
);
2225 restore_dc(graphics
, save_state
);
2231 GpStatus WINGDIPAPI
GdipDrawPath(GpGraphics
*graphics
, GpPen
*pen
, GpPath
*path
)
2236 TRACE("(%p, %p, %p)\n", graphics
, pen
, path
);
2238 if(!pen
|| !graphics
)
2239 return InvalidParameter
;
2244 save_state
= prepare_dc(graphics
, pen
);
2246 retval
= draw_poly(graphics
, pen
, path
->pathdata
.Points
,
2247 path
->pathdata
.Types
, path
->pathdata
.Count
, TRUE
);
2249 restore_dc(graphics
, save_state
);
2254 GpStatus WINGDIPAPI
GdipDrawPie(GpGraphics
*graphics
, GpPen
*pen
, REAL x
,
2255 REAL y
, REAL width
, REAL height
, REAL startAngle
, REAL sweepAngle
)
2259 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x
, y
,
2260 width
, height
, startAngle
, sweepAngle
);
2262 if(!graphics
|| !pen
)
2263 return InvalidParameter
;
2268 save_state
= prepare_dc(graphics
, pen
);
2269 SelectObject(graphics
->hdc
, GetStockObject(NULL_BRUSH
));
2271 draw_pie(graphics
, x
, y
, width
, height
, startAngle
, sweepAngle
);
2273 restore_dc(graphics
, save_state
);
2278 GpStatus WINGDIPAPI
GdipDrawPieI(GpGraphics
*graphics
, GpPen
*pen
, INT x
,
2279 INT y
, INT width
, INT height
, REAL startAngle
, REAL sweepAngle
)
2281 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics
, pen
, x
, y
,
2282 width
, height
, startAngle
, sweepAngle
);
2284 return GdipDrawPie(graphics
,pen
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
,startAngle
,sweepAngle
);
2287 GpStatus WINGDIPAPI
GdipDrawRectangle(GpGraphics
*graphics
, GpPen
*pen
, REAL x
,
2288 REAL y
, REAL width
, REAL height
)
2294 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x
, y
, width
, height
);
2296 if(!pen
|| !graphics
)
2297 return InvalidParameter
;
2304 ptf
[1].X
= x
+ width
;
2306 ptf
[2].X
= x
+ width
;
2307 ptf
[2].Y
= y
+ height
;
2309 ptf
[3].Y
= y
+ height
;
2311 save_state
= prepare_dc(graphics
, pen
);
2312 SelectObject(graphics
->hdc
, GetStockObject(NULL_BRUSH
));
2314 transform_and_round_points(graphics
, pti
, ptf
, 4);
2315 Polygon(graphics
->hdc
, pti
, 4);
2317 restore_dc(graphics
, save_state
);
2322 GpStatus WINGDIPAPI
GdipDrawRectangleI(GpGraphics
*graphics
, GpPen
*pen
, INT x
,
2323 INT y
, INT width
, INT height
)
2325 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, pen
, x
, y
, width
, height
);
2327 return GdipDrawRectangle(graphics
,pen
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
);
2330 GpStatus WINGDIPAPI
GdipDrawRectangles(GpGraphics
*graphics
, GpPen
*pen
,
2331 GDIPCONST GpRectF
* rects
, INT count
)
2337 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, rects
, count
);
2339 if(!graphics
|| !pen
|| !rects
|| count
< 1)
2340 return InvalidParameter
;
2345 ptf
= GdipAlloc(4 * count
* sizeof(GpPointF
));
2346 pti
= GdipAlloc(4 * count
* sizeof(POINT
));
2354 for(i
= 0; i
< count
; i
++){
2355 ptf
[4 * i
+ 3].X
= ptf
[4 * i
].X
= rects
[i
].X
;
2356 ptf
[4 * i
+ 1].Y
= ptf
[4 * i
].Y
= rects
[i
].Y
;
2357 ptf
[4 * i
+ 2].X
= ptf
[4 * i
+ 1].X
= rects
[i
].X
+ rects
[i
].Width
;
2358 ptf
[4 * i
+ 3].Y
= ptf
[4 * i
+ 2].Y
= rects
[i
].Y
+ rects
[i
].Height
;
2361 save_state
= prepare_dc(graphics
, pen
);
2362 SelectObject(graphics
->hdc
, GetStockObject(NULL_BRUSH
));
2364 transform_and_round_points(graphics
, pti
, ptf
, 4 * count
);
2366 for(i
= 0; i
< count
; i
++)
2367 Polygon(graphics
->hdc
, &pti
[4 * i
], 4);
2369 restore_dc(graphics
, save_state
);
2377 GpStatus WINGDIPAPI
GdipDrawRectanglesI(GpGraphics
*graphics
, GpPen
*pen
,
2378 GDIPCONST GpRect
* rects
, INT count
)
2384 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, rects
, count
);
2386 if(!rects
|| count
<=0)
2387 return InvalidParameter
;
2389 rectsF
= GdipAlloc(sizeof(GpRectF
) * count
);
2393 for(i
= 0;i
< count
;i
++){
2394 rectsF
[i
].X
= (REAL
)rects
[i
].X
;
2395 rectsF
[i
].Y
= (REAL
)rects
[i
].Y
;
2396 rectsF
[i
].Width
= (REAL
)rects
[i
].Width
;
2397 rectsF
[i
].Height
= (REAL
)rects
[i
].Height
;
2400 ret
= GdipDrawRectangles(graphics
, pen
, rectsF
, count
);
2406 GpStatus WINGDIPAPI
GdipDrawString(GpGraphics
*graphics
, GDIPCONST WCHAR
*string
,
2407 INT length
, GDIPCONST GpFont
*font
, GDIPCONST RectF
*rect
,
2408 GDIPCONST GpStringFormat
*format
, GDIPCONST GpBrush
*brush
)
2413 TEXTMETRICW textmet
;
2414 GpPointF pt
[3], rectcpy
[4];
2417 REAL angle
, ang_cos
, ang_sin
, rel_width
, rel_height
;
2418 INT sum
= 0, height
= 0, offsety
= 0, fit
, fitcpy
, save_state
, i
, j
, lret
, nwidth
,
2425 TRACE("(%p, %s, %i, %p, %s, %p, %p)\n", graphics
, debugstr_wn(string
, length
),
2426 length
, font
, debugstr_rectf(rect
), format
, brush
);
2428 if(!graphics
|| !string
|| !font
|| !brush
|| !rect
)
2429 return InvalidParameter
;
2431 if((brush
->bt
!= BrushTypeSolidColor
)){
2432 FIXME("not implemented for given parameters\n");
2433 return NotImplemented
;
2437 TRACE("may be ignoring some format flags: attr %x\n", format
->attr
);
2439 /* Should be no need to explicitly test for StringAlignmentNear as
2440 * that is default behavior if no alignment is passed. */
2441 if(format
->vertalign
!= StringAlignmentNear
){
2443 GdipMeasureString(graphics
, string
, length
, font
, rect
, format
, &bounds
, 0, 0);
2445 if(format
->vertalign
== StringAlignmentCenter
)
2446 offsety
= (rect
->Height
- bounds
.Height
) / 2;
2447 else if(format
->vertalign
== StringAlignmentFar
)
2448 offsety
= (rect
->Height
- bounds
.Height
);
2452 if(length
== -1) length
= lstrlenW(string
);
2454 stringdup
= GdipAlloc(length
* sizeof(WCHAR
));
2455 if(!stringdup
) return OutOfMemory
;
2457 save_state
= SaveDC(graphics
->hdc
);
2458 SetBkMode(graphics
->hdc
, TRANSPARENT
);
2459 SetTextColor(graphics
->hdc
, brush
->lb
.lbColor
);
2467 GdipTransformPoints(graphics
, CoordinateSpaceDevice
, CoordinateSpaceWorld
, pt
, 3);
2468 angle
= -gdiplus_atan2((pt
[1].Y
- pt
[0].Y
), (pt
[1].X
- pt
[0].X
));
2469 ang_cos
= cos(angle
);
2470 ang_sin
= sin(angle
);
2471 rel_width
= sqrt((pt
[1].Y
-pt
[0].Y
)*(pt
[1].Y
-pt
[0].Y
)+
2472 (pt
[1].X
-pt
[0].X
)*(pt
[1].X
-pt
[0].X
));
2473 rel_height
= sqrt((pt
[2].Y
-pt
[0].Y
)*(pt
[2].Y
-pt
[0].Y
)+
2474 (pt
[2].X
-pt
[0].X
)*(pt
[2].X
-pt
[0].X
));
2476 rectcpy
[3].X
= rectcpy
[0].X
= rect
->X
;
2477 rectcpy
[1].Y
= rectcpy
[0].Y
= rect
->Y
+ offsety
;
2478 rectcpy
[2].X
= rectcpy
[1].X
= rect
->X
+ rect
->Width
;
2479 rectcpy
[3].Y
= rectcpy
[2].Y
= rect
->Y
+ offsety
+ rect
->Height
;
2480 transform_and_round_points(graphics
, corners
, rectcpy
, 4);
2482 if (roundr(rect
->Width
) == 0)
2485 nwidth
= roundr(rel_width
* rect
->Width
);
2487 if (roundr(rect
->Height
) == 0)
2490 nheight
= roundr(rel_height
* rect
->Height
);
2492 if (roundr(rect
->Width
) != 0 && roundr(rect
->Height
) != 0)
2494 /* FIXME: If only the width or only the height is 0, we should probably still clip */
2495 rgn
= CreatePolygonRgn(corners
, 4, ALTERNATE
);
2496 SelectClipRgn(graphics
->hdc
, rgn
);
2499 /* Use gdi to find the font, then perform transformations on it (height,
2501 SelectObject(graphics
->hdc
, CreateFontIndirectW(&font
->lfw
));
2502 GetTextMetricsW(graphics
->hdc
, &textmet
);
2505 lfw
.lfHeight
= roundr(((REAL
)lfw
.lfHeight
) * rel_height
);
2506 lfw
.lfWidth
= roundr(textmet
.tmAveCharWidth
* rel_width
);
2508 lfw
.lfEscapement
= lfw
.lfOrientation
= roundr((angle
/ M_PI
) * 1800.0);
2510 gdifont
= CreateFontIndirectW(&lfw
);
2511 DeleteObject(SelectObject(graphics
->hdc
, CreateFontIndirectW(&lfw
)));
2513 for(i
= 0, j
= 0; i
< length
; i
++){
2514 if(!isprintW(string
[i
]) && (string
[i
] != '\n'))
2517 stringdup
[j
] = string
[i
];
2523 if (!format
|| format
->align
== StringAlignmentNear
)
2525 drawbase
.x
= corners
[0].x
;
2526 drawbase
.y
= corners
[0].y
;
2527 drawflags
= DT_NOCLIP
| DT_EXPANDTABS
;
2529 else if (format
->align
== StringAlignmentCenter
)
2531 drawbase
.x
= (corners
[0].x
+ corners
[1].x
)/2;
2532 drawbase
.y
= (corners
[0].y
+ corners
[1].y
)/2;
2533 drawflags
= DT_NOCLIP
| DT_EXPANDTABS
| DT_CENTER
;
2535 else /* (format->align == StringAlignmentFar) */
2537 drawbase
.x
= corners
[1].x
;
2538 drawbase
.y
= corners
[1].y
;
2539 drawflags
= DT_NOCLIP
| DT_EXPANDTABS
| DT_RIGHT
;
2542 while(sum
< length
){
2543 drawcoord
.left
= drawcoord
.right
= drawbase
.x
+ roundr(ang_sin
* (REAL
) height
);
2544 drawcoord
.top
= drawcoord
.bottom
= drawbase
.y
+ roundr(ang_cos
* (REAL
) height
);
2546 GetTextExtentExPointW(graphics
->hdc
, stringdup
+ sum
, length
- sum
,
2547 nwidth
, &fit
, NULL
, &size
);
2551 DrawTextW(graphics
->hdc
, stringdup
+ sum
, 1, &drawcoord
, drawflags
);
2555 for(lret
= 0; lret
< fit
; lret
++)
2556 if(*(stringdup
+ sum
+ lret
) == '\n')
2559 /* Line break code (may look strange, but it imitates windows). */
2561 lineend
= fit
= lret
; /* this is not an off-by-one error */
2562 else if(fit
< (length
- sum
)){
2563 if(*(stringdup
+ sum
+ fit
) == ' ')
2564 while(*(stringdup
+ sum
+ fit
) == ' ')
2567 while(*(stringdup
+ sum
+ fit
- 1) != ' '){
2570 if(*(stringdup
+ sum
+ fit
) == '\t')
2579 while(*(stringdup
+ sum
+ lineend
- 1) == ' ' ||
2580 *(stringdup
+ sum
+ lineend
- 1) == '\t')
2585 DrawTextW(graphics
->hdc
, stringdup
+ sum
, min(length
- sum
, lineend
),
2586 &drawcoord
, drawflags
);
2588 sum
+= fit
+ (lret
< fitcpy
? 1 : 0);
2591 if(height
> nheight
)
2594 /* Stop if this was a linewrap (but not if it was a linebreak). */
2595 if((lret
== fitcpy
) && format
&& (format
->attr
& StringFormatFlagsNoWrap
))
2599 GdipFree(stringdup
);
2601 DeleteObject(gdifont
);
2603 RestoreDC(graphics
->hdc
, save_state
);
2608 GpStatus WINGDIPAPI
GdipFillClosedCurve2(GpGraphics
*graphics
, GpBrush
*brush
,
2609 GDIPCONST GpPointF
*points
, INT count
, REAL tension
, GpFillMode fill
)
2614 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics
, brush
, points
,
2615 count
, tension
, fill
);
2617 if(!graphics
|| !brush
|| !points
)
2618 return InvalidParameter
;
2623 stat
= GdipCreatePath(fill
, &path
);
2627 stat
= GdipAddPathClosedCurve2(path
, points
, count
, tension
);
2629 GdipDeletePath(path
);
2633 stat
= GdipFillPath(graphics
, brush
, path
);
2635 GdipDeletePath(path
);
2639 GdipDeletePath(path
);
2644 GpStatus WINGDIPAPI
GdipFillClosedCurve2I(GpGraphics
*graphics
, GpBrush
*brush
,
2645 GDIPCONST GpPoint
*points
, INT count
, REAL tension
, GpFillMode fill
)
2651 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics
, brush
, points
,
2652 count
, tension
, fill
);
2654 if(!points
|| count
<= 0)
2655 return InvalidParameter
;
2657 ptf
= GdipAlloc(sizeof(GpPointF
)*count
);
2661 for(i
= 0;i
< count
;i
++){
2662 ptf
[i
].X
= (REAL
)points
[i
].X
;
2663 ptf
[i
].Y
= (REAL
)points
[i
].Y
;
2666 stat
= GdipFillClosedCurve2(graphics
, brush
, ptf
, count
, tension
, fill
);
2673 GpStatus WINGDIPAPI
GdipFillEllipse(GpGraphics
*graphics
, GpBrush
*brush
, REAL x
,
2674 REAL y
, REAL width
, REAL height
)
2680 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, brush
, x
, y
, width
, height
);
2682 if(!graphics
|| !brush
)
2683 return InvalidParameter
;
2690 ptf
[1].X
= x
+ width
;
2691 ptf
[1].Y
= y
+ height
;
2693 save_state
= SaveDC(graphics
->hdc
);
2694 EndPath(graphics
->hdc
);
2696 transform_and_round_points(graphics
, pti
, ptf
, 2);
2698 BeginPath(graphics
->hdc
);
2699 Ellipse(graphics
->hdc
, pti
[0].x
, pti
[0].y
, pti
[1].x
, pti
[1].y
);
2700 EndPath(graphics
->hdc
);
2702 brush_fill_path(graphics
, brush
);
2704 RestoreDC(graphics
->hdc
, save_state
);
2709 GpStatus WINGDIPAPI
GdipFillEllipseI(GpGraphics
*graphics
, GpBrush
*brush
, INT x
,
2710 INT y
, INT width
, INT height
)
2712 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, brush
, x
, y
, width
, height
);
2714 return GdipFillEllipse(graphics
,brush
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
);
2717 GpStatus WINGDIPAPI
GdipFillPath(GpGraphics
*graphics
, GpBrush
*brush
, GpPath
*path
)
2722 TRACE("(%p, %p, %p)\n", graphics
, brush
, path
);
2724 if(!brush
|| !graphics
|| !path
)
2725 return InvalidParameter
;
2730 save_state
= SaveDC(graphics
->hdc
);
2731 EndPath(graphics
->hdc
);
2732 SetPolyFillMode(graphics
->hdc
, (path
->fill
== FillModeAlternate
? ALTERNATE
2735 BeginPath(graphics
->hdc
);
2736 retval
= draw_poly(graphics
, NULL
, path
->pathdata
.Points
,
2737 path
->pathdata
.Types
, path
->pathdata
.Count
, FALSE
);
2742 EndPath(graphics
->hdc
);
2743 brush_fill_path(graphics
, brush
);
2748 RestoreDC(graphics
->hdc
, save_state
);
2753 GpStatus WINGDIPAPI
GdipFillPie(GpGraphics
*graphics
, GpBrush
*brush
, REAL x
,
2754 REAL y
, REAL width
, REAL height
, REAL startAngle
, REAL sweepAngle
)
2758 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n",
2759 graphics
, brush
, x
, y
, width
, height
, startAngle
, sweepAngle
);
2761 if(!graphics
|| !brush
)
2762 return InvalidParameter
;
2767 save_state
= SaveDC(graphics
->hdc
);
2768 EndPath(graphics
->hdc
);
2770 BeginPath(graphics
->hdc
);
2771 draw_pie(graphics
, x
, y
, width
, height
, startAngle
, sweepAngle
);
2772 EndPath(graphics
->hdc
);
2774 brush_fill_path(graphics
, brush
);
2776 RestoreDC(graphics
->hdc
, save_state
);
2781 GpStatus WINGDIPAPI
GdipFillPieI(GpGraphics
*graphics
, GpBrush
*brush
, INT x
,
2782 INT y
, INT width
, INT height
, REAL startAngle
, REAL sweepAngle
)
2784 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n",
2785 graphics
, brush
, x
, y
, width
, height
, startAngle
, sweepAngle
);
2787 return GdipFillPie(graphics
,brush
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
,startAngle
,sweepAngle
);
2790 GpStatus WINGDIPAPI
GdipFillPolygon(GpGraphics
*graphics
, GpBrush
*brush
,
2791 GDIPCONST GpPointF
*points
, INT count
, GpFillMode fillMode
)
2794 GpPointF
*ptf
= NULL
;
2796 GpStatus retval
= Ok
;
2798 TRACE("(%p, %p, %p, %d, %d)\n", graphics
, brush
, points
, count
, fillMode
);
2800 if(!graphics
|| !brush
|| !points
|| !count
)
2801 return InvalidParameter
;
2806 ptf
= GdipAlloc(count
* sizeof(GpPointF
));
2807 pti
= GdipAlloc(count
* sizeof(POINT
));
2809 retval
= OutOfMemory
;
2813 memcpy(ptf
, points
, count
* sizeof(GpPointF
));
2815 save_state
= SaveDC(graphics
->hdc
);
2816 EndPath(graphics
->hdc
);
2817 SetPolyFillMode(graphics
->hdc
, (fillMode
== FillModeAlternate
? ALTERNATE
2820 transform_and_round_points(graphics
, pti
, ptf
, count
);
2822 BeginPath(graphics
->hdc
);
2823 Polygon(graphics
->hdc
, pti
, count
);
2824 EndPath(graphics
->hdc
);
2826 brush_fill_path(graphics
, brush
);
2828 RestoreDC(graphics
->hdc
, save_state
);
2837 GpStatus WINGDIPAPI
GdipFillPolygonI(GpGraphics
*graphics
, GpBrush
*brush
,
2838 GDIPCONST GpPoint
*points
, INT count
, GpFillMode fillMode
)
2841 GpPointF
*ptf
= NULL
;
2843 GpStatus retval
= Ok
;
2845 TRACE("(%p, %p, %p, %d, %d)\n", graphics
, brush
, points
, count
, fillMode
);
2847 if(!graphics
|| !brush
|| !points
|| !count
)
2848 return InvalidParameter
;
2853 ptf
= GdipAlloc(count
* sizeof(GpPointF
));
2854 pti
= GdipAlloc(count
* sizeof(POINT
));
2856 retval
= OutOfMemory
;
2860 for(i
= 0; i
< count
; i
++){
2861 ptf
[i
].X
= (REAL
) points
[i
].X
;
2862 ptf
[i
].Y
= (REAL
) points
[i
].Y
;
2865 save_state
= SaveDC(graphics
->hdc
);
2866 EndPath(graphics
->hdc
);
2867 SetPolyFillMode(graphics
->hdc
, (fillMode
== FillModeAlternate
? ALTERNATE
2870 transform_and_round_points(graphics
, pti
, ptf
, count
);
2872 BeginPath(graphics
->hdc
);
2873 Polygon(graphics
->hdc
, pti
, count
);
2874 EndPath(graphics
->hdc
);
2876 brush_fill_path(graphics
, brush
);
2878 RestoreDC(graphics
->hdc
, save_state
);
2887 GpStatus WINGDIPAPI
GdipFillPolygon2(GpGraphics
*graphics
, GpBrush
*brush
,
2888 GDIPCONST GpPointF
*points
, INT count
)
2890 TRACE("(%p, %p, %p, %d)\n", graphics
, brush
, points
, count
);
2892 return GdipFillPolygon(graphics
, brush
, points
, count
, FillModeAlternate
);
2895 GpStatus WINGDIPAPI
GdipFillPolygon2I(GpGraphics
*graphics
, GpBrush
*brush
,
2896 GDIPCONST GpPoint
*points
, INT count
)
2898 TRACE("(%p, %p, %p, %d)\n", graphics
, brush
, points
, count
);
2900 return GdipFillPolygonI(graphics
, brush
, points
, count
, FillModeAlternate
);
2903 GpStatus WINGDIPAPI
GdipFillRectangle(GpGraphics
*graphics
, GpBrush
*brush
,
2904 REAL x
, REAL y
, REAL width
, REAL height
)
2910 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, brush
, x
, y
, width
, height
);
2912 if(!graphics
|| !brush
)
2913 return InvalidParameter
;
2920 ptf
[1].X
= x
+ width
;
2922 ptf
[2].X
= x
+ width
;
2923 ptf
[2].Y
= y
+ height
;
2925 ptf
[3].Y
= y
+ height
;
2927 save_state
= SaveDC(graphics
->hdc
);
2928 EndPath(graphics
->hdc
);
2930 transform_and_round_points(graphics
, pti
, ptf
, 4);
2932 BeginPath(graphics
->hdc
);
2933 Polygon(graphics
->hdc
, pti
, 4);
2934 EndPath(graphics
->hdc
);
2936 brush_fill_path(graphics
, brush
);
2938 RestoreDC(graphics
->hdc
, save_state
);
2943 GpStatus WINGDIPAPI
GdipFillRectangleI(GpGraphics
*graphics
, GpBrush
*brush
,
2944 INT x
, INT y
, INT width
, INT height
)
2950 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, brush
, x
, y
, width
, height
);
2952 if(!graphics
|| !brush
)
2953 return InvalidParameter
;
2960 ptf
[1].X
= x
+ width
;
2962 ptf
[2].X
= x
+ width
;
2963 ptf
[2].Y
= y
+ height
;
2965 ptf
[3].Y
= y
+ height
;
2967 save_state
= SaveDC(graphics
->hdc
);