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"
42 WINE_DEFAULT_DEBUG_CHANNEL(gdiplus
);
44 /* looks-right constants */
45 #define ANCHOR_WIDTH (2.0)
46 #define MAX_ITERS (50)
48 /* Converts angle (in degrees) to x/y coordinates */
49 static void deg2xy(REAL angle
, REAL x_0
, REAL y_0
, REAL
*x
, REAL
*y
)
51 REAL radAngle
, hypotenuse
;
53 radAngle
= deg2rad(angle
);
54 hypotenuse
= 50.0; /* arbitrary */
56 *x
= x_0
+ cos(radAngle
) * hypotenuse
;
57 *y
= y_0
+ sin(radAngle
) * hypotenuse
;
60 /* Converts from gdiplus path point type to gdi path point type. */
61 static BYTE
convert_path_point_type(BYTE type
)
65 switch(type
& PathPointTypePathTypeMask
){
66 case PathPointTypeBezier
:
69 case PathPointTypeLine
:
72 case PathPointTypeStart
:
76 ERR("Bad point type\n");
80 if(type
& PathPointTypeCloseSubpath
)
81 ret
|= PT_CLOSEFIGURE
;
86 static INT
prepare_dc(GpGraphics
*graphics
, GpPen
*pen
)
90 INT save_state
= SaveDC(graphics
->hdc
), i
, numdashes
;
92 DWORD dash_array
[MAX_DASHLEN
];
94 EndPath(graphics
->hdc
);
96 if(pen
->unit
== UnitPixel
){
100 /* Get an estimate for the amount the pen width is affected by the world
101 * transform. (This is similar to what some of the wine drivers do.) */
106 GdipTransformMatrixPoints(graphics
->worldtrans
, pt
, 2);
107 width
= sqrt((pt
[1].X
- pt
[0].X
) * (pt
[1].X
- pt
[0].X
) +
108 (pt
[1].Y
- pt
[0].Y
) * (pt
[1].Y
- pt
[0].Y
)) / sqrt(2.0);
110 width
*= pen
->width
* convert_unit(graphics
->hdc
,
111 pen
->unit
== UnitWorld
? graphics
->unit
: pen
->unit
);
114 if(pen
->dash
== DashStyleCustom
){
115 numdashes
= min(pen
->numdashes
, MAX_DASHLEN
);
117 TRACE("dashes are: ");
118 for(i
= 0; i
< numdashes
; i
++){
119 dash_array
[i
] = roundr(width
* pen
->dashes
[i
]);
120 TRACE("%d, ", dash_array
[i
]);
122 TRACE("\n and the pen style is %x\n", pen
->style
);
124 gdipen
= ExtCreatePen(pen
->style
, roundr(width
), &pen
->brush
->lb
,
125 numdashes
, dash_array
);
128 gdipen
= ExtCreatePen(pen
->style
, roundr(width
), &pen
->brush
->lb
, 0, NULL
);
130 SelectObject(graphics
->hdc
, gdipen
);
135 static void restore_dc(GpGraphics
*graphics
, INT state
)
137 DeleteObject(SelectObject(graphics
->hdc
, GetStockObject(NULL_PEN
)));
138 RestoreDC(graphics
->hdc
, state
);
141 /* This helper applies all the changes that the points listed in ptf need in
142 * order to be drawn on the device context. In the end, this should include at
144 * -scaling by page unit
145 * -applying world transformation
146 * -converting from float to int
147 * Native gdiplus uses gdi32 to do all this (via SetMapMode, SetViewportExtEx,
148 * SetWindowExtEx, SetWorldTransform, etc.) but we cannot because we are using
149 * gdi to draw, and these functions would irreparably mess with line widths.
151 static void transform_and_round_points(GpGraphics
*graphics
, POINT
*pti
,
152 GpPointF
*ptf
, INT count
)
158 unitscale
= convert_unit(graphics
->hdc
, graphics
->unit
);
160 /* apply page scale */
161 if(graphics
->unit
!= UnitDisplay
)
162 unitscale
*= graphics
->scale
;
164 GdipCloneMatrix(graphics
->worldtrans
, &matrix
);
165 GdipScaleMatrix(matrix
, unitscale
, unitscale
, MatrixOrderAppend
);
166 GdipTransformMatrixPoints(matrix
, ptf
, count
);
167 GdipDeleteMatrix(matrix
);
169 for(i
= 0; i
< count
; i
++){
170 pti
[i
].x
= roundr(ptf
[i
].X
);
171 pti
[i
].y
= roundr(ptf
[i
].Y
);
175 /* GdipDrawPie/GdipFillPie helper function */
176 static void draw_pie(GpGraphics
*graphics
, REAL x
, REAL y
, REAL width
,
177 REAL height
, REAL startAngle
, REAL sweepAngle
)
184 ptf
[1].X
= x
+ width
;
185 ptf
[1].Y
= y
+ height
;
187 deg2xy(startAngle
+sweepAngle
, x
+ width
/ 2.0, y
+ width
/ 2.0, &ptf
[2].X
, &ptf
[2].Y
);
188 deg2xy(startAngle
, x
+ width
/ 2.0, y
+ width
/ 2.0, &ptf
[3].X
, &ptf
[3].Y
);
190 transform_and_round_points(graphics
, pti
, ptf
, 4);
192 Pie(graphics
->hdc
, pti
[0].x
, pti
[0].y
, pti
[1].x
, pti
[1].y
, pti
[2].x
,
193 pti
[2].y
, pti
[3].x
, pti
[3].y
);
196 /* Draws the linecap the specified color and size on the hdc. The linecap is in
197 * direction of the line from x1, y1 to x2, y2 and is anchored on x2, y2. Probably
198 * should not be called on an hdc that has a path you care about. */
199 static void draw_cap(GpGraphics
*graphics
, COLORREF color
, GpLineCap cap
, REAL size
,
200 const GpCustomLineCap
*custom
, REAL x1
, REAL y1
, REAL x2
, REAL y2
)
202 HGDIOBJ oldbrush
= NULL
, oldpen
= NULL
;
203 GpMatrix
*matrix
= NULL
;
206 PointF ptf
[4], *custptf
= NULL
;
207 POINT pt
[4], *custpt
= NULL
;
209 REAL theta
, dsmall
, dbig
, dx
, dy
= 0.0;
214 if((x1
== x2
) && (y1
== y2
))
217 theta
= gdiplus_atan2(y2
- y1
, x2
- x1
);
219 customstroke
= (cap
== LineCapCustom
) && custom
&& (!custom
->fill
);
221 brush
= CreateSolidBrush(color
);
222 lb
.lbStyle
= BS_SOLID
;
225 pen
= ExtCreatePen(PS_GEOMETRIC
| PS_SOLID
| PS_ENDCAP_FLAT
|
226 PS_JOIN_MITER
, 1, &lb
, 0,
228 oldbrush
= SelectObject(graphics
->hdc
, brush
);
229 oldpen
= SelectObject(graphics
->hdc
, pen
);
236 case LineCapSquareAnchor
:
237 case LineCapDiamondAnchor
:
238 size
= size
* (cap
& LineCapNoAnchor
? ANCHOR_WIDTH
: 1.0) / 2.0;
239 if(cap
== LineCapDiamondAnchor
){
240 dsmall
= cos(theta
+ M_PI_2
) * size
;
241 dbig
= sin(theta
+ M_PI_2
) * size
;
244 dsmall
= cos(theta
+ M_PI_4
) * size
;
245 dbig
= sin(theta
+ M_PI_4
) * size
;
248 ptf
[0].X
= x2
- dsmall
;
249 ptf
[1].X
= x2
+ dbig
;
251 ptf
[0].Y
= y2
- dbig
;
252 ptf
[3].Y
= y2
+ dsmall
;
254 ptf
[1].Y
= y2
- dsmall
;
255 ptf
[2].Y
= y2
+ dbig
;
257 ptf
[3].X
= x2
- dbig
;
258 ptf
[2].X
= x2
+ dsmall
;
260 transform_and_round_points(graphics
, pt
, ptf
, 4);
261 Polygon(graphics
->hdc
, pt
, 4);
264 case LineCapArrowAnchor
:
265 size
= size
* 4.0 / sqrt(3.0);
267 dx
= cos(M_PI
/ 6.0 + theta
) * size
;
268 dy
= sin(M_PI
/ 6.0 + theta
) * size
;
273 dx
= cos(- M_PI
/ 6.0 + theta
) * size
;
274 dy
= sin(- M_PI
/ 6.0 + theta
) * size
;
282 transform_and_round_points(graphics
, pt
, ptf
, 3);
283 Polygon(graphics
->hdc
, pt
, 3);
286 case LineCapRoundAnchor
:
287 dx
= dy
= ANCHOR_WIDTH
* size
/ 2.0;
294 transform_and_round_points(graphics
, pt
, ptf
, 2);
295 Ellipse(graphics
->hdc
, pt
[0].x
, pt
[0].y
, pt
[1].x
, pt
[1].y
);
298 case LineCapTriangle
:
300 dx
= cos(M_PI_2
+ theta
) * size
;
301 dy
= sin(M_PI_2
+ theta
) * size
;
308 dx
= cos(theta
) * size
;
309 dy
= sin(theta
) * size
;
314 transform_and_round_points(graphics
, pt
, ptf
, 3);
315 Polygon(graphics
->hdc
, pt
, 3);
319 dx
= dy
= size
/ 2.0;
326 dx
= -cos(M_PI_2
+ theta
) * size
;
327 dy
= -sin(M_PI_2
+ theta
) * size
;
334 transform_and_round_points(graphics
, pt
, ptf
, 4);
335 Pie(graphics
->hdc
, pt
[0].x
, pt
[0].y
, pt
[1].x
, pt
[1].y
, pt
[2].x
,
336 pt
[2].y
, pt
[3].x
, pt
[3].y
);
343 count
= custom
->pathdata
.Count
;
344 custptf
= GdipAlloc(count
* sizeof(PointF
));
345 custpt
= GdipAlloc(count
* sizeof(POINT
));
346 tp
= GdipAlloc(count
);
348 if(!custptf
|| !custpt
|| !tp
|| (GdipCreateMatrix(&matrix
) != Ok
))
351 memcpy(custptf
, custom
->pathdata
.Points
, count
* sizeof(PointF
));
353 GdipScaleMatrix(matrix
, size
, size
, MatrixOrderAppend
);
354 GdipRotateMatrix(matrix
, (180.0 / M_PI
) * (theta
- M_PI_2
),
356 GdipTranslateMatrix(matrix
, x2
, y2
, MatrixOrderAppend
);
357 GdipTransformMatrixPoints(matrix
, custptf
, count
);
359 transform_and_round_points(graphics
, custpt
, custptf
, count
);
361 for(i
= 0; i
< count
; i
++)
362 tp
[i
] = convert_path_point_type(custom
->pathdata
.Types
[i
]);
365 BeginPath(graphics
->hdc
);
366 PolyDraw(graphics
->hdc
, custpt
, tp
, count
);
367 EndPath(graphics
->hdc
);
368 StrokeAndFillPath(graphics
->hdc
);
371 PolyDraw(graphics
->hdc
, custpt
, tp
, count
);
377 GdipDeleteMatrix(matrix
);
384 SelectObject(graphics
->hdc
, oldbrush
);
385 SelectObject(graphics
->hdc
, oldpen
);
391 /* Shortens the line by the given percent by changing x2, y2.
392 * If percent is > 1.0 then the line will change direction.
393 * If percent is negative it can lengthen the line. */
394 static void shorten_line_percent(REAL x1
, REAL y1
, REAL
*x2
, REAL
*y2
, REAL percent
)
396 REAL dist
, theta
, dx
, dy
;
398 if((y1
== *y2
) && (x1
== *x2
))
401 dist
= sqrt((*x2
- x1
) * (*x2
- x1
) + (*y2
- y1
) * (*y2
- y1
)) * -percent
;
402 theta
= gdiplus_atan2((*y2
- y1
), (*x2
- x1
));
403 dx
= cos(theta
) * dist
;
404 dy
= sin(theta
) * dist
;
410 /* Shortens the line by the given amount by changing x2, y2.
411 * If the amount is greater than the distance, the line will become length 0.
412 * If the amount is negative, it can lengthen the line. */
413 static void shorten_line_amt(REAL x1
, REAL y1
, REAL
*x2
, REAL
*y2
, REAL amt
)
415 REAL dx
, dy
, percent
;
419 if(dx
== 0 && dy
== 0)
422 percent
= amt
/ sqrt(dx
* dx
+ dy
* dy
);
429 shorten_line_percent(x1
, y1
, x2
, y2
, percent
);
432 /* Draws lines between the given points, and if caps is true then draws an endcap
433 * at the end of the last line. */
434 static GpStatus
draw_polyline(GpGraphics
*graphics
, GpPen
*pen
,
435 GDIPCONST GpPointF
* pt
, INT count
, BOOL caps
)
438 GpPointF
*ptcopy
= NULL
;
439 GpStatus status
= GenericError
;
444 pti
= GdipAlloc(count
* sizeof(POINT
));
445 ptcopy
= GdipAlloc(count
* sizeof(GpPointF
));
448 status
= OutOfMemory
;
452 memcpy(ptcopy
, pt
, count
* sizeof(GpPointF
));
455 if(pen
->endcap
== LineCapArrowAnchor
)
456 shorten_line_amt(ptcopy
[count
-2].X
, ptcopy
[count
-2].Y
,
457 &ptcopy
[count
-1].X
, &ptcopy
[count
-1].Y
, pen
->width
);
458 else if((pen
->endcap
== LineCapCustom
) && pen
->customend
)
459 shorten_line_amt(ptcopy
[count
-2].X
, ptcopy
[count
-2].Y
,
460 &ptcopy
[count
-1].X
, &ptcopy
[count
-1].Y
,
461 pen
->customend
->inset
* pen
->width
);
463 if(pen
->startcap
== LineCapArrowAnchor
)
464 shorten_line_amt(ptcopy
[1].X
, ptcopy
[1].Y
,
465 &ptcopy
[0].X
, &ptcopy
[0].Y
, pen
->width
);
466 else if((pen
->startcap
== LineCapCustom
) && pen
->customstart
)
467 shorten_line_amt(ptcopy
[1].X
, ptcopy
[1].Y
,
468 &ptcopy
[0].X
, &ptcopy
[0].Y
,
469 pen
->customstart
->inset
* pen
->width
);
471 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->endcap
, pen
->width
, pen
->customend
,
472 pt
[count
- 2].X
, pt
[count
- 2].Y
, pt
[count
- 1].X
, pt
[count
- 1].Y
);
473 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->startcap
, pen
->width
, pen
->customstart
,
474 pt
[1].X
, pt
[1].Y
, pt
[0].X
, pt
[0].Y
);
477 transform_and_round_points(graphics
, pti
, ptcopy
, count
);
479 if(Polyline(graphics
->hdc
, pti
, count
))
489 /* Conducts a linear search to find the bezier points that will back off
490 * the endpoint of the curve by a distance of amt. Linear search works
491 * better than binary in this case because there are multiple solutions,
492 * and binary searches often find a bad one. I don't think this is what
493 * Windows does but short of rendering the bezier without GDI's help it's
494 * the best we can do. If rev then work from the start of the passed points
495 * instead of the end. */
496 static void shorten_bezier_amt(GpPointF
* pt
, REAL amt
, BOOL rev
)
499 REAL percent
= 0.00, dx
, dy
, origx
, origy
, diff
= -1.0;
500 INT i
, first
= 0, second
= 1, third
= 2, fourth
= 3;
509 origx
= pt
[fourth
].X
;
510 origy
= pt
[fourth
].Y
;
511 memcpy(origpt
, pt
, sizeof(GpPointF
) * 4);
513 for(i
= 0; (i
< MAX_ITERS
) && (diff
< amt
); i
++){
514 /* reset bezier points to original values */
515 memcpy(pt
, origpt
, sizeof(GpPointF
) * 4);
516 /* Perform magic on bezier points. Order is important here.*/
517 shorten_line_percent(pt
[third
].X
, pt
[third
].Y
, &pt
[fourth
].X
, &pt
[fourth
].Y
, percent
);
518 shorten_line_percent(pt
[second
].X
, pt
[second
].Y
, &pt
[third
].X
, &pt
[third
].Y
, percent
);
519 shorten_line_percent(pt
[third
].X
, pt
[third
].Y
, &pt
[fourth
].X
, &pt
[fourth
].Y
, percent
);
520 shorten_line_percent(pt
[first
].X
, pt
[first
].Y
, &pt
[second
].X
, &pt
[second
].Y
, percent
);
521 shorten_line_percent(pt
[second
].X
, pt
[second
].Y
, &pt
[third
].X
, &pt
[third
].Y
, percent
);
522 shorten_line_percent(pt
[third
].X
, pt
[third
].Y
, &pt
[fourth
].X
, &pt
[fourth
].Y
, percent
);
524 dx
= pt
[fourth
].X
- origx
;
525 dy
= pt
[fourth
].Y
- origy
;
527 diff
= sqrt(dx
* dx
+ dy
* dy
);
528 percent
+= 0.0005 * amt
;
532 /* Draws bezier curves between given points, and if caps is true then draws an
533 * endcap at the end of the last line. */
534 static GpStatus
draw_polybezier(GpGraphics
*graphics
, GpPen
*pen
,
535 GDIPCONST GpPointF
* pt
, INT count
, BOOL caps
)
539 GpStatus status
= GenericError
;
544 pti
= GdipAlloc(count
* sizeof(POINT
));
545 ptcopy
= GdipAlloc(count
* sizeof(GpPointF
));
548 status
= OutOfMemory
;
552 memcpy(ptcopy
, pt
, count
* sizeof(GpPointF
));
555 if(pen
->endcap
== LineCapArrowAnchor
)
556 shorten_bezier_amt(&ptcopy
[count
-4], pen
->width
, FALSE
);
557 else if((pen
->endcap
== LineCapCustom
) && pen
->customend
)
558 shorten_bezier_amt(&ptcopy
[count
-4], pen
->width
* pen
->customend
->inset
,
561 if(pen
->startcap
== LineCapArrowAnchor
)
562 shorten_bezier_amt(ptcopy
, pen
->width
, TRUE
);
563 else if((pen
->startcap
== LineCapCustom
) && pen
->customstart
)
564 shorten_bezier_amt(ptcopy
, pen
->width
* pen
->customstart
->inset
, TRUE
);
566 /* the direction of the line cap is parallel to the direction at the
567 * end of the bezier (which, if it has been shortened, is not the same
568 * as the direction from pt[count-2] to pt[count-1]) */
569 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->endcap
, pen
->width
, pen
->customend
,
570 pt
[count
- 1].X
- (ptcopy
[count
- 1].X
- ptcopy
[count
- 2].X
),
571 pt
[count
- 1].Y
- (ptcopy
[count
- 1].Y
- ptcopy
[count
- 2].Y
),
572 pt
[count
- 1].X
, pt
[count
- 1].Y
);
574 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->startcap
, pen
->width
, pen
->customstart
,
575 pt
[0].X
- (ptcopy
[0].X
- ptcopy
[1].X
),
576 pt
[0].Y
- (ptcopy
[0].Y
- ptcopy
[1].Y
), pt
[0].X
, pt
[0].Y
);
579 transform_and_round_points(graphics
, pti
, ptcopy
, count
);
581 PolyBezier(graphics
->hdc
, pti
, count
);
592 /* Draws a combination of bezier curves and lines between points. */
593 static GpStatus
draw_poly(GpGraphics
*graphics
, GpPen
*pen
, GDIPCONST GpPointF
* pt
,
594 GDIPCONST BYTE
* types
, INT count
, BOOL caps
)
596 POINT
*pti
= GdipAlloc(count
* sizeof(POINT
));
597 BYTE
*tp
= GdipAlloc(count
);
598 GpPointF
*ptcopy
= GdipAlloc(count
* sizeof(GpPointF
));
600 GpStatus status
= GenericError
;
606 if(!pti
|| !tp
|| !ptcopy
){
607 status
= OutOfMemory
;
611 for(i
= 1; i
< count
; i
++){
612 if((types
[i
] & PathPointTypePathTypeMask
) == PathPointTypeBezier
){
613 if((i
+ 2 >= count
) || !(types
[i
+ 1] & PathPointTypeBezier
)
614 || !(types
[i
+ 1] & PathPointTypeBezier
)){
615 ERR("Bad bezier points\n");
622 memcpy(ptcopy
, pt
, count
* sizeof(GpPointF
));
624 /* If we are drawing caps, go through the points and adjust them accordingly,
625 * and draw the caps. */
627 switch(types
[count
- 1] & PathPointTypePathTypeMask
){
628 case PathPointTypeBezier
:
629 if(pen
->endcap
== LineCapArrowAnchor
)
630 shorten_bezier_amt(&ptcopy
[count
- 4], pen
->width
, FALSE
);
631 else if((pen
->endcap
== LineCapCustom
) && pen
->customend
)
632 shorten_bezier_amt(&ptcopy
[count
- 4],
633 pen
->width
* pen
->customend
->inset
, FALSE
);
635 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->endcap
, pen
->width
, pen
->customend
,
636 pt
[count
- 1].X
- (ptcopy
[count
- 1].X
- ptcopy
[count
- 2].X
),
637 pt
[count
- 1].Y
- (ptcopy
[count
- 1].Y
- ptcopy
[count
- 2].Y
),
638 pt
[count
- 1].X
, pt
[count
- 1].Y
);
641 case PathPointTypeLine
:
642 if(pen
->endcap
== LineCapArrowAnchor
)
643 shorten_line_amt(ptcopy
[count
- 2].X
, ptcopy
[count
- 2].Y
,
644 &ptcopy
[count
- 1].X
, &ptcopy
[count
- 1].Y
,
646 else if((pen
->endcap
== LineCapCustom
) && pen
->customend
)
647 shorten_line_amt(ptcopy
[count
- 2].X
, ptcopy
[count
- 2].Y
,
648 &ptcopy
[count
- 1].X
, &ptcopy
[count
- 1].Y
,
649 pen
->customend
->inset
* pen
->width
);
651 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->endcap
, pen
->width
, pen
->customend
,
652 pt
[count
- 2].X
, pt
[count
- 2].Y
, pt
[count
- 1].X
,
657 ERR("Bad path last point\n");
661 /* Find start of points */
662 for(j
= 1; j
< count
&& ((types
[j
] & PathPointTypePathTypeMask
)
663 == PathPointTypeStart
); j
++);
665 switch(types
[j
] & PathPointTypePathTypeMask
){
666 case PathPointTypeBezier
:
667 if(pen
->startcap
== LineCapArrowAnchor
)
668 shorten_bezier_amt(&ptcopy
[j
- 1], pen
->width
, TRUE
);
669 else if((pen
->startcap
== LineCapCustom
) && pen
->customstart
)
670 shorten_bezier_amt(&ptcopy
[j
- 1],
671 pen
->width
* pen
->customstart
->inset
, TRUE
);
673 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->startcap
, pen
->width
, pen
->customstart
,
674 pt
[j
- 1].X
- (ptcopy
[j
- 1].X
- ptcopy
[j
].X
),
675 pt
[j
- 1].Y
- (ptcopy
[j
- 1].Y
- ptcopy
[j
].Y
),
676 pt
[j
- 1].X
, pt
[j
- 1].Y
);
679 case PathPointTypeLine
:
680 if(pen
->startcap
== LineCapArrowAnchor
)
681 shorten_line_amt(ptcopy
[j
].X
, ptcopy
[j
].Y
,
682 &ptcopy
[j
- 1].X
, &ptcopy
[j
- 1].Y
,
684 else if((pen
->startcap
== LineCapCustom
) && pen
->customstart
)
685 shorten_line_amt(ptcopy
[j
].X
, ptcopy
[j
].Y
,
686 &ptcopy
[j
- 1].X
, &ptcopy
[j
- 1].Y
,
687 pen
->customstart
->inset
* pen
->width
);
689 draw_cap(graphics
, pen
->brush
->lb
.lbColor
, pen
->startcap
, pen
->width
, pen
->customstart
,
690 pt
[j
].X
, pt
[j
].Y
, pt
[j
- 1].X
,
695 ERR("Bad path points\n");
700 transform_and_round_points(graphics
, pti
, ptcopy
, count
);
702 for(i
= 0; i
< count
; i
++){
703 tp
[i
] = convert_path_point_type(types
[i
]);
706 PolyDraw(graphics
->hdc
, pti
, tp
, count
);
718 GpStatus
trace_path(GpGraphics
*graphics
, GpPath
*path
)
722 BeginPath(graphics
->hdc
);
723 result
= draw_poly(graphics
, NULL
, path
->pathdata
.Points
,
724 path
->pathdata
.Types
, path
->pathdata
.Count
, FALSE
);
725 EndPath(graphics
->hdc
);
729 GpStatus WINGDIPAPI
GdipCreateFromHDC(HDC hdc
, GpGraphics
**graphics
)
731 TRACE("(%p, %p)\n", hdc
, graphics
);
733 return GdipCreateFromHDC2(hdc
, NULL
, graphics
);
736 GpStatus WINGDIPAPI
GdipCreateFromHDC2(HDC hdc
, HANDLE hDevice
, GpGraphics
**graphics
)
740 TRACE("(%p, %p, %p)\n", hdc
, hDevice
, graphics
);
742 if(hDevice
!= NULL
) {
743 FIXME("Don't know how to hadle parameter hDevice\n");
744 return NotImplemented
;
751 return InvalidParameter
;
753 *graphics
= GdipAlloc(sizeof(GpGraphics
));
754 if(!*graphics
) return OutOfMemory
;
756 if((retval
= GdipCreateMatrix(&(*graphics
)->worldtrans
)) != Ok
){
761 if((retval
= GdipCreateRegion(&(*graphics
)->clip
)) != Ok
){
762 GdipFree((*graphics
)->worldtrans
);
767 (*graphics
)->hdc
= hdc
;
768 (*graphics
)->hwnd
= WindowFromDC(hdc
);
769 (*graphics
)->smoothing
= SmoothingModeDefault
;
770 (*graphics
)->compqual
= CompositingQualityDefault
;
771 (*graphics
)->interpolation
= InterpolationModeDefault
;
772 (*graphics
)->pixeloffset
= PixelOffsetModeDefault
;
773 (*graphics
)->compmode
= CompositingModeSourceOver
;
774 (*graphics
)->unit
= UnitDisplay
;
775 (*graphics
)->scale
= 1.0;
776 (*graphics
)->busy
= FALSE
;
777 (*graphics
)->textcontrast
= 4;
782 GpStatus WINGDIPAPI
GdipCreateFromHWND(HWND hwnd
, GpGraphics
**graphics
)
786 TRACE("(%p, %p)\n", hwnd
, graphics
);
788 if((ret
= GdipCreateFromHDC(GetDC(hwnd
), graphics
)) != Ok
)
791 (*graphics
)->hwnd
= hwnd
;
796 /* FIXME: no icm handling */
797 GpStatus WINGDIPAPI
GdipCreateFromHWNDICM(HWND hwnd
, GpGraphics
**graphics
)
799 TRACE("(%p, %p)\n", hwnd
, graphics
);
801 return GdipCreateFromHWND(hwnd
, graphics
);
804 GpStatus WINGDIPAPI
GdipCreateMetafileFromEmf(HENHMETAFILE hemf
, BOOL
delete,
805 GpMetafile
**metafile
)
809 if(!hemf
|| !metafile
)
810 return InvalidParameter
;
813 FIXME("not implemented\n");
815 return NotImplemented
;
818 GpStatus WINGDIPAPI
GdipCreateMetafileFromWmf(HMETAFILE hwmf
, BOOL
delete,
819 GDIPCONST WmfPlaceableFileHeader
* placeable
, GpMetafile
**metafile
)
821 IStream
*stream
= NULL
;
825 GpStatus retval
= GenericError
;
827 TRACE("(%p, %d, %p, %p)\n", hwmf
, delete, placeable
, metafile
);
829 if(!hwmf
|| !metafile
|| !placeable
)
830 return InvalidParameter
;
833 read
= GetMetaFileBitsEx(hwmf
, 0, NULL
);
836 copy
= GdipAlloc(read
);
837 GetMetaFileBitsEx(hwmf
, read
, copy
);
839 hemf
= SetWinMetaFileBits(read
, copy
, NULL
, NULL
);
842 read
= GetEnhMetaFileBits(hemf
, 0, NULL
);
843 copy
= GdipAlloc(read
);
844 GetEnhMetaFileBits(hemf
, read
, copy
);
845 DeleteEnhMetaFile(hemf
);
847 if(CreateStreamOnHGlobal(copy
, TRUE
, &stream
) != S_OK
){
848 ERR("could not make stream\n");
853 *metafile
= GdipAlloc(sizeof(GpMetafile
));
855 retval
= OutOfMemory
;
859 if(OleLoadPicture(stream
, 0, FALSE
, &IID_IPicture
,
860 (LPVOID
*) &((*metafile
)->image
.picture
)) != S_OK
)
864 (*metafile
)->image
.type
= ImageTypeMetafile
;
865 (*metafile
)->bounds
.X
= ((REAL
) placeable
->BoundingBox
.Left
) / ((REAL
) placeable
->Inch
);
866 (*metafile
)->bounds
.Y
= ((REAL
) placeable
->BoundingBox
.Right
) / ((REAL
) placeable
->Inch
);
867 (*metafile
)->bounds
.Width
= ((REAL
) (placeable
->BoundingBox
.Right
868 - placeable
->BoundingBox
.Left
)) / ((REAL
) placeable
->Inch
);
869 (*metafile
)->bounds
.Height
= ((REAL
) (placeable
->BoundingBox
.Bottom
870 - placeable
->BoundingBox
.Top
)) / ((REAL
) placeable
->Inch
);
871 (*metafile
)->unit
= UnitInch
;
874 DeleteMetaFile(hwmf
);
880 IStream_Release(stream
);
884 GpStatus WINGDIPAPI
GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR
*file
,
885 GDIPCONST WmfPlaceableFileHeader
* placeable
, GpMetafile
**metafile
)
887 HMETAFILE hmf
= GetMetaFileW(file
);
889 TRACE("(%s, %p, %p)\n", debugstr_w(file
), placeable
, metafile
);
891 if(!hmf
) return InvalidParameter
;
893 return GdipCreateMetafileFromWmf(hmf
, TRUE
, placeable
, metafile
);
896 GpStatus WINGDIPAPI
GdipCreateStreamOnFile(GDIPCONST WCHAR
* filename
,
897 UINT access
, IStream
**stream
)
902 TRACE("(%s, %u, %p)\n", debugstr_w(filename
), access
, stream
);
904 if(!stream
|| !filename
)
905 return InvalidParameter
;
907 if(access
& GENERIC_WRITE
)
908 dwMode
= STGM_SHARE_DENY_WRITE
| STGM_WRITE
| STGM_CREATE
;
909 else if(access
& GENERIC_READ
)
910 dwMode
= STGM_SHARE_DENY_WRITE
| STGM_READ
| STGM_FAILIFTHERE
;
912 return InvalidParameter
;
914 ret
= SHCreateStreamOnFileW(filename
, dwMode
, stream
);
916 return hresult_to_status(ret
);
919 GpStatus WINGDIPAPI
GdipDeleteGraphics(GpGraphics
*graphics
)
921 TRACE("(%p)\n", graphics
);
923 if(!graphics
) return InvalidParameter
;
924 if(graphics
->busy
) return ObjectBusy
;
927 ReleaseDC(graphics
->hwnd
, graphics
->hdc
);
929 GdipDeleteRegion(graphics
->clip
);
930 GdipDeleteMatrix(graphics
->worldtrans
);
936 GpStatus WINGDIPAPI
GdipDrawArc(GpGraphics
*graphics
, GpPen
*pen
, REAL x
,
937 REAL y
, REAL width
, REAL height
, REAL startAngle
, REAL sweepAngle
)
939 INT save_state
, num_pts
;
940 GpPointF points
[MAX_ARC_PTS
];
943 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x
, y
,
944 width
, height
, startAngle
, sweepAngle
);
946 if(!graphics
|| !pen
|| width
<= 0 || height
<= 0)
947 return InvalidParameter
;
952 num_pts
= arc2polybezier(points
, x
, y
, width
, height
, startAngle
, sweepAngle
);
954 save_state
= prepare_dc(graphics
, pen
);
956 retval
= draw_polybezier(graphics
, pen
, points
, num_pts
, TRUE
);
958 restore_dc(graphics
, save_state
);
963 GpStatus WINGDIPAPI
GdipDrawArcI(GpGraphics
*graphics
, GpPen
*pen
, INT x
,
964 INT y
, INT width
, INT height
, REAL startAngle
, REAL sweepAngle
)
966 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics
, pen
, x
, y
,
967 width
, height
, startAngle
, sweepAngle
);
969 return GdipDrawArc(graphics
,pen
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
,startAngle
,sweepAngle
);
972 GpStatus WINGDIPAPI
GdipDrawBezier(GpGraphics
*graphics
, GpPen
*pen
, REAL x1
,
973 REAL y1
, REAL x2
, REAL y2
, REAL x3
, REAL y3
, REAL x4
, REAL y4
)
979 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x1
, y1
,
980 x2
, y2
, x3
, y3
, x4
, y4
);
982 if(!graphics
|| !pen
)
983 return InvalidParameter
;
997 save_state
= prepare_dc(graphics
, pen
);
999 retval
= draw_polybezier(graphics
, pen
, pt
, 4, TRUE
);
1001 restore_dc(graphics
, save_state
);
1006 GpStatus WINGDIPAPI
GdipDrawBezierI(GpGraphics
*graphics
, GpPen
*pen
, INT x1
,
1007 INT y1
, INT x2
, INT y2
, INT x3
, INT y3
, INT x4
, INT y4
)
1013 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d)\n", graphics
, pen
, x1
, y1
,
1014 x2
, y2
, x3
, y3
, x4
, y4
);
1016 if(!graphics
|| !pen
)
1017 return InvalidParameter
;
1031 save_state
= prepare_dc(graphics
, pen
);
1033 retval
= draw_polybezier(graphics
, pen
, pt
, 4, TRUE
);
1035 restore_dc(graphics
, save_state
);
1040 GpStatus WINGDIPAPI
GdipDrawBeziers(GpGraphics
*graphics
, GpPen
*pen
,
1041 GDIPCONST GpPointF
*points
, INT count
)
1046 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1048 if(!graphics
|| !pen
|| !points
|| (count
<= 0))
1049 return InvalidParameter
;
1054 for(i
= 0; i
< floor(count
/ 4); i
++){
1055 ret
= GdipDrawBezier(graphics
, pen
,
1056 points
[4*i
].X
, points
[4*i
].Y
,
1057 points
[4*i
+ 1].X
, points
[4*i
+ 1].Y
,
1058 points
[4*i
+ 2].X
, points
[4*i
+ 2].Y
,
1059 points
[4*i
+ 3].X
, points
[4*i
+ 3].Y
);
1067 GpStatus WINGDIPAPI
GdipDrawBeziersI(GpGraphics
*graphics
, GpPen
*pen
,
1068 GDIPCONST GpPoint
*points
, INT count
)
1074 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1076 if(!graphics
|| !pen
|| !points
|| (count
<= 0))
1077 return InvalidParameter
;
1082 pts
= GdipAlloc(sizeof(GpPointF
) * count
);
1086 for(i
= 0; i
< count
; i
++){
1087 pts
[i
].X
= (REAL
)points
[i
].X
;
1088 pts
[i
].Y
= (REAL
)points
[i
].Y
;
1091 ret
= GdipDrawBeziers(graphics
,pen
,pts
,count
);
1098 GpStatus WINGDIPAPI
GdipDrawClosedCurve(GpGraphics
*graphics
, GpPen
*pen
,
1099 GDIPCONST GpPointF
*points
, INT count
)
1101 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1103 return GdipDrawClosedCurve2(graphics
, pen
, points
, count
, 1.0);
1106 GpStatus WINGDIPAPI
GdipDrawClosedCurveI(GpGraphics
*graphics
, GpPen
*pen
,
1107 GDIPCONST GpPoint
*points
, INT count
)
1109 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1111 return GdipDrawClosedCurve2I(graphics
, pen
, points
, count
, 1.0);
1114 GpStatus WINGDIPAPI
GdipDrawClosedCurve2(GpGraphics
*graphics
, GpPen
*pen
,
1115 GDIPCONST GpPointF
*points
, INT count
, REAL tension
)
1120 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics
, pen
, points
, count
, tension
);
1122 if(!graphics
|| !pen
|| !points
|| count
<= 0)
1123 return InvalidParameter
;
1128 if((stat
= GdipCreatePath(FillModeAlternate
, &path
)) != Ok
)
1131 stat
= GdipAddPathClosedCurve2(path
, points
, count
, tension
);
1133 GdipDeletePath(path
);
1137 stat
= GdipDrawPath(graphics
, pen
, path
);
1139 GdipDeletePath(path
);
1144 GpStatus WINGDIPAPI
GdipDrawClosedCurve2I(GpGraphics
*graphics
, GpPen
*pen
,
1145 GDIPCONST GpPoint
*points
, INT count
, REAL tension
)
1151 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics
, pen
, points
, count
, tension
);
1153 if(!points
|| count
<= 0)
1154 return InvalidParameter
;
1156 ptf
= GdipAlloc(sizeof(GpPointF
)*count
);
1160 for(i
= 0; i
< count
; i
++){
1161 ptf
[i
].X
= (REAL
)points
[i
].X
;
1162 ptf
[i
].Y
= (REAL
)points
[i
].Y
;
1165 stat
= GdipDrawClosedCurve2(graphics
, pen
, ptf
, count
, tension
);
1172 GpStatus WINGDIPAPI
GdipDrawCurve(GpGraphics
*graphics
, GpPen
*pen
,
1173 GDIPCONST GpPointF
*points
, INT count
)
1175 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1177 return GdipDrawCurve2(graphics
,pen
,points
,count
,1.0);
1180 GpStatus WINGDIPAPI
GdipDrawCurveI(GpGraphics
*graphics
, GpPen
*pen
,
1181 GDIPCONST GpPoint
*points
, INT count
)
1187 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1189 if(!points
|| count
<= 0)
1190 return InvalidParameter
;
1192 pointsF
= GdipAlloc(sizeof(GpPointF
)*count
);
1196 for(i
= 0; i
< count
; i
++){
1197 pointsF
[i
].X
= (REAL
)points
[i
].X
;
1198 pointsF
[i
].Y
= (REAL
)points
[i
].Y
;
1201 ret
= GdipDrawCurve(graphics
,pen
,pointsF
,count
);
1207 /* Approximates cardinal spline with Bezier curves. */
1208 GpStatus WINGDIPAPI
GdipDrawCurve2(GpGraphics
*graphics
, GpPen
*pen
,
1209 GDIPCONST GpPointF
*points
, INT count
, REAL tension
)
1211 /* PolyBezier expects count*3-2 points. */
1212 INT i
, len_pt
= count
*3-2, save_state
;
1214 REAL x1
, x2
, y1
, y2
;
1217 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics
, pen
, points
, count
, tension
);
1219 if(!graphics
|| !pen
)
1220 return InvalidParameter
;
1225 pt
= GdipAlloc(len_pt
* sizeof(GpPointF
));
1226 tension
= tension
* TENSION_CONST
;
1228 calc_curve_bezier_endp(points
[0].X
, points
[0].Y
, points
[1].X
, points
[1].Y
,
1231 pt
[0].X
= points
[0].X
;
1232 pt
[0].Y
= points
[0].Y
;
1236 for(i
= 0; i
< count
-2; i
++){
1237 calc_curve_bezier(&(points
[i
]), tension
, &x1
, &y1
, &x2
, &y2
);
1241 pt
[3*i
+3].X
= points
[i
+1].X
;
1242 pt
[3*i
+3].Y
= points
[i
+1].Y
;
1247 calc_curve_bezier_endp(points
[count
-1].X
, points
[count
-1].Y
,
1248 points
[count
-2].X
, points
[count
-2].Y
, tension
, &x1
, &y1
);
1250 pt
[len_pt
-2].X
= x1
;
1251 pt
[len_pt
-2].Y
= y1
;
1252 pt
[len_pt
-1].X
= points
[count
-1].X
;
1253 pt
[len_pt
-1].Y
= points
[count
-1].Y
;
1255 save_state
= prepare_dc(graphics
, pen
);
1257 retval
= draw_polybezier(graphics
, pen
, pt
, len_pt
, TRUE
);
1260 restore_dc(graphics
, save_state
);
1265 GpStatus WINGDIPAPI
GdipDrawCurve2I(GpGraphics
*graphics
, GpPen
*pen
,
1266 GDIPCONST GpPoint
*points
, INT count
, REAL tension
)
1272 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics
, pen
, points
, count
, tension
);
1274 if(!points
|| count
<= 0)
1275 return InvalidParameter
;
1277 pointsF
= GdipAlloc(sizeof(GpPointF
)*count
);
1281 for(i
= 0; i
< count
; i
++){
1282 pointsF
[i
].X
= (REAL
)points
[i
].X
;
1283 pointsF
[i
].Y
= (REAL
)points
[i
].Y
;
1286 ret
= GdipDrawCurve2(graphics
,pen
,pointsF
,count
,tension
);
1292 GpStatus WINGDIPAPI
GdipDrawEllipse(GpGraphics
*graphics
, GpPen
*pen
, REAL x
,
1293 REAL y
, REAL width
, REAL height
)
1299 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x
, y
, width
, height
);
1301 if(!graphics
|| !pen
)
1302 return InvalidParameter
;
1309 ptf
[1].X
= x
+ width
;
1310 ptf
[1].Y
= y
+ height
;
1312 save_state
= prepare_dc(graphics
, pen
);
1313 SelectObject(graphics
->hdc
, GetStockObject(NULL_BRUSH
));
1315 transform_and_round_points(graphics
, pti
, ptf
, 2);
1317 Ellipse(graphics
->hdc
, pti
[0].x
, pti
[0].y
, pti
[1].x
, pti
[1].y
);
1319 restore_dc(graphics
, save_state
);
1324 GpStatus WINGDIPAPI
GdipDrawEllipseI(GpGraphics
*graphics
, GpPen
*pen
, INT x
,
1325 INT y
, INT width
, INT height
)
1327 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, pen
, x
, y
, width
, height
);
1329 return GdipDrawEllipse(graphics
,pen
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
);
1333 GpStatus WINGDIPAPI
GdipDrawImage(GpGraphics
*graphics
, GpImage
*image
, REAL x
, REAL y
)
1335 TRACE("(%p, %p, %.2f, %.2f)\n", graphics
, image
, x
, y
);
1337 /* IPicture::Render uses LONG coords */
1338 return GdipDrawImageI(graphics
,image
,roundr(x
),roundr(y
));
1341 GpStatus WINGDIPAPI
GdipDrawImageI(GpGraphics
*graphics
, GpImage
*image
, INT x
,
1344 UINT width
, height
, srcw
, srch
;
1346 TRACE("(%p, %p, %d, %d)\n", graphics
, image
, x
, y
);
1348 if(!graphics
|| !image
)
1349 return InvalidParameter
;
1351 GdipGetImageWidth(image
, &width
);
1352 GdipGetImageHeight(image
, &height
);
1354 srcw
= width
* (((REAL
) INCH_HIMETRIC
) /
1355 ((REAL
) GetDeviceCaps(graphics
->hdc
, LOGPIXELSX
)));
1356 srch
= height
* (((REAL
) INCH_HIMETRIC
) /
1357 ((REAL
) GetDeviceCaps(graphics
->hdc
, LOGPIXELSY
)));
1359 if(image
->type
!= ImageTypeMetafile
){
1364 IPicture_Render(image
->picture
, graphics
->hdc
, x
, y
, width
, height
,
1365 0, 0, srcw
, srch
, NULL
);
1370 /* FIXME: partially implemented (only works for rectangular parallelograms) */
1371 GpStatus WINGDIPAPI
GdipDrawImagePointsRect(GpGraphics
*graphics
, GpImage
*image
,
1372 GDIPCONST GpPointF
*points
, INT count
, REAL srcx
, REAL srcy
, REAL srcwidth
,
1373 REAL srcheight
, GpUnit srcUnit
, GDIPCONST GpImageAttributes
* imageAttributes
,
1374 DrawImageAbort callback
, VOID
* callbackData
)
1380 TRACE("(%p, %p, %p, %d, %f, %f, %f, %f, %d, %p, %p, %p)\n", graphics
, image
, points
,
1381 count
, srcx
, srcy
, srcwidth
, srcheight
, srcUnit
, imageAttributes
, callback
,
1384 if(!graphics
|| !image
|| !points
|| count
!= 3)
1385 return InvalidParameter
;
1387 if(srcUnit
== UnitInch
)
1388 dx
= dy
= (REAL
) INCH_HIMETRIC
;
1389 else if(srcUnit
== UnitPixel
){
1390 dx
= ((REAL
) INCH_HIMETRIC
) /
1391 ((REAL
) GetDeviceCaps(graphics
->hdc
, LOGPIXELSX
));
1392 dy
= ((REAL
) INCH_HIMETRIC
) /
1393 ((REAL
) GetDeviceCaps(graphics
->hdc
, LOGPIXELSY
));
1396 return NotImplemented
;
1398 memcpy(ptf
, points
, 3 * sizeof(GpPointF
));
1399 transform_and_round_points(graphics
, pti
, ptf
, 3);
1401 /* IPicture renders bitmaps with the y-axis reversed
1402 * FIXME: flipping for unknown image type might not be correct. */
1403 if(image
->type
!= ImageTypeMetafile
){
1406 pti
[0].y
= pti
[2].y
;
1410 if(IPicture_Render(image
->picture
, graphics
->hdc
,
1411 pti
[0].x
, pti
[0].y
, pti
[1].x
- pti
[0].x
, pti
[2].y
- pti
[0].y
,
1412 srcx
* dx
, srcy
* dy
,
1413 srcwidth
* dx
, srcheight
* dy
,
1416 callback(callbackData
);
1417 return GenericError
;
1423 GpStatus WINGDIPAPI
GdipDrawImagePointsRectI(GpGraphics
*graphics
, GpImage
*image
,
1424 GDIPCONST GpPoint
*points
, INT count
, INT srcx
, INT srcy
, INT srcwidth
,
1425 INT srcheight
, GpUnit srcUnit
, GDIPCONST GpImageAttributes
* imageAttributes
,
1426 DrawImageAbort callback
, VOID
* callbackData
)
1428 GpPointF pointsF
[3];
1431 TRACE("(%p, %p, %p, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n", graphics
, image
, points
, count
,
1432 srcx
, srcy
, srcwidth
, srcheight
, srcUnit
, imageAttributes
, callback
,
1435 if(!points
|| count
!=3)
1436 return InvalidParameter
;
1438 for(i
= 0; i
< count
; i
++){
1439 pointsF
[i
].X
= (REAL
)points
[i
].X
;
1440 pointsF
[i
].Y
= (REAL
)points
[i
].Y
;
1443 return GdipDrawImagePointsRect(graphics
, image
, pointsF
, count
, (REAL
)srcx
, (REAL
)srcy
,
1444 (REAL
)srcwidth
, (REAL
)srcheight
, srcUnit
, imageAttributes
,
1445 callback
, callbackData
);
1448 GpStatus WINGDIPAPI
GdipDrawImageRectRect(GpGraphics
*graphics
, GpImage
*image
,
1449 REAL dstx
, REAL dsty
, REAL dstwidth
, REAL dstheight
, REAL srcx
, REAL srcy
,
1450 REAL srcwidth
, REAL srcheight
, GpUnit srcUnit
,
1451 GDIPCONST GpImageAttributes
* imageattr
, DrawImageAbort callback
,
1452 VOID
* callbackData
)
1456 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)\n",
1457 graphics
, image
, dstx
, dsty
, dstwidth
, dstheight
, srcx
, srcy
,
1458 srcwidth
, srcheight
, srcUnit
, imageattr
, callback
, callbackData
);
1462 points
[1].X
= dstx
+ dstwidth
;
1465 points
[2].Y
= dsty
+ dstheight
;
1467 return GdipDrawImagePointsRect(graphics
, image
, points
, 3, srcx
, srcy
,
1468 srcwidth
, srcheight
, srcUnit
, imageattr
, callback
, callbackData
);
1471 GpStatus WINGDIPAPI
GdipDrawImageRectRectI(GpGraphics
*graphics
, GpImage
*image
,
1472 INT dstx
, INT dsty
, INT dstwidth
, INT dstheight
, INT srcx
, INT srcy
,
1473 INT srcwidth
, INT srcheight
, GpUnit srcUnit
,
1474 GDIPCONST GpImageAttributes
* imageAttributes
, DrawImageAbort callback
,
1475 VOID
* callbackData
)
1479 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n",
1480 graphics
, image
, dstx
, dsty
, dstwidth
, dstheight
, srcx
, srcy
,
1481 srcwidth
, srcheight
, srcUnit
, imageAttributes
, callback
, callbackData
);
1485 points
[1].X
= dstx
+ dstwidth
;
1488 points
[2].Y
= dsty
+ dstheight
;
1490 return GdipDrawImagePointsRect(graphics
, image
, points
, 3, srcx
, srcy
,
1491 srcwidth
, srcheight
, srcUnit
, imageAttributes
, callback
, callbackData
);
1494 GpStatus WINGDIPAPI
GdipDrawImageRect(GpGraphics
*graphics
, GpImage
*image
,
1495 REAL x
, REAL y
, REAL width
, REAL height
)
1501 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, image
, x
, y
, width
, height
);
1503 if(!graphics
|| !image
)
1504 return InvalidParameter
;
1506 ret
= GdipGetImageBounds(image
, &bounds
, &unit
);
1510 return GdipDrawImageRectRect(graphics
, image
, x
, y
, width
, height
,
1511 bounds
.X
, bounds
.Y
, bounds
.Width
, bounds
.Height
,
1512 unit
, NULL
, NULL
, NULL
);
1515 GpStatus WINGDIPAPI
GdipDrawImageRectI(GpGraphics
*graphics
, GpImage
*image
,
1516 INT x
, INT y
, INT width
, INT height
)
1518 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, image
, x
, y
, width
, height
);
1520 return GdipDrawImageRect(graphics
, image
, (REAL
)x
, (REAL
)y
, (REAL
)width
, (REAL
)height
);
1523 GpStatus WINGDIPAPI
GdipDrawLine(GpGraphics
*graphics
, GpPen
*pen
, REAL x1
,
1524 REAL y1
, REAL x2
, REAL y2
)
1530 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x1
, y1
, x2
, y2
);
1532 if(!pen
|| !graphics
)
1533 return InvalidParameter
;
1543 save_state
= prepare_dc(graphics
, pen
);
1545 retval
= draw_polyline(graphics
, pen
, pt
, 2, TRUE
);
1547 restore_dc(graphics
, save_state
);
1552 GpStatus WINGDIPAPI
GdipDrawLineI(GpGraphics
*graphics
, GpPen
*pen
, INT x1
,
1553 INT y1
, INT x2
, INT y2
)
1559 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, pen
, x1
, y1
, x2
, y2
);
1561 if(!pen
|| !graphics
)
1562 return InvalidParameter
;
1572 save_state
= prepare_dc(graphics
, pen
);
1574 retval
= draw_polyline(graphics
, pen
, pt
, 2, TRUE
);
1576 restore_dc(graphics
, save_state
);
1581 GpStatus WINGDIPAPI
GdipDrawLines(GpGraphics
*graphics
, GpPen
*pen
, GDIPCONST
1582 GpPointF
*points
, INT count
)
1587 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1589 if(!pen
|| !graphics
|| (count
< 2))
1590 return InvalidParameter
;
1595 save_state
= prepare_dc(graphics
, pen
);
1597 retval
= draw_polyline(graphics
, pen
, points
, count
, TRUE
);
1599 restore_dc(graphics
, save_state
);
1604 GpStatus WINGDIPAPI
GdipDrawLinesI(GpGraphics
*graphics
, GpPen
*pen
, GDIPCONST
1605 GpPoint
*points
, INT count
)
1609 GpPointF
*ptf
= NULL
;
1612 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
1614 if(!pen
|| !graphics
|| (count
< 2))
1615 return InvalidParameter
;
1620 ptf
= GdipAlloc(count
* sizeof(GpPointF
));
1621 if(!ptf
) return OutOfMemory
;
1623 for(i
= 0; i
< count
; i
++){
1624 ptf
[i
].X
= (REAL
) points
[i
].X
;
1625 ptf
[i
].Y
= (REAL
) points
[i
].Y
;
1628 save_state
= prepare_dc(graphics
, pen
);
1630 retval
= draw_polyline(graphics
, pen
, ptf
, count
, TRUE
);
1632 restore_dc(graphics
, save_state
);
1638 GpStatus WINGDIPAPI
GdipDrawPath(GpGraphics
*graphics
, GpPen
*pen
, GpPath
*path
)
1643 TRACE("(%p, %p, %p)\n", graphics
, pen
, path
);
1645 if(!pen
|| !graphics
)
1646 return InvalidParameter
;
1651 save_state
= prepare_dc(graphics
, pen
);
1653 retval
= draw_poly(graphics
, pen
, path
->pathdata
.Points
,
1654 path
->pathdata
.Types
, path
->pathdata
.Count
, TRUE
);
1656 restore_dc(graphics
, save_state
);
1661 GpStatus WINGDIPAPI
GdipDrawPie(GpGraphics
*graphics
, GpPen
*pen
, REAL x
,
1662 REAL y
, REAL width
, REAL height
, REAL startAngle
, REAL sweepAngle
)
1666 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x
, y
,
1667 width
, height
, startAngle
, sweepAngle
);
1669 if(!graphics
|| !pen
)
1670 return InvalidParameter
;
1675 save_state
= prepare_dc(graphics
, pen
);
1676 SelectObject(graphics
->hdc
, GetStockObject(NULL_BRUSH
));
1678 draw_pie(graphics
, x
, y
, width
, height
, startAngle
, sweepAngle
);
1680 restore_dc(graphics
, save_state
);
1685 GpStatus WINGDIPAPI
GdipDrawPieI(GpGraphics
*graphics
, GpPen
*pen
, INT x
,
1686 INT y
, INT width
, INT height
, REAL startAngle
, REAL sweepAngle
)
1688 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics
, pen
, x
, y
,
1689 width
, height
, startAngle
, sweepAngle
);
1691 return GdipDrawPie(graphics
,pen
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
,startAngle
,sweepAngle
);
1694 GpStatus WINGDIPAPI
GdipDrawRectangle(GpGraphics
*graphics
, GpPen
*pen
, REAL x
,
1695 REAL y
, REAL width
, REAL height
)
1701 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, pen
, x
, y
, width
, height
);
1703 if(!pen
|| !graphics
)
1704 return InvalidParameter
;
1711 ptf
[1].X
= x
+ width
;
1713 ptf
[2].X
= x
+ width
;
1714 ptf
[2].Y
= y
+ height
;
1716 ptf
[3].Y
= y
+ height
;
1718 save_state
= prepare_dc(graphics
, pen
);
1719 SelectObject(graphics
->hdc
, GetStockObject(NULL_BRUSH
));
1721 transform_and_round_points(graphics
, pti
, ptf
, 4);
1722 Polygon(graphics
->hdc
, pti
, 4);
1724 restore_dc(graphics
, save_state
);
1729 GpStatus WINGDIPAPI
GdipDrawRectangleI(GpGraphics
*graphics
, GpPen
*pen
, INT x
,
1730 INT y
, INT width
, INT height
)
1732 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, pen
, x
, y
, width
, height
);
1734 return GdipDrawRectangle(graphics
,pen
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
);
1737 GpStatus WINGDIPAPI
GdipDrawRectangles(GpGraphics
*graphics
, GpPen
*pen
,
1738 GDIPCONST GpRectF
* rects
, INT count
)
1744 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, rects
, count
);
1746 if(!graphics
|| !pen
|| !rects
|| count
< 1)
1747 return InvalidParameter
;
1752 ptf
= GdipAlloc(4 * count
* sizeof(GpPointF
));
1753 pti
= GdipAlloc(4 * count
* sizeof(POINT
));
1761 for(i
= 0; i
< count
; i
++){
1762 ptf
[4 * i
+ 3].X
= ptf
[4 * i
].X
= rects
[i
].X
;
1763 ptf
[4 * i
+ 1].Y
= ptf
[4 * i
].Y
= rects
[i
].Y
;
1764 ptf
[4 * i
+ 2].X
= ptf
[4 * i
+ 1].X
= rects
[i
].X
+ rects
[i
].Width
;
1765 ptf
[4 * i
+ 3].Y
= ptf
[4 * i
+ 2].Y
= rects
[i
].Y
+ rects
[i
].Height
;
1768 save_state
= prepare_dc(graphics
, pen
);
1769 SelectObject(graphics
->hdc
, GetStockObject(NULL_BRUSH
));
1771 transform_and_round_points(graphics
, pti
, ptf
, 4 * count
);
1773 for(i
= 0; i
< count
; i
++)
1774 Polygon(graphics
->hdc
, &pti
[4 * i
], 4);
1776 restore_dc(graphics
, save_state
);
1784 GpStatus WINGDIPAPI
GdipDrawRectanglesI(GpGraphics
*graphics
, GpPen
*pen
,
1785 GDIPCONST GpRect
* rects
, INT count
)
1791 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, rects
, count
);
1793 if(!rects
|| count
<=0)
1794 return InvalidParameter
;
1796 rectsF
= GdipAlloc(sizeof(GpRectF
) * count
);
1800 for(i
= 0;i
< count
;i
++){
1801 rectsF
[i
].X
= (REAL
)rects
[i
].X
;
1802 rectsF
[i
].Y
= (REAL
)rects
[i
].Y
;
1803 rectsF
[i
].Width
= (REAL
)rects
[i
].Width
;
1804 rectsF
[i
].Height
= (REAL
)rects
[i
].Height
;
1807 ret
= GdipDrawRectangles(graphics
, pen
, rectsF
, count
);
1813 GpStatus WINGDIPAPI
GdipDrawString(GpGraphics
*graphics
, GDIPCONST WCHAR
*string
,
1814 INT length
, GDIPCONST GpFont
*font
, GDIPCONST RectF
*rect
,
1815 GDIPCONST GpStringFormat
*format
, GDIPCONST GpBrush
*brush
)
1820 TEXTMETRICW textmet
;
1821 GpPointF pt
[2], rectcpy
[4];
1824 REAL angle
, ang_cos
, ang_sin
, rel_width
, rel_height
;
1825 INT sum
= 0, height
= 0, fit
, fitcpy
, save_state
, i
, j
, lret
, nwidth
,
1830 if(!graphics
|| !string
|| !font
|| !brush
|| !rect
)
1831 return InvalidParameter
;
1833 if((brush
->bt
!= BrushTypeSolidColor
)){
1834 FIXME("not implemented for given parameters\n");
1835 return NotImplemented
;
1839 TRACE("may be ignoring some format flags: attr %x\n", format
->attr
);
1841 if(length
== -1) length
= lstrlenW(string
);
1843 stringdup
= GdipAlloc(length
* sizeof(WCHAR
));
1844 if(!stringdup
) return OutOfMemory
;
1846 save_state
= SaveDC(graphics
->hdc
);
1847 SetBkMode(graphics
->hdc
, TRANSPARENT
);
1848 SetTextColor(graphics
->hdc
, brush
->lb
.lbColor
);
1850 rectcpy
[3].X
= rectcpy
[0].X
= rect
->X
;
1851 rectcpy
[1].Y
= rectcpy
[0].Y
= rect
->Y
;
1852 rectcpy
[2].X
= rectcpy
[1].X
= rect
->X
+ rect
->Width
;
1853 rectcpy
[3].Y
= rectcpy
[2].Y
= rect
->Y
+ rect
->Height
;
1854 transform_and_round_points(graphics
, corners
, rectcpy
, 4);
1856 if(roundr(rect
->Width
) == 0 && roundr(rect
->Height
) == 0){
1857 rel_width
= rel_height
= 1.0;
1858 nwidth
= nheight
= INT_MAX
;
1861 rel_width
= sqrt((corners
[1].x
- corners
[0].x
) * (corners
[1].x
- corners
[0].x
) +
1862 (corners
[1].y
- corners
[0].y
) * (corners
[1].y
- corners
[0].y
))
1864 rel_height
= sqrt((corners
[2].x
- corners
[1].x
) * (corners
[2].x
- corners
[1].x
) +
1865 (corners
[2].y
- corners
[1].y
) * (corners
[2].y
- corners
[1].y
))
1868 nwidth
= roundr(rel_width
* rect
->Width
);
1869 nheight
= roundr(rel_height
* rect
->Height
);
1870 rgn
= CreatePolygonRgn(corners
, 4, ALTERNATE
);
1871 SelectClipRgn(graphics
->hdc
, rgn
);
1874 /* Use gdi to find the font, then perform transformations on it (height,
1876 SelectObject(graphics
->hdc
, CreateFontIndirectW(&font
->lfw
));
1877 GetTextMetricsW(graphics
->hdc
, &textmet
);
1880 lfw
.lfHeight
= roundr(((REAL
)lfw
.lfHeight
) * rel_height
);
1881 lfw
.lfWidth
= roundr(textmet
.tmAveCharWidth
* rel_width
);
1887 GdipTransformMatrixPoints(graphics
->worldtrans
, pt
, 2);
1888 angle
= gdiplus_atan2((pt
[1].Y
- pt
[0].Y
), (pt
[1].X
- pt
[0].X
));
1889 ang_cos
= cos(angle
);
1890 ang_sin
= sin(angle
);
1891 lfw
.lfEscapement
= lfw
.lfOrientation
= -roundr((angle
/ M_PI
) * 1800.0);
1893 gdifont
= CreateFontIndirectW(&lfw
);
1894 DeleteObject(SelectObject(graphics
->hdc
, CreateFontIndirectW(&lfw
)));
1896 for(i
= 0, j
= 0; i
< length
; i
++){
1897 if(!isprintW(string
[i
]) && (string
[i
] != '\n'))
1900 stringdup
[j
] = string
[i
];
1907 while(sum
< length
){
1908 drawcoord
.left
= corners
[0].x
+ roundr(ang_sin
* (REAL
) height
);
1909 drawcoord
.top
= corners
[0].y
+ roundr(ang_cos
* (REAL
) height
);
1911 GetTextExtentExPointW(graphics
->hdc
, stringdup
+ sum
, length
- sum
,
1912 nwidth
, &fit
, NULL
, &size
);
1916 DrawTextW(graphics
->hdc
, stringdup
+ sum
, 1, &drawcoord
, DT_NOCLIP
|
1921 for(lret
= 0; lret
< fit
; lret
++)
1922 if(*(stringdup
+ sum
+ lret
) == '\n')
1925 /* Line break code (may look strange, but it imitates windows). */
1927 fit
= lret
; /* this is not an off-by-one error */
1928 else if(fit
< (length
- sum
)){
1929 if(*(stringdup
+ sum
+ fit
) == ' ')
1930 while(*(stringdup
+ sum
+ fit
) == ' ')
1933 while(*(stringdup
+ sum
+ fit
- 1) != ' '){
1936 if(*(stringdup
+ sum
+ fit
) == '\t')
1945 DrawTextW(graphics
->hdc
, stringdup
+ sum
, min(length
- sum
, fit
),
1946 &drawcoord
, DT_NOCLIP
| DT_EXPANDTABS
);
1948 sum
+= fit
+ (lret
< fitcpy
? 1 : 0);
1951 if(height
> nheight
)
1954 /* Stop if this was a linewrap (but not if it was a linebreak). */
1955 if((lret
== fitcpy
) && format
&& (format
->attr
& StringFormatFlagsNoWrap
))
1959 GdipFree(stringdup
);
1961 DeleteObject(gdifont
);
1963 RestoreDC(graphics
->hdc
, save_state
);
1968 GpStatus WINGDIPAPI
GdipFillClosedCurve2(GpGraphics
*graphics
, GpBrush
*brush
,
1969 GDIPCONST GpPointF
*points
, INT count
, REAL tension
, GpFillMode fill
)
1974 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics
, brush
, points
,
1975 count
, tension
, fill
);
1977 if(!graphics
|| !brush
|| !points
)
1978 return InvalidParameter
;
1983 stat
= GdipCreatePath(fill
, &path
);
1987 stat
= GdipAddPathClosedCurve2(path
, points
, count
, tension
);
1989 GdipDeletePath(path
);
1993 stat
= GdipFillPath(graphics
, brush
, path
);
1995 GdipDeletePath(path
);
1999 GdipDeletePath(path
);
2004 GpStatus WINGDIPAPI
GdipFillClosedCurve2I(GpGraphics
*graphics
, GpBrush
*brush
,
2005 GDIPCONST GpPoint
*points
, INT count
, REAL tension
, GpFillMode fill
)
2011 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics
, brush
, points
,
2012 count
, tension
, fill
);
2014 if(!points
|| count
<= 0)
2015 return InvalidParameter
;
2017 ptf
= GdipAlloc(sizeof(GpPointF
)*count
);
2021 for(i
= 0;i
< count
;i
++){
2022 ptf
[i
].X
= (REAL
)points
[i
].X
;
2023 ptf
[i
].Y
= (REAL
)points
[i
].Y
;
2026 stat
= GdipFillClosedCurve2(graphics
, brush
, ptf
, count
, tension
, fill
);
2033 GpStatus WINGDIPAPI
GdipFillEllipse(GpGraphics
*graphics
, GpBrush
*brush
, REAL x
,
2034 REAL y
, REAL width
, REAL height
)
2040 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, brush
, x
, y
, width
, height
);
2042 if(!graphics
|| !brush
)
2043 return InvalidParameter
;
2050 ptf
[1].X
= x
+ width
;
2051 ptf
[1].Y
= y
+ height
;
2053 save_state
= SaveDC(graphics
->hdc
);
2054 EndPath(graphics
->hdc
);
2055 SelectObject(graphics
->hdc
, brush
->gdibrush
);
2056 SelectObject(graphics
->hdc
, GetStockObject(NULL_PEN
));
2058 transform_and_round_points(graphics
, pti
, ptf
, 2);
2060 Ellipse(graphics
->hdc
, pti
[0].x
, pti
[0].y
, pti
[1].x
, pti
[1].y
);
2062 RestoreDC(graphics
->hdc
, save_state
);
2067 GpStatus WINGDIPAPI
GdipFillEllipseI(GpGraphics
*graphics
, GpBrush
*brush
, INT x
,
2068 INT y
, INT width
, INT height
)
2070 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, brush
, x
, y
, width
, height
);
2072 return GdipFillEllipse(graphics
,brush
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
);
2075 GpStatus WINGDIPAPI
GdipFillPath(GpGraphics
*graphics
, GpBrush
*brush
, GpPath
*path
)
2080 TRACE("(%p, %p, %p)\n", graphics
, brush
, path
);
2082 if(!brush
|| !graphics
|| !path
)
2083 return InvalidParameter
;
2088 save_state
= SaveDC(graphics
->hdc
);
2089 EndPath(graphics
->hdc
);
2090 SelectObject(graphics
->hdc
, brush
->gdibrush
);
2091 SetPolyFillMode(graphics
->hdc
, (path
->fill
== FillModeAlternate
? ALTERNATE
2094 BeginPath(graphics
->hdc
);
2095 retval
= draw_poly(graphics
, NULL
, path
->pathdata
.Points
,
2096 path
->pathdata
.Types
, path
->pathdata
.Count
, FALSE
);
2101 EndPath(graphics
->hdc
);
2102 FillPath(graphics
->hdc
);
2107 RestoreDC(graphics
->hdc
, save_state
);
2112 GpStatus WINGDIPAPI
GdipFillPie(GpGraphics
*graphics
, GpBrush
*brush
, REAL x
,
2113 REAL y
, REAL width
, REAL height
, REAL startAngle
, REAL sweepAngle
)
2117 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n",
2118 graphics
, brush
, x
, y
, width
, height
, startAngle
, sweepAngle
);
2120 if(!graphics
|| !brush
)
2121 return InvalidParameter
;
2126 save_state
= SaveDC(graphics
->hdc
);
2127 EndPath(graphics
->hdc
);
2128 SelectObject(graphics
->hdc
, brush
->gdibrush
);
2129 SelectObject(graphics
->hdc
, GetStockObject(NULL_PEN
));
2131 draw_pie(graphics
, x
, y
, width
, height
, startAngle
, sweepAngle
);
2133 RestoreDC(graphics
->hdc
, save_state
);
2138 GpStatus WINGDIPAPI
GdipFillPieI(GpGraphics
*graphics
, GpBrush
*brush
, INT x
,
2139 INT y
, INT width
, INT height
, REAL startAngle
, REAL sweepAngle
)
2141 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n",
2142 graphics
, brush
, x
, y
, width
, height
, startAngle
, sweepAngle
);
2144 return GdipFillPie(graphics
,brush
,(REAL
)x
,(REAL
)y
,(REAL
)width
,(REAL
)height
,startAngle
,sweepAngle
);
2147 GpStatus WINGDIPAPI
GdipFillPolygon(GpGraphics
*graphics
, GpBrush
*brush
,
2148 GDIPCONST GpPointF
*points
, INT count
, GpFillMode fillMode
)
2151 GpPointF
*ptf
= NULL
;
2153 GpStatus retval
= Ok
;
2155 TRACE("(%p, %p, %p, %d, %d)\n", graphics
, brush
, points
, count
, fillMode
);
2157 if(!graphics
|| !brush
|| !points
|| !count
)
2158 return InvalidParameter
;
2163 ptf
= GdipAlloc(count
* sizeof(GpPointF
));
2164 pti
= GdipAlloc(count
* sizeof(POINT
));
2166 retval
= OutOfMemory
;
2170 memcpy(ptf
, points
, count
* sizeof(GpPointF
));
2172 save_state
= SaveDC(graphics
->hdc
);
2173 EndPath(graphics
->hdc
);
2174 SelectObject(graphics
->hdc
, brush
->gdibrush
);
2175 SelectObject(graphics
->hdc
, GetStockObject(NULL_PEN
));
2176 SetPolyFillMode(graphics
->hdc
, (fillMode
== FillModeAlternate
? ALTERNATE
2179 transform_and_round_points(graphics
, pti
, ptf
, count
);
2180 Polygon(graphics
->hdc
, pti
, count
);
2182 RestoreDC(graphics
->hdc
, save_state
);
2191 GpStatus WINGDIPAPI
GdipFillPolygonI(GpGraphics
*graphics
, GpBrush
*brush
,
2192 GDIPCONST GpPoint
*points
, INT count
, GpFillMode fillMode
)
2195 GpPointF
*ptf
= NULL
;
2197 GpStatus retval
= Ok
;
2199 TRACE("(%p, %p, %p, %d, %d)\n", graphics
, brush
, points
, count
, fillMode
);
2201 if(!graphics
|| !brush
|| !points
|| !count
)
2202 return InvalidParameter
;
2207 ptf
= GdipAlloc(count
* sizeof(GpPointF
));
2208 pti
= GdipAlloc(count
* sizeof(POINT
));
2210 retval
= OutOfMemory
;
2214 for(i
= 0; i
< count
; i
++){
2215 ptf
[i
].X
= (REAL
) points
[i
].X
;
2216 ptf
[i
].Y
= (REAL
) points
[i
].Y
;
2219 save_state
= SaveDC(graphics
->hdc
);
2220 EndPath(graphics
->hdc
);
2221 SelectObject(graphics
->hdc
, brush
->gdibrush
);
2222 SelectObject(graphics
->hdc
, GetStockObject(NULL_PEN
));
2223 SetPolyFillMode(graphics
->hdc
, (fillMode
== FillModeAlternate
? ALTERNATE
2226 transform_and_round_points(graphics
, pti
, ptf
, count
);
2227 Polygon(graphics
->hdc
, pti
, count
);
2229 RestoreDC(graphics
->hdc
, save_state
);
2238 GpStatus WINGDIPAPI
GdipFillPolygon2(GpGraphics
*graphics
, GpBrush
*brush
,
2239 GDIPCONST GpPointF
*points
, INT count
)
2241 TRACE("(%p, %p, %p, %d)\n", graphics
, brush
, points
, count
);
2243 return GdipFillPolygon(graphics
, brush
, points
, count
, FillModeAlternate
);
2246 GpStatus WINGDIPAPI
GdipFillPolygon2I(GpGraphics
*graphics
, GpBrush
*brush
,
2247 GDIPCONST GpPoint
*points
, INT count
)
2249 TRACE("(%p, %p, %p, %d)\n", graphics
, brush
, points
, count
);
2251 return GdipFillPolygonI(graphics
, brush
, points
, count
, FillModeAlternate
);
2254 GpStatus WINGDIPAPI
GdipFillRectangle(GpGraphics
*graphics
, GpBrush
*brush
,
2255 REAL x
, REAL y
, REAL width
, REAL height
)
2261 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics
, brush
, x
, y
, width
, height
);
2263 if(!graphics
|| !brush
)
2264 return InvalidParameter
;
2271 ptf
[1].X
= x
+ width
;
2273 ptf
[2].X
= x
+ width
;
2274 ptf
[2].Y
= y
+ height
;
2276 ptf
[3].Y
= y
+ height
;
2278 save_state
= SaveDC(graphics
->hdc
);
2279 EndPath(graphics
->hdc
);
2280 SelectObject(graphics
->hdc
, brush
->gdibrush
);
2281 SelectObject(graphics
->hdc
, GetStockObject(NULL_PEN
));
2283 transform_and_round_points(graphics
, pti
, ptf
, 4);
2285 Polygon(graphics
->hdc
, pti
, 4);
2287 RestoreDC(graphics
->hdc
, save_state
);
2292 GpStatus WINGDIPAPI
GdipFillRectangleI(GpGraphics
*graphics
, GpBrush
*brush
,
2293 INT x
, INT y
, INT width
, INT height
)
2299 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics
, brush
, x
, y
, width
, height
);
2301 if(!graphics
|| !brush
)
2302 return InvalidParameter
;
2309 ptf
[1].X
= x
+ width
;
2311 ptf
[2].X
= x
+ width
;
2312 ptf
[2].Y
= y
+ height
;
2314 ptf
[3].Y
= y
+ height
;
2316 save_state
= SaveDC(graphics
->hdc
);
2317 EndPath(graphics
->hdc
);
2318 SelectObject(graphics
->hdc
, brush
->gdibrush
);
2319 SelectObject(graphics
->hdc
, GetStockObject(NULL_PEN
));
2321 transform_and_round_points(graphics
, pti
, ptf
, 4);
2323 Polygon(graphics
->hdc
, pti
, 4);
2325 RestoreDC(graphics
->hdc
, save_state
);
2330 GpStatus WINGDIPAPI
GdipFillRectangles(GpGraphics
*graphics
, GpBrush
*brush
, GDIPCONST GpRectF
*rects
,
2336 TRACE("(%p, %p, %p, %d)\n", graphics
, brush
, rects
, count
);
2339 return InvalidParameter
;
2341 for(i
= 0; i
< count
; i
++){
2342 ret
= GdipFillRectangle(graphics
, brush
, rects
[i
].X
, rects
[i
].Y
, rects
[i
].Width
, rects
[i
].Height
);
2343 if(ret
!= Ok
) return ret
;
2349 GpStatus WINGDIPAPI
GdipFillRectanglesI(GpGraphics
*graphics
, GpBrush
*brush
, GDIPCONST GpRect
*rects
,
2356 TRACE("(%p, %p, %p, %d)\n", graphics
, brush
, rects
, count
);
2358 if(!rects
|| count
<= 0)
2359 return InvalidParameter
;
2361 rectsF
= GdipAlloc(sizeof(GpRectF
)*count
);
2365 for(i
= 0; i
< count
; i
++){
2366 rectsF
[i
].X
= (REAL
)rects
[i
].X
;
2367 rectsF
[i
].Y
= (REAL
)rects
[i
].Y
;
2368 rectsF
[i
].X
= (REAL
)rects
[i
].Width
;
2369 rectsF
[i
].Height
= (REAL
)rects
[i
].Height
;
2372 ret
= GdipFillRectangles(graphics
,brush
,rectsF
,count
);
2378 GpStatus WINGDIPAPI
GdipFillRegion(GpGraphics
* graphics
, GpBrush
* brush
,
2381 if (!(graphics
&& brush
&& region
))
2382 return InvalidParameter
;
2387 FIXME("(%p, %p, %p): stub\n", graphics
, brush
, region
);
2389 return NotImplemented
;
2392 GpStatus WINGDIPAPI
GdipFlush(GpGraphics
*graphics
, GpFlushIntention intention
)
2397 return InvalidParameter
;
2403 FIXME("not implemented\n");
2405 return NotImplemented
;
2408 /* FIXME: Compositing mode is not used anywhere except the getter/setter. */
2409 GpStatus WINGDIPAPI
GdipGetCompositingMode(GpGraphics
*graphics
,
2410 CompositingMode
*mode
)
2412 TRACE("(%p, %p)\n", graphics
, mode
);
2414 if(!graphics
|| !mode
)
2415 return InvalidParameter
;
2420 *mode
= graphics
->compmode
;
2425 /* FIXME: Compositing quality is not used anywhere except the getter/setter. */
2426 GpStatus WINGDIPAPI
GdipGetCompositingQuality(GpGraphics
*graphics
,
2427 CompositingQuality
*quality
)
2429 TRACE("(%p, %p)\n", graphics
, quality
);
2431 if(!graphics
|| !quality
)
2432 return InvalidParameter
;
2437 *quality
= graphics
->compqual
;
2442 /* FIXME: Interpolation mode is not used anywhere except the getter/setter. */
2443 GpStatus WINGDIPAPI
GdipGetInterpolationMode(GpGraphics
*graphics
,
2444 InterpolationMode
*mode
)
2446 TRACE("(%p, %p)\n", graphics
, mode
);
2448 if(!graphics
|| !mode
)
2449 return InvalidParameter
;
2454 *mode
= graphics
->interpolation
;
2459 GpStatus WINGDIPAPI
GdipGetNearestColor(GpGraphics
*graphics
, ARGB
* argb
)
2461 if(!graphics
|| !argb
)
2462 return InvalidParameter
;
2467 FIXME("(%p, %p): stub\n", graphics
, argb
);
2469 return NotImplemented
;
2472 GpStatus WINGDIPAPI
GdipGetPageScale(GpGraphics
*graphics
, REAL
*scale
)
2474 TRACE("(%p, %p)\n", graphics
, scale
);
2476 if(!graphics
|| !scale
)
2477 return InvalidParameter
;
2482 *scale
= graphics
->scale
;
2487 GpStatus WINGDIPAPI
GdipGetPageUnit(GpGraphics
*graphics
, GpUnit
*unit
)
2489 TRACE("(%p, %p)\n", graphics
, unit
);
2491 if(!graphics
|| !unit
)
2492 return InvalidParameter
;
2497 *unit
= graphics
->unit
;
2502 /* FIXME: Pixel offset mode is not used anywhere except the getter/setter. */
2503 GpStatus WINGDIPAPI
GdipGetPixelOffsetMode(GpGraphics
*graphics
, PixelOffsetMode
2506 TRACE("(%p, %p)\n", graphics
, mode
);
2508 if(!graphics
|| !mode
)
2509 return InvalidParameter
;
2514 *mode
= graphics
->pixeloffset
;
2519 /* FIXME: Smoothing mode is not used anywhere except the getter/setter. */
2520 GpStatus WINGDIPAPI
GdipGetSmoothingMode(GpGraphics
*graphics
, SmoothingMode
*mode
)
2522 TRACE("(%p, %p)\n", graphics
, mode
);
2524 if(!graphics
|| !mode
)
2525 return InvalidParameter
;
2530 *mode
= graphics
->smoothing
;
2535 GpStatus WINGDIPAPI
GdipGetTextContrast(GpGraphics
*graphics
, UINT
*contrast
)
2537 TRACE("(%p, %p)\n", graphics
, contrast
);
2539 if(!graphics
|| !contrast
)
2540 return InvalidParameter
;
2542 *contrast
= graphics
->textcontrast
;
2547 /* FIXME: Text rendering hint is not used anywhere except the getter/setter. */
2548 GpStatus WINGDIPAPI
GdipGetTextRenderingHint(GpGraphics
*graphics
,
2549 TextRenderingHint
*hint
)
2551 TRACE("(%p, %p)\n", graphics
, hint
);
2553 if(!graphics
|| !hint
)
2554 return InvalidParameter
;
2559 *hint
= graphics
->texthint
;
2564 GpStatus WINGDIPAPI
GdipGetWorldTransform(GpGraphics
*graphics
, GpMatrix
*matrix
)
2566 TRACE("(%p, %p)\n", graphics
, matrix
);
2568 if(!graphics
|| !matrix
)
2569 return InvalidParameter
;
2574 *matrix
= *graphics
->worldtrans
;
2578 GpStatus WINGDIPAPI
GdipGraphicsClear(GpGraphics
*graphics
, ARGB color
)
2584 TRACE("(%p, %x)\n", graphics
, color
);
2587 return InvalidParameter
;
2592 if((stat
= GdipCreateSolidFill(color
, &brush
)) != Ok
)
2596 if(!GetWindowRect(graphics
->hwnd
, &rect
)){
2597 GdipDeleteBrush((GpBrush
*)brush
);
2598 return GenericError
;
2601 GdipFillRectangle(graphics
, (GpBrush
*)brush
, 0.0, 0.0, (REAL
)(rect
.right
- rect
.left
),
2602 (REAL
)(rect
.bottom
- rect
.top
));
2605 GdipFillRectangle(graphics
, (GpBrush
*)brush
, 0.0, 0.0, (REAL
)GetDeviceCaps(graphics
->hdc
, HORZRES
),
2606 (REAL
)GetDeviceCaps(graphics
->hdc
, VERTRES
));
2608 GdipDeleteBrush((GpBrush
*)brush
);
2613 GpStatus WINGDIPAPI
GdipIsClipEmpty(GpGraphics
*graphics
, BOOL
*res
)
2615 TRACE("(%p, %p)\n", graphics
, res
);
2617 if(!graphics
|| !res
)
2618 return InvalidParameter
;
2620 return GdipIsEmptyRegion(graphics
->clip
, graphics
, res
);
2623 GpStatus WINGDIPAPI
GdipIsVisiblePoint(GpGraphics
*graphics
, REAL x
, REAL y
, BOOL
*result
)
2625 FIXME("(%p, %.2f, %.2f, %p) stub\n", graphics
, x
, y
, result
);
2627 if(!graphics
|| !result
)
2628 return InvalidParameter
;
2633 return NotImplemented
;
2636 GpStatus WINGDIPAPI
GdipIsVisiblePointI(GpGraphics
*graphics
, INT x
, INT y
, BOOL
*result
)
2638 FIXME("(%p, %d, %d, %p) stub\n", graphics
, x
, y
, result
);
2640 if(!graphics
|| !result
)
2641 return InvalidParameter
;
2646 return NotImplemented
;
2649 GpStatus WINGDIPAPI
GdipMeasureCharacterRanges(GpGraphics
* graphics
,
2650 GDIPCONST WCHAR
* string
, INT length
, GDIPCONST GpFont
* font
,
2651 GDIPCONST RectF
* layoutRect
, GDIPCONST GpStringFormat
*stringFormat
,
2652 INT regionCount
, GpRegion
** regions
)
2654 if (!(graphics
&& string
&& font
&& layoutRect
&& stringFormat
&& regions
))
2655 return InvalidParameter
;
2657 FIXME("stub: %p %s %d %p %p %p %d %p\n", graphics
, debugstr_w(string
),
2658 length
, font
, layoutRect
, stringFormat
, regionCount
, regions
);
2660 return NotImplemented
;
2663 /* Find the smallest rectangle that bounds the text when it is printed in rect
2664 * according to the format options listed in format. If rect has 0 width and
2665 * height, then just find the smallest rectangle that bounds the text when it's
2666 * printed at location (rect->X, rect-Y). */
2667 GpStatus WINGDIPAPI
GdipMeasureString(GpGraphics
*graphics
,
2668 GDIPCONST WCHAR
*string
, INT length
, GDIPCONST GpFont
*font
,
2669 GDIPCONST RectF
*rect
, GDIPCONST GpStringFormat
*format
, RectF
*bounds
,
2670 INT
*codepointsfitted
, INT
*linesfilled
)
2674 INT sum
= 0, height
= 0, fit
, fitcpy
, max_width
= 0, i
, j
, lret
, nwidth
,
2678 if(!graphics
|| !string
|| !font
|| !rect
)
2679 return InvalidParameter
;
2681 if(linesfilled
) *linesfilled
= 0;
2682 if(codepointsfitted
) *codepointsfitted
= 0;
2685 TRACE("may be ignoring some format flags: attr %x\n", format
->attr
);
2687 if(length
== -1) length
= lstrlenW(string
);
2689 stringdup
= GdipAlloc((length
+ 1) * sizeof(WCHAR
));
2690 if(!stringdup
) return OutOfMemory
;
2692 oldfont
= SelectObject(graphics
->hdc
, CreateFontIndirectW(&font
->lfw
));
2693 nwidth
= roundr(rect
->Width
);
2694 nheight
= roundr(rect
->Height
);
2696 if((nwidth
== 0) && (nheight
== 0))
2697 nwidth
= nheight
= INT_MAX
;
2699 for(i
= 0, j
= 0; i
< length
; i
++){
2700 if(!isprintW(string
[i
]) && (string
[i
] != '\n'))
2703 stringdup
[j
] = string
[i
];
2710 while(sum
< length
){
2711 GetTextExtentExPointW(graphics
->hdc
, stringdup
+ sum
, length
- sum
,
2712 nwidth
, &fit
, NULL
, &size
);
2718 for(lret
= 0; lret
< fit
; lret
++)
2719 if(*(stringdup
+ sum
+ lret
) == '\n')
2722 /* Line break code (may look strange, but it imitates windows). */
2724 fit
= lret
; /* this is not an off-by-one error */
2725 else if(fit
< (length
- sum
)){
2726 if(*(stringdup
+ sum
+ fit
) == ' ')
2727 while(*(stringdup
+ sum
+ fit
) == ' ')
2730 while(*(stringdup
+ sum
+ fit
- 1) != ' '){
2733 if(*(stringdup
+ sum
+ fit
) == '\t')
2743 GetTextExtentExPointW(graphics
->hdc
, stringdup
+ sum
, fit
,
2744 nwidth
, &j
, NULL
, &size
);
2746 sum
+= fit
+ (lret
< fitcpy
? 1 : 0);
2747 if(codepointsfitted
) *codepointsfitted
= sum
;
2750 if(linesfilled
) *linesfilled
+= size
.cy
;
2751 max_width
= max(max_width
, size
.cx
);
2753 if(height
> nheight
)
2756 /* Stop if this was a linewrap (but not if it was a linebreak). */
2757 if((lret
== fitcpy
) && format
&& (format
->attr
& StringFormatFlagsNoWrap
))
2761 bounds
->X
= rect
->X
;
2762 bounds
->Y
= rect
->Y
;
2763 bounds
->Width
= (REAL
)max_width
;
2764 bounds
->Height
= (REAL
) min(height
, nheight
);
2766 GdipFree(stringdup
);
2767 DeleteObject(SelectObject(graphics
->hdc
, oldfont
));
2772 GpStatus WINGDIPAPI
GdipResetClip(GpGraphics
*graphics
)
2774 TRACE("(%p)\n", graphics
);
2777 return InvalidParameter
;
2782 return GdipSetInfinite(graphics
->clip
);
2785 GpStatus WINGDIPAPI
GdipResetWorldTransform(GpGraphics
*graphics
)
2787 TRACE("(%p)\n", graphics
);
2790 return InvalidParameter
;
2795 graphics
->worldtrans
->matrix
[0] = 1.0;
2796 graphics
->worldtrans
->matrix
[1] = 0.0;
2797 graphics
->worldtrans
->matrix
[2] = 0.0;
2798 graphics
->worldtrans
->matrix
[3] = 1.0;
2799 graphics
->worldtrans
->matrix
[4] = 0.0;
2800 graphics
->worldtrans
->matrix
[5] = 0.0;
2805 GpStatus WINGDIPAPI
GdipRestoreGraphics(GpGraphics
*graphics
, GraphicsState state
)
2810 return InvalidParameter
;
2813 FIXME("graphics state not implemented\n");
2818 GpStatus WINGDIPAPI
GdipRotateWorldTransform(GpGraphics
*graphics
, REAL angle
,
2819 GpMatrixOrder order
)
2821 TRACE("(%p, %.2f, %d)\n", graphics
, angle
, order
);
2824 return InvalidParameter
;
2829 return GdipRotateMatrix(graphics
->worldtrans
, angle
, order
);
2832 GpStatus WINGDIPAPI
GdipSaveGraphics(GpGraphics
*graphics
, GraphicsState
*state
)
2836 if(!graphics
|| !state
)
2837 return InvalidParameter
;
2840 FIXME("graphics state not implemented\n");
2842 *state
= 0xdeadbeef;
2846 GpStatus WINGDIPAPI
GdipBeginContainer2(GpGraphics
*graphics
, GraphicsContainer
*state
)
2848 FIXME("(%p, %p)\n", graphics
, state
);
2850 if(!graphics
|| !state
)
2851 return InvalidParameter
;
2853 *state
= 0xdeadbeef;
2857 GpStatus WINGDIPAPI
GdipEndContainer(GpGraphics
*graphics
, GraphicsState state
)
2859 FIXME("(%p, 0x%x)\n", graphics
, state
);
2861 if(!graphics
|| !state
)
2862 return InvalidParameter
;
2867 GpStatus WINGDIPAPI
GdipScaleWorldTransform(GpGraphics
*graphics
, REAL sx
,
2868 REAL sy
, GpMatrixOrder order
)
2870 TRACE("(%p, %.2f, %.2f, %d)\n", graphics
, sx
, sy
, order
);
2873 return InvalidParameter
;
2878 return GdipScaleMatrix(graphics
->worldtrans
, sx
, sy
, order
);
2881 GpStatus WINGDIPAPI
GdipSetClipGraphics(GpGraphics
*graphics
, GpGraphics
*srcgraphics
,
2884 TRACE("(%p, %p, %d)\n", graphics
, srcgraphics
, mode
);
2886 if(!graphics
|| !srcgraphics
)
2887 return InvalidParameter
;
2889 return GdipCombineRegionRegion(graphics
->clip
, srcgraphics
->clip
, mode
);
2892 GpStatus WINGDIPAPI
GdipSetCompositingMode(GpGraphics
*graphics
,
2893 CompositingMode mode
)
2895 TRACE("(%p, %d)\n", graphics
, mode
);
2898 return InvalidParameter
;
2903 graphics
->compmode
= mode
;
2908 GpStatus WINGDIPAPI
GdipSetCompositingQuality(GpGraphics
*graphics
,
2909 CompositingQuality quality
)
2911 TRACE("(%p, %d)\n", graphics
, quality
);
2914 return InvalidParameter
;
2919 graphics
->compqual
= quality
;
2924 GpStatus WINGDIPAPI
GdipSetInterpolationMode(GpGraphics
*graphics
,
2925 InterpolationMode mode
)
2927 TRACE("(%p, %d)\n", graphics
, mode
);
2930 return InvalidParameter
;
2935 graphics
->interpolation
= mode
;
2940 GpStatus WINGDIPAPI
GdipSetPageScale(GpGraphics
*graphics
, REAL scale
)
2942 TRACE("(%p, %.2f)\n", graphics
, scale
);
2944 if(!graphics
|| (scale
<= 0.0))
2945 return InvalidParameter
;
2950 graphics
->scale
= scale
;
2955 GpStatus WINGDIPAPI
GdipSetPageUnit(GpGraphics
*graphics
, GpUnit unit
)
2957 TRACE("(%p, %d)\n", graphics
, unit
);
2960 return InvalidParameter
;
2965 if(unit
== UnitWorld
)
2966 return InvalidParameter
;
2968 graphics
->unit
= unit
;
2973 GpStatus WINGDIPAPI
GdipSetPixelOffsetMode(GpGraphics
*graphics
, PixelOffsetMode
2976 TRACE("(%p, %d)\n", graphics
, mode
);
2979 return InvalidParameter
;
2984 graphics
->pixeloffset
= mode
;
2989 GpStatus WINGDIPAPI
GdipSetSmoothingMode(GpGraphics
*graphics
, SmoothingMode mode
)
2991 TRACE("(%p, %d)\n", graphics
, mode
);
2994 return InvalidParameter
;
2999 graphics
->smoothing
= mode
;
3004 GpStatus WINGDIPAPI
GdipSetTextContrast(GpGraphics
*graphics
, UINT contrast
)
3006 TRACE("(%p, %d)\n", graphics
, contrast
);
3009 return InvalidParameter
;
3011 graphics
->textcontrast
= contrast
;
3016 GpStatus WINGDIPAPI
GdipSetTextRenderingHint(GpGraphics
*graphics
,
3017 TextRenderingHint hint
)
3019 TRACE("(%p, %d)\n", graphics
, hint
);
3022 return InvalidParameter
;
3027 graphics
->texthint
= hint
;
3032 GpStatus WINGDIPAPI
GdipSetWorldTransform(GpGraphics
*graphics
, GpMatrix
*matrix
)
3034 TRACE("(%p, %p)\n", graphics
, matrix
);
3036 if(!graphics
|| !matrix
)
3037 return InvalidParameter
;
3042 GdipDeleteMatrix(graphics
->worldtrans
);
3043 return GdipCloneMatrix(matrix
, &graphics
->worldtrans
);
3046 GpStatus WINGDIPAPI
GdipTranslateWorldTransform(GpGraphics
*graphics
, REAL dx
,
3047 REAL dy
, GpMatrixOrder order
)
3049 TRACE("(%p, %.2f, %.2f, %d)\n", graphics
, dx
, dy
, order
);
3052 return InvalidParameter
;
3057 return GdipTranslateMatrix(graphics
->worldtrans
, dx
, dy
, order
);
3060 GpStatus WINGDIPAPI
GdipSetClipPath(GpGraphics
*graphics
, GpPath
*path
, CombineMode mode
)
3062 TRACE("(%p, %p, %d)\n", graphics
, path
, mode
);
3065 return InvalidParameter
;
3070 return GdipCombineRegionPath(graphics
->clip
, path
, mode
);
3073 GpStatus WINGDIPAPI
GdipSetClipRect(GpGraphics
*graphics
, REAL x
, REAL y
,
3074 REAL width
, REAL height
,
3079 TRACE("(%p, %.2f, %.2f, %.2f, %.2f, %d)\n", graphics
, x
, y
, width
, height
, mode
);
3082 return InvalidParameter
;
3090 rect
.Height
= height
;
3092 return GdipCombineRegionRect(graphics
->clip
, &rect
, mode
);
3095 GpStatus WINGDIPAPI
GdipSetClipRectI(GpGraphics
*graphics
, INT x
, INT y
,
3096 INT width
, INT height
,
3099 TRACE("(%p, %d, %d, %d, %d, %d)\n", graphics
, x
, y
, width
, height
, mode
);
3102 return InvalidParameter
;
3107 return GdipSetClipRect(graphics
, (REAL
)x
, (REAL
)y
, (REAL
)width
, (REAL
)height
, mode
);
3110 GpStatus WINGDIPAPI
GdipSetClipRegion(GpGraphics
*graphics
, GpRegion
*region
,
3113 TRACE("(%p, %p, %d)\n", graphics
, region
, mode
);
3115 if(!graphics
|| !region
)
3116 return InvalidParameter
;
3121 return GdipCombineRegionRegion(graphics
->clip
, region
, mode
);
3124 GpStatus WINGDIPAPI
GdipSetMetafileDownLevelRasterizationLimit(GpMetafile
*metafile
,
3130 FIXME("not implemented\n");
3132 return NotImplemented
;
3135 GpStatus WINGDIPAPI
GdipDrawPolygon(GpGraphics
*graphics
,GpPen
*pen
,GDIPCONST GpPointF
*points
,
3141 TRACE("(%p, %p, %d)\n", graphics
, points
, count
);
3143 if(!graphics
|| !pen
|| count
<=0)
3144 return InvalidParameter
;
3149 pti
= GdipAlloc(sizeof(POINT
) * count
);
3151 save_state
= prepare_dc(graphics
, pen
);
3152 SelectObject(graphics
->hdc
, GetStockObject(NULL_BRUSH
));
3154 transform_and_round_points(graphics
, pti
, (GpPointF
*)points
, count
);
3155 Polygon(graphics
->hdc
, pti
, count
);
3157 restore_dc(graphics
, save_state
);
3163 GpStatus WINGDIPAPI
GdipDrawPolygonI(GpGraphics
*graphics
,GpPen
*pen
,GDIPCONST GpPoint
*points
,
3170 TRACE("(%p, %p, %p, %d)\n", graphics
, pen
, points
, count
);
3172 if(count
<=0) return InvalidParameter
;
3173 ptf
= GdipAlloc(sizeof(GpPointF
) * count
);
3175 for(i
= 0;i
< count
; i
++){
3176 ptf
[i
].X
= (REAL
)points
[i
].X
;
3177 ptf
[i
].Y
= (REAL
)points
[i
].Y
;
3180 ret
= GdipDrawPolygon(graphics
,pen
,ptf
,count
);
3186 GpStatus WINGDIPAPI
GdipGetDpiX(GpGraphics
*graphics
, REAL
* dpi
)
3188 TRACE("(%p, %p)\n", graphics
, dpi
);
3190 if(!graphics
|| !dpi
)
3191 return InvalidParameter
;
3196 *dpi
= (REAL
)GetDeviceCaps(graphics
->hdc
, LOGPIXELSX
);
3201 GpStatus WINGDIPAPI
GdipGetDpiY(GpGraphics
*graphics
, REAL
* dpi
)
3203 TRACE("(%p, %p)\n", graphics
, dpi
);
3205 if(!graphics
|| !dpi
)
3206 return InvalidParameter
;
3211 *dpi
= (REAL
)GetDeviceCaps(graphics
->hdc
, LOGPIXELSY
);
3216 GpStatus WINGDIPAPI
GdipMultiplyWorldTransform(GpGraphics
*graphics
, GDIPCONST GpMatrix
*matrix
,
3217 GpMatrixOrder order
)
3222 TRACE("(%p, %p, %d)\n", graphics
, matrix
, order
);
3224 if(!graphics
|| !matrix
)
3225 return InvalidParameter
;
3230 m
= *(graphics
->worldtrans
);
3232 ret
= GdipMultiplyMatrix(&m
, (GpMatrix
*)matrix
, order
);
3234 *(graphics
->worldtrans
) = m
;
3239 GpStatus WINGDIPAPI
GdipGetDC(GpGraphics
*graphics
, HDC
*hdc
)
3241 TRACE("(%p, %p)\n", graphics
, hdc
);
3243 if(!graphics
|| !hdc
)
3244 return InvalidParameter
;
3249 *hdc
= graphics
->hdc
;
3250 graphics
->busy
= TRUE
;
3255 GpStatus WINGDIPAPI
GdipReleaseDC(GpGraphics
*graphics
, HDC hdc
)
3257 TRACE("(%p, %p)\n", graphics
, hdc
);
3260 return InvalidParameter
;
3262 if(graphics
->hdc
!= hdc
|| !(graphics
->busy
))
3263 return InvalidParameter
;
3265 graphics
->busy
= FALSE
;
3270 GpStatus WINGDIPAPI
GdipGetClip(GpGraphics
*graphics
, GpRegion
*region
)
3275 TRACE("(%p, %p)\n", graphics
, region
);
3277 if(!graphics
|| !region
)
3278 return InvalidParameter
;
3283 if((status
= GdipCloneRegion(graphics
->clip
, &clip
)) != Ok
)
3286 /* free everything except root node and header */
3287 delete_element(®ion
->node
);
3288 memcpy(region
, clip
, sizeof(GpRegion
));
3293 GpStatus WINGDIPAPI
GdipTransformPoints(GpGraphics
*graphics
, GpCoordinateSpace dst_space
,
3294 GpCoordinateSpace src_space
, GpPointF
*points
, INT count
)
3296 if(!graphics
|| !points
|| count
<= 0)
3297 return InvalidParameter
;
3302 FIXME("(%p, %d, %d, %p, %d): stub\n", graphics
, dst_space
, src_space
, points
, count
);
3304 return NotImplemented
;
3307 GpStatus WINGDIPAPI
GdipTransformPointsI(GpGraphics
*graphics
, GpCoordinateSpace dst_space
,
3308 GpCoordinateSpace src_space
, GpPoint
*points
, INT count
)
3310 FIXME("(%p, %d, %d, %p, %d): stub\n", graphics
, dst_space
, src_space
, points
, count
);
3312 return NotImplemented
;
3315 HPALETTE WINGDIPAPI
GdipCreateHalftonePalette(void)