gdiplus: Use GdipFillPath to implement GdipFillPie.
[wine/testsucceed.git] / dlls / gdiplus / graphics.c
blob262828bd42681a5acbdf293f0d442d233e62560e
1 /*
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
19 #include <stdarg.h>
20 #include <math.h>
21 #include <limits.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
26 #include "wingdi.h"
27 #include "wine/unicode.h"
29 #define COBJMACROS
30 #include "objbase.h"
31 #include "ocidl.h"
32 #include "olectl.h"
33 #include "ole2.h"
35 #include "winreg.h"
36 #include "shlwapi.h"
38 #include "gdiplus.h"
39 #include "gdiplus_private.h"
40 #include "wine/debug.h"
41 #include "wine/list.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
45 /* looks-right constants */
46 #define ANCHOR_WIDTH (2.0)
47 #define MAX_ITERS (50)
49 /* Converts angle (in degrees) to x/y coordinates */
50 static void deg2xy(REAL angle, REAL x_0, REAL y_0, REAL *x, REAL *y)
52 REAL radAngle, hypotenuse;
54 radAngle = deg2rad(angle);
55 hypotenuse = 50.0; /* arbitrary */
57 *x = x_0 + cos(radAngle) * hypotenuse;
58 *y = y_0 + sin(radAngle) * hypotenuse;
61 /* Converts from gdiplus path point type to gdi path point type. */
62 static BYTE convert_path_point_type(BYTE type)
64 BYTE ret;
66 switch(type & PathPointTypePathTypeMask){
67 case PathPointTypeBezier:
68 ret = PT_BEZIERTO;
69 break;
70 case PathPointTypeLine:
71 ret = PT_LINETO;
72 break;
73 case PathPointTypeStart:
74 ret = PT_MOVETO;
75 break;
76 default:
77 ERR("Bad point type\n");
78 return 0;
81 if(type & PathPointTypeCloseSubpath)
82 ret |= PT_CLOSEFIGURE;
84 return ret;
87 static REAL graphics_res(GpGraphics *graphics)
89 if (graphics->image) return graphics->image->xres;
90 else return (REAL)GetDeviceCaps(graphics->hdc, LOGPIXELSX);
93 static INT prepare_dc(GpGraphics *graphics, GpPen *pen)
95 HPEN gdipen;
96 REAL width;
97 INT save_state, i, numdashes;
98 GpPointF pt[2];
99 DWORD dash_array[MAX_DASHLEN];
101 save_state = SaveDC(graphics->hdc);
103 EndPath(graphics->hdc);
105 if(pen->unit == UnitPixel){
106 width = pen->width;
108 else{
109 /* Get an estimate for the amount the pen width is affected by the world
110 * transform. (This is similar to what some of the wine drivers do.) */
111 pt[0].X = 0.0;
112 pt[0].Y = 0.0;
113 pt[1].X = 1.0;
114 pt[1].Y = 1.0;
115 GdipTransformMatrixPoints(graphics->worldtrans, pt, 2);
116 width = sqrt((pt[1].X - pt[0].X) * (pt[1].X - pt[0].X) +
117 (pt[1].Y - pt[0].Y) * (pt[1].Y - pt[0].Y)) / sqrt(2.0);
119 width *= pen->width * convert_unit(graphics_res(graphics),
120 pen->unit == UnitWorld ? graphics->unit : pen->unit);
123 if(pen->dash == DashStyleCustom){
124 numdashes = min(pen->numdashes, MAX_DASHLEN);
126 TRACE("dashes are: ");
127 for(i = 0; i < numdashes; i++){
128 dash_array[i] = roundr(width * pen->dashes[i]);
129 TRACE("%d, ", dash_array[i]);
131 TRACE("\n and the pen style is %x\n", pen->style);
133 gdipen = ExtCreatePen(pen->style, roundr(width), &pen->brush->lb,
134 numdashes, dash_array);
136 else
137 gdipen = ExtCreatePen(pen->style, roundr(width), &pen->brush->lb, 0, NULL);
139 SelectObject(graphics->hdc, gdipen);
141 return save_state;
144 static void restore_dc(GpGraphics *graphics, INT state)
146 DeleteObject(SelectObject(graphics->hdc, GetStockObject(NULL_PEN)));
147 RestoreDC(graphics->hdc, state);
150 static GpStatus get_graphics_transform(GpGraphics *graphics, GpCoordinateSpace dst_space,
151 GpCoordinateSpace src_space, GpMatrix **matrix);
153 /* This helper applies all the changes that the points listed in ptf need in
154 * order to be drawn on the device context. In the end, this should include at
155 * least:
156 * -scaling by page unit
157 * -applying world transformation
158 * -converting from float to int
159 * Native gdiplus uses gdi32 to do all this (via SetMapMode, SetViewportExtEx,
160 * SetWindowExtEx, SetWorldTransform, etc.) but we cannot because we are using
161 * gdi to draw, and these functions would irreparably mess with line widths.
163 static void transform_and_round_points(GpGraphics *graphics, POINT *pti,
164 GpPointF *ptf, INT count)
166 REAL unitscale;
167 GpMatrix *matrix;
168 int i;
170 unitscale = convert_unit(graphics_res(graphics), graphics->unit);
172 /* apply page scale */
173 if(graphics->unit != UnitDisplay)
174 unitscale *= graphics->scale;
176 GdipCloneMatrix(graphics->worldtrans, &matrix);
177 GdipScaleMatrix(matrix, unitscale, unitscale, MatrixOrderAppend);
178 GdipTransformMatrixPoints(matrix, ptf, count);
179 GdipDeleteMatrix(matrix);
181 for(i = 0; i < count; i++){
182 pti[i].x = roundr(ptf[i].X);
183 pti[i].y = roundr(ptf[i].Y);
187 /* Draw non-premultiplied ARGB data to the given graphics object */
188 static GpStatus alpha_blend_pixels(GpGraphics *graphics, INT dst_x, INT dst_y,
189 const BYTE *src, INT src_width, INT src_height, INT src_stride)
191 if (graphics->image && graphics->image->type == ImageTypeBitmap)
193 GpBitmap *dst_bitmap = (GpBitmap*)graphics->image;
194 INT x, y;
196 for (x=0; x<src_width; x++)
198 for (y=0; y<src_height; y++)
200 ARGB dst_color, src_color;
201 GdipBitmapGetPixel(dst_bitmap, x+dst_x, y+dst_y, &dst_color);
202 src_color = ((ARGB*)(src + src_stride * y))[x];
203 GdipBitmapSetPixel(dst_bitmap, x+dst_x, y+dst_y, color_over(dst_color, src_color));
207 return Ok;
209 else
211 HDC hdc;
212 HBITMAP hbitmap, old_hbm=NULL;
213 BITMAPINFOHEADER bih;
214 BYTE *temp_bits;
215 BLENDFUNCTION bf;
217 hdc = CreateCompatibleDC(0);
219 bih.biSize = sizeof(BITMAPINFOHEADER);
220 bih.biWidth = src_width;
221 bih.biHeight = -src_height;
222 bih.biPlanes = 1;
223 bih.biBitCount = 32;
224 bih.biCompression = BI_RGB;
225 bih.biSizeImage = 0;
226 bih.biXPelsPerMeter = 0;
227 bih.biYPelsPerMeter = 0;
228 bih.biClrUsed = 0;
229 bih.biClrImportant = 0;
231 hbitmap = CreateDIBSection(hdc, (BITMAPINFO*)&bih, DIB_RGB_COLORS,
232 (void**)&temp_bits, NULL, 0);
234 convert_32bppARGB_to_32bppPARGB(src_width, src_height, temp_bits,
235 4 * src_width, src, src_stride);
237 old_hbm = SelectObject(hdc, hbitmap);
239 bf.BlendOp = AC_SRC_OVER;
240 bf.BlendFlags = 0;
241 bf.SourceConstantAlpha = 255;
242 bf.AlphaFormat = AC_SRC_ALPHA;
244 GdiAlphaBlend(graphics->hdc, dst_x, dst_y, src_width, src_height,
245 hdc, 0, 0, src_width, src_height, bf);
247 SelectObject(hdc, old_hbm);
248 DeleteDC(hdc);
249 DeleteObject(hbitmap);
251 return Ok;
255 static ARGB blend_colors(ARGB start, ARGB end, REAL position)
257 ARGB result=0;
258 ARGB i;
259 INT a1, a2, a3;
261 a1 = (start >> 24) & 0xff;
262 a2 = (end >> 24) & 0xff;
264 a3 = (int)(a1*(1.0f - position)+a2*(position));
266 result |= a3 << 24;
268 for (i=0xff; i<=0xff0000; i = i << 8)
269 result |= (int)((start&i)*(1.0f - position)+(end&i)*(position))&i;
270 return result;
273 static ARGB blend_line_gradient(GpLineGradient* brush, REAL position)
275 REAL blendfac;
277 /* clamp to between 0.0 and 1.0, using the wrap mode */
278 if (brush->wrap == WrapModeTile)
280 position = fmodf(position, 1.0f);
281 if (position < 0.0f) position += 1.0f;
283 else /* WrapModeFlip* */
285 position = fmodf(position, 2.0f);
286 if (position < 0.0f) position += 2.0f;
287 if (position > 1.0f) position = 2.0f - position;
290 if (brush->blendcount == 1)
291 blendfac = position;
292 else
294 int i=1;
295 REAL left_blendpos, left_blendfac, right_blendpos, right_blendfac;
296 REAL range;
298 /* locate the blend positions surrounding this position */
299 while (position > brush->blendpos[i])
300 i++;
302 /* interpolate between the blend positions */
303 left_blendpos = brush->blendpos[i-1];
304 left_blendfac = brush->blendfac[i-1];
305 right_blendpos = brush->blendpos[i];
306 right_blendfac = brush->blendfac[i];
307 range = right_blendpos - left_blendpos;
308 blendfac = (left_blendfac * (right_blendpos - position) +
309 right_blendfac * (position - left_blendpos)) / range;
312 if (brush->pblendcount == 0)
313 return blend_colors(brush->startcolor, brush->endcolor, blendfac);
314 else
316 int i=1;
317 ARGB left_blendcolor, right_blendcolor;
318 REAL left_blendpos, right_blendpos;
320 /* locate the blend colors surrounding this position */
321 while (blendfac > brush->pblendpos[i])
322 i++;
324 /* interpolate between the blend colors */
325 left_blendpos = brush->pblendpos[i-1];
326 left_blendcolor = brush->pblendcolor[i-1];
327 right_blendpos = brush->pblendpos[i];
328 right_blendcolor = brush->pblendcolor[i];
329 blendfac = (blendfac - left_blendpos) / (right_blendpos - left_blendpos);
330 return blend_colors(left_blendcolor, right_blendcolor, blendfac);
334 static void apply_image_attributes(const GpImageAttributes *attributes, LPBYTE data,
335 UINT width, UINT height, INT stride, ColorAdjustType type)
337 UINT x, y, i;
339 if (attributes->colorkeys[type].enabled ||
340 attributes->colorkeys[ColorAdjustTypeDefault].enabled)
342 const struct color_key *key;
343 BYTE min_blue, min_green, min_red;
344 BYTE max_blue, max_green, max_red;
346 if (attributes->colorkeys[type].enabled)
347 key = &attributes->colorkeys[type];
348 else
349 key = &attributes->colorkeys[ColorAdjustTypeDefault];
351 min_blue = key->low&0xff;
352 min_green = (key->low>>8)&0xff;
353 min_red = (key->low>>16)&0xff;
355 max_blue = key->high&0xff;
356 max_green = (key->high>>8)&0xff;
357 max_red = (key->high>>16)&0xff;
359 for (x=0; x<width; x++)
360 for (y=0; y<height; y++)
362 ARGB *src_color;
363 BYTE blue, green, red;
364 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
365 blue = *src_color&0xff;
366 green = (*src_color>>8)&0xff;
367 red = (*src_color>>16)&0xff;
368 if (blue >= min_blue && green >= min_green && red >= min_red &&
369 blue <= max_blue && green <= max_green && red <= max_red)
370 *src_color = 0x00000000;
374 if (attributes->colorremaptables[type].enabled ||
375 attributes->colorremaptables[ColorAdjustTypeDefault].enabled)
377 const struct color_remap_table *table;
379 if (attributes->colorremaptables[type].enabled)
380 table = &attributes->colorremaptables[type];
381 else
382 table = &attributes->colorremaptables[ColorAdjustTypeDefault];
384 for (x=0; x<width; x++)
385 for (y=0; y<height; y++)
387 ARGB *src_color;
388 src_color = (ARGB*)(data + stride * y + sizeof(ARGB) * x);
389 for (i=0; i<table->mapsize; i++)
391 if (*src_color == table->colormap[i].oldColor.Argb)
393 *src_color = table->colormap[i].newColor.Argb;
394 break;
400 if (attributes->colormatrices[type].enabled ||
401 attributes->colormatrices[ColorAdjustTypeDefault].enabled)
403 static int fixme;
404 if (!fixme++)
405 FIXME("Color transforms not implemented\n");
408 if (attributes->gamma_enabled[type] ||
409 attributes->gamma_enabled[ColorAdjustTypeDefault])
411 static int fixme;
412 if (!fixme++)
413 FIXME("Gamma adjustment not implemented\n");
417 /* Given a bitmap and its source rectangle, find the smallest rectangle in the
418 * bitmap that contains all the pixels we may need to draw it. */
419 static void get_bitmap_sample_size(InterpolationMode interpolation, WrapMode wrap,
420 GpBitmap* bitmap, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
421 GpRect *rect)
423 INT left, top, right, bottom;
425 switch (interpolation)
427 case InterpolationModeHighQualityBilinear:
428 case InterpolationModeHighQualityBicubic:
429 /* FIXME: Include a greater range for the prefilter? */
430 case InterpolationModeBicubic:
431 case InterpolationModeBilinear:
432 left = (INT)(floorf(srcx));
433 top = (INT)(floorf(srcy));
434 right = (INT)(ceilf(srcx+srcwidth));
435 bottom = (INT)(ceilf(srcy+srcheight));
436 break;
437 case InterpolationModeNearestNeighbor:
438 default:
439 left = roundr(srcx);
440 top = roundr(srcy);
441 right = roundr(srcx+srcwidth);
442 bottom = roundr(srcy+srcheight);
443 break;
446 if (wrap == WrapModeClamp)
448 if (left < 0)
449 left = 0;
450 if (top < 0)
451 top = 0;
452 if (right >= bitmap->width)
453 right = bitmap->width-1;
454 if (bottom >= bitmap->height)
455 bottom = bitmap->height-1;
457 else
459 /* In some cases we can make the rectangle smaller here, but the logic
460 * is hard to get right, and tiling suggests we're likely to use the
461 * entire source image. */
462 if (left < 0 || right >= bitmap->width)
464 left = 0;
465 right = bitmap->width-1;
468 if (top < 0 || bottom >= bitmap->height)
470 top = 0;
471 bottom = bitmap->height-1;
475 rect->X = left;
476 rect->Y = top;
477 rect->Width = right - left + 1;
478 rect->Height = bottom - top + 1;
481 static ARGB sample_bitmap_pixel(GDIPCONST GpRect *src_rect, LPBYTE bits, UINT width,
482 UINT height, INT x, INT y, GDIPCONST GpImageAttributes *attributes)
484 if (attributes->wrap == WrapModeClamp)
486 if (x < 0 || y < 0 || x >= width || y >= height)
487 return attributes->outside_color;
489 else
491 /* Tiling. Make sure co-ordinates are positive as it simplifies the math. */
492 if (x < 0)
493 x = width*2 + x % (width * 2);
494 if (y < 0)
495 y = height*2 + y % (height * 2);
497 if ((attributes->wrap & 1) == 1)
499 /* Flip X */
500 if ((x / width) % 2 == 0)
501 x = x % width;
502 else
503 x = width - 1 - x % width;
505 else
506 x = x % width;
508 if ((attributes->wrap & 2) == 2)
510 /* Flip Y */
511 if ((y / height) % 2 == 0)
512 y = y % height;
513 else
514 y = height - 1 - y % height;
516 else
517 y = y % height;
520 if (x < src_rect->X || y < src_rect->Y || x >= src_rect->X + src_rect->Width || y >= src_rect->Y + src_rect->Height)
522 ERR("out of range pixel requested\n");
523 return 0xffcd0084;
526 return ((DWORD*)(bits))[(x - src_rect->X) + (y - src_rect->Y) * src_rect->Width];
529 static ARGB resample_bitmap_pixel(GDIPCONST GpRect *src_rect, LPBYTE bits, UINT width,
530 UINT height, GpPointF *point, GDIPCONST GpImageAttributes *attributes,
531 InterpolationMode interpolation)
533 static int fixme;
535 switch (interpolation)
537 default:
538 if (!fixme++)
539 FIXME("Unimplemented interpolation %i\n", interpolation);
540 /* fall-through */
541 case InterpolationModeBilinear:
543 REAL leftxf, topyf;
544 INT leftx, rightx, topy, bottomy;
545 ARGB topleft, topright, bottomleft, bottomright;
546 ARGB top, bottom;
547 float x_offset;
549 leftxf = floorf(point->X);
550 leftx = (INT)leftxf;
551 rightx = (INT)ceilf(point->X);
552 topyf = floorf(point->Y);
553 topy = (INT)topyf;
554 bottomy = (INT)ceilf(point->Y);
556 if (leftx == rightx && topy == bottomy)
557 return sample_bitmap_pixel(src_rect, bits, width, height,
558 leftx, topy, attributes);
560 topleft = sample_bitmap_pixel(src_rect, bits, width, height,
561 leftx, topy, attributes);
562 topright = sample_bitmap_pixel(src_rect, bits, width, height,
563 rightx, topy, attributes);
564 bottomleft = sample_bitmap_pixel(src_rect, bits, width, height,
565 leftx, bottomy, attributes);
566 bottomright = sample_bitmap_pixel(src_rect, bits, width, height,
567 rightx, bottomy, attributes);
569 x_offset = point->X - leftxf;
570 top = blend_colors(topleft, topright, x_offset);
571 bottom = blend_colors(bottomleft, bottomright, x_offset);
573 return blend_colors(top, bottom, point->Y - topyf);
575 case InterpolationModeNearestNeighbor:
576 return sample_bitmap_pixel(src_rect, bits, width, height,
577 roundr(point->X), roundr(point->Y), attributes);
581 static INT brush_can_fill_path(GpBrush *brush)
583 switch (brush->bt)
585 case BrushTypeSolidColor:
586 case BrushTypeHatchFill:
587 return 1;
588 case BrushTypeLinearGradient:
589 case BrushTypeTextureFill:
590 /* Gdi32 isn't much help with these, so we should use brush_fill_pixels instead. */
591 default:
592 return 0;
596 static void brush_fill_path(GpGraphics *graphics, GpBrush* brush)
598 switch (brush->bt)
600 case BrushTypeLinearGradient:
602 GpLineGradient *line = (GpLineGradient*)brush;
603 RECT rc;
605 SelectClipPath(graphics->hdc, RGN_AND);
606 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
608 GpPointF endpointsf[2];
609 POINT endpointsi[2];
610 POINT poly[4];
612 SelectObject(graphics->hdc, GetStockObject(NULL_PEN));
614 endpointsf[0] = line->startpoint;
615 endpointsf[1] = line->endpoint;
616 transform_and_round_points(graphics, endpointsi, endpointsf, 2);
618 if (abs(endpointsi[0].x-endpointsi[1].x) > abs(endpointsi[0].y-endpointsi[1].y))
620 /* vertical-ish gradient */
621 int startx, endx; /* x co-ordinates of endpoints shifted to intersect the top of the visible rectangle */
622 int startbottomx; /* x co-ordinate of start point shifted to intersect the bottom of the visible rectangle */
623 int width;
624 COLORREF col;
625 HBRUSH hbrush, hprevbrush;
626 int leftx, rightx; /* x co-ordinates where the leftmost and rightmost gradient lines hit the top of the visible rectangle */
627 int x;
628 int tilt; /* horizontal distance covered by a gradient line */
630 startx = roundr((rc.top - endpointsf[0].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[0].X);
631 endx = roundr((rc.top - endpointsf[1].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[1].X);
632 width = endx - startx;
633 startbottomx = roundr((rc.bottom - endpointsf[0].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[0].X);
634 tilt = startx - startbottomx;
636 if (startx >= startbottomx)
638 leftx = rc.left;
639 rightx = rc.right + tilt;
641 else
643 leftx = rc.left + tilt;
644 rightx = rc.right;
647 poly[0].y = rc.bottom;
648 poly[1].y = rc.top;
649 poly[2].y = rc.top;
650 poly[3].y = rc.bottom;
652 for (x=leftx; x<=rightx; x++)
654 ARGB argb = blend_line_gradient(line, (x-startx)/(REAL)width);
655 col = ARGB2COLORREF(argb);
656 hbrush = CreateSolidBrush(col);
657 hprevbrush = SelectObject(graphics->hdc, hbrush);
658 poly[0].x = x - tilt - 1;
659 poly[1].x = x - 1;
660 poly[2].x = x;
661 poly[3].x = x - tilt;
662 Polygon(graphics->hdc, poly, 4);
663 SelectObject(graphics->hdc, hprevbrush);
664 DeleteObject(hbrush);
667 else if (endpointsi[0].y != endpointsi[1].y)
669 /* horizontal-ish gradient */
670 int starty, endy; /* y co-ordinates of endpoints shifted to intersect the left of the visible rectangle */
671 int startrighty; /* y co-ordinate of start point shifted to intersect the right of the visible rectangle */
672 int height;
673 COLORREF col;
674 HBRUSH hbrush, hprevbrush;
675 int topy, bottomy; /* y co-ordinates where the topmost and bottommost gradient lines hit the left of the visible rectangle */
676 int y;
677 int tilt; /* vertical distance covered by a gradient line */
679 starty = roundr((rc.left - endpointsf[0].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[0].Y);
680 endy = roundr((rc.left - endpointsf[1].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[1].Y);
681 height = endy - starty;
682 startrighty = roundr((rc.right - endpointsf[0].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[0].Y);
683 tilt = starty - startrighty;
685 if (starty >= startrighty)
687 topy = rc.top;
688 bottomy = rc.bottom + tilt;
690 else
692 topy = rc.top + tilt;
693 bottomy = rc.bottom;
696 poly[0].x = rc.right;
697 poly[1].x = rc.left;
698 poly[2].x = rc.left;
699 poly[3].x = rc.right;
701 for (y=topy; y<=bottomy; y++)
703 ARGB argb = blend_line_gradient(line, (y-starty)/(REAL)height);
704 col = ARGB2COLORREF(argb);
705 hbrush = CreateSolidBrush(col);
706 hprevbrush = SelectObject(graphics->hdc, hbrush);
707 poly[0].y = y - tilt - 1;
708 poly[1].y = y - 1;
709 poly[2].y = y;
710 poly[3].y = y - tilt;
711 Polygon(graphics->hdc, poly, 4);
712 SelectObject(graphics->hdc, hprevbrush);
713 DeleteObject(hbrush);
716 /* else startpoint == endpoint */
718 break;
720 case BrushTypeSolidColor:
722 GpSolidFill *fill = (GpSolidFill*)brush;
723 if (fill->bmp)
725 RECT rc;
726 /* partially transparent fill */
728 SelectClipPath(graphics->hdc, RGN_AND);
729 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
731 HDC hdc = CreateCompatibleDC(NULL);
732 HBITMAP oldbmp;
733 BLENDFUNCTION bf;
735 if (!hdc) break;
737 oldbmp = SelectObject(hdc, fill->bmp);
739 bf.BlendOp = AC_SRC_OVER;
740 bf.BlendFlags = 0;
741 bf.SourceConstantAlpha = 255;
742 bf.AlphaFormat = AC_SRC_ALPHA;
744 GdiAlphaBlend(graphics->hdc, rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top, hdc, 0, 0, 1, 1, bf);
746 SelectObject(hdc, oldbmp);
747 DeleteDC(hdc);
750 break;
752 /* else fall through */
754 default:
755 SelectObject(graphics->hdc, brush->gdibrush);
756 FillPath(graphics->hdc);
757 break;
761 static INT brush_can_fill_pixels(GpBrush *brush)
763 switch (brush->bt)
765 case BrushTypeSolidColor:
766 case BrushTypeHatchFill:
767 case BrushTypeLinearGradient:
768 case BrushTypeTextureFill:
769 return 1;
770 default:
771 return 0;
775 static GpStatus brush_fill_pixels(GpGraphics *graphics, GpBrush *brush,
776 DWORD *argb_pixels, GpRect *fill_area, UINT cdwStride)
778 switch (brush->bt)
780 case BrushTypeSolidColor:
782 int x, y;
783 GpSolidFill *fill = (GpSolidFill*)brush;
784 for (x=0; x<fill_area->Width; x++)
785 for (y=0; y<fill_area->Height; y++)
786 argb_pixels[x + y*cdwStride] = fill->color;
787 return Ok;
789 case BrushTypeHatchFill:
791 int x, y;
792 GpHatch *fill = (GpHatch*)brush;
793 const char *hatch_data;
795 if (get_hatch_data(fill->hatchstyle, &hatch_data) != Ok)
796 return NotImplemented;
798 for (x=0; x<fill_area->Width; x++)
799 for (y=0; y<fill_area->Height; y++)
801 int hx, hy;
803 /* FIXME: Account for the rendering origin */
804 hx = (x + fill_area->X) % 8;
805 hy = (y + fill_area->Y) % 8;
807 if ((hatch_data[7-hy] & (0x80 >> hx)) != 0)
808 argb_pixels[x + y*cdwStride] = fill->forecol;
809 else
810 argb_pixels[x + y*cdwStride] = fill->backcol;
813 return Ok;
815 case BrushTypeLinearGradient:
817 GpLineGradient *fill = (GpLineGradient*)brush;
818 GpPointF draw_points[3], line_points[3];
819 GpStatus stat;
820 static const GpRectF box_1 = { 0.0, 0.0, 1.0, 1.0 };
821 GpMatrix *world_to_gradient; /* FIXME: Store this in the brush? */
822 int x, y;
824 draw_points[0].X = fill_area->X;
825 draw_points[0].Y = fill_area->Y;
826 draw_points[1].X = fill_area->X+1;
827 draw_points[1].Y = fill_area->Y;
828 draw_points[2].X = fill_area->X;
829 draw_points[2].Y = fill_area->Y+1;
831 /* Transform the points to a co-ordinate space where X is the point's
832 * position in the gradient, 0.0 being the start point and 1.0 the
833 * end point. */
834 stat = GdipTransformPoints(graphics, CoordinateSpaceWorld,
835 CoordinateSpaceDevice, draw_points, 3);
837 if (stat == Ok)
839 line_points[0] = fill->startpoint;
840 line_points[1] = fill->endpoint;
841 line_points[2].X = fill->startpoint.X + (fill->startpoint.Y - fill->endpoint.Y);
842 line_points[2].Y = fill->startpoint.Y + (fill->endpoint.X - fill->startpoint.X);
844 stat = GdipCreateMatrix3(&box_1, line_points, &world_to_gradient);
847 if (stat == Ok)
849 stat = GdipInvertMatrix(world_to_gradient);
851 if (stat == Ok)
852 stat = GdipTransformMatrixPoints(world_to_gradient, draw_points, 3);
854 GdipDeleteMatrix(world_to_gradient);
857 if (stat == Ok)
859 REAL x_delta = draw_points[1].X - draw_points[0].X;
860 REAL y_delta = draw_points[2].X - draw_points[0].X;
862 for (y=0; y<fill_area->Height; y++)
864 for (x=0; x<fill_area->Width; x++)
866 REAL pos = draw_points[0].X + x * x_delta + y * y_delta;
868 argb_pixels[x + y*cdwStride] = blend_line_gradient(fill, pos);
873 return stat;
875 case BrushTypeTextureFill:
877 GpTexture *fill = (GpTexture*)brush;
878 GpPointF draw_points[3];
879 GpStatus stat;
880 GpMatrix *world_to_texture;
881 int x, y;
882 GpBitmap *bitmap;
883 int src_stride;
884 GpRect src_area;
886 if (fill->image->type != ImageTypeBitmap)
888 FIXME("metafile texture brushes not implemented\n");
889 return NotImplemented;
892 bitmap = (GpBitmap*)fill->image;
893 src_stride = sizeof(ARGB) * bitmap->width;
895 src_area.X = src_area.Y = 0;
896 src_area.Width = bitmap->width;
897 src_area.Height = bitmap->height;
899 draw_points[0].X = fill_area->X;
900 draw_points[0].Y = fill_area->Y;
901 draw_points[1].X = fill_area->X+1;
902 draw_points[1].Y = fill_area->Y;
903 draw_points[2].X = fill_area->X;
904 draw_points[2].Y = fill_area->Y+1;
906 /* Transform the points to the co-ordinate space of the bitmap. */
907 stat = GdipTransformPoints(graphics, CoordinateSpaceWorld,
908 CoordinateSpaceDevice, draw_points, 3);
910 if (stat == Ok)
912 stat = GdipCloneMatrix(fill->transform, &world_to_texture);
915 if (stat == Ok)
917 stat = GdipInvertMatrix(world_to_texture);
919 if (stat == Ok)
920 stat = GdipTransformMatrixPoints(world_to_texture, draw_points, 3);
922 GdipDeleteMatrix(world_to_texture);
925 if (stat == Ok && !fill->bitmap_bits)
927 BitmapData lockeddata;
929 fill->bitmap_bits = GdipAlloc(sizeof(ARGB) * bitmap->width * bitmap->height);
930 if (!fill->bitmap_bits)
931 stat = OutOfMemory;
933 if (stat == Ok)
935 lockeddata.Width = bitmap->width;
936 lockeddata.Height = bitmap->height;
937 lockeddata.Stride = src_stride;
938 lockeddata.PixelFormat = PixelFormat32bppARGB;
939 lockeddata.Scan0 = fill->bitmap_bits;
941 stat = GdipBitmapLockBits(bitmap, &src_area, ImageLockModeRead|ImageLockModeUserInputBuf,
942 PixelFormat32bppARGB, &lockeddata);
945 if (stat == Ok)
946 stat = GdipBitmapUnlockBits(bitmap, &lockeddata);
948 if (stat == Ok)
949 apply_image_attributes(fill->imageattributes, fill->bitmap_bits,
950 bitmap->width, bitmap->height,
951 src_stride, ColorAdjustTypeBitmap);
953 if (stat != Ok)
955 GdipFree(fill->bitmap_bits);
956 fill->bitmap_bits = NULL;
960 if (stat == Ok)
962 REAL x_dx = draw_points[1].X - draw_points[0].X;
963 REAL x_dy = draw_points[1].Y - draw_points[0].Y;
964 REAL y_dx = draw_points[2].X - draw_points[0].X;
965 REAL y_dy = draw_points[2].Y - draw_points[0].Y;
967 for (y=0; y<fill_area->Height; y++)
969 for (x=0; x<fill_area->Width; x++)
971 GpPointF point;
972 point.X = draw_points[0].X + x * x_dx + y * y_dx;
973 point.Y = draw_points[0].Y + y * x_dy + y * y_dy;
975 argb_pixels[x + y*cdwStride] = resample_bitmap_pixel(
976 &src_area, fill->bitmap_bits, bitmap->width, bitmap->height,
977 &point, fill->imageattributes, graphics->interpolation);
982 return stat;
984 default:
985 return NotImplemented;
989 /* GdipDrawPie/GdipFillPie helper function */
990 static void draw_pie(GpGraphics *graphics, REAL x, REAL y, REAL width,
991 REAL height, REAL startAngle, REAL sweepAngle)
993 GpPointF ptf[4];
994 POINT pti[4];
996 ptf[0].X = x;
997 ptf[0].Y = y;
998 ptf[1].X = x + width;
999 ptf[1].Y = y + height;
1001 deg2xy(startAngle+sweepAngle, x + width / 2.0, y + width / 2.0, &ptf[2].X, &ptf[2].Y);
1002 deg2xy(startAngle, x + width / 2.0, y + width / 2.0, &ptf[3].X, &ptf[3].Y);
1004 transform_and_round_points(graphics, pti, ptf, 4);
1006 Pie(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y, pti[2].x,
1007 pti[2].y, pti[3].x, pti[3].y);
1010 /* Draws the linecap the specified color and size on the hdc. The linecap is in
1011 * direction of the line from x1, y1 to x2, y2 and is anchored on x2, y2. Probably
1012 * should not be called on an hdc that has a path you care about. */
1013 static void draw_cap(GpGraphics *graphics, COLORREF color, GpLineCap cap, REAL size,
1014 const GpCustomLineCap *custom, REAL x1, REAL y1, REAL x2, REAL y2)
1016 HGDIOBJ oldbrush = NULL, oldpen = NULL;
1017 GpMatrix *matrix = NULL;
1018 HBRUSH brush = NULL;
1019 HPEN pen = NULL;
1020 PointF ptf[4], *custptf = NULL;
1021 POINT pt[4], *custpt = NULL;
1022 BYTE *tp = NULL;
1023 REAL theta, dsmall, dbig, dx, dy = 0.0;
1024 INT i, count;
1025 LOGBRUSH lb;
1026 BOOL customstroke;
1028 if((x1 == x2) && (y1 == y2))
1029 return;
1031 theta = gdiplus_atan2(y2 - y1, x2 - x1);
1033 customstroke = (cap == LineCapCustom) && custom && (!custom->fill);
1034 if(!customstroke){
1035 brush = CreateSolidBrush(color);
1036 lb.lbStyle = BS_SOLID;
1037 lb.lbColor = color;
1038 lb.lbHatch = 0;
1039 pen = ExtCreatePen(PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT |
1040 PS_JOIN_MITER, 1, &lb, 0,
1041 NULL);
1042 oldbrush = SelectObject(graphics->hdc, brush);
1043 oldpen = SelectObject(graphics->hdc, pen);
1046 switch(cap){
1047 case LineCapFlat:
1048 break;
1049 case LineCapSquare:
1050 case LineCapSquareAnchor:
1051 case LineCapDiamondAnchor:
1052 size = size * (cap & LineCapNoAnchor ? ANCHOR_WIDTH : 1.0) / 2.0;
1053 if(cap == LineCapDiamondAnchor){
1054 dsmall = cos(theta + M_PI_2) * size;
1055 dbig = sin(theta + M_PI_2) * size;
1057 else{
1058 dsmall = cos(theta + M_PI_4) * size;
1059 dbig = sin(theta + M_PI_4) * size;
1062 ptf[0].X = x2 - dsmall;
1063 ptf[1].X = x2 + dbig;
1065 ptf[0].Y = y2 - dbig;
1066 ptf[3].Y = y2 + dsmall;
1068 ptf[1].Y = y2 - dsmall;
1069 ptf[2].Y = y2 + dbig;
1071 ptf[3].X = x2 - dbig;
1072 ptf[2].X = x2 + dsmall;
1074 transform_and_round_points(graphics, pt, ptf, 4);
1075 Polygon(graphics->hdc, pt, 4);
1077 break;
1078 case LineCapArrowAnchor:
1079 size = size * 4.0 / sqrt(3.0);
1081 dx = cos(M_PI / 6.0 + theta) * size;
1082 dy = sin(M_PI / 6.0 + theta) * size;
1084 ptf[0].X = x2 - dx;
1085 ptf[0].Y = y2 - dy;
1087 dx = cos(- M_PI / 6.0 + theta) * size;
1088 dy = sin(- M_PI / 6.0 + theta) * size;
1090 ptf[1].X = x2 - dx;
1091 ptf[1].Y = y2 - dy;
1093 ptf[2].X = x2;
1094 ptf[2].Y = y2;
1096 transform_and_round_points(graphics, pt, ptf, 3);
1097 Polygon(graphics->hdc, pt, 3);
1099 break;
1100 case LineCapRoundAnchor:
1101 dx = dy = ANCHOR_WIDTH * size / 2.0;
1103 ptf[0].X = x2 - dx;
1104 ptf[0].Y = y2 - dy;
1105 ptf[1].X = x2 + dx;
1106 ptf[1].Y = y2 + dy;
1108 transform_and_round_points(graphics, pt, ptf, 2);
1109 Ellipse(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y);
1111 break;
1112 case LineCapTriangle:
1113 size = size / 2.0;
1114 dx = cos(M_PI_2 + theta) * size;
1115 dy = sin(M_PI_2 + theta) * size;
1117 ptf[0].X = x2 - dx;
1118 ptf[0].Y = y2 - dy;
1119 ptf[1].X = x2 + dx;
1120 ptf[1].Y = y2 + dy;
1122 dx = cos(theta) * size;
1123 dy = sin(theta) * size;
1125 ptf[2].X = x2 + dx;
1126 ptf[2].Y = y2 + dy;
1128 transform_and_round_points(graphics, pt, ptf, 3);
1129 Polygon(graphics->hdc, pt, 3);
1131 break;
1132 case LineCapRound:
1133 dx = dy = size / 2.0;
1135 ptf[0].X = x2 - dx;
1136 ptf[0].Y = y2 - dy;
1137 ptf[1].X = x2 + dx;
1138 ptf[1].Y = y2 + dy;
1140 dx = -cos(M_PI_2 + theta) * size;
1141 dy = -sin(M_PI_2 + theta) * size;
1143 ptf[2].X = x2 - dx;
1144 ptf[2].Y = y2 - dy;
1145 ptf[3].X = x2 + dx;
1146 ptf[3].Y = y2 + dy;
1148 transform_and_round_points(graphics, pt, ptf, 4);
1149 Pie(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y, pt[2].x,
1150 pt[2].y, pt[3].x, pt[3].y);
1152 break;
1153 case LineCapCustom:
1154 if(!custom)
1155 break;
1157 count = custom->pathdata.Count;
1158 custptf = GdipAlloc(count * sizeof(PointF));
1159 custpt = GdipAlloc(count * sizeof(POINT));
1160 tp = GdipAlloc(count);
1162 if(!custptf || !custpt || !tp || (GdipCreateMatrix(&matrix) != Ok))
1163 goto custend;
1165 memcpy(custptf, custom->pathdata.Points, count * sizeof(PointF));
1167 GdipScaleMatrix(matrix, size, size, MatrixOrderAppend);
1168 GdipRotateMatrix(matrix, (180.0 / M_PI) * (theta - M_PI_2),
1169 MatrixOrderAppend);
1170 GdipTranslateMatrix(matrix, x2, y2, MatrixOrderAppend);
1171 GdipTransformMatrixPoints(matrix, custptf, count);
1173 transform_and_round_points(graphics, custpt, custptf, count);
1175 for(i = 0; i < count; i++)
1176 tp[i] = convert_path_point_type(custom->pathdata.Types[i]);
1178 if(custom->fill){
1179 BeginPath(graphics->hdc);
1180 PolyDraw(graphics->hdc, custpt, tp, count);
1181 EndPath(graphics->hdc);
1182 StrokeAndFillPath(graphics->hdc);
1184 else
1185 PolyDraw(graphics->hdc, custpt, tp, count);
1187 custend:
1188 GdipFree(custptf);
1189 GdipFree(custpt);
1190 GdipFree(tp);
1191 GdipDeleteMatrix(matrix);
1192 break;
1193 default:
1194 break;
1197 if(!customstroke){
1198 SelectObject(graphics->hdc, oldbrush);
1199 SelectObject(graphics->hdc, oldpen);
1200 DeleteObject(brush);
1201 DeleteObject(pen);
1205 /* Shortens the line by the given percent by changing x2, y2.
1206 * If percent is > 1.0 then the line will change direction.
1207 * If percent is negative it can lengthen the line. */
1208 static void shorten_line_percent(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL percent)
1210 REAL dist, theta, dx, dy;
1212 if((y1 == *y2) && (x1 == *x2))
1213 return;
1215 dist = sqrt((*x2 - x1) * (*x2 - x1) + (*y2 - y1) * (*y2 - y1)) * -percent;
1216 theta = gdiplus_atan2((*y2 - y1), (*x2 - x1));
1217 dx = cos(theta) * dist;
1218 dy = sin(theta) * dist;
1220 *x2 = *x2 + dx;
1221 *y2 = *y2 + dy;
1224 /* Shortens the line by the given amount by changing x2, y2.
1225 * If the amount is greater than the distance, the line will become length 0.
1226 * If the amount is negative, it can lengthen the line. */
1227 static void shorten_line_amt(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL amt)
1229 REAL dx, dy, percent;
1231 dx = *x2 - x1;
1232 dy = *y2 - y1;
1233 if(dx == 0 && dy == 0)
1234 return;
1236 percent = amt / sqrt(dx * dx + dy * dy);
1237 if(percent >= 1.0){
1238 *x2 = x1;
1239 *y2 = y1;
1240 return;
1243 shorten_line_percent(x1, y1, x2, y2, percent);
1246 /* Draws lines between the given points, and if caps is true then draws an endcap
1247 * at the end of the last line. */
1248 static GpStatus draw_polyline(GpGraphics *graphics, GpPen *pen,
1249 GDIPCONST GpPointF * pt, INT count, BOOL caps)
1251 POINT *pti = NULL;
1252 GpPointF *ptcopy = NULL;
1253 GpStatus status = GenericError;
1255 if(!count)
1256 return Ok;
1258 pti = GdipAlloc(count * sizeof(POINT));
1259 ptcopy = GdipAlloc(count * sizeof(GpPointF));
1261 if(!pti || !ptcopy){
1262 status = OutOfMemory;
1263 goto end;
1266 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1268 if(caps){
1269 if(pen->endcap == LineCapArrowAnchor)
1270 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
1271 &ptcopy[count-1].X, &ptcopy[count-1].Y, pen->width);
1272 else if((pen->endcap == LineCapCustom) && pen->customend)
1273 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
1274 &ptcopy[count-1].X, &ptcopy[count-1].Y,
1275 pen->customend->inset * pen->width);
1277 if(pen->startcap == LineCapArrowAnchor)
1278 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
1279 &ptcopy[0].X, &ptcopy[0].Y, pen->width);
1280 else if((pen->startcap == LineCapCustom) && pen->customstart)
1281 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
1282 &ptcopy[0].X, &ptcopy[0].Y,
1283 pen->customstart->inset * pen->width);
1285 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
1286 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X, pt[count - 1].Y);
1287 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
1288 pt[1].X, pt[1].Y, pt[0].X, pt[0].Y);
1291 transform_and_round_points(graphics, pti, ptcopy, count);
1293 if(Polyline(graphics->hdc, pti, count))
1294 status = Ok;
1296 end:
1297 GdipFree(pti);
1298 GdipFree(ptcopy);
1300 return status;
1303 /* Conducts a linear search to find the bezier points that will back off
1304 * the endpoint of the curve by a distance of amt. Linear search works
1305 * better than binary in this case because there are multiple solutions,
1306 * and binary searches often find a bad one. I don't think this is what
1307 * Windows does but short of rendering the bezier without GDI's help it's
1308 * the best we can do. If rev then work from the start of the passed points
1309 * instead of the end. */
1310 static void shorten_bezier_amt(GpPointF * pt, REAL amt, BOOL rev)
1312 GpPointF origpt[4];
1313 REAL percent = 0.00, dx, dy, origx, origy, diff = -1.0;
1314 INT i, first = 0, second = 1, third = 2, fourth = 3;
1316 if(rev){
1317 first = 3;
1318 second = 2;
1319 third = 1;
1320 fourth = 0;
1323 origx = pt[fourth].X;
1324 origy = pt[fourth].Y;
1325 memcpy(origpt, pt, sizeof(GpPointF) * 4);
1327 for(i = 0; (i < MAX_ITERS) && (diff < amt); i++){
1328 /* reset bezier points to original values */
1329 memcpy(pt, origpt, sizeof(GpPointF) * 4);
1330 /* Perform magic on bezier points. Order is important here.*/
1331 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1332 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
1333 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1334 shorten_line_percent(pt[first].X, pt[first].Y, &pt[second].X, &pt[second].Y, percent);
1335 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
1336 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
1338 dx = pt[fourth].X - origx;
1339 dy = pt[fourth].Y - origy;
1341 diff = sqrt(dx * dx + dy * dy);
1342 percent += 0.0005 * amt;
1346 /* Draws bezier curves between given points, and if caps is true then draws an
1347 * endcap at the end of the last line. */
1348 static GpStatus draw_polybezier(GpGraphics *graphics, GpPen *pen,
1349 GDIPCONST GpPointF * pt, INT count, BOOL caps)
1351 POINT *pti;
1352 GpPointF *ptcopy;
1353 GpStatus status = GenericError;
1355 if(!count)
1356 return Ok;
1358 pti = GdipAlloc(count * sizeof(POINT));
1359 ptcopy = GdipAlloc(count * sizeof(GpPointF));
1361 if(!pti || !ptcopy){
1362 status = OutOfMemory;
1363 goto end;
1366 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1368 if(caps){
1369 if(pen->endcap == LineCapArrowAnchor)
1370 shorten_bezier_amt(&ptcopy[count-4], pen->width, FALSE);
1371 else if((pen->endcap == LineCapCustom) && pen->customend)
1372 shorten_bezier_amt(&ptcopy[count-4], pen->width * pen->customend->inset,
1373 FALSE);
1375 if(pen->startcap == LineCapArrowAnchor)
1376 shorten_bezier_amt(ptcopy, pen->width, TRUE);
1377 else if((pen->startcap == LineCapCustom) && pen->customstart)
1378 shorten_bezier_amt(ptcopy, pen->width * pen->customstart->inset, TRUE);
1380 /* the direction of the line cap is parallel to the direction at the
1381 * end of the bezier (which, if it has been shortened, is not the same
1382 * as the direction from pt[count-2] to pt[count-1]) */
1383 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
1384 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
1385 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
1386 pt[count - 1].X, pt[count - 1].Y);
1388 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
1389 pt[0].X - (ptcopy[0].X - ptcopy[1].X),
1390 pt[0].Y - (ptcopy[0].Y - ptcopy[1].Y), pt[0].X, pt[0].Y);
1393 transform_and_round_points(graphics, pti, ptcopy, count);
1395 PolyBezier(graphics->hdc, pti, count);
1397 status = Ok;
1399 end:
1400 GdipFree(pti);
1401 GdipFree(ptcopy);
1403 return status;
1406 /* Draws a combination of bezier curves and lines between points. */
1407 static GpStatus draw_poly(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF * pt,
1408 GDIPCONST BYTE * types, INT count, BOOL caps)
1410 POINT *pti = GdipAlloc(count * sizeof(POINT));
1411 BYTE *tp = GdipAlloc(count);
1412 GpPointF *ptcopy = GdipAlloc(count * sizeof(GpPointF));
1413 INT i, j;
1414 GpStatus status = GenericError;
1416 if(!count){
1417 status = Ok;
1418 goto end;
1420 if(!pti || !tp || !ptcopy){
1421 status = OutOfMemory;
1422 goto end;
1425 for(i = 1; i < count; i++){
1426 if((types[i] & PathPointTypePathTypeMask) == PathPointTypeBezier){
1427 if((i + 2 >= count) || !(types[i + 1] & PathPointTypeBezier)
1428 || !(types[i + 1] & PathPointTypeBezier)){
1429 ERR("Bad bezier points\n");
1430 goto end;
1432 i += 2;
1436 memcpy(ptcopy, pt, count * sizeof(GpPointF));
1438 /* If we are drawing caps, go through the points and adjust them accordingly,
1439 * and draw the caps. */
1440 if(caps){
1441 switch(types[count - 1] & PathPointTypePathTypeMask){
1442 case PathPointTypeBezier:
1443 if(pen->endcap == LineCapArrowAnchor)
1444 shorten_bezier_amt(&ptcopy[count - 4], pen->width, FALSE);
1445 else if((pen->endcap == LineCapCustom) && pen->customend)
1446 shorten_bezier_amt(&ptcopy[count - 4],
1447 pen->width * pen->customend->inset, FALSE);
1449 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
1450 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
1451 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
1452 pt[count - 1].X, pt[count - 1].Y);
1454 break;
1455 case PathPointTypeLine:
1456 if(pen->endcap == LineCapArrowAnchor)
1457 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
1458 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
1459 pen->width);
1460 else if((pen->endcap == LineCapCustom) && pen->customend)
1461 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
1462 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
1463 pen->customend->inset * pen->width);
1465 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
1466 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X,
1467 pt[count - 1].Y);
1469 break;
1470 default:
1471 ERR("Bad path last point\n");
1472 goto end;
1475 /* Find start of points */
1476 for(j = 1; j < count && ((types[j] & PathPointTypePathTypeMask)
1477 == PathPointTypeStart); j++);
1479 switch(types[j] & PathPointTypePathTypeMask){
1480 case PathPointTypeBezier:
1481 if(pen->startcap == LineCapArrowAnchor)
1482 shorten_bezier_amt(&ptcopy[j - 1], pen->width, TRUE);
1483 else if((pen->startcap == LineCapCustom) && pen->customstart)
1484 shorten_bezier_amt(&ptcopy[j - 1],
1485 pen->width * pen->customstart->inset, TRUE);
1487 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
1488 pt[j - 1].X - (ptcopy[j - 1].X - ptcopy[j].X),
1489 pt[j - 1].Y - (ptcopy[j - 1].Y - ptcopy[j].Y),
1490 pt[j - 1].X, pt[j - 1].Y);
1492 break;
1493 case PathPointTypeLine:
1494 if(pen->startcap == LineCapArrowAnchor)
1495 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
1496 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
1497 pen->width);
1498 else if((pen->startcap == LineCapCustom) && pen->customstart)
1499 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
1500 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
1501 pen->customstart->inset * pen->width);
1503 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
1504 pt[j].X, pt[j].Y, pt[j - 1].X,
1505 pt[j - 1].Y);
1507 break;
1508 default:
1509 ERR("Bad path points\n");
1510 goto end;
1514 transform_and_round_points(graphics, pti, ptcopy, count);
1516 for(i = 0; i < count; i++){
1517 tp[i] = convert_path_point_type(types[i]);
1520 PolyDraw(graphics->hdc, pti, tp, count);
1522 status = Ok;
1524 end:
1525 GdipFree(pti);
1526 GdipFree(ptcopy);
1527 GdipFree(tp);
1529 return status;
1532 GpStatus trace_path(GpGraphics *graphics, GpPath *path)
1534 GpStatus result;
1536 BeginPath(graphics->hdc);
1537 result = draw_poly(graphics, NULL, path->pathdata.Points,
1538 path->pathdata.Types, path->pathdata.Count, FALSE);
1539 EndPath(graphics->hdc);
1540 return result;
1543 typedef struct _GraphicsContainerItem {
1544 struct list entry;
1545 GraphicsContainer contid;
1547 SmoothingMode smoothing;
1548 CompositingQuality compqual;
1549 InterpolationMode interpolation;
1550 CompositingMode compmode;
1551 TextRenderingHint texthint;
1552 REAL scale;
1553 GpUnit unit;
1554 PixelOffsetMode pixeloffset;
1555 UINT textcontrast;
1556 GpMatrix* worldtrans;
1557 GpRegion* clip;
1558 } GraphicsContainerItem;
1560 static GpStatus init_container(GraphicsContainerItem** container,
1561 GDIPCONST GpGraphics* graphics){
1562 GpStatus sts;
1564 *container = GdipAlloc(sizeof(GraphicsContainerItem));
1565 if(!(*container))
1566 return OutOfMemory;
1568 (*container)->contid = graphics->contid + 1;
1570 (*container)->smoothing = graphics->smoothing;
1571 (*container)->compqual = graphics->compqual;
1572 (*container)->interpolation = graphics->interpolation;
1573 (*container)->compmode = graphics->compmode;
1574 (*container)->texthint = graphics->texthint;
1575 (*container)->scale = graphics->scale;
1576 (*container)->unit = graphics->unit;
1577 (*container)->textcontrast = graphics->textcontrast;
1578 (*container)->pixeloffset = graphics->pixeloffset;
1580 sts = GdipCloneMatrix(graphics->worldtrans, &(*container)->worldtrans);
1581 if(sts != Ok){
1582 GdipFree(*container);
1583 *container = NULL;
1584 return sts;
1587 sts = GdipCloneRegion(graphics->clip, &(*container)->clip);
1588 if(sts != Ok){
1589 GdipDeleteMatrix((*container)->worldtrans);
1590 GdipFree(*container);
1591 *container = NULL;
1592 return sts;
1595 return Ok;
1598 static void delete_container(GraphicsContainerItem* container){
1599 GdipDeleteMatrix(container->worldtrans);
1600 GdipDeleteRegion(container->clip);
1601 GdipFree(container);
1604 static GpStatus restore_container(GpGraphics* graphics,
1605 GDIPCONST GraphicsContainerItem* container){
1606 GpStatus sts;
1607 GpMatrix *newTrans;
1608 GpRegion *newClip;
1610 sts = GdipCloneMatrix(container->worldtrans, &newTrans);
1611 if(sts != Ok)
1612 return sts;
1614 sts = GdipCloneRegion(container->clip, &newClip);
1615 if(sts != Ok){
1616 GdipDeleteMatrix(newTrans);
1617 return sts;
1620 GdipDeleteMatrix(graphics->worldtrans);
1621 graphics->worldtrans = newTrans;
1623 GdipDeleteRegion(graphics->clip);
1624 graphics->clip = newClip;
1626 graphics->contid = container->contid - 1;
1628 graphics->smoothing = container->smoothing;
1629 graphics->compqual = container->compqual;
1630 graphics->interpolation = container->interpolation;
1631 graphics->compmode = container->compmode;
1632 graphics->texthint = container->texthint;
1633 graphics->scale = container->scale;
1634 graphics->unit = container->unit;
1635 graphics->textcontrast = container->textcontrast;
1636 graphics->pixeloffset = container->pixeloffset;
1638 return Ok;
1641 static GpStatus get_graphics_bounds(GpGraphics* graphics, GpRectF* rect)
1643 RECT wnd_rect;
1644 GpStatus stat=Ok;
1645 GpUnit unit;
1647 if(graphics->hwnd) {
1648 if(!GetClientRect(graphics->hwnd, &wnd_rect))
1649 return GenericError;
1651 rect->X = wnd_rect.left;
1652 rect->Y = wnd_rect.top;
1653 rect->Width = wnd_rect.right - wnd_rect.left;
1654 rect->Height = wnd_rect.bottom - wnd_rect.top;
1655 }else if (graphics->image){
1656 stat = GdipGetImageBounds(graphics->image, rect, &unit);
1657 if (stat == Ok && unit != UnitPixel)
1658 FIXME("need to convert from unit %i\n", unit);
1659 }else{
1660 rect->X = 0;
1661 rect->Y = 0;
1662 rect->Width = GetDeviceCaps(graphics->hdc, HORZRES);
1663 rect->Height = GetDeviceCaps(graphics->hdc, VERTRES);
1666 return stat;
1669 /* on success, rgn will contain the region of the graphics object which
1670 * is visible after clipping has been applied */
1671 static GpStatus get_visible_clip_region(GpGraphics *graphics, GpRegion *rgn)
1673 GpStatus stat;
1674 GpRectF rectf;
1675 GpRegion* tmp;
1677 if((stat = get_graphics_bounds(graphics, &rectf)) != Ok)
1678 return stat;
1680 if((stat = GdipCreateRegion(&tmp)) != Ok)
1681 return stat;
1683 if((stat = GdipCombineRegionRect(tmp, &rectf, CombineModeReplace)) != Ok)
1684 goto end;
1686 if((stat = GdipCombineRegionRegion(tmp, graphics->clip, CombineModeIntersect)) != Ok)
1687 goto end;
1689 stat = GdipCombineRegionRegion(rgn, tmp, CombineModeReplace);
1691 end:
1692 GdipDeleteRegion(tmp);
1693 return stat;
1696 GpStatus WINGDIPAPI GdipCreateFromHDC(HDC hdc, GpGraphics **graphics)
1698 TRACE("(%p, %p)\n", hdc, graphics);
1700 return GdipCreateFromHDC2(hdc, NULL, graphics);
1703 GpStatus WINGDIPAPI GdipCreateFromHDC2(HDC hdc, HANDLE hDevice, GpGraphics **graphics)
1705 GpStatus retval;
1707 TRACE("(%p, %p, %p)\n", hdc, hDevice, graphics);
1709 if(hDevice != NULL) {
1710 FIXME("Don't know how to handle parameter hDevice\n");
1711 return NotImplemented;
1714 if(hdc == NULL)
1715 return OutOfMemory;
1717 if(graphics == NULL)
1718 return InvalidParameter;
1720 *graphics = GdipAlloc(sizeof(GpGraphics));
1721 if(!*graphics) return OutOfMemory;
1723 if((retval = GdipCreateMatrix(&(*graphics)->worldtrans)) != Ok){
1724 GdipFree(*graphics);
1725 return retval;
1728 if((retval = GdipCreateRegion(&(*graphics)->clip)) != Ok){
1729 GdipFree((*graphics)->worldtrans);
1730 GdipFree(*graphics);
1731 return retval;
1734 (*graphics)->hdc = hdc;
1735 (*graphics)->hwnd = WindowFromDC(hdc);
1736 (*graphics)->owndc = FALSE;
1737 (*graphics)->smoothing = SmoothingModeDefault;
1738 (*graphics)->compqual = CompositingQualityDefault;
1739 (*graphics)->interpolation = InterpolationModeBilinear;
1740 (*graphics)->pixeloffset = PixelOffsetModeDefault;
1741 (*graphics)->compmode = CompositingModeSourceOver;
1742 (*graphics)->unit = UnitDisplay;
1743 (*graphics)->scale = 1.0;
1744 (*graphics)->busy = FALSE;
1745 (*graphics)->textcontrast = 4;
1746 list_init(&(*graphics)->containers);
1747 (*graphics)->contid = 0;
1749 TRACE("<-- %p\n", *graphics);
1751 return Ok;
1754 GpStatus graphics_from_image(GpImage *image, GpGraphics **graphics)
1756 GpStatus retval;
1758 *graphics = GdipAlloc(sizeof(GpGraphics));
1759 if(!*graphics) return OutOfMemory;
1761 if((retval = GdipCreateMatrix(&(*graphics)->worldtrans)) != Ok){
1762 GdipFree(*graphics);
1763 return retval;
1766 if((retval = GdipCreateRegion(&(*graphics)->clip)) != Ok){
1767 GdipFree((*graphics)->worldtrans);
1768 GdipFree(*graphics);
1769 return retval;
1772 (*graphics)->hdc = NULL;
1773 (*graphics)->hwnd = NULL;
1774 (*graphics)->owndc = FALSE;
1775 (*graphics)->image = image;
1776 (*graphics)->smoothing = SmoothingModeDefault;
1777 (*graphics)->compqual = CompositingQualityDefault;
1778 (*graphics)->interpolation = InterpolationModeBilinear;
1779 (*graphics)->pixeloffset = PixelOffsetModeDefault;
1780 (*graphics)->compmode = CompositingModeSourceOver;
1781 (*graphics)->unit = UnitDisplay;
1782 (*graphics)->scale = 1.0;
1783 (*graphics)->busy = FALSE;
1784 (*graphics)->textcontrast = 4;
1785 list_init(&(*graphics)->containers);
1786 (*graphics)->contid = 0;
1788 TRACE("<-- %p\n", *graphics);
1790 return Ok;
1793 GpStatus WINGDIPAPI GdipCreateFromHWND(HWND hwnd, GpGraphics **graphics)
1795 GpStatus ret;
1796 HDC hdc;
1798 TRACE("(%p, %p)\n", hwnd, graphics);
1800 hdc = GetDC(hwnd);
1802 if((ret = GdipCreateFromHDC(hdc, graphics)) != Ok)
1804 ReleaseDC(hwnd, hdc);
1805 return ret;
1808 (*graphics)->hwnd = hwnd;
1809 (*graphics)->owndc = TRUE;
1811 return Ok;
1814 /* FIXME: no icm handling */
1815 GpStatus WINGDIPAPI GdipCreateFromHWNDICM(HWND hwnd, GpGraphics **graphics)
1817 TRACE("(%p, %p)\n", hwnd, graphics);
1819 return GdipCreateFromHWND(hwnd, graphics);
1822 GpStatus WINGDIPAPI GdipCreateMetafileFromEmf(HENHMETAFILE hemf, BOOL delete,
1823 GpMetafile **metafile)
1825 static int calls;
1827 TRACE("(%p,%i,%p)\n", hemf, delete, metafile);
1829 if(!hemf || !metafile)
1830 return InvalidParameter;
1832 if(!(calls++))
1833 FIXME("not implemented\n");
1835 return NotImplemented;
1838 GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
1839 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
1841 IStream *stream = NULL;
1842 UINT read;
1843 BYTE* copy;
1844 HENHMETAFILE hemf;
1845 GpStatus retval = Ok;
1847 TRACE("(%p, %d, %p, %p)\n", hwmf, delete, placeable, metafile);
1849 if(!hwmf || !metafile || !placeable)
1850 return InvalidParameter;
1852 *metafile = NULL;
1853 read = GetMetaFileBitsEx(hwmf, 0, NULL);
1854 if(!read)
1855 return GenericError;
1856 copy = GdipAlloc(read);
1857 GetMetaFileBitsEx(hwmf, read, copy);
1859 hemf = SetWinMetaFileBits(read, copy, NULL, NULL);
1860 GdipFree(copy);
1862 read = GetEnhMetaFileBits(hemf, 0, NULL);
1863 copy = GdipAlloc(read);
1864 GetEnhMetaFileBits(hemf, read, copy);
1865 DeleteEnhMetaFile(hemf);
1867 if(CreateStreamOnHGlobal(copy, TRUE, &stream) != S_OK){
1868 ERR("could not make stream\n");
1869 GdipFree(copy);
1870 retval = GenericError;
1871 goto err;
1874 *metafile = GdipAlloc(sizeof(GpMetafile));
1875 if(!*metafile){
1876 retval = OutOfMemory;
1877 goto err;
1880 if(OleLoadPicture(stream, 0, FALSE, &IID_IPicture,
1881 (LPVOID*) &((*metafile)->image.picture)) != S_OK)
1883 retval = GenericError;
1884 goto err;
1888 (*metafile)->image.type = ImageTypeMetafile;
1889 memcpy(&(*metafile)->image.format, &ImageFormatWMF, sizeof(GUID));
1890 (*metafile)->image.palette_flags = 0;
1891 (*metafile)->image.palette_count = 0;
1892 (*metafile)->image.palette_size = 0;
1893 (*metafile)->image.palette_entries = NULL;
1894 (*metafile)->image.xres = (REAL)placeable->Inch;
1895 (*metafile)->image.yres = (REAL)placeable->Inch;
1896 (*metafile)->bounds.X = ((REAL) placeable->BoundingBox.Left) / ((REAL) placeable->Inch);
1897 (*metafile)->bounds.Y = ((REAL) placeable->BoundingBox.Top) / ((REAL) placeable->Inch);
1898 (*metafile)->bounds.Width = ((REAL) (placeable->BoundingBox.Right
1899 - placeable->BoundingBox.Left));
1900 (*metafile)->bounds.Height = ((REAL) (placeable->BoundingBox.Bottom
1901 - placeable->BoundingBox.Top));
1902 (*metafile)->unit = UnitPixel;
1904 if(delete)
1905 DeleteMetaFile(hwmf);
1907 TRACE("<-- %p\n", *metafile);
1909 err:
1910 if (retval != Ok)
1911 GdipFree(*metafile);
1912 IStream_Release(stream);
1913 return retval;
1916 GpStatus WINGDIPAPI GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR *file,
1917 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
1919 HMETAFILE hmf = GetMetaFileW(file);
1921 TRACE("(%s, %p, %p)\n", debugstr_w(file), placeable, metafile);
1923 if(!hmf) return InvalidParameter;
1925 return GdipCreateMetafileFromWmf(hmf, TRUE, placeable, metafile);
1928 GpStatus WINGDIPAPI GdipCreateMetafileFromFile(GDIPCONST WCHAR *file,
1929 GpMetafile **metafile)
1931 FIXME("(%p, %p): stub\n", file, metafile);
1932 return NotImplemented;
1935 GpStatus WINGDIPAPI GdipCreateMetafileFromStream(IStream *stream,
1936 GpMetafile **metafile)
1938 FIXME("(%p, %p): stub\n", stream, metafile);
1939 return NotImplemented;
1942 GpStatus WINGDIPAPI GdipCreateStreamOnFile(GDIPCONST WCHAR * filename,
1943 UINT access, IStream **stream)
1945 DWORD dwMode;
1946 HRESULT ret;
1948 TRACE("(%s, %u, %p)\n", debugstr_w(filename), access, stream);
1950 if(!stream || !filename)
1951 return InvalidParameter;
1953 if(access & GENERIC_WRITE)
1954 dwMode = STGM_SHARE_DENY_WRITE | STGM_WRITE | STGM_CREATE;
1955 else if(access & GENERIC_READ)
1956 dwMode = STGM_SHARE_DENY_WRITE | STGM_READ | STGM_FAILIFTHERE;
1957 else
1958 return InvalidParameter;
1960 ret = SHCreateStreamOnFileW(filename, dwMode, stream);
1962 return hresult_to_status(ret);
1965 GpStatus WINGDIPAPI GdipDeleteGraphics(GpGraphics *graphics)
1967 GraphicsContainerItem *cont, *next;
1968 TRACE("(%p)\n", graphics);
1970 if(!graphics) return InvalidParameter;
1971 if(graphics->busy) return ObjectBusy;
1973 if(graphics->owndc)
1974 ReleaseDC(graphics->hwnd, graphics->hdc);
1976 LIST_FOR_EACH_ENTRY_SAFE(cont, next, &graphics->containers, GraphicsContainerItem, entry){
1977 list_remove(&cont->entry);
1978 delete_container(cont);
1981 GdipDeleteRegion(graphics->clip);
1982 GdipDeleteMatrix(graphics->worldtrans);
1983 GdipFree(graphics);
1985 return Ok;
1988 GpStatus WINGDIPAPI GdipDrawArc(GpGraphics *graphics, GpPen *pen, REAL x,
1989 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
1991 INT save_state, num_pts;
1992 GpPointF points[MAX_ARC_PTS];
1993 GpStatus retval;
1995 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
1996 width, height, startAngle, sweepAngle);
1998 if(!graphics || !pen || width <= 0 || height <= 0)
1999 return InvalidParameter;
2001 if(graphics->busy)
2002 return ObjectBusy;
2004 if (!graphics->hdc)
2006 FIXME("graphics object has no HDC\n");
2007 return Ok;
2010 num_pts = arc2polybezier(points, x, y, width, height, startAngle, sweepAngle);
2012 save_state = prepare_dc(graphics, pen);
2014 retval = draw_polybezier(graphics, pen, points, num_pts, TRUE);
2016 restore_dc(graphics, save_state);
2018 return retval;
2021 GpStatus WINGDIPAPI GdipDrawArcI(GpGraphics *graphics, GpPen *pen, INT x,
2022 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
2024 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
2025 width, height, startAngle, sweepAngle);
2027 return GdipDrawArc(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
2030 GpStatus WINGDIPAPI GdipDrawBezier(GpGraphics *graphics, GpPen *pen, REAL x1,
2031 REAL y1, REAL x2, REAL y2, REAL x3, REAL y3, REAL x4, REAL y4)
2033 INT save_state;
2034 GpPointF pt[4];
2035 GpStatus retval;
2037 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1,
2038 x2, y2, x3, y3, x4, y4);
2040 if(!graphics || !pen)
2041 return InvalidParameter;
2043 if(graphics->busy)
2044 return ObjectBusy;
2046 if (!graphics->hdc)
2048 FIXME("graphics object has no HDC\n");
2049 return Ok;
2052 pt[0].X = x1;
2053 pt[0].Y = y1;
2054 pt[1].X = x2;
2055 pt[1].Y = y2;
2056 pt[2].X = x3;
2057 pt[2].Y = y3;
2058 pt[3].X = x4;
2059 pt[3].Y = y4;
2061 save_state = prepare_dc(graphics, pen);
2063 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
2065 restore_dc(graphics, save_state);
2067 return retval;
2070 GpStatus WINGDIPAPI GdipDrawBezierI(GpGraphics *graphics, GpPen *pen, INT x1,
2071 INT y1, INT x2, INT y2, INT x3, INT y3, INT x4, INT y4)
2073 INT save_state;
2074 GpPointF pt[4];
2075 GpStatus retval;
2077 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d)\n", graphics, pen, x1, y1,
2078 x2, y2, x3, y3, x4, y4);
2080 if(!graphics || !pen)
2081 return InvalidParameter;
2083 if(graphics->busy)
2084 return ObjectBusy;
2086 if (!graphics->hdc)
2088 FIXME("graphics object has no HDC\n");
2089 return Ok;
2092 pt[0].X = x1;
2093 pt[0].Y = y1;
2094 pt[1].X = x2;
2095 pt[1].Y = y2;
2096 pt[2].X = x3;
2097 pt[2].Y = y3;
2098 pt[3].X = x4;
2099 pt[3].Y = y4;
2101 save_state = prepare_dc(graphics, pen);
2103 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
2105 restore_dc(graphics, save_state);
2107 return retval;
2110 GpStatus WINGDIPAPI GdipDrawBeziers(GpGraphics *graphics, GpPen *pen,
2111 GDIPCONST GpPointF *points, INT count)
2113 INT i;
2114 GpStatus ret;
2116 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2118 if(!graphics || !pen || !points || (count <= 0))
2119 return InvalidParameter;
2121 if(graphics->busy)
2122 return ObjectBusy;
2124 for(i = 0; i < floor(count / 4); i++){
2125 ret = GdipDrawBezier(graphics, pen,
2126 points[4*i].X, points[4*i].Y,
2127 points[4*i + 1].X, points[4*i + 1].Y,
2128 points[4*i + 2].X, points[4*i + 2].Y,
2129 points[4*i + 3].X, points[4*i + 3].Y);
2130 if(ret != Ok)
2131 return ret;
2134 return Ok;
2137 GpStatus WINGDIPAPI GdipDrawBeziersI(GpGraphics *graphics, GpPen *pen,
2138 GDIPCONST GpPoint *points, INT count)
2140 GpPointF *pts;
2141 GpStatus ret;
2142 INT i;
2144 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2146 if(!graphics || !pen || !points || (count <= 0))
2147 return InvalidParameter;
2149 if(graphics->busy)
2150 return ObjectBusy;
2152 pts = GdipAlloc(sizeof(GpPointF) * count);
2153 if(!pts)
2154 return OutOfMemory;
2156 for(i = 0; i < count; i++){
2157 pts[i].X = (REAL)points[i].X;
2158 pts[i].Y = (REAL)points[i].Y;
2161 ret = GdipDrawBeziers(graphics,pen,pts,count);
2163 GdipFree(pts);
2165 return ret;
2168 GpStatus WINGDIPAPI GdipDrawClosedCurve(GpGraphics *graphics, GpPen *pen,
2169 GDIPCONST GpPointF *points, INT count)
2171 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2173 return GdipDrawClosedCurve2(graphics, pen, points, count, 1.0);
2176 GpStatus WINGDIPAPI GdipDrawClosedCurveI(GpGraphics *graphics, GpPen *pen,
2177 GDIPCONST GpPoint *points, INT count)
2179 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2181 return GdipDrawClosedCurve2I(graphics, pen, points, count, 1.0);
2184 GpStatus WINGDIPAPI GdipDrawClosedCurve2(GpGraphics *graphics, GpPen *pen,
2185 GDIPCONST GpPointF *points, INT count, REAL tension)
2187 GpPath *path;
2188 GpStatus stat;
2190 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2192 if(!graphics || !pen || !points || count <= 0)
2193 return InvalidParameter;
2195 if(graphics->busy)
2196 return ObjectBusy;
2198 if((stat = GdipCreatePath(FillModeAlternate, &path)) != Ok)
2199 return stat;
2201 stat = GdipAddPathClosedCurve2(path, points, count, tension);
2202 if(stat != Ok){
2203 GdipDeletePath(path);
2204 return stat;
2207 stat = GdipDrawPath(graphics, pen, path);
2209 GdipDeletePath(path);
2211 return stat;
2214 GpStatus WINGDIPAPI GdipDrawClosedCurve2I(GpGraphics *graphics, GpPen *pen,
2215 GDIPCONST GpPoint *points, INT count, REAL tension)
2217 GpPointF *ptf;
2218 GpStatus stat;
2219 INT i;
2221 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2223 if(!points || count <= 0)
2224 return InvalidParameter;
2226 ptf = GdipAlloc(sizeof(GpPointF)*count);
2227 if(!ptf)
2228 return OutOfMemory;
2230 for(i = 0; i < count; i++){
2231 ptf[i].X = (REAL)points[i].X;
2232 ptf[i].Y = (REAL)points[i].Y;
2235 stat = GdipDrawClosedCurve2(graphics, pen, ptf, count, tension);
2237 GdipFree(ptf);
2239 return stat;
2242 GpStatus WINGDIPAPI GdipDrawCurve(GpGraphics *graphics, GpPen *pen,
2243 GDIPCONST GpPointF *points, INT count)
2245 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2247 return GdipDrawCurve2(graphics,pen,points,count,1.0);
2250 GpStatus WINGDIPAPI GdipDrawCurveI(GpGraphics *graphics, GpPen *pen,
2251 GDIPCONST GpPoint *points, INT count)
2253 GpPointF *pointsF;
2254 GpStatus ret;
2255 INT i;
2257 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2259 if(!points)
2260 return InvalidParameter;
2262 pointsF = GdipAlloc(sizeof(GpPointF)*count);
2263 if(!pointsF)
2264 return OutOfMemory;
2266 for(i = 0; i < count; i++){
2267 pointsF[i].X = (REAL)points[i].X;
2268 pointsF[i].Y = (REAL)points[i].Y;
2271 ret = GdipDrawCurve(graphics,pen,pointsF,count);
2272 GdipFree(pointsF);
2274 return ret;
2277 /* Approximates cardinal spline with Bezier curves. */
2278 GpStatus WINGDIPAPI GdipDrawCurve2(GpGraphics *graphics, GpPen *pen,
2279 GDIPCONST GpPointF *points, INT count, REAL tension)
2281 /* PolyBezier expects count*3-2 points. */
2282 INT i, len_pt = count*3-2, save_state;
2283 GpPointF *pt;
2284 REAL x1, x2, y1, y2;
2285 GpStatus retval;
2287 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2289 if(!graphics || !pen)
2290 return InvalidParameter;
2292 if(graphics->busy)
2293 return ObjectBusy;
2295 if(count < 2)
2296 return InvalidParameter;
2298 if (!graphics->hdc)
2300 FIXME("graphics object has no HDC\n");
2301 return Ok;
2304 pt = GdipAlloc(len_pt * sizeof(GpPointF));
2305 if(!pt)
2306 return OutOfMemory;
2308 tension = tension * TENSION_CONST;
2310 calc_curve_bezier_endp(points[0].X, points[0].Y, points[1].X, points[1].Y,
2311 tension, &x1, &y1);
2313 pt[0].X = points[0].X;
2314 pt[0].Y = points[0].Y;
2315 pt[1].X = x1;
2316 pt[1].Y = y1;
2318 for(i = 0; i < count-2; i++){
2319 calc_curve_bezier(&(points[i]), tension, &x1, &y1, &x2, &y2);
2321 pt[3*i+2].X = x1;
2322 pt[3*i+2].Y = y1;
2323 pt[3*i+3].X = points[i+1].X;
2324 pt[3*i+3].Y = points[i+1].Y;
2325 pt[3*i+4].X = x2;
2326 pt[3*i+4].Y = y2;
2329 calc_curve_bezier_endp(points[count-1].X, points[count-1].Y,
2330 points[count-2].X, points[count-2].Y, tension, &x1, &y1);
2332 pt[len_pt-2].X = x1;
2333 pt[len_pt-2].Y = y1;
2334 pt[len_pt-1].X = points[count-1].X;
2335 pt[len_pt-1].Y = points[count-1].Y;
2337 save_state = prepare_dc(graphics, pen);
2339 retval = draw_polybezier(graphics, pen, pt, len_pt, TRUE);
2341 GdipFree(pt);
2342 restore_dc(graphics, save_state);
2344 return retval;
2347 GpStatus WINGDIPAPI GdipDrawCurve2I(GpGraphics *graphics, GpPen *pen,
2348 GDIPCONST GpPoint *points, INT count, REAL tension)
2350 GpPointF *pointsF;
2351 GpStatus ret;
2352 INT i;
2354 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
2356 if(!points)
2357 return InvalidParameter;
2359 pointsF = GdipAlloc(sizeof(GpPointF)*count);
2360 if(!pointsF)
2361 return OutOfMemory;
2363 for(i = 0; i < count; i++){
2364 pointsF[i].X = (REAL)points[i].X;
2365 pointsF[i].Y = (REAL)points[i].Y;
2368 ret = GdipDrawCurve2(graphics,pen,pointsF,count,tension);
2369 GdipFree(pointsF);
2371 return ret;
2374 GpStatus WINGDIPAPI GdipDrawCurve3(GpGraphics *graphics, GpPen *pen,
2375 GDIPCONST GpPointF *points, INT count, INT offset, INT numberOfSegments,
2376 REAL tension)
2378 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension);
2380 if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){
2381 return InvalidParameter;
2384 return GdipDrawCurve2(graphics, pen, points + offset, numberOfSegments + 1, tension);
2387 GpStatus WINGDIPAPI GdipDrawCurve3I(GpGraphics *graphics, GpPen *pen,
2388 GDIPCONST GpPoint *points, INT count, INT offset, INT numberOfSegments,
2389 REAL tension)
2391 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension);
2393 if(count < 0){
2394 return OutOfMemory;
2397 if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){
2398 return InvalidParameter;
2401 return GdipDrawCurve2I(graphics, pen, points + offset, numberOfSegments + 1, tension);
2404 GpStatus WINGDIPAPI GdipDrawEllipse(GpGraphics *graphics, GpPen *pen, REAL x,
2405 REAL y, REAL width, REAL height)
2407 INT save_state;
2408 GpPointF ptf[2];
2409 POINT pti[2];
2411 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
2413 if(!graphics || !pen)
2414 return InvalidParameter;
2416 if(graphics->busy)
2417 return ObjectBusy;
2419 if (!graphics->hdc)
2421 FIXME("graphics object has no HDC\n");
2422 return Ok;
2425 ptf[0].X = x;
2426 ptf[0].Y = y;
2427 ptf[1].X = x + width;
2428 ptf[1].Y = y + height;
2430 save_state = prepare_dc(graphics, pen);
2431 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
2433 transform_and_round_points(graphics, pti, ptf, 2);
2435 Ellipse(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y);
2437 restore_dc(graphics, save_state);
2439 return Ok;
2442 GpStatus WINGDIPAPI GdipDrawEllipseI(GpGraphics *graphics, GpPen *pen, INT x,
2443 INT y, INT width, INT height)
2445 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
2447 return GdipDrawEllipse(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
2451 GpStatus WINGDIPAPI GdipDrawImage(GpGraphics *graphics, GpImage *image, REAL x, REAL y)
2453 UINT width, height;
2454 GpPointF points[3];
2456 TRACE("(%p, %p, %.2f, %.2f)\n", graphics, image, x, y);
2458 if(!graphics || !image)
2459 return InvalidParameter;
2461 GdipGetImageWidth(image, &width);
2462 GdipGetImageHeight(image, &height);
2464 /* FIXME: we should use the graphics and image dpi, somehow */
2466 points[0].X = points[2].X = x;
2467 points[0].Y = points[1].Y = y;
2468 points[1].X = x + width;
2469 points[2].Y = y + height;
2471 return GdipDrawImagePointsRect(graphics, image, points, 3, 0, 0, width, height,
2472 UnitPixel, NULL, NULL, NULL);
2475 GpStatus WINGDIPAPI GdipDrawImageI(GpGraphics *graphics, GpImage *image, INT x,
2476 INT y)
2478 TRACE("(%p, %p, %d, %d)\n", graphics, image, x, y);
2480 return GdipDrawImage(graphics, image, (REAL)x, (REAL)y);
2483 GpStatus WINGDIPAPI GdipDrawImagePointRect(GpGraphics *graphics, GpImage *image,
2484 REAL x, REAL y, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
2485 GpUnit srcUnit)
2487 GpPointF points[3];
2488 TRACE("(%p, %p, %f, %f, %f, %f, %f, %f, %d)\n", graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
2490 points[0].X = points[2].X = x;
2491 points[0].Y = points[1].Y = y;
2493 /* FIXME: convert image coordinates to Graphics coordinates? */
2494 points[1].X = x + srcwidth;
2495 points[2].Y = y + srcheight;
2497 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
2498 srcwidth, srcheight, srcUnit, NULL, NULL, NULL);
2501 GpStatus WINGDIPAPI GdipDrawImagePointRectI(GpGraphics *graphics, GpImage *image,
2502 INT x, INT y, INT srcx, INT srcy, INT srcwidth, INT srcheight,
2503 GpUnit srcUnit)
2505 return GdipDrawImagePointRect(graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
2508 GpStatus WINGDIPAPI GdipDrawImagePoints(GpGraphics *graphics, GpImage *image,
2509 GDIPCONST GpPointF *dstpoints, INT count)
2511 FIXME("(%p, %p, %p, %d): stub\n", graphics, image, dstpoints, count);
2512 return NotImplemented;
2515 GpStatus WINGDIPAPI GdipDrawImagePointsI(GpGraphics *graphics, GpImage *image,
2516 GDIPCONST GpPoint *dstpoints, INT count)
2518 FIXME("(%p, %p, %p, %d): stub\n", graphics, image, dstpoints, count);
2519 return NotImplemented;
2522 GpStatus WINGDIPAPI GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image,
2523 GDIPCONST GpPointF *points, INT count, REAL srcx, REAL srcy, REAL srcwidth,
2524 REAL srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
2525 DrawImageAbort callback, VOID * callbackData)
2527 GpPointF ptf[4];
2528 POINT pti[4];
2529 REAL dx, dy;
2530 GpStatus stat;
2532 TRACE("(%p, %p, %p, %d, %f, %f, %f, %f, %d, %p, %p, %p)\n", graphics, image, points,
2533 count, srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
2534 callbackData);
2536 if (count > 3)
2537 return NotImplemented;
2539 if(!graphics || !image || !points || count != 3)
2540 return InvalidParameter;
2542 TRACE("%s %s %s\n", debugstr_pointf(&points[0]), debugstr_pointf(&points[1]),
2543 debugstr_pointf(&points[2]));
2545 memcpy(ptf, points, 3 * sizeof(GpPointF));
2546 ptf[3].X = ptf[2].X + ptf[1].X - ptf[0].X;
2547 ptf[3].Y = ptf[2].Y + ptf[1].Y - ptf[0].Y;
2548 if (!srcwidth || !srcheight || ptf[3].X == ptf[0].X || ptf[3].Y == ptf[0].Y)
2549 return Ok;
2550 transform_and_round_points(graphics, pti, ptf, 4);
2552 if (image->picture)
2554 if (!graphics->hdc)
2556 FIXME("graphics object has no HDC\n");
2559 /* FIXME: partially implemented (only works for rectangular parallelograms) */
2560 if(srcUnit == UnitInch)
2561 dx = dy = (REAL) INCH_HIMETRIC;
2562 else if(srcUnit == UnitPixel){
2563 dx = ((REAL) INCH_HIMETRIC) /
2564 ((REAL) GetDeviceCaps(graphics->hdc, LOGPIXELSX));
2565 dy = ((REAL) INCH_HIMETRIC) /
2566 ((REAL) GetDeviceCaps(graphics->hdc, LOGPIXELSY));
2568 else
2569 return NotImplemented;
2571 if(IPicture_Render(image->picture, graphics->hdc,
2572 pti[0].x, pti[0].y, pti[1].x - pti[0].x, pti[2].y - pti[0].y,
2573 srcx * dx, srcy * dy,
2574 srcwidth * dx, srcheight * dy,
2575 NULL) != S_OK){
2576 if(callback)
2577 callback(callbackData);
2578 return GenericError;
2581 else if (image->type == ImageTypeBitmap)
2583 GpBitmap* bitmap = (GpBitmap*)image;
2584 int use_software=0;
2586 if (srcUnit == UnitInch)
2587 dx = dy = 96.0; /* FIXME: use the image resolution */
2588 else if (srcUnit == UnitPixel)
2589 dx = dy = 1.0;
2590 else
2591 return NotImplemented;
2593 srcx = srcx * dx;
2594 srcy = srcy * dy;
2595 srcwidth = srcwidth * dx;
2596 srcheight = srcheight * dy;
2598 if (imageAttributes ||
2599 (graphics->image && graphics->image->type == ImageTypeBitmap) ||
2600 !((GpBitmap*)image)->hbitmap ||
2601 ptf[1].Y != ptf[0].Y || ptf[2].X != ptf[0].X ||
2602 ptf[1].X - ptf[0].X != srcwidth || ptf[2].Y - ptf[0].Y != srcheight ||
2603 srcx < 0 || srcy < 0 ||
2604 srcx + srcwidth > bitmap->width || srcy + srcheight > bitmap->height)
2605 use_software = 1;
2607 if (use_software)
2609 RECT dst_area;
2610 GpRect src_area;
2611 int i, x, y, src_stride, dst_stride;
2612 GpMatrix *dst_to_src;
2613 REAL m11, m12, m21, m22, mdx, mdy;
2614 LPBYTE src_data, dst_data;
2615 BitmapData lockeddata;
2616 InterpolationMode interpolation = graphics->interpolation;
2617 GpPointF dst_to_src_points[3] = {{0.0, 0.0}, {1.0, 0.0}, {0.0, 1.0}};
2618 REAL x_dx, x_dy, y_dx, y_dy;
2619 static const GpImageAttributes defaultImageAttributes = {WrapModeClamp, 0, FALSE};
2621 if (!imageAttributes)
2622 imageAttributes = &defaultImageAttributes;
2624 dst_area.left = dst_area.right = pti[0].x;
2625 dst_area.top = dst_area.bottom = pti[0].y;
2626 for (i=1; i<4; i++)
2628 if (dst_area.left > pti[i].x) dst_area.left = pti[i].x;
2629 if (dst_area.right < pti[i].x) dst_area.right = pti[i].x;
2630 if (dst_area.top > pti[i].y) dst_area.top = pti[i].y;
2631 if (dst_area.bottom < pti[i].y) dst_area.bottom = pti[i].y;
2634 m11 = (ptf[1].X - ptf[0].X) / srcwidth;
2635 m21 = (ptf[2].X - ptf[0].X) / srcheight;
2636 mdx = ptf[0].X - m11 * srcx - m21 * srcy;
2637 m12 = (ptf[1].Y - ptf[0].Y) / srcwidth;
2638 m22 = (ptf[2].Y - ptf[0].Y) / srcheight;
2639 mdy = ptf[0].Y - m12 * srcx - m22 * srcy;
2641 stat = GdipCreateMatrix2(m11, m12, m21, m22, mdx, mdy, &dst_to_src);
2642 if (stat != Ok) return stat;
2644 stat = GdipInvertMatrix(dst_to_src);
2645 if (stat != Ok)
2647 GdipDeleteMatrix(dst_to_src);
2648 return stat;
2651 dst_data = GdipAlloc(sizeof(ARGB) * (dst_area.right - dst_area.left) * (dst_area.bottom - dst_area.top));
2652 if (!dst_data)
2654 GdipDeleteMatrix(dst_to_src);
2655 return OutOfMemory;
2658 dst_stride = sizeof(ARGB) * (dst_area.right - dst_area.left);
2660 get_bitmap_sample_size(interpolation, imageAttributes->wrap,
2661 bitmap, srcx, srcy, srcwidth, srcheight, &src_area);
2663 src_data = GdipAlloc(sizeof(ARGB) * src_area.Width * src_area.Height);
2664 if (!src_data)
2666 GdipFree(dst_data);
2667 GdipDeleteMatrix(dst_to_src);
2668 return OutOfMemory;
2670 src_stride = sizeof(ARGB) * src_area.Width;
2672 /* Read the bits we need from the source bitmap into an ARGB buffer. */
2673 lockeddata.Width = src_area.Width;
2674 lockeddata.Height = src_area.Height;
2675 lockeddata.Stride = src_stride;
2676 lockeddata.PixelFormat = PixelFormat32bppARGB;
2677 lockeddata.Scan0 = src_data;
2679 stat = GdipBitmapLockBits(bitmap, &src_area, ImageLockModeRead|ImageLockModeUserInputBuf,
2680 PixelFormat32bppARGB, &lockeddata);
2682 if (stat == Ok)
2683 stat = GdipBitmapUnlockBits(bitmap, &lockeddata);
2685 if (stat != Ok)
2687 if (src_data != dst_data)
2688 GdipFree(src_data);
2689 GdipFree(dst_data);
2690 GdipDeleteMatrix(dst_to_src);
2691 return OutOfMemory;
2694 apply_image_attributes(imageAttributes, src_data,
2695 src_area.Width, src_area.Height,
2696 src_stride, ColorAdjustTypeBitmap);
2698 /* Transform the bits as needed to the destination. */
2699 GdipTransformMatrixPoints(dst_to_src, dst_to_src_points, 3);
2701 x_dx = dst_to_src_points[1].X - dst_to_src_points[0].X;
2702 x_dy = dst_to_src_points[1].Y - dst_to_src_points[0].Y;
2703 y_dx = dst_to_src_points[2].X - dst_to_src_points[0].X;
2704 y_dy = dst_to_src_points[2].Y - dst_to_src_points[0].Y;
2706 for (x=dst_area.left; x<dst_area.right; x++)
2708 for (y=dst_area.top; y<dst_area.bottom; y++)
2710 GpPointF src_pointf;
2711 ARGB *dst_color;
2713 src_pointf.X = dst_to_src_points[0].X + x * x_dx + y * y_dx;
2714 src_pointf.Y = dst_to_src_points[0].Y + x * x_dy + y * y_dy;
2716 dst_color = (ARGB*)(dst_data + dst_stride * (y - dst_area.top) + sizeof(ARGB) * (x - dst_area.left));
2718 if (src_pointf.X >= srcx && src_pointf.X < srcx + srcwidth && src_pointf.Y >= srcy && src_pointf.Y < srcy+srcheight)
2719 *dst_color = resample_bitmap_pixel(&src_area, src_data, bitmap->width, bitmap->height, &src_pointf, imageAttributes, interpolation);
2720 else
2721 *dst_color = 0;
2725 GdipDeleteMatrix(dst_to_src);
2727 GdipFree(src_data);
2729 stat = alpha_blend_pixels(graphics, dst_area.left, dst_area.top,
2730 dst_data, dst_area.right - dst_area.left, dst_area.bottom - dst_area.top, dst_stride);
2732 GdipFree(dst_data);
2734 return stat;
2736 else
2738 HDC hdc;
2739 int temp_hdc=0, temp_bitmap=0;
2740 HBITMAP hbitmap, old_hbm=NULL;
2742 if (!(bitmap->format == PixelFormat16bppRGB555 ||
2743 bitmap->format == PixelFormat24bppRGB ||
2744 bitmap->format == PixelFormat32bppRGB ||
2745 bitmap->format == PixelFormat32bppPARGB))
2747 BITMAPINFOHEADER bih;
2748 BYTE *temp_bits;
2749 PixelFormat dst_format;
2751 /* we can't draw a bitmap of this format directly */
2752 hdc = CreateCompatibleDC(0);
2753 temp_hdc = 1;
2754 temp_bitmap = 1;
2756 bih.biSize = sizeof(BITMAPINFOHEADER);
2757 bih.biWidth = bitmap->width;
2758 bih.biHeight = -bitmap->height;
2759 bih.biPlanes = 1;
2760 bih.biBitCount = 32;
2761 bih.biCompression = BI_RGB;
2762 bih.biSizeImage = 0;
2763 bih.biXPelsPerMeter = 0;
2764 bih.biYPelsPerMeter = 0;
2765 bih.biClrUsed = 0;
2766 bih.biClrImportant = 0;
2768 hbitmap = CreateDIBSection(hdc, (BITMAPINFO*)&bih, DIB_RGB_COLORS,
2769 (void**)&temp_bits, NULL, 0);
2771 if (bitmap->format & (PixelFormatAlpha|PixelFormatPAlpha))
2772 dst_format = PixelFormat32bppPARGB;
2773 else
2774 dst_format = PixelFormat32bppRGB;
2776 convert_pixels(bitmap->width, bitmap->height,
2777 bitmap->width*4, temp_bits, dst_format,
2778 bitmap->stride, bitmap->bits, bitmap->format, bitmap->image.palette_entries);
2780 else
2782 hbitmap = bitmap->hbitmap;
2783 hdc = bitmap->hdc;
2784 temp_hdc = (hdc == 0);
2787 if (temp_hdc)
2789 if (!hdc) hdc = CreateCompatibleDC(0);
2790 old_hbm = SelectObject(hdc, hbitmap);
2793 if (bitmap->format & (PixelFormatAlpha|PixelFormatPAlpha))
2795 BLENDFUNCTION bf;
2797 bf.BlendOp = AC_SRC_OVER;
2798 bf.BlendFlags = 0;
2799 bf.SourceConstantAlpha = 255;
2800 bf.AlphaFormat = AC_SRC_ALPHA;
2802 GdiAlphaBlend(graphics->hdc, pti[0].x, pti[0].y, pti[1].x-pti[0].x, pti[2].y-pti[0].y,
2803 hdc, srcx, srcy, srcwidth, srcheight, bf);
2805 else
2807 StretchBlt(graphics->hdc, pti[0].x, pti[0].y, pti[1].x-pti[0].x, pti[2].y-pti[0].y,
2808 hdc, srcx, srcy, srcwidth, srcheight, SRCCOPY);
2811 if (temp_hdc)
2813 SelectObject(hdc, old_hbm);
2814 DeleteDC(hdc);
2817 if (temp_bitmap)
2818 DeleteObject(hbitmap);
2821 else
2823 ERR("GpImage with no IPicture or HBITMAP?!\n");
2824 return NotImplemented;
2827 return Ok;
2830 GpStatus WINGDIPAPI GdipDrawImagePointsRectI(GpGraphics *graphics, GpImage *image,
2831 GDIPCONST GpPoint *points, INT count, INT srcx, INT srcy, INT srcwidth,
2832 INT srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
2833 DrawImageAbort callback, VOID * callbackData)
2835 GpPointF pointsF[3];
2836 INT i;
2838 TRACE("(%p, %p, %p, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n", graphics, image, points, count,
2839 srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
2840 callbackData);
2842 if(!points || count!=3)
2843 return InvalidParameter;
2845 for(i = 0; i < count; i++){
2846 pointsF[i].X = (REAL)points[i].X;
2847 pointsF[i].Y = (REAL)points[i].Y;
2850 return GdipDrawImagePointsRect(graphics, image, pointsF, count, (REAL)srcx, (REAL)srcy,
2851 (REAL)srcwidth, (REAL)srcheight, srcUnit, imageAttributes,
2852 callback, callbackData);
2855 GpStatus WINGDIPAPI GdipDrawImageRectRect(GpGraphics *graphics, GpImage *image,
2856 REAL dstx, REAL dsty, REAL dstwidth, REAL dstheight, REAL srcx, REAL srcy,
2857 REAL srcwidth, REAL srcheight, GpUnit srcUnit,
2858 GDIPCONST GpImageAttributes* imageattr, DrawImageAbort callback,
2859 VOID * callbackData)
2861 GpPointF points[3];
2863 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)\n",
2864 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
2865 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
2867 points[0].X = dstx;
2868 points[0].Y = dsty;
2869 points[1].X = dstx + dstwidth;
2870 points[1].Y = dsty;
2871 points[2].X = dstx;
2872 points[2].Y = dsty + dstheight;
2874 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
2875 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
2878 GpStatus WINGDIPAPI GdipDrawImageRectRectI(GpGraphics *graphics, GpImage *image,
2879 INT dstx, INT dsty, INT dstwidth, INT dstheight, INT srcx, INT srcy,
2880 INT srcwidth, INT srcheight, GpUnit srcUnit,
2881 GDIPCONST GpImageAttributes* imageAttributes, DrawImageAbort callback,
2882 VOID * callbackData)
2884 GpPointF points[3];
2886 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n",
2887 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
2888 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
2890 points[0].X = dstx;
2891 points[0].Y = dsty;
2892 points[1].X = dstx + dstwidth;
2893 points[1].Y = dsty;
2894 points[2].X = dstx;
2895 points[2].Y = dsty + dstheight;
2897 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
2898 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
2901 GpStatus WINGDIPAPI GdipDrawImageRect(GpGraphics *graphics, GpImage *image,
2902 REAL x, REAL y, REAL width, REAL height)
2904 RectF bounds;
2905 GpUnit unit;
2906 GpStatus ret;
2908 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, image, x, y, width, height);
2910 if(!graphics || !image)
2911 return InvalidParameter;
2913 ret = GdipGetImageBounds(image, &bounds, &unit);
2914 if(ret != Ok)
2915 return ret;
2917 return GdipDrawImageRectRect(graphics, image, x, y, width, height,
2918 bounds.X, bounds.Y, bounds.Width, bounds.Height,
2919 unit, NULL, NULL, NULL);
2922 GpStatus WINGDIPAPI GdipDrawImageRectI(GpGraphics *graphics, GpImage *image,
2923 INT x, INT y, INT width, INT height)
2925 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, image, x, y, width, height);
2927 return GdipDrawImageRect(graphics, image, (REAL)x, (REAL)y, (REAL)width, (REAL)height);
2930 GpStatus WINGDIPAPI GdipDrawLine(GpGraphics *graphics, GpPen *pen, REAL x1,
2931 REAL y1, REAL x2, REAL y2)
2933 INT save_state;
2934 GpPointF pt[2];
2935 GpStatus retval;
2937 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1, x2, y2);
2939 if(!pen || !graphics)
2940 return InvalidParameter;
2942 if(graphics->busy)
2943 return ObjectBusy;
2945 if (!graphics->hdc)
2947 FIXME("graphics object has no HDC\n");
2948 return Ok;
2951 pt[0].X = x1;
2952 pt[0].Y = y1;
2953 pt[1].X = x2;
2954 pt[1].Y = y2;
2956 save_state = prepare_dc(graphics, pen);
2958 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
2960 restore_dc(graphics, save_state);
2962 return retval;
2965 GpStatus WINGDIPAPI GdipDrawLineI(GpGraphics *graphics, GpPen *pen, INT x1,
2966 INT y1, INT x2, INT y2)
2968 INT save_state;
2969 GpPointF pt[2];
2970 GpStatus retval;
2972 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x1, y1, x2, y2);
2974 if(!pen || !graphics)
2975 return InvalidParameter;
2977 if(graphics->busy)
2978 return ObjectBusy;
2980 if (!graphics->hdc)
2982 FIXME("graphics object has no HDC\n");
2983 return Ok;
2986 pt[0].X = (REAL)x1;
2987 pt[0].Y = (REAL)y1;
2988 pt[1].X = (REAL)x2;
2989 pt[1].Y = (REAL)y2;
2991 save_state = prepare_dc(graphics, pen);
2993 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
2995 restore_dc(graphics, save_state);
2997 return retval;
3000 GpStatus WINGDIPAPI GdipDrawLines(GpGraphics *graphics, GpPen *pen, GDIPCONST
3001 GpPointF *points, INT count)
3003 INT save_state;
3004 GpStatus retval;
3006 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
3008 if(!pen || !graphics || (count < 2))
3009 return InvalidParameter;
3011 if(graphics->busy)
3012 return ObjectBusy;
3014 if (!graphics->hdc)
3016 FIXME("graphics object has no HDC\n");
3017 return Ok;
3020 save_state = prepare_dc(graphics, pen);
3022 retval = draw_polyline(graphics, pen, points, count, TRUE);
3024 restore_dc(graphics, save_state);
3026 return retval;
3029 GpStatus WINGDIPAPI GdipDrawLinesI(GpGraphics *graphics, GpPen *pen, GDIPCONST
3030 GpPoint *points, INT count)
3032 INT save_state;
3033 GpStatus retval;
3034 GpPointF *ptf = NULL;
3035 int i;
3037 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
3039 if(!pen || !graphics || (count < 2))
3040 return InvalidParameter;
3042 if(graphics->busy)
3043 return ObjectBusy;
3045 if (!graphics->hdc)
3047 FIXME("graphics object has no HDC\n");
3048 return Ok;
3051 ptf = GdipAlloc(count * sizeof(GpPointF));
3052 if(!ptf) return OutOfMemory;
3054 for(i = 0; i < count; i ++){
3055 ptf[i].X = (REAL) points[i].X;
3056 ptf[i].Y = (REAL) points[i].Y;
3059 save_state = prepare_dc(graphics, pen);
3061 retval = draw_polyline(graphics, pen, ptf, count, TRUE);
3063 restore_dc(graphics, save_state);
3065 GdipFree(ptf);
3066 return retval;
3069 GpStatus WINGDIPAPI GdipDrawPath(GpGraphics *graphics, GpPen *pen, GpPath *path)
3071 INT save_state;
3072 GpStatus retval;
3074 TRACE("(%p, %p, %p)\n", graphics, pen, path);
3076 if(!pen || !graphics)
3077 return InvalidParameter;
3079 if(graphics->busy)
3080 return ObjectBusy;
3082 if (!graphics->hdc)
3084 FIXME("graphics object has no HDC\n");
3085 return Ok;
3088 save_state = prepare_dc(graphics, pen);
3090 retval = draw_poly(graphics, pen, path->pathdata.Points,
3091 path->pathdata.Types, path->pathdata.Count, TRUE);
3093 restore_dc(graphics, save_state);
3095 return retval;
3098 GpStatus WINGDIPAPI GdipDrawPie(GpGraphics *graphics, GpPen *pen, REAL x,
3099 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
3101 INT save_state;
3103 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
3104 width, height, startAngle, sweepAngle);
3106 if(!graphics || !pen)
3107 return InvalidParameter;
3109 if(graphics->busy)
3110 return ObjectBusy;
3112 if (!graphics->hdc)
3114 FIXME("graphics object has no HDC\n");
3115 return Ok;
3118 save_state = prepare_dc(graphics, pen);
3119 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3121 draw_pie(graphics, x, y, width, height, startAngle, sweepAngle);
3123 restore_dc(graphics, save_state);
3125 return Ok;
3128 GpStatus WINGDIPAPI GdipDrawPieI(GpGraphics *graphics, GpPen *pen, INT x,
3129 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
3131 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
3132 width, height, startAngle, sweepAngle);
3134 return GdipDrawPie(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
3137 GpStatus WINGDIPAPI GdipDrawRectangle(GpGraphics *graphics, GpPen *pen, REAL x,
3138 REAL y, REAL width, REAL height)
3140 INT save_state;
3141 GpPointF ptf[4];
3142 POINT pti[4];
3144 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
3146 if(!pen || !graphics)
3147 return InvalidParameter;
3149 if(graphics->busy)
3150 return ObjectBusy;
3152 if (!graphics->hdc)
3154 FIXME("graphics object has no HDC\n");
3155 return Ok;
3158 ptf[0].X = x;
3159 ptf[0].Y = y;
3160 ptf[1].X = x + width;
3161 ptf[1].Y = y;
3162 ptf[2].X = x + width;
3163 ptf[2].Y = y + height;
3164 ptf[3].X = x;
3165 ptf[3].Y = y + height;
3167 save_state = prepare_dc(graphics, pen);
3168 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3170 transform_and_round_points(graphics, pti, ptf, 4);
3171 Polygon(graphics->hdc, pti, 4);
3173 restore_dc(graphics, save_state);
3175 return Ok;
3178 GpStatus WINGDIPAPI GdipDrawRectangleI(GpGraphics *graphics, GpPen *pen, INT x,
3179 INT y, INT width, INT height)
3181 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
3183 return GdipDrawRectangle(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
3186 GpStatus WINGDIPAPI GdipDrawRectangles(GpGraphics *graphics, GpPen *pen,
3187 GDIPCONST GpRectF* rects, INT count)
3189 GpPointF *ptf;
3190 POINT *pti;
3191 INT save_state, i;
3193 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
3195 if(!graphics || !pen || !rects || count < 1)
3196 return InvalidParameter;
3198 if(graphics->busy)
3199 return ObjectBusy;
3201 if (!graphics->hdc)
3203 FIXME("graphics object has no HDC\n");
3204 return Ok;
3207 ptf = GdipAlloc(4 * count * sizeof(GpPointF));
3208 pti = GdipAlloc(4 * count * sizeof(POINT));
3210 if(!ptf || !pti){
3211 GdipFree(ptf);
3212 GdipFree(pti);
3213 return OutOfMemory;
3216 for(i = 0; i < count; i++){
3217 ptf[4 * i + 3].X = ptf[4 * i].X = rects[i].X;
3218 ptf[4 * i + 1].Y = ptf[4 * i].Y = rects[i].Y;
3219 ptf[4 * i + 2].X = ptf[4 * i + 1].X = rects[i].X + rects[i].Width;
3220 ptf[4 * i + 3].Y = ptf[4 * i + 2].Y = rects[i].Y + rects[i].Height;
3223 save_state = prepare_dc(graphics, pen);
3224 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
3226 transform_and_round_points(graphics, pti, ptf, 4 * count);
3228 for(i = 0; i < count; i++)
3229 Polygon(graphics->hdc, &pti[4 * i], 4);
3231 restore_dc(graphics, save_state);
3233 GdipFree(ptf);
3234 GdipFree(pti);
3236 return Ok;
3239 GpStatus WINGDIPAPI GdipDrawRectanglesI(GpGraphics *graphics, GpPen *pen,
3240 GDIPCONST GpRect* rects, INT count)
3242 GpRectF *rectsF;
3243 GpStatus ret;
3244 INT i;
3246 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
3248 if(!rects || count<=0)
3249 return InvalidParameter;
3251 rectsF = GdipAlloc(sizeof(GpRectF) * count);
3252 if(!rectsF)
3253 return OutOfMemory;
3255 for(i = 0;i < count;i++){
3256 rectsF[i].X = (REAL)rects[i].X;
3257 rectsF[i].Y = (REAL)rects[i].Y;
3258 rectsF[i].Width = (REAL)rects[i].Width;
3259 rectsF[i].Height = (REAL)rects[i].Height;
3262 ret = GdipDrawRectangles(graphics, pen, rectsF, count);
3263 GdipFree(rectsF);
3265 return ret;
3268 GpStatus WINGDIPAPI GdipFillClosedCurve2(GpGraphics *graphics, GpBrush *brush,
3269 GDIPCONST GpPointF *points, INT count, REAL tension, GpFillMode fill)
3271 GpPath *path;
3272 GpStatus stat;
3274 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
3275 count, tension, fill);
3277 if(!graphics || !brush || !points)
3278 return InvalidParameter;
3280 if(graphics->busy)
3281 return ObjectBusy;
3283 if(count == 1) /* Do nothing */
3284 return Ok;
3286 stat = GdipCreatePath(fill, &path);
3287 if(stat != Ok)
3288 return stat;
3290 stat = GdipAddPathClosedCurve2(path, points, count, tension);
3291 if(stat != Ok){
3292 GdipDeletePath(path);
3293 return stat;
3296 stat = GdipFillPath(graphics, brush, path);
3297 if(stat != Ok){
3298 GdipDeletePath(path);
3299 return stat;
3302 GdipDeletePath(path);
3304 return Ok;
3307 GpStatus WINGDIPAPI GdipFillClosedCurve2I(GpGraphics *graphics, GpBrush *brush,
3308 GDIPCONST GpPoint *points, INT count, REAL tension, GpFillMode fill)
3310 GpPointF *ptf;
3311 GpStatus stat;
3312 INT i;
3314 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
3315 count, tension, fill);
3317 if(!points || count == 0)
3318 return InvalidParameter;
3320 if(count == 1) /* Do nothing */
3321 return Ok;
3323 ptf = GdipAlloc(sizeof(GpPointF)*count);
3324 if(!ptf)
3325 return OutOfMemory;
3327 for(i = 0;i < count;i++){
3328 ptf[i].X = (REAL)points[i].X;
3329 ptf[i].Y = (REAL)points[i].Y;
3332 stat = GdipFillClosedCurve2(graphics, brush, ptf, count, tension, fill);
3334 GdipFree(ptf);
3336 return stat;
3339 GpStatus WINGDIPAPI GdipFillClosedCurve(GpGraphics *graphics, GpBrush *brush,
3340 GDIPCONST GpPointF *points, INT count)
3342 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
3343 return GdipFillClosedCurve2(graphics, brush, points, count,
3344 0.5f, FillModeAlternate);
3347 GpStatus WINGDIPAPI GdipFillClosedCurveI(GpGraphics *graphics, GpBrush *brush,
3348 GDIPCONST GpPoint *points, INT count)
3350 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
3351 return GdipFillClosedCurve2I(graphics, brush, points, count,
3352 0.5f, FillModeAlternate);
3355 GpStatus WINGDIPAPI GdipFillEllipse(GpGraphics *graphics, GpBrush *brush, REAL x,
3356 REAL y, REAL width, REAL height)
3358 GpStatus stat;
3359 GpPath *path;
3361 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
3363 if(!graphics || !brush)
3364 return InvalidParameter;
3366 if(graphics->busy)
3367 return ObjectBusy;
3369 stat = GdipCreatePath(FillModeAlternate, &path);
3371 if (stat == Ok)
3373 stat = GdipAddPathEllipse(path, x, y, width, height);
3375 if (stat == Ok)
3376 stat = GdipFillPath(graphics, brush, path);
3378 GdipDeletePath(path);
3381 return stat;
3384 GpStatus WINGDIPAPI GdipFillEllipseI(GpGraphics *graphics, GpBrush *brush, INT x,
3385 INT y, INT width, INT height)
3387 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
3389 return GdipFillEllipse(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
3392 static GpStatus GDI32_GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
3394 INT save_state;
3395 GpStatus retval;
3397 if(!graphics->hdc || !brush_can_fill_path(brush))
3398 return NotImplemented;
3400 save_state = SaveDC(graphics->hdc);
3401 EndPath(graphics->hdc);
3402 SetPolyFillMode(graphics->hdc, (path->fill == FillModeAlternate ? ALTERNATE
3403 : WINDING));
3405 BeginPath(graphics->hdc);
3406 retval = draw_poly(graphics, NULL, path->pathdata.Points,
3407 path->pathdata.Types, path->pathdata.Count, FALSE);
3409 if(retval != Ok)
3410 goto end;
3412 EndPath(graphics->hdc);
3413 brush_fill_path(graphics, brush);
3415 retval = Ok;
3417 end:
3418 RestoreDC(graphics->hdc, save_state);
3420 return retval;
3423 static GpStatus SOFTWARE_GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
3425 GpStatus stat;
3426 GpRegion *rgn;
3428 if (!brush_can_fill_pixels(brush))
3429 return NotImplemented;
3431 /* FIXME: This could probably be done more efficiently without regions. */
3433 stat = GdipCreateRegionPath(path, &rgn);
3435 if (stat == Ok)
3437 stat = GdipFillRegion(graphics, brush, rgn);
3439 GdipDeleteRegion(rgn);
3442 return stat;
3445 GpStatus WINGDIPAPI GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
3447 GpStatus stat = NotImplemented;
3449 TRACE("(%p, %p, %p)\n", graphics, brush, path);
3451 if(!brush || !graphics || !path)
3452 return InvalidParameter;
3454 if(graphics->busy)
3455 return ObjectBusy;
3457 if (!graphics->image)
3458 stat = GDI32_GdipFillPath(graphics, brush, path);
3460 if (stat == NotImplemented)
3461 stat = SOFTWARE_GdipFillPath(graphics, brush, path);
3463 if (stat == NotImplemented)
3465 FIXME("Not implemented for brushtype %i\n", brush->bt);
3466 stat = Ok;
3469 return stat;
3472 GpStatus WINGDIPAPI GdipFillPie(GpGraphics *graphics, GpBrush *brush, REAL x,
3473 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
3475 GpStatus stat;
3476 GpPath *path;
3478 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n",
3479 graphics, brush, x, y, width, height, startAngle, sweepAngle);
3481 if(!graphics || !brush)
3482 return InvalidParameter;
3484 if(graphics->busy)
3485 return ObjectBusy;
3487 stat = GdipCreatePath(FillModeAlternate, &path);
3489 if (stat == Ok)
3491 stat = GdipAddPathPie(path, x, y, width, height, startAngle, sweepAngle);
3493 if (stat == Ok)
3494 stat = GdipFillPath(graphics, brush, path);
3496 GdipDeletePath(path);
3499 return stat;
3502 GpStatus WINGDIPAPI GdipFillPieI(GpGraphics *graphics, GpBrush *brush, INT x,
3503 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
3505 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n",
3506 graphics, brush, x, y, width, height, startAngle, sweepAngle);
3508 return GdipFillPie(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
3511 GpStatus WINGDIPAPI GdipFillPolygon(GpGraphics *graphics, GpBrush *brush,
3512 GDIPCONST GpPointF *points, INT count, GpFillMode fillMode)
3514 INT save_state;
3515 GpPointF *ptf = NULL;
3516 POINT *pti = NULL;
3517 GpStatus retval = Ok;
3519 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
3521 if(!graphics || !brush || !points || !count)
3522 return InvalidParameter;
3524 if(graphics->busy)
3525 return ObjectBusy;
3527 if(!graphics->hdc)
3529 FIXME("graphics object has no HDC\n");
3530 return Ok;
3533 ptf = GdipAlloc(count * sizeof(GpPointF));
3534 pti = GdipAlloc(count * sizeof(POINT));
3535 if(!ptf || !pti){
3536 retval = OutOfMemory;
3537 goto end;
3540 memcpy(ptf, points, count * sizeof(GpPointF));
3542 save_state = SaveDC(graphics->hdc);
3543 EndPath(graphics->hdc);
3544 SetPolyFillMode(graphics->hdc, (fillMode == FillModeAlternate ? ALTERNATE
3545 : WINDING));
3547 transform_and_round_points(graphics, pti, ptf, count);
3549 BeginPath(graphics->hdc);
3550 Polygon(graphics->hdc, pti, count);
3551 EndPath(graphics->hdc);
3553 brush_fill_path(graphics, brush);
3555 RestoreDC(graphics->hdc, save_state);
3557 end:
3558 GdipFree(ptf);
3559 GdipFree(pti);
3561 return retval;
3564 GpStatus WINGDIPAPI GdipFillPolygonI(GpGraphics *graphics, GpBrush *brush,
3565 GDIPCONST GpPoint *points, INT count, GpFillMode fillMode)
3567 INT save_state, i;
3568 GpPointF *ptf = NULL;
3569 POINT *pti = NULL;
3570 GpStatus retval = Ok;
3572 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
3574 if(!graphics || !brush || !points || !count)
3575 return InvalidParameter;
3577 if(graphics->busy)
3578 return ObjectBusy;
3580 if(!graphics->hdc)
3582 FIXME("graphics object has no HDC\n");
3583 return Ok;
3586 ptf = GdipAlloc(count * sizeof(GpPointF));
3587 pti = GdipAlloc(count * sizeof(POINT));
3588 if(!ptf || !pti){
3589 retval = OutOfMemory;
3590 goto end;
3593 for(i = 0; i < count; i ++){
3594 ptf[i].X = (REAL) points[i].X;
3595 ptf[i].Y = (REAL) points[i].Y;
3598 save_state = SaveDC(graphics->hdc);
3599 EndPath(graphics->hdc);
3600 SetPolyFillMode(graphics->hdc, (fillMode == FillModeAlternate ? ALTERNATE
3601 : WINDING));
3603 transform_and_round_points(graphics, pti, ptf, count);
3605 BeginPath(graphics->hdc);
3606 Polygon(graphics->hdc, pti, count);
3607 EndPath(graphics->hdc);
3609 brush_fill_path(graphics, brush);
3611 RestoreDC(graphics->hdc, save_state);
3613 end:
3614 GdipFree(ptf);
3615 GdipFree(pti);
3617 return retval;
3620 GpStatus WINGDIPAPI GdipFillPolygon2(GpGraphics *graphics, GpBrush *brush,
3621 GDIPCONST GpPointF *points, INT count)
3623 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
3625 return GdipFillPolygon(graphics, brush, points, count, FillModeAlternate);
3628 GpStatus WINGDIPAPI GdipFillPolygon2I(GpGraphics *graphics, GpBrush *brush,
3629 GDIPCONST GpPoint *points, INT count)
3631 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
3633 return GdipFillPolygonI(graphics, brush, points, count, FillModeAlternate);
3636 GpStatus WINGDIPAPI GdipFillRectangle(GpGraphics *graphics, GpBrush *brush,
3637 REAL x, REAL y, REAL width, REAL height)
3639 INT save_state;
3640 GpPointF ptf[4];
3641 POINT pti[4];
3643 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
3645 if(!graphics || !brush)
3646 return InvalidParameter;
3648 if(graphics->busy)
3649 return ObjectBusy;
3651 if(!graphics->hdc)
3653 FIXME("graphics object has no HDC\n");
3654 return Ok;
3657 ptf[0].X = x;
3658 ptf[0].Y = y;
3659 ptf[1].X = x + width;
3660 ptf[1].Y = y;
3661 ptf[2].X = x + width;
3662 ptf[2].Y = y + height;
3663 ptf[3].X = x;
3664 ptf[3].Y = y + height;
3666 save_state = SaveDC(graphics->hdc);
3667 EndPath(graphics->hdc);
3669 transform_and_round_points(graphics, pti, ptf, 4);
3671 BeginPath(graphics->hdc);
3672 Polygon(graphics->hdc, pti, 4);
3673 EndPath(graphics->hdc);
3675 brush_fill_path(graphics, brush);
3677 RestoreDC(graphics->hdc, save_state);
3679 return Ok;
3682 GpStatus WINGDIPAPI GdipFillRectangleI(GpGraphics *graphics, GpBrush *brush,
3683 INT x, INT y, INT width, INT height)
3685 INT save_state;
3686 GpPointF ptf[4];
3687 POINT pti[4];
3689 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
3691 if(!graphics || !brush)
3692 return InvalidParameter;
3694 if(graphics->busy)
3695 return ObjectBusy;
3697 if(!graphics->hdc)
3699 FIXME("graphics object has no HDC\n");
3700 return Ok;
3703 ptf[0].X = x;
3704 ptf[0].Y = y;
3705 ptf[1].X = x + width;
3706 ptf[1].Y = y;
3707 ptf[2].X = x + width;
3708 ptf[2].Y = y + height;
3709 ptf[3].X = x;
3710 ptf[3].Y = y + height;
3712 save_state = SaveDC(graphics->hdc);
3713 EndPath(graphics->hdc);
3715 transform_and_round_points(graphics, pti, ptf, 4);
3717 BeginPath(graphics->hdc);
3718 Polygon(graphics->hdc, pti, 4);
3719 EndPath(graphics->hdc);
3721 brush_fill_path(graphics, brush);
3723 RestoreDC(graphics->hdc, save_state);
3725 return Ok;
3728 GpStatus WINGDIPAPI GdipFillRectangles(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRectF *rects,
3729 INT count)
3731 GpStatus ret;
3732 INT i;
3734 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
3736 if(!rects)
3737 return InvalidParameter;
3739 for(i = 0; i < count; i++){
3740 ret = GdipFillRectangle(graphics, brush, rects[i].X, rects[i].Y, rects[i].Width, rects[i].Height);
3741 if(ret != Ok) return ret;
3744 return Ok;
3747 GpStatus WINGDIPAPI GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRect *rects,
3748 INT count)
3750 GpRectF *rectsF;
3751 GpStatus ret;
3752 INT i;
3754 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
3756 if(!rects || count <= 0)
3757 return InvalidParameter;
3759 rectsF = GdipAlloc(sizeof(GpRectF)*count);
3760 if(!rectsF)
3761 return OutOfMemory;
3763 for(i = 0; i < count; i++){
3764 rectsF[i].X = (REAL)rects[i].X;
3765 rectsF[i].Y = (REAL)rects[i].Y;
3766 rectsF[i].X = (REAL)rects[i].Width;
3767 rectsF[i].Height = (REAL)rects[i].Height;
3770 ret = GdipFillRectangles(graphics,brush,rectsF,count);
3771 GdipFree(rectsF);
3773 return ret;
3776 static GpStatus GDI32_GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
3777 GpRegion* region)
3779 INT save_state;
3780 GpStatus status;
3781 HRGN hrgn;
3782 RECT rc;
3784 if(!graphics->hdc || !brush_can_fill_path(brush))
3785 return NotImplemented;
3787 status = GdipGetRegionHRgn(region, graphics, &hrgn);
3788 if(status != Ok)
3789 return status;
3791 save_state = SaveDC(graphics->hdc);
3792 EndPath(graphics->hdc);
3794 ExtSelectClipRgn(graphics->hdc, hrgn, RGN_AND);
3796 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
3798 BeginPath(graphics->hdc);
3799 Rectangle(graphics->hdc, rc.left, rc.top, rc.right, rc.bottom);
3800 EndPath(graphics->hdc);
3802 brush_fill_path(graphics, brush);
3805 RestoreDC(graphics->hdc, save_state);
3807 DeleteObject(hrgn);
3809 return Ok;
3812 static GpStatus SOFTWARE_GdipFillRegion(GpGraphics *graphics, GpBrush *brush,
3813 GpRegion* region)
3815 GpStatus stat;
3816 GpRegion *temp_region;
3817 GpMatrix *world_to_device, *identity;
3818 GpRectF graphics_bounds;
3819 UINT scans_count, i;
3820 INT dummy;
3821 GpRect *scans;
3822 DWORD *pixel_data;
3824 if (!brush_can_fill_pixels(brush))
3825 return NotImplemented;
3827 stat = get_graphics_bounds(graphics, &graphics_bounds);
3829 if (stat == Ok)
3830 stat = GdipCloneRegion(region, &temp_region);
3832 if (stat == Ok)
3834 stat = get_graphics_transform(graphics, CoordinateSpaceDevice,
3835 CoordinateSpaceWorld, &world_to_device);
3837 if (stat == Ok)
3839 stat = GdipTransformRegion(temp_region, world_to_device);
3841 GdipDeleteMatrix(world_to_device);
3844 if (stat == Ok)
3845 stat = GdipCombineRegionRect(temp_region, &graphics_bounds, CombineModeIntersect);
3847 if (stat == Ok)
3848 stat = GdipCreateMatrix(&identity);
3850 if (stat == Ok)
3852 stat = GdipGetRegionScansCount(temp_region, &scans_count, identity);
3854 if (stat == Ok && scans_count != 0)
3856 scans = GdipAlloc(sizeof(*scans) * scans_count);
3857 if (!scans)
3858 stat = OutOfMemory;
3860 if (stat == Ok)
3862 stat = GdipGetRegionScansI(temp_region, scans, &dummy, identity);
3864 if (stat != Ok)
3865 GdipFree(scans);
3869 GdipDeleteMatrix(identity);
3872 GdipDeleteRegion(temp_region);
3875 if (stat == Ok && scans_count == 0)
3876 return Ok;
3878 if (stat == Ok)
3880 if (!graphics->image)
3882 /* If we have to go through gdi32, use as few alpha blends as possible. */
3883 INT min_x, min_y, max_x, max_y;
3884 UINT data_width, data_height;
3886 min_x = scans[0].X;
3887 min_y = scans[0].Y;
3888 max_x = scans[0].X+scans[0].Width;
3889 max_y = scans[0].Y+scans[0].Height;
3891 for (i=1; i<scans_count; i++)
3893 min_x = min(min_x, scans[i].X);
3894 min_y = min(min_y, scans[i].Y);
3895 max_x = max(max_x, scans[i].X+scans[i].Width);
3896 max_y = max(max_y, scans[i].Y+scans[i].Height);
3899 data_width = max_x - min_x;
3900 data_height = max_y - min_y;
3902 pixel_data = GdipAlloc(sizeof(*pixel_data) * data_width * data_height);
3903 if (!pixel_data)
3904 stat = OutOfMemory;
3906 if (stat == Ok)
3908 for (i=0; i<scans_count; i++)
3910 stat = brush_fill_pixels(graphics, brush,
3911 pixel_data + (scans[i].X - min_x) + (scans[i].Y - min_y) * data_width,
3912 &scans[i], data_width);
3914 if (stat != Ok)
3915 break;
3918 if (stat == Ok)
3920 stat = alpha_blend_pixels(graphics, min_x, min_y,
3921 (BYTE*)pixel_data, data_width, data_height,
3922 data_width * 4);
3925 GdipFree(pixel_data);
3928 else
3930 UINT max_size=0;
3932 for (i=0; i<scans_count; i++)
3934 UINT size = scans[i].Width * scans[i].Height;
3936 if (size > max_size)
3937 max_size = size;
3940 pixel_data = GdipAlloc(sizeof(*pixel_data) * max_size);
3941 if (!pixel_data)
3942 stat = OutOfMemory;
3944 if (stat == Ok)
3946 for (i=0; i<scans_count; i++)
3948 stat = brush_fill_pixels(graphics, brush, pixel_data, &scans[i],
3949 scans[i].Width);
3951 if (stat == Ok)
3953 stat = alpha_blend_pixels(graphics, scans[i].X, scans[i].Y,
3954 (BYTE*)pixel_data, scans[i].Width, scans[i].Height,
3955 scans[i].Width * 4);
3958 if (stat != Ok)
3959 break;
3962 GdipFree(pixel_data);
3966 GdipFree(scans);
3969 return stat;
3972 /*****************************************************************************
3973 * GdipFillRegion [GDIPLUS.@]
3975 GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
3976 GpRegion* region)
3978 GpStatus stat = NotImplemented;
3980 TRACE("(%p, %p, %p)\n", graphics, brush, region);
3982 if (!(graphics && brush && region))
3983 return InvalidParameter;
3985 if(graphics->busy)
3986 return ObjectBusy;
3988 if (!graphics->image)
3989 stat = GDI32_GdipFillRegion(graphics, brush, region);
3991 if (stat == NotImplemented)
3992 stat = SOFTWARE_GdipFillRegion(graphics, brush, region);
3994 if (stat == NotImplemented)
3996 FIXME("not implemented for brushtype %i\n", brush->bt);
3997 stat = Ok;
4000 return stat;
4003 GpStatus WINGDIPAPI GdipFlush(GpGraphics *graphics, GpFlushIntention intention)
4005 TRACE("(%p,%u)\n", graphics, intention);
4007 if(!graphics)
4008 return InvalidParameter;
4010 if(graphics->busy)
4011 return ObjectBusy;
4013 /* We have no internal operation queue, so there's no need to clear it. */
4015 if (graphics->hdc)
4016 GdiFlush();
4018 return Ok;
4021 /*****************************************************************************
4022 * GdipGetClipBounds [GDIPLUS.@]
4024 GpStatus WINGDIPAPI GdipGetClipBounds(GpGraphics *graphics, GpRectF *rect)
4026 TRACE("(%p, %p)\n", graphics, rect);
4028 if(!graphics)
4029 return InvalidParameter;
4031 if(graphics->busy)
4032 return ObjectBusy;
4034 return GdipGetRegionBounds(graphics->clip, graphics, rect);
4037 /*****************************************************************************
4038 * GdipGetClipBoundsI [GDIPLUS.@]
4040 GpStatus WINGDIPAPI GdipGetClipBoundsI(GpGraphics *graphics, GpRect *rect)
4042 TRACE("(%p, %p)\n", graphics, rect);
4044 if(!graphics)
4045 return InvalidParameter;
4047 if(graphics->busy)
4048 return ObjectBusy;
4050 return GdipGetRegionBoundsI(graphics->clip, graphics, rect);
4053 /* FIXME: Compositing mode is not used anywhere except the getter/setter. */
4054 GpStatus WINGDIPAPI GdipGetCompositingMode(GpGraphics *graphics,
4055 CompositingMode *mode)
4057 TRACE("(%p, %p)\n", graphics, mode);
4059 if(!graphics || !mode)
4060 return InvalidParameter;
4062 if(graphics->busy)
4063 return ObjectBusy;
4065 *mode = graphics->compmode;
4067 return Ok;
4070 /* FIXME: Compositing quality is not used anywhere except the getter/setter. */
4071 GpStatus WINGDIPAPI GdipGetCompositingQuality(GpGraphics *graphics,
4072 CompositingQuality *quality)
4074 TRACE("(%p, %p)\n", graphics, quality);
4076 if(!graphics || !quality)
4077 return InvalidParameter;
4079 if(graphics->busy)
4080 return ObjectBusy;
4082 *quality = graphics->compqual;
4084 return Ok;
4087 /* FIXME: Interpolation mode is not used anywhere except the getter/setter. */
4088 GpStatus WINGDIPAPI GdipGetInterpolationMode(GpGraphics *graphics,
4089 InterpolationMode *mode)
4091 TRACE("(%p, %p)\n", graphics, mode);
4093 if(!graphics || !mode)
4094 return InvalidParameter;
4096 if(graphics->busy)
4097 return ObjectBusy;
4099 *mode = graphics->interpolation;
4101 return Ok;
4104 /* FIXME: Need to handle color depths less than 24bpp */
4105 GpStatus WINGDIPAPI GdipGetNearestColor(GpGraphics *graphics, ARGB* argb)
4107 FIXME("(%p, %p): Passing color unmodified\n", graphics, argb);
4109 if(!graphics || !argb)
4110 return InvalidParameter;
4112 if(graphics->busy)
4113 return ObjectBusy;
4115 return Ok;
4118 GpStatus WINGDIPAPI GdipGetPageScale(GpGraphics *graphics, REAL *scale)
4120 TRACE("(%p, %p)\n", graphics, scale);
4122 if(!graphics || !scale)
4123 return InvalidParameter;
4125 if(graphics->busy)
4126 return ObjectBusy;
4128 *scale = graphics->scale;
4130 return Ok;
4133 GpStatus WINGDIPAPI GdipGetPageUnit(GpGraphics *graphics, GpUnit *unit)
4135 TRACE("(%p, %p)\n", graphics, unit);
4137 if(!graphics || !unit)
4138 return InvalidParameter;
4140 if(graphics->busy)
4141 return ObjectBusy;
4143 *unit = graphics->unit;
4145 return Ok;
4148 /* FIXME: Pixel offset mode is not used anywhere except the getter/setter. */
4149 GpStatus WINGDIPAPI GdipGetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
4150 *mode)
4152 TRACE("(%p, %p)\n", graphics, mode);
4154 if(!graphics || !mode)
4155 return InvalidParameter;
4157 if(graphics->busy)
4158 return ObjectBusy;
4160 *mode = graphics->pixeloffset;
4162 return Ok;
4165 /* FIXME: Smoothing mode is not used anywhere except the getter/setter. */
4166 GpStatus WINGDIPAPI GdipGetSmoothingMode(GpGraphics *graphics, SmoothingMode *mode)
4168 TRACE("(%p, %p)\n", graphics, mode);
4170 if(!graphics || !mode)
4171 return InvalidParameter;
4173 if(graphics->busy)
4174 return ObjectBusy;
4176 *mode = graphics->smoothing;
4178 return Ok;
4181 GpStatus WINGDIPAPI GdipGetTextContrast(GpGraphics *graphics, UINT *contrast)
4183 TRACE("(%p, %p)\n", graphics, contrast);
4185 if(!graphics || !contrast)
4186 return InvalidParameter;
4188 *contrast = graphics->textcontrast;
4190 return Ok;
4193 /* FIXME: Text rendering hint is not used anywhere except the getter/setter. */
4194 GpStatus WINGDIPAPI GdipGetTextRenderingHint(GpGraphics *graphics,
4195 TextRenderingHint *hint)
4197 TRACE("(%p, %p)\n", graphics, hint);
4199 if(!graphics || !hint)
4200 return InvalidParameter;
4202 if(graphics->busy)
4203 return ObjectBusy;
4205 *hint = graphics->texthint;
4207 return Ok;
4210 GpStatus WINGDIPAPI GdipGetVisibleClipBounds(GpGraphics *graphics, GpRectF *rect)
4212 GpRegion *clip_rgn;
4213 GpStatus stat;
4215 TRACE("(%p, %p)\n", graphics, rect);
4217 if(!graphics || !rect)
4218 return InvalidParameter;
4220 if(graphics->busy)
4221 return ObjectBusy;
4223 /* intersect window and graphics clipping regions */
4224 if((stat = GdipCreateRegion(&clip_rgn)) != Ok)
4225 return stat;
4227 if((stat = get_visible_clip_region(graphics, clip_rgn)) != Ok)
4228 goto cleanup;
4230 /* get bounds of the region */
4231 stat = GdipGetRegionBounds(clip_rgn, graphics, rect);
4233 cleanup:
4234 GdipDeleteRegion(clip_rgn);
4236 return stat;
4239 GpStatus WINGDIPAPI GdipGetVisibleClipBoundsI(GpGraphics *graphics, GpRect *rect)
4241 GpRectF rectf;
4242 GpStatus stat;
4244 TRACE("(%p, %p)\n", graphics, rect);
4246 if(!graphics || !rect)
4247 return InvalidParameter;
4249 if((stat = GdipGetVisibleClipBounds(graphics, &rectf)) == Ok)
4251 rect->X = roundr(rectf.X);
4252 rect->Y = roundr(rectf.Y);
4253 rect->Width = roundr(rectf.Width);
4254 rect->Height = roundr(rectf.Height);
4257 return stat;
4260 GpStatus WINGDIPAPI GdipGetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
4262 TRACE("(%p, %p)\n", graphics, matrix);
4264 if(!graphics || !matrix)
4265 return InvalidParameter;
4267 if(graphics->busy)
4268 return ObjectBusy;
4270 *matrix = *graphics->worldtrans;
4271 return Ok;
4274 GpStatus WINGDIPAPI GdipGraphicsClear(GpGraphics *graphics, ARGB color)
4276 GpSolidFill *brush;
4277 GpStatus stat;
4278 GpRectF wnd_rect;
4280 TRACE("(%p, %x)\n", graphics, color);
4282 if(!graphics)
4283 return InvalidParameter;
4285 if(graphics->busy)
4286 return ObjectBusy;
4288 if((stat = GdipCreateSolidFill(color, &brush)) != Ok)
4289 return stat;
4291 if((stat = get_graphics_bounds(graphics, &wnd_rect)) != Ok){
4292 GdipDeleteBrush((GpBrush*)brush);
4293 return stat;
4296 GdipFillRectangle(graphics, (GpBrush*)brush, wnd_rect.X, wnd_rect.Y,
4297 wnd_rect.Width, wnd_rect.Height);
4299 GdipDeleteBrush((GpBrush*)brush);
4301 return Ok;
4304 GpStatus WINGDIPAPI GdipIsClipEmpty(GpGraphics *graphics, BOOL *res)
4306 TRACE("(%p, %p)\n", graphics, res);
4308 if(!graphics || !res)
4309 return InvalidParameter;
4311 return GdipIsEmptyRegion(graphics->clip, graphics, res);
4314 GpStatus WINGDIPAPI GdipIsVisiblePoint(GpGraphics *graphics, REAL x, REAL y, BOOL *result)
4316 GpStatus stat;
4317 GpRegion* rgn;
4318 GpPointF pt;
4320 TRACE("(%p, %.2f, %.2f, %p)\n", graphics, x, y, result);
4322 if(!graphics || !result)
4323 return InvalidParameter;
4325 if(graphics->busy)
4326 return ObjectBusy;
4328 pt.X = x;
4329 pt.Y = y;
4330 if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice,
4331 CoordinateSpaceWorld, &pt, 1)) != Ok)
4332 return stat;
4334 if((stat = GdipCreateRegion(&rgn)) != Ok)
4335 return stat;
4337 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
4338 goto cleanup;
4340 stat = GdipIsVisibleRegionPoint(rgn, pt.X, pt.Y, graphics, result);
4342 cleanup:
4343 GdipDeleteRegion(rgn);
4344 return stat;
4347 GpStatus WINGDIPAPI GdipIsVisiblePointI(GpGraphics *graphics, INT x, INT y, BOOL *result)
4349 return GdipIsVisiblePoint(graphics, (REAL)x, (REAL)y, result);
4352 GpStatus WINGDIPAPI GdipIsVisibleRect(GpGraphics *graphics, REAL x, REAL y, REAL width, REAL height, BOOL *result)
4354 GpStatus stat;
4355 GpRegion* rgn;
4356 GpPointF pts[2];
4358 TRACE("(%p %.2f %.2f %.2f %.2f %p)\n", graphics, x, y, width, height, result);
4360 if(!graphics || !result)
4361 return InvalidParameter;
4363 if(graphics->busy)
4364 return ObjectBusy;
4366 pts[0].X = x;
4367 pts[0].Y = y;
4368 pts[1].X = x + width;
4369 pts[1].Y = y + height;
4371 if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice,
4372 CoordinateSpaceWorld, pts, 2)) != Ok)
4373 return stat;
4375 pts[1].X -= pts[0].X;
4376 pts[1].Y -= pts[0].Y;
4378 if((stat = GdipCreateRegion(&rgn)) != Ok)
4379 return stat;
4381 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
4382 goto cleanup;
4384 stat = GdipIsVisibleRegionRect(rgn, pts[0].X, pts[0].Y, pts[1].X, pts[1].Y, graphics, result);
4386 cleanup:
4387 GdipDeleteRegion(rgn);
4388 return stat;
4391 GpStatus WINGDIPAPI GdipIsVisibleRectI(GpGraphics *graphics, INT x, INT y, INT width, INT height, BOOL *result)
4393 return GdipIsVisibleRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, result);
4396 GpStatus gdip_format_string(HDC hdc,
4397 GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
4398 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
4399 gdip_format_string_callback callback, void *user_data)
4401 WCHAR* stringdup;
4402 int sum = 0, height = 0, fit, fitcpy, i, j, lret, nwidth,
4403 nheight, lineend, lineno = 0;
4404 RectF bounds;
4405 StringAlignment halign;
4406 GpStatus stat = Ok;
4407 SIZE size;
4409 if(length == -1) length = lstrlenW(string);
4411 stringdup = GdipAlloc((length + 1) * sizeof(WCHAR));
4412 if(!stringdup) return OutOfMemory;
4414 nwidth = roundr(rect->Width);
4415 nheight = roundr(rect->Height);
4417 if (rect->Width >= INT_MAX || rect->Width < 0.5) nwidth = INT_MAX;
4418 if (rect->Height >= INT_MAX || rect->Width < 0.5) nheight = INT_MAX;
4420 for(i = 0, j = 0; i < length; i++){
4421 /* FIXME: This makes the indexes passed to callback inaccurate. */
4422 if(!isprintW(string[i]) && (string[i] != '\n'))
4423 continue;
4425 stringdup[j] = string[i];
4426 j++;
4429 length = j;
4431 if (format) halign = format->align;
4432 else halign = StringAlignmentNear;
4434 while(sum < length){
4435 GetTextExtentExPointW(hdc, stringdup + sum, length - sum,
4436 nwidth, &fit, NULL, &size);
4437 fitcpy = fit;
4439 if(fit == 0)
4440 break;
4442 for(lret = 0; lret < fit; lret++)
4443 if(*(stringdup + sum + lret) == '\n')
4444 break;
4446 /* Line break code (may look strange, but it imitates windows). */
4447 if(lret < fit)
4448 lineend = fit = lret; /* this is not an off-by-one error */
4449 else if(fit < (length - sum)){
4450 if(*(stringdup + sum + fit) == ' ')
4451 while(*(stringdup + sum + fit) == ' ')
4452 fit++;
4453 else
4454 while(*(stringdup + sum + fit - 1) != ' '){
4455 fit--;
4457 if(*(stringdup + sum + fit) == '\t')
4458 break;
4460 if(fit == 0){
4461 fit = fitcpy;
4462 break;
4465 lineend = fit;
4466 while(*(stringdup + sum + lineend - 1) == ' ' ||
4467 *(stringdup + sum + lineend - 1) == '\t')
4468 lineend--;
4470 else
4471 lineend = fit;
4473 GetTextExtentExPointW(hdc, stringdup + sum, lineend,
4474 nwidth, &j, NULL, &size);
4476 bounds.Width = size.cx;
4478 if(height + size.cy > nheight)
4479 bounds.Height = nheight - (height + size.cy);
4480 else
4481 bounds.Height = size.cy;
4483 bounds.Y = rect->Y + height;
4485 switch (halign)
4487 case StringAlignmentNear:
4488 default:
4489 bounds.X = rect->X;
4490 break;
4491 case StringAlignmentCenter:
4492 bounds.X = rect->X + (rect->Width/2) - (bounds.Width/2);
4493 break;
4494 case StringAlignmentFar:
4495 bounds.X = rect->X + rect->Width - bounds.Width;
4496 break;
4499 stat = callback(hdc, stringdup, sum, lineend,
4500 font, rect, format, lineno, &bounds, user_data);
4502 if (stat != Ok)
4503 break;
4505 sum += fit + (lret < fitcpy ? 1 : 0);
4506 height += size.cy;
4507 lineno++;
4509 if(height > nheight)
4510 break;
4512 /* Stop if this was a linewrap (but not if it was a linebreak). */
4513 if((lret == fitcpy) && format && (format->attr & StringFormatFlagsNoWrap))
4514 break;
4517 GdipFree(stringdup);
4519 return stat;
4522 struct measure_ranges_args {
4523 GpRegion **regions;
4526 static GpStatus measure_ranges_callback(HDC hdc,
4527 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
4528 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
4529 INT lineno, const RectF *bounds, void *user_data)
4531 int i;
4532 GpStatus stat = Ok;
4533 struct measure_ranges_args *args = user_data;
4535 for (i=0; i<format->range_count; i++)
4537 INT range_start = max(index, format->character_ranges[i].First);
4538 INT range_end = min(index+length, format->character_ranges[i].First+format->character_ranges[i].Length);
4539 if (range_start < range_end)
4541 GpRectF range_rect;
4542 SIZE range_size;
4544 range_rect.Y = bounds->Y;
4545 range_rect.Height = bounds->Height;
4547 GetTextExtentExPointW(hdc, string + index, range_start - index,
4548 INT_MAX, NULL, NULL, &range_size);
4549 range_rect.X = bounds->X + range_size.cx;
4551 GetTextExtentExPointW(hdc, string + index, range_end - index,
4552 INT_MAX, NULL, NULL, &range_size);
4553 range_rect.Width = (bounds->X + range_size.cx) - range_rect.X;
4555 stat = GdipCombineRegionRect(args->regions[i], &range_rect, CombineModeUnion);
4556 if (stat != Ok)
4557 break;
4561 return stat;
4564 GpStatus WINGDIPAPI GdipMeasureCharacterRanges(GpGraphics* graphics,
4565 GDIPCONST WCHAR* string, INT length, GDIPCONST GpFont* font,
4566 GDIPCONST RectF* layoutRect, GDIPCONST GpStringFormat *stringFormat,
4567 INT regionCount, GpRegion** regions)
4569 GpStatus stat;
4570 int i;
4571 HFONT oldfont;
4572 struct measure_ranges_args args;
4573 HDC hdc, temp_hdc=NULL;
4575 TRACE("(%p %s %d %p %s %p %d %p)\n", graphics, debugstr_w(string),
4576 length, font, debugstr_rectf(layoutRect), stringFormat, regionCount, regions);
4578 if (!(graphics && string && font && layoutRect && stringFormat && regions))
4579 return InvalidParameter;
4581 if (regionCount < stringFormat->range_count)
4582 return InvalidParameter;
4584 if(!graphics->hdc)
4586 hdc = temp_hdc = CreateCompatibleDC(0);
4587 if (!temp_hdc) return OutOfMemory;
4589 else
4590 hdc = graphics->hdc;
4592 if (stringFormat->attr)
4593 TRACE("may be ignoring some format flags: attr %x\n", stringFormat->attr);
4595 oldfont = SelectObject(hdc, CreateFontIndirectW(&font->lfw));
4597 for (i=0; i<stringFormat->range_count; i++)
4599 stat = GdipSetEmpty(regions[i]);
4600 if (stat != Ok)
4601 return stat;
4604 args.regions = regions;
4606 stat = gdip_format_string(hdc, string, length, font, layoutRect, stringFormat,
4607 measure_ranges_callback, &args);
4609 DeleteObject(SelectObject(hdc, oldfont));
4611 if (temp_hdc)
4612 DeleteDC(temp_hdc);
4614 return stat;
4617 struct measure_string_args {
4618 RectF *bounds;
4619 INT *codepointsfitted;
4620 INT *linesfilled;
4623 static GpStatus measure_string_callback(HDC hdc,
4624 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
4625 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
4626 INT lineno, const RectF *bounds, void *user_data)
4628 struct measure_string_args *args = user_data;
4630 if (bounds->Width > args->bounds->Width)
4631 args->bounds->Width = bounds->Width;
4633 if (bounds->Height + bounds->Y > args->bounds->Height + args->bounds->Y)
4634 args->bounds->Height = bounds->Height + bounds->Y - args->bounds->Y;
4636 if (args->codepointsfitted)
4637 *args->codepointsfitted = index + length;
4639 if (args->linesfilled)
4640 (*args->linesfilled)++;
4642 return Ok;
4645 /* Find the smallest rectangle that bounds the text when it is printed in rect
4646 * according to the format options listed in format. If rect has 0 width and
4647 * height, then just find the smallest rectangle that bounds the text when it's
4648 * printed at location (rect->X, rect-Y). */
4649 GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics,
4650 GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
4651 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format, RectF *bounds,
4652 INT *codepointsfitted, INT *linesfilled)
4654 HFONT oldfont;
4655 struct measure_string_args args;
4656 HDC temp_hdc=NULL;
4658 TRACE("(%p, %s, %i, %p, %s, %p, %p, %p, %p)\n", graphics,
4659 debugstr_wn(string, length), length, font, debugstr_rectf(rect), format,
4660 bounds, codepointsfitted, linesfilled);
4662 if(!graphics || !string || !font || !rect || !bounds)
4663 return InvalidParameter;
4665 if(!graphics->hdc)
4667 temp_hdc = CreateCompatibleDC(0);
4668 if (!temp_hdc) return OutOfMemory;
4671 if(linesfilled) *linesfilled = 0;
4672 if(codepointsfitted) *codepointsfitted = 0;
4674 if(format)
4675 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
4677 oldfont = SelectObject(graphics->hdc, CreateFontIndirectW(&font->lfw));
4679 bounds->X = rect->X;
4680 bounds->Y = rect->Y;
4681 bounds->Width = 0.0;
4682 bounds->Height = 0.0;
4684 args.bounds = bounds;
4685 args.codepointsfitted = codepointsfitted;
4686 args.linesfilled = linesfilled;
4688 gdip_format_string(graphics->hdc ? graphics->hdc : temp_hdc, string, length, font, rect, format,
4689 measure_string_callback, &args);
4691 DeleteObject(SelectObject(graphics->hdc, oldfont));
4693 if (temp_hdc)
4694 DeleteDC(temp_hdc);
4696 return Ok;
4699 struct draw_string_args {
4700 POINT drawbase;
4701 UINT drawflags;
4702 REAL ang_cos, ang_sin;
4705 static GpStatus draw_string_callback(HDC hdc,
4706 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
4707 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
4708 INT lineno, const RectF *bounds, void *user_data)
4710 struct draw_string_args *args = user_data;
4711 RECT drawcoord;
4713 drawcoord.left = drawcoord.right = args->drawbase.x + roundr(args->ang_sin * bounds->Y);
4714 drawcoord.top = drawcoord.bottom = args->drawbase.y + roundr(args->ang_cos * bounds->Y);
4716 DrawTextW(hdc, string + index, length, &drawcoord, args->drawflags);
4718 return Ok;
4721 GpStatus WINGDIPAPI GdipDrawString(GpGraphics *graphics, GDIPCONST WCHAR *string,
4722 INT length, GDIPCONST GpFont *font, GDIPCONST RectF *rect,
4723 GDIPCONST GpStringFormat *format, GDIPCONST GpBrush *brush)
4725 HRGN rgn = NULL;
4726 HFONT gdifont;
4727 LOGFONTW lfw;
4728 TEXTMETRICW textmet;
4729 GpPointF pt[3], rectcpy[4];
4730 POINT corners[4];
4731 REAL angle, rel_width, rel_height;
4732 INT offsety = 0, save_state;
4733 struct draw_string_args args;
4734 RectF scaled_rect;
4736 TRACE("(%p, %s, %i, %p, %s, %p, %p)\n", graphics, debugstr_wn(string, length),
4737 length, font, debugstr_rectf(rect), format, brush);
4739 if(!graphics || !string || !font || !brush || !rect)
4740 return InvalidParameter;
4742 if((brush->bt != BrushTypeSolidColor)){
4743 FIXME("not implemented for given parameters\n");
4744 return NotImplemented;
4747 if(!graphics->hdc)
4749 FIXME("graphics object has no HDC\n");
4750 return Ok;
4753 if(format){
4754 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
4756 /* Should be no need to explicitly test for StringAlignmentNear as
4757 * that is default behavior if no alignment is passed. */
4758 if(format->vertalign != StringAlignmentNear){
4759 RectF bounds;
4760 GdipMeasureString(graphics, string, length, font, rect, format, &bounds, 0, 0);
4762 if(format->vertalign == StringAlignmentCenter)
4763 offsety = (rect->Height - bounds.Height) / 2;
4764 else if(format->vertalign == StringAlignmentFar)
4765 offsety = (rect->Height - bounds.Height);
4769 save_state = SaveDC(graphics->hdc);
4770 SetBkMode(graphics->hdc, TRANSPARENT);
4771 SetTextColor(graphics->hdc, brush->lb.lbColor);
4773 pt[0].X = 0.0;
4774 pt[0].Y = 0.0;
4775 pt[1].X = 1.0;
4776 pt[1].Y = 0.0;
4777 pt[2].X = 0.0;
4778 pt[2].Y = 1.0;
4779 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
4780 angle = -gdiplus_atan2((pt[1].Y - pt[0].Y), (pt[1].X - pt[0].X));
4781 args.ang_cos = cos(angle);
4782 args.ang_sin = sin(angle);
4783 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
4784 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
4785 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
4786 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
4788 rectcpy[3].X = rectcpy[0].X = rect->X;
4789 rectcpy[1].Y = rectcpy[0].Y = rect->Y + offsety;
4790 rectcpy[2].X = rectcpy[1].X = rect->X + rect->Width;
4791 rectcpy[3].Y = rectcpy[2].Y = rect->Y + offsety + rect->Height;
4792 transform_and_round_points(graphics, corners, rectcpy, 4);
4794 scaled_rect.X = 0.0;
4795 scaled_rect.Y = 0.0;
4796 scaled_rect.Width = rel_width * rect->Width;
4797 scaled_rect.Height = rel_height * rect->Height;
4799 if (roundr(scaled_rect.Width) != 0 && roundr(scaled_rect.Height) != 0)
4801 /* FIXME: If only the width or only the height is 0, we should probably still clip */
4802 rgn = CreatePolygonRgn(corners, 4, ALTERNATE);
4803 SelectClipRgn(graphics->hdc, rgn);
4806 /* Use gdi to find the font, then perform transformations on it (height,
4807 * width, angle). */
4808 SelectObject(graphics->hdc, CreateFontIndirectW(&font->lfw));
4809 GetTextMetricsW(graphics->hdc, &textmet);
4810 lfw = font->lfw;
4812 lfw.lfHeight = roundr(((REAL)lfw.lfHeight) * rel_height);
4813 lfw.lfWidth = roundr(textmet.tmAveCharWidth * rel_width);
4815 lfw.lfEscapement = lfw.lfOrientation = roundr((angle / M_PI) * 1800.0);
4817 gdifont = CreateFontIndirectW(&lfw);
4818 DeleteObject(SelectObject(graphics->hdc, gdifont));
4820 if (!format || format->align == StringAlignmentNear)
4822 args.drawbase.x = corners[0].x;
4823 args.drawbase.y = corners[0].y;
4824 args.drawflags = DT_NOCLIP | DT_EXPANDTABS;
4826 else if (format->align == StringAlignmentCenter)
4828 args.drawbase.x = (corners[0].x + corners[1].x)/2;
4829 args.drawbase.y = (corners[0].y + corners[1].y)/2;
4830 args.drawflags = DT_NOCLIP | DT_EXPANDTABS | DT_CENTER;
4832 else /* (format->align == StringAlignmentFar) */
4834 args.drawbase.x = corners[1].x;
4835 args.drawbase.y = corners[1].y;
4836 args.drawflags = DT_NOCLIP | DT_EXPANDTABS | DT_RIGHT;
4839 gdip_format_string(graphics->hdc, string, length, font, &scaled_rect, format,
4840 draw_string_callback, &args);
4842 DeleteObject(rgn);
4843 DeleteObject(gdifont);
4845 RestoreDC(graphics->hdc, save_state);
4847 return Ok;
4850 GpStatus WINGDIPAPI GdipResetClip(GpGraphics *graphics)
4852 TRACE("(%p)\n", graphics);
4854 if(!graphics)
4855 return InvalidParameter;
4857 if(graphics->busy)
4858 return ObjectBusy;
4860 return GdipSetInfinite(graphics->clip);
4863 GpStatus WINGDIPAPI GdipResetWorldTransform(GpGraphics *graphics)
4865 TRACE("(%p)\n", graphics);
4867 if(!graphics)
4868 return InvalidParameter;
4870 if(graphics->busy)
4871 return ObjectBusy;
4873 graphics->worldtrans->matrix[0] = 1.0;
4874 graphics->worldtrans->matrix[1] = 0.0;
4875 graphics->worldtrans->matrix[2] = 0.0;
4876 graphics->worldtrans->matrix[3] = 1.0;
4877 graphics->worldtrans->matrix[4] = 0.0;
4878 graphics->worldtrans->matrix[5] = 0.0;
4880 return Ok;
4883 GpStatus WINGDIPAPI GdipRestoreGraphics(GpGraphics *graphics, GraphicsState state)
4885 return GdipEndContainer(graphics, state);
4888 GpStatus WINGDIPAPI GdipRotateWorldTransform(GpGraphics *graphics, REAL angle,
4889 GpMatrixOrder order)
4891 TRACE("(%p, %.2f, %d)\n", graphics, angle, order);
4893 if(!graphics)
4894 return InvalidParameter;
4896 if(graphics->busy)
4897 return ObjectBusy;
4899 return GdipRotateMatrix(graphics->worldtrans, angle, order);
4902 GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state)
4904 return GdipBeginContainer2(graphics, state);
4907 GpStatus WINGDIPAPI GdipBeginContainer2(GpGraphics *graphics,
4908 GraphicsContainer *state)
4910 GraphicsContainerItem *container;
4911 GpStatus sts;
4913 TRACE("(%p, %p)\n", graphics, state);
4915 if(!graphics || !state)
4916 return InvalidParameter;
4918 sts = init_container(&container, graphics);
4919 if(sts != Ok)
4920 return sts;
4922 list_add_head(&graphics->containers, &container->entry);
4923 *state = graphics->contid = container->contid;
4925 return Ok;
4928 GpStatus WINGDIPAPI GdipBeginContainer(GpGraphics *graphics, GDIPCONST GpRectF *dstrect, GDIPCONST GpRectF *srcrect, GpUnit unit, GraphicsContainer *state)
4930 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
4931 return NotImplemented;
4934 GpStatus WINGDIPAPI GdipBeginContainerI(GpGraphics *graphics, GDIPCONST GpRect *dstrect, GDIPCONST GpRect *srcrect, GpUnit unit, GraphicsContainer *state)
4936 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
4937 return NotImplemented;
4940 GpStatus WINGDIPAPI GdipComment(GpGraphics *graphics, UINT sizeData, GDIPCONST BYTE *data)
4942 FIXME("(%p, %d, %p): stub\n", graphics, sizeData, data);
4943 return NotImplemented;
4946 GpStatus WINGDIPAPI GdipEndContainer(GpGraphics *graphics, GraphicsContainer state)
4948 GpStatus sts;
4949 GraphicsContainerItem *container, *container2;
4951 TRACE("(%p, %x)\n", graphics, state);
4953 if(!graphics)
4954 return InvalidParameter;
4956 LIST_FOR_EACH_ENTRY(container, &graphics->containers, GraphicsContainerItem, entry){
4957 if(container->contid == state)
4958 break;
4961 /* did not find a matching container */
4962 if(&container->entry == &graphics->containers)
4963 return Ok;
4965 sts = restore_container(graphics, container);
4966 if(sts != Ok)
4967 return sts;
4969 /* remove all of the containers on top of the found container */
4970 LIST_FOR_EACH_ENTRY_SAFE(container, container2, &graphics->containers, GraphicsContainerItem, entry){
4971 if(container->contid == state)
4972 break;
4973 list_remove(&container->entry);
4974 delete_container(container);
4977 list_remove(&container->entry);
4978 delete_container(container);
4980 return Ok;
4983 GpStatus WINGDIPAPI GdipScaleWorldTransform(GpGraphics *graphics, REAL sx,
4984 REAL sy, GpMatrixOrder order)
4986 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, sx, sy, order);
4988 if(!graphics)
4989 return InvalidParameter;
4991 if(graphics->busy)
4992 return ObjectBusy;
4994 return GdipScaleMatrix(graphics->worldtrans, sx, sy, order);
4997 GpStatus WINGDIPAPI GdipSetClipGraphics(GpGraphics *graphics, GpGraphics *srcgraphics,
4998 CombineMode mode)
5000 TRACE("(%p, %p, %d)\n", graphics, srcgraphics, mode);
5002 if(!graphics || !srcgraphics)
5003 return InvalidParameter;
5005 return GdipCombineRegionRegion(graphics->clip, srcgraphics->clip, mode);
5008 GpStatus WINGDIPAPI GdipSetCompositingMode(GpGraphics *graphics,
5009 CompositingMode mode)
5011 TRACE("(%p, %d)\n", graphics, mode);
5013 if(!graphics)
5014 return InvalidParameter;
5016 if(graphics->busy)
5017 return ObjectBusy;
5019 graphics->compmode = mode;
5021 return Ok;
5024 GpStatus WINGDIPAPI GdipSetCompositingQuality(GpGraphics *graphics,
5025 CompositingQuality quality)
5027 TRACE("(%p, %d)\n", graphics, quality);
5029 if(!graphics)
5030 return InvalidParameter;
5032 if(graphics->busy)
5033 return ObjectBusy;
5035 graphics->compqual = quality;
5037 return Ok;
5040 GpStatus WINGDIPAPI GdipSetInterpolationMode(GpGraphics *graphics,
5041 InterpolationMode mode)
5043 TRACE("(%p, %d)\n", graphics, mode);
5045 if(!graphics || mode == InterpolationModeInvalid || mode > InterpolationModeHighQualityBicubic)
5046 return InvalidParameter;
5048 if(graphics->busy)
5049 return ObjectBusy;
5051 if (mode == InterpolationModeDefault || mode == InterpolationModeLowQuality)
5052 mode = InterpolationModeBilinear;
5054 if (mode == InterpolationModeHighQuality)
5055 mode = InterpolationModeHighQualityBicubic;
5057 graphics->interpolation = mode;
5059 return Ok;
5062 GpStatus WINGDIPAPI GdipSetPageScale(GpGraphics *graphics, REAL scale)
5064 TRACE("(%p, %.2f)\n", graphics, scale);
5066 if(!graphics || (scale <= 0.0))
5067 return InvalidParameter;
5069 if(graphics->busy)
5070 return ObjectBusy;
5072 graphics->scale = scale;
5074 return Ok;
5077 GpStatus WINGDIPAPI GdipSetPageUnit(GpGraphics *graphics, GpUnit unit)
5079 TRACE("(%p, %d)\n", graphics, unit);
5081 if(!graphics)
5082 return InvalidParameter;
5084 if(graphics->busy)
5085 return ObjectBusy;
5087 if(unit == UnitWorld)
5088 return InvalidParameter;
5090 graphics->unit = unit;
5092 return Ok;
5095 GpStatus WINGDIPAPI GdipSetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
5096 mode)
5098 TRACE("(%p, %d)\n", graphics, mode);
5100 if(!graphics)
5101 return InvalidParameter;
5103 if(graphics->busy)
5104 return ObjectBusy;
5106 graphics->pixeloffset = mode;
5108 return Ok;
5111 GpStatus WINGDIPAPI GdipSetRenderingOrigin(GpGraphics *graphics, INT x, INT y)
5113 static int calls;
5115 TRACE("(%p,%i,%i)\n", graphics, x, y);
5117 if (!(calls++))
5118 FIXME("not implemented\n");
5120 return NotImplemented;
5123 GpStatus WINGDIPAPI GdipGetRenderingOrigin(GpGraphics *graphics, INT *x, INT *y)
5125 static int calls;
5127 TRACE("(%p,%p,%p)\n", graphics, x, y);
5129 if (!(calls++))
5130 FIXME("not implemented\n");
5132 *x = *y = 0;
5134 return NotImplemented;
5137 GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics *graphics, SmoothingMode mode)
5139 TRACE("(%p, %d)\n", graphics, mode);
5141 if(!graphics)
5142 return InvalidParameter;
5144 if(graphics->busy)
5145 return ObjectBusy;
5147 graphics->smoothing = mode;
5149 return Ok;
5152 GpStatus WINGDIPAPI GdipSetTextContrast(GpGraphics *graphics, UINT contrast)
5154 TRACE("(%p, %d)\n", graphics, contrast);
5156 if(!graphics)
5157 return InvalidParameter;
5159 graphics->textcontrast = contrast;
5161 return Ok;
5164 GpStatus WINGDIPAPI GdipSetTextRenderingHint(GpGraphics *graphics,
5165 TextRenderingHint hint)
5167 TRACE("(%p, %d)\n", graphics, hint);
5169 if(!graphics)
5170 return InvalidParameter;
5172 if(graphics->busy)
5173 return ObjectBusy;
5175 graphics->texthint = hint;
5177 return Ok;
5180 GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
5182 TRACE("(%p, %p)\n", graphics, matrix);
5184 if(!graphics || !matrix)
5185 return InvalidParameter;
5187 if(graphics->busy)
5188 return ObjectBusy;
5190 GdipDeleteMatrix(graphics->worldtrans);
5191 return GdipCloneMatrix(matrix, &graphics->worldtrans);
5194 GpStatus WINGDIPAPI GdipTranslateWorldTransform(GpGraphics *graphics, REAL dx,
5195 REAL dy, GpMatrixOrder order)
5197 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, dx, dy, order);
5199 if(!graphics)
5200 return InvalidParameter;
5202 if(graphics->busy)
5203 return ObjectBusy;
5205 return GdipTranslateMatrix(graphics->worldtrans, dx, dy, order);
5208 /*****************************************************************************
5209 * GdipSetClipHrgn [GDIPLUS.@]
5211 GpStatus WINGDIPAPI GdipSetClipHrgn(GpGraphics *graphics, HRGN hrgn, CombineMode mode)
5213 GpRegion *region;
5214 GpStatus status;
5216 TRACE("(%p, %p, %d)\n", graphics, hrgn, mode);
5218 if(!graphics)
5219 return InvalidParameter;
5221 status = GdipCreateRegionHrgn(hrgn, &region);
5222 if(status != Ok)
5223 return status;
5225 status = GdipSetClipRegion(graphics, region, mode);
5227 GdipDeleteRegion(region);
5228 return status;
5231 GpStatus WINGDIPAPI GdipSetClipPath(GpGraphics *graphics, GpPath *path, CombineMode mode)
5233 TRACE("(%p, %p, %d)\n", graphics, path, mode);
5235 if(!graphics)
5236 return InvalidParameter;
5238 if(graphics->busy)
5239 return ObjectBusy;
5241 return GdipCombineRegionPath(graphics->clip, path, mode);
5244 GpStatus WINGDIPAPI GdipSetClipRect(GpGraphics *graphics, REAL x, REAL y,
5245 REAL width, REAL height,
5246 CombineMode mode)
5248 GpRectF rect;
5250 TRACE("(%p, %.2f, %.2f, %.2f, %.2f, %d)\n", graphics, x, y, width, height, mode);
5252 if(!graphics)
5253 return InvalidParameter;
5255 if(graphics->busy)
5256 return ObjectBusy;
5258 rect.X = x;
5259 rect.Y = y;
5260 rect.Width = width;
5261 rect.Height = height;
5263 return GdipCombineRegionRect(graphics->clip, &rect, mode);
5266 GpStatus WINGDIPAPI GdipSetClipRectI(GpGraphics *graphics, INT x, INT y,
5267 INT width, INT height,
5268 CombineMode mode)
5270 TRACE("(%p, %d, %d, %d, %d, %d)\n", graphics, x, y, width, height, mode);
5272 if(!graphics)
5273 return InvalidParameter;
5275 if(graphics->busy)
5276 return ObjectBusy;
5278 return GdipSetClipRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, mode);
5281 GpStatus WINGDIPAPI GdipSetClipRegion(GpGraphics *graphics, GpRegion *region,
5282 CombineMode mode)
5284 TRACE("(%p, %p, %d)\n", graphics, region, mode);
5286 if(!graphics || !region)
5287 return InvalidParameter;
5289 if(graphics->busy)
5290 return ObjectBusy;
5292 return GdipCombineRegionRegion(graphics->clip, region, mode);
5295 GpStatus WINGDIPAPI GdipSetMetafileDownLevelRasterizationLimit(GpMetafile *metafile,
5296 UINT limitDpi)
5298 static int calls;
5300 TRACE("(%p,%u)\n", metafile, limitDpi);
5302 if(!(calls++))
5303 FIXME("not implemented\n");
5305 return NotImplemented;
5308 GpStatus WINGDIPAPI GdipDrawPolygon(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPointF *points,
5309 INT count)
5311 INT save_state;
5312 POINT *pti;
5314 TRACE("(%p, %p, %d)\n", graphics, points, count);
5316 if(!graphics || !pen || count<=0)
5317 return InvalidParameter;
5319 if(graphics->busy)
5320 return ObjectBusy;
5322 if (!graphics->hdc)
5324 FIXME("graphics object has no HDC\n");
5325 return Ok;
5328 pti = GdipAlloc(sizeof(POINT) * count);
5330 save_state = prepare_dc(graphics, pen);
5331 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
5333 transform_and_round_points(graphics, pti, (GpPointF*)points, count);
5334 Polygon(graphics->hdc, pti, count);
5336 restore_dc(graphics, save_state);
5337 GdipFree(pti);
5339 return Ok;
5342 GpStatus WINGDIPAPI GdipDrawPolygonI(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPoint *points,
5343 INT count)
5345 GpStatus ret;
5346 GpPointF *ptf;
5347 INT i;
5349 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
5351 if(count<=0) return InvalidParameter;
5352 ptf = GdipAlloc(sizeof(GpPointF) * count);
5354 for(i = 0;i < count; i++){
5355 ptf[i].X = (REAL)points[i].X;
5356 ptf[i].Y = (REAL)points[i].Y;
5359 ret = GdipDrawPolygon(graphics,pen,ptf,count);
5360 GdipFree(ptf);
5362 return ret;
5365 GpStatus WINGDIPAPI GdipGetDpiX(GpGraphics *graphics, REAL* dpi)
5367 TRACE("(%p, %p)\n", graphics, dpi);
5369 if(!graphics || !dpi)
5370 return InvalidParameter;
5372 if(graphics->busy)
5373 return ObjectBusy;
5375 if (graphics->image)
5376 *dpi = graphics->image->xres;
5377 else
5378 *dpi = (REAL)GetDeviceCaps(graphics->hdc, LOGPIXELSX);
5380 return Ok;
5383 GpStatus WINGDIPAPI GdipGetDpiY(GpGraphics *graphics, REAL* dpi)
5385 TRACE("(%p, %p)\n", graphics, dpi);
5387 if(!graphics || !dpi)
5388 return InvalidParameter;
5390 if(graphics->busy)
5391 return ObjectBusy;
5393 if (graphics->image)
5394 *dpi = graphics->image->yres;
5395 else
5396 *dpi = (REAL)GetDeviceCaps(graphics->hdc, LOGPIXELSY);
5398 return Ok;
5401 GpStatus WINGDIPAPI GdipMultiplyWorldTransform(GpGraphics *graphics, GDIPCONST GpMatrix *matrix,
5402 GpMatrixOrder order)
5404 GpMatrix m;
5405 GpStatus ret;
5407 TRACE("(%p, %p, %d)\n", graphics, matrix, order);
5409 if(!graphics || !matrix)
5410 return InvalidParameter;
5412 if(graphics->busy)
5413 return ObjectBusy;
5415 m = *(graphics->worldtrans);
5417 ret = GdipMultiplyMatrix(&m, matrix, order);
5418 if(ret == Ok)
5419 *(graphics->worldtrans) = m;
5421 return ret;
5424 /* Color used to fill bitmaps so we can tell which parts have been drawn over by gdi32. */
5425 static const COLORREF DC_BACKGROUND_KEY = 0x0c0b0d;
5427 GpStatus WINGDIPAPI GdipGetDC(GpGraphics *graphics, HDC *hdc)
5429 TRACE("(%p, %p)\n", graphics, hdc);
5431 if(!graphics || !hdc)
5432 return InvalidParameter;
5434 if(graphics->busy)
5435 return ObjectBusy;
5437 if (!graphics->hdc ||
5438 (graphics->image && graphics->image->type == ImageTypeBitmap && ((GpBitmap*)graphics->image)->format & PixelFormatAlpha))
5440 /* Create a fake HDC and fill it with a constant color. */
5441 HDC temp_hdc;
5442 HBITMAP hbitmap;
5443 GpStatus stat;
5444 GpRectF bounds;
5445 BITMAPINFOHEADER bmih;
5446 int i;
5448 stat = get_graphics_bounds(graphics, &bounds);
5449 if (stat != Ok)
5450 return stat;
5452 graphics->temp_hbitmap_width = bounds.Width;
5453 graphics->temp_hbitmap_height = bounds.Height;
5455 bmih.biSize = sizeof(bmih);
5456 bmih.biWidth = graphics->temp_hbitmap_width;
5457 bmih.biHeight = -graphics->temp_hbitmap_height;
5458 bmih.biPlanes = 1;
5459 bmih.biBitCount = 32;
5460 bmih.biCompression = BI_RGB;
5461 bmih.biSizeImage = 0;
5462 bmih.biXPelsPerMeter = 0;
5463 bmih.biYPelsPerMeter = 0;
5464 bmih.biClrUsed = 0;
5465 bmih.biClrImportant = 0;
5467 hbitmap = CreateDIBSection(NULL, (BITMAPINFO*)&bmih, DIB_RGB_COLORS,
5468 (void**)&graphics->temp_bits, NULL, 0);
5469 if (!hbitmap)
5470 return GenericError;
5472 temp_hdc = CreateCompatibleDC(0);
5473 if (!temp_hdc)
5475 DeleteObject(hbitmap);
5476 return GenericError;
5479 for (i=0; i<(graphics->temp_hbitmap_width * graphics->temp_hbitmap_height); i++)
5480 ((DWORD*)graphics->temp_bits)[i] = DC_BACKGROUND_KEY;
5482 SelectObject(temp_hdc, hbitmap);
5484 graphics->temp_hbitmap = hbitmap;
5485 *hdc = graphics->temp_hdc = temp_hdc;
5487 else
5489 *hdc = graphics->hdc;
5492 graphics->busy = TRUE;
5494 return Ok;
5497 GpStatus WINGDIPAPI GdipReleaseDC(GpGraphics *graphics, HDC hdc)
5499 TRACE("(%p, %p)\n", graphics, hdc);
5501 if(!graphics || !hdc)
5502 return InvalidParameter;
5504 if((graphics->hdc != hdc && graphics->temp_hdc != hdc) || !(graphics->busy))
5505 return InvalidParameter;
5507 if (graphics->temp_hdc == hdc)
5509 DWORD* pos;
5510 int i;
5512 /* Find the pixels that have changed, and mark them as opaque. */
5513 pos = (DWORD*)graphics->temp_bits;
5514 for (i=0; i<(graphics->temp_hbitmap_width * graphics->temp_hbitmap_height); i++)
5516 if (*pos != DC_BACKGROUND_KEY)
5518 *pos |= 0xff000000;
5520 pos++;
5523 /* Write the changed pixels to the real target. */
5524 alpha_blend_pixels(graphics, 0, 0, graphics->temp_bits,
5525 graphics->temp_hbitmap_width, graphics->temp_hbitmap_height,
5526 graphics->temp_hbitmap_width * 4);
5528 /* Clean up. */
5529 DeleteDC(graphics->temp_hdc);
5530 DeleteObject(graphics->temp_hbitmap);
5531 graphics->temp_hdc = NULL;
5532 graphics->temp_hbitmap = NULL;
5535 graphics->busy = FALSE;
5537 return Ok;
5540 GpStatus WINGDIPAPI GdipGetClip(GpGraphics *graphics, GpRegion *region)
5542 GpRegion *clip;
5543 GpStatus status;
5545 TRACE("(%p, %p)\n", graphics, region);
5547 if(!graphics || !region)
5548 return InvalidParameter;
5550 if(graphics->busy)
5551 return ObjectBusy;
5553 if((status = GdipCloneRegion(graphics->clip, &clip)) != Ok)
5554 return status;
5556 /* free everything except root node and header */
5557 delete_element(&region->node);
5558 memcpy(region, clip, sizeof(GpRegion));
5559 GdipFree(clip);
5561 return Ok;
5564 static GpStatus get_graphics_transform(GpGraphics *graphics, GpCoordinateSpace dst_space,
5565 GpCoordinateSpace src_space, GpMatrix **matrix)
5567 GpStatus stat = GdipCreateMatrix(matrix);
5568 REAL unitscale;
5570 if (dst_space != src_space && stat == Ok)
5572 unitscale = convert_unit(graphics_res(graphics), graphics->unit);
5574 if(graphics->unit != UnitDisplay)
5575 unitscale *= graphics->scale;
5577 /* transform from src_space to CoordinateSpacePage */
5578 switch (src_space)
5580 case CoordinateSpaceWorld:
5581 GdipMultiplyMatrix(*matrix, graphics->worldtrans, MatrixOrderAppend);
5582 break;
5583 case CoordinateSpacePage:
5584 break;
5585 case CoordinateSpaceDevice:
5586 GdipScaleMatrix(*matrix, 1.0/unitscale, 1.0/unitscale, MatrixOrderAppend);
5587 break;
5590 /* transform from CoordinateSpacePage to dst_space */
5591 switch (dst_space)
5593 case CoordinateSpaceWorld:
5595 GpMatrix *inverted_transform;
5596 stat = GdipCloneMatrix(graphics->worldtrans, &inverted_transform);
5597 if (stat == Ok)
5599 stat = GdipInvertMatrix(inverted_transform);
5600 if (stat == Ok)
5601 GdipMultiplyMatrix(*matrix, inverted_transform, MatrixOrderAppend);
5602 GdipDeleteMatrix(inverted_transform);
5604 break;
5606 case CoordinateSpacePage:
5607 break;
5608 case CoordinateSpaceDevice:
5609 GdipScaleMatrix(*matrix, unitscale, unitscale, MatrixOrderAppend);
5610 break;
5613 return stat;
5616 GpStatus WINGDIPAPI GdipTransformPoints(GpGraphics *graphics, GpCoordinateSpace dst_space,
5617 GpCoordinateSpace src_space, GpPointF *points, INT count)
5619 GpMatrix *matrix;
5620 GpStatus stat;
5622 if(!graphics || !points || count <= 0)
5623 return InvalidParameter;
5625 if(graphics->busy)
5626 return ObjectBusy;
5628 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
5630 if (src_space == dst_space) return Ok;
5632 stat = get_graphics_transform(graphics, dst_space, src_space, &matrix);
5634 if (stat == Ok)
5636 stat = GdipTransformMatrixPoints(matrix, points, count);
5638 GdipDeleteMatrix(matrix);
5641 return stat;
5644 GpStatus WINGDIPAPI GdipTransformPointsI(GpGraphics *graphics, GpCoordinateSpace dst_space,
5645 GpCoordinateSpace src_space, GpPoint *points, INT count)
5647 GpPointF *pointsF;
5648 GpStatus ret;
5649 INT i;
5651 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
5653 if(count <= 0)
5654 return InvalidParameter;
5656 pointsF = GdipAlloc(sizeof(GpPointF) * count);
5657 if(!pointsF)
5658 return OutOfMemory;
5660 for(i = 0; i < count; i++){
5661 pointsF[i].X = (REAL)points[i].X;
5662 pointsF[i].Y = (REAL)points[i].Y;
5665 ret = GdipTransformPoints(graphics, dst_space, src_space, pointsF, count);
5667 if(ret == Ok)
5668 for(i = 0; i < count; i++){
5669 points[i].X = roundr(pointsF[i].X);
5670 points[i].Y = roundr(pointsF[i].Y);
5672 GdipFree(pointsF);
5674 return ret;
5677 HPALETTE WINGDIPAPI GdipCreateHalftonePalette(void)
5679 static int calls;
5681 TRACE("\n");
5683 if (!calls++)
5684 FIXME("stub\n");
5686 return NULL;
5689 /*****************************************************************************
5690 * GdipTranslateClip [GDIPLUS.@]
5692 GpStatus WINGDIPAPI GdipTranslateClip(GpGraphics *graphics, REAL dx, REAL dy)
5694 TRACE("(%p, %.2f, %.2f)\n", graphics, dx, dy);
5696 if(!graphics)
5697 return InvalidParameter;
5699 if(graphics->busy)
5700 return ObjectBusy;
5702 return GdipTranslateRegion(graphics->clip, dx, dy);
5705 /*****************************************************************************
5706 * GdipTranslateClipI [GDIPLUS.@]
5708 GpStatus WINGDIPAPI GdipTranslateClipI(GpGraphics *graphics, INT dx, INT dy)
5710 TRACE("(%p, %d, %d)\n", graphics, dx, dy);
5712 if(!graphics)
5713 return InvalidParameter;
5715 if(graphics->busy)
5716 return ObjectBusy;
5718 return GdipTranslateRegion(graphics->clip, (REAL)dx, (REAL)dy);
5722 /*****************************************************************************
5723 * GdipMeasureDriverString [GDIPLUS.@]
5725 GpStatus WINGDIPAPI GdipMeasureDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
5726 GDIPCONST GpFont *font, GDIPCONST PointF *positions,
5727 INT flags, GDIPCONST GpMatrix *matrix, RectF *boundingBox)
5729 FIXME("(%p %p %d %p %p %d %p %p): stub\n", graphics, text, length, font, positions, flags, matrix, boundingBox);
5730 return NotImplemented;
5733 /*****************************************************************************
5734 * GdipDrawDriverString [GDIPLUS.@]
5736 GpStatus WINGDIPAPI GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
5737 GDIPCONST GpFont *font, GDIPCONST GpBrush *brush,
5738 GDIPCONST PointF *positions, INT flags,
5739 GDIPCONST GpMatrix *matrix )
5741 FIXME("(%p %p %d %p %p %p %d %p): stub\n", graphics, text, length, font, brush, positions, flags, matrix);
5742 return NotImplemented;
5745 GpStatus WINGDIPAPI GdipRecordMetafile(HDC hdc, EmfType type, GDIPCONST GpRectF *frameRect,
5746 MetafileFrameUnit frameUnit, GDIPCONST WCHAR *desc, GpMetafile **metafile)
5748 FIXME("(%p %d %p %d %p %p): stub\n", hdc, type, frameRect, frameUnit, desc, metafile);
5749 return NotImplemented;
5752 /*****************************************************************************
5753 * GdipRecordMetafileI [GDIPLUS.@]
5755 GpStatus WINGDIPAPI GdipRecordMetafileI(HDC hdc, EmfType type, GDIPCONST GpRect *frameRect,
5756 MetafileFrameUnit frameUnit, GDIPCONST WCHAR *desc, GpMetafile **metafile)
5758 FIXME("(%p %d %p %d %p %p): stub\n", hdc, type, frameRect, frameUnit, desc, metafile);
5759 return NotImplemented;
5762 GpStatus WINGDIPAPI GdipRecordMetafileStream(IStream *stream, HDC hdc, EmfType type, GDIPCONST GpRect *frameRect,
5763 MetafileFrameUnit frameUnit, GDIPCONST WCHAR *desc, GpMetafile **metafile)
5765 FIXME("(%p %p %d %p %d %p %p): stub\n", stream, hdc, type, frameRect, frameUnit, desc, metafile);
5766 return NotImplemented;
5769 /*****************************************************************************
5770 * GdipIsVisibleClipEmpty [GDIPLUS.@]
5772 GpStatus WINGDIPAPI GdipIsVisibleClipEmpty(GpGraphics *graphics, BOOL *res)
5774 GpStatus stat;
5775 GpRegion* rgn;
5777 TRACE("(%p, %p)\n", graphics, res);
5779 if((stat = GdipCreateRegion(&rgn)) != Ok)
5780 return stat;
5782 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
5783 goto cleanup;
5785 stat = GdipIsEmptyRegion(rgn, graphics, res);
5787 cleanup:
5788 GdipDeleteRegion(rgn);
5789 return stat;
5792 GpStatus WINGDIPAPI GdipGetHemfFromMetafile(GpMetafile *metafile, HENHMETAFILE *hEmf)
5794 FIXME("(%p,%p): stub\n", metafile, hEmf);
5796 if (!metafile || !hEmf)
5797 return InvalidParameter;
5799 *hEmf = NULL;
5801 return NotImplemented;