blob: b399fce30324f80ac4f819e9623bfabe5edcc362 [file] [log] [blame]
Evan Stadecc0a6762007-06-14 16:09:07 -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
Evan Stadeb9411ba2007-08-09 18:25:14 -070019#include <stdarg.h>
20
Evan Stadecc0a6762007-06-14 16:09:07 -070021#include "windef.h"
Evan Stadeb9411ba2007-08-09 18:25:14 -070022#include "winbase.h"
23#include "winuser.h"
Evan Stadecc0a6762007-06-14 16:09:07 -070024#include "wingdi.h"
Evan Stade4c5486f2007-07-31 19:15:48 -070025
Evan Stadeb9411ba2007-08-09 18:25:14 -070026#define COBJMACROS
Evan Stade4c5486f2007-07-31 19:15:48 -070027#include "objbase.h"
Evan Stadeb9411ba2007-08-09 18:25:14 -070028#include "olectl.h"
29#include "ole2.h"
Evan Stade4c5486f2007-07-31 19:15:48 -070030
Evan Stadecc0a6762007-06-14 16:09:07 -070031#include "gdiplus.h"
32#include "gdiplus_private.h"
Evan Stadef18cdef2007-08-01 17:56:02 -070033#include "wine/debug.h"
34
35WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
Evan Stadecc0a6762007-06-14 16:09:07 -070036
Francois Gouget85770252008-09-14 02:12:25 +020037/******************************************************************************
38 * GdipCloneBrush [GDIPLUS.@]
39 */
Evan Stadeb2b4b872007-07-19 18:23:04 -070040GpStatus WINGDIPAPI GdipCloneBrush(GpBrush *brush, GpBrush **clone)
41{
Nikolay Sivov26ccb332008-09-03 00:13:40 +040042 TRACE("(%p, %p)\n", brush, clone);
43
Evan Stadeb2b4b872007-07-19 18:23:04 -070044 if(!brush || !clone)
45 return InvalidParameter;
46
Evan Stade8b2ce0f2007-07-23 20:24:24 -070047 switch(brush->bt){
48 case BrushTypeSolidColor:
Vincent Povirk60167df2009-05-20 11:24:18 -050049 {
50 GpSolidFill *fill;
Evan Stade8b2ce0f2007-07-23 20:24:24 -070051 *clone = GdipAlloc(sizeof(GpSolidFill));
52 if (!*clone) return OutOfMemory;
Evan Stadeb2b4b872007-07-19 18:23:04 -070053
Vincent Povirk60167df2009-05-20 11:24:18 -050054 fill = (GpSolidFill*)*clone;
55
Evan Stade8b2ce0f2007-07-23 20:24:24 -070056 memcpy(*clone, brush, sizeof(GpSolidFill));
Evan Stadeb2b4b872007-07-19 18:23:04 -070057
Evan Stade8b2ce0f2007-07-23 20:24:24 -070058 (*clone)->gdibrush = CreateBrushIndirect(&(*clone)->lb);
Vincent Povirk60167df2009-05-20 11:24:18 -050059 fill->bmp = ARGB2BMP(fill->color);
Evan Stade8b2ce0f2007-07-23 20:24:24 -070060 break;
Vincent Povirk60167df2009-05-20 11:24:18 -050061 }
Chris Wulffa2a94a42009-01-10 18:45:11 -050062 case BrushTypeHatchFill:
Vincent Povirke933da42010-02-11 16:01:14 -060063 {
64 GpHatch *hatch = (GpHatch*)brush;
Chris Wulffa2a94a42009-01-10 18:45:11 -050065
Vincent Povirke933da42010-02-11 16:01:14 -060066 return GdipCreateHatchBrush(hatch->hatchstyle, hatch->forecol, hatch->backcol, (GpHatch**)clone);
67 }
Evan Stade7929ba82007-08-02 17:52:55 -070068 case BrushTypePathGradient:{
69 GpPathGradient *src, *dest;
70 INT count;
71
72 *clone = GdipAlloc(sizeof(GpPathGradient));
73 if (!*clone) return OutOfMemory;
74
75 src = (GpPathGradient*) brush,
76 dest = (GpPathGradient*) *clone;
77 count = src->pathdata.Count;
78
79 memcpy(dest, src, sizeof(GpPathGradient));
80
81 dest->pathdata.Count = count;
82 dest->pathdata.Points = GdipAlloc(count * sizeof(PointF));
83 dest->pathdata.Types = GdipAlloc(count);
84
85 if(!dest->pathdata.Points || !dest->pathdata.Types){
86 GdipFree(dest->pathdata.Points);
87 GdipFree(dest->pathdata.Types);
88 GdipFree(dest);
89 return OutOfMemory;
90 }
91
92 memcpy(dest->pathdata.Points, src->pathdata.Points, count * sizeof(PointF));
93 memcpy(dest->pathdata.Types, src->pathdata.Types, count);
94
Nikolay Sivov01abb3d2008-07-21 23:30:39 +040095 /* blending */
96 count = src->blendcount;
97 dest->blendcount = count;
98 dest->blendfac = GdipAlloc(count * sizeof(REAL));
99 dest->blendpos = GdipAlloc(count * sizeof(REAL));
100
101 if(!dest->blendfac || !dest->blendpos){
102 GdipFree(dest->pathdata.Points);
103 GdipFree(dest->pathdata.Types);
104 GdipFree(dest->blendfac);
105 GdipFree(dest->blendpos);
106 GdipFree(dest);
107 return OutOfMemory;
108 }
109
110 memcpy(dest->blendfac, src->blendfac, count * sizeof(REAL));
111 memcpy(dest->blendpos, src->blendpos, count * sizeof(REAL));
112
Evan Stade7929ba82007-08-02 17:52:55 -0700113 break;
114 }
Vincent Povirkb05cf902009-04-28 18:03:41 -0500115 case BrushTypeLinearGradient:{
116 GpLineGradient *dest, *src;
Vincent Povirk8bdabe32009-09-14 16:21:50 -0500117 INT count, pcount;
Evan Stadeec304912007-08-07 18:42:56 -0700118
Vincent Povirkb05cf902009-04-28 18:03:41 -0500119 dest = GdipAlloc(sizeof(GpLineGradient));
120 if(!dest) return OutOfMemory;
Evan Stadeec304912007-08-07 18:42:56 -0700121
Vincent Povirkb05cf902009-04-28 18:03:41 -0500122 src = (GpLineGradient*)brush;
123
124 memcpy(dest, src, sizeof(GpLineGradient));
125
126 dest->brush.gdibrush = CreateSolidBrush(dest->brush.lb.lbColor);
127
128 count = dest->blendcount;
129 dest->blendfac = GdipAlloc(count * sizeof(REAL));
130 dest->blendpos = GdipAlloc(count * sizeof(REAL));
Vincent Povirk8bdabe32009-09-14 16:21:50 -0500131 pcount = dest->pblendcount;
132 if (pcount)
133 {
134 dest->pblendcolor = GdipAlloc(pcount * sizeof(ARGB));
135 dest->pblendpos = GdipAlloc(pcount * sizeof(REAL));
136 }
Vincent Povirkb05cf902009-04-28 18:03:41 -0500137
Vincent Povirk8bdabe32009-09-14 16:21:50 -0500138 if (!dest->blendfac || !dest->blendpos ||
139 (pcount && (!dest->pblendcolor || !dest->pblendpos)))
Vincent Povirkb05cf902009-04-28 18:03:41 -0500140 {
141 GdipFree(dest->blendfac);
142 GdipFree(dest->blendpos);
Vincent Povirk8bdabe32009-09-14 16:21:50 -0500143 GdipFree(dest->pblendcolor);
144 GdipFree(dest->pblendpos);
Vincent Povirkb05cf902009-04-28 18:03:41 -0500145 DeleteObject(dest->brush.gdibrush);
146 GdipFree(dest);
147 return OutOfMemory;
148 }
149
150 memcpy(dest->blendfac, src->blendfac, count * sizeof(REAL));
151 memcpy(dest->blendpos, src->blendpos, count * sizeof(REAL));
152
Vincent Povirk8bdabe32009-09-14 16:21:50 -0500153 if (pcount)
154 {
155 memcpy(dest->pblendcolor, src->pblendcolor, pcount * sizeof(ARGB));
156 memcpy(dest->pblendpos, src->pblendpos, pcount * sizeof(REAL));
157 }
158
Vincent Povirkb05cf902009-04-28 18:03:41 -0500159 *clone = &dest->brush;
Evan Stadeec304912007-08-07 18:42:56 -0700160 break;
Vincent Povirkb05cf902009-04-28 18:03:41 -0500161 }
Evan Stade8254c372007-08-09 18:25:18 -0700162 case BrushTypeTextureFill:
Vincent Povirk70c9e4f2010-02-11 16:43:45 -0600163 {
164 GpStatus stat;
165 GpTexture *texture = (GpTexture*)brush;
166 GpTexture *new_texture;
Evan Stade8254c372007-08-09 18:25:18 -0700167
Vincent Povirk70c9e4f2010-02-11 16:43:45 -0600168 stat = GdipCreateTexture(texture->image, texture->wrap, &new_texture);
Evan Stade8254c372007-08-09 18:25:18 -0700169
Vincent Povirk70c9e4f2010-02-11 16:43:45 -0600170 if (stat == Ok)
171 {
172 memcpy(new_texture->transform, texture->transform, sizeof(GpMatrix));
173 *clone = (GpBrush*)new_texture;
174 }
175 else
176 *clone = NULL;
177
178 return stat;
179 }
Evan Stade8b2ce0f2007-07-23 20:24:24 -0700180 default:
Evan Stade8254c372007-08-09 18:25:18 -0700181 ERR("not implemented for brush type %d\n", brush->bt);
Evan Stade8b2ce0f2007-07-23 20:24:24 -0700182 return NotImplemented;
183 }
Evan Stadeb2b4b872007-07-19 18:23:04 -0700184
Vincent Povirkf1417782009-12-18 14:58:28 -0600185 TRACE("<-- %p\n", *clone);
Evan Stadeb2b4b872007-07-19 18:23:04 -0700186 return Ok;
187}
188
Vincent Povirkbd86e272009-10-08 13:35:03 -0500189static const char HatchBrushes[][8] = {
190 { 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00 }, /* HatchStyleHorizontal */
191 { 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08 }, /* HatchStyleVertical */
192 { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 }, /* HatchStyleForwardDiagonal */
193 { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 }, /* HatchStyleBackwardDiagonal */
194 { 0x08, 0x08, 0x08, 0xff, 0x08, 0x08, 0x08, 0x08 }, /* HatchStyleCross */
195 { 0x81, 0x42, 0x24, 0x18, 0x18, 0x24, 0x42, 0x81 }, /* HatchStyleDiagonalCross */
Vincent Povirkf0c99e02009-10-08 15:48:21 -0500196 { 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x80 }, /* HatchStyle05Percent */
197 { 0x00, 0x02, 0x00, 0x88, 0x00, 0x20, 0x00, 0x88 }, /* HatchStyle10Percent */
198 { 0x00, 0x22, 0x00, 0xcc, 0x00, 0x22, 0x00, 0xcc }, /* HatchStyle20Percent */
199 { 0x00, 0xcc, 0x00, 0xcc, 0x00, 0xcc, 0x00, 0xcc }, /* HatchStyle25Percent */
200 { 0x00, 0xcc, 0x04, 0xcc, 0x00, 0xcc, 0x40, 0xcc }, /* HatchStyle30Percent */
201 { 0x44, 0xcc, 0x22, 0xcc, 0x44, 0xcc, 0x22, 0xcc }, /* HatchStyle40Percent */
202 { 0x55, 0xcc, 0x55, 0xcc, 0x55, 0xcc, 0x55, 0xcc }, /* HatchStyle50Percent */
203 { 0x55, 0xcd, 0x55, 0xee, 0x55, 0xdc, 0x55, 0xee }, /* HatchStyle60Percent */
204 { 0x55, 0xdd, 0x55, 0xff, 0x55, 0xdd, 0x55, 0xff }, /* HatchStyle70Percent */
205 { 0x55, 0xff, 0x55, 0xff, 0x55, 0xff, 0x55, 0xff }, /* HatchStyle75Percent */
206 { 0x55, 0xff, 0x59, 0xff, 0x55, 0xff, 0x99, 0xff }, /* HatchStyle80Percent */
207 { 0x77, 0xff, 0xdd, 0xff, 0x77, 0xff, 0xfd, 0xff }, /* HatchStyle90Percent */
208 { 0x11, 0x22, 0x44, 0x88, 0x11, 0x22, 0x44, 0x88 }, /* HatchStyleLightDownwardDiagonal */
209 { 0x88, 0x44, 0x22, 0x11, 0x88, 0x44, 0x22, 0x11 }, /* HatchStyleLightUpwardDiagonal */
210 { 0x99, 0x33, 0x66, 0xcc, 0x99, 0x33, 0x66, 0xcc }, /* HatchStyleDarkDownwardDiagonal */
211 { 0xcc, 0x66, 0x33, 0x99, 0xcc, 0x66, 0x33, 0x99 }, /* HatchStyleDarkUpwardDiagonal */
212 { 0xc1, 0x83, 0x07, 0x0e, 0x1c, 0x38, 0x70, 0xe0 }, /* HatchStyleWideDownwardDiagonal */
213 { 0xe0, 0x70, 0x38, 0x1c, 0x0e, 0x07, 0x83, 0xc1 }, /* HatchStyleWideUpwardDiagonal */
214 { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88 }, /* HatchStyleLightVertical */
215 { 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff }, /* HatchStyleLightHorizontal */
216 { 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa }, /* HatchStyleNarrowVertical */
217 { 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff }, /* HatchStyleNarrowHorizontal */
218 { 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc }, /* HatchStyleDarkVertical */
219 { 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff }, /* HatchStyleDarkHorizontal */
Vincent Povirkbd86e272009-10-08 13:35:03 -0500220};
Chris Wulffa2a94a42009-01-10 18:45:11 -0500221
222/******************************************************************************
223 * GdipCreateHatchBrush [GDIPLUS.@]
224 */
Alexandre Julliard0208fe22009-01-16 16:36:29 +0100225GpStatus WINGDIPAPI GdipCreateHatchBrush(HatchStyle hatchstyle, ARGB forecol, ARGB backcol, GpHatch **brush)
Chris Wulffa2a94a42009-01-10 18:45:11 -0500226{
227 COLORREF fgcol = ARGB2COLORREF(forecol);
Vincent Povirkbd86e272009-10-08 13:35:03 -0500228 GpStatus stat = Ok;
Chris Wulffa2a94a42009-01-10 18:45:11 -0500229
230 TRACE("(%d, %d, %d, %p)\n", hatchstyle, forecol, backcol, brush);
231
232 if(!brush) return InvalidParameter;
233
234 *brush = GdipAlloc(sizeof(GpHatch));
235 if (!*brush) return OutOfMemory;
236
Vincent Povirkbd86e272009-10-08 13:35:03 -0500237 if (hatchstyle < sizeof(HatchBrushes) / sizeof(HatchBrushes[0]))
Chris Wulffa2a94a42009-01-10 18:45:11 -0500238 {
Vincent Povirkbd86e272009-10-08 13:35:03 -0500239 HBITMAP hbmp;
240 HDC hdc;
241 BITMAPINFOHEADER bmih;
242 DWORD* bits;
243 int x, y;
Chris Wulffa2a94a42009-01-10 18:45:11 -0500244
Vincent Povirkbd86e272009-10-08 13:35:03 -0500245 hdc = CreateCompatibleDC(0);
Chris Wulffa2a94a42009-01-10 18:45:11 -0500246
Vincent Povirkbd86e272009-10-08 13:35:03 -0500247 if (hdc)
248 {
249 bmih.biSize = sizeof(bmih);
250 bmih.biWidth = 8;
251 bmih.biHeight = 8;
252 bmih.biPlanes = 1;
253 bmih.biBitCount = 32;
254 bmih.biCompression = BI_RGB;
255 bmih.biSizeImage = 0;
256
257 hbmp = CreateDIBSection(hdc, (BITMAPINFO*)&bmih, DIB_RGB_COLORS, (void**)&bits, NULL, 0);
258
259 if (hbmp)
260 {
261 for (y=0; y<8; y++)
262 for (x=0; x<8; x++)
263 if ((HatchBrushes[hatchstyle][y] & (0x80 >> x)) != 0)
264 bits[y*8+x] = forecol;
265 else
266 bits[y*8+x] = backcol;
267 }
268 else
269 stat = GenericError;
270
271 DeleteDC(hdc);
272 }
273 else
274 stat = GenericError;
275
276 if (stat == Ok)
277 {
278 (*brush)->brush.lb.lbStyle = BS_PATTERN;
279 (*brush)->brush.lb.lbColor = 0;
280 (*brush)->brush.lb.lbHatch = (ULONG_PTR)hbmp;
281 (*brush)->brush.gdibrush = CreateBrushIndirect(&(*brush)->brush.lb);
282
283 DeleteObject(hbmp);
284 }
285 }
286 else
287 {
288 FIXME("Unimplemented hatch style %d\n", hatchstyle);
289
290 (*brush)->brush.lb.lbStyle = BS_SOLID;
291 (*brush)->brush.lb.lbColor = fgcol;
292 (*brush)->brush.lb.lbHatch = 0;
293 (*brush)->brush.gdibrush = CreateBrushIndirect(&(*brush)->brush.lb);
Chris Wulffa2a94a42009-01-10 18:45:11 -0500294 }
295
Vincent Povirkbd86e272009-10-08 13:35:03 -0500296 if (stat == Ok)
297 {
298 (*brush)->brush.bt = BrushTypeHatchFill;
299 (*brush)->forecol = forecol;
300 (*brush)->backcol = backcol;
301 (*brush)->hatchstyle = hatchstyle;
Vincent Povirkf1417782009-12-18 14:58:28 -0600302 TRACE("<-- %p\n", *brush);
Vincent Povirkbd86e272009-10-08 13:35:03 -0500303 }
304 else
305 {
306 GdipFree(*brush);
307 *brush = NULL;
308 }
Chris Wulffa2a94a42009-01-10 18:45:11 -0500309
Vincent Povirkbd86e272009-10-08 13:35:03 -0500310 return stat;
Chris Wulffa2a94a42009-01-10 18:45:11 -0500311}
312
Francois Gouget85770252008-09-14 02:12:25 +0200313/******************************************************************************
314 * GdipCreateLineBrush [GDIPLUS.@]
315 */
Evan Stade2b438a02007-08-07 18:42:29 -0700316GpStatus WINGDIPAPI GdipCreateLineBrush(GDIPCONST GpPointF* startpoint,
317 GDIPCONST GpPointF* endpoint, ARGB startcolor, ARGB endcolor,
318 GpWrapMode wrap, GpLineGradient **line)
319{
320 COLORREF col = ARGB2COLORREF(startcolor);
321
Vincent Povirk7ded3d82009-12-18 15:45:02 -0600322 TRACE("(%s, %s, %x, %x, %d, %p)\n", debugstr_pointf(startpoint),
323 debugstr_pointf(endpoint), startcolor, endcolor, wrap, line);
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400324
Evan Stade37657bc2007-08-07 18:42:32 -0700325 if(!line || !startpoint || !endpoint || wrap == WrapModeClamp)
Evan Stade2b438a02007-08-07 18:42:29 -0700326 return InvalidParameter;
327
328 *line = GdipAlloc(sizeof(GpLineGradient));
329 if(!*line) return OutOfMemory;
330
331 (*line)->brush.lb.lbStyle = BS_SOLID;
332 (*line)->brush.lb.lbColor = col;
333 (*line)->brush.lb.lbHatch = 0;
334 (*line)->brush.gdibrush = CreateSolidBrush(col);
335 (*line)->brush.bt = BrushTypeLinearGradient;
336
337 (*line)->startpoint.X = startpoint->X;
338 (*line)->startpoint.Y = startpoint->Y;
339 (*line)->endpoint.X = endpoint->X;
340 (*line)->endpoint.Y = endpoint->Y;
341 (*line)->startcolor = startcolor;
342 (*line)->endcolor = endcolor;
343 (*line)->wrap = wrap;
Evan Stadeddea5bd2007-08-07 18:42:40 -0700344 (*line)->gamma = FALSE;
Evan Stade2b438a02007-08-07 18:42:29 -0700345
Vincent Povirk173a1f62009-05-07 11:33:28 -0500346 (*line)->rect.X = (startpoint->X < endpoint->X ? startpoint->X: endpoint->X);
347 (*line)->rect.Y = (startpoint->Y < endpoint->Y ? startpoint->Y: endpoint->Y);
348 (*line)->rect.Width = fabs(startpoint->X - endpoint->X);
349 (*line)->rect.Height = fabs(startpoint->Y - endpoint->Y);
350
Vincent Povirkee745012009-08-03 09:02:49 -0500351 if ((*line)->rect.Width == 0)
352 {
353 (*line)->rect.X -= (*line)->rect.Height / 2.0f;
354 (*line)->rect.Width = (*line)->rect.Height;
355 }
356 else if ((*line)->rect.Height == 0)
357 {
358 (*line)->rect.Y -= (*line)->rect.Width / 2.0f;
359 (*line)->rect.Height = (*line)->rect.Width;
360 }
361
Vincent Povirkb05cf902009-04-28 18:03:41 -0500362 (*line)->blendcount = 1;
363 (*line)->blendfac = GdipAlloc(sizeof(REAL));
364 (*line)->blendpos = GdipAlloc(sizeof(REAL));
365
366 if (!(*line)->blendfac || !(*line)->blendpos)
367 {
368 GdipFree((*line)->blendfac);
369 GdipFree((*line)->blendpos);
370 DeleteObject((*line)->brush.gdibrush);
371 GdipFree(*line);
372 *line = NULL;
373 return OutOfMemory;
374 }
375
376 (*line)->blendfac[0] = 1.0f;
377 (*line)->blendpos[0] = 1.0f;
378
Vincent Povirk8bdabe32009-09-14 16:21:50 -0500379 (*line)->pblendcolor = NULL;
380 (*line)->pblendpos = NULL;
381 (*line)->pblendcount = 0;
382
Vincent Povirkf1417782009-12-18 14:58:28 -0600383 TRACE("<-- %p\n", *line);
384
Evan Stade2b438a02007-08-07 18:42:29 -0700385 return Ok;
386}
387
Nikolay Sivov0679e972008-04-21 00:45:52 +0400388GpStatus WINGDIPAPI GdipCreateLineBrushI(GDIPCONST GpPoint* startpoint,
389 GDIPCONST GpPoint* endpoint, ARGB startcolor, ARGB endcolor,
390 GpWrapMode wrap, GpLineGradient **line)
391{
392 GpPointF stF;
393 GpPointF endF;
394
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400395 TRACE("(%p, %p, %x, %x, %d, %p)\n", startpoint, endpoint,
396 startcolor, endcolor, wrap, line);
397
Nikolay Sivov0679e972008-04-21 00:45:52 +0400398 if(!startpoint || !endpoint)
399 return InvalidParameter;
400
401 stF.X = (REAL)startpoint->X;
402 stF.Y = (REAL)startpoint->Y;
403 endF.X = (REAL)endpoint->X;
404 endF.X = (REAL)endpoint->Y;
405
406 return GdipCreateLineBrush(&stF, &endF, startcolor, endcolor, wrap, line);
407}
408
Nikolay Sivov5873bac2008-04-25 23:17:46 +0400409GpStatus WINGDIPAPI GdipCreateLineBrushFromRect(GDIPCONST GpRectF* rect,
Evan Staded806c672007-08-07 18:43:00 -0700410 ARGB startcolor, ARGB endcolor, LinearGradientMode mode, GpWrapMode wrap,
411 GpLineGradient **line)
412{
413 GpPointF start, end;
Vincent Povirkaaee4d72009-05-07 11:40:13 -0500414 GpStatus stat;
Evan Staded806c672007-08-07 18:43:00 -0700415
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400416 TRACE("(%p, %x, %x, %d, %d, %p)\n", rect, startcolor, endcolor, mode,
417 wrap, line);
418
Evan Staded806c672007-08-07 18:43:00 -0700419 if(!line || !rect)
420 return InvalidParameter;
421
Vincent Povirk717ac522009-05-06 16:36:06 -0500422 switch (mode)
423 {
424 case LinearGradientModeHorizontal:
425 start.X = rect->X;
426 start.Y = rect->Y;
427 end.X = rect->X + rect->Width;
428 end.Y = rect->Y;
429 break;
430 case LinearGradientModeVertical:
431 start.X = rect->X;
432 start.Y = rect->Y;
433 end.X = rect->X;
434 end.Y = rect->Y + rect->Height;
435 break;
436 case LinearGradientModeForwardDiagonal:
437 start.X = rect->X;
438 start.Y = rect->Y;
439 end.X = rect->X + rect->Width;
440 end.Y = rect->Y + rect->Height;
441 break;
442 case LinearGradientModeBackwardDiagonal:
443 start.X = rect->X + rect->Width;
444 start.Y = rect->Y;
445 end.X = rect->X;
446 end.Y = rect->Y + rect->Height;
447 break;
448 default:
449 return InvalidParameter;
450 }
Evan Staded806c672007-08-07 18:43:00 -0700451
Vincent Povirkaaee4d72009-05-07 11:40:13 -0500452 stat = GdipCreateLineBrush(&start, &end, startcolor, endcolor, wrap, line);
453
454 if (stat == Ok)
455 (*line)->rect = *rect;
456
457 return stat;
Evan Staded806c672007-08-07 18:43:00 -0700458}
459
Nikolay Sivov5873bac2008-04-25 23:17:46 +0400460GpStatus WINGDIPAPI GdipCreateLineBrushFromRectI(GDIPCONST GpRect* rect,
461 ARGB startcolor, ARGB endcolor, LinearGradientMode mode, GpWrapMode wrap,
462 GpLineGradient **line)
463{
464 GpRectF rectF;
465
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400466 TRACE("(%p, %x, %x, %d, %d, %p)\n", rect, startcolor, endcolor, mode,
467 wrap, line);
468
Nikolay Sivov5873bac2008-04-25 23:17:46 +0400469 rectF.X = (REAL) rect->X;
470 rectF.Y = (REAL) rect->Y;
471 rectF.Width = (REAL) rect->Width;
472 rectF.Height = (REAL) rect->Height;
473
474 return GdipCreateLineBrushFromRect(&rectF, startcolor, endcolor, mode, wrap, line);
475}
476
Francois Gouget85770252008-09-14 02:12:25 +0200477/******************************************************************************
478 * GdipCreateLineBrushFromRectWithAngle [GDIPLUS.@]
Francois Gouget85770252008-09-14 02:12:25 +0200479 */
Nikolay Sivov3e59f9e2008-07-09 01:45:07 +0400480GpStatus WINGDIPAPI GdipCreateLineBrushFromRectWithAngle(GDIPCONST GpRectF* rect,
481 ARGB startcolor, ARGB endcolor, REAL angle, BOOL isAngleScalable, GpWrapMode wrap,
482 GpLineGradient **line)
483{
Vincent Povirk71e4af52010-02-06 15:43:16 -0600484 GpStatus stat;
485 LinearGradientMode mode;
486 REAL width, height, exofs, eyofs;
487 REAL sin_angle, cos_angle, sin_cos_angle;
488
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400489 TRACE("(%p, %x, %x, %.2f, %d, %d, %p)\n", rect, startcolor, endcolor, angle, isAngleScalable,
490 wrap, line);
491
Vincent Povirk71e4af52010-02-06 15:43:16 -0600492 sin_angle = sinf(deg2rad(angle));
493 cos_angle = cosf(deg2rad(angle));
494 sin_cos_angle = sin_angle * cos_angle;
495
496 if (isAngleScalable)
497 {
498 width = height = 1.0;
499 }
500 else
501 {
502 width = rect->Width;
503 height = rect->Height;
504 }
505
506 if (sin_cos_angle >= 0)
507 mode = LinearGradientModeForwardDiagonal;
508 else
509 mode = LinearGradientModeBackwardDiagonal;
510
511 stat = GdipCreateLineBrushFromRect(rect, startcolor, endcolor, mode, wrap, line);
512
513 if (stat == Ok)
514 {
515 if (sin_cos_angle >= 0)
516 {
517 exofs = width * sin_cos_angle + height * cos_angle * cos_angle;
518 eyofs = width * sin_angle * sin_angle + height * sin_cos_angle;
519 }
520 else
521 {
522 exofs = width * sin_angle * sin_angle + height * sin_cos_angle;
523 eyofs = -width * sin_cos_angle + height * sin_angle * sin_angle;
524 }
525
526 if (isAngleScalable)
527 {
528 exofs = exofs * rect->Width;
529 eyofs = eyofs * rect->Height;
530 }
531
532 if (sin_angle >= 0)
533 {
534 (*line)->endpoint.X = rect->X + exofs;
535 (*line)->endpoint.Y = rect->Y + eyofs;
536 }
537 else
538 {
539 (*line)->endpoint.X = (*line)->startpoint.X;
540 (*line)->endpoint.Y = (*line)->startpoint.Y;
541 (*line)->startpoint.X = rect->X + exofs;
542 (*line)->startpoint.Y = rect->Y + eyofs;
543 }
544 }
545
546 return stat;
Nikolay Sivov3e59f9e2008-07-09 01:45:07 +0400547}
548
549GpStatus WINGDIPAPI GdipCreateLineBrushFromRectWithAngleI(GDIPCONST GpRect* rect,
550 ARGB startcolor, ARGB endcolor, REAL angle, BOOL isAngleScalable, GpWrapMode wrap,
551 GpLineGradient **line)
552{
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400553 TRACE("(%p, %x, %x, %.2f, %d, %d, %p)\n", rect, startcolor, endcolor, angle, isAngleScalable,
554 wrap, line);
555
Nikolay Sivov3e59f9e2008-07-09 01:45:07 +0400556 return GdipCreateLineBrushFromRectI(rect, startcolor, endcolor, LinearGradientModeForwardDiagonal,
557 wrap, line);
558}
559
Evan Stadeb26d7ce2007-08-02 17:54:24 -0700560GpStatus WINGDIPAPI GdipCreatePathGradient(GDIPCONST GpPointF* points,
561 INT count, GpWrapMode wrap, GpPathGradient **grad)
562{
563 COLORREF col = ARGB2COLORREF(0xffffffff);
564
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400565 TRACE("(%p, %d, %d, %p)\n", points, count, wrap, grad);
566
Evan Stadeb26d7ce2007-08-02 17:54:24 -0700567 if(!points || !grad)
568 return InvalidParameter;
569
570 if(count <= 0)
571 return OutOfMemory;
572
573 *grad = GdipAlloc(sizeof(GpPathGradient));
574 if (!*grad) return OutOfMemory;
575
Nikolay Sivov01abb3d2008-07-21 23:30:39 +0400576 (*grad)->blendfac = GdipAlloc(sizeof(REAL));
Vincent Povirk4c93f9f2010-06-19 16:31:14 -0500577 (*grad)->blendpos = GdipAlloc(sizeof(REAL));
578 if(!(*grad)->blendfac || !(*grad)->blendpos){
579 GdipFree((*grad)->blendfac);
580 GdipFree((*grad)->blendpos);
Nikolay Sivov01abb3d2008-07-21 23:30:39 +0400581 GdipFree(*grad);
582 return OutOfMemory;
583 }
584 (*grad)->blendfac[0] = 1.0;
Vincent Povirk4c93f9f2010-06-19 16:31:14 -0500585 (*grad)->blendpos[0] = 1.0;
Nikolay Sivov01abb3d2008-07-21 23:30:39 +0400586 (*grad)->blendcount = 1;
587
Evan Stadeb26d7ce2007-08-02 17:54:24 -0700588 (*grad)->pathdata.Count = count;
589 (*grad)->pathdata.Points = GdipAlloc(count * sizeof(PointF));
590 (*grad)->pathdata.Types = GdipAlloc(count);
591
592 if(!(*grad)->pathdata.Points || !(*grad)->pathdata.Types){
593 GdipFree((*grad)->pathdata.Points);
594 GdipFree((*grad)->pathdata.Types);
595 GdipFree(*grad);
596 return OutOfMemory;
597 }
598
599 memcpy((*grad)->pathdata.Points, points, count * sizeof(PointF));
600 memset((*grad)->pathdata.Types, PathPointTypeLine, count);
601
602 (*grad)->brush.lb.lbStyle = BS_SOLID;
603 (*grad)->brush.lb.lbColor = col;
604 (*grad)->brush.lb.lbHatch = 0;
605
606 (*grad)->brush.gdibrush = CreateSolidBrush(col);
607 (*grad)->brush.bt = BrushTypePathGradient;
608 (*grad)->centercolor = 0xffffffff;
609 (*grad)->wrap = wrap;
Evan Stade9ea7ef42007-08-02 17:52:49 -0700610 (*grad)->gamma = FALSE;
Evan Stade9a9c8572007-08-02 17:52:59 -0700611 (*grad)->center.X = 0.0;
612 (*grad)->center.Y = 0.0;
Evan Stade496c3192007-08-02 17:53:04 -0700613 (*grad)->focus.X = 0.0;
614 (*grad)->focus.Y = 0.0;
Evan Stadeb26d7ce2007-08-02 17:54:24 -0700615
Vincent Povirkf1417782009-12-18 14:58:28 -0600616 TRACE("<-- %p\n", *grad);
617
Evan Stadeb26d7ce2007-08-02 17:54:24 -0700618 return Ok;
619}
620
Nikolay Sivov836b4182008-04-25 23:17:41 +0400621GpStatus WINGDIPAPI GdipCreatePathGradientI(GDIPCONST GpPoint* points,
622 INT count, GpWrapMode wrap, GpPathGradient **grad)
623{
624 GpPointF *pointsF;
625 GpStatus ret;
626 INT i;
627
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400628 TRACE("(%p, %d, %d, %p)\n", points, count, wrap, grad);
629
Nikolay Sivov836b4182008-04-25 23:17:41 +0400630 if(!points || !grad)
631 return InvalidParameter;
632
633 if(count <= 0)
634 return OutOfMemory;
635
636 pointsF = GdipAlloc(sizeof(GpPointF) * count);
637 if(!pointsF)
638 return OutOfMemory;
639
640 for(i = 0; i < count; i++){
641 pointsF[i].X = (REAL)points[i].X;
642 pointsF[i].Y = (REAL)points[i].Y;
643 }
644
645 ret = GdipCreatePathGradient(pointsF, count, wrap, grad);
646 GdipFree(pointsF);
647
648 return ret;
649}
650
Francois Gouget85770252008-09-14 02:12:25 +0200651/******************************************************************************
652 * GdipCreatePathGradientFromPath [GDIPLUS.@]
653 *
654 * FIXME: path gradient brushes not truly supported (drawn as solid brushes)
655 */
Evan Stadef18cdef2007-08-01 17:56:02 -0700656GpStatus WINGDIPAPI GdipCreatePathGradientFromPath(GDIPCONST GpPath* path,
657 GpPathGradient **grad)
658{
659 COLORREF col = ARGB2COLORREF(0xffffffff);
660
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400661 TRACE("(%p, %p)\n", path, grad);
662
Evan Stadef18cdef2007-08-01 17:56:02 -0700663 if(!path || !grad)
664 return InvalidParameter;
665
666 *grad = GdipAlloc(sizeof(GpPathGradient));
667 if (!*grad) return OutOfMemory;
668
Nikolay Sivov01abb3d2008-07-21 23:30:39 +0400669 (*grad)->blendfac = GdipAlloc(sizeof(REAL));
Vincent Povirk4c93f9f2010-06-19 16:31:14 -0500670 (*grad)->blendpos = GdipAlloc(sizeof(REAL));
671 if(!(*grad)->blendfac || !(*grad)->blendpos){
672 GdipFree((*grad)->blendfac);
673 GdipFree((*grad)->blendpos);
Nikolay Sivov01abb3d2008-07-21 23:30:39 +0400674 GdipFree(*grad);
675 return OutOfMemory;
676 }
677 (*grad)->blendfac[0] = 1.0;
Vincent Povirk4c93f9f2010-06-19 16:31:14 -0500678 (*grad)->blendpos[0] = 1.0;
Nikolay Sivov01abb3d2008-07-21 23:30:39 +0400679 (*grad)->blendcount = 1;
680
Evan Stade490ca1c2007-08-02 17:51:49 -0700681 (*grad)->pathdata.Count = path->pathdata.Count;
682 (*grad)->pathdata.Points = GdipAlloc(path->pathdata.Count * sizeof(PointF));
683 (*grad)->pathdata.Types = GdipAlloc(path->pathdata.Count);
684
685 if(!(*grad)->pathdata.Points || !(*grad)->pathdata.Types){
686 GdipFree((*grad)->pathdata.Points);
687 GdipFree((*grad)->pathdata.Types);
688 GdipFree(*grad);
689 return OutOfMemory;
690 }
691
692 memcpy((*grad)->pathdata.Points, path->pathdata.Points,
693 path->pathdata.Count * sizeof(PointF));
694 memcpy((*grad)->pathdata.Types, path->pathdata.Types, path->pathdata.Count);
695
Evan Stadef18cdef2007-08-01 17:56:02 -0700696 (*grad)->brush.lb.lbStyle = BS_SOLID;
697 (*grad)->brush.lb.lbColor = col;
698 (*grad)->brush.lb.lbHatch = 0;
699
700 (*grad)->brush.gdibrush = CreateSolidBrush(col);
Evan Stade490ca1c2007-08-02 17:51:49 -0700701 (*grad)->brush.bt = BrushTypePathGradient;
Evan Stadef18cdef2007-08-01 17:56:02 -0700702 (*grad)->centercolor = 0xffffffff;
Evan Stadef0dbfe92007-08-01 17:56:10 -0700703 (*grad)->wrap = WrapModeClamp;
Evan Stade9ea7ef42007-08-02 17:52:49 -0700704 (*grad)->gamma = FALSE;
Evan Stade9a9c8572007-08-02 17:52:59 -0700705 /* FIXME: this should be set to the "centroid" of the path by default */
706 (*grad)->center.X = 0.0;
707 (*grad)->center.Y = 0.0;
Evan Stade496c3192007-08-02 17:53:04 -0700708 (*grad)->focus.X = 0.0;
709 (*grad)->focus.Y = 0.0;
Evan Stadef18cdef2007-08-01 17:56:02 -0700710
Vincent Povirkf1417782009-12-18 14:58:28 -0600711 TRACE("<-- %p\n", *grad);
712
Evan Stadef18cdef2007-08-01 17:56:02 -0700713 return Ok;
714}
715
Francois Gouget85770252008-09-14 02:12:25 +0200716/******************************************************************************
717 * GdipCreateSolidFill [GDIPLUS.@]
718 */
Evan Stadecc0a6762007-06-14 16:09:07 -0700719GpStatus WINGDIPAPI GdipCreateSolidFill(ARGB color, GpSolidFill **sf)
720{
721 COLORREF col = ARGB2COLORREF(color);
722
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400723 TRACE("(%x, %p)\n", color, sf);
724
Evan Stadecc0a6762007-06-14 16:09:07 -0700725 if(!sf) return InvalidParameter;
726
727 *sf = GdipAlloc(sizeof(GpSolidFill));
728 if (!*sf) return OutOfMemory;
729
Evan Stade7af2e972007-07-19 18:22:59 -0700730 (*sf)->brush.lb.lbStyle = BS_SOLID;
731 (*sf)->brush.lb.lbColor = col;
732 (*sf)->brush.lb.lbHatch = 0;
733
Evan Stadecc0a6762007-06-14 16:09:07 -0700734 (*sf)->brush.gdibrush = CreateSolidBrush(col);
735 (*sf)->brush.bt = BrushTypeSolidColor;
Evan Stade8b2ce0f2007-07-23 20:24:24 -0700736 (*sf)->color = color;
Vincent Povirk60167df2009-05-20 11:24:18 -0500737 (*sf)->bmp = ARGB2BMP(color);
Evan Stadecc0a6762007-06-14 16:09:07 -0700738
Vincent Povirkf1417782009-12-18 14:58:28 -0600739 TRACE("<-- %p\n", *sf);
740
Evan Stadecc0a6762007-06-14 16:09:07 -0700741 return Ok;
742}
743
Francois Gouget85770252008-09-14 02:12:25 +0200744/******************************************************************************
Adam Petaccia7b3e6d02008-08-31 01:06:58 -0400745 * GdipCreateTexture [GDIPLUS.@]
746 *
747 * PARAMS
748 * image [I] image to use
749 * wrapmode [I] optional
750 * texture [O] pointer to the resulting texturebrush
751 *
752 * RETURNS
753 * SUCCESS: Ok
754 * FAILURE: element of GpStatus
755 */
Adam Petaccia406c5d32008-08-31 01:06:42 -0400756GpStatus WINGDIPAPI GdipCreateTexture(GpImage *image, GpWrapMode wrapmode,
757 GpTexture **texture)
758{
Adam Petaccia7b3e6d02008-08-31 01:06:58 -0400759 UINT width, height;
760 GpImageAttributes attributes;
761 GpStatus stat;
Adam Petaccia406c5d32008-08-31 01:06:42 -0400762
Adam Petaccia7b3e6d02008-08-31 01:06:58 -0400763 TRACE("%p, %d %p\n", image, wrapmode, texture);
764
765 if (!(image && texture))
766 return InvalidParameter;
767
768 stat = GdipGetImageWidth(image, &width);
769 if (stat != Ok) return stat;
770 stat = GdipGetImageHeight(image, &height);
771 if (stat != Ok) return stat;
772 attributes.wrap = wrapmode;
773
774 return GdipCreateTextureIA(image, &attributes, 0, 0, width, height,
775 texture);
Adam Petaccia406c5d32008-08-31 01:06:42 -0400776}
777
Francois Gouget85770252008-09-14 02:12:25 +0200778/******************************************************************************
779 * GdipCreateTexture2 [GDIPLUS.@]
780 */
Adam Petaccia29e19942008-08-31 01:06:49 -0400781GpStatus WINGDIPAPI GdipCreateTexture2(GpImage *image, GpWrapMode wrapmode,
782 REAL x, REAL y, REAL width, REAL height, GpTexture **texture)
783{
Adam Petacciab6afa7a2008-08-31 01:07:02 -0400784 GpImageAttributes attributes;
785
786 TRACE("%p %d %f %f %f %f %p\n", image, wrapmode,
Adam Petaccia29e19942008-08-31 01:06:49 -0400787 x, y, width, height, texture);
788
Adam Petacciab6afa7a2008-08-31 01:07:02 -0400789 attributes.wrap = wrapmode;
790 return GdipCreateTextureIA(image, &attributes, x, y, width, height,
791 texture);
Adam Petaccia29e19942008-08-31 01:06:49 -0400792}
793
Francois Gouget85770252008-09-14 02:12:25 +0200794/******************************************************************************
795 * GdipCreateTextureIA [GDIPLUS.@]
796 *
797 * FIXME: imageattr ignored
798 */
Evan Stadeb9411ba2007-08-09 18:25:14 -0700799GpStatus WINGDIPAPI GdipCreateTextureIA(GpImage *image,
800 GDIPCONST GpImageAttributes *imageattr, REAL x, REAL y, REAL width,
801 REAL height, GpTexture **texture)
802{
Vincent Povirkaa764902010-04-17 15:38:44 -0500803 HBITMAP hbm=NULL;
Nikolay Sivov48b80722008-09-25 08:54:24 +0400804 GpStatus status;
Vincent Povirk53e326a2010-02-11 16:30:56 -0600805 GpImage *new_image=NULL;
Evan Stadeb9411ba2007-08-09 18:25:14 -0700806
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400807 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %p)\n", image, imageattr, x, y, width, height,
808 texture);
809
Evan Stadeb9411ba2007-08-09 18:25:14 -0700810 if(!image || !texture || x < 0.0 || y < 0.0 || width < 0.0 || height < 0.0)
811 return InvalidParameter;
812
Marcus Meissner21b90492010-02-16 11:54:48 +0100813 *texture = NULL;
814
Evan Stadeb9411ba2007-08-09 18:25:14 -0700815 if(image->type != ImageTypeBitmap){
816 FIXME("not implemented for image type %d\n", image->type);
817 return NotImplemented;
818 }
819
Vincent Povirk53e326a2010-02-11 16:30:56 -0600820 status = GdipCloneBitmapArea(x, y, width, height, PixelFormatDontCare, (GpBitmap*)image, (GpBitmap**)&new_image);
821 if (status != Ok)
822 return status;
Evan Stadeb9411ba2007-08-09 18:25:14 -0700823
Vincent Povirkaa764902010-04-17 15:38:44 -0500824 status = GdipCreateHBITMAPFromBitmap((GpBitmap*)new_image, &hbm, 0);
Vincent Povirk53e326a2010-02-11 16:30:56 -0600825 if(!hbm)
826 {
827 status = GenericError;
828 goto exit;
Evan Stadeb9411ba2007-08-09 18:25:14 -0700829 }
830
Evan Stadeb9411ba2007-08-09 18:25:14 -0700831 *texture = GdipAlloc(sizeof(GpTexture));
Lei Zhangfc753bb2008-09-28 12:17:26 -0700832 if (!*texture){
Vincent Povirk53e326a2010-02-11 16:30:56 -0600833 status = OutOfMemory;
834 goto exit;
Lei Zhangfc753bb2008-09-28 12:17:26 -0700835 }
Evan Stadeb9411ba2007-08-09 18:25:14 -0700836
Nikolay Sivov48b80722008-09-25 08:54:24 +0400837 if((status = GdipCreateMatrix(&(*texture)->transform)) != Ok){
Vincent Povirk53e326a2010-02-11 16:30:56 -0600838 goto exit;
Nikolay Sivov48b80722008-09-25 08:54:24 +0400839 }
840
Vincent Povirk53e326a2010-02-11 16:30:56 -0600841 (*texture)->brush.lb.lbStyle = BS_PATTERN;
842 (*texture)->brush.lb.lbColor = 0;
843 (*texture)->brush.lb.lbHatch = (ULONG_PTR)hbm;
Evan Stadeb9411ba2007-08-09 18:25:14 -0700844
845 (*texture)->brush.gdibrush = CreateBrushIndirect(&(*texture)->brush.lb);
846 (*texture)->brush.bt = BrushTypeTextureFill;
Vincent Povirk69e9de12010-03-08 11:28:25 -0600847 if (imageattr)
848 (*texture)->wrap = imageattr->wrap;
849 else
850 (*texture)->wrap = WrapModeTile;
Vincent Povirk70c9e4f2010-02-11 16:43:45 -0600851 (*texture)->image = new_image;
Evan Stadeb9411ba2007-08-09 18:25:14 -0700852
Vincent Povirk53e326a2010-02-11 16:30:56 -0600853exit:
Vincent Povirk53e326a2010-02-11 16:30:56 -0600854 if (status == Ok)
855 {
856 TRACE("<-- %p\n", *texture);
857 }
858 else
859 {
860 if (*texture)
861 {
862 GdipDeleteMatrix((*texture)->transform);
863 GdipFree(*texture);
864 *texture = NULL;
865 }
Vincent Povirk70c9e4f2010-02-11 16:43:45 -0600866 GdipDisposeImage(new_image);
Vincent Povirk53e326a2010-02-11 16:30:56 -0600867 TRACE("<-- error %u\n", status);
868 }
Vincent Povirkf1417782009-12-18 14:58:28 -0600869
Vincent Povirkaa764902010-04-17 15:38:44 -0500870 DeleteObject(hbm);
871
Vincent Povirk53e326a2010-02-11 16:30:56 -0600872 return status;
Evan Stadeb9411ba2007-08-09 18:25:14 -0700873}
874
Francois Gouget85770252008-09-14 02:12:25 +0200875/******************************************************************************
876 * GdipCreateTextureIAI [GDIPLUS.@]
877 */
Nikolay Sivov1ee3b0f2008-07-03 03:04:40 +0400878GpStatus WINGDIPAPI GdipCreateTextureIAI(GpImage *image, GDIPCONST GpImageAttributes *imageattr,
879 INT x, INT y, INT width, INT height, GpTexture **texture)
880{
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400881 TRACE("(%p, %p, %d, %d, %d, %d, %p)\n", image, imageattr, x, y, width, height,
882 texture);
883
Nikolay Sivov1ee3b0f2008-07-03 03:04:40 +0400884 return GdipCreateTextureIA(image,imageattr,(REAL)x,(REAL)y,(REAL)width,(REAL)height,texture);
885}
886
Adam Petacciacb88bbd2008-08-31 01:06:54 -0400887GpStatus WINGDIPAPI GdipCreateTexture2I(GpImage *image, GpWrapMode wrapmode,
888 INT x, INT y, INT width, INT height, GpTexture **texture)
889{
Adam Petacciaf7fc4e12008-08-31 01:07:06 -0400890 GpImageAttributes imageattr;
Adam Petacciacb88bbd2008-08-31 01:06:54 -0400891
Francois Gouget758c4532008-09-05 13:14:56 +0200892 TRACE("%p %d %d %d %d %d %p\n", image, wrapmode, x, y, width, height,
Adam Petacciaf7fc4e12008-08-31 01:07:06 -0400893 texture);
894
895 imageattr.wrap = wrapmode;
896
897 return GdipCreateTextureIA(image, &imageattr, x, y, width, height, texture);
Adam Petacciacb88bbd2008-08-31 01:06:54 -0400898}
899
Evan Stadecc0a6762007-06-14 16:09:07 -0700900GpStatus WINGDIPAPI GdipGetBrushType(GpBrush *brush, GpBrushType *type)
901{
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400902 TRACE("(%p, %p)\n", brush, type);
903
Evan Stadecc0a6762007-06-14 16:09:07 -0700904 if(!brush || !type) return InvalidParameter;
905
906 *type = brush->bt;
907
908 return Ok;
909}
910
Chris Wulff10637b42009-01-10 18:52:31 -0500911GpStatus WINGDIPAPI GdipGetHatchBackgroundColor(GpHatch *brush, ARGB *backcol)
912{
913 TRACE("(%p, %p)\n", brush, backcol);
914
915 if(!brush || !backcol) return InvalidParameter;
916
917 *backcol = brush->backcol;
918
919 return Ok;
920}
921
922GpStatus WINGDIPAPI GdipGetHatchForegroundColor(GpHatch *brush, ARGB *forecol)
923{
924 TRACE("(%p, %p)\n", brush, forecol);
925
926 if(!brush || !forecol) return InvalidParameter;
927
928 *forecol = brush->forecol;
929
930 return Ok;
931}
932
933GpStatus WINGDIPAPI GdipGetHatchStyle(GpHatch *brush, HatchStyle *hatchstyle)
934{
935 TRACE("(%p, %p)\n", brush, hatchstyle);
936
937 if(!brush || !hatchstyle) return InvalidParameter;
938
939 *hatchstyle = brush->hatchstyle;
940
941 return Ok;
942}
943
Evan Stadecc0a6762007-06-14 16:09:07 -0700944GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush *brush)
945{
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400946 TRACE("(%p)\n", brush);
947
Evan Stadecc0a6762007-06-14 16:09:07 -0700948 if(!brush) return InvalidParameter;
949
Evan Stade7929ba82007-08-02 17:52:55 -0700950 switch(brush->bt)
951 {
952 case BrushTypePathGradient:
953 GdipFree(((GpPathGradient*) brush)->pathdata.Points);
954 GdipFree(((GpPathGradient*) brush)->pathdata.Types);
Nikolay Sivov01abb3d2008-07-21 23:30:39 +0400955 GdipFree(((GpPathGradient*) brush)->blendfac);
956 GdipFree(((GpPathGradient*) brush)->blendpos);
Evan Stade7929ba82007-08-02 17:52:55 -0700957 break;
958 case BrushTypeSolidColor:
Vincent Povirk60167df2009-05-20 11:24:18 -0500959 if (((GpSolidFill*)brush)->bmp)
960 DeleteObject(((GpSolidFill*)brush)->bmp);
Vincent Povirkb05cf902009-04-28 18:03:41 -0500961 break;
Evan Stadeec304912007-08-07 18:42:56 -0700962 case BrushTypeLinearGradient:
Vincent Povirkb05cf902009-04-28 18:03:41 -0500963 GdipFree(((GpLineGradient*)brush)->blendfac);
964 GdipFree(((GpLineGradient*)brush)->blendpos);
Vincent Povirk8bdabe32009-09-14 16:21:50 -0500965 GdipFree(((GpLineGradient*)brush)->pblendcolor);
966 GdipFree(((GpLineGradient*)brush)->pblendpos);
Nikolay Sivov48b80722008-09-25 08:54:24 +0400967 break;
Evan Stade8254c372007-08-09 18:25:18 -0700968 case BrushTypeTextureFill:
Nikolay Sivov48b80722008-09-25 08:54:24 +0400969 GdipDeleteMatrix(((GpTexture*)brush)->transform);
Vincent Povirk70c9e4f2010-02-11 16:43:45 -0600970 GdipDisposeImage(((GpTexture*)brush)->image);
Nikolay Sivov48b80722008-09-25 08:54:24 +0400971 break;
Evan Stade7929ba82007-08-02 17:52:55 -0700972 default:
973 break;
974 }
975
Evan Stadecc0a6762007-06-14 16:09:07 -0700976 DeleteObject(brush->gdibrush);
977 GdipFree(brush);
978
979 return Ok;
980}
Evan Stade82abeee2007-07-23 20:24:13 -0700981
Evan Stadeddea5bd2007-08-07 18:42:40 -0700982GpStatus WINGDIPAPI GdipGetLineGammaCorrection(GpLineGradient *line,
983 BOOL *usinggamma)
984{
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400985 TRACE("(%p, %p)\n", line, usinggamma);
986
Nikolay Sivov69e17d62008-09-03 00:25:39 +0400987 if(!line || !usinggamma)
Evan Stadeddea5bd2007-08-07 18:42:40 -0700988 return InvalidParameter;
989
990 *usinggamma = line->gamma;
991
992 return Ok;
993}
994
Nikolay Sivov9fbec612008-07-08 01:32:19 +0400995GpStatus WINGDIPAPI GdipGetLineWrapMode(GpLineGradient *brush, GpWrapMode *wrapmode)
996{
Nikolay Sivov26ccb332008-09-03 00:13:40 +0400997 TRACE("(%p, %p)\n", brush, wrapmode);
998
Nikolay Sivov9fbec612008-07-08 01:32:19 +0400999 if(!brush || !wrapmode)
1000 return InvalidParameter;
1001
1002 *wrapmode = brush->wrap;
1003
1004 return Ok;
1005}
1006
Nikolay Sivov48e914b2008-07-21 23:30:50 +04001007GpStatus WINGDIPAPI GdipGetPathGradientBlend(GpPathGradient *brush, REAL *blend,
1008 REAL *positions, INT count)
1009{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001010 TRACE("(%p, %p, %p, %d)\n", brush, blend, positions, count);
1011
Nikolay Sivov48e914b2008-07-21 23:30:50 +04001012 if(!brush || !blend || !positions || count <= 0)
1013 return InvalidParameter;
1014
1015 if(count < brush->blendcount)
1016 return InsufficientBuffer;
1017
1018 memcpy(blend, brush->blendfac, count*sizeof(REAL));
1019 if(brush->blendcount > 1){
1020 memcpy(positions, brush->blendpos, count*sizeof(REAL));
1021 }
1022
1023 return Ok;
1024}
1025
Nikolay Sivov01abb3d2008-07-21 23:30:39 +04001026GpStatus WINGDIPAPI GdipGetPathGradientBlendCount(GpPathGradient *brush, INT *count)
1027{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001028 TRACE("(%p, %p)\n", brush, count);
1029
Nikolay Sivov01abb3d2008-07-21 23:30:39 +04001030 if(!brush || !count)
1031 return InvalidParameter;
1032
1033 *count = brush->blendcount;
1034
1035 return Ok;
1036}
1037
Evan Stade9a9c8572007-08-02 17:52:59 -07001038GpStatus WINGDIPAPI GdipGetPathGradientCenterPoint(GpPathGradient *grad,
1039 GpPointF *point)
1040{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001041 TRACE("(%p, %p)\n", grad, point);
1042
Evan Stade9a9c8572007-08-02 17:52:59 -07001043 if(!grad || !point)
1044 return InvalidParameter;
1045
1046 point->X = grad->center.X;
1047 point->Y = grad->center.Y;
1048
1049 return Ok;
1050}
1051
Nikolay Sivov9cce7892008-04-29 00:10:25 +04001052GpStatus WINGDIPAPI GdipGetPathGradientCenterPointI(GpPathGradient *grad,
1053 GpPoint *point)
1054{
1055 GpStatus ret;
1056 GpPointF ptf;
1057
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001058 TRACE("(%p, %p)\n", grad, point);
1059
Nikolay Sivov9cce7892008-04-29 00:10:25 +04001060 if(!point)
1061 return InvalidParameter;
1062
1063 ret = GdipGetPathGradientCenterPoint(grad,&ptf);
1064
1065 if(ret == Ok){
1066 point->X = roundr(ptf.X);
1067 point->Y = roundr(ptf.Y);
1068 }
1069
1070 return ret;
1071}
1072
Vincent Povirk01780932010-06-19 16:15:00 -05001073GpStatus WINGDIPAPI GdipGetPathGradientCenterColor(GpPathGradient *grad,
1074 ARGB *colors)
1075{
1076 static int calls;
1077
1078 TRACE("(%p,%p)\n", grad, colors);
1079
1080 if(!(calls++))
1081 FIXME("not implemented\n");
1082
1083 return NotImplemented;
1084}
1085
Evan Stade496c3192007-08-02 17:53:04 -07001086GpStatus WINGDIPAPI GdipGetPathGradientFocusScales(GpPathGradient *grad,
1087 REAL *x, REAL *y)
1088{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001089 TRACE("(%p, %p, %p)\n", grad, x, y);
1090
Evan Stade496c3192007-08-02 17:53:04 -07001091 if(!grad || !x || !y)
1092 return InvalidParameter;
1093
1094 *x = grad->focus.X;
1095 *y = grad->focus.Y;
1096
1097 return Ok;
1098}
1099
Evan Stade9ea7ef42007-08-02 17:52:49 -07001100GpStatus WINGDIPAPI GdipGetPathGradientGammaCorrection(GpPathGradient *grad,
1101 BOOL *gamma)
1102{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001103 TRACE("(%p, %p)\n", grad, gamma);
1104
Evan Stade9ea7ef42007-08-02 17:52:49 -07001105 if(!grad || !gamma)
1106 return InvalidParameter;
1107
1108 *gamma = grad->gamma;
1109
1110 return Ok;
1111}
1112
Evan Stade490ca1c2007-08-02 17:51:49 -07001113GpStatus WINGDIPAPI GdipGetPathGradientPointCount(GpPathGradient *grad,
1114 INT *count)
1115{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001116 TRACE("(%p, %p)\n", grad, count);
1117
Evan Stade490ca1c2007-08-02 17:51:49 -07001118 if(!grad || !count)
1119 return InvalidParameter;
1120
1121 *count = grad->pathdata.Count;
1122
1123 return Ok;
1124}
1125
Nikolay Sivov74dc9902008-07-23 02:07:28 +04001126GpStatus WINGDIPAPI GdipGetPathGradientRect(GpPathGradient *brush, GpRectF *rect)
1127{
1128 GpRectF r;
1129 GpPath* path;
1130 GpStatus stat;
1131
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001132 TRACE("(%p, %p)\n", brush, rect);
1133
Nikolay Sivov74dc9902008-07-23 02:07:28 +04001134 if(!brush || !rect)
1135 return InvalidParameter;
1136
1137 stat = GdipCreatePath2(brush->pathdata.Points, brush->pathdata.Types,
1138 brush->pathdata.Count, FillModeAlternate, &path);
1139 if(stat != Ok) return stat;
1140
1141 stat = GdipGetPathWorldBounds(path, &r, NULL, NULL);
1142 if(stat != Ok){
1143 GdipDeletePath(path);
1144 return stat;
1145 }
1146
1147 memcpy(rect, &r, sizeof(GpRectF));
1148
1149 GdipDeletePath(path);
1150
1151 return Ok;
1152}
1153
1154GpStatus WINGDIPAPI GdipGetPathGradientRectI(GpPathGradient *brush, GpRect *rect)
1155{
1156 GpRectF rectf;
1157 GpStatus stat;
1158
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001159 TRACE("(%p, %p)\n", brush, rect);
1160
Nikolay Sivov74dc9902008-07-23 02:07:28 +04001161 if(!brush || !rect)
1162 return InvalidParameter;
1163
1164 stat = GdipGetPathGradientRect(brush, &rectf);
1165 if(stat != Ok) return stat;
1166
1167 rect->X = roundr(rectf.X);
1168 rect->Y = roundr(rectf.Y);
1169 rect->Width = roundr(rectf.Width);
1170 rect->Height = roundr(rectf.Height);
1171
1172 return Ok;
1173}
1174
Evan Stade03af4ed2007-08-02 17:51:58 -07001175GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorsWithCount(GpPathGradient
1176 *grad, ARGB *argb, INT *count)
1177{
1178 static int calls;
1179
Vincent Povirkd49510e2009-12-18 15:54:26 -06001180 TRACE("(%p,%p,%p)\n", grad, argb, count);
1181
Evan Stade03af4ed2007-08-02 17:51:58 -07001182 if(!grad || !argb || !count || (*count < grad->pathdata.Count))
1183 return InvalidParameter;
1184
1185 if(!(calls++))
1186 FIXME("not implemented\n");
1187
1188 return NotImplemented;
1189}
1190
Justin Chevrier40278132010-03-27 17:55:27 -04001191GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorCount(GpPathGradient *brush, INT *count)
1192{
1193 TRACE("(%p, %p)\n", brush, count);
1194
1195 if (!brush || !count)
1196 return InvalidParameter;
1197
1198 return NotImplemented;
1199}
1200
Nikolay Sivov58901f12008-06-29 13:02:27 +04001201GpStatus WINGDIPAPI GdipGetPathGradientWrapMode(GpPathGradient *brush,
1202 GpWrapMode *wrapmode)
1203{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001204 TRACE("(%p, %p)\n", brush, wrapmode);
1205
Nikolay Sivov58901f12008-06-29 13:02:27 +04001206 if(!brush || !wrapmode)
1207 return InvalidParameter;
1208
1209 *wrapmode = brush->wrap;
1210
1211 return Ok;
1212}
1213
Evan Stade82abeee2007-07-23 20:24:13 -07001214GpStatus WINGDIPAPI GdipGetSolidFillColor(GpSolidFill *sf, ARGB *argb)
1215{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001216 TRACE("(%p, %p)\n", sf, argb);
1217
Evan Stade82abeee2007-07-23 20:24:13 -07001218 if(!sf || !argb)
1219 return InvalidParameter;
1220
Evan Stade8b2ce0f2007-07-23 20:24:24 -07001221 *argb = sf->color;
1222
1223 return Ok;
Evan Stade82abeee2007-07-23 20:24:13 -07001224}
1225
Nikolay Sivov48b80722008-09-25 08:54:24 +04001226/******************************************************************************
Vincent Povirkcf4ec6e2010-02-13 12:21:08 -06001227 * GdipGetTextureImage [GDIPLUS.@]
1228 */
1229GpStatus WINGDIPAPI GdipGetTextureImage(GpTexture *brush, GpImage **image)
1230{
1231 TRACE("(%p, %p)\n", brush, image);
1232
1233 if(!brush || !image)
1234 return InvalidParameter;
1235
1236 return GdipCloneImage(brush->image, image);
1237}
1238
1239/******************************************************************************
Nikolay Sivov48b80722008-09-25 08:54:24 +04001240 * GdipGetTextureTransform [GDIPLUS.@]
1241 */
1242GpStatus WINGDIPAPI GdipGetTextureTransform(GpTexture *brush, GpMatrix *matrix)
1243{
1244 TRACE("(%p, %p)\n", brush, matrix);
1245
1246 if(!brush || !matrix)
1247 return InvalidParameter;
1248
1249 memcpy(matrix, brush->transform, sizeof(GpMatrix));
1250
1251 return Ok;
1252}
1253
Nikolay Sivov31847cf2008-09-25 08:57:55 +04001254/******************************************************************************
Nikolay Sivov37bbe9d2008-10-21 19:39:21 +04001255 * GdipGetTextureWrapMode [GDIPLUS.@]
1256 */
1257GpStatus WINGDIPAPI GdipGetTextureWrapMode(GpTexture *brush, GpWrapMode *wrapmode)
1258{
1259 TRACE("(%p, %p)\n", brush, wrapmode);
1260
1261 if(!brush || !wrapmode)
1262 return InvalidParameter;
1263
1264 *wrapmode = brush->wrap;
1265
1266 return Ok;
1267}
1268
1269/******************************************************************************
Nikolay Sivova886b472008-12-03 00:49:19 +03001270 * GdipMultiplyTextureTransform [GDIPLUS.@]
1271 */
1272GpStatus WINGDIPAPI GdipMultiplyTextureTransform(GpTexture* brush,
1273 GDIPCONST GpMatrix *matrix, GpMatrixOrder order)
1274{
1275 TRACE("(%p, %p, %d)\n", brush, matrix, order);
1276
1277 if(!brush || !matrix)
1278 return InvalidParameter;
1279
1280 return GdipMultiplyMatrix(brush->transform, matrix, order);
1281}
1282
1283/******************************************************************************
Nikolay Sivov31847cf2008-09-25 08:57:55 +04001284 * GdipResetTextureTransform [GDIPLUS.@]
1285 */
1286GpStatus WINGDIPAPI GdipResetTextureTransform(GpTexture* brush)
1287{
1288 TRACE("(%p)\n", brush);
1289
1290 if(!brush)
1291 return InvalidParameter;
1292
1293 return GdipSetMatrixElements(brush->transform, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0);
1294}
1295
Nikolay Sivov958e73a2008-12-05 10:37:21 +03001296/******************************************************************************
1297 * GdipScaleTextureTransform [GDIPLUS.@]
1298 */
1299GpStatus WINGDIPAPI GdipScaleTextureTransform(GpTexture* brush,
1300 REAL sx, REAL sy, GpMatrixOrder order)
1301{
1302 TRACE("(%p, %.2f, %.2f, %d)\n", brush, sx, sy, order);
1303
1304 if(!brush)
1305 return InvalidParameter;
1306
1307 return GdipScaleMatrix(brush->transform, sx, sy, order);
1308}
1309
Evan Stadeb56689d2007-08-14 19:01:00 -07001310GpStatus WINGDIPAPI GdipSetLineBlend(GpLineGradient *brush,
Vincent Povirk1f4940a2009-04-28 18:25:59 -05001311 GDIPCONST REAL *factors, GDIPCONST REAL* positions, INT count)
Evan Stadeb56689d2007-08-14 19:01:00 -07001312{
Vincent Povirk1f4940a2009-04-28 18:25:59 -05001313 REAL *new_blendfac, *new_blendpos;
Evan Stadeb56689d2007-08-14 19:01:00 -07001314
Vincent Povirk1f4940a2009-04-28 18:25:59 -05001315 TRACE("(%p, %p, %p, %i)\n", brush, factors, positions, count);
1316
1317 if(!brush || !factors || !positions || count <= 0 ||
1318 (count >= 2 && (positions[0] != 0.0f || positions[count-1] != 1.0f)))
Evan Stadeb56689d2007-08-14 19:01:00 -07001319 return InvalidParameter;
1320
Vincent Povirk1f4940a2009-04-28 18:25:59 -05001321 new_blendfac = GdipAlloc(count * sizeof(REAL));
1322 new_blendpos = GdipAlloc(count * sizeof(REAL));
1323
1324 if (!new_blendfac || !new_blendpos)
1325 {
1326 GdipFree(new_blendfac);
1327 GdipFree(new_blendpos);
1328 return OutOfMemory;
1329 }
1330
1331 memcpy(new_blendfac, factors, count * sizeof(REAL));
1332 memcpy(new_blendpos, positions, count * sizeof(REAL));
1333
1334 GdipFree(brush->blendfac);
1335 GdipFree(brush->blendpos);
1336
1337 brush->blendcount = count;
1338 brush->blendfac = new_blendfac;
1339 brush->blendpos = new_blendpos;
Evan Stadeb56689d2007-08-14 19:01:00 -07001340
1341 return Ok;
1342}
1343
Vincent Povirk1de79222009-04-28 17:28:22 -05001344GpStatus WINGDIPAPI GdipGetLineBlend(GpLineGradient *brush, REAL *factors,
1345 REAL *positions, INT count)
1346{
Vincent Povirk1de79222009-04-28 17:28:22 -05001347 TRACE("(%p, %p, %p, %i)\n", brush, factors, positions, count);
1348
Vincent Povirk47a81f52009-04-28 18:18:26 -05001349 if (!brush || !factors || !positions || count <= 0)
1350 return InvalidParameter;
Vincent Povirk1de79222009-04-28 17:28:22 -05001351
Vincent Povirk47a81f52009-04-28 18:18:26 -05001352 if (count < brush->blendcount)
1353 return InsufficientBuffer;
1354
1355 memcpy(factors, brush->blendfac, brush->blendcount * sizeof(REAL));
1356 memcpy(positions, brush->blendpos, brush->blendcount * sizeof(REAL));
1357
1358 return Ok;
Vincent Povirk1de79222009-04-28 17:28:22 -05001359}
1360
Vincent Povirk3d37b0a2009-04-28 17:01:38 -05001361GpStatus WINGDIPAPI GdipGetLineBlendCount(GpLineGradient *brush, INT *count)
1362{
Vincent Povirk3d37b0a2009-04-28 17:01:38 -05001363 TRACE("(%p, %p)\n", brush, count);
1364
Vincent Povirk1e88ee52009-04-28 18:08:54 -05001365 if (!brush || !count)
1366 return InvalidParameter;
Vincent Povirk3d37b0a2009-04-28 17:01:38 -05001367
Vincent Povirk1e88ee52009-04-28 18:08:54 -05001368 *count = brush->blendcount;
1369
1370 return Ok;
Vincent Povirk3d37b0a2009-04-28 17:01:38 -05001371}
1372
Evan Stadeddea5bd2007-08-07 18:42:40 -07001373GpStatus WINGDIPAPI GdipSetLineGammaCorrection(GpLineGradient *line,
1374 BOOL usegamma)
1375{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001376 TRACE("(%p, %d)\n", line, usegamma);
1377
Evan Stadeddea5bd2007-08-07 18:42:40 -07001378 if(!line)
1379 return InvalidParameter;
1380
1381 line->gamma = usegamma;
1382
1383 return Ok;
1384}
1385
Evan Stade48ae8ea2007-08-07 18:42:36 -07001386GpStatus WINGDIPAPI GdipSetLineSigmaBlend(GpLineGradient *line, REAL focus,
1387 REAL scale)
1388{
Vincent Povirk1860b322009-05-04 17:53:48 -05001389 REAL factors[33];
1390 REAL positions[33];
1391 int num_points = 0;
1392 int i;
1393 const int precision = 16;
1394 REAL erf_range; /* we use values erf(-erf_range) through erf(+erf_range) */
1395 REAL min_erf;
1396 REAL scale_erf;
1397
1398 TRACE("(%p, %0.2f, %0.2f)\n", line, focus, scale);
Evan Stade48ae8ea2007-08-07 18:42:36 -07001399
1400 if(!line || focus < 0.0 || focus > 1.0 || scale < 0.0 || scale > 1.0)
1401 return InvalidParameter;
1402
Vincent Povirk1860b322009-05-04 17:53:48 -05001403 /* we want 2 standard deviations */
1404 erf_range = 2.0 / sqrt(2);
Evan Stade48ae8ea2007-08-07 18:42:36 -07001405
Vincent Povirk1860b322009-05-04 17:53:48 -05001406 /* calculate the constants we need to normalize the error function to be
1407 between 0.0 and scale over the range we need */
1408 min_erf = erf(-erf_range);
1409 scale_erf = scale / (-2.0 * min_erf);
1410
1411 if (focus != 0.0)
1412 {
1413 positions[0] = 0.0;
1414 factors[0] = 0.0;
1415 for (i=1; i<precision; i++)
1416 {
1417 positions[i] = focus * i / precision;
1418 factors[i] = scale_erf * (erf(2 * erf_range * i / precision - erf_range) - min_erf);
1419 }
1420 num_points += precision;
1421 }
1422
1423 positions[num_points] = focus;
1424 factors[num_points] = scale;
1425 num_points += 1;
1426
1427 if (focus != 1.0)
1428 {
1429 for (i=1; i<precision; i++)
1430 {
1431 positions[i+num_points-1] = (focus + ((1.0-focus) * i / precision));
1432 factors[i+num_points-1] = scale_erf * (erf(erf_range - 2 * erf_range * i / precision) - min_erf);
1433 }
1434 num_points += precision;
1435 positions[num_points-1] = 1.0;
1436 factors[num_points-1] = 0.0;
1437 }
1438
1439 return GdipSetLineBlend(line, factors, positions, num_points);
Evan Stade48ae8ea2007-08-07 18:42:36 -07001440}
1441
Evan Stade37657bc2007-08-07 18:42:32 -07001442GpStatus WINGDIPAPI GdipSetLineWrapMode(GpLineGradient *line,
1443 GpWrapMode wrap)
1444{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001445 TRACE("(%p, %d)\n", line, wrap);
1446
Evan Stade37657bc2007-08-07 18:42:32 -07001447 if(!line || wrap == WrapModeClamp)
1448 return InvalidParameter;
1449
1450 line->wrap = wrap;
1451
1452 return Ok;
1453}
1454
Nikolay Sivov067a08e2008-09-25 08:51:02 +04001455GpStatus WINGDIPAPI GdipSetPathGradientBlend(GpPathGradient *brush, GDIPCONST REAL *blend,
1456 GDIPCONST REAL *pos, INT count)
1457{
1458 static int calls;
1459
Vincent Povirkd49510e2009-12-18 15:54:26 -06001460 TRACE("(%p,%p,%p,%i)\n", brush, blend, pos, count);
1461
Nikolay Sivov067a08e2008-09-25 08:51:02 +04001462 if(!(calls++))
1463 FIXME("not implemented\n");
1464
1465 return NotImplemented;
1466}
1467
Vincent Povirkedce2c12009-06-09 12:11:38 -05001468GpStatus WINGDIPAPI GdipSetPathGradientPresetBlend(GpPathGradient *brush,
1469 GDIPCONST ARGB *blend, GDIPCONST REAL *pos, INT count)
1470{
1471 FIXME("(%p,%p,%p,%i): stub\n", brush, blend, pos, count);
1472 return NotImplemented;
1473}
1474
Evan Stadef2cf5552007-08-01 17:56:05 -07001475GpStatus WINGDIPAPI GdipSetPathGradientCenterColor(GpPathGradient *grad,
1476 ARGB argb)
1477{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001478 TRACE("(%p, %x)\n", grad, argb);
1479
Evan Stadef2cf5552007-08-01 17:56:05 -07001480 if(!grad)
1481 return InvalidParameter;
1482
1483 grad->centercolor = argb;
1484 grad->brush.lb.lbColor = ARGB2COLORREF(argb);
1485
1486 DeleteObject(grad->brush.gdibrush);
1487 grad->brush.gdibrush = CreateSolidBrush(grad->brush.lb.lbColor);
1488
1489 return Ok;
1490}
1491
Evan Stade9a9c8572007-08-02 17:52:59 -07001492GpStatus WINGDIPAPI GdipSetPathGradientCenterPoint(GpPathGradient *grad,
1493 GpPointF *point)
1494{
Vincent Povirk7ded3d82009-12-18 15:45:02 -06001495 TRACE("(%p, %s)\n", grad, debugstr_pointf(point));
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001496
Evan Stade9a9c8572007-08-02 17:52:59 -07001497 if(!grad || !point)
1498 return InvalidParameter;
1499
1500 grad->center.X = point->X;
1501 grad->center.Y = point->Y;
1502
1503 return Ok;
1504}
1505
Nikolay Sivov17621fb2008-04-30 01:28:45 +04001506GpStatus WINGDIPAPI GdipSetPathGradientCenterPointI(GpPathGradient *grad,
1507 GpPoint *point)
1508{
1509 GpPointF ptf;
1510
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001511 TRACE("(%p, %p)\n", grad, point);
1512
Nikolay Sivov17621fb2008-04-30 01:28:45 +04001513 if(!point)
1514 return InvalidParameter;
1515
1516 ptf.X = (REAL)point->X;
1517 ptf.Y = (REAL)point->Y;
1518
1519 return GdipSetPathGradientCenterPoint(grad,&ptf);
1520}
1521
Evan Stade496c3192007-08-02 17:53:04 -07001522GpStatus WINGDIPAPI GdipSetPathGradientFocusScales(GpPathGradient *grad,
1523 REAL x, REAL y)
1524{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001525 TRACE("(%p, %.2f, %.2f)\n", grad, x, y);
1526
Evan Stade496c3192007-08-02 17:53:04 -07001527 if(!grad)
1528 return InvalidParameter;
1529
1530 grad->focus.X = x;
1531 grad->focus.Y = y;
1532
1533 return Ok;
1534}
1535
Evan Stade9ea7ef42007-08-02 17:52:49 -07001536GpStatus WINGDIPAPI GdipSetPathGradientGammaCorrection(GpPathGradient *grad,
1537 BOOL gamma)
1538{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001539 TRACE("(%p, %d)\n", grad, gamma);
1540
Evan Stade9ea7ef42007-08-02 17:52:49 -07001541 if(!grad)
1542 return InvalidParameter;
1543
1544 grad->gamma = gamma;
1545
1546 return Ok;
1547}
1548
Evan Stade15dce3a2007-08-02 17:52:43 -07001549GpStatus WINGDIPAPI GdipSetPathGradientSigmaBlend(GpPathGradient *grad,
1550 REAL focus, REAL scale)
1551{
1552 static int calls;
1553
Vincent Povirkd49510e2009-12-18 15:54:26 -06001554 TRACE("(%p,%0.2f,%0.2f)\n", grad, focus, scale);
1555
Evan Stade15dce3a2007-08-02 17:52:43 -07001556 if(!grad || focus < 0.0 || focus > 1.0 || scale < 0.0 || scale > 1.0)
1557 return InvalidParameter;
1558
1559 if(!(calls++))
1560 FIXME("not implemented\n");
1561
1562 return NotImplemented;
1563}
1564
Evan Stade03af4ed2007-08-02 17:51:58 -07001565GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient
Justin Chevrier88b42632010-03-27 17:55:26 -04001566 *grad, GDIPCONST ARGB *argb, INT *count)
Evan Stade03af4ed2007-08-02 17:51:58 -07001567{
1568 static int calls;
1569
Vincent Povirkd49510e2009-12-18 15:54:26 -06001570 TRACE("(%p,%p,%p)\n", grad, argb, count);
1571
Evan Stade03af4ed2007-08-02 17:51:58 -07001572 if(!grad || !argb || !count || (*count <= 0) ||
1573 (*count > grad->pathdata.Count))
1574 return InvalidParameter;
1575
1576 if(!(calls++))
1577 FIXME("not implemented\n");
1578
1579 return NotImplemented;
1580}
1581
Evan Stadef0dbfe92007-08-01 17:56:10 -07001582GpStatus WINGDIPAPI GdipSetPathGradientWrapMode(GpPathGradient *grad,
1583 GpWrapMode wrap)
1584{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001585 TRACE("(%p, %d)\n", grad, wrap);
1586
Evan Stadef0dbfe92007-08-01 17:56:10 -07001587 if(!grad)
1588 return InvalidParameter;
1589
1590 grad->wrap = wrap;
1591
1592 return Ok;
1593}
1594
Evan Stade82abeee2007-07-23 20:24:13 -07001595GpStatus WINGDIPAPI GdipSetSolidFillColor(GpSolidFill *sf, ARGB argb)
1596{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001597 TRACE("(%p, %x)\n", sf, argb);
1598
Evan Stade82abeee2007-07-23 20:24:13 -07001599 if(!sf)
1600 return InvalidParameter;
1601
Evan Stade8b2ce0f2007-07-23 20:24:24 -07001602 sf->color = argb;
1603 sf->brush.lb.lbColor = ARGB2COLORREF(argb);
1604
1605 DeleteObject(sf->brush.gdibrush);
1606 sf->brush.gdibrush = CreateSolidBrush(sf->brush.lb.lbColor);
1607
1608 return Ok;
Evan Stade82abeee2007-07-23 20:24:13 -07001609}
Evan Stade96a69f02007-08-09 18:25:22 -07001610
Nikolay Sivovedb764f2008-09-25 08:56:35 +04001611/******************************************************************************
1612 * GdipSetTextureTransform [GDIPLUS.@]
1613 */
Evan Stade96a69f02007-08-09 18:25:22 -07001614GpStatus WINGDIPAPI GdipSetTextureTransform(GpTexture *texture,
1615 GDIPCONST GpMatrix *matrix)
1616{
Nikolay Sivovedb764f2008-09-25 08:56:35 +04001617 TRACE("(%p, %p)\n", texture, matrix);
Evan Stade96a69f02007-08-09 18:25:22 -07001618
1619 if(!texture || !matrix)
1620 return InvalidParameter;
1621
Nikolay Sivovedb764f2008-09-25 08:56:35 +04001622 memcpy(texture->transform, matrix, sizeof(GpMatrix));
Evan Stade96a69f02007-08-09 18:25:22 -07001623
1624 return Ok;
1625}
Lei Zhang89b0a972008-04-10 12:40:17 -07001626
Nikolay Sivov37bbe9d2008-10-21 19:39:21 +04001627/******************************************************************************
1628 * GdipSetTextureWrapMode [GDIPLUS.@]
1629 *
1630 * WrapMode not used, only stored
1631 */
1632GpStatus WINGDIPAPI GdipSetTextureWrapMode(GpTexture *brush, GpWrapMode wrapmode)
1633{
1634 TRACE("(%p, %d)\n", brush, wrapmode);
1635
1636 if(!brush)
1637 return InvalidParameter;
1638
1639 brush->wrap = wrapmode;
1640
1641 return Ok;
1642}
1643
Lei Zhang89b0a972008-04-10 12:40:17 -07001644GpStatus WINGDIPAPI GdipSetLineColors(GpLineGradient *brush, ARGB color1,
1645 ARGB color2)
1646{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001647 TRACE("(%p, %x, %x)\n", brush, color1, color2);
1648
Nikolay Sivov59ef3c92008-04-24 22:43:41 +04001649 if(!brush)
1650 return InvalidParameter;
Lei Zhang89b0a972008-04-10 12:40:17 -07001651
Nikolay Sivov59ef3c92008-04-24 22:43:41 +04001652 brush->startcolor = color1;
1653 brush->endcolor = color2;
Lei Zhang89b0a972008-04-10 12:40:17 -07001654
Nikolay Sivov59ef3c92008-04-24 22:43:41 +04001655 return Ok;
Lei Zhang89b0a972008-04-10 12:40:17 -07001656}
Lei Zhang0399cda2008-04-10 12:40:18 -07001657
Nikolay Sivovb31f2252008-04-24 22:43:36 +04001658GpStatus WINGDIPAPI GdipGetLineColors(GpLineGradient *brush, ARGB *colors)
1659{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001660 TRACE("(%p, %p)\n", brush, colors);
1661
Nikolay Sivovb31f2252008-04-24 22:43:36 +04001662 if(!brush || !colors)
1663 return InvalidParameter;
1664
1665 colors[0] = brush->startcolor;
1666 colors[1] = brush->endcolor;
1667
1668 return Ok;
1669}
1670
Nikolay Sivoveabb8d12008-12-03 00:33:16 +03001671/******************************************************************************
1672 * GdipRotateTextureTransform [GDIPLUS.@]
1673 */
1674GpStatus WINGDIPAPI GdipRotateTextureTransform(GpTexture* brush, REAL angle,
1675 GpMatrixOrder order)
1676{
1677 TRACE("(%p, %.2f, %d)\n", brush, angle, order);
1678
1679 if(!brush)
1680 return InvalidParameter;
1681
1682 return GdipRotateMatrix(brush->transform, angle, order);
1683}
1684
Lei Zhang0399cda2008-04-10 12:40:18 -07001685GpStatus WINGDIPAPI GdipSetLineLinearBlend(GpLineGradient *brush, REAL focus,
1686 REAL scale)
1687{
Vincent Povirk2cdc48a2009-07-11 11:49:44 -05001688 REAL factors[3];
1689 REAL positions[3];
1690 int num_points = 0;
Lei Zhang0399cda2008-04-10 12:40:18 -07001691
Vincent Povirk2cdc48a2009-07-11 11:49:44 -05001692 TRACE("(%p,%.2f,%.2f)\n", brush, focus, scale);
Lei Zhang0399cda2008-04-10 12:40:18 -07001693
Vincent Povirk2cdc48a2009-07-11 11:49:44 -05001694 if (!brush) return InvalidParameter;
1695
1696 if (focus != 0.0)
1697 {
1698 factors[num_points] = 0.0;
1699 positions[num_points] = 0.0;
1700 num_points++;
1701 }
1702
1703 factors[num_points] = scale;
1704 positions[num_points] = focus;
1705 num_points++;
1706
1707 if (focus != 1.0)
1708 {
1709 factors[num_points] = 0.0;
1710 positions[num_points] = 1.0;
1711 num_points++;
1712 }
1713
1714 return GdipSetLineBlend(brush, factors, positions, num_points);
Lei Zhang0399cda2008-04-10 12:40:18 -07001715}
Lei Zhang942f3492008-04-10 12:40:19 -07001716
1717GpStatus WINGDIPAPI GdipSetLinePresetBlend(GpLineGradient *brush,
1718 GDIPCONST ARGB *blend, GDIPCONST REAL* positions, INT count)
1719{
Vincent Povirk8bdabe32009-09-14 16:21:50 -05001720 ARGB *new_color;
1721 REAL *new_pos;
1722 TRACE("(%p,%p,%p,%i)\n", brush, blend, positions, count);
Lei Zhang942f3492008-04-10 12:40:19 -07001723
Vincent Povirk8bdabe32009-09-14 16:21:50 -05001724 if (!brush || !blend || !positions || count < 2 ||
1725 positions[0] != 0.0f || positions[count-1] != 1.0f)
1726 {
1727 return InvalidParameter;
1728 }
Lei Zhang942f3492008-04-10 12:40:19 -07001729
Vincent Povirk8bdabe32009-09-14 16:21:50 -05001730 new_color = GdipAlloc(count * sizeof(ARGB));
1731 new_pos = GdipAlloc(count * sizeof(REAL));
1732 if (!new_color || !new_pos)
1733 {
1734 GdipFree(new_color);
1735 GdipFree(new_pos);
1736 return OutOfMemory;
1737 }
1738
1739 memcpy(new_color, blend, sizeof(ARGB) * count);
1740 memcpy(new_pos, positions, sizeof(REAL) * count);
1741
1742 GdipFree(brush->pblendcolor);
1743 GdipFree(brush->pblendpos);
1744
1745 brush->pblendcolor = new_color;
1746 brush->pblendpos = new_pos;
1747 brush->pblendcount = count;
1748
1749 return Ok;
Lei Zhang942f3492008-04-10 12:40:19 -07001750}
Lei Zhang82d01442008-04-10 12:40:20 -07001751
Vincent Povirk52e91922009-09-14 15:42:21 -05001752GpStatus WINGDIPAPI GdipGetLinePresetBlend(GpLineGradient *brush,
1753 ARGB *blend, REAL* positions, INT count)
1754{
Vincent Povirk8bdabe32009-09-14 16:21:50 -05001755 if (!brush || !blend || !positions || count < 2)
1756 return InvalidParameter;
Vincent Povirk52e91922009-09-14 15:42:21 -05001757
Vincent Povirk8bdabe32009-09-14 16:21:50 -05001758 if (brush->pblendcount == 0)
1759 return GenericError;
Vincent Povirk52e91922009-09-14 15:42:21 -05001760
Vincent Povirk8bdabe32009-09-14 16:21:50 -05001761 if (count < brush->pblendcount)
1762 return InsufficientBuffer;
1763
1764 memcpy(blend, brush->pblendcolor, sizeof(ARGB) * brush->pblendcount);
1765 memcpy(positions, brush->pblendpos, sizeof(REAL) * brush->pblendcount);
1766
1767 return Ok;
Vincent Povirk52e91922009-09-14 15:42:21 -05001768}
1769
1770GpStatus WINGDIPAPI GdipGetLinePresetBlendCount(GpLineGradient *brush,
1771 INT *count)
1772{
Vincent Povirk8bdabe32009-09-14 16:21:50 -05001773 if (!brush || !count)
1774 return InvalidParameter;
Vincent Povirk52e91922009-09-14 15:42:21 -05001775
Vincent Povirk8bdabe32009-09-14 16:21:50 -05001776 *count = brush->pblendcount;
Vincent Povirk52e91922009-09-14 15:42:21 -05001777
Vincent Povirk8bdabe32009-09-14 16:21:50 -05001778 return Ok;
Vincent Povirk52e91922009-09-14 15:42:21 -05001779}
1780
Vincent Povirkcded6c82009-09-04 13:01:29 -05001781GpStatus WINGDIPAPI GdipResetLineTransform(GpLineGradient *brush)
1782{
1783 static int calls;
1784
Vincent Povirkd49510e2009-12-18 15:54:26 -06001785 TRACE("(%p)\n", brush);
1786
Vincent Povirkcded6c82009-09-04 13:01:29 -05001787 if(!(calls++))
1788 FIXME("not implemented\n");
1789
1790 return NotImplemented;
1791}
1792
Lei Zhang82d01442008-04-10 12:40:20 -07001793GpStatus WINGDIPAPI GdipSetLineTransform(GpLineGradient *brush,
1794 GDIPCONST GpMatrix *matrix)
1795{
1796 static int calls;
1797
Vincent Povirkd49510e2009-12-18 15:54:26 -06001798 TRACE("(%p,%p)\n", brush, matrix);
1799
Lei Zhang82d01442008-04-10 12:40:20 -07001800 if(!(calls++))
1801 FIXME("not implemented\n");
1802
1803 return NotImplemented;
1804}
Nikolay Sivov3d274bc2008-04-24 22:43:26 +04001805
Vincent Povirk2e4eb712010-06-19 16:09:00 -05001806GpStatus WINGDIPAPI GdipGetLineTransform(GpLineGradient *brush, GpMatrix *matrix)
1807{
1808 static int calls;
1809
1810 TRACE("(%p,%p)\n", brush, matrix);
1811
1812 if(!(calls++))
1813 FIXME("not implemented\n");
1814
1815 return NotImplemented;
1816}
1817
Vincent Povirk969da832009-09-04 13:12:08 -05001818GpStatus WINGDIPAPI GdipScaleLineTransform(GpLineGradient *brush, REAL sx, REAL sy,
1819 GpMatrixOrder order)
1820{
1821 static int calls;
1822
Vincent Povirkd49510e2009-12-18 15:54:26 -06001823 TRACE("(%p,%0.2f,%0.2f,%u)\n", brush, sx, sy, order);
1824
Vincent Povirk969da832009-09-04 13:12:08 -05001825 if(!(calls++))
1826 FIXME("not implemented\n");
1827
1828 return NotImplemented;
1829}
1830
Vincent Povirk86f4e002010-06-19 16:11:33 -05001831GpStatus WINGDIPAPI GdipMultiplyLineTransform(GpLineGradient *brush,
1832 GDIPCONST GpMatrix *matrix, GpMatrixOrder order)
1833{
1834 static int calls;
1835
1836 TRACE("(%p,%p,%u)\n", brush, matrix, order);
1837
1838 if(!(calls++))
1839 FIXME("not implemented\n");
1840
1841 return NotImplemented;
1842}
1843
Adam Petacciaa90bced2008-08-31 01:06:37 -04001844GpStatus WINGDIPAPI GdipTranslateLineTransform(GpLineGradient* brush,
1845 REAL dx, REAL dy, GpMatrixOrder order)
1846{
1847 FIXME("stub: %p %f %f %d\n", brush, dx, dy, order);
1848
1849 return NotImplemented;
1850}
1851
Nikolay Sivov2d1a9eb2008-12-03 00:22:52 +03001852/******************************************************************************
1853 * GdipTranslateTextureTransform [GDIPLUS.@]
1854 */
1855GpStatus WINGDIPAPI GdipTranslateTextureTransform(GpTexture* brush, REAL dx, REAL dy,
1856 GpMatrixOrder order)
1857{
1858 TRACE("(%p, %.2f, %.2f, %d)\n", brush, dx, dy, order);
1859
1860 if(!brush)
1861 return InvalidParameter;
1862
1863 return GdipTranslateMatrix(brush->transform, dx, dy, order);
1864}
1865
Nikolay Sivov3d274bc2008-04-24 22:43:26 +04001866GpStatus WINGDIPAPI GdipGetLineRect(GpLineGradient *brush, GpRectF *rect)
1867{
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001868 TRACE("(%p, %p)\n", brush, rect);
1869
Nikolay Sivov3d274bc2008-04-24 22:43:26 +04001870 if(!brush || !rect)
1871 return InvalidParameter;
1872
Vincent Povirk173a1f62009-05-07 11:33:28 -05001873 *rect = brush->rect;
Nikolay Sivov3d274bc2008-04-24 22:43:26 +04001874
1875 return Ok;
1876}
1877
1878GpStatus WINGDIPAPI GdipGetLineRectI(GpLineGradient *brush, GpRect *rect)
1879{
1880 GpRectF rectF;
1881 GpStatus ret;
1882
Nikolay Sivov26ccb332008-09-03 00:13:40 +04001883 TRACE("(%p, %p)\n", brush, rect);
1884
Nikolay Sivov250a9d72008-06-18 11:32:37 +04001885 if(!rect)
1886 return InvalidParameter;
1887
Nikolay Sivov3d274bc2008-04-24 22:43:26 +04001888 ret = GdipGetLineRect(brush, &rectF);
1889
1890 if(ret == Ok){
1891 rect->X = roundr(rectF.X);
1892 rect->Y = roundr(rectF.Y);
1893 rect->Width = roundr(rectF.Width);
1894 rect->Height = roundr(rectF.Height);
1895 }
1896
1897 return ret;
1898}
Nikolay Sivovbe7d2122008-12-27 21:39:57 +03001899
1900GpStatus WINGDIPAPI GdipRotateLineTransform(GpLineGradient* brush,
1901 REAL angle, GpMatrixOrder order)
1902{
1903 static int calls;
1904
Vincent Povirkd49510e2009-12-18 15:54:26 -06001905 TRACE("(%p,%0.2f,%u)\n", brush, angle, order);
1906
Nikolay Sivovbe7d2122008-12-27 21:39:57 +03001907 if(!brush)
1908 return InvalidParameter;
1909
1910 if(!(calls++))
1911 FIXME("(%p, %.2f, %d) stub\n", brush, angle, order);
1912
1913 return NotImplemented;
1914}