blob: a4f115805079cda7478f1a463f17b967a9c3702c [file] [log] [blame]
Evan Staded50be492007-06-11 11:54:03 -07001/*
2 * Copyright (C) 2007 Google (Evan Stade)
3 *
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.
8 *
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.
13 *
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
17 */
18
19#include <stdarg.h>
20#include <math.h>
Evan Stade44e98392007-08-15 16:22:09 -070021#include <limits.h>
Evan Staded50be492007-06-11 11:54:03 -070022
23#include "windef.h"
24#include "winbase.h"
25#include "winuser.h"
26#include "wingdi.h"
Evan Stadef7d27e02007-08-14 18:58:39 -070027#include "wine/unicode.h"
Evan Stade50799cf2007-07-30 19:10:03 -070028
29#define COBJMACROS
30#include "objbase.h"
31#include "ocidl.h"
32#include "olectl.h"
33#include "ole2.h"
34
Evan Stade3ea77f52007-08-07 18:42:00 -070035#include "winreg.h"
36#include "shlwapi.h"
37
Evan Staded50be492007-06-11 11:54:03 -070038#include "gdiplus.h"
39#include "gdiplus_private.h"
40#include "wine/debug.h"
Andrew Eikum632aef32009-07-05 17:04:20 -050041#include "wine/list.h"
Evan Staded50be492007-06-11 11:54:03 -070042
Evan Stade5128e5d2007-07-07 13:20:41 -070043WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
44
45/* looks-right constants */
Evan Stade5128e5d2007-07-07 13:20:41 -070046#define ANCHOR_WIDTH (2.0)
Evan Stade69a807c2007-07-06 16:13:49 -070047#define MAX_ITERS (50)
Evan Stade5c8b83c2007-06-19 19:31:28 -070048
Evan Stade72ab72c502007-06-18 16:55:51 -070049/* Converts angle (in degrees) to x/y coordinates */
50static void deg2xy(REAL angle, REAL x_0, REAL y_0, REAL *x, REAL *y)
51{
52 REAL radAngle, hypotenuse;
53
54 radAngle = deg2rad(angle);
55 hypotenuse = 50.0; /* arbitrary */
56
57 *x = x_0 + cos(radAngle) * hypotenuse;
58 *y = y_0 + sin(radAngle) * hypotenuse;
59}
60
Evan Stade85b5df42007-07-19 18:22:51 -070061/* Converts from gdiplus path point type to gdi path point type. */
62static BYTE convert_path_point_type(BYTE type)
63{
64 BYTE ret;
65
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;
79 }
80
81 if(type & PathPointTypeCloseSubpath)
82 ret |= PT_CLOSEFIGURE;
83
84 return ret;
85}
86
Evan Stade4c424b32007-07-24 17:18:54 -070087static INT prepare_dc(GpGraphics *graphics, GpPen *pen)
88{
89 HPEN gdipen;
90 REAL width;
Evan Stade1f61f482007-07-27 16:07:39 -070091 INT save_state = SaveDC(graphics->hdc), i, numdashes;
Evan Stadeb7053b72007-07-24 17:18:58 -070092 GpPointF pt[2];
Evan Stade1f61f482007-07-27 16:07:39 -070093 DWORD dash_array[MAX_DASHLEN];
Evan Stade4c424b32007-07-24 17:18:54 -070094
95 EndPath(graphics->hdc);
96
Evan Stadeafa4d322007-08-13 18:34:31 -070097 if(pen->unit == UnitPixel){
98 width = pen->width;
99 }
100 else{
101 /* Get an estimate for the amount the pen width is affected by the world
102 * transform. (This is similar to what some of the wine drivers do.) */
103 pt[0].X = 0.0;
104 pt[0].Y = 0.0;
105 pt[1].X = 1.0;
106 pt[1].Y = 1.0;
107 GdipTransformMatrixPoints(graphics->worldtrans, pt, 2);
108 width = sqrt((pt[1].X - pt[0].X) * (pt[1].X - pt[0].X) +
109 (pt[1].Y - pt[0].Y) * (pt[1].Y - pt[0].Y)) / sqrt(2.0);
Evan Stadeb7053b72007-07-24 17:18:58 -0700110
Evan Stadeafa4d322007-08-13 18:34:31 -0700111 width *= pen->width * convert_unit(graphics->hdc,
112 pen->unit == UnitWorld ? graphics->unit : pen->unit);
113 }
Evan Stade4c424b32007-07-24 17:18:54 -0700114
Evan Stade1f61f482007-07-27 16:07:39 -0700115 if(pen->dash == DashStyleCustom){
116 numdashes = min(pen->numdashes, MAX_DASHLEN);
117
118 TRACE("dashes are: ");
119 for(i = 0; i < numdashes; i++){
120 dash_array[i] = roundr(width * pen->dashes[i]);
121 TRACE("%d, ", dash_array[i]);
122 }
123 TRACE("\n and the pen style is %x\n", pen->style);
124
125 gdipen = ExtCreatePen(pen->style, roundr(width), &pen->brush->lb,
126 numdashes, dash_array);
127 }
128 else
129 gdipen = ExtCreatePen(pen->style, roundr(width), &pen->brush->lb, 0, NULL);
130
Evan Stade4c424b32007-07-24 17:18:54 -0700131 SelectObject(graphics->hdc, gdipen);
132
133 return save_state;
134}
135
136static void restore_dc(GpGraphics *graphics, INT state)
137{
138 DeleteObject(SelectObject(graphics->hdc, GetStockObject(NULL_PEN)));
139 RestoreDC(graphics->hdc, state);
140}
141
Evan Staded01c6972007-07-23 20:24:53 -0700142/* This helper applies all the changes that the points listed in ptf need in
143 * order to be drawn on the device context. In the end, this should include at
144 * least:
145 * -scaling by page unit
146 * -applying world transformation
147 * -converting from float to int
148 * Native gdiplus uses gdi32 to do all this (via SetMapMode, SetViewportExtEx,
149 * SetWindowExtEx, SetWorldTransform, etc.) but we cannot because we are using
150 * gdi to draw, and these functions would irreparably mess with line widths.
151 */
152static void transform_and_round_points(GpGraphics *graphics, POINT *pti,
Evan Stadec3e8af42007-07-24 17:18:50 -0700153 GpPointF *ptf, INT count)
Evan Staded01c6972007-07-23 20:24:53 -0700154{
155 REAL unitscale;
Evan Stadec3e8af42007-07-24 17:18:50 -0700156 GpMatrix *matrix;
Evan Staded01c6972007-07-23 20:24:53 -0700157 int i;
158
Evan Stade4c424b32007-07-24 17:18:54 -0700159 unitscale = convert_unit(graphics->hdc, graphics->unit);
Evan Staded01c6972007-07-23 20:24:53 -0700160
Evan Stade81621392007-07-24 17:18:39 -0700161 /* apply page scale */
162 if(graphics->unit != UnitDisplay)
163 unitscale *= graphics->scale;
164
Evan Stadec3e8af42007-07-24 17:18:50 -0700165 GdipCloneMatrix(graphics->worldtrans, &matrix);
166 GdipScaleMatrix(matrix, unitscale, unitscale, MatrixOrderAppend);
167 GdipTransformMatrixPoints(matrix, ptf, count);
Evan Stadef52adfd2007-07-25 19:15:20 -0700168 GdipDeleteMatrix(matrix);
Evan Stadec3e8af42007-07-24 17:18:50 -0700169
Evan Staded01c6972007-07-23 20:24:53 -0700170 for(i = 0; i < count; i++){
Evan Stadec3e8af42007-07-24 17:18:50 -0700171 pti[i].x = roundr(ptf[i].X);
172 pti[i].y = roundr(ptf[i].Y);
Evan Staded01c6972007-07-23 20:24:53 -0700173 }
174}
175
Vincent Povirka6161302009-05-01 14:26:50 -0500176static ARGB blend_colors(ARGB start, ARGB end, REAL position)
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500177{
178 ARGB result=0;
179 ARGB i;
180 for (i=0xff; i<=0xff0000; i = i << 8)
Vincent Povirka6161302009-05-01 14:26:50 -0500181 result |= (int)((start&i)*(1.0f - position)+(end&i)*(position))&i;
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500182 return result;
183}
184
Vincent Povirka6161302009-05-01 14:26:50 -0500185static ARGB blend_line_gradient(GpLineGradient* brush, REAL position)
186{
187 REAL blendfac;
188
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500189 /* clamp to between 0.0 and 1.0, using the wrap mode */
190 if (brush->wrap == WrapModeTile)
191 {
192 position = fmodf(position, 1.0f);
193 if (position < 0.0f) position += 1.0f;
194 }
195 else /* WrapModeFlip* */
196 {
197 position = fmodf(position, 2.0f);
198 if (position < 0.0f) position += 2.0f;
199 if (position > 1.0f) position = 2.0f - position;
200 }
201
Vincent Povirka6161302009-05-01 14:26:50 -0500202 if (brush->blendcount == 1)
203 blendfac = position;
204 else
205 {
206 int i=1;
207 REAL left_blendpos, left_blendfac, right_blendpos, right_blendfac;
208 REAL range;
209
210 /* locate the blend positions surrounding this position */
211 while (position > brush->blendpos[i])
212 i++;
213
214 /* interpolate between the blend positions */
215 left_blendpos = brush->blendpos[i-1];
216 left_blendfac = brush->blendfac[i-1];
217 right_blendpos = brush->blendpos[i];
218 right_blendfac = brush->blendfac[i];
219 range = right_blendpos - left_blendpos;
220 blendfac = (left_blendfac * (right_blendpos - position) +
221 right_blendfac * (position - left_blendpos)) / range;
222 }
Vincent Povirkd2e999d2009-09-14 16:48:03 -0500223
224 if (brush->pblendcount == 0)
225 return blend_colors(brush->startcolor, brush->endcolor, blendfac);
226 else
227 {
228 int i=1;
229 ARGB left_blendcolor, right_blendcolor;
230 REAL left_blendpos, right_blendpos;
231
232 /* locate the blend colors surrounding this position */
233 while (blendfac > brush->pblendpos[i])
234 i++;
235
236 /* interpolate between the blend colors */
237 left_blendpos = brush->pblendpos[i-1];
238 left_blendcolor = brush->pblendcolor[i-1];
239 right_blendpos = brush->pblendpos[i];
240 right_blendcolor = brush->pblendcolor[i];
241 blendfac = (blendfac - left_blendpos) / (right_blendpos - left_blendpos);
242 return blend_colors(left_blendcolor, right_blendcolor, blendfac);
243 }
Vincent Povirka6161302009-05-01 14:26:50 -0500244}
245
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500246static void brush_fill_path(GpGraphics *graphics, GpBrush* brush)
247{
248 switch (brush->bt)
249 {
250 case BrushTypeLinearGradient:
251 {
252 GpLineGradient *line = (GpLineGradient*)brush;
253 RECT rc;
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500254
255 SelectClipPath(graphics->hdc, RGN_AND);
256 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
257 {
258 GpPointF endpointsf[2];
259 POINT endpointsi[2];
260 POINT poly[4];
261
262 SelectObject(graphics->hdc, GetStockObject(NULL_PEN));
263
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500264 endpointsf[0] = line->startpoint;
265 endpointsf[1] = line->endpoint;
266 transform_and_round_points(graphics, endpointsi, endpointsf, 2);
267
268 if (abs(endpointsi[0].x-endpointsi[1].x) > abs(endpointsi[0].y-endpointsi[1].y))
269 {
270 /* vertical-ish gradient */
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500271 int startx, endx; /* x co-ordinates of endpoints shifted to intersect the top of the visible rectangle */
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500272 int startbottomx; /* x co-ordinate of start point shifted to intersect the bottom of the visible rectangle */
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500273 int width;
274 COLORREF col;
275 HBRUSH hbrush, hprevbrush;
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500276 int leftx, rightx; /* x co-ordinates where the leftmost and rightmost gradient lines hit the top of the visible rectangle */
277 int x;
278 int tilt; /* horizontal distance covered by a gradient line */
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500279
280 startx = roundr((rc.top - endpointsf[0].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[0].X);
281 endx = roundr((rc.top - endpointsf[1].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[1].X);
282 width = endx - startx;
283 startbottomx = roundr((rc.bottom - endpointsf[0].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[0].X);
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500284 tilt = startx - startbottomx;
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500285
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500286 if (startx >= startbottomx)
287 {
288 leftx = rc.left;
289 rightx = rc.right + tilt;
290 }
291 else
292 {
293 leftx = rc.left + tilt;
294 rightx = rc.right;
295 }
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500296
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500297 poly[0].y = rc.bottom;
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500298 poly[1].y = rc.top;
299 poly[2].y = rc.top;
300 poly[3].y = rc.bottom;
301
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500302 for (x=leftx; x<=rightx; x++)
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500303 {
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500304 ARGB argb = blend_line_gradient(line, (x-startx)/(REAL)width);
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500305 col = ARGB2COLORREF(argb);
306 hbrush = CreateSolidBrush(col);
307 hprevbrush = SelectObject(graphics->hdc, hbrush);
Vincent Povirkcb478a32009-05-01 15:37:35 -0500308 poly[0].x = x - tilt - 1;
309 poly[1].x = x - 1;
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500310 poly[2].x = x;
311 poly[3].x = x - tilt;
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500312 Polygon(graphics->hdc, poly, 4);
313 SelectObject(graphics->hdc, hprevbrush);
314 DeleteObject(hbrush);
315 }
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500316 }
317 else if (endpointsi[0].y != endpointsi[1].y)
318 {
319 /* horizontal-ish gradient */
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500320 int starty, endy; /* y co-ordinates of endpoints shifted to intersect the left of the visible rectangle */
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500321 int startrighty; /* y co-ordinate of start point shifted to intersect the right of the visible rectangle */
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500322 int height;
323 COLORREF col;
324 HBRUSH hbrush, hprevbrush;
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500325 int topy, bottomy; /* y co-ordinates where the topmost and bottommost gradient lines hit the left of the visible rectangle */
326 int y;
327 int tilt; /* vertical distance covered by a gradient line */
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500328
329 starty = roundr((rc.left - endpointsf[0].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[0].Y);
330 endy = roundr((rc.left - endpointsf[1].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[1].Y);
331 height = endy - starty;
332 startrighty = roundr((rc.right - endpointsf[0].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[0].Y);
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500333 tilt = starty - startrighty;
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500334
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500335 if (starty >= startrighty)
336 {
337 topy = rc.top;
338 bottomy = rc.bottom + tilt;
339 }
340 else
341 {
342 topy = rc.top + tilt;
343 bottomy = rc.bottom;
344 }
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500345
346 poly[0].x = rc.right;
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500347 poly[1].x = rc.left;
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500348 poly[2].x = rc.left;
349 poly[3].x = rc.right;
350
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500351 for (y=topy; y<=bottomy; y++)
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500352 {
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500353 ARGB argb = blend_line_gradient(line, (y-starty)/(REAL)height);
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500354 col = ARGB2COLORREF(argb);
355 hbrush = CreateSolidBrush(col);
356 hprevbrush = SelectObject(graphics->hdc, hbrush);
Vincent Povirkcb478a32009-05-01 15:37:35 -0500357 poly[0].y = y - tilt - 1;
358 poly[1].y = y - 1;
Vincent Povirk966fd5e2009-05-01 15:23:02 -0500359 poly[2].y = y;
360 poly[3].y = y - tilt;
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500361 Polygon(graphics->hdc, poly, 4);
362 SelectObject(graphics->hdc, hprevbrush);
363 DeleteObject(hbrush);
364 }
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500365 }
366 /* else startpoint == endpoint */
367 }
368 break;
369 }
Vincent Povirk60167df2009-05-20 11:24:18 -0500370 case BrushTypeSolidColor:
371 {
372 GpSolidFill *fill = (GpSolidFill*)brush;
373 if (fill->bmp)
374 {
375 RECT rc;
376 /* partially transparent fill */
377
378 SelectClipPath(graphics->hdc, RGN_AND);
379 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
380 {
381 HDC hdc = CreateCompatibleDC(NULL);
382 HBITMAP oldbmp;
383 BLENDFUNCTION bf;
384
385 if (!hdc) break;
386
387 oldbmp = SelectObject(hdc, fill->bmp);
388
389 bf.BlendOp = AC_SRC_OVER;
390 bf.BlendFlags = 0;
391 bf.SourceConstantAlpha = 255;
392 bf.AlphaFormat = AC_SRC_ALPHA;
393
394 GdiAlphaBlend(graphics->hdc, rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top, hdc, 0, 0, 1, 1, bf);
395
396 SelectObject(hdc, oldbmp);
397 DeleteDC(hdc);
398 }
399
400 break;
401 }
402 /* else fall through */
403 }
Vincent Povirk68dba4e2009-03-16 12:51:04 -0500404 default:
405 SelectObject(graphics->hdc, brush->gdibrush);
406 FillPath(graphics->hdc);
407 break;
408 }
409}
410
Evan Stade72ab72c502007-06-18 16:55:51 -0700411/* GdipDrawPie/GdipFillPie helper function */
Evan Stade4c424b32007-07-24 17:18:54 -0700412static void draw_pie(GpGraphics *graphics, REAL x, REAL y, REAL width,
413 REAL height, REAL startAngle, REAL sweepAngle)
Evan Stade72ab72c502007-06-18 16:55:51 -0700414{
Evan Staded01c6972007-07-23 20:24:53 -0700415 GpPointF ptf[4];
416 POINT pti[4];
Evan Stade72ab72c502007-06-18 16:55:51 -0700417
Evan Staded01c6972007-07-23 20:24:53 -0700418 ptf[0].X = x;
419 ptf[0].Y = y;
420 ptf[1].X = x + width;
421 ptf[1].Y = y + height;
Evan Stade72ab72c502007-06-18 16:55:51 -0700422
Evan Staded01c6972007-07-23 20:24:53 -0700423 deg2xy(startAngle+sweepAngle, x + width / 2.0, y + width / 2.0, &ptf[2].X, &ptf[2].Y);
424 deg2xy(startAngle, x + width / 2.0, y + width / 2.0, &ptf[3].X, &ptf[3].Y);
Evan Stade72ab72c502007-06-18 16:55:51 -0700425
Evan Staded01c6972007-07-23 20:24:53 -0700426 transform_and_round_points(graphics, pti, ptf, 4);
427
428 Pie(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y, pti[2].x,
429 pti[2].y, pti[3].x, pti[3].y);
Evan Stade72ab72c502007-06-18 16:55:51 -0700430}
431
Evan Stade5128e5d2007-07-07 13:20:41 -0700432/* Draws the linecap the specified color and size on the hdc. The linecap is in
Evan Stade8c5bcef2007-07-20 17:50:02 -0700433 * direction of the line from x1, y1 to x2, y2 and is anchored on x2, y2. Probably
434 * should not be called on an hdc that has a path you care about. */
Evan Staded01c6972007-07-23 20:24:53 -0700435static void draw_cap(GpGraphics *graphics, COLORREF color, GpLineCap cap, REAL size,
Evan Stade85b5df42007-07-19 18:22:51 -0700436 const GpCustomLineCap *custom, REAL x1, REAL y1, REAL x2, REAL y2)
Evan Stade5128e5d2007-07-07 13:20:41 -0700437{
Evan Stadeb7053b72007-07-24 17:18:58 -0700438 HGDIOBJ oldbrush = NULL, oldpen = NULL;
Evan Stade85b5df42007-07-19 18:22:51 -0700439 GpMatrix *matrix = NULL;
Evan Stadeb7053b72007-07-24 17:18:58 -0700440 HBRUSH brush = NULL;
441 HPEN pen = NULL;
Evan Staded01c6972007-07-23 20:24:53 -0700442 PointF ptf[4], *custptf = NULL;
Evan Stade85b5df42007-07-19 18:22:51 -0700443 POINT pt[4], *custpt = NULL;
444 BYTE *tp = NULL;
Evan Staded01c6972007-07-23 20:24:53 -0700445 REAL theta, dsmall, dbig, dx, dy = 0.0;
Evan Stade85b5df42007-07-19 18:22:51 -0700446 INT i, count;
447 LOGBRUSH lb;
Evan Stadeb7053b72007-07-24 17:18:58 -0700448 BOOL customstroke;
Evan Stade5128e5d2007-07-07 13:20:41 -0700449
Evan Stade818051d2007-07-20 17:50:14 -0700450 if((x1 == x2) && (y1 == y2))
Evan Stade5128e5d2007-07-07 13:20:41 -0700451 return;
452
Evan Stade818051d2007-07-20 17:50:14 -0700453 theta = gdiplus_atan2(y2 - y1, x2 - x1);
454
Evan Stadeb7053b72007-07-24 17:18:58 -0700455 customstroke = (cap == LineCapCustom) && custom && (!custom->fill);
456 if(!customstroke){
457 brush = CreateSolidBrush(color);
458 lb.lbStyle = BS_SOLID;
459 lb.lbColor = color;
460 lb.lbHatch = 0;
461 pen = ExtCreatePen(PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT |
462 PS_JOIN_MITER, 1, &lb, 0,
463 NULL);
464 oldbrush = SelectObject(graphics->hdc, brush);
465 oldpen = SelectObject(graphics->hdc, pen);
466 }
Evan Stade5128e5d2007-07-07 13:20:41 -0700467
468 switch(cap){
469 case LineCapFlat:
470 break;
471 case LineCapSquare:
472 case LineCapSquareAnchor:
473 case LineCapDiamondAnchor:
474 size = size * (cap & LineCapNoAnchor ? ANCHOR_WIDTH : 1.0) / 2.0;
475 if(cap == LineCapDiamondAnchor){
476 dsmall = cos(theta + M_PI_2) * size;
477 dbig = sin(theta + M_PI_2) * size;
478 }
479 else{
480 dsmall = cos(theta + M_PI_4) * size;
481 dbig = sin(theta + M_PI_4) * size;
482 }
483
Evan Staded01c6972007-07-23 20:24:53 -0700484 ptf[0].X = x2 - dsmall;
485 ptf[1].X = x2 + dbig;
Evan Stade5128e5d2007-07-07 13:20:41 -0700486
Evan Staded01c6972007-07-23 20:24:53 -0700487 ptf[0].Y = y2 - dbig;
488 ptf[3].Y = y2 + dsmall;
Evan Stade5128e5d2007-07-07 13:20:41 -0700489
Evan Staded01c6972007-07-23 20:24:53 -0700490 ptf[1].Y = y2 - dsmall;
491 ptf[2].Y = y2 + dbig;
Evan Stade5128e5d2007-07-07 13:20:41 -0700492
Evan Staded01c6972007-07-23 20:24:53 -0700493 ptf[3].X = x2 - dbig;
494 ptf[2].X = x2 + dsmall;
Evan Stade5128e5d2007-07-07 13:20:41 -0700495
Evan Staded01c6972007-07-23 20:24:53 -0700496 transform_and_round_points(graphics, pt, ptf, 4);
497 Polygon(graphics->hdc, pt, 4);
Evan Stade5128e5d2007-07-07 13:20:41 -0700498
499 break;
500 case LineCapArrowAnchor:
501 size = size * 4.0 / sqrt(3.0);
502
Evan Stadeea5898c2007-07-19 18:22:47 -0700503 dx = cos(M_PI / 6.0 + theta) * size;
504 dy = sin(M_PI / 6.0 + theta) * size;
Evan Stade5128e5d2007-07-07 13:20:41 -0700505
Evan Staded01c6972007-07-23 20:24:53 -0700506 ptf[0].X = x2 - dx;
507 ptf[0].Y = y2 - dy;
Evan Stade5128e5d2007-07-07 13:20:41 -0700508
Evan Stadeea5898c2007-07-19 18:22:47 -0700509 dx = cos(- M_PI / 6.0 + theta) * size;
510 dy = sin(- M_PI / 6.0 + theta) * size;
Evan Stade5128e5d2007-07-07 13:20:41 -0700511
Evan Staded01c6972007-07-23 20:24:53 -0700512 ptf[1].X = x2 - dx;
513 ptf[1].Y = y2 - dy;
Evan Stade5128e5d2007-07-07 13:20:41 -0700514
Evan Staded01c6972007-07-23 20:24:53 -0700515 ptf[2].X = x2;
516 ptf[2].Y = y2;
Evan Stade5128e5d2007-07-07 13:20:41 -0700517
Evan Staded01c6972007-07-23 20:24:53 -0700518 transform_and_round_points(graphics, pt, ptf, 3);
519 Polygon(graphics->hdc, pt, 3);
Evan Stade5128e5d2007-07-07 13:20:41 -0700520
521 break;
522 case LineCapRoundAnchor:
523 dx = dy = ANCHOR_WIDTH * size / 2.0;
524
Evan Staded01c6972007-07-23 20:24:53 -0700525 ptf[0].X = x2 - dx;
526 ptf[0].Y = y2 - dy;
527 ptf[1].X = x2 + dx;
528 ptf[1].Y = y2 + dy;
Evan Stade5128e5d2007-07-07 13:20:41 -0700529
Evan Staded01c6972007-07-23 20:24:53 -0700530 transform_and_round_points(graphics, pt, ptf, 2);
531 Ellipse(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y);
532
Evan Stade5128e5d2007-07-07 13:20:41 -0700533 break;
534 case LineCapTriangle:
535 size = size / 2.0;
536 dx = cos(M_PI_2 + theta) * size;
537 dy = sin(M_PI_2 + theta) * size;
538
Evan Staded01c6972007-07-23 20:24:53 -0700539 ptf[0].X = x2 - dx;
540 ptf[0].Y = y2 - dy;
541 ptf[1].X = x2 + dx;
542 ptf[1].Y = y2 + dy;
Evan Stade5128e5d2007-07-07 13:20:41 -0700543
Evan Stadeea5898c2007-07-19 18:22:47 -0700544 dx = cos(theta) * size;
545 dy = sin(theta) * size;
Evan Stade5128e5d2007-07-07 13:20:41 -0700546
Evan Staded01c6972007-07-23 20:24:53 -0700547 ptf[2].X = x2 + dx;
548 ptf[2].Y = y2 + dy;
Evan Stade5128e5d2007-07-07 13:20:41 -0700549
Evan Staded01c6972007-07-23 20:24:53 -0700550 transform_and_round_points(graphics, pt, ptf, 3);
551 Polygon(graphics->hdc, pt, 3);
Evan Stade5128e5d2007-07-07 13:20:41 -0700552
553 break;
554 case LineCapRound:
Evan Staded01c6972007-07-23 20:24:53 -0700555 dx = dy = size / 2.0;
556
557 ptf[0].X = x2 - dx;
558 ptf[0].Y = y2 - dy;
559 ptf[1].X = x2 + dx;
560 ptf[1].Y = y2 + dy;
561
Evan Stadeea5898c2007-07-19 18:22:47 -0700562 dx = -cos(M_PI_2 + theta) * size;
563 dy = -sin(M_PI_2 + theta) * size;
Evan Stade5128e5d2007-07-07 13:20:41 -0700564
Evan Staded01c6972007-07-23 20:24:53 -0700565 ptf[2].X = x2 - dx;
566 ptf[2].Y = y2 - dy;
567 ptf[3].X = x2 + dx;
568 ptf[3].Y = y2 + dy;
Evan Stade5128e5d2007-07-07 13:20:41 -0700569
Evan Staded01c6972007-07-23 20:24:53 -0700570 transform_and_round_points(graphics, pt, ptf, 4);
571 Pie(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y, pt[2].x,
572 pt[2].y, pt[3].x, pt[3].y);
Evan Stade5128e5d2007-07-07 13:20:41 -0700573
Evan Stade5128e5d2007-07-07 13:20:41 -0700574 break;
575 case LineCapCustom:
Evan Stade85b5df42007-07-19 18:22:51 -0700576 if(!custom)
577 break;
578
Evan Stade85b5df42007-07-19 18:22:51 -0700579 count = custom->pathdata.Count;
580 custptf = GdipAlloc(count * sizeof(PointF));
581 custpt = GdipAlloc(count * sizeof(POINT));
582 tp = GdipAlloc(count);
583
584 if(!custptf || !custpt || !tp || (GdipCreateMatrix(&matrix) != Ok))
585 goto custend;
586
587 memcpy(custptf, custom->pathdata.Points, count * sizeof(PointF));
588
589 GdipScaleMatrix(matrix, size, size, MatrixOrderAppend);
590 GdipRotateMatrix(matrix, (180.0 / M_PI) * (theta - M_PI_2),
591 MatrixOrderAppend);
592 GdipTranslateMatrix(matrix, x2, y2, MatrixOrderAppend);
593 GdipTransformMatrixPoints(matrix, custptf, count);
594
Evan Staded01c6972007-07-23 20:24:53 -0700595 transform_and_round_points(graphics, custpt, custptf, count);
596
597 for(i = 0; i < count; i++)
Evan Stade85b5df42007-07-19 18:22:51 -0700598 tp[i] = convert_path_point_type(custom->pathdata.Types[i]);
Evan Stade85b5df42007-07-19 18:22:51 -0700599
Evan Stade8c5bcef2007-07-20 17:50:02 -0700600 if(custom->fill){
Evan Staded01c6972007-07-23 20:24:53 -0700601 BeginPath(graphics->hdc);
602 PolyDraw(graphics->hdc, custpt, tp, count);
603 EndPath(graphics->hdc);
604 StrokeAndFillPath(graphics->hdc);
Evan Stade8c5bcef2007-07-20 17:50:02 -0700605 }
606 else
Evan Staded01c6972007-07-23 20:24:53 -0700607 PolyDraw(graphics->hdc, custpt, tp, count);
Evan Stade85b5df42007-07-19 18:22:51 -0700608
609custend:
610 GdipFree(custptf);
611 GdipFree(custpt);
612 GdipFree(tp);
613 GdipDeleteMatrix(matrix);
614 break;
Evan Stade5128e5d2007-07-07 13:20:41 -0700615 default:
616 break;
617 }
618
Evan Stadeb7053b72007-07-24 17:18:58 -0700619 if(!customstroke){
620 SelectObject(graphics->hdc, oldbrush);
621 SelectObject(graphics->hdc, oldpen);
622 DeleteObject(brush);
623 DeleteObject(pen);
624 }
Evan Stade5128e5d2007-07-07 13:20:41 -0700625}
626
627/* Shortens the line by the given percent by changing x2, y2.
Evan Stadef56fa322007-07-20 17:50:07 -0700628 * If percent is > 1.0 then the line will change direction.
629 * If percent is negative it can lengthen the line. */
Evan Stade5128e5d2007-07-07 13:20:41 -0700630static void shorten_line_percent(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL percent)
631{
632 REAL dist, theta, dx, dy;
633
634 if((y1 == *y2) && (x1 == *x2))
635 return;
636
Evan Stadef56fa322007-07-20 17:50:07 -0700637 dist = sqrt((*x2 - x1) * (*x2 - x1) + (*y2 - y1) * (*y2 - y1)) * -percent;
Evan Stade818051d2007-07-20 17:50:14 -0700638 theta = gdiplus_atan2((*y2 - y1), (*x2 - x1));
Evan Stade5128e5d2007-07-07 13:20:41 -0700639 dx = cos(theta) * dist;
640 dy = sin(theta) * dist;
641
Evan Stadef56fa322007-07-20 17:50:07 -0700642 *x2 = *x2 + dx;
643 *y2 = *y2 + dy;
Evan Stade5128e5d2007-07-07 13:20:41 -0700644}
645
646/* Shortens the line by the given amount by changing x2, y2.
Evan Stadef56fa322007-07-20 17:50:07 -0700647 * If the amount is greater than the distance, the line will become length 0.
648 * If the amount is negative, it can lengthen the line. */
Evan Stade5128e5d2007-07-07 13:20:41 -0700649static void shorten_line_amt(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL amt)
650{
651 REAL dx, dy, percent;
652
653 dx = *x2 - x1;
654 dy = *y2 - y1;
655 if(dx == 0 && dy == 0)
656 return;
657
658 percent = amt / sqrt(dx * dx + dy * dy);
659 if(percent >= 1.0){
660 *x2 = x1;
661 *y2 = y1;
662 return;
663 }
664
665 shorten_line_percent(x1, y1, x2, y2, percent);
666}
667
668/* Draws lines between the given points, and if caps is true then draws an endcap
Evan Stade88ab6d32007-08-02 17:53:13 -0700669 * at the end of the last line. */
Evan Staded01c6972007-07-23 20:24:53 -0700670static GpStatus draw_polyline(GpGraphics *graphics, GpPen *pen,
671 GDIPCONST GpPointF * pt, INT count, BOOL caps)
Evan Stade5128e5d2007-07-07 13:20:41 -0700672{
Evan Stadea84b5672007-07-20 17:50:11 -0700673 POINT *pti = NULL;
674 GpPointF *ptcopy = NULL;
Evan Stade6f4ab522007-07-11 18:07:44 -0700675 GpStatus status = GenericError;
676
677 if(!count)
678 return Ok;
679
680 pti = GdipAlloc(count * sizeof(POINT));
Evan Stadea84b5672007-07-20 17:50:11 -0700681 ptcopy = GdipAlloc(count * sizeof(GpPointF));
Evan Stade6f4ab522007-07-11 18:07:44 -0700682
Evan Stadea84b5672007-07-20 17:50:11 -0700683 if(!pti || !ptcopy){
Evan Stade6f4ab522007-07-11 18:07:44 -0700684 status = OutOfMemory;
685 goto end;
686 }
Evan Stade5128e5d2007-07-07 13:20:41 -0700687
Evan Stadec3e8af42007-07-24 17:18:50 -0700688 memcpy(ptcopy, pt, count * sizeof(GpPointF));
Evan Staded01c6972007-07-23 20:24:53 -0700689
Evan Stadec3e8af42007-07-24 17:18:50 -0700690 if(caps){
Evan Stade5128e5d2007-07-07 13:20:41 -0700691 if(pen->endcap == LineCapArrowAnchor)
Evan Stadea84b5672007-07-20 17:50:11 -0700692 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
693 &ptcopy[count-1].X, &ptcopy[count-1].Y, pen->width);
Evan Stadef56fa322007-07-20 17:50:07 -0700694 else if((pen->endcap == LineCapCustom) && pen->customend)
Evan Stadea84b5672007-07-20 17:50:11 -0700695 shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y,
696 &ptcopy[count-1].X, &ptcopy[count-1].Y,
697 pen->customend->inset * pen->width);
698
699 if(pen->startcap == LineCapArrowAnchor)
700 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
701 &ptcopy[0].X, &ptcopy[0].Y, pen->width);
702 else if((pen->startcap == LineCapCustom) && pen->customstart)
703 shorten_line_amt(ptcopy[1].X, ptcopy[1].Y,
704 &ptcopy[0].X, &ptcopy[0].Y,
Evan Stade02887b62007-08-07 18:42:44 -0700705 pen->customstart->inset * pen->width);
Evan Stade5128e5d2007-07-07 13:20:41 -0700706
Evan Staded01c6972007-07-23 20:24:53 -0700707 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
Evan Stadea84b5672007-07-20 17:50:11 -0700708 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X, pt[count - 1].Y);
Evan Staded01c6972007-07-23 20:24:53 -0700709 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
Michael Stefaniuc1f26b142007-12-31 17:29:57 +0100710 pt[1].X, pt[1].Y, pt[0].X, pt[0].Y);
Evan Stade5128e5d2007-07-07 13:20:41 -0700711 }
Evan Stadec3e8af42007-07-24 17:18:50 -0700712
713 transform_and_round_points(graphics, pti, ptcopy, count);
Evan Stade5128e5d2007-07-07 13:20:41 -0700714
Royal Chanc86f2c22008-02-10 12:40:52 -0800715 if(Polyline(graphics->hdc, pti, count))
716 status = Ok;
Evan Stade6f4ab522007-07-11 18:07:44 -0700717
718end:
Evan Stade5128e5d2007-07-07 13:20:41 -0700719 GdipFree(pti);
Evan Stadea84b5672007-07-20 17:50:11 -0700720 GdipFree(ptcopy);
Evan Stade6f4ab522007-07-11 18:07:44 -0700721
722 return status;
Evan Stade5128e5d2007-07-07 13:20:41 -0700723}
724
Evan Stade69a807c2007-07-06 16:13:49 -0700725/* Conducts a linear search to find the bezier points that will back off
726 * the endpoint of the curve by a distance of amt. Linear search works
727 * better than binary in this case because there are multiple solutions,
728 * and binary searches often find a bad one. I don't think this is what
729 * Windows does but short of rendering the bezier without GDI's help it's
Evan Stadea84b5672007-07-20 17:50:11 -0700730 * the best we can do. If rev then work from the start of the passed points
731 * instead of the end. */
732static void shorten_bezier_amt(GpPointF * pt, REAL amt, BOOL rev)
Evan Stade69a807c2007-07-06 16:13:49 -0700733{
734 GpPointF origpt[4];
Evan Stadea84b5672007-07-20 17:50:11 -0700735 REAL percent = 0.00, dx, dy, origx, origy, diff = -1.0;
736 INT i, first = 0, second = 1, third = 2, fourth = 3;
Evan Stade69a807c2007-07-06 16:13:49 -0700737
Evan Stadea84b5672007-07-20 17:50:11 -0700738 if(rev){
739 first = 3;
740 second = 2;
741 third = 1;
742 fourth = 0;
743 }
744
745 origx = pt[fourth].X;
746 origy = pt[fourth].Y;
Evan Stade69a807c2007-07-06 16:13:49 -0700747 memcpy(origpt, pt, sizeof(GpPointF) * 4);
748
749 for(i = 0; (i < MAX_ITERS) && (diff < amt); i++){
750 /* reset bezier points to original values */
751 memcpy(pt, origpt, sizeof(GpPointF) * 4);
752 /* Perform magic on bezier points. Order is important here.*/
Evan Stadea84b5672007-07-20 17:50:11 -0700753 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
754 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
755 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
756 shorten_line_percent(pt[first].X, pt[first].Y, &pt[second].X, &pt[second].Y, percent);
757 shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent);
758 shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent);
Evan Stade69a807c2007-07-06 16:13:49 -0700759
Evan Stadea84b5672007-07-20 17:50:11 -0700760 dx = pt[fourth].X - origx;
761 dy = pt[fourth].Y - origy;
Evan Stade69a807c2007-07-06 16:13:49 -0700762
763 diff = sqrt(dx * dx + dy * dy);
764 percent += 0.0005 * amt;
765 }
766}
767
768/* Draws bezier curves between given points, and if caps is true then draws an
Evan Stade88ab6d32007-08-02 17:53:13 -0700769 * endcap at the end of the last line. */
Evan Staded01c6972007-07-23 20:24:53 -0700770static GpStatus draw_polybezier(GpGraphics *graphics, GpPen *pen,
771 GDIPCONST GpPointF * pt, INT count, BOOL caps)
Evan Stade69a807c2007-07-06 16:13:49 -0700772{
Evan Stade7f0aa3a2007-08-02 17:53:08 -0700773 POINT *pti;
Evan Stadea84b5672007-07-20 17:50:11 -0700774 GpPointF *ptcopy;
Evan Stadefa312172007-07-11 18:07:39 -0700775 GpStatus status = GenericError;
776
777 if(!count)
778 return Ok;
779
780 pti = GdipAlloc(count * sizeof(POINT));
Evan Stadea84b5672007-07-20 17:50:11 -0700781 ptcopy = GdipAlloc(count * sizeof(GpPointF));
Evan Stadefa312172007-07-11 18:07:39 -0700782
Evan Stadea84b5672007-07-20 17:50:11 -0700783 if(!pti || !ptcopy){
Evan Stadefa312172007-07-11 18:07:39 -0700784 status = OutOfMemory;
785 goto end;
786 }
Evan Stade69a807c2007-07-06 16:13:49 -0700787
Evan Stadec3e8af42007-07-24 17:18:50 -0700788 memcpy(ptcopy, pt, count * sizeof(GpPointF));
Evan Staded01c6972007-07-23 20:24:53 -0700789
Evan Stadec3e8af42007-07-24 17:18:50 -0700790 if(caps){
Evan Stade69a807c2007-07-06 16:13:49 -0700791 if(pen->endcap == LineCapArrowAnchor)
Evan Stadea84b5672007-07-20 17:50:11 -0700792 shorten_bezier_amt(&ptcopy[count-4], pen->width, FALSE);
Evan Stade7f0aa3a2007-08-02 17:53:08 -0700793 else if((pen->endcap == LineCapCustom) && pen->customend)
794 shorten_bezier_amt(&ptcopy[count-4], pen->width * pen->customend->inset,
795 FALSE);
Evan Stade69a807c2007-07-06 16:13:49 -0700796
Evan Stadea84b5672007-07-20 17:50:11 -0700797 if(pen->startcap == LineCapArrowAnchor)
798 shorten_bezier_amt(ptcopy, pen->width, TRUE);
Evan Stade7f0aa3a2007-08-02 17:53:08 -0700799 else if((pen->startcap == LineCapCustom) && pen->customstart)
Evan Stade02887b62007-08-07 18:42:44 -0700800 shorten_bezier_amt(ptcopy, pen->width * pen->customstart->inset, TRUE);
Evan Stadea84b5672007-07-20 17:50:11 -0700801
Evan Stade55d70e82007-07-11 18:08:26 -0700802 /* the direction of the line cap is parallel to the direction at the
803 * end of the bezier (which, if it has been shortened, is not the same
804 * as the direction from pt[count-2] to pt[count-1]) */
Evan Staded01c6972007-07-23 20:24:53 -0700805 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
Evan Stadea84b5672007-07-20 17:50:11 -0700806 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
807 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
Evan Stade55d70e82007-07-11 18:08:26 -0700808 pt[count - 1].X, pt[count - 1].Y);
Evan Stadea84b5672007-07-20 17:50:11 -0700809
Evan Staded01c6972007-07-23 20:24:53 -0700810 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
Evan Stadea84b5672007-07-20 17:50:11 -0700811 pt[0].X - (ptcopy[0].X - ptcopy[1].X),
812 pt[0].Y - (ptcopy[0].Y - ptcopy[1].Y), pt[0].X, pt[0].Y);
Evan Stade69a807c2007-07-06 16:13:49 -0700813 }
Evan Stadec3e8af42007-07-24 17:18:50 -0700814
815 transform_and_round_points(graphics, pti, ptcopy, count);
Evan Stade69a807c2007-07-06 16:13:49 -0700816
Evan Staded01c6972007-07-23 20:24:53 -0700817 PolyBezier(graphics->hdc, pti, count);
Evan Stadefa312172007-07-11 18:07:39 -0700818
819 status = Ok;
820
821end:
Evan Stade69a807c2007-07-06 16:13:49 -0700822 GdipFree(pti);
Evan Stadea84b5672007-07-20 17:50:11 -0700823 GdipFree(ptcopy);
Evan Stadefa312172007-07-11 18:07:39 -0700824
825 return status;
Evan Stade69a807c2007-07-06 16:13:49 -0700826}
827
Evan Stade9d5f5682007-07-11 18:07:34 -0700828/* Draws a combination of bezier curves and lines between points. */
Evan Staded01c6972007-07-23 20:24:53 -0700829static GpStatus draw_poly(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF * pt,
Evan Stade9d5f5682007-07-11 18:07:34 -0700830 GDIPCONST BYTE * types, INT count, BOOL caps)
831{
Evan Stade7f0aa3a2007-08-02 17:53:08 -0700832 POINT *pti = GdipAlloc(count * sizeof(POINT));
Evan Stade9d5f5682007-07-11 18:07:34 -0700833 BYTE *tp = GdipAlloc(count);
Evan Stadea84b5672007-07-20 17:50:11 -0700834 GpPointF *ptcopy = GdipAlloc(count * sizeof(GpPointF));
Evan Stadea84b5672007-07-20 17:50:11 -0700835 INT i, j;
Evan Stade9d5f5682007-07-11 18:07:34 -0700836 GpStatus status = GenericError;
837
838 if(!count){
839 status = Ok;
840 goto end;
841 }
Evan Stadea84b5672007-07-20 17:50:11 -0700842 if(!pti || !tp || !ptcopy){
Evan Stade9d5f5682007-07-11 18:07:34 -0700843 status = OutOfMemory;
844 goto end;
845 }
846
Evan Stadea84b5672007-07-20 17:50:11 -0700847 for(i = 1; i < count; i++){
Evan Stade9d5f5682007-07-11 18:07:34 -0700848 if((types[i] & PathPointTypePathTypeMask) == PathPointTypeBezier){
849 if((i + 2 >= count) || !(types[i + 1] & PathPointTypeBezier)
850 || !(types[i + 1] & PathPointTypeBezier)){
851 ERR("Bad bezier points\n");
852 goto end;
853 }
Evan Stade9d5f5682007-07-11 18:07:34 -0700854 i += 2;
855 }
856 }
857
Evan Stadec3e8af42007-07-24 17:18:50 -0700858 memcpy(ptcopy, pt, count * sizeof(GpPointF));
859
Evan Stade9e883472007-07-13 17:51:49 -0700860 /* If we are drawing caps, go through the points and adjust them accordingly,
861 * and draw the caps. */
862 if(caps){
863 switch(types[count - 1] & PathPointTypePathTypeMask){
864 case PathPointTypeBezier:
Evan Stade9e883472007-07-13 17:51:49 -0700865 if(pen->endcap == LineCapArrowAnchor)
Evan Stadea84b5672007-07-20 17:50:11 -0700866 shorten_bezier_amt(&ptcopy[count - 4], pen->width, FALSE);
Evan Stade7f0aa3a2007-08-02 17:53:08 -0700867 else if((pen->endcap == LineCapCustom) && pen->customend)
868 shorten_bezier_amt(&ptcopy[count - 4],
869 pen->width * pen->customend->inset, FALSE);
Evan Stade9e883472007-07-13 17:51:49 -0700870
Evan Staded01c6972007-07-23 20:24:53 -0700871 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
Evan Stadea84b5672007-07-20 17:50:11 -0700872 pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X),
873 pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y),
Evan Stade9e883472007-07-13 17:51:49 -0700874 pt[count - 1].X, pt[count - 1].Y);
875
Evan Stade9e883472007-07-13 17:51:49 -0700876 break;
Evan Stade9e883472007-07-13 17:51:49 -0700877 case PathPointTypeLine:
878 if(pen->endcap == LineCapArrowAnchor)
Evan Stadea84b5672007-07-20 17:50:11 -0700879 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
880 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
Evan Stade9e883472007-07-13 17:51:49 -0700881 pen->width);
Evan Stadef56fa322007-07-20 17:50:07 -0700882 else if((pen->endcap == LineCapCustom) && pen->customend)
Evan Stadea84b5672007-07-20 17:50:11 -0700883 shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y,
884 &ptcopy[count - 1].X, &ptcopy[count - 1].Y,
Evan Stadef56fa322007-07-20 17:50:07 -0700885 pen->customend->inset * pen->width);
Evan Stade9e883472007-07-13 17:51:49 -0700886
Evan Staded01c6972007-07-23 20:24:53 -0700887 draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend,
Evan Stade85b5df42007-07-19 18:22:51 -0700888 pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X,
889 pt[count - 1].Y);
Evan Stade9e883472007-07-13 17:51:49 -0700890
Evan Stade9e883472007-07-13 17:51:49 -0700891 break;
892 default:
893 ERR("Bad path last point\n");
894 goto end;
Evan Stade9d5f5682007-07-11 18:07:34 -0700895 }
Evan Stadea84b5672007-07-20 17:50:11 -0700896
897 /* Find start of points */
898 for(j = 1; j < count && ((types[j] & PathPointTypePathTypeMask)
899 == PathPointTypeStart); j++);
900
901 switch(types[j] & PathPointTypePathTypeMask){
902 case PathPointTypeBezier:
903 if(pen->startcap == LineCapArrowAnchor)
904 shorten_bezier_amt(&ptcopy[j - 1], pen->width, TRUE);
Evan Stade7f0aa3a2007-08-02 17:53:08 -0700905 else if((pen->startcap == LineCapCustom) && pen->customstart)
906 shorten_bezier_amt(&ptcopy[j - 1],
Evan Stade02887b62007-08-07 18:42:44 -0700907 pen->width * pen->customstart->inset, TRUE);
Evan Stadea84b5672007-07-20 17:50:11 -0700908
Evan Staded01c6972007-07-23 20:24:53 -0700909 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
Evan Stadea84b5672007-07-20 17:50:11 -0700910 pt[j - 1].X - (ptcopy[j - 1].X - ptcopy[j].X),
911 pt[j - 1].Y - (ptcopy[j - 1].Y - ptcopy[j].Y),
912 pt[j - 1].X, pt[j - 1].Y);
913
914 break;
915 case PathPointTypeLine:
916 if(pen->startcap == LineCapArrowAnchor)
917 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
918 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
919 pen->width);
920 else if((pen->startcap == LineCapCustom) && pen->customstart)
921 shorten_line_amt(ptcopy[j].X, ptcopy[j].Y,
922 &ptcopy[j - 1].X, &ptcopy[j - 1].Y,
923 pen->customstart->inset * pen->width);
924
Evan Stade629e0132007-07-27 16:07:50 -0700925 draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart,
Evan Stadea84b5672007-07-20 17:50:11 -0700926 pt[j].X, pt[j].Y, pt[j - 1].X,
927 pt[j - 1].Y);
928
929 break;
930 default:
931 ERR("Bad path points\n");
932 goto end;
933 }
Evan Stade9d5f5682007-07-11 18:07:34 -0700934 }
Evan Stadec3e8af42007-07-24 17:18:50 -0700935
936 transform_and_round_points(graphics, pti, ptcopy, count);
Evan Stade9d5f5682007-07-11 18:07:34 -0700937
938 for(i = 0; i < count; i++){
939 tp[i] = convert_path_point_type(types[i]);
940 }
941
Evan Staded01c6972007-07-23 20:24:53 -0700942 PolyDraw(graphics->hdc, pti, tp, count);
Evan Stade9d5f5682007-07-11 18:07:34 -0700943
944 status = Ok;
945
946end:
947 GdipFree(pti);
Evan Stadea84b5672007-07-20 17:50:11 -0700948 GdipFree(ptcopy);
Evan Stade9d5f5682007-07-11 18:07:34 -0700949 GdipFree(tp);
950
951 return status;
952}
953
Vincent Povirk08aa0ca2008-11-24 15:01:47 -0600954GpStatus trace_path(GpGraphics *graphics, GpPath *path)
955{
956 GpStatus result;
957
958 BeginPath(graphics->hdc);
959 result = draw_poly(graphics, NULL, path->pathdata.Points,
960 path->pathdata.Types, path->pathdata.Count, FALSE);
961 EndPath(graphics->hdc);
962 return result;
963}
964
Andrew Eikum632aef32009-07-05 17:04:20 -0500965typedef struct _GraphicsContainerItem {
966 struct list entry;
967 GraphicsContainer contid;
968
969 SmoothingMode smoothing;
970 CompositingQuality compqual;
971 InterpolationMode interpolation;
972 CompositingMode compmode;
973 TextRenderingHint texthint;
974 REAL scale;
975 GpUnit unit;
976 PixelOffsetMode pixeloffset;
977 UINT textcontrast;
978 GpMatrix* worldtrans;
979 GpRegion* clip;
980} GraphicsContainerItem;
981
982static GpStatus init_container(GraphicsContainerItem** container,
983 GDIPCONST GpGraphics* graphics){
984 GpStatus sts;
985
986 *container = GdipAlloc(sizeof(GraphicsContainerItem));
987 if(!(*container))
988 return OutOfMemory;
989
990 (*container)->contid = graphics->contid + 1;
991
992 (*container)->smoothing = graphics->smoothing;
993 (*container)->compqual = graphics->compqual;
994 (*container)->interpolation = graphics->interpolation;
995 (*container)->compmode = graphics->compmode;
996 (*container)->texthint = graphics->texthint;
997 (*container)->scale = graphics->scale;
998 (*container)->unit = graphics->unit;
999 (*container)->textcontrast = graphics->textcontrast;
1000 (*container)->pixeloffset = graphics->pixeloffset;
1001
1002 sts = GdipCloneMatrix(graphics->worldtrans, &(*container)->worldtrans);
1003 if(sts != Ok){
1004 GdipFree(*container);
1005 *container = NULL;
1006 return sts;
1007 }
1008
1009 sts = GdipCloneRegion(graphics->clip, &(*container)->clip);
1010 if(sts != Ok){
1011 GdipDeleteMatrix((*container)->worldtrans);
1012 GdipFree(*container);
1013 *container = NULL;
1014 return sts;
1015 }
1016
1017 return Ok;
1018}
1019
1020static void delete_container(GraphicsContainerItem* container){
1021 GdipDeleteMatrix(container->worldtrans);
1022 GdipDeleteRegion(container->clip);
1023 GdipFree(container);
1024}
1025
1026static GpStatus restore_container(GpGraphics* graphics,
1027 GDIPCONST GraphicsContainerItem* container){
1028 GpStatus sts;
1029 GpMatrix *newTrans;
1030 GpRegion *newClip;
1031
1032 sts = GdipCloneMatrix(container->worldtrans, &newTrans);
1033 if(sts != Ok)
1034 return sts;
1035
1036 sts = GdipCloneRegion(container->clip, &newClip);
1037 if(sts != Ok){
1038 GdipDeleteMatrix(newTrans);
1039 return sts;
1040 }
1041
1042 GdipDeleteMatrix(graphics->worldtrans);
1043 graphics->worldtrans = newTrans;
1044
1045 GdipDeleteRegion(graphics->clip);
1046 graphics->clip = newClip;
1047
1048 graphics->contid = container->contid - 1;
1049
1050 graphics->smoothing = container->smoothing;
1051 graphics->compqual = container->compqual;
1052 graphics->interpolation = container->interpolation;
1053 graphics->compmode = container->compmode;
1054 graphics->texthint = container->texthint;
1055 graphics->scale = container->scale;
1056 graphics->unit = container->unit;
1057 graphics->textcontrast = container->textcontrast;
1058 graphics->pixeloffset = container->pixeloffset;
1059
1060 return Ok;
1061}
1062
Andrew Eikumfdf48f12009-08-12 15:36:54 -05001063static GpStatus get_graphics_bounds(GpGraphics* graphics, GpRectF* rect)
1064{
1065 RECT wnd_rect;
1066
1067 if(graphics->hwnd) {
1068 if(!GetClientRect(graphics->hwnd, &wnd_rect))
1069 return GenericError;
1070
1071 rect->X = wnd_rect.left;
1072 rect->Y = wnd_rect.top;
1073 rect->Width = wnd_rect.right - wnd_rect.left;
1074 rect->Height = wnd_rect.bottom - wnd_rect.top;
1075 }else{
1076 rect->X = 0;
1077 rect->Y = 0;
1078 rect->Width = GetDeviceCaps(graphics->hdc, HORZRES);
1079 rect->Height = GetDeviceCaps(graphics->hdc, VERTRES);
1080 }
1081
1082 return Ok;
1083}
1084
Andrew Eikum39f6f492009-08-26 18:03:08 -05001085/* on success, rgn will contain the region of the graphics object which
1086 * is visible after clipping has been applied */
1087static GpStatus get_visible_clip_region(GpGraphics *graphics, GpRegion *rgn)
1088{
1089 GpStatus stat;
1090 GpRectF rectf;
1091 GpRegion* tmp;
1092
1093 if((stat = get_graphics_bounds(graphics, &rectf)) != Ok)
1094 return stat;
1095
1096 if((stat = GdipCreateRegion(&tmp)) != Ok)
1097 return stat;
1098
1099 if((stat = GdipCombineRegionRect(tmp, &rectf, CombineModeReplace)) != Ok)
1100 goto end;
1101
1102 if((stat = GdipCombineRegionRegion(tmp, graphics->clip, CombineModeIntersect)) != Ok)
1103 goto end;
1104
1105 stat = GdipCombineRegionRegion(rgn, tmp, CombineModeReplace);
1106
1107end:
1108 GdipDeleteRegion(tmp);
1109 return stat;
1110}
1111
Evan Staded50be492007-06-11 11:54:03 -07001112GpStatus WINGDIPAPI GdipCreateFromHDC(HDC hdc, GpGraphics **graphics)
1113{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001114 TRACE("(%p, %p)\n", hdc, graphics);
1115
Stefan Leichterbfffb4f2007-12-23 10:56:32 +01001116 return GdipCreateFromHDC2(hdc, NULL, graphics);
1117}
1118
1119GpStatus WINGDIPAPI GdipCreateFromHDC2(HDC hdc, HANDLE hDevice, GpGraphics **graphics)
1120{
Evan Stadef30732f2007-07-24 17:18:47 -07001121 GpStatus retval;
1122
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001123 TRACE("(%p, %p, %p)\n", hdc, hDevice, graphics);
1124
Stefan Leichterbfffb4f2007-12-23 10:56:32 +01001125 if(hDevice != NULL) {
Ken Sharpe3f48592009-06-09 21:48:05 +01001126 FIXME("Don't know how to handle parameter hDevice\n");
Stefan Leichterbfffb4f2007-12-23 10:56:32 +01001127 return NotImplemented;
1128 }
1129
Evan Staded50be492007-06-11 11:54:03 -07001130 if(hdc == NULL)
1131 return OutOfMemory;
1132
1133 if(graphics == NULL)
1134 return InvalidParameter;
1135
Evan Stade6490dad2007-06-22 19:27:02 -07001136 *graphics = GdipAlloc(sizeof(GpGraphics));
1137 if(!*graphics) return OutOfMemory;
1138
Evan Stadef30732f2007-07-24 17:18:47 -07001139 if((retval = GdipCreateMatrix(&(*graphics)->worldtrans)) != Ok){
1140 GdipFree(*graphics);
1141 return retval;
1142 }
1143
Nikolay Sivovef50aa32008-08-27 02:03:27 +04001144 if((retval = GdipCreateRegion(&(*graphics)->clip)) != Ok){
1145 GdipFree((*graphics)->worldtrans);
1146 GdipFree(*graphics);
1147 return retval;
1148 }
1149
Evan Staded50be492007-06-11 11:54:03 -07001150 (*graphics)->hdc = hdc;
Nikolay Sivov7258dea2008-09-05 16:51:25 +04001151 (*graphics)->hwnd = WindowFromDC(hdc);
Vincent Povirk8a3d9ff2009-04-24 13:29:56 -05001152 (*graphics)->owndc = FALSE;
Evan Stade53e17d22007-07-13 17:51:13 -07001153 (*graphics)->smoothing = SmoothingModeDefault;
Evan Stade60cad232007-07-13 17:51:25 -07001154 (*graphics)->compqual = CompositingQualityDefault;
Evan Stadea87ce7a2007-07-13 17:51:29 -07001155 (*graphics)->interpolation = InterpolationModeDefault;
Evan Staded6bd866d2007-07-13 17:51:33 -07001156 (*graphics)->pixeloffset = PixelOffsetModeDefault;
Evan Stadee807eb92007-08-13 18:34:27 -07001157 (*graphics)->compmode = CompositingModeSourceOver;
Evan Stade10b575b2007-07-23 20:24:41 -07001158 (*graphics)->unit = UnitDisplay;
Evan Stade81621392007-07-24 17:18:39 -07001159 (*graphics)->scale = 1.0;
Nikolay Sivov366ae1e2008-08-24 14:45:18 +04001160 (*graphics)->busy = FALSE;
Nikolay Sivov56173d42008-11-09 14:32:26 +03001161 (*graphics)->textcontrast = 4;
Andrew Eikum632aef32009-07-05 17:04:20 -05001162 list_init(&(*graphics)->containers);
1163 (*graphics)->contid = 0;
Evan Staded50be492007-06-11 11:54:03 -07001164
Vincent Povirkf8ca3722009-12-18 15:09:45 -06001165 TRACE("<-- %p\n", *graphics);
1166
Evan Staded50be492007-06-11 11:54:03 -07001167 return Ok;
1168}
1169
1170GpStatus WINGDIPAPI GdipCreateFromHWND(HWND hwnd, GpGraphics **graphics)
1171{
1172 GpStatus ret;
Vincent Povirkc3d23952009-04-24 13:34:55 -05001173 HDC hdc;
Evan Staded50be492007-06-11 11:54:03 -07001174
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001175 TRACE("(%p, %p)\n", hwnd, graphics);
1176
Vincent Povirkc3d23952009-04-24 13:34:55 -05001177 hdc = GetDC(hwnd);
1178
1179 if((ret = GdipCreateFromHDC(hdc, graphics)) != Ok)
1180 {
1181 ReleaseDC(hwnd, hdc);
Evan Staded50be492007-06-11 11:54:03 -07001182 return ret;
Vincent Povirkc3d23952009-04-24 13:34:55 -05001183 }
Evan Staded50be492007-06-11 11:54:03 -07001184
1185 (*graphics)->hwnd = hwnd;
Vincent Povirk8a3d9ff2009-04-24 13:29:56 -05001186 (*graphics)->owndc = TRUE;
Evan Staded50be492007-06-11 11:54:03 -07001187
1188 return Ok;
1189}
1190
Nikolay Sivoveb18ce92008-05-09 16:40:41 +04001191/* FIXME: no icm handling */
1192GpStatus WINGDIPAPI GdipCreateFromHWNDICM(HWND hwnd, GpGraphics **graphics)
1193{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001194 TRACE("(%p, %p)\n", hwnd, graphics);
1195
Nikolay Sivoveb18ce92008-05-09 16:40:41 +04001196 return GdipCreateFromHWND(hwnd, graphics);
1197}
1198
Evan Stade5cc8c102007-07-24 17:19:05 -07001199GpStatus WINGDIPAPI GdipCreateMetafileFromEmf(HENHMETAFILE hemf, BOOL delete,
1200 GpMetafile **metafile)
1201{
1202 static int calls;
1203
1204 if(!hemf || !metafile)
1205 return InvalidParameter;
1206
1207 if(!(calls++))
1208 FIXME("not implemented\n");
1209
1210 return NotImplemented;
1211}
1212
Evan Stade021997f2007-07-24 17:19:15 -07001213GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
1214 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
1215{
Evan Stadecfef9812007-07-31 19:15:12 -07001216 IStream *stream = NULL;
Evan Stade50799cf2007-07-30 19:10:03 -07001217 UINT read;
1218 BYTE* copy;
Evan Stade50799cf2007-07-30 19:10:03 -07001219 HENHMETAFILE hemf;
Vincent Povirk01b32952009-12-31 16:15:37 -06001220 GpStatus retval = Ok;
Evan Stade021997f2007-07-24 17:19:15 -07001221
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001222 TRACE("(%p, %d, %p, %p)\n", hwmf, delete, placeable, metafile);
1223
Evan Stade021997f2007-07-24 17:19:15 -07001224 if(!hwmf || !metafile || !placeable)
1225 return InvalidParameter;
Evan Stade7d03a412007-08-07 18:42:16 -07001226
1227 *metafile = NULL;
Evan Stade50799cf2007-07-30 19:10:03 -07001228 read = GetMetaFileBitsEx(hwmf, 0, NULL);
1229 if(!read)
1230 return GenericError;
1231 copy = GdipAlloc(read);
1232 GetMetaFileBitsEx(hwmf, read, copy);
1233
Evan Stade192e1112007-08-01 17:55:33 -07001234 hemf = SetWinMetaFileBits(read, copy, NULL, NULL);
Evan Stade50799cf2007-07-30 19:10:03 -07001235 GdipFree(copy);
1236
1237 read = GetEnhMetaFileBits(hemf, 0, NULL);
1238 copy = GdipAlloc(read);
1239 GetEnhMetaFileBits(hemf, read, copy);
1240 DeleteEnhMetaFile(hemf);
1241
1242 if(CreateStreamOnHGlobal(copy, TRUE, &stream) != S_OK){
1243 ERR("could not make stream\n");
Evan Stade7d03a412007-08-07 18:42:16 -07001244 GdipFree(copy);
Vincent Povirk01b32952009-12-31 16:15:37 -06001245 retval = GenericError;
Evan Stade7d03a412007-08-07 18:42:16 -07001246 goto err;
Evan Stade50799cf2007-07-30 19:10:03 -07001247 }
1248
1249 *metafile = GdipAlloc(sizeof(GpMetafile));
Evan Stadecfef9812007-07-31 19:15:12 -07001250 if(!*metafile){
1251 retval = OutOfMemory;
Evan Stade7d03a412007-08-07 18:42:16 -07001252 goto err;
Evan Stadecfef9812007-07-31 19:15:12 -07001253 }
Evan Stade50799cf2007-07-30 19:10:03 -07001254
1255 if(OleLoadPicture(stream, 0, FALSE, &IID_IPicture,
Evan Stade7d03a412007-08-07 18:42:16 -07001256 (LPVOID*) &((*metafile)->image.picture)) != S_OK)
Vincent Povirk01b32952009-12-31 16:15:37 -06001257 {
1258 retval = GenericError;
Evan Stade7d03a412007-08-07 18:42:16 -07001259 goto err;
Vincent Povirk01b32952009-12-31 16:15:37 -06001260 }
Evan Stade7d03a412007-08-07 18:42:16 -07001261
Evan Stade50799cf2007-07-30 19:10:03 -07001262
1263 (*metafile)->image.type = ImageTypeMetafile;
Vincent Povirk0595fc52009-09-14 11:23:45 -05001264 memcpy(&(*metafile)->image.format, &ImageFormatWMF, sizeof(GUID));
Vincent Povirk39dc81c2009-12-11 16:51:46 -06001265 (*metafile)->image.palette_flags = 0;
1266 (*metafile)->image.palette_count = 0;
1267 (*metafile)->image.palette_size = 0;
1268 (*metafile)->image.palette_entries = NULL;
Vincent Povirk1aea88c2009-12-26 20:46:55 -05001269 (*metafile)->image.xres = (REAL)placeable->Inch;
1270 (*metafile)->image.yres = (REAL)placeable->Inch;
Evan Stade586e63e2007-07-30 19:09:57 -07001271 (*metafile)->bounds.X = ((REAL) placeable->BoundingBox.Left) / ((REAL) placeable->Inch);
Vincent Povirkc38d3342009-12-26 20:07:37 -05001272 (*metafile)->bounds.Y = ((REAL) placeable->BoundingBox.Top) / ((REAL) placeable->Inch);
Evan Stade586e63e2007-07-30 19:09:57 -07001273 (*metafile)->bounds.Width = ((REAL) (placeable->BoundingBox.Right
1274 - placeable->BoundingBox.Left)) / ((REAL) placeable->Inch);
1275 (*metafile)->bounds.Height = ((REAL) (placeable->BoundingBox.Bottom
1276 - placeable->BoundingBox.Top)) / ((REAL) placeable->Inch);
1277 (*metafile)->unit = UnitInch;
1278
Evan Stade50799cf2007-07-30 19:10:03 -07001279 if(delete)
1280 DeleteMetaFile(hwmf);
1281
Vincent Povirkf8ca3722009-12-18 15:09:45 -06001282 TRACE("<-- %p\n", *metafile);
1283
Evan Stade7d03a412007-08-07 18:42:16 -07001284err:
Vincent Povirk01b32952009-12-31 16:15:37 -06001285 if (retval != Ok)
1286 GdipFree(*metafile);
Evan Stadecfef9812007-07-31 19:15:12 -07001287 IStream_Release(stream);
Evan Stadecfef9812007-07-31 19:15:12 -07001288 return retval;
Evan Stade021997f2007-07-24 17:19:15 -07001289}
1290
Huw Davieseb9d7f52008-07-10 15:30:30 +01001291GpStatus WINGDIPAPI GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR *file,
1292 GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
1293{
1294 HMETAFILE hmf = GetMetaFileW(file);
1295
1296 TRACE("(%s, %p, %p)\n", debugstr_w(file), placeable, metafile);
1297
1298 if(!hmf) return InvalidParameter;
1299
1300 return GdipCreateMetafileFromWmf(hmf, TRUE, placeable, metafile);
1301}
1302
Andrew Eikumc02e75c2009-06-01 20:02:11 -05001303GpStatus WINGDIPAPI GdipCreateMetafileFromFile(GDIPCONST WCHAR *file,
1304 GpMetafile **metafile)
1305{
1306 FIXME("(%p, %p): stub\n", file, metafile);
1307 return NotImplemented;
1308}
1309
1310GpStatus WINGDIPAPI GdipCreateMetafileFromStream(IStream *stream,
1311 GpMetafile **metafile)
1312{
1313 FIXME("(%p, %p): stub\n", stream, metafile);
1314 return NotImplemented;
1315}
1316
Evan Stade3ea77f52007-08-07 18:42:00 -07001317GpStatus WINGDIPAPI GdipCreateStreamOnFile(GDIPCONST WCHAR * filename,
1318 UINT access, IStream **stream)
1319{
1320 DWORD dwMode;
1321 HRESULT ret;
1322
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001323 TRACE("(%s, %u, %p)\n", debugstr_w(filename), access, stream);
1324
Evan Stade3ea77f52007-08-07 18:42:00 -07001325 if(!stream || !filename)
1326 return InvalidParameter;
1327
1328 if(access & GENERIC_WRITE)
1329 dwMode = STGM_SHARE_DENY_WRITE | STGM_WRITE | STGM_CREATE;
1330 else if(access & GENERIC_READ)
1331 dwMode = STGM_SHARE_DENY_WRITE | STGM_READ | STGM_FAILIFTHERE;
1332 else
1333 return InvalidParameter;
1334
1335 ret = SHCreateStreamOnFileW(filename, dwMode, stream);
1336
1337 return hresult_to_status(ret);
1338}
1339
Evan Staded50be492007-06-11 11:54:03 -07001340GpStatus WINGDIPAPI GdipDeleteGraphics(GpGraphics *graphics)
1341{
Andrew Eikum632aef32009-07-05 17:04:20 -05001342 GraphicsContainerItem *cont, *next;
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001343 TRACE("(%p)\n", graphics);
1344
Evan Staded50be492007-06-11 11:54:03 -07001345 if(!graphics) return InvalidParameter;
Nikolay Sivov960de092008-08-26 01:58:33 +04001346 if(graphics->busy) return ObjectBusy;
1347
Vincent Povirk8a3d9ff2009-04-24 13:29:56 -05001348 if(graphics->owndc)
Evan Staded50be492007-06-11 11:54:03 -07001349 ReleaseDC(graphics->hwnd, graphics->hdc);
1350
Andrew Eikum632aef32009-07-05 17:04:20 -05001351 LIST_FOR_EACH_ENTRY_SAFE(cont, next, &graphics->containers, GraphicsContainerItem, entry){
1352 list_remove(&cont->entry);
1353 delete_container(cont);
1354 }
1355
Nikolay Sivovef50aa32008-08-27 02:03:27 +04001356 GdipDeleteRegion(graphics->clip);
Evan Stadef30732f2007-07-24 17:18:47 -07001357 GdipDeleteMatrix(graphics->worldtrans);
Nikolay Sivov6e37ec62008-08-24 14:45:05 +04001358 GdipFree(graphics);
Evan Staded50be492007-06-11 11:54:03 -07001359
1360 return Ok;
1361}
Evan Stade2689b182007-06-12 10:44:31 -07001362
Evan Stadec42f8792007-06-19 19:31:19 -07001363GpStatus WINGDIPAPI GdipDrawArc(GpGraphics *graphics, GpPen *pen, REAL x,
1364 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
1365{
Evan Stade40f22732007-07-11 18:07:09 -07001366 INT save_state, num_pts;
1367 GpPointF points[MAX_ARC_PTS];
Evan Stadefa312172007-07-11 18:07:39 -07001368 GpStatus retval;
Evan Stadec42f8792007-06-19 19:31:19 -07001369
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001370 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
1371 width, height, startAngle, sweepAngle);
1372
Royal Chanea928722008-02-25 21:06:27 -08001373 if(!graphics || !pen || width <= 0 || height <= 0)
Evan Stadec42f8792007-06-19 19:31:19 -07001374 return InvalidParameter;
1375
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04001376 if(graphics->busy)
1377 return ObjectBusy;
1378
Evan Stade40f22732007-07-11 18:07:09 -07001379 num_pts = arc2polybezier(points, x, y, width, height, startAngle, sweepAngle);
Evan Stadec42f8792007-06-19 19:31:19 -07001380
Evan Stade4c424b32007-07-24 17:18:54 -07001381 save_state = prepare_dc(graphics, pen);
Evan Stadec42f8792007-06-19 19:31:19 -07001382
Evan Staded01c6972007-07-23 20:24:53 -07001383 retval = draw_polybezier(graphics, pen, points, num_pts, TRUE);
Evan Stadec42f8792007-06-19 19:31:19 -07001384
Evan Stade4c424b32007-07-24 17:18:54 -07001385 restore_dc(graphics, save_state);
Evan Stadec42f8792007-06-19 19:31:19 -07001386
Evan Stadefa312172007-07-11 18:07:39 -07001387 return retval;
Evan Stadec42f8792007-06-19 19:31:19 -07001388}
1389
Royal Chanfc313032008-02-25 21:02:59 -08001390GpStatus WINGDIPAPI GdipDrawArcI(GpGraphics *graphics, GpPen *pen, INT x,
1391 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
1392{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001393 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
1394 width, height, startAngle, sweepAngle);
1395
Nikolay Sivova77dc342008-05-08 00:39:05 +04001396 return GdipDrawArc(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
Royal Chanfc313032008-02-25 21:02:59 -08001397}
1398
Evan Stade8b9f5342007-06-15 21:27:38 -07001399GpStatus WINGDIPAPI GdipDrawBezier(GpGraphics *graphics, GpPen *pen, REAL x1,
1400 REAL y1, REAL x2, REAL y2, REAL x3, REAL y3, REAL x4, REAL y4)
1401{
Evan Stade69a807c2007-07-06 16:13:49 -07001402 INT save_state;
1403 GpPointF pt[4];
Evan Stadefa312172007-07-11 18:07:39 -07001404 GpStatus retval;
Evan Stade8b9f5342007-06-15 21:27:38 -07001405
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001406 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1,
1407 x2, y2, x3, y3, x4, y4);
1408
Evan Stade8b9f5342007-06-15 21:27:38 -07001409 if(!graphics || !pen)
1410 return InvalidParameter;
1411
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04001412 if(graphics->busy)
1413 return ObjectBusy;
1414
Evan Stade69a807c2007-07-06 16:13:49 -07001415 pt[0].X = x1;
1416 pt[0].Y = y1;
1417 pt[1].X = x2;
1418 pt[1].Y = y2;
1419 pt[2].X = x3;
1420 pt[2].Y = y3;
1421 pt[3].X = x4;
1422 pt[3].Y = y4;
Evan Stade8b9f5342007-06-15 21:27:38 -07001423
Evan Stade4c424b32007-07-24 17:18:54 -07001424 save_state = prepare_dc(graphics, pen);
Evan Stade8b9f5342007-06-15 21:27:38 -07001425
Evan Staded01c6972007-07-23 20:24:53 -07001426 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
Evan Stade69a807c2007-07-06 16:13:49 -07001427
Evan Stade4c424b32007-07-24 17:18:54 -07001428 restore_dc(graphics, save_state);
Evan Stade8b9f5342007-06-15 21:27:38 -07001429
Evan Stadefa312172007-07-11 18:07:39 -07001430 return retval;
Evan Stade8b9f5342007-06-15 21:27:38 -07001431}
1432
Royal Chanda161a52008-02-25 21:00:43 -08001433GpStatus WINGDIPAPI GdipDrawBezierI(GpGraphics *graphics, GpPen *pen, INT x1,
1434 INT y1, INT x2, INT y2, INT x3, INT y3, INT x4, INT y4)
1435{
1436 INT save_state;
1437 GpPointF pt[4];
1438 GpStatus retval;
1439
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001440 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d)\n", graphics, pen, x1, y1,
1441 x2, y2, x3, y3, x4, y4);
1442
Royal Chanda161a52008-02-25 21:00:43 -08001443 if(!graphics || !pen)
1444 return InvalidParameter;
1445
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04001446 if(graphics->busy)
1447 return ObjectBusy;
1448
Royal Chanda161a52008-02-25 21:00:43 -08001449 pt[0].X = x1;
1450 pt[0].Y = y1;
1451 pt[1].X = x2;
1452 pt[1].Y = y2;
1453 pt[2].X = x3;
1454 pt[2].Y = y3;
1455 pt[3].X = x4;
1456 pt[3].Y = y4;
1457
1458 save_state = prepare_dc(graphics, pen);
1459
1460 retval = draw_polybezier(graphics, pen, pt, 4, TRUE);
1461
1462 restore_dc(graphics, save_state);
1463
1464 return retval;
1465}
1466
Nikolay Sivovd0204742008-07-03 03:04:50 +04001467GpStatus WINGDIPAPI GdipDrawBeziers(GpGraphics *graphics, GpPen *pen,
1468 GDIPCONST GpPointF *points, INT count)
1469{
1470 INT i;
1471 GpStatus ret;
1472
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001473 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1474
Nikolay Sivovd0204742008-07-03 03:04:50 +04001475 if(!graphics || !pen || !points || (count <= 0))
1476 return InvalidParameter;
1477
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04001478 if(graphics->busy)
1479 return ObjectBusy;
1480
Nikolay Sivovd0204742008-07-03 03:04:50 +04001481 for(i = 0; i < floor(count / 4); i++){
1482 ret = GdipDrawBezier(graphics, pen,
1483 points[4*i].X, points[4*i].Y,
1484 points[4*i + 1].X, points[4*i + 1].Y,
1485 points[4*i + 2].X, points[4*i + 2].Y,
1486 points[4*i + 3].X, points[4*i + 3].Y);
1487 if(ret != Ok)
1488 return ret;
1489 }
1490
1491 return Ok;
1492}
1493
1494GpStatus WINGDIPAPI GdipDrawBeziersI(GpGraphics *graphics, GpPen *pen,
1495 GDIPCONST GpPoint *points, INT count)
1496{
1497 GpPointF *pts;
1498 GpStatus ret;
1499 INT i;
1500
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001501 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1502
Nikolay Sivovd0204742008-07-03 03:04:50 +04001503 if(!graphics || !pen || !points || (count <= 0))
1504 return InvalidParameter;
1505
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04001506 if(graphics->busy)
1507 return ObjectBusy;
1508
Nikolay Sivovd0204742008-07-03 03:04:50 +04001509 pts = GdipAlloc(sizeof(GpPointF) * count);
1510 if(!pts)
1511 return OutOfMemory;
1512
1513 for(i = 0; i < count; i++){
1514 pts[i].X = (REAL)points[i].X;
1515 pts[i].Y = (REAL)points[i].Y;
1516 }
1517
1518 ret = GdipDrawBeziers(graphics,pen,pts,count);
1519
1520 GdipFree(pts);
1521
1522 return ret;
1523}
1524
Nikolay Sivov55916bb2008-07-09 00:39:31 +04001525GpStatus WINGDIPAPI GdipDrawClosedCurve(GpGraphics *graphics, GpPen *pen,
1526 GDIPCONST GpPointF *points, INT count)
1527{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001528 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1529
Nikolay Sivov55916bb2008-07-09 00:39:31 +04001530 return GdipDrawClosedCurve2(graphics, pen, points, count, 1.0);
1531}
1532
1533GpStatus WINGDIPAPI GdipDrawClosedCurveI(GpGraphics *graphics, GpPen *pen,
1534 GDIPCONST GpPoint *points, INT count)
1535{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001536 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1537
Nikolay Sivov55916bb2008-07-09 00:39:31 +04001538 return GdipDrawClosedCurve2I(graphics, pen, points, count, 1.0);
1539}
1540
Nikolay Sivov8b8864b2008-07-09 00:39:19 +04001541GpStatus WINGDIPAPI GdipDrawClosedCurve2(GpGraphics *graphics, GpPen *pen,
1542 GDIPCONST GpPointF *points, INT count, REAL tension)
1543{
Nikolay Sivov9c60a572008-09-03 19:57:09 +04001544 GpPath *path;
Nikolay Sivov8b8864b2008-07-09 00:39:19 +04001545 GpStatus stat;
1546
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001547 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
1548
Nikolay Sivov8b8864b2008-07-09 00:39:19 +04001549 if(!graphics || !pen || !points || count <= 0)
1550 return InvalidParameter;
1551
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04001552 if(graphics->busy)
1553 return ObjectBusy;
1554
Nikolay Sivov9c60a572008-09-03 19:57:09 +04001555 if((stat = GdipCreatePath(FillModeAlternate, &path)) != Ok)
1556 return stat;
Nikolay Sivov8b8864b2008-07-09 00:39:19 +04001557
Nikolay Sivov9c60a572008-09-03 19:57:09 +04001558 stat = GdipAddPathClosedCurve2(path, points, count, tension);
1559 if(stat != Ok){
1560 GdipDeletePath(path);
1561 return stat;
1562 }
Nikolay Sivov8b8864b2008-07-09 00:39:19 +04001563
Nikolay Sivov9c60a572008-09-03 19:57:09 +04001564 stat = GdipDrawPath(graphics, pen, path);
Nikolay Sivov8b8864b2008-07-09 00:39:19 +04001565
Nikolay Sivov9c60a572008-09-03 19:57:09 +04001566 GdipDeletePath(path);
Nikolay Sivov8b8864b2008-07-09 00:39:19 +04001567
1568 return stat;
1569}
1570
1571GpStatus WINGDIPAPI GdipDrawClosedCurve2I(GpGraphics *graphics, GpPen *pen,
1572 GDIPCONST GpPoint *points, INT count, REAL tension)
1573{
1574 GpPointF *ptf;
1575 GpStatus stat;
1576 INT i;
1577
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001578 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
1579
Nikolay Sivov8b8864b2008-07-09 00:39:19 +04001580 if(!points || count <= 0)
1581 return InvalidParameter;
1582
1583 ptf = GdipAlloc(sizeof(GpPointF)*count);
1584 if(!ptf)
1585 return OutOfMemory;
1586
1587 for(i = 0; i < count; i++){
1588 ptf[i].X = (REAL)points[i].X;
1589 ptf[i].Y = (REAL)points[i].Y;
1590 }
1591
1592 stat = GdipDrawClosedCurve2(graphics, pen, ptf, count, tension);
1593
1594 GdipFree(ptf);
1595
1596 return stat;
1597}
1598
Nikolay Sivovfe1782e2008-04-29 00:09:55 +04001599GpStatus WINGDIPAPI GdipDrawCurve(GpGraphics *graphics, GpPen *pen,
1600 GDIPCONST GpPointF *points, INT count)
1601{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001602 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1603
Nikolay Sivovfe1782e2008-04-29 00:09:55 +04001604 return GdipDrawCurve2(graphics,pen,points,count,1.0);
1605}
1606
1607GpStatus WINGDIPAPI GdipDrawCurveI(GpGraphics *graphics, GpPen *pen,
1608 GDIPCONST GpPoint *points, INT count)
1609{
1610 GpPointF *pointsF;
1611 GpStatus ret;
1612 INT i;
1613
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001614 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
1615
Andrew Eikumfe55f0d2009-06-28 13:33:52 -05001616 if(!points)
Nikolay Sivovfe1782e2008-04-29 00:09:55 +04001617 return InvalidParameter;
1618
1619 pointsF = GdipAlloc(sizeof(GpPointF)*count);
1620 if(!pointsF)
1621 return OutOfMemory;
1622
1623 for(i = 0; i < count; i++){
1624 pointsF[i].X = (REAL)points[i].X;
1625 pointsF[i].Y = (REAL)points[i].Y;
1626 }
1627
1628 ret = GdipDrawCurve(graphics,pen,pointsF,count);
1629 GdipFree(pointsF);
1630
1631 return ret;
1632}
1633
Evan Stade5c8b83c2007-06-19 19:31:28 -07001634/* Approximates cardinal spline with Bezier curves. */
1635GpStatus WINGDIPAPI GdipDrawCurve2(GpGraphics *graphics, GpPen *pen,
1636 GDIPCONST GpPointF *points, INT count, REAL tension)
1637{
Evan Stade5c8b83c2007-06-19 19:31:28 -07001638 /* PolyBezier expects count*3-2 points. */
Evan Stadeb72dc0d2007-07-09 20:54:23 -07001639 INT i, len_pt = count*3-2, save_state;
1640 GpPointF *pt;
Evan Stade5c8b83c2007-06-19 19:31:28 -07001641 REAL x1, x2, y1, y2;
Evan Stadefa312172007-07-11 18:07:39 -07001642 GpStatus retval;
Evan Stade5c8b83c2007-06-19 19:31:28 -07001643
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001644 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
1645
Evan Stade5c8b83c2007-06-19 19:31:28 -07001646 if(!graphics || !pen)
1647 return InvalidParameter;
1648
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04001649 if(graphics->busy)
1650 return ObjectBusy;
1651
Andrew Eikum119e9af2009-06-06 12:02:29 -05001652 if(count < 2)
1653 return InvalidParameter;
1654
Evan Stadeb72dc0d2007-07-09 20:54:23 -07001655 pt = GdipAlloc(len_pt * sizeof(GpPointF));
Andrew Eikum119e9af2009-06-06 12:02:29 -05001656 if(!pt)
1657 return OutOfMemory;
1658
Evan Stade5c8b83c2007-06-19 19:31:28 -07001659 tension = tension * TENSION_CONST;
1660
1661 calc_curve_bezier_endp(points[0].X, points[0].Y, points[1].X, points[1].Y,
1662 tension, &x1, &y1);
1663
Evan Stadeb72dc0d2007-07-09 20:54:23 -07001664 pt[0].X = points[0].X;
1665 pt[0].Y = points[0].Y;
1666 pt[1].X = x1;
1667 pt[1].Y = y1;
Evan Stade5c8b83c2007-06-19 19:31:28 -07001668
1669 for(i = 0; i < count-2; i++){
1670 calc_curve_bezier(&(points[i]), tension, &x1, &y1, &x2, &y2);
1671
Evan Stadeb72dc0d2007-07-09 20:54:23 -07001672 pt[3*i+2].X = x1;
1673 pt[3*i+2].Y = y1;
1674 pt[3*i+3].X = points[i+1].X;
1675 pt[3*i+3].Y = points[i+1].Y;
1676 pt[3*i+4].X = x2;
1677 pt[3*i+4].Y = y2;
Evan Stade5c8b83c2007-06-19 19:31:28 -07001678 }
1679
1680 calc_curve_bezier_endp(points[count-1].X, points[count-1].Y,
1681 points[count-2].X, points[count-2].Y, tension, &x1, &y1);
1682
Evan Stadeb72dc0d2007-07-09 20:54:23 -07001683 pt[len_pt-2].X = x1;
1684 pt[len_pt-2].Y = y1;
1685 pt[len_pt-1].X = points[count-1].X;
1686 pt[len_pt-1].Y = points[count-1].Y;
Evan Stade5c8b83c2007-06-19 19:31:28 -07001687
Evan Stade4c424b32007-07-24 17:18:54 -07001688 save_state = prepare_dc(graphics, pen);
Evan Stade5c8b83c2007-06-19 19:31:28 -07001689
Evan Staded01c6972007-07-23 20:24:53 -07001690 retval = draw_polybezier(graphics, pen, pt, len_pt, TRUE);
Evan Stade5c8b83c2007-06-19 19:31:28 -07001691
Evan Stadeb72dc0d2007-07-09 20:54:23 -07001692 GdipFree(pt);
Evan Stade4c424b32007-07-24 17:18:54 -07001693 restore_dc(graphics, save_state);
Evan Stade5c8b83c2007-06-19 19:31:28 -07001694
Evan Stadefa312172007-07-11 18:07:39 -07001695 return retval;
Evan Stade5c8b83c2007-06-19 19:31:28 -07001696}
1697
Nikolay Sivov00cfffb2008-04-29 00:09:44 +04001698GpStatus WINGDIPAPI GdipDrawCurve2I(GpGraphics *graphics, GpPen *pen,
1699 GDIPCONST GpPoint *points, INT count, REAL tension)
1700{
1701 GpPointF *pointsF;
1702 GpStatus ret;
1703 INT i;
1704
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001705 TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension);
1706
Andrew Eikumc2aa66d2009-06-28 13:33:59 -05001707 if(!points)
Nikolay Sivov00cfffb2008-04-29 00:09:44 +04001708 return InvalidParameter;
1709
1710 pointsF = GdipAlloc(sizeof(GpPointF)*count);
1711 if(!pointsF)
1712 return OutOfMemory;
1713
1714 for(i = 0; i < count; i++){
1715 pointsF[i].X = (REAL)points[i].X;
1716 pointsF[i].Y = (REAL)points[i].Y;
1717 }
1718
1719 ret = GdipDrawCurve2(graphics,pen,pointsF,count,tension);
1720 GdipFree(pointsF);
1721
1722 return ret;
1723}
1724
Andrew Eikum4c0edba2009-06-29 22:12:40 -05001725GpStatus WINGDIPAPI GdipDrawCurve3(GpGraphics *graphics, GpPen *pen,
1726 GDIPCONST GpPointF *points, INT count, INT offset, INT numberOfSegments,
1727 REAL tension)
1728{
1729 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension);
1730
1731 if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){
1732 return InvalidParameter;
1733 }
1734
1735 return GdipDrawCurve2(graphics, pen, points + offset, numberOfSegments + 1, tension);
1736}
1737
1738GpStatus WINGDIPAPI GdipDrawCurve3I(GpGraphics *graphics, GpPen *pen,
1739 GDIPCONST GpPoint *points, INT count, INT offset, INT numberOfSegments,
1740 REAL tension)
1741{
1742 TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension);
1743
1744 if(count < 0){
1745 return OutOfMemory;
1746 }
1747
1748 if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){
1749 return InvalidParameter;
1750 }
1751
1752 return GdipDrawCurve2I(graphics, pen, points + offset, numberOfSegments + 1, tension);
1753}
1754
Przemysław Białek864384e2008-06-27 10:59:23 +02001755GpStatus WINGDIPAPI GdipDrawEllipse(GpGraphics *graphics, GpPen *pen, REAL x,
1756 REAL y, REAL width, REAL height)
1757{
1758 INT save_state;
1759 GpPointF ptf[2];
1760 POINT pti[2];
1761
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001762 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
1763
Przemysław Białek864384e2008-06-27 10:59:23 +02001764 if(!graphics || !pen)
1765 return InvalidParameter;
1766
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04001767 if(graphics->busy)
1768 return ObjectBusy;
1769
Przemysław Białek864384e2008-06-27 10:59:23 +02001770 ptf[0].X = x;
1771 ptf[0].Y = y;
1772 ptf[1].X = x + width;
1773 ptf[1].Y = y + height;
1774
1775 save_state = prepare_dc(graphics, pen);
1776 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
1777
1778 transform_and_round_points(graphics, pti, ptf, 2);
1779
1780 Ellipse(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y);
1781
1782 restore_dc(graphics, save_state);
1783
1784 return Ok;
1785}
1786
1787GpStatus WINGDIPAPI GdipDrawEllipseI(GpGraphics *graphics, GpPen *pen, INT x,
1788 INT y, INT width, INT height)
1789{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001790 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
1791
Przemysław Białek864384e2008-06-27 10:59:23 +02001792 return GdipDrawEllipse(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
1793}
1794
1795
Nikolay Sivov49247042008-04-29 00:10:01 +04001796GpStatus WINGDIPAPI GdipDrawImage(GpGraphics *graphics, GpImage *image, REAL x, REAL y)
1797{
Vincent Povirke72defc2009-08-20 16:16:05 -05001798 UINT width, height;
1799 GpPointF points[3];
1800
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001801 TRACE("(%p, %p, %.2f, %.2f)\n", graphics, image, x, y);
1802
Evan Stadede351ab2007-08-07 18:42:12 -07001803 if(!graphics || !image)
1804 return InvalidParameter;
1805
1806 GdipGetImageWidth(image, &width);
1807 GdipGetImageHeight(image, &height);
1808
Vincent Povirke72defc2009-08-20 16:16:05 -05001809 /* FIXME: we should use the graphics and image dpi, somehow */
Evan Stadede351ab2007-08-07 18:42:12 -07001810
Vincent Povirke72defc2009-08-20 16:16:05 -05001811 points[0].X = points[2].X = x;
1812 points[0].Y = points[1].Y = y;
1813 points[1].X = x + width;
1814 points[2].Y = y + height;
Evan Stadede351ab2007-08-07 18:42:12 -07001815
Vincent Povirke72defc2009-08-20 16:16:05 -05001816 return GdipDrawImagePointsRect(graphics, image, points, 3, 0, 0, width, height,
1817 UnitPixel, NULL, NULL, NULL);
1818}
Evan Stadede351ab2007-08-07 18:42:12 -07001819
Vincent Povirke72defc2009-08-20 16:16:05 -05001820GpStatus WINGDIPAPI GdipDrawImageI(GpGraphics *graphics, GpImage *image, INT x,
1821 INT y)
1822{
1823 TRACE("(%p, %p, %d, %d)\n", graphics, image, x, y);
1824
1825 return GdipDrawImage(graphics, image, (REAL)x, (REAL)y);
Evan Stadede351ab2007-08-07 18:42:12 -07001826}
1827
Andrew Eikumeec8d512009-06-02 22:34:37 -05001828GpStatus WINGDIPAPI GdipDrawImagePointRect(GpGraphics *graphics, GpImage *image,
1829 REAL x, REAL y, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
1830 GpUnit srcUnit)
1831{
Vincent Povirk94ab2332009-09-04 12:51:48 -05001832 GpPointF points[3];
1833 TRACE("(%p, %p, %f, %f, %f, %f, %f, %f, %d)\n", graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
1834
1835 points[0].X = points[2].X = x;
1836 points[0].Y = points[1].Y = y;
1837
1838 /* FIXME: convert image coordinates to Graphics coordinates? */
1839 points[1].X = x + srcwidth;
1840 points[2].Y = y + srcheight;
1841
1842 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
1843 srcwidth, srcheight, srcUnit, NULL, NULL, NULL);
Andrew Eikumeec8d512009-06-02 22:34:37 -05001844}
1845
1846GpStatus WINGDIPAPI GdipDrawImagePointRectI(GpGraphics *graphics, GpImage *image,
1847 INT x, INT y, INT srcx, INT srcy, INT srcwidth, INT srcheight,
1848 GpUnit srcUnit)
1849{
Vincent Povirk94ab2332009-09-04 12:51:48 -05001850 return GdipDrawImagePointRect(graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit);
Andrew Eikumeec8d512009-06-02 22:34:37 -05001851}
1852
Andrew Eikum156eeb02009-06-03 23:31:21 -05001853GpStatus WINGDIPAPI GdipDrawImagePoints(GpGraphics *graphics, GpImage *image,
1854 GDIPCONST GpPointF *dstpoints, INT count)
1855{
1856 FIXME("(%p, %p, %p, %d): stub\n", graphics, image, dstpoints, count);
1857 return NotImplemented;
1858}
1859
1860GpStatus WINGDIPAPI GdipDrawImagePointsI(GpGraphics *graphics, GpImage *image,
1861 GDIPCONST GpPoint *dstpoints, INT count)
1862{
1863 FIXME("(%p, %p, %p, %d): stub\n", graphics, image, dstpoints, count);
1864 return NotImplemented;
1865}
1866
Evan Stade04d4c262007-08-09 18:25:09 -07001867/* FIXME: partially implemented (only works for rectangular parallelograms) */
Evan Stade460f01b2007-07-30 19:09:45 -07001868GpStatus WINGDIPAPI GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image,
Evan Stadea9c4f302007-07-30 19:10:07 -07001869 GDIPCONST GpPointF *points, INT count, REAL srcx, REAL srcy, REAL srcwidth,
1870 REAL srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
1871 DrawImageAbort callback, VOID * callbackData)
Evan Stade460f01b2007-07-30 19:09:45 -07001872{
Evan Stadea9c4f302007-07-30 19:10:07 -07001873 GpPointF ptf[3];
1874 POINT pti[3];
Evan Stade6e0c5742007-07-31 19:16:23 -07001875 REAL dx, dy;
Evan Stade460f01b2007-07-30 19:09:45 -07001876
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04001877 TRACE("(%p, %p, %p, %d, %f, %f, %f, %f, %d, %p, %p, %p)\n", graphics, image, points,
1878 count, srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
Evan Stadea9c4f302007-07-30 19:10:07 -07001879 callbackData);
Evan Stade460f01b2007-07-30 19:09:45 -07001880
Nikolay Sivov8cf56082008-04-25 01:58:36 +04001881 if(!graphics || !image || !points || count != 3)
Evan Stadea9c4f302007-07-30 19:10:07 -07001882 return InvalidParameter;
Evan Stade460f01b2007-07-30 19:09:45 -07001883
Vincent Povirk7ded3d82009-12-18 15:45:02 -06001884 TRACE("%s %s %s\n", debugstr_pointf(&points[0]), debugstr_pointf(&points[1]),
1885 debugstr_pointf(&points[2]));
1886
Evan Stadea9c4f302007-07-30 19:10:07 -07001887 memcpy(ptf, points, 3 * sizeof(GpPointF));
1888 transform_and_round_points(graphics, pti, ptf, 3);
1889
Vincent Povirk436b3be2009-08-28 16:21:27 -05001890 if (image->picture)
1891 {
1892 if(srcUnit == UnitInch)
1893 dx = dy = (REAL) INCH_HIMETRIC;
1894 else if(srcUnit == UnitPixel){
1895 dx = ((REAL) INCH_HIMETRIC) /
1896 ((REAL) GetDeviceCaps(graphics->hdc, LOGPIXELSX));
1897 dy = ((REAL) INCH_HIMETRIC) /
1898 ((REAL) GetDeviceCaps(graphics->hdc, LOGPIXELSY));
1899 }
1900 else
1901 return NotImplemented;
Evan Stade6e0c5742007-07-31 19:16:23 -07001902
Vincent Povirk436b3be2009-08-28 16:21:27 -05001903 if(IPicture_Render(image->picture, graphics->hdc,
1904 pti[0].x, pti[0].y, pti[1].x - pti[0].x, pti[2].y - pti[0].y,
1905 srcx * dx, srcy * dy,
1906 srcwidth * dx, srcheight * dy,
1907 NULL) != S_OK){
1908 if(callback)
1909 callback(callbackData);
1910 return GenericError;
1911 }
1912 }
1913 else if (image->type == ImageTypeBitmap && ((GpBitmap*)image)->hbitmap)
1914 {
1915 HDC hdc;
1916 GpBitmap* bitmap = (GpBitmap*)image;
Vincent Povirk895c6d82009-08-28 17:21:10 -05001917 int temp_hdc=0, temp_bitmap=0;
1918 HBITMAP hbitmap, old_hbm=NULL;
Vincent Povirk436b3be2009-08-28 16:21:27 -05001919
1920 if (srcUnit == UnitInch)
1921 dx = dy = 96.0; /* FIXME: use the image resolution */
1922 else if (srcUnit == UnitPixel)
1923 dx = dy = 1.0;
1924 else
1925 return NotImplemented;
1926
Vincent Povirk895c6d82009-08-28 17:21:10 -05001927 if (bitmap->format == PixelFormat32bppARGB)
Vincent Povirk436b3be2009-08-28 16:21:27 -05001928 {
Vincent Povirk895c6d82009-08-28 17:21:10 -05001929 BITMAPINFOHEADER bih;
1930 BYTE *temp_bits;
1931
1932 /* we need a bitmap with premultiplied alpha */
Vincent Povirk436b3be2009-08-28 16:21:27 -05001933 hdc = CreateCompatibleDC(0);
Vincent Povirk895c6d82009-08-28 17:21:10 -05001934 temp_hdc = 1;
1935 temp_bitmap = 1;
1936
1937 bih.biSize = sizeof(BITMAPINFOHEADER);
1938 bih.biWidth = bitmap->width;
1939 bih.biHeight = -bitmap->height;
1940 bih.biPlanes = 1;
1941 bih.biBitCount = 32;
1942 bih.biCompression = BI_RGB;
1943 bih.biSizeImage = 0;
1944 bih.biXPelsPerMeter = 0;
1945 bih.biYPelsPerMeter = 0;
1946 bih.biClrUsed = 0;
1947 bih.biClrImportant = 0;
1948
1949 hbitmap = CreateDIBSection(hdc, (BITMAPINFO*)&bih, DIB_RGB_COLORS,
1950 (void**)&temp_bits, NULL, 0);
1951
1952 convert_32bppARGB_to_32bppPARGB(bitmap->width, bitmap->height,
1953 temp_bits, bitmap->width*4, bitmap->bits, bitmap->stride);
1954 }
1955 else
1956 {
1957 hbitmap = bitmap->hbitmap;
1958 hdc = bitmap->hdc;
1959 temp_hdc = (hdc == 0);
Vincent Povirk436b3be2009-08-28 16:21:27 -05001960 }
1961
Vincent Povirk895c6d82009-08-28 17:21:10 -05001962 if (temp_hdc)
1963 {
1964 if (!hdc) hdc = CreateCompatibleDC(0);
1965 old_hbm = SelectObject(hdc, hbitmap);
1966 }
Vincent Povirk436b3be2009-08-28 16:21:27 -05001967
Vincent Povirk895c6d82009-08-28 17:21:10 -05001968 if (bitmap->format == PixelFormat32bppARGB || bitmap->format == PixelFormat32bppPARGB)
1969 {
1970 BLENDFUNCTION bf;
1971
1972 bf.BlendOp = AC_SRC_OVER;
1973 bf.BlendFlags = 0;
1974 bf.SourceConstantAlpha = 255;
1975 bf.AlphaFormat = AC_SRC_ALPHA;
1976
1977 GdiAlphaBlend(graphics->hdc, pti[0].x, pti[0].y, pti[1].x-pti[0].x, pti[2].y-pti[0].y,
1978 hdc, srcx*dx, srcy*dy, srcwidth*dx, srcheight*dy, bf);
1979 }
1980 else
1981 {
1982 StretchBlt(graphics->hdc, pti[0].x, pti[0].y, pti[1].x-pti[0].x, pti[2].y-pti[0].y,
1983 hdc, srcx*dx, srcy*dy, srcwidth*dx, srcheight*dy, SRCCOPY);
1984 }
1985
1986 if (temp_hdc)
Vincent Povirk436b3be2009-08-28 16:21:27 -05001987 {
1988 SelectObject(hdc, old_hbm);
1989 DeleteDC(hdc);
1990 }
Vincent Povirk895c6d82009-08-28 17:21:10 -05001991
1992 if (temp_bitmap)
1993 DeleteObject(hbitmap);
Vincent Povirk436b3be2009-08-28 16:21:27 -05001994 }
1995 else
1996 {
1997 ERR("GpImage with no IPicture or HBITMAP?!\n");
1998 return NotImplemented;
Evan Stadea9c4f302007-07-30 19:10:07 -07001999 }
2000
2001 return Ok;
Evan Stade460f01b2007-07-30 19:09:45 -07002002}
2003
Nikolay Sivov79b49a82008-04-29 00:10:05 +04002004GpStatus WINGDIPAPI GdipDrawImagePointsRectI(GpGraphics *graphics, GpImage *image,
2005 GDIPCONST GpPoint *points, INT count, INT srcx, INT srcy, INT srcwidth,
2006 INT srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes,
2007 DrawImageAbort callback, VOID * callbackData)
2008{
2009 GpPointF pointsF[3];
2010 INT i;
2011
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002012 TRACE("(%p, %p, %p, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n", graphics, image, points, count,
2013 srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback,
2014 callbackData);
2015
Nikolay Sivov79b49a82008-04-29 00:10:05 +04002016 if(!points || count!=3)
2017 return InvalidParameter;
2018
2019 for(i = 0; i < count; i++){
2020 pointsF[i].X = (REAL)points[i].X;
2021 pointsF[i].Y = (REAL)points[i].Y;
2022 }
2023
2024 return GdipDrawImagePointsRect(graphics, image, pointsF, count, (REAL)srcx, (REAL)srcy,
2025 (REAL)srcwidth, (REAL)srcheight, srcUnit, imageAttributes,
2026 callback, callbackData);
2027}
2028
Evan Stade04d4c262007-08-09 18:25:09 -07002029GpStatus WINGDIPAPI GdipDrawImageRectRect(GpGraphics *graphics, GpImage *image,
2030 REAL dstx, REAL dsty, REAL dstwidth, REAL dstheight, REAL srcx, REAL srcy,
2031 REAL srcwidth, REAL srcheight, GpUnit srcUnit,
2032 GDIPCONST GpImageAttributes* imageattr, DrawImageAbort callback,
2033 VOID * callbackData)
2034{
2035 GpPointF points[3];
2036
Francois Gouget758c4532008-09-05 13:14:56 +02002037 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)\n",
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002038 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
2039 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
2040
Evan Stade04d4c262007-08-09 18:25:09 -07002041 points[0].X = dstx;
2042 points[0].Y = dsty;
2043 points[1].X = dstx + dstwidth;
2044 points[1].Y = dsty;
2045 points[2].X = dstx;
2046 points[2].Y = dsty + dstheight;
2047
2048 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
2049 srcwidth, srcheight, srcUnit, imageattr, callback, callbackData);
2050}
2051
Jon Yang29bc9ba2008-02-28 21:54:47 -08002052GpStatus WINGDIPAPI GdipDrawImageRectRectI(GpGraphics *graphics, GpImage *image,
2053 INT dstx, INT dsty, INT dstwidth, INT dstheight, INT srcx, INT srcy,
2054 INT srcwidth, INT srcheight, GpUnit srcUnit,
2055 GDIPCONST GpImageAttributes* imageAttributes, DrawImageAbort callback,
2056 VOID * callbackData)
2057{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002058 GpPointF points[3];
2059
Francois Gouget758c4532008-09-05 13:14:56 +02002060 TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n",
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002061 graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy,
2062 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
Jon Yang29bc9ba2008-02-28 21:54:47 -08002063
2064 points[0].X = dstx;
2065 points[0].Y = dsty;
2066 points[1].X = dstx + dstwidth;
2067 points[1].Y = dsty;
2068 points[2].X = dstx;
2069 points[2].Y = dsty + dstheight;
2070
2071 return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy,
2072 srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData);
2073}
2074
Nikolay Sivov8cf56082008-04-25 01:58:36 +04002075GpStatus WINGDIPAPI GdipDrawImageRect(GpGraphics *graphics, GpImage *image,
2076 REAL x, REAL y, REAL width, REAL height)
2077{
2078 RectF bounds;
2079 GpUnit unit;
2080 GpStatus ret;
2081
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002082 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, image, x, y, width, height);
2083
Nikolay Sivov8cf56082008-04-25 01:58:36 +04002084 if(!graphics || !image)
2085 return InvalidParameter;
2086
2087 ret = GdipGetImageBounds(image, &bounds, &unit);
2088 if(ret != Ok)
2089 return ret;
2090
2091 return GdipDrawImageRectRect(graphics, image, x, y, width, height,
2092 bounds.X, bounds.Y, bounds.Width, bounds.Height,
2093 unit, NULL, NULL, NULL);
2094}
2095
2096GpStatus WINGDIPAPI GdipDrawImageRectI(GpGraphics *graphics, GpImage *image,
2097 INT x, INT y, INT width, INT height)
2098{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002099 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, image, x, y, width, height);
2100
Nikolay Sivov8cf56082008-04-25 01:58:36 +04002101 return GdipDrawImageRect(graphics, image, (REAL)x, (REAL)y, (REAL)width, (REAL)height);
2102}
2103
Evan Stade5e29e372007-08-01 17:55:58 -07002104GpStatus WINGDIPAPI GdipDrawLine(GpGraphics *graphics, GpPen *pen, REAL x1,
2105 REAL y1, REAL x2, REAL y2)
2106{
2107 INT save_state;
2108 GpPointF pt[2];
2109 GpStatus retval;
2110
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002111 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1, x2, y2);
2112
Evan Stade5e29e372007-08-01 17:55:58 -07002113 if(!pen || !graphics)
2114 return InvalidParameter;
2115
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002116 if(graphics->busy)
2117 return ObjectBusy;
2118
Evan Stade5e29e372007-08-01 17:55:58 -07002119 pt[0].X = x1;
2120 pt[0].Y = y1;
2121 pt[1].X = x2;
2122 pt[1].Y = y2;
2123
2124 save_state = prepare_dc(graphics, pen);
2125
2126 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
2127
2128 restore_dc(graphics, save_state);
2129
2130 return retval;
2131}
2132
Evan Stade2689b182007-06-12 10:44:31 -07002133GpStatus WINGDIPAPI GdipDrawLineI(GpGraphics *graphics, GpPen *pen, INT x1,
2134 INT y1, INT x2, INT y2)
2135{
Evan Staded9ef1722007-07-02 15:13:05 -07002136 INT save_state;
Evan Stade5128e5d2007-07-07 13:20:41 -07002137 GpPointF pt[2];
Evan Stade6f4ab522007-07-11 18:07:44 -07002138 GpStatus retval;
Evan Stade2689b182007-06-12 10:44:31 -07002139
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002140 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x1, y1, x2, y2);
2141
Evan Stade2689b182007-06-12 10:44:31 -07002142 if(!pen || !graphics)
2143 return InvalidParameter;
2144
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002145 if(graphics->busy)
2146 return ObjectBusy;
2147
Evan Stade5128e5d2007-07-07 13:20:41 -07002148 pt[0].X = (REAL)x1;
2149 pt[0].Y = (REAL)y1;
2150 pt[1].X = (REAL)x2;
2151 pt[1].Y = (REAL)y2;
2152
Evan Stade4c424b32007-07-24 17:18:54 -07002153 save_state = prepare_dc(graphics, pen);
Evan Staded9ef1722007-07-02 15:13:05 -07002154
Evan Staded01c6972007-07-23 20:24:53 -07002155 retval = draw_polyline(graphics, pen, pt, 2, TRUE);
Evan Staded9ef1722007-07-02 15:13:05 -07002156
Evan Stade4c424b32007-07-24 17:18:54 -07002157 restore_dc(graphics, save_state);
Evan Stade2689b182007-06-12 10:44:31 -07002158
Evan Stade6f4ab522007-07-11 18:07:44 -07002159 return retval;
Evan Stade2689b182007-06-12 10:44:31 -07002160}
Evan Stade4b9bfbe2007-06-12 10:51:20 -07002161
Evan Stadef6f04f62007-06-21 16:15:13 -07002162GpStatus WINGDIPAPI GdipDrawLines(GpGraphics *graphics, GpPen *pen, GDIPCONST
2163 GpPointF *points, INT count)
2164{
Evan Stade852aac82007-07-11 18:07:16 -07002165 INT save_state;
Evan Stade6f4ab522007-07-11 18:07:44 -07002166 GpStatus retval;
Evan Stadef6f04f62007-06-21 16:15:13 -07002167
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002168 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2169
Evan Stadef6f04f62007-06-21 16:15:13 -07002170 if(!pen || !graphics || (count < 2))
2171 return InvalidParameter;
2172
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002173 if(graphics->busy)
2174 return ObjectBusy;
2175
Evan Stade4c424b32007-07-24 17:18:54 -07002176 save_state = prepare_dc(graphics, pen);
Evan Stadef6f04f62007-06-21 16:15:13 -07002177
Evan Staded01c6972007-07-23 20:24:53 -07002178 retval = draw_polyline(graphics, pen, points, count, TRUE);
Evan Stadef6f04f62007-06-21 16:15:13 -07002179
Evan Stade4c424b32007-07-24 17:18:54 -07002180 restore_dc(graphics, save_state);
Evan Stadef6f04f62007-06-21 16:15:13 -07002181
Evan Stade6f4ab522007-07-11 18:07:44 -07002182 return retval;
Evan Stadef6f04f62007-06-21 16:15:13 -07002183}
2184
Royal Chan6e7b5342008-02-29 04:58:39 -08002185GpStatus WINGDIPAPI GdipDrawLinesI(GpGraphics *graphics, GpPen *pen, GDIPCONST
2186 GpPoint *points, INT count)
2187{
2188 INT save_state;
2189 GpStatus retval;
2190 GpPointF *ptf = NULL;
2191 int i;
2192
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002193 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
2194
Royal Chan6e7b5342008-02-29 04:58:39 -08002195 if(!pen || !graphics || (count < 2))
2196 return InvalidParameter;
2197
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002198 if(graphics->busy)
2199 return ObjectBusy;
2200
Royal Chan6e7b5342008-02-29 04:58:39 -08002201 ptf = GdipAlloc(count * sizeof(GpPointF));
2202 if(!ptf) return OutOfMemory;
2203
2204 for(i = 0; i < count; i ++){
2205 ptf[i].X = (REAL) points[i].X;
2206 ptf[i].Y = (REAL) points[i].Y;
2207 }
2208
2209 save_state = prepare_dc(graphics, pen);
2210
2211 retval = draw_polyline(graphics, pen, ptf, count, TRUE);
2212
2213 restore_dc(graphics, save_state);
2214
2215 GdipFree(ptf);
2216 return retval;
2217}
2218
Evan Stade9d5f5682007-07-11 18:07:34 -07002219GpStatus WINGDIPAPI GdipDrawPath(GpGraphics *graphics, GpPen *pen, GpPath *path)
2220{
Evan Stade9e883472007-07-13 17:51:49 -07002221 INT save_state;
Evan Stade9d5f5682007-07-11 18:07:34 -07002222 GpStatus retval;
2223
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002224 TRACE("(%p, %p, %p)\n", graphics, pen, path);
2225
Evan Stade9d5f5682007-07-11 18:07:34 -07002226 if(!pen || !graphics)
2227 return InvalidParameter;
2228
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002229 if(graphics->busy)
2230 return ObjectBusy;
2231
Evan Stade4c424b32007-07-24 17:18:54 -07002232 save_state = prepare_dc(graphics, pen);
Evan Stade9d5f5682007-07-11 18:07:34 -07002233
Evan Staded01c6972007-07-23 20:24:53 -07002234 retval = draw_poly(graphics, pen, path->pathdata.Points,
Evan Stade9e883472007-07-13 17:51:49 -07002235 path->pathdata.Types, path->pathdata.Count, TRUE);
Evan Stade9d5f5682007-07-11 18:07:34 -07002236
Evan Stade4c424b32007-07-24 17:18:54 -07002237 restore_dc(graphics, save_state);
Evan Stade9d5f5682007-07-11 18:07:34 -07002238
2239 return retval;
2240}
2241
Evan Stade72ab72c502007-06-18 16:55:51 -07002242GpStatus WINGDIPAPI GdipDrawPie(GpGraphics *graphics, GpPen *pen, REAL x,
2243 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
2244{
Evan Stade4c424b32007-07-24 17:18:54 -07002245 INT save_state;
2246
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002247 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y,
2248 width, height, startAngle, sweepAngle);
2249
Evan Stade4c424b32007-07-24 17:18:54 -07002250 if(!graphics || !pen)
Evan Stade72ab72c502007-06-18 16:55:51 -07002251 return InvalidParameter;
2252
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002253 if(graphics->busy)
2254 return ObjectBusy;
2255
Evan Stade4c424b32007-07-24 17:18:54 -07002256 save_state = prepare_dc(graphics, pen);
2257 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
2258
2259 draw_pie(graphics, x, y, width, height, startAngle, sweepAngle);
2260
2261 restore_dc(graphics, save_state);
2262
2263 return Ok;
Evan Stade72ab72c502007-06-18 16:55:51 -07002264}
2265
Nikolay Sivov71931612008-04-24 20:48:00 +04002266GpStatus WINGDIPAPI GdipDrawPieI(GpGraphics *graphics, GpPen *pen, INT x,
2267 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
2268{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002269 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y,
2270 width, height, startAngle, sweepAngle);
2271
Nikolay Sivov71931612008-04-24 20:48:00 +04002272 return GdipDrawPie(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
2273}
2274
Nikolay Sivov172389e2008-04-20 21:27:10 +04002275GpStatus WINGDIPAPI GdipDrawRectangle(GpGraphics *graphics, GpPen *pen, REAL x,
2276 REAL y, REAL width, REAL height)
Evan Stade4b9bfbe2007-06-12 10:51:20 -07002277{
Evan Stade14e0df12007-07-09 20:54:18 -07002278 INT save_state;
Evan Stadec84c2042007-08-07 18:43:08 -07002279 GpPointF ptf[4];
2280 POINT pti[4];
Evan Stade4b9bfbe2007-06-12 10:51:20 -07002281
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002282 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height);
2283
Evan Stade4b9bfbe2007-06-12 10:51:20 -07002284 if(!pen || !graphics)
2285 return InvalidParameter;
2286
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002287 if(graphics->busy)
2288 return ObjectBusy;
2289
Evan Stadec84c2042007-08-07 18:43:08 -07002290 ptf[0].X = x;
2291 ptf[0].Y = y;
2292 ptf[1].X = x + width;
2293 ptf[1].Y = y;
2294 ptf[2].X = x + width;
2295 ptf[2].Y = y + height;
2296 ptf[3].X = x;
2297 ptf[3].Y = y + height;
2298
Evan Stade4c424b32007-07-24 17:18:54 -07002299 save_state = prepare_dc(graphics, pen);
Evan Stade14e0df12007-07-09 20:54:18 -07002300 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
Evan Stade4b9bfbe2007-06-12 10:51:20 -07002301
Evan Stadec84c2042007-08-07 18:43:08 -07002302 transform_and_round_points(graphics, pti, ptf, 4);
2303 Polygon(graphics->hdc, pti, 4);
Evan Stade4b9bfbe2007-06-12 10:51:20 -07002304
Evan Stade4c424b32007-07-24 17:18:54 -07002305 restore_dc(graphics, save_state);
Evan Stade4b9bfbe2007-06-12 10:51:20 -07002306
2307 return Ok;
2308}
Evan Stade72ab72c502007-06-18 16:55:51 -07002309
Nikolay Sivov172389e2008-04-20 21:27:10 +04002310GpStatus WINGDIPAPI GdipDrawRectangleI(GpGraphics *graphics, GpPen *pen, INT x,
2311 INT y, INT width, INT height)
2312{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002313 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height);
2314
Nikolay Sivov172389e2008-04-20 21:27:10 +04002315 return GdipDrawRectangle(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
2316}
2317
Evan Stade9d6e0752007-08-13 18:34:46 -07002318GpStatus WINGDIPAPI GdipDrawRectangles(GpGraphics *graphics, GpPen *pen,
Francois Gougetb6b97b12007-08-29 21:42:01 +02002319 GDIPCONST GpRectF* rects, INT count)
Evan Stade9d6e0752007-08-13 18:34:46 -07002320{
2321 GpPointF *ptf;
2322 POINT *pti;
2323 INT save_state, i;
2324
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002325 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
2326
Evan Stade9d6e0752007-08-13 18:34:46 -07002327 if(!graphics || !pen || !rects || count < 1)
2328 return InvalidParameter;
2329
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002330 if(graphics->busy)
2331 return ObjectBusy;
2332
Evan Stade9d6e0752007-08-13 18:34:46 -07002333 ptf = GdipAlloc(4 * count * sizeof(GpPointF));
2334 pti = GdipAlloc(4 * count * sizeof(POINT));
2335
2336 if(!ptf || !pti){
2337 GdipFree(ptf);
2338 GdipFree(pti);
2339 return OutOfMemory;
2340 }
2341
2342 for(i = 0; i < count; i++){
2343 ptf[4 * i + 3].X = ptf[4 * i].X = rects[i].X;
2344 ptf[4 * i + 1].Y = ptf[4 * i].Y = rects[i].Y;
2345 ptf[4 * i + 2].X = ptf[4 * i + 1].X = rects[i].X + rects[i].Width;
2346 ptf[4 * i + 3].Y = ptf[4 * i + 2].Y = rects[i].Y + rects[i].Height;
2347 }
2348
2349 save_state = prepare_dc(graphics, pen);
2350 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
2351
2352 transform_and_round_points(graphics, pti, ptf, 4 * count);
2353
2354 for(i = 0; i < count; i++)
2355 Polygon(graphics->hdc, &pti[4 * i], 4);
2356
2357 restore_dc(graphics, save_state);
2358
2359 GdipFree(ptf);
2360 GdipFree(pti);
2361
2362 return Ok;
2363}
2364
Nikolay Sivov3903ac62008-04-24 20:48:08 +04002365GpStatus WINGDIPAPI GdipDrawRectanglesI(GpGraphics *graphics, GpPen *pen,
2366 GDIPCONST GpRect* rects, INT count)
2367{
2368 GpRectF *rectsF;
2369 GpStatus ret;
2370 INT i;
2371
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002372 TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count);
2373
Nikolay Sivov3903ac62008-04-24 20:48:08 +04002374 if(!rects || count<=0)
2375 return InvalidParameter;
2376
2377 rectsF = GdipAlloc(sizeof(GpRectF) * count);
2378 if(!rectsF)
2379 return OutOfMemory;
2380
2381 for(i = 0;i < count;i++){
2382 rectsF[i].X = (REAL)rects[i].X;
2383 rectsF[i].Y = (REAL)rects[i].Y;
2384 rectsF[i].Width = (REAL)rects[i].Width;
2385 rectsF[i].Height = (REAL)rects[i].Height;
2386 }
2387
2388 ret = GdipDrawRectangles(graphics, pen, rectsF, count);
2389 GdipFree(rectsF);
2390
2391 return ret;
2392}
2393
Evan Stadef7d27e02007-08-14 18:58:39 -07002394GpStatus WINGDIPAPI GdipDrawString(GpGraphics *graphics, GDIPCONST WCHAR *string,
2395 INT length, GDIPCONST GpFont *font, GDIPCONST RectF *rect,
2396 GDIPCONST GpStringFormat *format, GDIPCONST GpBrush *brush)
2397{
Evan Stadeca949392007-08-15 16:22:13 -07002398 HRGN rgn = NULL;
Evan Stadef7d27e02007-08-14 18:58:39 -07002399 HFONT gdifont;
2400 LOGFONTW lfw;
2401 TEXTMETRICW textmet;
Vincent Povirk99012b92009-09-04 14:11:52 -05002402 GpPointF pt[3], rectcpy[4];
Evan Stadef7d27e02007-08-14 18:58:39 -07002403 POINT corners[4];
2404 WCHAR* stringdup;
2405 REAL angle, ang_cos, ang_sin, rel_width, rel_height;
Stephan Roseeb3904d2009-06-04 18:51:07 -04002406 INT sum = 0, height = 0, offsety = 0, fit, fitcpy, save_state, i, j, lret, nwidth,
Vincent Povirke0d9d172009-07-24 16:24:19 -05002407 nheight, lineend;
Evan Stadef7d27e02007-08-14 18:58:39 -07002408 SIZE size;
Vincent Povirkaa9602d2009-06-29 16:36:11 -05002409 POINT drawbase;
2410 UINT drawflags;
Evan Stadebe66c3c2007-08-15 16:22:17 -07002411 RECT drawcoord;
Evan Stadef7d27e02007-08-14 18:58:39 -07002412
Vincent Povirk3dd5ce72009-05-13 13:55:46 -05002413 TRACE("(%p, %s, %i, %p, %s, %p, %p)\n", graphics, debugstr_wn(string, length),
2414 length, font, debugstr_rectf(rect), format, brush);
2415
Evan Stadef7d27e02007-08-14 18:58:39 -07002416 if(!graphics || !string || !font || !brush || !rect)
2417 return InvalidParameter;
2418
Evan Stade3f320832007-08-15 16:22:00 -07002419 if((brush->bt != BrushTypeSolidColor)){
Evan Stadef7d27e02007-08-14 18:58:39 -07002420 FIXME("not implemented for given parameters\n");
2421 return NotImplemented;
2422 }
2423
Stephan Roseeb3904d2009-06-04 18:51:07 -04002424 if(format){
Evan Stade3f320832007-08-15 16:22:00 -07002425 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
2426
Stephan Roseeb3904d2009-06-04 18:51:07 -04002427 /* Should be no need to explicitly test for StringAlignmentNear as
2428 * that is default behavior if no alignment is passed. */
2429 if(format->vertalign != StringAlignmentNear){
2430 RectF bounds;
2431 GdipMeasureString(graphics, string, length, font, rect, format, &bounds, 0, 0);
2432
2433 if(format->vertalign == StringAlignmentCenter)
2434 offsety = (rect->Height - bounds.Height) / 2;
2435 else if(format->vertalign == StringAlignmentFar)
2436 offsety = (rect->Height - bounds.Height);
2437 }
2438 }
2439
Evan Staded0cead32007-08-14 19:01:07 -07002440 if(length == -1) length = lstrlenW(string);
2441
Evan Stadef7d27e02007-08-14 18:58:39 -07002442 stringdup = GdipAlloc(length * sizeof(WCHAR));
2443 if(!stringdup) return OutOfMemory;
2444
2445 save_state = SaveDC(graphics->hdc);
2446 SetBkMode(graphics->hdc, TRANSPARENT);
2447 SetTextColor(graphics->hdc, brush->lb.lbColor);
2448
Vincent Povirk99012b92009-09-04 14:11:52 -05002449 pt[0].X = 0.0;
2450 pt[0].Y = 0.0;
2451 pt[1].X = 1.0;
2452 pt[1].Y = 0.0;
2453 pt[2].X = 0.0;
2454 pt[2].Y = 1.0;
2455 GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3);
2456 angle = -gdiplus_atan2((pt[1].Y - pt[0].Y), (pt[1].X - pt[0].X));
2457 ang_cos = cos(angle);
2458 ang_sin = sin(angle);
2459 rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+
2460 (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X));
2461 rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+
2462 (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X));
2463
Evan Stadef7d27e02007-08-14 18:58:39 -07002464 rectcpy[3].X = rectcpy[0].X = rect->X;
Stephan Roseeb3904d2009-06-04 18:51:07 -04002465 rectcpy[1].Y = rectcpy[0].Y = rect->Y + offsety;
Evan Stadef7d27e02007-08-14 18:58:39 -07002466 rectcpy[2].X = rectcpy[1].X = rect->X + rect->Width;
Stephan Roseeb3904d2009-06-04 18:51:07 -04002467 rectcpy[3].Y = rectcpy[2].Y = rect->Y + offsety + rect->Height;
Evan Stadef7d27e02007-08-14 18:58:39 -07002468 transform_and_round_points(graphics, corners, rectcpy, 4);
Evan Stadef7d27e02007-08-14 18:58:39 -07002469
Vincent Povirk0879b762009-04-01 14:08:12 -05002470 if (roundr(rect->Width) == 0)
Vincent Povirk0879b762009-04-01 14:08:12 -05002471 nwidth = INT_MAX;
Vincent Povirk0879b762009-04-01 14:08:12 -05002472 else
Vincent Povirk0879b762009-04-01 14:08:12 -05002473 nwidth = roundr(rel_width * rect->Width);
Vincent Povirk0879b762009-04-01 14:08:12 -05002474
2475 if (roundr(rect->Height) == 0)
Vincent Povirk0879b762009-04-01 14:08:12 -05002476 nheight = INT_MAX;
Vincent Povirk0879b762009-04-01 14:08:12 -05002477 else
Evan Stadeca949392007-08-15 16:22:13 -07002478 nheight = roundr(rel_height * rect->Height);
Vincent Povirk0879b762009-04-01 14:08:12 -05002479
2480 if (roundr(rect->Width) != 0 && roundr(rect->Height) != 0)
2481 {
2482 /* FIXME: If only the width or only the height is 0, we should probably still clip */
Evan Stadeca949392007-08-15 16:22:13 -07002483 rgn = CreatePolygonRgn(corners, 4, ALTERNATE);
2484 SelectClipRgn(graphics->hdc, rgn);
2485 }
Evan Stadef7d27e02007-08-14 18:58:39 -07002486
2487 /* Use gdi to find the font, then perform transformations on it (height,
2488 * width, angle). */
2489 SelectObject(graphics->hdc, CreateFontIndirectW(&font->lfw));
2490 GetTextMetricsW(graphics->hdc, &textmet);
Andrew Talbot5e8253a2008-02-29 22:06:47 +00002491 lfw = font->lfw;
Evan Stadef7d27e02007-08-14 18:58:39 -07002492
2493 lfw.lfHeight = roundr(((REAL)lfw.lfHeight) * rel_height);
2494 lfw.lfWidth = roundr(textmet.tmAveCharWidth * rel_width);
2495
Vincent Povirkb330ebf2009-07-24 13:56:22 -05002496 lfw.lfEscapement = lfw.lfOrientation = roundr((angle / M_PI) * 1800.0);
Evan Stadef7d27e02007-08-14 18:58:39 -07002497
2498 gdifont = CreateFontIndirectW(&lfw);
2499 DeleteObject(SelectObject(graphics->hdc, CreateFontIndirectW(&lfw)));
2500
2501 for(i = 0, j = 0; i < length; i++){
2502 if(!isprintW(string[i]) && (string[i] != '\n'))
2503 continue;
2504
2505 stringdup[j] = string[i];
2506 j++;
2507 }
2508
Evan Stadef7d27e02007-08-14 18:58:39 -07002509 length = j;
2510
Vincent Povirk9fceef32009-06-30 09:23:07 -05002511 if (!format || format->align == StringAlignmentNear)
Vincent Povirkaa9602d2009-06-29 16:36:11 -05002512 {
2513 drawbase.x = corners[0].x;
2514 drawbase.y = corners[0].y;
2515 drawflags = DT_NOCLIP | DT_EXPANDTABS;
2516 }
2517 else if (format->align == StringAlignmentCenter)
2518 {
2519 drawbase.x = (corners[0].x + corners[1].x)/2;
2520 drawbase.y = (corners[0].y + corners[1].y)/2;
2521 drawflags = DT_NOCLIP | DT_EXPANDTABS | DT_CENTER;
2522 }
2523 else /* (format->align == StringAlignmentFar) */
2524 {
2525 drawbase.x = corners[1].x;
2526 drawbase.y = corners[1].y;
2527 drawflags = DT_NOCLIP | DT_EXPANDTABS | DT_RIGHT;
2528 }
2529
Evan Stadef7d27e02007-08-14 18:58:39 -07002530 while(sum < length){
Vincent Povirkaa9602d2009-06-29 16:36:11 -05002531 drawcoord.left = drawcoord.right = drawbase.x + roundr(ang_sin * (REAL) height);
2532 drawcoord.top = drawcoord.bottom = drawbase.y + roundr(ang_cos * (REAL) height);
Evan Stadebe66c3c2007-08-15 16:22:17 -07002533
Evan Stade92aa57b2007-08-15 16:21:56 -07002534 GetTextExtentExPointW(graphics->hdc, stringdup + sum, length - sum,
2535 nwidth, &fit, NULL, &size);
Evan Stadef7d27e02007-08-14 18:58:39 -07002536 fitcpy = fit;
2537
2538 if(fit == 0){
Vincent Povirkaa9602d2009-06-29 16:36:11 -05002539 DrawTextW(graphics->hdc, stringdup + sum, 1, &drawcoord, drawflags);
Evan Stadef7d27e02007-08-14 18:58:39 -07002540 break;
2541 }
2542
2543 for(lret = 0; lret < fit; lret++)
2544 if(*(stringdup + sum + lret) == '\n')
2545 break;
2546
2547 /* Line break code (may look strange, but it imitates windows). */
2548 if(lret < fit)
Vincent Povirke0d9d172009-07-24 16:24:19 -05002549 lineend = fit = lret; /* this is not an off-by-one error */
Evan Stade92aa57b2007-08-15 16:21:56 -07002550 else if(fit < (length - sum)){
2551 if(*(stringdup + sum + fit) == ' ')
2552 while(*(stringdup + sum + fit) == ' ')
2553 fit++;
2554 else
2555 while(*(stringdup + sum + fit - 1) != ' '){
2556 fit--;
Evan Stadef7d27e02007-08-14 18:58:39 -07002557
Evan Stade92aa57b2007-08-15 16:21:56 -07002558 if(*(stringdup + sum + fit) == '\t')
2559 break;
Evan Stadef7d27e02007-08-14 18:58:39 -07002560
Evan Stade92aa57b2007-08-15 16:21:56 -07002561 if(fit == 0){
2562 fit = fitcpy;
2563 break;
2564 }
Evan Stadef7d27e02007-08-14 18:58:39 -07002565 }
Vincent Povirke0d9d172009-07-24 16:24:19 -05002566 lineend = fit;
2567 while(*(stringdup + sum + lineend - 1) == ' ' ||
2568 *(stringdup + sum + lineend - 1) == '\t')
2569 lineend--;
Evan Stade92aa57b2007-08-15 16:21:56 -07002570 }
Vincent Povirke0d9d172009-07-24 16:24:19 -05002571 else
2572 lineend = fit;
2573 DrawTextW(graphics->hdc, stringdup + sum, min(length - sum, lineend),
Vincent Povirkaa9602d2009-06-29 16:36:11 -05002574 &drawcoord, drawflags);
Evan Stadef7d27e02007-08-14 18:58:39 -07002575
2576 sum += fit + (lret < fitcpy ? 1 : 0);
2577 height += size.cy;
2578
Evan Stadeca949392007-08-15 16:22:13 -07002579 if(height > nheight)
Evan Stadef7d27e02007-08-14 18:58:39 -07002580 break;
Evan Stade3f320832007-08-15 16:22:00 -07002581
2582 /* Stop if this was a linewrap (but not if it was a linebreak). */
2583 if((lret == fitcpy) && format && (format->attr & StringFormatFlagsNoWrap))
2584 break;
Evan Stadef7d27e02007-08-14 18:58:39 -07002585 }
2586
Andrew Talbotdfac0632007-09-25 20:52:58 +01002587 GdipFree(stringdup);
Evan Stadef7d27e02007-08-14 18:58:39 -07002588 DeleteObject(rgn);
2589 DeleteObject(gdifont);
2590
2591 RestoreDC(graphics->hdc, save_state);
2592
2593 return Ok;
2594}
2595
Nikolay Sivov4a441002008-08-22 02:16:49 +04002596GpStatus WINGDIPAPI GdipFillClosedCurve2(GpGraphics *graphics, GpBrush *brush,
2597 GDIPCONST GpPointF *points, INT count, REAL tension, GpFillMode fill)
2598{
2599 GpPath *path;
2600 GpStatus stat;
2601
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002602 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
2603 count, tension, fill);
2604
Nikolay Sivov4a441002008-08-22 02:16:49 +04002605 if(!graphics || !brush || !points)
2606 return InvalidParameter;
2607
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002608 if(graphics->busy)
2609 return ObjectBusy;
2610
Nikolay Sivov4a441002008-08-22 02:16:49 +04002611 stat = GdipCreatePath(fill, &path);
2612 if(stat != Ok)
2613 return stat;
2614
2615 stat = GdipAddPathClosedCurve2(path, points, count, tension);
2616 if(stat != Ok){
2617 GdipDeletePath(path);
2618 return stat;
2619 }
2620
2621 stat = GdipFillPath(graphics, brush, path);
2622 if(stat != Ok){
2623 GdipDeletePath(path);
2624 return stat;
2625 }
2626
2627 GdipDeletePath(path);
2628
2629 return Ok;
2630}
2631
2632GpStatus WINGDIPAPI GdipFillClosedCurve2I(GpGraphics *graphics, GpBrush *brush,
2633 GDIPCONST GpPoint *points, INT count, REAL tension, GpFillMode fill)
2634{
2635 GpPointF *ptf;
2636 GpStatus stat;
2637 INT i;
2638
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002639 TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points,
2640 count, tension, fill);
2641
Nikolay Sivov4a441002008-08-22 02:16:49 +04002642 if(!points || count <= 0)
2643 return InvalidParameter;
2644
2645 ptf = GdipAlloc(sizeof(GpPointF)*count);
2646 if(!ptf)
2647 return OutOfMemory;
2648
2649 for(i = 0;i < count;i++){
2650 ptf[i].X = (REAL)points[i].X;
2651 ptf[i].Y = (REAL)points[i].Y;
2652 }
2653
2654 stat = GdipFillClosedCurve2(graphics, brush, ptf, count, tension, fill);
2655
2656 GdipFree(ptf);
2657
2658 return stat;
2659}
2660
Nikolay Sivovfc2dc8b2008-04-29 00:10:10 +04002661GpStatus WINGDIPAPI GdipFillEllipse(GpGraphics *graphics, GpBrush *brush, REAL x,
2662 REAL y, REAL width, REAL height)
2663{
2664 INT save_state;
2665 GpPointF ptf[2];
2666 POINT pti[2];
2667
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002668 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
2669
Nikolay Sivovfc2dc8b2008-04-29 00:10:10 +04002670 if(!graphics || !brush)
2671 return InvalidParameter;
2672
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002673 if(graphics->busy)
2674 return ObjectBusy;
2675
Nikolay Sivovfc2dc8b2008-04-29 00:10:10 +04002676 ptf[0].X = x;
2677 ptf[0].Y = y;
2678 ptf[1].X = x + width;
2679 ptf[1].Y = y + height;
2680
2681 save_state = SaveDC(graphics->hdc);
2682 EndPath(graphics->hdc);
Nikolay Sivovfc2dc8b2008-04-29 00:10:10 +04002683
2684 transform_and_round_points(graphics, pti, ptf, 2);
2685
Vincent Povirke3063162009-07-11 10:29:44 -05002686 BeginPath(graphics->hdc);
Nikolay Sivovfc2dc8b2008-04-29 00:10:10 +04002687 Ellipse(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y);
Vincent Povirke3063162009-07-11 10:29:44 -05002688 EndPath(graphics->hdc);
2689
2690 brush_fill_path(graphics, brush);
Nikolay Sivovfc2dc8b2008-04-29 00:10:10 +04002691
2692 RestoreDC(graphics->hdc, save_state);
2693
2694 return Ok;
2695}
2696
2697GpStatus WINGDIPAPI GdipFillEllipseI(GpGraphics *graphics, GpBrush *brush, INT x,
2698 INT y, INT width, INT height)
2699{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002700 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
2701
Nikolay Sivovfc2dc8b2008-04-29 00:10:10 +04002702 return GdipFillEllipse(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
2703}
2704
Evan Staded362b582007-07-13 20:19:46 -07002705GpStatus WINGDIPAPI GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path)
2706{
2707 INT save_state;
2708 GpStatus retval;
2709
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002710 TRACE("(%p, %p, %p)\n", graphics, brush, path);
2711
Evan Staded362b582007-07-13 20:19:46 -07002712 if(!brush || !graphics || !path)
2713 return InvalidParameter;
2714
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002715 if(graphics->busy)
2716 return ObjectBusy;
2717
Evan Staded362b582007-07-13 20:19:46 -07002718 save_state = SaveDC(graphics->hdc);
2719 EndPath(graphics->hdc);
Evan Staded362b582007-07-13 20:19:46 -07002720 SetPolyFillMode(graphics->hdc, (path->fill == FillModeAlternate ? ALTERNATE
2721 : WINDING));
2722
2723 BeginPath(graphics->hdc);
Evan Staded01c6972007-07-23 20:24:53 -07002724 retval = draw_poly(graphics, NULL, path->pathdata.Points,
Evan Staded362b582007-07-13 20:19:46 -07002725 path->pathdata.Types, path->pathdata.Count, FALSE);
2726
2727 if(retval != Ok)
2728 goto end;
2729
2730 EndPath(graphics->hdc);
Vincent Povirk68dba4e2009-03-16 12:51:04 -05002731 brush_fill_path(graphics, brush);
Evan Staded362b582007-07-13 20:19:46 -07002732
2733 retval = Ok;
2734
2735end:
2736 RestoreDC(graphics->hdc, save_state);
2737
2738 return retval;
2739}
2740
Evan Stade72ab72c502007-06-18 16:55:51 -07002741GpStatus WINGDIPAPI GdipFillPie(GpGraphics *graphics, GpBrush *brush, REAL x,
2742 REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle)
2743{
Evan Stade4c424b32007-07-24 17:18:54 -07002744 INT save_state;
2745
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002746 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n",
2747 graphics, brush, x, y, width, height, startAngle, sweepAngle);
2748
Evan Stade4c424b32007-07-24 17:18:54 -07002749 if(!graphics || !brush)
Evan Stade72ab72c502007-06-18 16:55:51 -07002750 return InvalidParameter;
2751
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002752 if(graphics->busy)
2753 return ObjectBusy;
2754
Evan Stade4c424b32007-07-24 17:18:54 -07002755 save_state = SaveDC(graphics->hdc);
2756 EndPath(graphics->hdc);
Evan Stade4c424b32007-07-24 17:18:54 -07002757
Vincent Povirkbedbd402009-07-11 10:32:34 -05002758 BeginPath(graphics->hdc);
Evan Stade4c424b32007-07-24 17:18:54 -07002759 draw_pie(graphics, x, y, width, height, startAngle, sweepAngle);
Vincent Povirkbedbd402009-07-11 10:32:34 -05002760 EndPath(graphics->hdc);
2761
2762 brush_fill_path(graphics, brush);
Evan Stade4c424b32007-07-24 17:18:54 -07002763
2764 RestoreDC(graphics->hdc, save_state);
2765
2766 return Ok;
Evan Stade72ab72c502007-06-18 16:55:51 -07002767}
Evan Stade53e17d22007-07-13 17:51:13 -07002768
Nikolay Sivov2c059d72008-04-24 20:48:23 +04002769GpStatus WINGDIPAPI GdipFillPieI(GpGraphics *graphics, GpBrush *brush, INT x,
2770 INT y, INT width, INT height, REAL startAngle, REAL sweepAngle)
2771{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002772 TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n",
2773 graphics, brush, x, y, width, height, startAngle, sweepAngle);
2774
Nikolay Sivov2c059d72008-04-24 20:48:23 +04002775 return GdipFillPie(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle);
2776}
2777
Evan Stade1ef77932007-08-01 17:55:50 -07002778GpStatus WINGDIPAPI GdipFillPolygon(GpGraphics *graphics, GpBrush *brush,
2779 GDIPCONST GpPointF *points, INT count, GpFillMode fillMode)
2780{
2781 INT save_state;
2782 GpPointF *ptf = NULL;
2783 POINT *pti = NULL;
2784 GpStatus retval = Ok;
2785
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002786 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
2787
Evan Stade1ef77932007-08-01 17:55:50 -07002788 if(!graphics || !brush || !points || !count)
2789 return InvalidParameter;
2790
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002791 if(graphics->busy)
2792 return ObjectBusy;
2793
Evan Stade1ef77932007-08-01 17:55:50 -07002794 ptf = GdipAlloc(count * sizeof(GpPointF));
2795 pti = GdipAlloc(count * sizeof(POINT));
2796 if(!ptf || !pti){
2797 retval = OutOfMemory;
2798 goto end;
2799 }
2800
2801 memcpy(ptf, points, count * sizeof(GpPointF));
2802
2803 save_state = SaveDC(graphics->hdc);
2804 EndPath(graphics->hdc);
Evan Stade1ef77932007-08-01 17:55:50 -07002805 SetPolyFillMode(graphics->hdc, (fillMode == FillModeAlternate ? ALTERNATE
2806 : WINDING));
2807
2808 transform_and_round_points(graphics, pti, ptf, count);
Vincent Povirk15fef072009-07-11 10:35:40 -05002809
2810 BeginPath(graphics->hdc);
Evan Stade1ef77932007-08-01 17:55:50 -07002811 Polygon(graphics->hdc, pti, count);
Vincent Povirk15fef072009-07-11 10:35:40 -05002812 EndPath(graphics->hdc);
2813
2814 brush_fill_path(graphics, brush);
Evan Stade1ef77932007-08-01 17:55:50 -07002815
2816 RestoreDC(graphics->hdc, save_state);
2817
2818end:
2819 GdipFree(ptf);
2820 GdipFree(pti);
2821
2822 return retval;
2823}
2824
Evan Stade64675262007-07-23 20:24:35 -07002825GpStatus WINGDIPAPI GdipFillPolygonI(GpGraphics *graphics, GpBrush *brush,
2826 GDIPCONST GpPoint *points, INT count, GpFillMode fillMode)
2827{
Evan Staded01c6972007-07-23 20:24:53 -07002828 INT save_state, i;
2829 GpPointF *ptf = NULL;
2830 POINT *pti = NULL;
2831 GpStatus retval = Ok;
Evan Stade64675262007-07-23 20:24:35 -07002832
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002833 TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode);
2834
Evan Stade64675262007-07-23 20:24:35 -07002835 if(!graphics || !brush || !points || !count)
2836 return InvalidParameter;
2837
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002838 if(graphics->busy)
2839 return ObjectBusy;
2840
Evan Staded01c6972007-07-23 20:24:53 -07002841 ptf = GdipAlloc(count * sizeof(GpPointF));
2842 pti = GdipAlloc(count * sizeof(POINT));
2843 if(!ptf || !pti){
2844 retval = OutOfMemory;
2845 goto end;
2846 }
2847
2848 for(i = 0; i < count; i ++){
2849 ptf[i].X = (REAL) points[i].X;
2850 ptf[i].Y = (REAL) points[i].Y;
2851 }
2852
Evan Stade64675262007-07-23 20:24:35 -07002853 save_state = SaveDC(graphics->hdc);
2854 EndPath(graphics->hdc);
Evan Stade64675262007-07-23 20:24:35 -07002855 SetPolyFillMode(graphics->hdc, (fillMode == FillModeAlternate ? ALTERNATE
2856 : WINDING));
Evan Staded01c6972007-07-23 20:24:53 -07002857
2858 transform_and_round_points(graphics, pti, ptf, count);
Vincent Povirk38fc8942009-07-11 10:37:22 -05002859
2860 BeginPath(graphics->hdc);
Evan Staded01c6972007-07-23 20:24:53 -07002861 Polygon(graphics->hdc, pti, count);
Vincent Povirk38fc8942009-07-11 10:37:22 -05002862 EndPath(graphics->hdc);
2863
2864 brush_fill_path(graphics, brush);
Evan Stade64675262007-07-23 20:24:35 -07002865
2866 RestoreDC(graphics->hdc, save_state);
Evan Staded01c6972007-07-23 20:24:53 -07002867
2868end:
2869 GdipFree(ptf);
2870 GdipFree(pti);
2871
2872 return retval;
Evan Stade64675262007-07-23 20:24:35 -07002873}
2874
Nikolay Sivove04a6622008-08-03 12:19:36 +04002875GpStatus WINGDIPAPI GdipFillPolygon2(GpGraphics *graphics, GpBrush *brush,
2876 GDIPCONST GpPointF *points, INT count)
2877{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002878 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
2879
Nikolay Sivove04a6622008-08-03 12:19:36 +04002880 return GdipFillPolygon(graphics, brush, points, count, FillModeAlternate);
2881}
2882
2883GpStatus WINGDIPAPI GdipFillPolygon2I(GpGraphics *graphics, GpBrush *brush,
2884 GDIPCONST GpPoint *points, INT count)
2885{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002886 TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count);
2887
Nikolay Sivove04a6622008-08-03 12:19:36 +04002888 return GdipFillPolygonI(graphics, brush, points, count, FillModeAlternate);
2889}
2890
Evan Stadeb66c0a02007-08-08 19:42:10 -07002891GpStatus WINGDIPAPI GdipFillRectangle(GpGraphics *graphics, GpBrush *brush,
2892 REAL x, REAL y, REAL width, REAL height)
2893{
2894 INT save_state;
2895 GpPointF ptf[4];
2896 POINT pti[4];
2897
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002898 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height);
2899
Evan Stadeb66c0a02007-08-08 19:42:10 -07002900 if(!graphics || !brush)
2901 return InvalidParameter;
2902
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002903 if(graphics->busy)
2904 return ObjectBusy;
2905
Evan Stadeb66c0a02007-08-08 19:42:10 -07002906 ptf[0].X = x;
2907 ptf[0].Y = y;
2908 ptf[1].X = x + width;
2909 ptf[1].Y = y;
2910 ptf[2].X = x + width;
2911 ptf[2].Y = y + height;
2912 ptf[3].X = x;
2913 ptf[3].Y = y + height;
2914
2915 save_state = SaveDC(graphics->hdc);
2916 EndPath(graphics->hdc);
Evan Stadeb66c0a02007-08-08 19:42:10 -07002917
2918 transform_and_round_points(graphics, pti, ptf, 4);
2919
Vincent Povirk323e7e682009-05-06 16:34:19 -05002920 BeginPath(graphics->hdc);
Evan Stadeb66c0a02007-08-08 19:42:10 -07002921 Polygon(graphics->hdc, pti, 4);
Vincent Povirk323e7e682009-05-06 16:34:19 -05002922 EndPath(graphics->hdc);
2923
2924 brush_fill_path(graphics, brush);
Evan Stadeb66c0a02007-08-08 19:42:10 -07002925
2926 RestoreDC(graphics->hdc, save_state);
2927
2928 return Ok;
2929}
2930
Evan Stadebb904a22007-08-07 18:43:04 -07002931GpStatus WINGDIPAPI GdipFillRectangleI(GpGraphics *graphics, GpBrush *brush,
2932 INT x, INT y, INT width, INT height)
2933{
2934 INT save_state;
2935 GpPointF ptf[4];
2936 POINT pti[4];
2937
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002938 TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height);
2939
Evan Stadebb904a22007-08-07 18:43:04 -07002940 if(!graphics || !brush)
2941 return InvalidParameter;
2942
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04002943 if(graphics->busy)
2944 return ObjectBusy;
2945
Evan Stadebb904a22007-08-07 18:43:04 -07002946 ptf[0].X = x;
2947 ptf[0].Y = y;
2948 ptf[1].X = x + width;
2949 ptf[1].Y = y;
2950 ptf[2].X = x + width;
2951 ptf[2].Y = y + height;
2952 ptf[3].X = x;
2953 ptf[3].Y = y + height;
2954
2955 save_state = SaveDC(graphics->hdc);
2956 EndPath(graphics->hdc);
Evan Stadebb904a22007-08-07 18:43:04 -07002957
2958 transform_and_round_points(graphics, pti, ptf, 4);
2959
Vincent Povirk849af302009-07-11 10:38:47 -05002960 BeginPath(graphics->hdc);
Evan Stadebb904a22007-08-07 18:43:04 -07002961 Polygon(graphics->hdc, pti, 4);
Vincent Povirk849af302009-07-11 10:38:47 -05002962 EndPath(graphics->hdc);
2963
2964 brush_fill_path(graphics, brush);
Evan Stadebb904a22007-08-07 18:43:04 -07002965
2966 RestoreDC(graphics->hdc, save_state);
2967
2968 return Ok;
2969}
2970
Nikolay Sivov7ce48b02008-04-29 00:10:15 +04002971GpStatus WINGDIPAPI GdipFillRectangles(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRectF *rects,
2972 INT count)
2973{
2974 GpStatus ret;
2975 INT i;
2976
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002977 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
2978
Nikolay Sivov7ce48b02008-04-29 00:10:15 +04002979 if(!rects)
2980 return InvalidParameter;
2981
2982 for(i = 0; i < count; i++){
2983 ret = GdipFillRectangle(graphics, brush, rects[i].X, rects[i].Y, rects[i].Width, rects[i].Height);
2984 if(ret != Ok) return ret;
2985 }
2986
2987 return Ok;
2988}
2989
2990GpStatus WINGDIPAPI GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRect *rects,
2991 INT count)
2992{
2993 GpRectF *rectsF;
2994 GpStatus ret;
2995 INT i;
2996
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04002997 TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count);
2998
Nikolay Sivov7ce48b02008-04-29 00:10:15 +04002999 if(!rects || count <= 0)
3000 return InvalidParameter;
3001
3002 rectsF = GdipAlloc(sizeof(GpRectF)*count);
3003 if(!rectsF)
3004 return OutOfMemory;
3005
3006 for(i = 0; i < count; i++){
3007 rectsF[i].X = (REAL)rects[i].X;
3008 rectsF[i].Y = (REAL)rects[i].Y;
3009 rectsF[i].X = (REAL)rects[i].Width;
3010 rectsF[i].Height = (REAL)rects[i].Height;
3011 }
3012
3013 ret = GdipFillRectangles(graphics,brush,rectsF,count);
3014 GdipFree(rectsF);
3015
3016 return ret;
3017}
3018
Nikolay Sivov9f0edc52009-02-03 22:17:47 +03003019/*****************************************************************************
3020 * GdipFillRegion [GDIPLUS.@]
3021 */
Nikolay Sivov0e840f62008-07-10 23:15:59 +04003022GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
3023 GpRegion* region)
3024{
Nikolay Sivov9f0edc52009-02-03 22:17:47 +03003025 INT save_state;
3026 GpStatus status;
3027 HRGN hrgn;
Vincent Povirk6a8a7702009-07-11 10:57:07 -05003028 RECT rc;
Nikolay Sivov9f0edc52009-02-03 22:17:47 +03003029
3030 TRACE("(%p, %p, %p)\n", graphics, brush, region);
3031
Nikolay Sivov0e840f62008-07-10 23:15:59 +04003032 if (!(graphics && brush && region))
3033 return InvalidParameter;
3034
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003035 if(graphics->busy)
3036 return ObjectBusy;
3037
Nikolay Sivov9f0edc52009-02-03 22:17:47 +03003038 status = GdipGetRegionHRgn(region, graphics, &hrgn);
3039 if(status != Ok)
3040 return status;
Nikolay Sivov0e840f62008-07-10 23:15:59 +04003041
Nikolay Sivov9f0edc52009-02-03 22:17:47 +03003042 save_state = SaveDC(graphics->hdc);
3043 EndPath(graphics->hdc);
Nikolay Sivov9f0edc52009-02-03 22:17:47 +03003044
Vincent Povirk6a8a7702009-07-11 10:57:07 -05003045 ExtSelectClipRgn(graphics->hdc, hrgn, RGN_AND);
3046
3047 if (GetClipBox(graphics->hdc, &rc) != NULLREGION)
3048 {
3049 BeginPath(graphics->hdc);
3050 Rectangle(graphics->hdc, rc.left, rc.top, rc.right, rc.bottom);
3051 EndPath(graphics->hdc);
3052
3053 brush_fill_path(graphics, brush);
3054 }
Nikolay Sivov9f0edc52009-02-03 22:17:47 +03003055
3056 RestoreDC(graphics->hdc, save_state);
3057
3058 DeleteObject(hrgn);
3059
3060 return Ok;
Nikolay Sivov0e840f62008-07-10 23:15:59 +04003061}
3062
Nikolay Sivovf620b662008-06-18 11:33:10 +04003063GpStatus WINGDIPAPI GdipFlush(GpGraphics *graphics, GpFlushIntention intention)
3064{
3065 static int calls;
3066
3067 if(!graphics)
3068 return InvalidParameter;
3069
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003070 if(graphics->busy)
3071 return ObjectBusy;
3072
Nikolay Sivovf620b662008-06-18 11:33:10 +04003073 if(!(calls++))
3074 FIXME("not implemented\n");
3075
3076 return NotImplemented;
3077}
3078
Nikolay Sivovbcfe4e72009-02-02 22:58:27 +03003079/*****************************************************************************
3080 * GdipGetClipBounds [GDIPLUS.@]
3081 */
3082GpStatus WINGDIPAPI GdipGetClipBounds(GpGraphics *graphics, GpRectF *rect)
3083{
3084 TRACE("(%p, %p)\n", graphics, rect);
3085
3086 if(!graphics)
3087 return InvalidParameter;
3088
Nikolay Sivov8c096162009-02-02 23:48:01 +03003089 if(graphics->busy)
3090 return ObjectBusy;
3091
Nikolay Sivovbcfe4e72009-02-02 22:58:27 +03003092 return GdipGetRegionBounds(graphics->clip, graphics, rect);
3093}
3094
3095/*****************************************************************************
3096 * GdipGetClipBoundsI [GDIPLUS.@]
3097 */
3098GpStatus WINGDIPAPI GdipGetClipBoundsI(GpGraphics *graphics, GpRect *rect)
3099{
3100 TRACE("(%p, %p)\n", graphics, rect);
3101
3102 if(!graphics)
3103 return InvalidParameter;
3104
Nikolay Sivov8c096162009-02-02 23:48:01 +03003105 if(graphics->busy)
3106 return ObjectBusy;
3107
Nikolay Sivovbcfe4e72009-02-02 22:58:27 +03003108 return GdipGetRegionBoundsI(graphics->clip, graphics, rect);
3109}
3110
Evan Stadee807eb92007-08-13 18:34:27 -07003111/* FIXME: Compositing mode is not used anywhere except the getter/setter. */
3112GpStatus WINGDIPAPI GdipGetCompositingMode(GpGraphics *graphics,
3113 CompositingMode *mode)
3114{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003115 TRACE("(%p, %p)\n", graphics, mode);
3116
Evan Stadee807eb92007-08-13 18:34:27 -07003117 if(!graphics || !mode)
3118 return InvalidParameter;
3119
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003120 if(graphics->busy)
3121 return ObjectBusy;
3122
Evan Stadee807eb92007-08-13 18:34:27 -07003123 *mode = graphics->compmode;
3124
3125 return Ok;
3126}
3127
Evan Stade60cad232007-07-13 17:51:25 -07003128/* FIXME: Compositing quality is not used anywhere except the getter/setter. */
3129GpStatus WINGDIPAPI GdipGetCompositingQuality(GpGraphics *graphics,
3130 CompositingQuality *quality)
3131{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003132 TRACE("(%p, %p)\n", graphics, quality);
3133
Evan Stade60cad232007-07-13 17:51:25 -07003134 if(!graphics || !quality)
3135 return InvalidParameter;
3136
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003137 if(graphics->busy)
3138 return ObjectBusy;
3139
Evan Stade60cad232007-07-13 17:51:25 -07003140 *quality = graphics->compqual;
3141
3142 return Ok;
3143}
3144
Evan Stadea87ce7a2007-07-13 17:51:29 -07003145/* FIXME: Interpolation mode is not used anywhere except the getter/setter. */
3146GpStatus WINGDIPAPI GdipGetInterpolationMode(GpGraphics *graphics,
3147 InterpolationMode *mode)
3148{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003149 TRACE("(%p, %p)\n", graphics, mode);
3150
Evan Stadea87ce7a2007-07-13 17:51:29 -07003151 if(!graphics || !mode)
3152 return InvalidParameter;
3153
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003154 if(graphics->busy)
3155 return ObjectBusy;
3156
Evan Stadea87ce7a2007-07-13 17:51:29 -07003157 *mode = graphics->interpolation;
3158
3159 return Ok;
3160}
3161
Nikolay Sivov63ae7142008-12-11 10:32:43 +03003162GpStatus WINGDIPAPI GdipGetNearestColor(GpGraphics *graphics, ARGB* argb)
3163{
3164 if(!graphics || !argb)
3165 return InvalidParameter;
3166
3167 if(graphics->busy)
3168 return ObjectBusy;
3169
3170 FIXME("(%p, %p): stub\n", graphics, argb);
3171
3172 return NotImplemented;
3173}
3174
Evan Stade81621392007-07-24 17:18:39 -07003175GpStatus WINGDIPAPI GdipGetPageScale(GpGraphics *graphics, REAL *scale)
3176{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003177 TRACE("(%p, %p)\n", graphics, scale);
3178
Evan Stade81621392007-07-24 17:18:39 -07003179 if(!graphics || !scale)
3180 return InvalidParameter;
3181
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003182 if(graphics->busy)
3183 return ObjectBusy;
3184
Evan Stade81621392007-07-24 17:18:39 -07003185 *scale = graphics->scale;
3186
3187 return Ok;
3188}
3189
Evan Stade10b575b2007-07-23 20:24:41 -07003190GpStatus WINGDIPAPI GdipGetPageUnit(GpGraphics *graphics, GpUnit *unit)
3191{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003192 TRACE("(%p, %p)\n", graphics, unit);
3193
Evan Stade10b575b2007-07-23 20:24:41 -07003194 if(!graphics || !unit)
3195 return InvalidParameter;
3196
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003197 if(graphics->busy)
3198 return ObjectBusy;
3199
Evan Stade10b575b2007-07-23 20:24:41 -07003200 *unit = graphics->unit;
3201
3202 return Ok;
3203}
3204
Evan Staded6bd866d2007-07-13 17:51:33 -07003205/* FIXME: Pixel offset mode is not used anywhere except the getter/setter. */
3206GpStatus WINGDIPAPI GdipGetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
3207 *mode)
3208{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003209 TRACE("(%p, %p)\n", graphics, mode);
3210
Evan Staded6bd866d2007-07-13 17:51:33 -07003211 if(!graphics || !mode)
3212 return InvalidParameter;
3213
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003214 if(graphics->busy)
3215 return ObjectBusy;
3216
Evan Staded6bd866d2007-07-13 17:51:33 -07003217 *mode = graphics->pixeloffset;
3218
3219 return Ok;
3220}
3221
Evan Stade53e17d22007-07-13 17:51:13 -07003222/* FIXME: Smoothing mode is not used anywhere except the getter/setter. */
3223GpStatus WINGDIPAPI GdipGetSmoothingMode(GpGraphics *graphics, SmoothingMode *mode)
3224{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003225 TRACE("(%p, %p)\n", graphics, mode);
3226
Evan Stade53e17d22007-07-13 17:51:13 -07003227 if(!graphics || !mode)
3228 return InvalidParameter;
3229
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003230 if(graphics->busy)
3231 return ObjectBusy;
3232
Evan Stade53e17d22007-07-13 17:51:13 -07003233 *mode = graphics->smoothing;
3234
3235 return Ok;
3236}
3237
Nikolay Sivov56173d42008-11-09 14:32:26 +03003238GpStatus WINGDIPAPI GdipGetTextContrast(GpGraphics *graphics, UINT *contrast)
3239{
3240 TRACE("(%p, %p)\n", graphics, contrast);
3241
3242 if(!graphics || !contrast)
3243 return InvalidParameter;
3244
3245 *contrast = graphics->textcontrast;
3246
3247 return Ok;
3248}
3249
Evan Stade56628202007-08-14 19:00:09 -07003250/* FIXME: Text rendering hint is not used anywhere except the getter/setter. */
3251GpStatus WINGDIPAPI GdipGetTextRenderingHint(GpGraphics *graphics,
3252 TextRenderingHint *hint)
3253{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003254 TRACE("(%p, %p)\n", graphics, hint);
3255
Evan Stade56628202007-08-14 19:00:09 -07003256 if(!graphics || !hint)
3257 return InvalidParameter;
3258
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003259 if(graphics->busy)
3260 return ObjectBusy;
3261
Evan Stade56628202007-08-14 19:00:09 -07003262 *hint = graphics->texthint;
3263
3264 return Ok;
3265}
3266
Andrew Eikumef0ee6e2009-08-12 15:37:09 -05003267GpStatus WINGDIPAPI GdipGetVisibleClipBounds(GpGraphics *graphics, GpRectF *rect)
3268{
3269 GpRegion *clip_rgn;
3270 GpStatus stat;
Andrew Eikumef0ee6e2009-08-12 15:37:09 -05003271
3272 TRACE("(%p, %p)\n", graphics, rect);
3273
3274 if(!graphics || !rect)
3275 return InvalidParameter;
3276
3277 if(graphics->busy)
3278 return ObjectBusy;
3279
Andrew Eikumef0ee6e2009-08-12 15:37:09 -05003280 /* intersect window and graphics clipping regions */
3281 if((stat = GdipCreateRegion(&clip_rgn)) != Ok)
3282 return stat;
3283
Andrew Eikum39f6f492009-08-26 18:03:08 -05003284 if((stat = get_visible_clip_region(graphics, clip_rgn)) != Ok)
Andrew Eikumef0ee6e2009-08-12 15:37:09 -05003285 goto cleanup;
3286
3287 /* get bounds of the region */
3288 stat = GdipGetRegionBounds(clip_rgn, graphics, rect);
3289
3290cleanup:
3291 GdipDeleteRegion(clip_rgn);
3292
3293 return stat;
3294}
3295
3296GpStatus WINGDIPAPI GdipGetVisibleClipBoundsI(GpGraphics *graphics, GpRect *rect)
3297{
3298 GpRectF rectf;
3299 GpStatus stat;
3300
3301 TRACE("(%p, %p)\n", graphics, rect);
3302
3303 if(!graphics || !rect)
3304 return InvalidParameter;
3305
3306 if((stat = GdipGetVisibleClipBounds(graphics, &rectf)) == Ok)
3307 {
3308 rect->X = roundr(rectf.X);
3309 rect->Y = roundr(rectf.Y);
3310 rect->Width = roundr(rectf.Width);
3311 rect->Height = roundr(rectf.Height);
3312 }
3313
3314 return stat;
3315}
3316
Evan Stadef30732f2007-07-24 17:18:47 -07003317GpStatus WINGDIPAPI GdipGetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
3318{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003319 TRACE("(%p, %p)\n", graphics, matrix);
3320
Evan Stadef30732f2007-07-24 17:18:47 -07003321 if(!graphics || !matrix)
3322 return InvalidParameter;
3323
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003324 if(graphics->busy)
3325 return ObjectBusy;
3326
Andrew Talbot5e8253a2008-02-29 22:06:47 +00003327 *matrix = *graphics->worldtrans;
Evan Stadef30732f2007-07-24 17:18:47 -07003328 return Ok;
3329}
3330
Nikolay Sivovbff16782008-09-05 13:56:10 +04003331GpStatus WINGDIPAPI GdipGraphicsClear(GpGraphics *graphics, ARGB color)
3332{
3333 GpSolidFill *brush;
3334 GpStatus stat;
Andrew Eikumfdf48f12009-08-12 15:36:54 -05003335 GpRectF wnd_rect;
Nikolay Sivovbff16782008-09-05 13:56:10 +04003336
3337 TRACE("(%p, %x)\n", graphics, color);
3338
3339 if(!graphics)
3340 return InvalidParameter;
3341
3342 if(graphics->busy)
3343 return ObjectBusy;
3344
3345 if((stat = GdipCreateSolidFill(color, &brush)) != Ok)
3346 return stat;
3347
Andrew Eikumfdf48f12009-08-12 15:36:54 -05003348 if((stat = get_graphics_bounds(graphics, &wnd_rect)) != Ok){
3349 GdipDeleteBrush((GpBrush*)brush);
3350 return stat;
Nikolay Sivovbff16782008-09-05 13:56:10 +04003351 }
Andrew Eikumfdf48f12009-08-12 15:36:54 -05003352
3353 GdipFillRectangle(graphics, (GpBrush*)brush, wnd_rect.X, wnd_rect.Y,
3354 wnd_rect.Width, wnd_rect.Height);
Nikolay Sivovbff16782008-09-05 13:56:10 +04003355
3356 GdipDeleteBrush((GpBrush*)brush);
3357
3358 return Ok;
3359}
3360
Nikolay Sivov813d6dc2008-08-28 17:49:41 +04003361GpStatus WINGDIPAPI GdipIsClipEmpty(GpGraphics *graphics, BOOL *res)
3362{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003363 TRACE("(%p, %p)\n", graphics, res);
3364
Nikolay Sivov813d6dc2008-08-28 17:49:41 +04003365 if(!graphics || !res)
3366 return InvalidParameter;
3367
3368 return GdipIsEmptyRegion(graphics->clip, graphics, res);
3369}
3370
Nikolay Sivov3ecb8bd2008-09-26 22:34:39 +04003371GpStatus WINGDIPAPI GdipIsVisiblePoint(GpGraphics *graphics, REAL x, REAL y, BOOL *result)
3372{
Andrew Eikumd06dd2d2009-08-26 18:03:11 -05003373 GpStatus stat;
3374 GpRegion* rgn;
3375 GpPointF pt;
3376
3377 TRACE("(%p, %.2f, %.2f, %p)\n", graphics, x, y, result);
Nikolay Sivov3ecb8bd2008-09-26 22:34:39 +04003378
3379 if(!graphics || !result)
3380 return InvalidParameter;
3381
3382 if(graphics->busy)
3383 return ObjectBusy;
3384
Andrew Eikumd06dd2d2009-08-26 18:03:11 -05003385 pt.X = x;
3386 pt.Y = y;
3387 if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice,
3388 CoordinateSpaceWorld, &pt, 1)) != Ok)
3389 return stat;
3390
3391 if((stat = GdipCreateRegion(&rgn)) != Ok)
3392 return stat;
3393
3394 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
3395 goto cleanup;
3396
3397 stat = GdipIsVisibleRegionPoint(rgn, pt.X, pt.Y, graphics, result);
3398
3399cleanup:
3400 GdipDeleteRegion(rgn);
3401 return stat;
Nikolay Sivov3ecb8bd2008-09-26 22:34:39 +04003402}
3403
3404GpStatus WINGDIPAPI GdipIsVisiblePointI(GpGraphics *graphics, INT x, INT y, BOOL *result)
3405{
Andrew Eikumd06dd2d2009-08-26 18:03:11 -05003406 return GdipIsVisiblePoint(graphics, (REAL)x, (REAL)y, result);
Nikolay Sivov3ecb8bd2008-09-26 22:34:39 +04003407}
3408
Andrew Eikumf5896a22009-08-26 18:03:13 -05003409GpStatus WINGDIPAPI GdipIsVisibleRect(GpGraphics *graphics, REAL x, REAL y, REAL width, REAL height, BOOL *result)
3410{
3411 GpStatus stat;
3412 GpRegion* rgn;
3413 GpPointF pts[2];
3414
3415 TRACE("(%p %.2f %.2f %.2f %.2f %p)\n", graphics, x, y, width, height, result);
3416
3417 if(!graphics || !result)
3418 return InvalidParameter;
3419
3420 if(graphics->busy)
3421 return ObjectBusy;
3422
3423 pts[0].X = x;
3424 pts[0].Y = y;
3425 pts[1].X = x + width;
3426 pts[1].Y = y + height;
3427
3428 if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice,
3429 CoordinateSpaceWorld, pts, 2)) != Ok)
3430 return stat;
3431
3432 pts[1].X -= pts[0].X;
3433 pts[1].Y -= pts[0].Y;
3434
3435 if((stat = GdipCreateRegion(&rgn)) != Ok)
3436 return stat;
3437
3438 if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
3439 goto cleanup;
3440
3441 stat = GdipIsVisibleRegionRect(rgn, pts[0].X, pts[0].Y, pts[1].X, pts[1].Y, graphics, result);
3442
3443cleanup:
3444 GdipDeleteRegion(rgn);
3445 return stat;
3446}
3447
3448GpStatus WINGDIPAPI GdipIsVisibleRectI(GpGraphics *graphics, INT x, INT y, INT width, INT height, BOOL *result)
3449{
3450 return GdipIsVisibleRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, result);
3451}
3452
Adam Petacciabe4a2262008-07-09 03:33:40 -04003453GpStatus WINGDIPAPI GdipMeasureCharacterRanges(GpGraphics* graphics,
3454 GDIPCONST WCHAR* string, INT length, GDIPCONST GpFont* font,
3455 GDIPCONST RectF* layoutRect, GDIPCONST GpStringFormat *stringFormat,
3456 INT regionCount, GpRegion** regions)
3457{
3458 if (!(graphics && string && font && layoutRect && stringFormat && regions))
3459 return InvalidParameter;
3460
3461 FIXME("stub: %p %s %d %p %p %p %d %p\n", graphics, debugstr_w(string),
3462 length, font, layoutRect, stringFormat, regionCount, regions);
3463
3464 return NotImplemented;
3465}
3466
Evan Stade44e98392007-08-15 16:22:09 -07003467/* Find the smallest rectangle that bounds the text when it is printed in rect
3468 * according to the format options listed in format. If rect has 0 width and
3469 * height, then just find the smallest rectangle that bounds the text when it's
3470 * printed at location (rect->X, rect-Y). */
Evan Stadea51cf1d2007-08-15 16:21:52 -07003471GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics,
3472 GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
3473 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format, RectF *bounds,
3474 INT *codepointsfitted, INT *linesfilled)
3475{
3476 HFONT oldfont;
3477 WCHAR* stringdup;
Evan Stade44e98392007-08-15 16:22:09 -07003478 INT sum = 0, height = 0, fit, fitcpy, max_width = 0, i, j, lret, nwidth,
Vincent Povirke0d9d172009-07-24 16:24:19 -05003479 nheight, lineend;
Evan Stadea51cf1d2007-08-15 16:21:52 -07003480 SIZE size;
3481
Vincent Povirk0f80aa82009-05-13 14:30:00 -05003482 TRACE("(%p, %s, %i, %p, %s, %p, %p, %p, %p)\n", graphics,
3483 debugstr_wn(string, length), length, font, debugstr_rectf(rect), format,
3484 bounds, codepointsfitted, linesfilled);
3485
Evan Stadea51cf1d2007-08-15 16:21:52 -07003486 if(!graphics || !string || !font || !rect)
3487 return InvalidParameter;
3488
Hans Leidekker1e170c92008-11-24 10:22:26 +01003489 if(linesfilled) *linesfilled = 0;
3490 if(codepointsfitted) *codepointsfitted = 0;
Evan Stadea51cf1d2007-08-15 16:21:52 -07003491
Evan Staded4107db2007-08-15 16:22:04 -07003492 if(format)
3493 TRACE("may be ignoring some format flags: attr %x\n", format->attr);
3494
Evan Stadea51cf1d2007-08-15 16:21:52 -07003495 if(length == -1) length = lstrlenW(string);
3496
Alexandre Julliarda2d04672008-09-25 11:19:23 +02003497 stringdup = GdipAlloc((length + 1) * sizeof(WCHAR));
Evan Stadea51cf1d2007-08-15 16:21:52 -07003498 if(!stringdup) return OutOfMemory;
3499
3500 oldfont = SelectObject(graphics->hdc, CreateFontIndirectW(&font->lfw));
3501 nwidth = roundr(rect->Width);
Evan Stade44e98392007-08-15 16:22:09 -07003502 nheight = roundr(rect->Height);
3503
3504 if((nwidth == 0) && (nheight == 0))
3505 nwidth = nheight = INT_MAX;
Evan Stadea51cf1d2007-08-15 16:21:52 -07003506
3507 for(i = 0, j = 0; i < length; i++){
3508 if(!isprintW(string[i]) && (string[i] != '\n'))
3509 continue;
3510
3511 stringdup[j] = string[i];
3512 j++;
3513 }
3514
3515 stringdup[j] = 0;
3516 length = j;
3517
3518 while(sum < length){
3519 GetTextExtentExPointW(graphics->hdc, stringdup + sum, length - sum,
3520 nwidth, &fit, NULL, &size);
3521 fitcpy = fit;
3522
3523 if(fit == 0)
3524 break;
3525
3526 for(lret = 0; lret < fit; lret++)
3527 if(*(stringdup + sum + lret) == '\n')
3528 break;
3529
3530 /* Line break code (may look strange, but it imitates windows). */
3531 if(lret < fit)
Vincent Povirke0d9d172009-07-24 16:24:19 -05003532 lineend = fit = lret; /* this is not an off-by-one error */
Evan Stadea51cf1d2007-08-15 16:21:52 -07003533 else if(fit < (length - sum)){
3534 if(*(stringdup + sum + fit) == ' ')
3535 while(*(stringdup + sum + fit) == ' ')
3536 fit++;
3537 else
3538 while(*(stringdup + sum + fit - 1) != ' '){
3539 fit--;
3540
3541 if(*(stringdup + sum + fit) == '\t')
3542 break;
3543
3544 if(fit == 0){
3545 fit = fitcpy;
3546 break;
3547 }
3548 }
Vincent Povirke0d9d172009-07-24 16:24:19 -05003549 lineend = fit;
3550 while(*(stringdup + sum + lineend - 1) == ' ' ||
3551 *(stringdup + sum + lineend - 1) == '\t')
3552 lineend--;
Evan Stadea51cf1d2007-08-15 16:21:52 -07003553 }
Vincent Povirke0d9d172009-07-24 16:24:19 -05003554 else
3555 lineend = fit;
Evan Stadea51cf1d2007-08-15 16:21:52 -07003556
Vincent Povirke0d9d172009-07-24 16:24:19 -05003557 GetTextExtentExPointW(graphics->hdc, stringdup + sum, lineend,
Evan Stadea51cf1d2007-08-15 16:21:52 -07003558 nwidth, &j, NULL, &size);
3559
3560 sum += fit + (lret < fitcpy ? 1 : 0);
Hans Leidekker1e170c92008-11-24 10:22:26 +01003561 if(codepointsfitted) *codepointsfitted = sum;
3562
Evan Stadea51cf1d2007-08-15 16:21:52 -07003563 height += size.cy;
Hans Leidekker1e170c92008-11-24 10:22:26 +01003564 if(linesfilled) *linesfilled += size.cy;
Evan Stadea51cf1d2007-08-15 16:21:52 -07003565 max_width = max(max_width, size.cx);
3566
Evan Stade44e98392007-08-15 16:22:09 -07003567 if(height > nheight)
Evan Stadea51cf1d2007-08-15 16:21:52 -07003568 break;
Evan Staded4107db2007-08-15 16:22:04 -07003569
3570 /* Stop if this was a linewrap (but not if it was a linebreak). */
3571 if((lret == fitcpy) && format && (format->attr & StringFormatFlagsNoWrap))
3572 break;
Evan Stadea51cf1d2007-08-15 16:21:52 -07003573 }
3574
3575 bounds->X = rect->X;
3576 bounds->Y = rect->Y;
3577 bounds->Width = (REAL)max_width;
Evan Stade44e98392007-08-15 16:22:09 -07003578 bounds->Height = (REAL) min(height, nheight);
Evan Stadea51cf1d2007-08-15 16:21:52 -07003579
Andrew Talbotdfac0632007-09-25 20:52:58 +01003580 GdipFree(stringdup);
Evan Stadea51cf1d2007-08-15 16:21:52 -07003581 DeleteObject(SelectObject(graphics->hdc, oldfont));
3582
3583 return Ok;
3584}
3585
Nikolay Sivovff88d4e2008-08-28 17:34:22 +04003586GpStatus WINGDIPAPI GdipResetClip(GpGraphics *graphics)
3587{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003588 TRACE("(%p)\n", graphics);
3589
Nikolay Sivovff88d4e2008-08-28 17:34:22 +04003590 if(!graphics)
3591 return InvalidParameter;
3592
3593 if(graphics->busy)
3594 return ObjectBusy;
3595
3596 return GdipSetInfinite(graphics->clip);
3597}
3598
Nikolay Sivov169e87d2008-08-06 18:36:16 +04003599GpStatus WINGDIPAPI GdipResetWorldTransform(GpGraphics *graphics)
3600{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003601 TRACE("(%p)\n", graphics);
3602
Nikolay Sivov169e87d2008-08-06 18:36:16 +04003603 if(!graphics)
3604 return InvalidParameter;
3605
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003606 if(graphics->busy)
3607 return ObjectBusy;
3608
Nikolay Sivov169e87d2008-08-06 18:36:16 +04003609 graphics->worldtrans->matrix[0] = 1.0;
3610 graphics->worldtrans->matrix[1] = 0.0;
3611 graphics->worldtrans->matrix[2] = 0.0;
3612 graphics->worldtrans->matrix[3] = 1.0;
3613 graphics->worldtrans->matrix[4] = 0.0;
3614 graphics->worldtrans->matrix[5] = 0.0;
3615
3616 return Ok;
3617}
3618
Evan Stadec7606682007-07-13 17:51:37 -07003619GpStatus WINGDIPAPI GdipRestoreGraphics(GpGraphics *graphics, GraphicsState state)
3620{
Andrew Eikum1ef13942009-07-07 22:30:49 -05003621 return GdipEndContainer(graphics, state);
Evan Stadec7606682007-07-13 17:51:37 -07003622}
3623
Evan Stade3126c772007-08-13 18:34:35 -07003624GpStatus WINGDIPAPI GdipRotateWorldTransform(GpGraphics *graphics, REAL angle,
3625 GpMatrixOrder order)
3626{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003627 TRACE("(%p, %.2f, %d)\n", graphics, angle, order);
3628
Evan Stade3126c772007-08-13 18:34:35 -07003629 if(!graphics)
3630 return InvalidParameter;
3631
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003632 if(graphics->busy)
3633 return ObjectBusy;
3634
Evan Stade3126c772007-08-13 18:34:35 -07003635 return GdipRotateMatrix(graphics->worldtrans, angle, order);
3636}
3637
Evan Stadec7606682007-07-13 17:51:37 -07003638GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state)
3639{
Andrew Eikum1ef13942009-07-07 22:30:49 -05003640 return GdipBeginContainer2(graphics, state);
Evan Stadec7606682007-07-13 17:51:37 -07003641}
3642
Andrew Eikum632aef32009-07-05 17:04:20 -05003643GpStatus WINGDIPAPI GdipBeginContainer2(GpGraphics *graphics,
3644 GraphicsContainer *state)
Hans Leidekker5ce729a2008-11-24 10:22:51 +01003645{
Andrew Eikum632aef32009-07-05 17:04:20 -05003646 GraphicsContainerItem *container;
3647 GpStatus sts;
3648
3649 TRACE("(%p, %p)\n", graphics, state);
Hans Leidekker5ce729a2008-11-24 10:22:51 +01003650
3651 if(!graphics || !state)
3652 return InvalidParameter;
3653
Andrew Eikum632aef32009-07-05 17:04:20 -05003654 sts = init_container(&container, graphics);
3655 if(sts != Ok)
3656 return sts;
3657
3658 list_add_head(&graphics->containers, &container->entry);
3659 *state = graphics->contid = container->contid;
3660
Hans Leidekker5ce729a2008-11-24 10:22:51 +01003661 return Ok;
3662}
3663
Andrew Eikum30915062009-05-31 15:00:03 -05003664GpStatus WINGDIPAPI GdipBeginContainer(GpGraphics *graphics, GDIPCONST GpRectF *dstrect, GDIPCONST GpRectF *srcrect, GpUnit unit, GraphicsContainer *state)
3665{
3666 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
3667 return NotImplemented;
3668}
3669
3670GpStatus WINGDIPAPI GdipBeginContainerI(GpGraphics *graphics, GDIPCONST GpRect *dstrect, GDIPCONST GpRect *srcrect, GpUnit unit, GraphicsContainer *state)
3671{
3672 FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state);
3673 return NotImplemented;
3674}
3675
Andrew Eikumb8500082009-06-01 20:01:43 -05003676GpStatus WINGDIPAPI GdipComment(GpGraphics *graphics, UINT sizeData, GDIPCONST BYTE *data)
3677{
3678 FIXME("(%p, %d, %p): stub\n", graphics, sizeData, data);
3679 return NotImplemented;
3680}
3681
Andrew Eikuma06c2572009-07-07 22:30:29 -05003682GpStatus WINGDIPAPI GdipEndContainer(GpGraphics *graphics, GraphicsContainer state)
Hans Leidekker5ce729a2008-11-24 10:22:51 +01003683{
Andrew Eikum632aef32009-07-05 17:04:20 -05003684 GpStatus sts;
3685 GraphicsContainerItem *container, *container2;
Hans Leidekker5ce729a2008-11-24 10:22:51 +01003686
Andrew Eikum632aef32009-07-05 17:04:20 -05003687 TRACE("(%p, %x)\n", graphics, state);
3688
3689 if(!graphics)
Hans Leidekker5ce729a2008-11-24 10:22:51 +01003690 return InvalidParameter;
3691
Andrew Eikum632aef32009-07-05 17:04:20 -05003692 LIST_FOR_EACH_ENTRY(container, &graphics->containers, GraphicsContainerItem, entry){
3693 if(container->contid == state)
3694 break;
3695 }
3696
3697 /* did not find a matching container */
3698 if(&container->entry == &graphics->containers)
3699 return Ok;
3700
Andrew Eikuma06c2572009-07-07 22:30:29 -05003701 sts = restore_container(graphics, container);
3702 if(sts != Ok)
3703 return sts;
3704
Andrew Eikum632aef32009-07-05 17:04:20 -05003705 /* remove all of the containers on top of the found container */
3706 LIST_FOR_EACH_ENTRY_SAFE(container, container2, &graphics->containers, GraphicsContainerItem, entry){
3707 if(container->contid == state)
3708 break;
3709 list_remove(&container->entry);
3710 delete_container(container);
3711 }
3712
3713 list_remove(&container->entry);
Andrew Eikum632aef32009-07-05 17:04:20 -05003714 delete_container(container);
3715
Andrew Eikuma06c2572009-07-07 22:30:29 -05003716 return Ok;
Hans Leidekker5ce729a2008-11-24 10:22:51 +01003717}
3718
Evan Stade30fdcc72007-08-13 18:34:38 -07003719GpStatus WINGDIPAPI GdipScaleWorldTransform(GpGraphics *graphics, REAL sx,
3720 REAL sy, GpMatrixOrder order)
3721{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003722 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, sx, sy, order);
3723
Evan Stade30fdcc72007-08-13 18:34:38 -07003724 if(!graphics)
3725 return InvalidParameter;
3726
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003727 if(graphics->busy)
3728 return ObjectBusy;
3729
Evan Stade30fdcc72007-08-13 18:34:38 -07003730 return GdipScaleMatrix(graphics->worldtrans, sx, sy, order);
3731}
3732
Nikolay Sivovc543f3d2008-10-22 20:03:10 +04003733GpStatus WINGDIPAPI GdipSetClipGraphics(GpGraphics *graphics, GpGraphics *srcgraphics,
3734 CombineMode mode)
3735{
3736 TRACE("(%p, %p, %d)\n", graphics, srcgraphics, mode);
3737
3738 if(!graphics || !srcgraphics)
3739 return InvalidParameter;
3740
3741 return GdipCombineRegionRegion(graphics->clip, srcgraphics->clip, mode);
3742}
3743
Evan Stadee807eb92007-08-13 18:34:27 -07003744GpStatus WINGDIPAPI GdipSetCompositingMode(GpGraphics *graphics,
3745 CompositingMode mode)
3746{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003747 TRACE("(%p, %d)\n", graphics, mode);
3748
Evan Stadee807eb92007-08-13 18:34:27 -07003749 if(!graphics)
3750 return InvalidParameter;
3751
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003752 if(graphics->busy)
3753 return ObjectBusy;
3754
Evan Stadee807eb92007-08-13 18:34:27 -07003755 graphics->compmode = mode;
3756
3757 return Ok;
3758}
3759
Evan Stade60cad232007-07-13 17:51:25 -07003760GpStatus WINGDIPAPI GdipSetCompositingQuality(GpGraphics *graphics,
3761 CompositingQuality quality)
3762{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003763 TRACE("(%p, %d)\n", graphics, quality);
3764
Evan Stade60cad232007-07-13 17:51:25 -07003765 if(!graphics)
3766 return InvalidParameter;
3767
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003768 if(graphics->busy)
3769 return ObjectBusy;
3770
Evan Stade60cad232007-07-13 17:51:25 -07003771 graphics->compqual = quality;
3772
3773 return Ok;
3774}
3775
Evan Stadea87ce7a2007-07-13 17:51:29 -07003776GpStatus WINGDIPAPI GdipSetInterpolationMode(GpGraphics *graphics,
3777 InterpolationMode mode)
3778{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003779 TRACE("(%p, %d)\n", graphics, mode);
3780
Evan Stadea87ce7a2007-07-13 17:51:29 -07003781 if(!graphics)
3782 return InvalidParameter;
3783
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003784 if(graphics->busy)
3785 return ObjectBusy;
3786
Evan Stadea87ce7a2007-07-13 17:51:29 -07003787 graphics->interpolation = mode;
3788
3789 return Ok;
3790}
3791
Evan Stade81621392007-07-24 17:18:39 -07003792GpStatus WINGDIPAPI GdipSetPageScale(GpGraphics *graphics, REAL scale)
3793{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003794 TRACE("(%p, %.2f)\n", graphics, scale);
3795
Evan Stade81621392007-07-24 17:18:39 -07003796 if(!graphics || (scale <= 0.0))
3797 return InvalidParameter;
3798
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003799 if(graphics->busy)
3800 return ObjectBusy;
3801
Evan Stade81621392007-07-24 17:18:39 -07003802 graphics->scale = scale;
3803
3804 return Ok;
3805}
3806
Evan Stade10b575b2007-07-23 20:24:41 -07003807GpStatus WINGDIPAPI GdipSetPageUnit(GpGraphics *graphics, GpUnit unit)
3808{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003809 TRACE("(%p, %d)\n", graphics, unit);
3810
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003811 if(!graphics)
3812 return InvalidParameter;
3813
3814 if(graphics->busy)
3815 return ObjectBusy;
3816
3817 if(unit == UnitWorld)
Evan Stade10b575b2007-07-23 20:24:41 -07003818 return InvalidParameter;
3819
3820 graphics->unit = unit;
3821
3822 return Ok;
3823}
3824
Evan Staded6bd866d2007-07-13 17:51:33 -07003825GpStatus WINGDIPAPI GdipSetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
3826 mode)
3827{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003828 TRACE("(%p, %d)\n", graphics, mode);
3829
Evan Staded6bd866d2007-07-13 17:51:33 -07003830 if(!graphics)
3831 return InvalidParameter;
3832
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003833 if(graphics->busy)
3834 return ObjectBusy;
3835
Evan Staded6bd866d2007-07-13 17:51:33 -07003836 graphics->pixeloffset = mode;
3837
3838 return Ok;
3839}
3840
Vincent Povirk27b47ea2009-05-06 16:03:27 -05003841GpStatus WINGDIPAPI GdipSetRenderingOrigin(GpGraphics *graphics, INT x, INT y)
3842{
3843 static int calls;
3844
3845 TRACE("(%p,%i,%i)\n", graphics, x, y);
3846
3847 if (!(calls++))
3848 FIXME("not implemented\n");
3849
3850 return NotImplemented;
3851}
3852
Evan Stade53e17d22007-07-13 17:51:13 -07003853GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics *graphics, SmoothingMode mode)
3854{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003855 TRACE("(%p, %d)\n", graphics, mode);
3856
Evan Stade53e17d22007-07-13 17:51:13 -07003857 if(!graphics)
3858 return InvalidParameter;
3859
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003860 if(graphics->busy)
3861 return ObjectBusy;
3862
Evan Stade53e17d22007-07-13 17:51:13 -07003863 graphics->smoothing = mode;
3864
3865 return Ok;
3866}
Evan Stadef30732f2007-07-24 17:18:47 -07003867
Nikolay Sivov71264732008-11-09 14:38:16 +03003868GpStatus WINGDIPAPI GdipSetTextContrast(GpGraphics *graphics, UINT contrast)
3869{
3870 TRACE("(%p, %d)\n", graphics, contrast);
3871
3872 if(!graphics)
3873 return InvalidParameter;
3874
3875 graphics->textcontrast = contrast;
3876
3877 return Ok;
3878}
3879
Evan Stade56628202007-08-14 19:00:09 -07003880GpStatus WINGDIPAPI GdipSetTextRenderingHint(GpGraphics *graphics,
3881 TextRenderingHint hint)
3882{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003883 TRACE("(%p, %d)\n", graphics, hint);
3884
Evan Stade56628202007-08-14 19:00:09 -07003885 if(!graphics)
3886 return InvalidParameter;
3887
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003888 if(graphics->busy)
3889 return ObjectBusy;
3890
Evan Stade56628202007-08-14 19:00:09 -07003891 graphics->texthint = hint;
3892
3893 return Ok;
3894}
3895
Evan Stadef30732f2007-07-24 17:18:47 -07003896GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics *graphics, GpMatrix *matrix)
3897{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003898 TRACE("(%p, %p)\n", graphics, matrix);
3899
Evan Stadef30732f2007-07-24 17:18:47 -07003900 if(!graphics || !matrix)
3901 return InvalidParameter;
3902
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003903 if(graphics->busy)
3904 return ObjectBusy;
3905
Evan Stadef30732f2007-07-24 17:18:47 -07003906 GdipDeleteMatrix(graphics->worldtrans);
3907 return GdipCloneMatrix(matrix, &graphics->worldtrans);
3908}
Evan Stade795b6222007-08-09 18:25:31 -07003909
3910GpStatus WINGDIPAPI GdipTranslateWorldTransform(GpGraphics *graphics, REAL dx,
3911 REAL dy, GpMatrixOrder order)
3912{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04003913 TRACE("(%p, %.2f, %.2f, %d)\n", graphics, dx, dy, order);
3914
Evan Stade795b6222007-08-09 18:25:31 -07003915 if(!graphics)
3916 return InvalidParameter;
3917
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003918 if(graphics->busy)
3919 return ObjectBusy;
3920
Evan Stade795b6222007-08-09 18:25:31 -07003921 return GdipTranslateMatrix(graphics->worldtrans, dx, dy, order);
3922}
Lei Zhangd9a42992008-04-08 14:44:41 -07003923
Nikolay Sivovf8edb062009-02-02 23:33:41 +03003924/*****************************************************************************
3925 * GdipSetClipHrgn [GDIPLUS.@]
3926 */
3927GpStatus WINGDIPAPI GdipSetClipHrgn(GpGraphics *graphics, HRGN hrgn, CombineMode mode)
3928{
3929 GpRegion *region;
3930 GpStatus status;
3931
3932 TRACE("(%p, %p, %d)\n", graphics, hrgn, mode);
3933
3934 if(!graphics)
3935 return InvalidParameter;
3936
3937 status = GdipCreateRegionHrgn(hrgn, &region);
3938 if(status != Ok)
3939 return status;
3940
3941 status = GdipSetClipRegion(graphics, region, mode);
3942
3943 GdipDeleteRegion(region);
3944 return status;
3945}
3946
Nikolay Sivove2817e52008-09-26 22:18:09 +04003947GpStatus WINGDIPAPI GdipSetClipPath(GpGraphics *graphics, GpPath *path, CombineMode mode)
3948{
3949 TRACE("(%p, %p, %d)\n", graphics, path, mode);
3950
3951 if(!graphics)
3952 return InvalidParameter;
3953
3954 if(graphics->busy)
3955 return ObjectBusy;
3956
3957 return GdipCombineRegionPath(graphics->clip, path, mode);
3958}
3959
Nikolay Sivov8d9c4862008-09-25 10:41:15 +04003960GpStatus WINGDIPAPI GdipSetClipRect(GpGraphics *graphics, REAL x, REAL y,
3961 REAL width, REAL height,
3962 CombineMode mode)
Lei Zhangd9a42992008-04-08 14:44:41 -07003963{
Nikolay Sivov8d9c4862008-09-25 10:41:15 +04003964 GpRectF rect;
3965
3966 TRACE("(%p, %.2f, %.2f, %.2f, %.2f, %d)\n", graphics, x, y, width, height, mode);
Lei Zhangd9a42992008-04-08 14:44:41 -07003967
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04003968 if(!graphics)
3969 return InvalidParameter;
3970
3971 if(graphics->busy)
3972 return ObjectBusy;
3973
Nikolay Sivov8d9c4862008-09-25 10:41:15 +04003974 rect.X = x;
3975 rect.Y = y;
3976 rect.Width = width;
3977 rect.Height = height;
Lei Zhangd9a42992008-04-08 14:44:41 -07003978
Nikolay Sivov8d9c4862008-09-25 10:41:15 +04003979 return GdipCombineRegionRect(graphics->clip, &rect, mode);
3980}
3981
3982GpStatus WINGDIPAPI GdipSetClipRectI(GpGraphics *graphics, INT x, INT y,
3983 INT width, INT height,
3984 CombineMode mode)
3985{
3986 TRACE("(%p, %d, %d, %d, %d, %d)\n", graphics, x, y, width, height, mode);
3987
3988 if(!graphics)
3989 return InvalidParameter;
3990
3991 if(graphics->busy)
3992 return ObjectBusy;
3993
3994 return GdipSetClipRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, mode);
Lei Zhangd9a42992008-04-08 14:44:41 -07003995}
Lei Zhangcec6c2e2008-04-09 12:35:29 -07003996
3997GpStatus WINGDIPAPI GdipSetClipRegion(GpGraphics *graphics, GpRegion *region,
Nikolay Sivov0df5fb52008-08-27 23:30:59 +04003998 CombineMode mode)
Lei Zhangcec6c2e2008-04-09 12:35:29 -07003999{
Nikolay Sivov0df5fb52008-08-27 23:30:59 +04004000 TRACE("(%p, %p, %d)\n", graphics, region, mode);
Lei Zhangcec6c2e2008-04-09 12:35:29 -07004001
Nikolay Sivov0df5fb52008-08-27 23:30:59 +04004002 if(!graphics || !region)
4003 return InvalidParameter;
Lei Zhangcec6c2e2008-04-09 12:35:29 -07004004
Nikolay Sivov0df5fb52008-08-27 23:30:59 +04004005 if(graphics->busy)
4006 return ObjectBusy;
4007
4008 return GdipCombineRegionRegion(graphics->clip, region, mode);
Lei Zhangcec6c2e2008-04-09 12:35:29 -07004009}
Lei Zhang54a06642008-04-10 12:40:21 -07004010
Nikolay Sivov45705012008-08-24 14:45:14 +04004011GpStatus WINGDIPAPI GdipSetMetafileDownLevelRasterizationLimit(GpMetafile *metafile,
Lei Zhang54a06642008-04-10 12:40:21 -07004012 UINT limitDpi)
4013{
4014 static int calls;
4015
4016 if(!(calls++))
4017 FIXME("not implemented\n");
4018
4019 return NotImplemented;
4020}
Nikolay Sivov46975932008-04-24 20:48:17 +04004021
4022GpStatus WINGDIPAPI GdipDrawPolygon(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPointF *points,
4023 INT count)
4024{
4025 INT save_state;
4026 POINT *pti;
4027
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04004028 TRACE("(%p, %p, %d)\n", graphics, points, count);
4029
Nikolay Sivov46975932008-04-24 20:48:17 +04004030 if(!graphics || !pen || count<=0)
4031 return InvalidParameter;
4032
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04004033 if(graphics->busy)
4034 return ObjectBusy;
4035
Nikolay Sivov46975932008-04-24 20:48:17 +04004036 pti = GdipAlloc(sizeof(POINT) * count);
4037
4038 save_state = prepare_dc(graphics, pen);
4039 SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH));
4040
4041 transform_and_round_points(graphics, pti, (GpPointF*)points, count);
4042 Polygon(graphics->hdc, pti, count);
4043
4044 restore_dc(graphics, save_state);
4045 GdipFree(pti);
4046
4047 return Ok;
4048}
4049
4050GpStatus WINGDIPAPI GdipDrawPolygonI(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPoint *points,
4051 INT count)
4052{
4053 GpStatus ret;
4054 GpPointF *ptf;
4055 INT i;
4056
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04004057 TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count);
4058
Nikolay Sivov46975932008-04-24 20:48:17 +04004059 if(count<=0) return InvalidParameter;
4060 ptf = GdipAlloc(sizeof(GpPointF) * count);
4061
4062 for(i = 0;i < count; i++){
4063 ptf[i].X = (REAL)points[i].X;
4064 ptf[i].Y = (REAL)points[i].Y;
4065 }
4066
4067 ret = GdipDrawPolygon(graphics,pen,ptf,count);
4068 GdipFree(ptf);
4069
4070 return ret;
4071}
Nikolay Sivovd5769952008-04-29 00:10:20 +04004072
4073GpStatus WINGDIPAPI GdipGetDpiX(GpGraphics *graphics, REAL* dpi)
4074{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04004075 TRACE("(%p, %p)\n", graphics, dpi);
4076
Nikolay Sivovd5769952008-04-29 00:10:20 +04004077 if(!graphics || !dpi)
4078 return InvalidParameter;
4079
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04004080 if(graphics->busy)
4081 return ObjectBusy;
4082
Nikolay Sivovd5769952008-04-29 00:10:20 +04004083 *dpi = (REAL)GetDeviceCaps(graphics->hdc, LOGPIXELSX);
4084
4085 return Ok;
4086}
4087
4088GpStatus WINGDIPAPI GdipGetDpiY(GpGraphics *graphics, REAL* dpi)
4089{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04004090 TRACE("(%p, %p)\n", graphics, dpi);
4091
Nikolay Sivovd5769952008-04-29 00:10:20 +04004092 if(!graphics || !dpi)
4093 return InvalidParameter;
4094
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04004095 if(graphics->busy)
4096 return ObjectBusy;
4097
Nikolay Sivovd5769952008-04-29 00:10:20 +04004098 *dpi = (REAL)GetDeviceCaps(graphics->hdc, LOGPIXELSY);
4099
4100 return Ok;
4101}
Nikolay Sivov510c26a2008-04-30 01:28:40 +04004102
4103GpStatus WINGDIPAPI GdipMultiplyWorldTransform(GpGraphics *graphics, GDIPCONST GpMatrix *matrix,
4104 GpMatrixOrder order)
4105{
4106 GpMatrix m;
4107 GpStatus ret;
4108
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04004109 TRACE("(%p, %p, %d)\n", graphics, matrix, order);
4110
Nikolay Sivov510c26a2008-04-30 01:28:40 +04004111 if(!graphics || !matrix)
4112 return InvalidParameter;
4113
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04004114 if(graphics->busy)
4115 return ObjectBusy;
4116
Nikolay Sivov510c26a2008-04-30 01:28:40 +04004117 m = *(graphics->worldtrans);
4118
Michael Stefaniucb53877d2009-01-14 09:52:24 +01004119 ret = GdipMultiplyMatrix(&m, matrix, order);
Nikolay Sivov510c26a2008-04-30 01:28:40 +04004120 if(ret == Ok)
4121 *(graphics->worldtrans) = m;
4122
4123 return ret;
4124}
Huw Davies6cfb4692008-05-12 16:51:32 +01004125
4126GpStatus WINGDIPAPI GdipGetDC(GpGraphics *graphics, HDC *hdc)
4127{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04004128 TRACE("(%p, %p)\n", graphics, hdc);
4129
Nikolay Sivov45705012008-08-24 14:45:14 +04004130 if(!graphics || !hdc)
4131 return InvalidParameter;
4132
Nikolay Sivov366ae1e2008-08-24 14:45:18 +04004133 if(graphics->busy)
4134 return ObjectBusy;
4135
4136 *hdc = graphics->hdc;
4137 graphics->busy = TRUE;
4138
4139 return Ok;
Huw Davies6cfb4692008-05-12 16:51:32 +01004140}
4141
4142GpStatus WINGDIPAPI GdipReleaseDC(GpGraphics *graphics, HDC hdc)
4143{
Nikolay Sivov29f4c9d2008-09-02 23:45:39 +04004144 TRACE("(%p, %p)\n", graphics, hdc);
4145
Nikolay Sivov45705012008-08-24 14:45:14 +04004146 if(!graphics)
4147 return InvalidParameter;
4148
Nikolay Sivov366ae1e2008-08-24 14:45:18 +04004149 if(graphics->hdc != hdc || !(graphics->busy))
Nikolay Sivov45705012008-08-24 14:45:14 +04004150 return InvalidParameter;
4151
Nikolay Sivov366ae1e2008-08-24 14:45:18 +04004152 graphics->busy = FALSE;
4153
4154 return Ok;
Huw Davies6cfb4692008-05-12 16:51:32 +01004155}
Huw Daviesd5ccbe22008-05-12 16:57:28 +01004156
4157GpStatus WINGDIPAPI GdipGetClip(GpGraphics *graphics, GpRegion *region)
4158{
Nikolay Sivovef50aa32008-08-27 02:03:27 +04004159 GpRegion *clip;
4160 GpStatus status;
4161
4162 TRACE("(%p, %p)\n", graphics, region);
4163
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04004164 if(!graphics || !region)
4165 return InvalidParameter;
Huw Daviesd5ccbe22008-05-12 16:57:28 +01004166
Nikolay Sivovf0a507e2008-08-24 14:45:23 +04004167 if(graphics->busy)
4168 return ObjectBusy;
4169
Nikolay Sivovef50aa32008-08-27 02:03:27 +04004170 if((status = GdipCloneRegion(graphics->clip, &clip)) != Ok)
4171 return status;
4172
4173 /* free everything except root node and header */
4174 delete_element(&region->node);
4175 memcpy(region, clip, sizeof(GpRegion));
Huw Davies68bacfb2009-12-12 16:49:15 +00004176 GdipFree(clip);
Nikolay Sivovef50aa32008-08-27 02:03:27 +04004177
4178 return Ok;
Huw Daviesd5ccbe22008-05-12 16:57:28 +01004179}
Huw Davies3ab76662008-07-10 15:26:58 +01004180
4181GpStatus WINGDIPAPI GdipTransformPoints(GpGraphics *graphics, GpCoordinateSpace dst_space,
4182 GpCoordinateSpace src_space, GpPointF *points, INT count)
4183{
Vincent Povirk2af29ed2009-03-23 16:34:12 -05004184 GpMatrix *matrix;
4185 GpStatus stat;
4186 REAL unitscale;
4187
Nikolay Sivovc61ece62008-08-26 01:58:42 +04004188 if(!graphics || !points || count <= 0)
4189 return InvalidParameter;
4190
4191 if(graphics->busy)
4192 return ObjectBusy;
4193
Vincent Povirk2af29ed2009-03-23 16:34:12 -05004194 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
Huw Davies3ab76662008-07-10 15:26:58 +01004195
Vincent Povirk2af29ed2009-03-23 16:34:12 -05004196 if (src_space == dst_space) return Ok;
4197
4198 stat = GdipCreateMatrix(&matrix);
4199 if (stat == Ok)
4200 {
4201 unitscale = convert_unit(graphics->hdc, graphics->unit);
4202
4203 if(graphics->unit != UnitDisplay)
4204 unitscale *= graphics->scale;
4205
4206 /* transform from src_space to CoordinateSpacePage */
4207 switch (src_space)
4208 {
4209 case CoordinateSpaceWorld:
4210 GdipMultiplyMatrix(matrix, graphics->worldtrans, MatrixOrderAppend);
4211 break;
4212 case CoordinateSpacePage:
4213 break;
4214 case CoordinateSpaceDevice:
4215 GdipScaleMatrix(matrix, 1.0/unitscale, 1.0/unitscale, MatrixOrderAppend);
4216 break;
4217 }
4218
4219 /* transform from CoordinateSpacePage to dst_space */
4220 switch (dst_space)
4221 {
4222 case CoordinateSpaceWorld:
4223 {
4224 GpMatrix *inverted_transform;
4225 stat = GdipCloneMatrix(graphics->worldtrans, &inverted_transform);
4226 if (stat == Ok)
4227 {
4228 stat = GdipInvertMatrix(inverted_transform);
4229 if (stat == Ok)
4230 GdipMultiplyMatrix(matrix, inverted_transform, MatrixOrderAppend);
4231 GdipDeleteMatrix(inverted_transform);
4232 }
4233 break;
4234 }
4235 case CoordinateSpacePage:
4236 break;
4237 case CoordinateSpaceDevice:
4238 GdipScaleMatrix(matrix, unitscale, unitscale, MatrixOrderAppend);
4239 break;
4240 }
4241
4242 if (stat == Ok)
4243 stat = GdipTransformMatrixPoints(matrix, points, count);
4244
4245 GdipDeleteMatrix(matrix);
4246 }
4247
4248 return stat;
Huw Davies3ab76662008-07-10 15:26:58 +01004249}
4250
4251GpStatus WINGDIPAPI GdipTransformPointsI(GpGraphics *graphics, GpCoordinateSpace dst_space,
4252 GpCoordinateSpace src_space, GpPoint *points, INT count)
4253{
Vincent Povirkc486e812009-05-19 15:40:43 -05004254 GpPointF *pointsF;
4255 GpStatus ret;
4256 INT i;
Huw Davies3ab76662008-07-10 15:26:58 +01004257
Vincent Povirkc486e812009-05-19 15:40:43 -05004258 TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count);
4259
4260 if(count <= 0)
4261 return InvalidParameter;
4262
4263 pointsF = GdipAlloc(sizeof(GpPointF) * count);
4264 if(!pointsF)
4265 return OutOfMemory;
4266
4267 for(i = 0; i < count; i++){
4268 pointsF[i].X = (REAL)points[i].X;
4269 pointsF[i].Y = (REAL)points[i].Y;
4270 }
4271
4272 ret = GdipTransformPoints(graphics, dst_space, src_space, pointsF, count);
4273
4274 if(ret == Ok)
4275 for(i = 0; i < count; i++){
4276 points[i].X = roundr(pointsF[i].X);
4277 points[i].Y = roundr(pointsF[i].Y);
4278 }
4279 GdipFree(pointsF);
4280
4281 return ret;
Huw Davies3ab76662008-07-10 15:26:58 +01004282}
Hans Leidekker6122c772008-11-24 10:23:03 +01004283
4284HPALETTE WINGDIPAPI GdipCreateHalftonePalette(void)
4285{
4286 FIXME("\n");
4287
4288 return NULL;
4289}
Nikolay Sivov5da52e02009-01-31 00:07:30 +03004290
4291/*****************************************************************************
4292 * GdipTranslateClip [GDIPLUS.@]
4293 */
4294GpStatus WINGDIPAPI GdipTranslateClip(GpGraphics *graphics, REAL dx, REAL dy)
4295{
4296 TRACE("(%p, %.2f, %.2f)\n", graphics, dx, dy);
4297
4298 if(!graphics)
4299 return InvalidParameter;
4300
Nikolay Sivov8c096162009-02-02 23:48:01 +03004301 if(graphics->busy)
4302 return ObjectBusy;
4303
Nikolay Sivov5da52e02009-01-31 00:07:30 +03004304 return GdipTranslateRegion(graphics->clip, dx, dy);
4305}
4306
4307/*****************************************************************************
4308 * GdipTranslateClipI [GDIPLUS.@]
4309 */
4310GpStatus WINGDIPAPI GdipTranslateClipI(GpGraphics *graphics, INT dx, INT dy)
4311{
4312 TRACE("(%p, %d, %d)\n", graphics, dx, dy);
4313
4314 if(!graphics)
4315 return InvalidParameter;
4316
Nikolay Sivov8c096162009-02-02 23:48:01 +03004317 if(graphics->busy)
4318 return ObjectBusy;
4319
Nikolay Sivov5da52e02009-01-31 00:07:30 +03004320 return GdipTranslateRegion(graphics->clip, (REAL)dx, (REAL)dy);
4321}
Ken Sharpe3f48592009-06-09 21:48:05 +01004322
4323
4324/*****************************************************************************
4325 * GdipMeasureDriverString [GDIPLUS.@]
4326 */
4327GpStatus WINGDIPAPI GdipMeasureDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
4328 GDIPCONST GpFont *font, GDIPCONST PointF *positions,
4329 INT flags, GDIPCONST GpMatrix *matrix, RectF *boundingBox)
4330{
4331 FIXME("(%p %p %d %p %p %d %p %p): stub\n", graphics, text, length, font, positions, flags, matrix, boundingBox);
4332 return NotImplemented;
4333}
4334
4335/*****************************************************************************
Ken Sharpe3f48592009-06-09 21:48:05 +01004336 * GdipDrawDriverString [GDIPLUS.@]
4337 */
4338GpStatus WINGDIPAPI GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length,
4339 GDIPCONST GpFont *font, GDIPCONST GpBrush *brush,
4340 GDIPCONST PointF *positions, INT flags,
4341 GDIPCONST GpMatrix *matrix )
4342{
Francois Gouget489bd522009-06-15 11:00:03 +02004343 FIXME("(%p %p %d %p %p %p %d %p): stub\n", graphics, text, length, font, brush, positions, flags, matrix);
Ken Sharpe3f48592009-06-09 21:48:05 +01004344 return NotImplemented;
4345}
Ken Sharpe096b592009-06-22 21:59:59 +01004346
4347/*****************************************************************************
Alistair Leslie-Hughes7b2292f2009-07-30 13:56:42 +10004348 * GdipRecordMetafileI [GDIPLUS.@]
4349 */
4350GpStatus WINGDIPAPI GdipRecordMetafileI(HDC hdc, EmfType type, GDIPCONST GpRect *frameRect,
4351 MetafileFrameUnit frameUnit, GDIPCONST WCHAR *desc, GpMetafile **metafile)
4352{
4353 FIXME("(%p %d %p %d %p %p): stub\n", hdc, type, frameRect, frameUnit, desc, metafile);
4354 return NotImplemented;
4355}