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 static ARGB blend_colors(ARGB start, ARGB end, REAL position)
179 for (i=0xff; i<=0xff0000; i = i << 8)
180 result |= (int)((start&i)*(1.0f - position)+(end&i)*(position))&i;
184 static ARGB blend_line_gradient(GpLineGradient* brush, REAL position)
188 /* clamp to between 0.0 and 1.0, using the wrap mode */
189 if (brush->wrap == WrapModeTile)
191 position = fmodf(position, 1.0f);
192 if (position < 0.0f) position += 1.0f;
194 else /* WrapModeFlip* */
196 position = fmodf(position, 2.0f);
197 if (position < 0.0f) position += 2.0f;
198 if (position > 1.0f) position = 2.0f - position;
201 if (brush->blendcount == 1)
206 REAL left_blendpos, left_blendfac, right_blendpos, right_blendfac;
209 /* locate the blend positions surrounding this position */
210 while (position > brush->blendpos[i])
213 /* interpolate between the blend positions */
214 left_blendpos = brush->blendpos[i-1];
215 left_blendfac = brush->blendfac[i-1];
216 right_blendpos = brush->blendpos[i];
217 right_blendfac = brush->blendfac[i];
218 range = right_blendpos - left_blendpos;
219 blendfac = (left_blendfac * (right_blendpos - position) +
220 right_blendfac * (position - left_blendpos)) / range;
222 return blend_colors(brush->startcolor, brush->endcolor, blendfac);
225 static void brush_fill_path(GpGraphics *graphics, GpBrush* brush)
229 case BrushTypeLinearGradient:
231 GpLineGradient *line = (GpLineGradient*)brush;
234 SelectClipPath(graphics->hdc, RGN_AND);
235 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
237 GpPointF endpointsf[2];
241 SelectObject(graphics->hdc, GetStockObject(NULL_PEN));
243 endpointsf[0] = line->startpoint;
244 endpointsf[1] = line->endpoint;
245 transform_and_round_points(graphics, endpointsi, endpointsf, 2);
247 if (abs(endpointsi[0].x-endpointsi[1].x) > abs(endpointsi[0].y-endpointsi[1].y))
249 /* vertical-ish gradient */
250 int startx, endx; /* x co-ordinates of endpoints shifted to intersect the top of the visible rectangle */
251 int startbottomx; /* x co-ordinate of start point shifted to intersect the bottom of the visible rectangle */
254 HBRUSH hbrush, hprevbrush;
255 int leftx, rightx; /* x co-ordinates where the leftmost and rightmost gradient lines hit the top of the visible rectangle */
257 int tilt; /* horizontal distance covered by a gradient line */
259 startx = roundr((rc.top - endpointsf[0].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[0].X);
260 endx = roundr((rc.top - endpointsf[1].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[1].X);
261 width = endx - startx;
262 startbottomx = roundr((rc.bottom - endpointsf[0].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[0].X);
263 tilt = startx - startbottomx;
265 if (startx >= startbottomx)
268 rightx = rc.right + tilt;
272 leftx = rc.left + tilt;
276 poly[0].y = rc.bottom;
279 poly[3].y = rc.bottom;
281 for (x=leftx; x<=rightx; x++)
283 ARGB argb = blend_line_gradient(line, (x-startx)/(REAL)width);
284 col = ARGB2COLORREF(argb);
285 hbrush = CreateSolidBrush(col);
286 hprevbrush = SelectObject(graphics->hdc, hbrush);
287 poly[0].x = x - tilt - 1;
290 poly[3].x = x - tilt;
291 Polygon(graphics->hdc, poly, 4);
292 SelectObject(graphics->hdc, hprevbrush);
293 DeleteObject(hbrush);
296 else if (endpointsi[0].y != endpointsi[1].y)
298 /* horizontal-ish gradient */
299 int starty, endy; /* y co-ordinates of endpoints shifted to intersect the left of the visible rectangle */
300 int startrighty; /* y co-ordinate of start point shifted to intersect the right of the visible rectangle */
303 HBRUSH hbrush, hprevbrush;
304 int topy, bottomy; /* y co-ordinates where the topmost and bottommost gradient lines hit the left of the visible rectangle */
306 int tilt; /* vertical distance covered by a gradient line */
308 starty = roundr((rc.left - endpointsf[0].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[0].Y);
309 endy = roundr((rc.left - endpointsf[1].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[1].Y);
310 height = endy - starty;
311 startrighty = roundr((rc.right - endpointsf[0].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[0].Y);
312 tilt = starty - startrighty;
314 if (starty >= startrighty)
317 bottomy = rc.bottom + tilt;
321 topy = rc.top + tilt;
325 poly[0].x = rc.right;
328 poly[3].x = rc.right;
330 for (y=topy; y<=bottomy; y++)
332 ARGB argb = blend_line_gradient(line, (y-starty)/(REAL)height);
333 col = ARGB2COLORREF(argb);
334 hbrush = CreateSolidBrush(col);
335 hprevbrush = SelectObject(graphics->hdc, hbrush);
336 poly[0].y = y - tilt - 1;
339 poly[3].y = y - tilt;
340 Polygon(graphics->hdc, poly, 4);
341 SelectObject(graphics->hdc, hprevbrush);
342 DeleteObject(hbrush);
345 /* else startpoint == endpoint */
349 case BrushTypeSolidColor:
351 GpSolidFill *fill = (GpSolidFill*)brush;
355 /* partially transparent fill */
357 SelectClipPath(graphics->hdc, RGN_AND);
358 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
360 HDC hdc = CreateCompatibleDC(NULL);
366 oldbmp = SelectObject(hdc, fill->bmp);
368 bf.BlendOp = AC_SRC_OVER;
370 bf.SourceConstantAlpha = 255;
371 bf.AlphaFormat = AC_SRC_ALPHA;
373 GdiAlphaBlend(graphics->hdc, rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top, hdc, 0, 0, 1, 1, bf);
375 SelectObject(hdc, oldbmp);
381 /* else fall through */
384 SelectObject(graphics->hdc, brush->gdibrush);
385 FillPath(graphics->hdc);
390 /* GdipDrawPie/GdipFillPie helper function */
391 static void draw_pie(GpGraphics *graphics, REAL x, REAL y, REAL width,
392 REAL height, REAL startAngle, REAL sweepAngle)
399 ptf[1].X = x + width;
400 ptf[1].Y = y + height;
402 deg2xy(startAngle+sweepAngle, x + width / 2.0, y + width / 2.0, &ptf[2].X, &ptf[2].Y);
403 deg2xy(startAngle, x + width / 2.0, y + width / 2.0, &ptf[3].X, &ptf[3].Y);
405 transform_and_round_points(graphics, pti, ptf, 4);
407 Pie(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y, pti[2].x,
408 pti[2].y, pti[3].x, pti[3].y);
411 /* Draws the linecap the specified color and size on the hdc. The linecap is in
412 * direction of the line from x1, y1 to x2, y2 and is anchored on x2, y2. Probably
413 * should not be called on an hdc that has a path you care about. */
414 static void draw_cap(GpGraphics *graphics, COLORREF color, GpLineCap cap, REAL size,
415 const GpCustomLineCap *custom, REAL x1, REAL y1, REAL x2, REAL y2)
417 HGDIOBJ oldbrush = NULL, oldpen = NULL;
418 GpMatrix *matrix = NULL;
421 PointF ptf[4], *custptf = NULL;
422 POINT pt[4], *custpt = NULL;
424 REAL theta, dsmall, dbig, dx, dy = 0.0;
429 if((x1 == x2) && (y1 == y2))
432 theta = gdiplus_atan2(y2 - y1, x2 - x1);
434 customstroke = (cap == LineCapCustom) && custom && (!custom->fill);
436 brush = CreateSolidBrush(color);
437 lb.lbStyle = BS_SOLID;
440 pen = ExtCreatePen(PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT |
441 PS_JOIN_MITER, 1, &lb, 0,
443 oldbrush = SelectObject(graphics->hdc, brush);
444 oldpen = SelectObject(graphics->hdc, pen);
451 case LineCapSquareAnchor:
452 case LineCapDiamondAnchor:
453 size = size * (cap & LineCapNoAnchor ? ANCHOR_WIDTH : 1.0) / 2.0;
454 if(cap == LineCapDiamondAnchor){
455 dsmall = cos(theta + M_PI_2) * size;
456 dbig = sin(theta + M_PI_2) * size;
459 dsmall = cos(theta + M_PI_4) * size;
460 dbig = sin(theta + M_PI_4) * size;
463 ptf[0].X = x2 - dsmall;
464 ptf[1].X = x2 + dbig;
466 ptf[0].Y = y2 - dbig;
467 ptf[3].Y = y2 + dsmall;
469 ptf[1].Y = y2 - dsmall;
470 ptf[2].Y = y2 + dbig;
472 ptf[3].X = x2 - dbig;
473 ptf[2].X = x2 + dsmall;
475 transform_and_round_points(graphics, pt, ptf, 4);
476 Polygon(graphics->hdc, pt, 4);
479 case LineCapArrowAnchor:
480 size = size * 4.0 / sqrt(3.0);
482 dx = cos(M_PI / 6.0 + theta) * size;
483 dy = sin(M_PI / 6.0 + theta) * size;
488 dx = cos(- M_PI / 6.0 + theta) * size;
489 dy = sin(- M_PI / 6.0 + theta) * size;
497 transform_and_round_points(graphics, pt, ptf, 3);
498 Polygon(graphics->hdc, pt, 3);
501 case LineCapRoundAnchor:
502 dx = dy = ANCHOR_WIDTH * size / 2.0;
509 transform_and_round_points(graphics, pt, ptf, 2);
510 Ellipse(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y);
513 case LineCapTriangle:
515 dx = cos(M_PI_2 + theta) * size;
516 dy = sin(M_PI_2 + theta) * size;
523 dx = cos(theta) * size;
524 dy = sin(theta) * size;
529 transform_and_round_points(graphics, pt, ptf, 3);
530 Polygon(graphics->hdc, pt, 3);
534 dx = dy = size / 2.0;
541 dx = -cos(M_PI_2 + theta) * size;
542 dy = -sin(M_PI_2 + theta) * size;
549 transform_and_round_points(graphics, pt, ptf, 4);
550 Pie(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y, pt[2].x,
551 pt[2].y, pt[3].x, pt[3].y);
558 count = custom->pathdata.Count;
559 custptf = GdipAlloc(count * sizeof(PointF));
560 custpt = GdipAlloc(count * sizeof(POINT));
561 tp = GdipAlloc(count);
563 if(!custptf || !custpt || !tp || (GdipCreateMatrix(&matrix) != Ok))
566 memcpy(custptf, custom->pathdata.Points, count * sizeof(PointF));
568 GdipScaleMatrix(matrix, size, size, MatrixOrderAppend);
569 GdipRotateMatrix(matrix, (180.0 / M_PI) * (theta - M_PI_2),
571 GdipTranslateMatrix(matrix, x2, y2, MatrixOrderAppend);
572 GdipTransformMatrixPoints(matrix, custptf, count);
574 transform_and_round_points(graphics, custpt, custptf, count);
576 for(i = 0; i < count; i++)
577 tp[i] = convert_path_point_type(custom->pathdata.Types[i]);
580 BeginPath(graphics->hdc);
581 PolyDraw(graphics->hdc, custpt, tp, count);
582 EndPath(graphics->hdc);
583 StrokeAndFillPath(graphics->hdc);
586 PolyDraw(graphics->hdc, custpt, tp, count);
592 GdipDeleteMatrix(matrix);
599 SelectObject(graphics->hdc, oldbrush);
600 SelectObject(graphics->hdc, oldpen);
606 /* Shortens the line by the given percent by changing x2, y2.
607 * If percent is > 1.0 then the line will change direction.
608 * If percent is negative it can lengthen the line. */
609 static void shorten_line_percent(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL percent)
611 REAL dist, theta, dx, dy;
613 if((y1 == *y2) && (x1 == *x2))
616 dist = sqrt((*x2 - x1) * (*x2 - x1) + (*y2 - y1) * (*y2 - y1)) * -percent;
617 theta = gdiplus_atan2((*y2 - y1), (*x2 - x1));
618 dx = cos(theta) * dist;
619 dy = sin(theta) * dist;
625 /* Shortens the line by the given amount by changing x2, y2.
626 * If the amount is greater than the distance, the line will become length 0.
627 * If the amount is negative, it can lengthen the line. */
628 static void shorten_line_amt(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL amt)
630 REAL dx, dy, percent;
634 if(dx == 0 && dy == 0)
637 percent = amt / sqrt(dx * dx + dy * dy);
644 shorten_line_percent(x1, y1, x2, y2, percent);
647 /* Draws lines between the given points, and if caps is true then draws an endcap
648 * at the end of the last line. */
649 static GpStatus draw_polyline(GpGraphics *graphics, GpPen *pen,
650 GDIPCONST GpPointF * pt, INT count, BOOL caps)
653 GpPointF *ptcopy = NULL;
654 GpStatus status = GenericError;
659 pti = GdipAlloc(count * sizeof(POINT));
660 ptcopy = GdipAlloc(count * sizeof(GpPointF));
663 status = OutOfMemory;
667 memcpy(ptcopy, pt, count * sizeof(GpPointF));
670 if(pen->endcap == LineCapArrowAnchor)
671 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
672 &ptcopy[count-1].X, &ptcopy[count-1].Y, pen->width);
673 else if((pen->endcap == LineCapCustom) && pen->customend)
674 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
675 &ptcopy[count-1].X, &ptcopy[count-1].Y,
676 pen->customend->inset * pen->width);
678 if(pen->startcap == LineCapArrowAnchor)
679 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
680 &ptcopy[0].X, &ptcopy[0].Y, pen->width);
681 else if((pen->startcap == LineCapCustom) && pen->customstart)
682 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
683 &ptcopy[0].X, &ptcopy[0].Y,
684 pen->customstart->inset * pen->width);
686 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
687 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X, pt[count - 1].Y);
688 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
689 pt[1].X, pt[1].Y, pt[0].X, pt[0].Y);
692 transform_and_round_points(graphics, pti, ptcopy, count);
694 if(Polyline(graphics->hdc, pti, count))
704 /* Conducts a linear search to find the bezier points that will back off
705 * the endpoint of the curve by a distance of amt. Linear search works
706 * better than binary in this case because there are multiple solutions,
707 * and binary searches often find a bad one. I don't think this is what
708 * Windows does but short of rendering the bezier without GDI's help it's
709 * the best we can do. If rev then work from the start of the passed points
710 * instead of the end. */
711 static void shorten_bezier_amt(GpPointF * pt, REAL amt, BOOL rev)
714 REAL percent = 0.00, dx, dy, origx, origy, diff = -1.0;
715 INT i, first = 0, second = 1, third = 2, fourth = 3;
724 origx = pt[fourth].X;
725 origy = pt[fourth].Y;
726 memcpy(origpt, pt, sizeof(GpPointF) * 4);
728 for(i = 0; (i < MAX_ITERS) && (diff < amt); i++){
729 /* reset bezier points to original values */
730 memcpy(pt, origpt, sizeof(GpPointF) * 4);
731 /* Perform magic on bezier points. Order is important here.*/
732 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
733 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
734 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
735 shorten_line_percent(pt[first].X, pt[first].Y, &pt[second].X, &pt[second].Y, percent);
736 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
737 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
739 dx = pt[fourth].X - origx;
740 dy = pt[fourth].Y - origy;
742 diff = sqrt(dx * dx + dy * dy);
743 percent += 0.0005 * amt;
747 /* Draws bezier curves between given points, and if caps is true then draws an
748 * endcap at the end of the last line. */
749 static GpStatus draw_polybezier(GpGraphics *graphics, GpPen *pen,
750 GDIPCONST GpPointF * pt, INT count, BOOL caps)
754 GpStatus status = GenericError;
759 pti = GdipAlloc(count * sizeof(POINT));
760 ptcopy = GdipAlloc(count * sizeof(GpPointF));
763 status = OutOfMemory;
767 memcpy(ptcopy, pt, count * sizeof(GpPointF));
770 if(pen->endcap == LineCapArrowAnchor)
771 shorten_bezier_amt(&ptcopy[count-4], pen->width, FALSE);
772 else if((pen->endcap == LineCapCustom) && pen->customend)
773 shorten_bezier_amt(&ptcopy[count-4], pen->width * pen->customend->inset,
776 if(pen->startcap == LineCapArrowAnchor)
777 shorten_bezier_amt(ptcopy, pen->width, TRUE);
778 else if((pen->startcap == LineCapCustom) && pen->customstart)
779 shorten_bezier_amt(ptcopy, pen->width * pen->customstart->inset, TRUE);
781 /* the direction of the line cap is parallel to the direction at the
782 * end of the bezier (which, if it has been shortened, is not the same
783 * as the direction from pt[count-2] to pt[count-1]) */
784 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
785 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
786 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
787 pt[count - 1].X, pt[count - 1].Y);
789 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
790 pt[0].X - (ptcopy[0].X - ptcopy[1].X),
791 pt[0].Y - (ptcopy[0].Y - ptcopy[1].Y), pt[0].X, pt[0].Y);
794 transform_and_round_points(graphics, pti, ptcopy, count);
796 PolyBezier(graphics->hdc, pti, count);
807 /* Draws a combination of bezier curves and lines between points. */
808 static GpStatus draw_poly(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF * pt,
809 GDIPCONST BYTE * types, INT count, BOOL caps)
811 POINT *pti = GdipAlloc(count * sizeof(POINT));
812 BYTE *tp = GdipAlloc(count);
813 GpPointF *ptcopy = GdipAlloc(count * sizeof(GpPointF));
815 GpStatus status = GenericError;
821 if(!pti || !tp || !ptcopy){
822 status = OutOfMemory;
826 for(i = 1; i < count; i++){
827 if((types[i] & PathPointTypePathTypeMask) == PathPointTypeBezier){
828 if((i + 2 >= count) || !(types[i + 1] & PathPointTypeBezier)
829 || !(types[i + 1] & PathPointTypeBezier)){
830 ERR("Bad bezier points\n");
837 memcpy(ptcopy, pt, count * sizeof(GpPointF));
839 /* If we are drawing caps, go through the points and adjust them accordingly,
840 * and draw the caps. */
842 switch(types[count - 1] & PathPointTypePathTypeMask){
843 case PathPointTypeBezier:
844 if(pen->endcap == LineCapArrowAnchor)
845 shorten_bezier_amt(&ptcopy[count - 4], pen->width, FALSE);
846 else if((pen->endcap == LineCapCustom) && pen->customend)
847 shorten_bezier_amt(&ptcopy[count - 4],
848 pen->width * pen->customend->inset, FALSE);
850 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
851 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
852 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
853 pt[count - 1].X, pt[count - 1].Y);
856 case PathPointTypeLine:
857 if(pen->endcap == LineCapArrowAnchor)
858 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
859 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
861 else if((pen->endcap == LineCapCustom) && pen->customend)
862 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
863 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
864 pen->customend->inset * pen->width);
866 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
867 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X,
872 ERR("Bad path last point\n");
876 /* Find start of points */
877 for(j = 1; j < count && ((types[j] & PathPointTypePathTypeMask)
878 == PathPointTypeStart); j++);
880 switch(types[j] & PathPointTypePathTypeMask){
881 case PathPointTypeBezier:
882 if(pen->startcap == LineCapArrowAnchor)
883 shorten_bezier_amt(&ptcopy[j - 1], pen->width, TRUE);
884 else if((pen->startcap == LineCapCustom) && pen->customstart)
885 shorten_bezier_amt(&ptcopy[j - 1],
886 pen->width * pen->customstart->inset, TRUE);
888 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
889 pt[j - 1].X - (ptcopy[j - 1].X - ptcopy[j].X),
890 pt[j - 1].Y - (ptcopy[j - 1].Y - ptcopy[j].Y),
891 pt[j - 1].X, pt[j - 1].Y);
894 case PathPointTypeLine:
895 if(pen->startcap == LineCapArrowAnchor)
896 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
897 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
899 else if((pen->startcap == LineCapCustom) && pen->customstart)
900 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
901 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
902 pen->customstart->inset * pen->width);
904 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
905 pt[j].X, pt[j].Y, pt[j - 1].X,
910 ERR("Bad path points\n");
915 transform_and_round_points(graphics, pti, ptcopy, count);
917 for(i = 0; i < count; i++){
918 tp[i] = convert_path_point_type(types[i]);
921 PolyDraw(graphics->hdc, pti, tp, count);
933 GpStatus trace_path(GpGraphics *graphics, GpPath *path)
937 BeginPath(graphics->hdc);
938 result = draw_poly(graphics, NULL, path->pathdata.Points,
939 path->pathdata.Types, path->pathdata.Count, FALSE);
940 EndPath(graphics->hdc);
944 GpStatus WINGDIPAPI GdipCreateFromHDC(HDC hdc, GpGraphics **graphics)
946 TRACE("(%p, %p)\n", hdc, graphics);
948 return GdipCreateFromHDC2(hdc, NULL, graphics);
951 GpStatus WINGDIPAPI GdipCreateFromHDC2(HDC hdc, HANDLE hDevice, GpGraphics **graphics)
955 TRACE("(%p, %p, %p)\n", hdc, hDevice, graphics);
957 if(hDevice != NULL) {
958 FIXME("Don't know how to hadle parameter hDevice\n");
959 return NotImplemented;
966 return InvalidParameter;
968 *graphics = GdipAlloc(sizeof(GpGraphics));
969 if(!*graphics) return OutOfMemory;
971 if((retval = GdipCreateMatrix(&(*graphics)->worldtrans)) != Ok){
976 if((retval = GdipCreateRegion(&(*graphics)->clip)) != Ok){
977 GdipFree((*graphics)->worldtrans);
982 (*graphics)->hdc = hdc;
983 (*graphics)->hwnd = WindowFromDC(hdc);
984 (*graphics)->owndc = FALSE;
985 (*graphics)->smoothing = SmoothingModeDefault;
986 (*graphics)->compqual = CompositingQualityDefault;
987 (*graphics)->interpolation = InterpolationModeDefault;
988 (*graphics)->pixeloffset = PixelOffsetModeDefault;
989 (*graphics)->compmode = CompositingModeSourceOver;
990 (*graphics)->unit = UnitDisplay;
991 (*graphics)->scale = 1.0;
992 (*graphics)->busy = FALSE;
993 (*graphics)->textcontrast = 4;
998 GpStatus WINGDIPAPI GdipCreateFromHWND(HWND hwnd, GpGraphics **graphics)
1003 TRACE("(%p, %p)\n", hwnd, graphics);
1007 if((ret = GdipCreateFromHDC(hdc, graphics)) != Ok)
1009 ReleaseDC(hwnd, hdc);
1013 (*graphics)->hwnd = hwnd;
1014 (*graphics)->owndc = TRUE;
1019 /* FIXME: no icm handling */
1020 GpStatus WINGDIPAPI GdipCreateFromHWNDICM(HWND hwnd, GpGraphics **graphics)
1022 TRACE("(%p, %p)\n", hwnd, graphics);
1024 return GdipCreateFromHWND(hwnd, graphics);
1027 GpStatus WINGDIPAPI GdipCreateMetafileFromEmf(HENHMETAFILE hemf, BOOL delete,
1028 GpMetafile **metafile)
1032 if(!hemf || !metafile)
1033 return InvalidParameter;
1036 FIXME("not implemented\n");
1038 return NotImplemented;
1041 GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
1042 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
1044 IStream *stream = NULL;
1048 GpStatus retval = GenericError;
1050 TRACE("(%p, %d, %p, %p)\n", hwmf, delete, placeable, metafile);
1052 if(!hwmf || !metafile || !placeable)
1053 return InvalidParameter;
1056 read = GetMetaFileBitsEx(hwmf, 0, NULL);
1058 return GenericError;
1059 copy = GdipAlloc(read);
1060 GetMetaFileBitsEx(hwmf, read, copy);
1062 hemf = SetWinMetaFileBits(read, copy, NULL, NULL);
1065 read = GetEnhMetaFileBits(hemf, 0, NULL);
1066 copy = GdipAlloc(read);
1067 GetEnhMetaFileBits(hemf, read, copy);
1068 DeleteEnhMetaFile(hemf);
1070 if(CreateStreamOnHGlobal(copy, TRUE, &stream) != S_OK){
1071 ERR("could not make stream\n");
1076 *metafile = GdipAlloc(sizeof(GpMetafile));
1078 retval = OutOfMemory;
1082 if(OleLoadPicture(stream, 0, FALSE, &IID_IPicture,
1083 (LPVOID*) &((*metafile)->image.picture)) != S_OK)
1087 (*metafile)->image.type = ImageTypeMetafile;
1088 (*metafile)->bounds.X = ((REAL) placeable->BoundingBox.Left) / ((REAL) placeable->Inch);
1089 (*metafile)->bounds.Y = ((REAL) placeable->BoundingBox.Right) / ((REAL) placeable->Inch);
1090 (*metafile)->bounds.Width = ((REAL) (placeable->BoundingBox.Right
1091 - placeable->BoundingBox.Left)) / ((REAL) placeable->Inch);
1092 (*metafile)->bounds.Height = ((REAL) (placeable->BoundingBox.Bottom
1093 - placeable->BoundingBox.Top)) / ((REAL) placeable->Inch);
1094 (*metafile)->unit = UnitInch;
1097 DeleteMetaFile(hwmf);
1102 GdipFree(*metafile);
1103 IStream_Release(stream);
1107 GpStatus WINGDIPAPI GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR *file,
1108 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
1110 HMETAFILE hmf = GetMetaFileW(file);
1112 TRACE("(%s, %p, %p)\n", debugstr_w(file), placeable, metafile);
1114 if(!hmf) return InvalidParameter;
1116 return GdipCreateMetafileFromWmf(hmf, TRUE, placeable, metafile);
1119 GpStatus WINGDIPAPI GdipCreateMetafileFromFile(GDIPCONST WCHAR *file,
1120 GpMetafile **metafile)
1122 FIXME("(%p, %p): stub\n", file, metafile);
1123 return NotImplemented;
1126 GpStatus WINGDIPAPI GdipCreateMetafileFromStream(IStream *stream,
1127 GpMetafile **metafile)
1129 FIXME("(%p, %p): stub\n", stream, metafile);
1130 return NotImplemented;
1133 GpStatus WINGDIPAPI GdipCreateStreamOnFile(GDIPCONST WCHAR * filename,
1134 UINT access, IStream **stream)
1139 TRACE("(%s, %u, %p)\n", debugstr_w(filename), access, stream);
1141 if(!stream || !filename)
1142 return InvalidParameter;
1144 if(access & GENERIC_WRITE)
1145 dwMode = STGM_SHARE_DENY_WRITE | STGM_WRITE | STGM_CREATE;
1146 else if(access & GENERIC_READ)
1147 dwMode = STGM_SHARE_DENY_WRITE | STGM_READ | STGM_FAILIFTHERE;
1149 return InvalidParameter;
1151 ret = SHCreateStreamOnFileW(filename, dwMode, stream);
1153 return hresult_to_status(ret);
1156 GpStatus WINGDIPAPI GdipDeleteGraphics(GpGraphics *graphics)
1158 TRACE("(%p)\n", graphics);
1160 if(!graphics) return InvalidParameter;
1161 if(graphics->busy) return ObjectBusy;
1164 ReleaseDC(graphics->hwnd, graphics->hdc);
1166 GdipDeleteRegion(graphics->clip);
1167 GdipDeleteMatrix(graphics->worldtrans);
1173 GpStatus WINGDIPAPI GdipDrawArc(GpGraphics *graphics, GpPen *pen, REAL x,
1174 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
1176 INT save_state, num_pts;
1177 GpPointF points[MAX_ARC_PTS];
1180 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
1181 width, height, startAngle, sweepAngle);
1183 if(!graphics || !pen || width <= 0 || height <= 0)
1184 return InvalidParameter;
1189 num_pts = arc2polybezier(points, x, y, width, height, startAngle, sweepAngle);
1191 save_state = prepare_dc(graphics, pen);
1193 retval = draw_polybezier(graphics, pen, points, num_pts, TRUE);
1195 restore_dc(graphics, save_state);
1200 GpStatus WINGDIPAPI GdipDrawArcI(GpGraphics *graphics, GpPen *pen, INT x,
1201 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
1203 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
1204 width, height, startAngle, sweepAngle);
1206 return GdipDrawArc(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
1209 GpStatus WINGDIPAPI GdipDrawBezier(GpGraphics *graphics, GpPen *pen, REAL x1,
1210 REAL y1, REAL x2, REAL y2, REAL x3, REAL y3, REAL x4, REAL y4)
1216 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1,
1217 x2, y2, x3, y3, x4, y4);
1219 if(!graphics || !pen)
1220 return InvalidParameter;
1234 save_state = prepare_dc(graphics, pen);
1236 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
1238 restore_dc(graphics, save_state);
1243 GpStatus WINGDIPAPI GdipDrawBezierI(GpGraphics *graphics, GpPen *pen, INT x1,
1244 INT y1, INT x2, INT y2, INT x3, INT y3, INT x4, INT y4)
1250 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d)\n", graphics, pen, x1, y1,
1251 x2, y2, x3, y3, x4, y4);
1253 if(!graphics || !pen)
1254 return InvalidParameter;
1268 save_state = prepare_dc(graphics, pen);
1270 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
1272 restore_dc(graphics, save_state);
1277 GpStatus WINGDIPAPI GdipDrawBeziers(GpGraphics *graphics, GpPen *pen,
1278 GDIPCONST GpPointF *points, INT count)
1283 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1285 if(!graphics || !pen || !points || (count <= 0))
1286 return InvalidParameter;
1291 for(i = 0; i < floor(count / 4); i++){
1292 ret = GdipDrawBezier(graphics, pen,
1293 points[4*i].X, points[4*i].Y,
1294 points[4*i + 1].X, points[4*i + 1].Y,
1295 points[4*i + 2].X, points[4*i + 2].Y,
1296 points[4*i + 3].X, points[4*i + 3].Y);
1304 GpStatus WINGDIPAPI GdipDrawBeziersI(GpGraphics *graphics, GpPen *pen,
1305 GDIPCONST GpPoint *points, INT count)
1311 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1313 if(!graphics || !pen || !points || (count <= 0))
1314 return InvalidParameter;
1319 pts = GdipAlloc(sizeof(GpPointF) * count);
1323 for(i = 0; i < count; i++){
1324 pts[i].X = (REAL)points[i].X;
1325 pts[i].Y = (REAL)points[i].Y;
1328 ret = GdipDrawBeziers(graphics,pen,pts,count);
1335 GpStatus WINGDIPAPI GdipDrawClosedCurve(GpGraphics *graphics, GpPen *pen,
1336 GDIPCONST GpPointF *points, INT count)
1338 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1340 return GdipDrawClosedCurve2(graphics, pen, points, count, 1.0);
1343 GpStatus WINGDIPAPI GdipDrawClosedCurveI(GpGraphics *graphics, GpPen *pen,
1344 GDIPCONST GpPoint *points, INT count)
1346 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1348 return GdipDrawClosedCurve2I(graphics, pen, points, count, 1.0);
1351 GpStatus WINGDIPAPI GdipDrawClosedCurve2(GpGraphics *graphics, GpPen *pen,
1352 GDIPCONST GpPointF *points, INT count, REAL tension)
1357 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
1359 if(!graphics || !pen || !points || count <= 0)
1360 return InvalidParameter;
1365 if((stat = GdipCreatePath(FillModeAlternate, &path)) != Ok)
1368 stat = GdipAddPathClosedCurve2(path, points, count, tension);
1370 GdipDeletePath(path);
1374 stat = GdipDrawPath(graphics, pen, path);
1376 GdipDeletePath(path);
1381 GpStatus WINGDIPAPI GdipDrawClosedCurve2I(GpGraphics *graphics, GpPen *pen,
1382 GDIPCONST GpPoint *points, INT count, REAL tension)
1388 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
1390 if(!points || count <= 0)
1391 return InvalidParameter;
1393 ptf = GdipAlloc(sizeof(GpPointF)*count);
1397 for(i = 0; i < count; i++){
1398 ptf[i].X = (REAL)points[i].X;
1399 ptf[i].Y = (REAL)points[i].Y;
1402 stat = GdipDrawClosedCurve2(graphics, pen, ptf, count, tension);
1409 GpStatus WINGDIPAPI GdipDrawCurve(GpGraphics *graphics, GpPen *pen,
1410 GDIPCONST GpPointF *points, INT count)
1412 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1414 return GdipDrawCurve2(graphics,pen,points,count,1.0);
1417 GpStatus WINGDIPAPI GdipDrawCurveI(GpGraphics *graphics, GpPen *pen,
1418 GDIPCONST GpPoint *points, INT count)
1424 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1426 if(!points || count <= 0)
1427 return InvalidParameter;
1429 pointsF = GdipAlloc(sizeof(GpPointF)*count);
1433 for(i = 0; i < count; i++){
1434 pointsF[i].X = (REAL)points[i].X;
1435 pointsF[i].Y = (REAL)points[i].Y;
1438 ret = GdipDrawCurve(graphics,pen,pointsF,count);
1444 /* Approximates cardinal spline with Bezier curves. */
1445 GpStatus WINGDIPAPI GdipDrawCurve2(GpGraphics *graphics, GpPen *pen,
1446 GDIPCONST GpPointF *points, INT count, REAL tension)
1448 /* PolyBezier expects count*3-2 points. */
1449 INT i, len_pt = count*3-2, save_state;
1451 REAL x1, x2, y1, y2;
1454 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
1456 if(!graphics || !pen)
1457 return InvalidParameter;
1462 pt = GdipAlloc(len_pt * sizeof(GpPointF));
1463 tension = tension * TENSION_CONST;
1465 calc_curve_bezier_endp(points[0].X, points[0].Y, points[1].X, points[1].Y,
1468 pt[0].X = points[0].X;
1469 pt[0].Y = points[0].Y;
1473 for(i = 0; i < count-2; i++){
1474 calc_curve_bezier(&(points[i]), tension, &x1, &y1, &x2, &y2);
1478 pt[3*i+3].X = points[i+1].X;
1479 pt[3*i+3].Y = points[i+1].Y;
1484 calc_curve_bezier_endp(points[count-1].X, points[count-1].Y,
1485 points[count-2].X, points[count-2].Y, tension, &x1, &y1);
1487 pt[len_pt-2].X = x1;
1488 pt[len_pt-2].Y = y1;
1489 pt[len_pt-1].X = points[count-1].X;
1490 pt[len_pt-1].Y = points[count-1].Y;
1492 save_state = prepare_dc(graphics, pen);
1494 retval = draw_polybezier(graphics, pen, pt, len_pt, TRUE);
1497 restore_dc(graphics, save_state);
1502 GpStatus WINGDIPAPI GdipDrawCurve2I(GpGraphics *graphics, GpPen *pen,
1503 GDIPCONST GpPoint *points, INT count, REAL tension)
1509 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
1511 if(!points || count <= 0)
1512 return InvalidParameter;
1514 pointsF = GdipAlloc(sizeof(GpPointF)*count);
1518 for(i = 0; i < count; i++){
1519 pointsF[i].X = (REAL)points[i].X;
1520 pointsF[i].Y = (REAL)points[i].Y;
1523 ret = GdipDrawCurve2(graphics,pen,pointsF,count,tension);
1529 GpStatus WINGDIPAPI GdipDrawEllipse(GpGraphics *graphics, GpPen *pen, REAL x,
1530 REAL y, REAL width, REAL height)
1536 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
1538 if(!graphics || !pen)
1539 return InvalidParameter;
1546 ptf[1].X = x + width;
1547 ptf[1].Y = y + height;
1549 save_state = prepare_dc(graphics, pen);
1550 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
1552 transform_and_round_points(graphics, pti, ptf, 2);
1554 Ellipse(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y);
1556 restore_dc(graphics, save_state);
1561 GpStatus WINGDIPAPI GdipDrawEllipseI(GpGraphics *graphics, GpPen *pen, INT x,
1562 INT y, INT width, INT height)
1564 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
1566 return GdipDrawEllipse(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
1570 GpStatus WINGDIPAPI GdipDrawImage(GpGraphics *graphics, GpImage *image, REAL x, REAL y)
1572 TRACE("(%p, %p, %.2f, %.2f)\n", graphics, image, x, y);
1574 /* IPicture::Render uses LONG coords */
1575 return GdipDrawImageI(graphics,image,roundr(x),roundr(y));
1578 GpStatus WINGDIPAPI GdipDrawImageI(GpGraphics *graphics, GpImage *image, INT x,
1581 UINT width, height, srcw, srch;
1583 TRACE("(%p, %p, %d, %d)\n", graphics, image, x, y);
1585 if(!graphics || !image)
1586 return InvalidParameter;
1588 GdipGetImageWidth(image, &width);
1589 GdipGetImageHeight(image, &height);
1591 srcw = width * (((REAL) INCH_HIMETRIC) /
1592 ((REAL) GetDeviceCaps(graphics->hdc, LOGPIXELSX)));
1593 srch = height * (((REAL) INCH_HIMETRIC) /
1594 ((REAL) GetDeviceCaps(graphics->hdc, LOGPIXELSY)));
1596 if(image->type != ImageTypeMetafile){
1601 IPicture_Render(image->picture, graphics->hdc, x, y, width, height,
1602 0, 0, srcw, srch, NULL);
1607 GpStatus WINGDIPAPI GdipDrawImagePointRect(GpGraphics *graphics, GpImage *image,
1608 REAL x, REAL y, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
1611 FIXME("(%p, %p, %f, %f, %f, %f, %f, %f, %d): stub\n", graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
1612 return NotImplemented;
1615 GpStatus WINGDIPAPI GdipDrawImagePointRectI(GpGraphics *graphics, GpImage *image,
1616 INT x, INT y, INT srcx, INT srcy, INT srcwidth, INT srcheight,
1619 FIXME("(%p, %p, %d, %d, %d, %d, %d, %d, %d): stub\n", graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
1620 return NotImplemented;
1623 GpStatus WINGDIPAPI GdipDrawImagePoints(GpGraphics *graphics, GpImage *image,
1624 GDIPCONST GpPointF *dstpoints, INT count)
1626 FIXME("(%p, %p, %p, %d): stub\n", graphics, image, dstpoints, count);
1627 return NotImplemented;
1630 GpStatus WINGDIPAPI GdipDrawImagePointsI(GpGraphics *graphics, GpImage *image,
1631 GDIPCONST GpPoint *dstpoints, INT count)
1633 FIXME("(%p, %p, %p, %d): stub\n", graphics, image, dstpoints, count);
1634 return NotImplemented;
1637 /* FIXME: partially implemented (only works for rectangular parallelograms) */
1638 GpStatus WINGDIPAPI GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image,
1639 GDIPCONST GpPointF *points, INT count, REAL srcx, REAL srcy, REAL srcwidth,
1640 REAL srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
1641 DrawImageAbort callback, VOID * callbackData)
1647 TRACE("(%p, %p, %p, %d, %f, %f, %f, %f, %d, %p, %p, %p)\n", graphics, image, points,
1648 count, srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
1651 if(!graphics || !image || !points || count != 3)
1652 return InvalidParameter;
1654 if(srcUnit == UnitInch)
1655 dx = dy = (REAL) INCH_HIMETRIC;
1656 else if(srcUnit == UnitPixel){
1657 dx = ((REAL) INCH_HIMETRIC) /
1658 ((REAL) GetDeviceCaps(graphics->hdc, LOGPIXELSX));
1659 dy = ((REAL) INCH_HIMETRIC) /
1660 ((REAL) GetDeviceCaps(graphics->hdc, LOGPIXELSY));
1663 return NotImplemented;
1665 memcpy(ptf, points, 3 * sizeof(GpPointF));
1666 transform_and_round_points(graphics, pti, ptf, 3);
1668 /* IPicture renders bitmaps with the y-axis reversed
1669 * FIXME: flipping for unknown image type might not be correct. */
1670 if(image->type != ImageTypeMetafile){
1673 pti[0].y = pti[2].y;
1677 if(IPicture_Render(image->picture, graphics->hdc,
1678 pti[0].x, pti[0].y, pti[1].x - pti[0].x, pti[2].y - pti[0].y,
1679 srcx * dx, srcy * dy,
1680 srcwidth * dx, srcheight * dy,
1683 callback(callbackData);
1684 return GenericError;
1690 GpStatus WINGDIPAPI GdipDrawImagePointsRectI(GpGraphics *graphics, GpImage *image,
1691 GDIPCONST GpPoint *points, INT count, INT srcx, INT srcy, INT srcwidth,
1692 INT srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
1693 DrawImageAbort callback, VOID * callbackData)
1695 GpPointF pointsF[3];
1698 TRACE("(%p, %p, %p, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n", graphics, image, points, count,
1699 srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
1702 if(!points || count!=3)
1703 return InvalidParameter;
1705 for(i = 0; i < count; i++){
1706 pointsF[i].X = (REAL)points[i].X;
1707 pointsF[i].Y = (REAL)points[i].Y;
1710 return GdipDrawImagePointsRect(graphics, image, pointsF, count, (REAL)srcx, (REAL)srcy,
1711 (REAL)srcwidth, (REAL)srcheight, srcUnit, imageAttributes,
1712 callback, callbackData);
1715 GpStatus WINGDIPAPI GdipDrawImageRectRect(GpGraphics *graphics, GpImage *image,
1716 REAL dstx, REAL dsty, REAL dstwidth, REAL dstheight, REAL srcx, REAL srcy,
1717 REAL srcwidth, REAL srcheight, GpUnit srcUnit,
1718 GDIPCONST GpImageAttributes* imageattr, DrawImageAbort callback,
1719 VOID * callbackData)
1723 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)\n",
1724 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
1725 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
1729 points[1].X = dstx + dstwidth;
1732 points[2].Y = dsty + dstheight;
1734 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
1735 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
1738 GpStatus WINGDIPAPI GdipDrawImageRectRectI(GpGraphics *graphics, GpImage *image,
1739 INT dstx, INT dsty, INT dstwidth, INT dstheight, INT srcx, INT srcy,
1740 INT srcwidth, INT srcheight, GpUnit srcUnit,
1741 GDIPCONST GpImageAttributes* imageAttributes, DrawImageAbort callback,
1742 VOID * callbackData)
1746 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n",
1747 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
1748 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
1752 points[1].X = dstx + dstwidth;
1755 points[2].Y = dsty + dstheight;
1757 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
1758 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
1761 GpStatus WINGDIPAPI GdipDrawImageRect(GpGraphics *graphics, GpImage *image,
1762 REAL x, REAL y, REAL width, REAL height)
1768 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, image, x, y, width, height);
1770 if(!graphics || !image)
1771 return InvalidParameter;
1773 ret = GdipGetImageBounds(image, &bounds, &unit);
1777 return GdipDrawImageRectRect(graphics, image, x, y, width, height,
1778 bounds.X, bounds.Y, bounds.Width, bounds.Height,
1779 unit, NULL, NULL, NULL);
1782 GpStatus WINGDIPAPI GdipDrawImageRectI(GpGraphics *graphics, GpImage *image,
1783 INT x, INT y, INT width, INT height)
1785 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, image, x, y, width, height);
1787 return GdipDrawImageRect(graphics, image, (REAL)x, (REAL)y, (REAL)width, (REAL)height);
1790 GpStatus WINGDIPAPI GdipDrawLine(GpGraphics *graphics, GpPen *pen, REAL x1,
1791 REAL y1, REAL x2, REAL y2)
1797 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1, x2, y2);
1799 if(!pen || !graphics)
1800 return InvalidParameter;
1810 save_state = prepare_dc(graphics, pen);
1812 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
1814 restore_dc(graphics, save_state);
1819 GpStatus WINGDIPAPI GdipDrawLineI(GpGraphics *graphics, GpPen *pen, INT x1,
1820 INT y1, INT x2, INT y2)
1826 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x1, y1, x2, y2);
1828 if(!pen || !graphics)
1829 return InvalidParameter;
1839 save_state = prepare_dc(graphics, pen);
1841 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
1843 restore_dc(graphics, save_state);
1848 GpStatus WINGDIPAPI GdipDrawLines(GpGraphics *graphics, GpPen *pen, GDIPCONST
1849 GpPointF *points, INT count)
1854 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1856 if(!pen || !graphics || (count < 2))
1857 return InvalidParameter;
1862 save_state = prepare_dc(graphics, pen);
1864 retval = draw_polyline(graphics, pen, points, count, TRUE);
1866 restore_dc(graphics, save_state);
1871 GpStatus WINGDIPAPI GdipDrawLinesI(GpGraphics *graphics, GpPen *pen, GDIPCONST
1872 GpPoint *points, INT count)
1876 GpPointF *ptf = NULL;
1879 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1881 if(!pen || !graphics || (count < 2))
1882 return InvalidParameter;
1887 ptf = GdipAlloc(count * sizeof(GpPointF));
1888 if(!ptf) return OutOfMemory;
1890 for(i = 0; i < count; i ++){
1891 ptf[i].X = (REAL) points[i].X;
1892 ptf[i].Y = (REAL) points[i].Y;
1895 save_state = prepare_dc(graphics, pen);
1897 retval = draw_polyline(graphics, pen, ptf, count, TRUE);
1899 restore_dc(graphics, save_state);
1905 GpStatus WINGDIPAPI GdipDrawPath(GpGraphics *graphics, GpPen *pen, GpPath *path)
1910 TRACE("(%p, %p, %p)\n", graphics, pen, path);
1912 if(!pen || !graphics)
1913 return InvalidParameter;
1918 save_state = prepare_dc(graphics, pen);
1920 retval = draw_poly(graphics, pen, path->pathdata.Points,
1921 path->pathdata.Types, path->pathdata.Count, TRUE);
1923 restore_dc(graphics, save_state);
1928 GpStatus WINGDIPAPI GdipDrawPie(GpGraphics *graphics, GpPen *pen, REAL x,
1929 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
1933 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
1934 width, height, startAngle, sweepAngle);
1936 if(!graphics || !pen)
1937 return InvalidParameter;
1942 save_state = prepare_dc(graphics, pen);
1943 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
1945 draw_pie(graphics, x, y, width, height, startAngle, sweepAngle);
1947 restore_dc(graphics, save_state);
1952 GpStatus WINGDIPAPI GdipDrawPieI(GpGraphics *graphics, GpPen *pen, INT x,
1953 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
1955 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
1956 width, height, startAngle, sweepAngle);
1958 return GdipDrawPie(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
1961 GpStatus WINGDIPAPI GdipDrawRectangle(GpGraphics *graphics, GpPen *pen, REAL x,
1962 REAL y, REAL width, REAL height)
1968 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
1970 if(!pen || !graphics)
1971 return InvalidParameter;
1978 ptf[1].X = x + width;
1980 ptf[2].X = x + width;
1981 ptf[2].Y = y + height;
1983 ptf[3].Y = y + height;
1985 save_state = prepare_dc(graphics, pen);
1986 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
1988 transform_and_round_points(graphics, pti, ptf, 4);
1989 Polygon(graphics->hdc, pti, 4);
1991 restore_dc(graphics, save_state);
1996 GpStatus WINGDIPAPI GdipDrawRectangleI(GpGraphics *graphics, GpPen *pen, INT x,
1997 INT y, INT width, INT height)
1999 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
2001 return GdipDrawRectangle(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
2004 GpStatus WINGDIPAPI GdipDrawRectangles(GpGraphics *graphics, GpPen *pen,
2005 GDIPCONST GpRectF* rects, INT count)
2011 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
2013 if(!graphics || !pen || !rects || count < 1)
2014 return InvalidParameter;
2019 ptf = GdipAlloc(4 * count * sizeof(GpPointF));
2020 pti = GdipAlloc(4 * count * sizeof(POINT));
2028 for(i = 0; i < count; i++){
2029 ptf[4 * i + 3].X = ptf[4 * i].X = rects[i].X;
2030 ptf[4 * i + 1].Y = ptf[4 * i].Y = rects[i].Y;
2031 ptf[4 * i + 2].X = ptf[4 * i + 1].X = rects[i].X + rects[i].Width;
2032 ptf[4 * i + 3].Y = ptf[4 * i + 2].Y = rects[i].Y + rects[i].Height;
2035 save_state = prepare_dc(graphics, pen);
2036 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
2038 transform_and_round_points(graphics, pti, ptf, 4 * count);
2040 for(i = 0; i < count; i++)
2041 Polygon(graphics->hdc, &pti[4 * i], 4);
2043 restore_dc(graphics, save_state);
2051 GpStatus WINGDIPAPI GdipDrawRectanglesI(GpGraphics *graphics, GpPen *pen,
2052 GDIPCONST GpRect* rects, INT count)
2058 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
2060 if(!rects || count<=0)
2061 return InvalidParameter;
2063 rectsF = GdipAlloc(sizeof(GpRectF) * count);
2067 for(i = 0;i < count;i++){
2068 rectsF[i].X = (REAL)rects[i].X;
2069 rectsF[i].Y = (REAL)rects[i].Y;
2070 rectsF[i].Width = (REAL)rects[i].Width;
2071 rectsF[i].Height = (REAL)rects[i].Height;
2074 ret = GdipDrawRectangles(graphics, pen, rectsF, count);
2080 GpStatus WINGDIPAPI GdipDrawString(GpGraphics *graphics, GDIPCONST WCHAR *string,
2081 INT length, GDIPCONST GpFont *font, GDIPCONST RectF *rect,
2082 GDIPCONST GpStringFormat *format, GDIPCONST GpBrush *brush)
2087 TEXTMETRICW textmet;
2088 GpPointF pt[2], rectcpy[4];
2091 REAL angle, ang_cos, ang_sin, rel_width, rel_height;
2092 INT sum = 0, height = 0, offsety = 0, fit, fitcpy, save_state, i, j, lret, nwidth,
2097 TRACE("(%p, %s, %i, %p, %s, %p, %p)\n", graphics, debugstr_wn(string, length),
2098 length, font, debugstr_rectf(rect), format, brush);
2100 if(!graphics || !string || !font || !brush || !rect)
2101 return InvalidParameter;
2103 if((brush->bt != BrushTypeSolidColor)){
2104 FIXME("not implemented for given parameters\n");
2105 return NotImplemented;
2109 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
2111 /* Should be no need to explicitly test for StringAlignmentNear as
2112 * that is default behavior if no alignment is passed. */
2113 if(format->vertalign != StringAlignmentNear){
2115 GdipMeasureString(graphics, string, length, font, rect, format, &bounds, 0, 0);
2117 if(format->vertalign == StringAlignmentCenter)
2118 offsety = (rect->Height - bounds.Height) / 2;
2119 else if(format->vertalign == StringAlignmentFar)
2120 offsety = (rect->Height - bounds.Height);
2124 if(length == -1) length = lstrlenW(string);
2126 stringdup = GdipAlloc(length * sizeof(WCHAR));
2127 if(!stringdup) return OutOfMemory;
2129 save_state = SaveDC(graphics->hdc);
2130 SetBkMode(graphics->hdc, TRANSPARENT);
2131 SetTextColor(graphics->hdc, brush->lb.lbColor);
2133 rectcpy[3].X = rectcpy[0].X = rect->X;
2134 rectcpy[1].Y = rectcpy[0].Y = rect->Y + offsety;
2135 rectcpy[2].X = rectcpy[1].X = rect->X + rect->Width;
2136 rectcpy[3].Y = rectcpy[2].Y = rect->Y + offsety + rect->Height;
2137 transform_and_round_points(graphics, corners, rectcpy, 4);
2139 if (roundr(rect->Width) == 0)
2146 rel_width = sqrt((corners[1].x - corners[0].x) * (corners[1].x - corners[0].x) +
2147 (corners[1].y - corners[0].y) * (corners[1].y - corners[0].y))
2149 nwidth = roundr(rel_width * rect->Width);
2152 if (roundr(rect->Height) == 0)
2159 rel_height = sqrt((corners[2].x - corners[1].x) * (corners[2].x - corners[1].x) +
2160 (corners[2].y - corners[1].y) * (corners[2].y - corners[1].y))
2162 nheight = roundr(rel_height * rect->Height);
2165 if (roundr(rect->Width) != 0 && roundr(rect->Height) != 0)
2167 /* FIXME: If only the width or only the height is 0, we should probably still clip */
2168 rgn = CreatePolygonRgn(corners, 4, ALTERNATE);
2169 SelectClipRgn(graphics->hdc, rgn);
2172 /* Use gdi to find the font, then perform transformations on it (height,
2174 SelectObject(graphics->hdc, CreateFontIndirectW(&font->lfw));
2175 GetTextMetricsW(graphics->hdc, &textmet);
2178 lfw.lfHeight = roundr(((REAL)lfw.lfHeight) * rel_height);
2179 lfw.lfWidth = roundr(textmet.tmAveCharWidth * rel_width);
2185 GdipTransformMatrixPoints(graphics->worldtrans, pt, 2);
2186 angle = gdiplus_atan2((pt[1].Y - pt[0].Y), (pt[1].X - pt[0].X));
2187 ang_cos = cos(angle);
2188 ang_sin = sin(angle);
2189 lfw.lfEscapement = lfw.lfOrientation = -roundr((angle / M_PI) * 1800.0);
2191 gdifont = CreateFontIndirectW(&lfw);
2192 DeleteObject(SelectObject(graphics->hdc, CreateFontIndirectW(&lfw)));
2194 for(i = 0, j = 0; i < length; i++){
2195 if(!isprintW(string[i]) && (string[i] != '\n'))
2198 stringdup[j] = string[i];
2204 while(sum < length){
2205 drawcoord.left = corners[0].x + roundr(ang_sin * (REAL) height);
2206 drawcoord.top = corners[0].y + roundr(ang_cos * (REAL) height);
2208 GetTextExtentExPointW(graphics->hdc, stringdup + sum, length - sum,
2209 nwidth, &fit, NULL, &size);
2213 DrawTextW(graphics->hdc, stringdup + sum, 1, &drawcoord, DT_NOCLIP |
2218 for(lret = 0; lret < fit; lret++)
2219 if(*(stringdup + sum + lret) == '\n')
2222 /* Line break code (may look strange, but it imitates windows). */
2224 fit = lret; /* this is not an off-by-one error */
2225 else if(fit < (length - sum)){
2226 if(*(stringdup + sum + fit) == ' ')
2227 while(*(stringdup + sum + fit) == ' ')
2230 while(*(stringdup + sum + fit - 1) != ' '){
2233 if(*(stringdup + sum + fit) == '\t')
2242 DrawTextW(graphics->hdc, stringdup + sum, min(length - sum, fit),
2243 &drawcoord, DT_NOCLIP | DT_EXPANDTABS);
2245 sum += fit + (lret < fitcpy ? 1 : 0);
2248 if(height > nheight)
2251 /* Stop if this was a linewrap (but not if it was a linebreak). */
2252 if((lret == fitcpy) && format && (format->attr & StringFormatFlagsNoWrap))
2256 GdipFree(stringdup);
2258 DeleteObject(gdifont);
2260 RestoreDC(graphics->hdc, save_state);
2265 GpStatus WINGDIPAPI GdipFillClosedCurve2(GpGraphics *graphics, GpBrush *brush,
2266 GDIPCONST GpPointF *points, INT count, REAL tension, GpFillMode fill)
2271 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
2272 count, tension, fill);
2274 if(!graphics || !brush || !points)
2275 return InvalidParameter;
2280 stat = GdipCreatePath(fill, &path);
2284 stat = GdipAddPathClosedCurve2(path, points, count, tension);
2286 GdipDeletePath(path);
2290 stat = GdipFillPath(graphics, brush, path);
2292 GdipDeletePath(path);
2296 GdipDeletePath(path);
2301 GpStatus WINGDIPAPI GdipFillClosedCurve2I(GpGraphics *graphics, GpBrush *brush,
2302 GDIPCONST GpPoint *points, INT count, REAL tension, GpFillMode fill)
2308 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
2309 count, tension, fill);
2311 if(!points || count <= 0)
2312 return InvalidParameter;
2314 ptf = GdipAlloc(sizeof(GpPointF)*count);
2318 for(i = 0;i < count;i++){
2319 ptf[i].X = (REAL)points[i].X;
2320 ptf[i].Y = (REAL)points[i].Y;
2323 stat = GdipFillClosedCurve2(graphics, brush, ptf, count, tension, fill);
2330 GpStatus WINGDIPAPI GdipFillEllipse(GpGraphics *graphics, GpBrush *brush, REAL x,
2331 REAL y, REAL width, REAL height)
2337 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
2339 if(!graphics || !brush)
2340 return InvalidParameter;
2347 ptf[1].X = x + width;
2348 ptf[1].Y = y + height;
2350 save_state = SaveDC(graphics->hdc);
2351 EndPath(graphics->hdc);
2352 SelectObject(graphics->hdc, brush->gdibrush);
2353 SelectObject(graphics->hdc, GetStockObject(NULL_PEN));
2355 transform_and_round_points(graphics, pti, ptf, 2);
2357 Ellipse(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y);
2359 RestoreDC(graphics->hdc, save_state);
2364 GpStatus WINGDIPAPI GdipFillEllipseI(GpGraphics *graphics, GpBrush *brush, INT x,
2365 INT y, INT width, INT height)
2367 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
2369 return GdipFillEllipse(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
2372 GpStatus WINGDIPAPI GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
2377 TRACE("(%p, %p, %p)\n", graphics, brush, path);
2379 if(!brush || !graphics || !path)
2380 return InvalidParameter;
2385 save_state = SaveDC(graphics->hdc);
2386 EndPath(graphics->hdc);
2387 SetPolyFillMode(graphics->hdc, (path->fill == FillModeAlternate ? ALTERNATE
2390 BeginPath(graphics->hdc);
2391 retval = draw_poly(graphics, NULL, path->pathdata.Points,
2392 path->pathdata.Types, path->pathdata.Count, FALSE);
2397 EndPath(graphics->hdc);
2398 brush_fill_path(graphics, brush);
2403 RestoreDC(graphics->hdc, save_state);
2408 GpStatus WINGDIPAPI GdipFillPie(GpGraphics *graphics, GpBrush *brush, REAL x,
2409 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
2413 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n",
2414 graphics, brush, x, y, width, height, startAngle, sweepAngle);
2416 if(!graphics || !brush)
2417 return InvalidParameter;
2422 save_state = SaveDC(graphics->hdc);
2423 EndPath(graphics->hdc);
2424 SelectObject(graphics->hdc, brush->gdibrush);
2425 SelectObject(graphics->hdc, GetStockObject(NULL_PEN));
2427 draw_pie(graphics, x, y, width, height, startAngle, sweepAngle);
2429 RestoreDC(graphics->hdc, save_state);
2434 GpStatus WINGDIPAPI GdipFillPieI(GpGraphics *graphics, GpBrush *brush, INT x,
2435 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
2437 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n",
2438 graphics, brush, x, y, width, height, startAngle, sweepAngle);
2440 return GdipFillPie(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
2443 GpStatus WINGDIPAPI GdipFillPolygon(GpGraphics *graphics, GpBrush *brush,
2444 GDIPCONST GpPointF *points, INT count, GpFillMode fillMode)
2447 GpPointF *ptf = NULL;
2449 GpStatus retval = Ok;
2451 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
2453 if(!graphics || !brush || !points || !count)
2454 return InvalidParameter;
2459 ptf = GdipAlloc(count * sizeof(GpPointF));
2460 pti = GdipAlloc(count * sizeof(POINT));
2462 retval = OutOfMemory;
2466 memcpy(ptf, points, count * sizeof(GpPointF));
2468 save_state = SaveDC(graphics->hdc);
2469 EndPath(graphics->hdc);
2470 SelectObject(graphics->hdc, brush->gdibrush);
2471 SelectObject(graphics->hdc, GetStockObject(NULL_PEN));
2472 SetPolyFillMode(graphics->hdc, (fillMode == FillModeAlternate ? ALTERNATE
2475 transform_and_round_points(graphics, pti, ptf, count);
2476 Polygon(graphics->hdc, pti, count);
2478 RestoreDC(graphics->hdc, save_state);
2487 GpStatus WINGDIPAPI GdipFillPolygonI(GpGraphics *graphics, GpBrush *brush,
2488 GDIPCONST GpPoint *points, INT count, GpFillMode fillMode)
2491 GpPointF *ptf = NULL;
2493 GpStatus retval = Ok;
2495 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
2497 if(!graphics || !brush || !points || !count)
2498 return InvalidParameter;
2503 ptf = GdipAlloc(count * sizeof(GpPointF));
2504 pti = GdipAlloc(count * sizeof(POINT));
2506 retval = OutOfMemory;
2510 for(i = 0; i < count; i ++){
2511 ptf[i].X = (REAL) points[i].X;
2512 ptf[i].Y = (REAL) points[i].Y;
2515 save_state = SaveDC(graphics->hdc);
2516 EndPath(graphics->hdc);
2517 SelectObject(graphics->hdc, brush->gdibrush);
2518 SelectObject(graphics->hdc, GetStockObject(NULL_PEN));
2519 SetPolyFillMode(graphics->hdc, (fillMode == FillModeAlternate ? ALTERNATE
2522 transform_and_round_points(graphics, pti, ptf, count);
2523 Polygon(graphics->hdc, pti, count);
2525 RestoreDC(graphics->hdc, save_state);
2534 GpStatus WINGDIPAPI GdipFillPolygon2(GpGraphics *graphics, GpBrush *brush,
2535 GDIPCONST GpPointF *points, INT count)
2537 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
2539 return GdipFillPolygon(graphics, brush, points, count, FillModeAlternate);
2542 GpStatus WINGDIPAPI GdipFillPolygon2I(GpGraphics *graphics, GpBrush *brush,
2543 GDIPCONST GpPoint *points, INT count)
2545 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
2547 return GdipFillPolygonI(graphics, brush, points, count, FillModeAlternate);
2550 GpStatus WINGDIPAPI GdipFillRectangle(GpGraphics *graphics, GpBrush *brush,
2551 REAL x, REAL y, REAL width, REAL height)
2557 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
2559 if(!graphics || !brush)
2560 return InvalidParameter;
2567 ptf[1].X = x + width;
2569 ptf[2].X = x + width;
2570 ptf[2].Y = y + height;
2572 ptf[3].Y = y + height;
2574 save_state = SaveDC(graphics->hdc);
2575 EndPath(graphics->hdc);
2577 transform_and_round_points(graphics, pti, ptf, 4);
2579 BeginPath(graphics->hdc);
2580 Polygon(graphics->hdc, pti, 4);
2581 EndPath(graphics->hdc);
2583 brush_fill_path(graphics, brush);
2585 RestoreDC(graphics->hdc, save_state);
2590 GpStatus WINGDIPAPI GdipFillRectangleI(GpGraphics *graphics, GpBrush *brush,
2591 INT x, INT y, INT width, INT height)
2597 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
2599 if(!graphics || !brush)
2600 return InvalidParameter;
2607 ptf[1].X = x + width;
2609 ptf[2].X = x + width;
2610 ptf[2].Y = y + height;
2612 ptf[3].Y = y + height;
2614 save_state = SaveDC(graphics->hdc);
2615 EndPath(graphics->hdc);
2616 SelectObject(graphics->hdc, brush->gdibrush);
2617 SelectObject(graphics->hdc, GetStockObject(NULL_PEN));
2619 transform_and_round_points(graphics, pti, ptf, 4);
2621 Polygon(graphics->hdc, pti, 4);
2623 RestoreDC(graphics->hdc, save_state);
2628 GpStatus WINGDIPAPI GdipFillRectangles(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRectF *rects,
2634 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
2637 return InvalidParameter;
2639 for(i = 0; i < count; i++){
2640 ret = GdipFillRectangle(graphics, brush, rects[i].X, rects[i].Y, rects[i].Width, rects[i].Height);
2641 if(ret != Ok) return ret;
2647 GpStatus WINGDIPAPI GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRect *rects,
2654 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
2656 if(!rects || count <= 0)
2657 return InvalidParameter;
2659 rectsF = GdipAlloc(sizeof(GpRectF)*count);
2663 for(i = 0; i < count; i++){
2664 rectsF[i].X = (REAL)rects[i].X;
2665 rectsF[i].Y = (REAL)rects[i].Y;
2666 rectsF[i].X = (REAL)rects[i].Width;
2667 rectsF[i].Height = (REAL)rects[i].Height;
2670 ret = GdipFillRectangles(graphics,brush,rectsF,count);
2676 /*****************************************************************************
2677 * GdipFillRegion [GDIPLUS.@]
2679 GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
2686 TRACE("(%p, %p, %p)\n", graphics, brush, region);
2688 if (!(graphics && brush && region))
2689 return InvalidParameter;
2694 status = GdipGetRegionHRgn(region, graphics, &hrgn);
2698 save_state = SaveDC(graphics->hdc);
2699 EndPath(graphics->hdc);
2700 SelectObject(graphics->hdc, GetStockObject(NULL_PEN));
2702 FillRgn(graphics->hdc, hrgn, brush->gdibrush);
2704 RestoreDC(graphics->hdc, save_state);
2711 GpStatus WINGDIPAPI GdipFlush(GpGraphics *graphics, GpFlushIntention intention)
2716 return InvalidParameter;
2722 FIXME("not implemented\n");
2724 return NotImplemented;
2727 /*****************************************************************************
2728 * GdipGetClipBounds [GDIPLUS.@]
2730 GpStatus WINGDIPAPI GdipGetClipBounds(GpGraphics *graphics, GpRectF *rect)
2732 TRACE("(%p, %p)\n", graphics, rect);
2735 return InvalidParameter;
2740 return GdipGetRegionBounds(graphics->clip, graphics, rect);
2743 /*****************************************************************************
2744 * GdipGetClipBoundsI [GDIPLUS.@]
2746 GpStatus WINGDIPAPI GdipGetClipBoundsI(GpGraphics *graphics, GpRect *rect)
2748 TRACE("(%p, %p)\n", graphics, rect);
2751 return InvalidParameter;
2756 return GdipGetRegionBoundsI(graphics->clip, graphics, rect);
2759 /* FIXME: Compositing mode is not used anywhere except the getter/setter. */
2760 GpStatus WINGDIPAPI GdipGetCompositingMode(GpGraphics *graphics,
2761 CompositingMode *mode)
2763 TRACE("(%p, %p)\n", graphics, mode);
2765 if(!graphics || !mode)
2766 return InvalidParameter;
2771 *mode = graphics->compmode;
2776 /* FIXME: Compositing quality is not used anywhere except the getter/setter. */
2777 GpStatus WINGDIPAPI GdipGetCompositingQuality(GpGraphics *graphics,
2778 CompositingQuality *quality)
2780 TRACE("(%p, %p)\n", graphics, quality);
2782 if(!graphics || !quality)
2783 return InvalidParameter;
2788 *quality = graphics->compqual;
2793 /* FIXME: Interpolation mode is not used anywhere except the getter/setter. */
2794 GpStatus WINGDIPAPI GdipGetInterpolationMode(GpGraphics *graphics,
2795 InterpolationMode *mode)
2797 TRACE("(%p, %p)\n", graphics, mode);
2799 if(!graphics || !mode)
2800 return InvalidParameter;
2805 *mode = graphics->interpolation;
2810 GpStatus WINGDIPAPI GdipGetNearestColor(GpGraphics *graphics, ARGB* argb)
2812 if(!graphics || !argb)
2813 return InvalidParameter;
2818 FIXME("(%p, %p): stub\n", graphics, argb);
2820 return NotImplemented;
2823 GpStatus WINGDIPAPI GdipGetPageScale(GpGraphics *graphics, REAL *scale)
2825 TRACE("(%p, %p)\n", graphics, scale);
2827 if(!graphics || !scale)
2828 return InvalidParameter;
2833 *scale = graphics->scale;
2838 GpStatus WINGDIPAPI GdipGetPageUnit(GpGraphics *graphics, GpUnit *unit)
2840 TRACE("(%p, %p)\n", graphics, unit);
2842 if(!graphics || !unit)
2843 return InvalidParameter;
2848 *unit = graphics->unit;
2853 /* FIXME: Pixel offset mode is not used anywhere except the getter/setter. */
2854 GpStatus WINGDIPAPI GdipGetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
2857 TRACE("(%p, %p)\n", graphics, mode);
2859 if(!graphics || !mode)
2860 return InvalidParameter;
2865 *mode = graphics->pixeloffset;
2870 /* FIXME: Smoothing mode is not used anywhere except the getter/setter. */
2871 GpStatus WINGDIPAPI GdipGetSmoothingMode(GpGraphics *graphics, SmoothingMode *mode)
2873 TRACE("(%p, %p)\n", graphics, mode);
2875 if(!graphics || !mode)
2876 return InvalidParameter;
2881 *mode = graphics->smoothing;
2886 GpStatus WINGDIPAPI GdipGetTextContrast(GpGraphics *graphics, UINT *contrast)
2888 TRACE("(%p, %p)\n", graphics, contrast);
2890 if(!graphics || !contrast)
2891 return InvalidParameter;
2893 *contrast = graphics->textcontrast;
2898 /* FIXME: Text rendering hint is not used anywhere except the getter/setter. */
2899 GpStatus WINGDIPAPI GdipGetTextRenderingHint(GpGraphics *graphics,
2900 TextRenderingHint *hint)
2902 TRACE("(%p, %p)\n", graphics, hint);
2904 if(!graphics || !hint)
2905 return InvalidParameter;
2910 *hint = graphics->texthint;
2915 GpStatus WINGDIPAPI GdipGetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
2917 TRACE("(%p, %p)\n", graphics, matrix);
2919 if(!graphics || !matrix)
2920 return InvalidParameter;
2925 *matrix = *graphics->worldtrans;
2929 GpStatus WINGDIPAPI GdipGraphicsClear(GpGraphics *graphics, ARGB color)
2935 TRACE("(%p, %x)\n", graphics, color);
2938 return InvalidParameter;
2943 if((stat = GdipCreateSolidFill(color, &brush)) != Ok)
2947 if(!GetWindowRect(graphics->hwnd, &rect)){
2948 GdipDeleteBrush((GpBrush*)brush);
2949 return GenericError;
2952 GdipFillRectangle(graphics, (GpBrush*)brush, 0.0, 0.0, (REAL)(rect.right - rect.left),
2953 (REAL)(rect.bottom - rect.top));
2956 GdipFillRectangle(graphics, (GpBrush*)brush, 0.0, 0.0, (REAL)GetDeviceCaps(graphics->hdc, HORZRES),
2957 (REAL)GetDeviceCaps(graphics->hdc, VERTRES));
2959 GdipDeleteBrush((GpBrush*)brush);
2964 GpStatus WINGDIPAPI GdipIsClipEmpty(GpGraphics *graphics, BOOL *res)
2966 TRACE("(%p, %p)\n", graphics, res);
2968 if(!graphics || !res)
2969 return InvalidParameter;
2971 return GdipIsEmptyRegion(graphics->clip, graphics, res);
2974 GpStatus WINGDIPAPI GdipIsVisiblePoint(GpGraphics *graphics, REAL x, REAL y, BOOL *result)
2976 FIXME("(%p, %.2f, %.2f, %p) stub\n", graphics, x, y, result);
2978 if(!graphics || !result)
2979 return InvalidParameter;
2984 return NotImplemented;
2987 GpStatus WINGDIPAPI GdipIsVisiblePointI(GpGraphics *graphics, INT x, INT y, BOOL *result)
2989 FIXME("(%p, %d, %d, %p) stub\n", graphics, x, y, result);
2991 if(!graphics || !result)
2992 return InvalidParameter;
2997 return NotImplemented;
3000 GpStatus WINGDIPAPI GdipMeasureCharacterRanges(GpGraphics* graphics,
3001 GDIPCONST WCHAR* string, INT length, GDIPCONST GpFont* font,
3002 GDIPCONST RectF* layoutRect, GDIPCONST GpStringFormat *stringFormat,
3003 INT regionCount, GpRegion** regions)
3005 if (!(graphics && string && font && layoutRect && stringFormat && regions))
3006 return InvalidParameter;
3008 FIXME("stub: %p %s %d %p %p %p %d %p\n", graphics, debugstr_w(string),
3009 length, font, layoutRect, stringFormat, regionCount, regions);
3011 return NotImplemented;
3014 /* Find the smallest rectangle that bounds the text when it is printed in rect
3015 * according to the format options listed in format. If rect has 0 width and
3016 * height, then just find the smallest rectangle that bounds the text when it's
3017 * printed at location (rect->X, rect-Y). */
3018 GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics,
3019 GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
3020 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format, RectF *bounds,
3021 INT *codepointsfitted, INT *linesfilled)
3025 INT sum = 0, height = 0, fit, fitcpy, max_width = 0, i, j, lret, nwidth,
3029 TRACE("(%p, %s, %i, %p, %s, %p, %p, %p, %p)\n", graphics,
3030 debugstr_wn(string, length), length, font, debugstr_rectf(rect), format,
3031 bounds, codepointsfitted, linesfilled);
3033 if(!graphics || !string || !font || !rect)
3034 return InvalidParameter;
3036 if(linesfilled) *linesfilled = 0;
3037 if(codepointsfitted) *codepointsfitted = 0;
3040 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
3042 if(length == -1) length = lstrlenW(string);
3044 stringdup = GdipAlloc((length + 1) * sizeof(WCHAR));
3045 if(!stringdup) return OutOfMemory;
3047 oldfont = SelectObject(graphics->hdc, CreateFontIndirectW(&font->lfw));
3048 nwidth = roundr(rect->Width);
3049 nheight = roundr(rect->Height);
3051 if((nwidth == 0) && (nheight == 0))
3052 nwidth = nheight = INT_MAX;
3054 for(i = 0, j = 0; i < length; i++){
3055 if(!isprintW(string[i]) && (string[i] != '\n'))
3058 stringdup[j] = string[i];
3065 while(sum < length){
3066 GetTextExtentExPointW(graphics->hdc, stringdup + sum, length - sum,
3067 nwidth, &fit, NULL, &size);
3073 for(lret = 0; lret < fit; lret++)
3074 if(*(stringdup + sum + lret) == '\n')
3077 /* Line break code (may look strange, but it imitates windows). */
3079 fit = lret; /* this is not an off-by-one error */
3080 else if(fit < (length - sum)){
3081 if(*(stringdup + sum + fit) == ' ')
3082 while(*(stringdup + sum + fit) == ' ')
3085 while(*(stringdup + sum + fit - 1) != ' '){
3088 if(*(stringdup + sum + fit) == '\t')
3098 GetTextExtentExPointW(graphics->hdc, stringdup + sum, fit,
3099 nwidth, &j, NULL, &size);
3101 sum += fit + (lret < fitcpy ? 1 : 0);
3102 if(codepointsfitted) *codepointsfitted = sum;
3105 if(linesfilled) *linesfilled += size.cy;
3106 max_width = max(max_width, size.cx);
3108 if(height > nheight)
3111 /* Stop if this was a linewrap (but not if it was a linebreak). */
3112 if((lret == fitcpy) && format && (format->attr & StringFormatFlagsNoWrap))
3116 bounds->X = rect->X;
3117 bounds->Y = rect->Y;
3118 bounds->Width = (REAL)max_width;
3119 bounds->Height = (REAL) min(height, nheight);
3121 GdipFree(stringdup);
3122 DeleteObject(SelectObject(graphics->hdc, oldfont));
3127 GpStatus WINGDIPAPI GdipResetClip(GpGraphics *graphics)
3129 TRACE("(%p)\n", graphics);
3132 return InvalidParameter;
3137 return GdipSetInfinite(graphics->clip);
3140 GpStatus WINGDIPAPI GdipResetWorldTransform(GpGraphics *graphics)
3142 TRACE("(%p)\n", graphics);
3145 return InvalidParameter;
3150 graphics->worldtrans->matrix[0] = 1.0;
3151 graphics->worldtrans->matrix[1] = 0.0;
3152 graphics->worldtrans->matrix[2] = 0.0;
3153 graphics->worldtrans->matrix[3] = 1.0;
3154 graphics->worldtrans->matrix[4] = 0.0;
3155 graphics->worldtrans->matrix[5] = 0.0;
3160 GpStatus WINGDIPAPI GdipRestoreGraphics(GpGraphics *graphics, GraphicsState state)
3165 return InvalidParameter;
3168 FIXME("graphics state not implemented\n");
3173 GpStatus WINGDIPAPI GdipRotateWorldTransform(GpGraphics *graphics, REAL angle,
3174 GpMatrixOrder order)
3176 TRACE("(%p, %.2f, %d)\n", graphics, angle, order);
3179 return InvalidParameter;
3184 return GdipRotateMatrix(graphics->worldtrans, angle, order);
3187 GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state)
3191 if(!graphics || !state)
3192 return InvalidParameter;
3195 FIXME("graphics state not implemented\n");
3197 *state = 0xdeadbeef;
3201 GpStatus WINGDIPAPI GdipBeginContainer2(GpGraphics *graphics, GraphicsContainer *state)
3203 FIXME("(%p, %p)\n", graphics, state);
3205 if(!graphics || !state)
3206 return InvalidParameter;
3208 *state = 0xdeadbeef;
3212 GpStatus WINGDIPAPI GdipBeginContainer(GpGraphics *graphics, GDIPCONST GpRectF *dstrect, GDIPCONST GpRectF *srcrect, GpUnit unit, GraphicsContainer *state)
3214 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
3215 return NotImplemented;
3218 GpStatus WINGDIPAPI GdipBeginContainerI(GpGraphics *graphics, GDIPCONST GpRect *dstrect, GDIPCONST GpRect *srcrect, GpUnit unit, GraphicsContainer *state)
3220 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
3221 return NotImplemented;
3224 GpStatus WINGDIPAPI GdipComment(GpGraphics *graphics, UINT sizeData, GDIPCONST BYTE *data)
3226 FIXME("(%p, %d, %p): stub\n", graphics, sizeData, data);
3227 return NotImplemented;
3230 GpStatus WINGDIPAPI GdipEndContainer(GpGraphics *graphics, GraphicsState state)
3232 FIXME("(%p, 0x%x)\n", graphics, state);
3234 if(!graphics || !state)
3235 return InvalidParameter;
3240 GpStatus WINGDIPAPI GdipScaleWorldTransform(GpGraphics *graphics, REAL sx,
3241 REAL sy, GpMatrixOrder order)
3243 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, sx, sy, order);
3246 return InvalidParameter;
3251 return GdipScaleMatrix(graphics->worldtrans, sx, sy, order);
3254 GpStatus WINGDIPAPI GdipSetClipGraphics(GpGraphics *graphics, GpGraphics *srcgraphics,
3257 TRACE("(%p, %p, %d)\n", graphics, srcgraphics, mode);
3259 if(!graphics || !srcgraphics)
3260 return InvalidParameter;
3262 return GdipCombineRegionRegion(graphics->clip, srcgraphics->clip, mode);
3265 GpStatus WINGDIPAPI GdipSetCompositingMode(GpGraphics *graphics,
3266 CompositingMode mode)
3268 TRACE("(%p, %d)\n", graphics, mode);
3271 return InvalidParameter;
3276 graphics->compmode = mode;
3281 GpStatus WINGDIPAPI GdipSetCompositingQuality(GpGraphics *graphics,
3282 CompositingQuality quality)
3284 TRACE("(%p, %d)\n", graphics, quality);
3287 return InvalidParameter;
3292 graphics->compqual = quality;
3297 GpStatus WINGDIPAPI GdipSetInterpolationMode(GpGraphics *graphics,
3298 InterpolationMode mode)
3300 TRACE("(%p, %d)\n", graphics, mode);
3303 return InvalidParameter;
3308 graphics->interpolation = mode;
3313 GpStatus WINGDIPAPI GdipSetPageScale(GpGraphics *graphics, REAL scale)
3315 TRACE("(%p, %.2f)\n", graphics, scale);
3317 if(!graphics || (scale <= 0.0))
3318 return InvalidParameter;
3323 graphics->scale = scale;
3328 GpStatus WINGDIPAPI GdipSetPageUnit(GpGraphics *graphics, GpUnit unit)
3330 TRACE("(%p, %d)\n", graphics, unit);
3333 return InvalidParameter;
3338 if(unit == UnitWorld)
3339 return InvalidParameter;
3341 graphics->unit = unit;
3346 GpStatus WINGDIPAPI GdipSetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
3349 TRACE("(%p, %d)\n", graphics, mode);
3352 return InvalidParameter;
3357 graphics->pixeloffset = mode;
3362 GpStatus WINGDIPAPI GdipSetRenderingOrigin(GpGraphics *graphics, INT x, INT y)
3366 TRACE("(%p,%i,%i)\n", graphics, x, y);
3369 FIXME("not implemented\n");
3371 return NotImplemented;
3374 GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics *graphics, SmoothingMode mode)
3376 TRACE("(%p, %d)\n", graphics, mode);
3379 return InvalidParameter;
3384 graphics->smoothing = mode;
3389 GpStatus WINGDIPAPI GdipSetTextContrast(GpGraphics *graphics, UINT contrast)
3391 TRACE("(%p, %d)\n", graphics, contrast);
3394 return InvalidParameter;
3396 graphics->textcontrast = contrast;
3401 GpStatus WINGDIPAPI GdipSetTextRenderingHint(GpGraphics *graphics,
3402 TextRenderingHint hint)
3404 TRACE("(%p, %d)\n", graphics, hint);
3407 return InvalidParameter;
3412 graphics->texthint = hint;
3417 GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
3419 TRACE("(%p, %p)\n", graphics, matrix);
3421 if(!graphics || !matrix)
3422 return InvalidParameter;
3427 GdipDeleteMatrix(graphics->worldtrans);
3428 return GdipCloneMatrix(matrix, &graphics->worldtrans);
3431 GpStatus WINGDIPAPI GdipTranslateWorldTransform(GpGraphics *graphics, REAL dx,
3432 REAL dy, GpMatrixOrder order)
3434 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, dx, dy, order);
3437 return InvalidParameter;
3442 return GdipTranslateMatrix(graphics->worldtrans, dx, dy, order);
3445 /*****************************************************************************
3446 * GdipSetClipHrgn [GDIPLUS.@]
3448 GpStatus WINGDIPAPI GdipSetClipHrgn(GpGraphics *graphics, HRGN hrgn, CombineMode mode)
3453 TRACE("(%p, %p, %d)\n", graphics, hrgn, mode);
3456 return InvalidParameter;
3458 status = GdipCreateRegionHrgn(hrgn, ®ion);
3462 status = GdipSetClipRegion(graphics, region, mode);
3464 GdipDeleteRegion(region);
3468 GpStatus WINGDIPAPI GdipSetClipPath(GpGraphics *graphics, GpPath *path, CombineMode mode)
3470 TRACE("(%p, %p, %d)\n", graphics, path, mode);
3473 return InvalidParameter;
3478 return GdipCombineRegionPath(graphics->clip, path, mode);
3481 GpStatus WINGDIPAPI GdipSetClipRect(GpGraphics *graphics, REAL x, REAL y,
3482 REAL width, REAL height,
3487 TRACE("(%p, %.2f, %.2f, %.2f, %.2f, %d)\n", graphics, x, y, width, height, mode);
3490 return InvalidParameter;
3498 rect.Height = height;
3500 return GdipCombineRegionRect(graphics->clip, &rect, mode);
3503 GpStatus WINGDIPAPI GdipSetClipRectI(GpGraphics *graphics, INT x, INT y,
3504 INT width, INT height,
3507 TRACE("(%p, %d, %d, %d, %d, %d)\n", graphics, x, y, width, height, mode);
3510 return InvalidParameter;
3515 return GdipSetClipRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, mode);
3518 GpStatus WINGDIPAPI GdipSetClipRegion(GpGraphics *graphics, GpRegion *region,
3521 TRACE("(%p, %p, %d)\n", graphics, region, mode);
3523 if(!graphics || !region)
3524 return InvalidParameter;
3529 return GdipCombineRegionRegion(graphics->clip, region, mode);
3532 GpStatus WINGDIPAPI GdipSetMetafileDownLevelRasterizationLimit(GpMetafile *metafile,
3538 FIXME("not implemented\n");
3540 return NotImplemented;
3543 GpStatus WINGDIPAPI GdipDrawPolygon(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPointF *points,
3549 TRACE("(%p, %p, %d)\n", graphics, points, count);
3551 if(!graphics || !pen || count<=0)
3552 return InvalidParameter;
3557 pti = GdipAlloc(sizeof(POINT) * count);
3559 save_state = prepare_dc(graphics, pen);
3560 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3562 transform_and_round_points(graphics, pti, (GpPointF*)points, count);
3563 Polygon(graphics->hdc, pti, count);
3565 restore_dc(graphics, save_state);
3571 GpStatus WINGDIPAPI GdipDrawPolygonI(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPoint *points,
3578 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
3580 if(count<=0) return InvalidParameter;
3581 ptf = GdipAlloc(sizeof(GpPointF) * count);
3583 for(i = 0;i < count; i++){
3584 ptf[i].X = (REAL)points[i].X;
3585 ptf[i].Y = (REAL)points[i].Y;
3588 ret = GdipDrawPolygon(graphics,pen,ptf,count);
3594 GpStatus WINGDIPAPI GdipGetDpiX(GpGraphics *graphics, REAL* dpi)
3596 TRACE("(%p, %p)\n", graphics, dpi);
3598 if(!graphics || !dpi)
3599 return InvalidParameter;
3604 *dpi = (REAL)GetDeviceCaps(graphics->hdc, LOGPIXELSX);
3609 GpStatus WINGDIPAPI GdipGetDpiY(GpGraphics *graphics, REAL* dpi)
3611 TRACE("(%p, %p)\n", graphics, dpi);
3613 if(!graphics || !dpi)
3614 return InvalidParameter;
3619 *dpi = (REAL)GetDeviceCaps(graphics->hdc, LOGPIXELSY);
3624 GpStatus WINGDIPAPI GdipMultiplyWorldTransform(GpGraphics *graphics, GDIPCONST GpMatrix *matrix,
3625 GpMatrixOrder order)
3630 TRACE("(%p, %p, %d)\n", graphics, matrix, order);
3632 if(!graphics || !matrix)
3633 return InvalidParameter;
3638 m = *(graphics->worldtrans);
3640 ret = GdipMultiplyMatrix(&m, matrix, order);
3642 *(graphics->worldtrans) = m;
3647 GpStatus WINGDIPAPI GdipGetDC(GpGraphics *graphics, HDC *hdc)
3649 TRACE("(%p, %p)\n", graphics, hdc);
3651 if(!graphics || !hdc)
3652 return InvalidParameter;
3657 *hdc = graphics->hdc;
3658 graphics->busy = TRUE;
3663 GpStatus WINGDIPAPI GdipReleaseDC(GpGraphics *graphics, HDC hdc)
3665 TRACE("(%p, %p)\n", graphics, hdc);
3668 return InvalidParameter;
3670 if(graphics->hdc != hdc || !(graphics->busy))
3671 return InvalidParameter;
3673 graphics->busy = FALSE;
3678 GpStatus WINGDIPAPI GdipGetClip(GpGraphics *graphics, GpRegion *region)
3683 TRACE("(%p, %p)\n", graphics, region);
3685 if(!graphics || !region)
3686 return InvalidParameter;
3691 if((status = GdipCloneRegion(graphics->clip, &clip)) != Ok)
3694 /* free everything except root node and header */
3695 delete_element(®ion->node);
3696 memcpy(region, clip, sizeof(GpRegion));
3701 GpStatus WINGDIPAPI GdipTransformPoints(GpGraphics *graphics, GpCoordinateSpace dst_space,
3702 GpCoordinateSpace src_space, GpPointF *points, INT count)
3708 if(!graphics || !points || count <= 0)
3709 return InvalidParameter;
3714 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
3716 if (src_space == dst_space) return Ok;
3718 stat = GdipCreateMatrix(&matrix);
3721 unitscale = convert_unit(graphics->hdc, graphics->unit);
3723 if(graphics->unit != UnitDisplay)
3724 unitscale *= graphics->scale;
3726 /* transform from src_space to CoordinateSpacePage */
3729 case CoordinateSpaceWorld:
3730 GdipMultiplyMatrix(matrix, graphics->worldtrans, MatrixOrderAppend);
3732 case CoordinateSpacePage:
3734 case CoordinateSpaceDevice:
3735 GdipScaleMatrix(matrix, 1.0/unitscale, 1.0/unitscale, MatrixOrderAppend);
3739 /* transform from CoordinateSpacePage to dst_space */
3742 case CoordinateSpaceWorld:
3744 GpMatrix *inverted_transform;
3745 stat = GdipCloneMatrix(graphics->worldtrans, &inverted_transform);
3748 stat = GdipInvertMatrix(inverted_transform);
3750 GdipMultiplyMatrix(matrix, inverted_transform, MatrixOrderAppend);
3751 GdipDeleteMatrix(inverted_transform);
3755 case CoordinateSpacePage:
3757 case CoordinateSpaceDevice:
3758 GdipScaleMatrix(matrix, unitscale, unitscale, MatrixOrderAppend);
3763 stat = GdipTransformMatrixPoints(matrix, points, count);
3765 GdipDeleteMatrix(matrix);
3771 GpStatus WINGDIPAPI GdipTransformPointsI(GpGraphics *graphics, GpCoordinateSpace dst_space,
3772 GpCoordinateSpace src_space, GpPoint *points, INT count)
3778 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
3781 return InvalidParameter;
3783 pointsF = GdipAlloc(sizeof(GpPointF) * count);
3787 for(i = 0; i < count; i++){
3788 pointsF[i].X = (REAL)points[i].X;
3789 pointsF[i].Y = (REAL)points[i].Y;
3792 ret = GdipTransformPoints(graphics, dst_space, src_space, pointsF, count);
3795 for(i = 0; i < count; i++){
3796 points[i].X = roundr(pointsF[i].X);
3797 points[i].Y = roundr(pointsF[i].Y);
3804 HPALETTE WINGDIPAPI GdipCreateHalftonePalette(void)
3811 /*****************************************************************************
3812 * GdipTranslateClip [GDIPLUS.@]
3814 GpStatus WINGDIPAPI GdipTranslateClip(GpGraphics *graphics, REAL dx, REAL dy)
3816 TRACE("(%p, %.2f, %.2f)\n", graphics, dx, dy);
3819 return InvalidParameter;
3824 return GdipTranslateRegion(graphics->clip, dx, dy);
3827 /*****************************************************************************
3828 * GdipTranslateClipI [GDIPLUS.@]
3830 GpStatus WINGDIPAPI GdipTranslateClipI(GpGraphics *graphics, INT dx, INT dy)
3832 TRACE("(%p, %d, %d)\n", graphics, dx, dy);
3835 return InvalidParameter;
3840 return GdipTranslateRegion(graphics->clip, (REAL)dx, (REAL)dy);