gdiplus: Implement GdipGetTextureTransform with test.
[wine/hacks.git] / dlls / gdiplus / brush.c
blob3f58db225a975ba0d85173867183954c96f39601
1 /*
2 * Copyright (C) 2007 Google (Evan Stade)
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
21 #include "windef.h"
22 #include "winbase.h"
23 #include "winuser.h"
24 #include "wingdi.h"
26 #define COBJMACROS
27 #include "objbase.h"
28 #include "olectl.h"
29 #include "ole2.h"
31 #include "gdiplus.h"
32 #include "gdiplus_private.h"
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
37 /******************************************************************************
38 * GdipCloneBrush [GDIPLUS.@]
40 GpStatus WINGDIPAPI GdipCloneBrush(GpBrush *brush, GpBrush **clone)
42 TRACE("(%p, %p)\n", brush, clone);
44 if(!brush || !clone)
45 return InvalidParameter;
47 switch(brush->bt){
48 case BrushTypeSolidColor:
49 *clone = GdipAlloc(sizeof(GpSolidFill));
50 if (!*clone) return OutOfMemory;
52 memcpy(*clone, brush, sizeof(GpSolidFill));
54 (*clone)->gdibrush = CreateBrushIndirect(&(*clone)->lb);
55 break;
56 case BrushTypePathGradient:{
57 GpPathGradient *src, *dest;
58 INT count;
60 *clone = GdipAlloc(sizeof(GpPathGradient));
61 if (!*clone) return OutOfMemory;
63 src = (GpPathGradient*) brush,
64 dest = (GpPathGradient*) *clone;
65 count = src->pathdata.Count;
67 memcpy(dest, src, sizeof(GpPathGradient));
69 dest->pathdata.Count = count;
70 dest->pathdata.Points = GdipAlloc(count * sizeof(PointF));
71 dest->pathdata.Types = GdipAlloc(count);
73 if(!dest->pathdata.Points || !dest->pathdata.Types){
74 GdipFree(dest->pathdata.Points);
75 GdipFree(dest->pathdata.Types);
76 GdipFree(dest);
77 return OutOfMemory;
80 memcpy(dest->pathdata.Points, src->pathdata.Points, count * sizeof(PointF));
81 memcpy(dest->pathdata.Types, src->pathdata.Types, count);
83 /* blending */
84 count = src->blendcount;
85 dest->blendcount = count;
86 dest->blendfac = GdipAlloc(count * sizeof(REAL));
87 dest->blendpos = GdipAlloc(count * sizeof(REAL));
89 if(!dest->blendfac || !dest->blendpos){
90 GdipFree(dest->pathdata.Points);
91 GdipFree(dest->pathdata.Types);
92 GdipFree(dest->blendfac);
93 GdipFree(dest->blendpos);
94 GdipFree(dest);
95 return OutOfMemory;
98 memcpy(dest->blendfac, src->blendfac, count * sizeof(REAL));
99 memcpy(dest->blendpos, src->blendpos, count * sizeof(REAL));
101 break;
103 case BrushTypeLinearGradient:
104 *clone = GdipAlloc(sizeof(GpLineGradient));
105 if(!*clone) return OutOfMemory;
107 memcpy(*clone, brush, sizeof(GpLineGradient));
109 (*clone)->gdibrush = CreateSolidBrush((*clone)->lb.lbColor);
110 break;
111 case BrushTypeTextureFill:
112 *clone = GdipAlloc(sizeof(GpTexture));
113 if(!*clone) return OutOfMemory;
115 memcpy(*clone, brush, sizeof(GpTexture));
117 (*clone)->gdibrush = CreateBrushIndirect(&(*clone)->lb);
118 break;
119 default:
120 ERR("not implemented for brush type %d\n", brush->bt);
121 return NotImplemented;
124 return Ok;
127 /******************************************************************************
128 * GdipCreateLineBrush [GDIPLUS.@]
130 GpStatus WINGDIPAPI GdipCreateLineBrush(GDIPCONST GpPointF* startpoint,
131 GDIPCONST GpPointF* endpoint, ARGB startcolor, ARGB endcolor,
132 GpWrapMode wrap, GpLineGradient **line)
134 COLORREF col = ARGB2COLORREF(startcolor);
136 TRACE("(%p, %p, %x, %x, %d, %p)\n", startpoint, endpoint,
137 startcolor, endcolor, wrap, line);
139 if(!line || !startpoint || !endpoint || wrap == WrapModeClamp)
140 return InvalidParameter;
142 *line = GdipAlloc(sizeof(GpLineGradient));
143 if(!*line) return OutOfMemory;
145 (*line)->brush.lb.lbStyle = BS_SOLID;
146 (*line)->brush.lb.lbColor = col;
147 (*line)->brush.lb.lbHatch = 0;
148 (*line)->brush.gdibrush = CreateSolidBrush(col);
149 (*line)->brush.bt = BrushTypeLinearGradient;
151 (*line)->startpoint.X = startpoint->X;
152 (*line)->startpoint.Y = startpoint->Y;
153 (*line)->endpoint.X = endpoint->X;
154 (*line)->endpoint.Y = endpoint->Y;
155 (*line)->startcolor = startcolor;
156 (*line)->endcolor = endcolor;
157 (*line)->wrap = wrap;
158 (*line)->gamma = FALSE;
160 return Ok;
163 GpStatus WINGDIPAPI GdipCreateLineBrushI(GDIPCONST GpPoint* startpoint,
164 GDIPCONST GpPoint* endpoint, ARGB startcolor, ARGB endcolor,
165 GpWrapMode wrap, GpLineGradient **line)
167 GpPointF stF;
168 GpPointF endF;
170 TRACE("(%p, %p, %x, %x, %d, %p)\n", startpoint, endpoint,
171 startcolor, endcolor, wrap, line);
173 if(!startpoint || !endpoint)
174 return InvalidParameter;
176 stF.X = (REAL)startpoint->X;
177 stF.Y = (REAL)startpoint->Y;
178 endF.X = (REAL)endpoint->X;
179 endF.X = (REAL)endpoint->Y;
181 return GdipCreateLineBrush(&stF, &endF, startcolor, endcolor, wrap, line);
184 GpStatus WINGDIPAPI GdipCreateLineBrushFromRect(GDIPCONST GpRectF* rect,
185 ARGB startcolor, ARGB endcolor, LinearGradientMode mode, GpWrapMode wrap,
186 GpLineGradient **line)
188 GpPointF start, end;
190 TRACE("(%p, %x, %x, %d, %d, %p)\n", rect, startcolor, endcolor, mode,
191 wrap, line);
193 if(!line || !rect)
194 return InvalidParameter;
196 start.X = rect->X;
197 start.Y = rect->Y;
198 end.X = rect->X + rect->Width;
199 end.Y = rect->Y + rect->Height;
201 return GdipCreateLineBrush(&start, &end, startcolor, endcolor, wrap, line);
204 GpStatus WINGDIPAPI GdipCreateLineBrushFromRectI(GDIPCONST GpRect* rect,
205 ARGB startcolor, ARGB endcolor, LinearGradientMode mode, GpWrapMode wrap,
206 GpLineGradient **line)
208 GpRectF rectF;
210 TRACE("(%p, %x, %x, %d, %d, %p)\n", rect, startcolor, endcolor, mode,
211 wrap, line);
213 rectF.X = (REAL) rect->X;
214 rectF.Y = (REAL) rect->Y;
215 rectF.Width = (REAL) rect->Width;
216 rectF.Height = (REAL) rect->Height;
218 return GdipCreateLineBrushFromRect(&rectF, startcolor, endcolor, mode, wrap, line);
221 /******************************************************************************
222 * GdipCreateLineBrushFromRectWithAngle [GDIPLUS.@]
224 * FIXME: angle value completely ignored. Don't know how to use it since native
225 * always set Brush rectangle to rect (independetly of this angle).
226 * Maybe it's used only on drawing.
228 GpStatus WINGDIPAPI GdipCreateLineBrushFromRectWithAngle(GDIPCONST GpRectF* rect,
229 ARGB startcolor, ARGB endcolor, REAL angle, BOOL isAngleScalable, GpWrapMode wrap,
230 GpLineGradient **line)
232 TRACE("(%p, %x, %x, %.2f, %d, %d, %p)\n", rect, startcolor, endcolor, angle, isAngleScalable,
233 wrap, line);
235 return GdipCreateLineBrushFromRect(rect, startcolor, endcolor, LinearGradientModeForwardDiagonal,
236 wrap, line);
239 GpStatus WINGDIPAPI GdipCreateLineBrushFromRectWithAngleI(GDIPCONST GpRect* rect,
240 ARGB startcolor, ARGB endcolor, REAL angle, BOOL isAngleScalable, GpWrapMode wrap,
241 GpLineGradient **line)
243 TRACE("(%p, %x, %x, %.2f, %d, %d, %p)\n", rect, startcolor, endcolor, angle, isAngleScalable,
244 wrap, line);
246 return GdipCreateLineBrushFromRectI(rect, startcolor, endcolor, LinearGradientModeForwardDiagonal,
247 wrap, line);
250 GpStatus WINGDIPAPI GdipCreatePathGradient(GDIPCONST GpPointF* points,
251 INT count, GpWrapMode wrap, GpPathGradient **grad)
253 COLORREF col = ARGB2COLORREF(0xffffffff);
255 TRACE("(%p, %d, %d, %p)\n", points, count, wrap, grad);
257 if(!points || !grad)
258 return InvalidParameter;
260 if(count <= 0)
261 return OutOfMemory;
263 *grad = GdipAlloc(sizeof(GpPathGradient));
264 if (!*grad) return OutOfMemory;
266 (*grad)->blendfac = GdipAlloc(sizeof(REAL));
267 if(!(*grad)->blendfac){
268 GdipFree(*grad);
269 return OutOfMemory;
271 (*grad)->blendfac[0] = 1.0;
272 (*grad)->blendpos = NULL;
273 (*grad)->blendcount = 1;
275 (*grad)->pathdata.Count = count;
276 (*grad)->pathdata.Points = GdipAlloc(count * sizeof(PointF));
277 (*grad)->pathdata.Types = GdipAlloc(count);
279 if(!(*grad)->pathdata.Points || !(*grad)->pathdata.Types){
280 GdipFree((*grad)->pathdata.Points);
281 GdipFree((*grad)->pathdata.Types);
282 GdipFree(*grad);
283 return OutOfMemory;
286 memcpy((*grad)->pathdata.Points, points, count * sizeof(PointF));
287 memset((*grad)->pathdata.Types, PathPointTypeLine, count);
289 (*grad)->brush.lb.lbStyle = BS_SOLID;
290 (*grad)->brush.lb.lbColor = col;
291 (*grad)->brush.lb.lbHatch = 0;
293 (*grad)->brush.gdibrush = CreateSolidBrush(col);
294 (*grad)->brush.bt = BrushTypePathGradient;
295 (*grad)->centercolor = 0xffffffff;
296 (*grad)->wrap = wrap;
297 (*grad)->gamma = FALSE;
298 (*grad)->center.X = 0.0;
299 (*grad)->center.Y = 0.0;
300 (*grad)->focus.X = 0.0;
301 (*grad)->focus.Y = 0.0;
303 return Ok;
306 GpStatus WINGDIPAPI GdipCreatePathGradientI(GDIPCONST GpPoint* points,
307 INT count, GpWrapMode wrap, GpPathGradient **grad)
309 GpPointF *pointsF;
310 GpStatus ret;
311 INT i;
313 TRACE("(%p, %d, %d, %p)\n", points, count, wrap, grad);
315 if(!points || !grad)
316 return InvalidParameter;
318 if(count <= 0)
319 return OutOfMemory;
321 pointsF = GdipAlloc(sizeof(GpPointF) * count);
322 if(!pointsF)
323 return OutOfMemory;
325 for(i = 0; i < count; i++){
326 pointsF[i].X = (REAL)points[i].X;
327 pointsF[i].Y = (REAL)points[i].Y;
330 ret = GdipCreatePathGradient(pointsF, count, wrap, grad);
331 GdipFree(pointsF);
333 return ret;
336 /******************************************************************************
337 * GdipCreatePathGradientFromPath [GDIPLUS.@]
339 * FIXME: path gradient brushes not truly supported (drawn as solid brushes)
341 GpStatus WINGDIPAPI GdipCreatePathGradientFromPath(GDIPCONST GpPath* path,
342 GpPathGradient **grad)
344 COLORREF col = ARGB2COLORREF(0xffffffff);
346 TRACE("(%p, %p)\n", path, grad);
348 if(!path || !grad)
349 return InvalidParameter;
351 *grad = GdipAlloc(sizeof(GpPathGradient));
352 if (!*grad) return OutOfMemory;
354 (*grad)->blendfac = GdipAlloc(sizeof(REAL));
355 if(!(*grad)->blendfac){
356 GdipFree(*grad);
357 return OutOfMemory;
359 (*grad)->blendfac[0] = 1.0;
360 (*grad)->blendpos = NULL;
361 (*grad)->blendcount = 1;
363 (*grad)->pathdata.Count = path->pathdata.Count;
364 (*grad)->pathdata.Points = GdipAlloc(path->pathdata.Count * sizeof(PointF));
365 (*grad)->pathdata.Types = GdipAlloc(path->pathdata.Count);
367 if(!(*grad)->pathdata.Points || !(*grad)->pathdata.Types){
368 GdipFree((*grad)->pathdata.Points);
369 GdipFree((*grad)->pathdata.Types);
370 GdipFree(*grad);
371 return OutOfMemory;
374 memcpy((*grad)->pathdata.Points, path->pathdata.Points,
375 path->pathdata.Count * sizeof(PointF));
376 memcpy((*grad)->pathdata.Types, path->pathdata.Types, path->pathdata.Count);
378 (*grad)->brush.lb.lbStyle = BS_SOLID;
379 (*grad)->brush.lb.lbColor = col;
380 (*grad)->brush.lb.lbHatch = 0;
382 (*grad)->brush.gdibrush = CreateSolidBrush(col);
383 (*grad)->brush.bt = BrushTypePathGradient;
384 (*grad)->centercolor = 0xffffffff;
385 (*grad)->wrap = WrapModeClamp;
386 (*grad)->gamma = FALSE;
387 /* FIXME: this should be set to the "centroid" of the path by default */
388 (*grad)->center.X = 0.0;
389 (*grad)->center.Y = 0.0;
390 (*grad)->focus.X = 0.0;
391 (*grad)->focus.Y = 0.0;
393 return Ok;
396 /******************************************************************************
397 * GdipCreateSolidFill [GDIPLUS.@]
399 GpStatus WINGDIPAPI GdipCreateSolidFill(ARGB color, GpSolidFill **sf)
401 COLORREF col = ARGB2COLORREF(color);
403 TRACE("(%x, %p)\n", color, sf);
405 if(!sf) return InvalidParameter;
407 *sf = GdipAlloc(sizeof(GpSolidFill));
408 if (!*sf) return OutOfMemory;
410 (*sf)->brush.lb.lbStyle = BS_SOLID;
411 (*sf)->brush.lb.lbColor = col;
412 (*sf)->brush.lb.lbHatch = 0;
414 (*sf)->brush.gdibrush = CreateSolidBrush(col);
415 (*sf)->brush.bt = BrushTypeSolidColor;
416 (*sf)->color = color;
418 return Ok;
421 /******************************************************************************
422 * GdipCreateTexture [GDIPLUS.@]
424 * PARAMS
425 * image [I] image to use
426 * wrapmode [I] optional
427 * texture [O] pointer to the resulting texturebrush
429 * RETURNS
430 * SUCCESS: Ok
431 * FAILURE: element of GpStatus
433 GpStatus WINGDIPAPI GdipCreateTexture(GpImage *image, GpWrapMode wrapmode,
434 GpTexture **texture)
436 UINT width, height;
437 GpImageAttributes attributes;
438 GpStatus stat;
440 TRACE("%p, %d %p\n", image, wrapmode, texture);
442 if (!(image && texture))
443 return InvalidParameter;
445 stat = GdipGetImageWidth(image, &width);
446 if (stat != Ok) return stat;
447 stat = GdipGetImageHeight(image, &height);
448 if (stat != Ok) return stat;
449 attributes.wrap = wrapmode;
451 return GdipCreateTextureIA(image, &attributes, 0, 0, width, height,
452 texture);
455 /******************************************************************************
456 * GdipCreateTexture2 [GDIPLUS.@]
458 GpStatus WINGDIPAPI GdipCreateTexture2(GpImage *image, GpWrapMode wrapmode,
459 REAL x, REAL y, REAL width, REAL height, GpTexture **texture)
461 GpImageAttributes attributes;
463 TRACE("%p %d %f %f %f %f %p\n", image, wrapmode,
464 x, y, width, height, texture);
466 attributes.wrap = wrapmode;
467 return GdipCreateTextureIA(image, &attributes, x, y, width, height,
468 texture);
471 /******************************************************************************
472 * GdipCreateTextureIA [GDIPLUS.@]
474 * FIXME: imageattr ignored
476 GpStatus WINGDIPAPI GdipCreateTextureIA(GpImage *image,
477 GDIPCONST GpImageAttributes *imageattr, REAL x, REAL y, REAL width,
478 REAL height, GpTexture **texture)
480 HDC hdc;
481 OLE_HANDLE hbm;
482 HBITMAP old = NULL;
483 BITMAPINFO bmi;
484 BITMAPINFOHEADER *bmih;
485 INT n_x, n_y, n_width, n_height, abs_height, stride, image_stride, i, bytespp;
486 BOOL bm_is_selected;
487 BYTE *dibits, *buff, *textbits;
488 GpStatus status;
490 TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %p)\n", image, imageattr, x, y, width, height,
491 texture);
493 if(!image || !texture || x < 0.0 || y < 0.0 || width < 0.0 || height < 0.0)
494 return InvalidParameter;
496 if(image->type != ImageTypeBitmap){
497 FIXME("not implemented for image type %d\n", image->type);
498 return NotImplemented;
501 n_x = roundr(x);
502 n_y = roundr(y);
503 n_width = roundr(width);
504 n_height = roundr(height);
506 if(n_x + n_width > ((GpBitmap*)image)->width ||
507 n_y + n_height > ((GpBitmap*)image)->height)
508 return InvalidParameter;
510 IPicture_get_Handle(image->picture, &hbm);
511 if(!hbm) return GenericError;
512 IPicture_get_CurDC(image->picture, &hdc);
513 bm_is_selected = (hdc != 0);
515 bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
516 bmi.bmiHeader.biBitCount = 0;
518 if(!bm_is_selected){
519 hdc = CreateCompatibleDC(0);
520 old = SelectObject(hdc, (HBITMAP)hbm);
523 /* fill out bmi */
524 GetDIBits(hdc, (HBITMAP)hbm, 0, 0, NULL, &bmi, DIB_RGB_COLORS);
526 bytespp = bmi.bmiHeader.biBitCount / 8;
527 abs_height = abs(bmi.bmiHeader.biHeight);
529 if(n_x > bmi.bmiHeader.biWidth || n_x + n_width > bmi.bmiHeader.biWidth ||
530 n_y > abs_height || n_y + n_height > abs_height)
531 return InvalidParameter;
533 dibits = GdipAlloc(bmi.bmiHeader.biSizeImage);
535 if(dibits) /* this is not a good place to error out */
536 GetDIBits(hdc, (HBITMAP)hbm, 0, abs_height, dibits, &bmi, DIB_RGB_COLORS);
538 if(!bm_is_selected){
539 SelectObject(hdc, old);
540 DeleteDC(hdc);
543 if(!dibits)
544 return OutOfMemory;
546 image_stride = (bmi.bmiHeader.biWidth * bytespp + 3) & ~3;
547 stride = (n_width * bytespp + 3) & ~3;
548 buff = GdipAlloc(sizeof(BITMAPINFOHEADER) + stride * n_height);
549 if(!buff){
550 GdipFree(dibits);
551 return OutOfMemory;
554 bmih = (BITMAPINFOHEADER*)buff;
555 textbits = (BYTE*) (bmih + 1);
556 bmih->biSize = sizeof(BITMAPINFOHEADER);
557 bmih->biWidth = n_width;
558 bmih->biHeight = n_height;
559 bmih->biCompression = BI_RGB;
560 bmih->biSizeImage = stride * n_height;
561 bmih->biBitCount = bmi.bmiHeader.biBitCount;
562 bmih->biClrUsed = 0;
563 bmih->biPlanes = 1;
565 /* image is flipped */
566 if(bmi.bmiHeader.biHeight > 0){
567 dibits += bmi.bmiHeader.biSizeImage;
568 image_stride *= -1;
569 textbits += stride * (n_height - 1);
570 stride *= -1;
573 for(i = 0; i < n_height; i++)
574 memcpy(&textbits[i * stride],
575 &dibits[n_x * bytespp + (n_y + i) * image_stride],
576 abs(stride));
578 *texture = GdipAlloc(sizeof(GpTexture));
579 if (!*texture) return OutOfMemory;
581 if((status = GdipCreateMatrix(&(*texture)->transform)) != Ok){
582 GdipFree(*texture);
583 GdipFree(dibits);
584 GdipFree(buff);
585 return status;
588 (*texture)->brush.lb.lbStyle = BS_DIBPATTERNPT;
589 (*texture)->brush.lb.lbColor = DIB_RGB_COLORS;
590 (*texture)->brush.lb.lbHatch = (ULONG_PTR)buff;
592 (*texture)->brush.gdibrush = CreateBrushIndirect(&(*texture)->brush.lb);
593 (*texture)->brush.bt = BrushTypeTextureFill;
595 GdipFree(dibits);
596 GdipFree(buff);
598 return Ok;
601 /******************************************************************************
602 * GdipCreateTextureIAI [GDIPLUS.@]
604 GpStatus WINGDIPAPI GdipCreateTextureIAI(GpImage *image, GDIPCONST GpImageAttributes *imageattr,
605 INT x, INT y, INT width, INT height, GpTexture **texture)
607 TRACE("(%p, %p, %d, %d, %d, %d, %p)\n", image, imageattr, x, y, width, height,
608 texture);
610 return GdipCreateTextureIA(image,imageattr,(REAL)x,(REAL)y,(REAL)width,(REAL)height,texture);
613 GpStatus WINGDIPAPI GdipCreateTexture2I(GpImage *image, GpWrapMode wrapmode,
614 INT x, INT y, INT width, INT height, GpTexture **texture)
616 GpImageAttributes imageattr;
618 TRACE("%p %d %d %d %d %d %p\n", image, wrapmode, x, y, width, height,
619 texture);
621 imageattr.wrap = wrapmode;
623 return GdipCreateTextureIA(image, &imageattr, x, y, width, height, texture);
626 GpStatus WINGDIPAPI GdipGetBrushType(GpBrush *brush, GpBrushType *type)
628 TRACE("(%p, %p)\n", brush, type);
630 if(!brush || !type) return InvalidParameter;
632 *type = brush->bt;
634 return Ok;
637 GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush *brush)
639 TRACE("(%p)\n", brush);
641 if(!brush) return InvalidParameter;
643 switch(brush->bt)
645 case BrushTypePathGradient:
646 GdipFree(((GpPathGradient*) brush)->pathdata.Points);
647 GdipFree(((GpPathGradient*) brush)->pathdata.Types);
648 GdipFree(((GpPathGradient*) brush)->blendfac);
649 GdipFree(((GpPathGradient*) brush)->blendpos);
650 break;
651 case BrushTypeSolidColor:
652 case BrushTypeLinearGradient:
653 break;
654 case BrushTypeTextureFill:
655 GdipDeleteMatrix(((GpTexture*)brush)->transform);
656 break;
657 default:
658 break;
661 DeleteObject(brush->gdibrush);
662 GdipFree(brush);
664 return Ok;
667 GpStatus WINGDIPAPI GdipGetLineGammaCorrection(GpLineGradient *line,
668 BOOL *usinggamma)
670 TRACE("(%p, %p)\n", line, usinggamma);
672 if(!line || !usinggamma)
673 return InvalidParameter;
675 *usinggamma = line->gamma;
677 return Ok;
680 GpStatus WINGDIPAPI GdipGetLineWrapMode(GpLineGradient *brush, GpWrapMode *wrapmode)
682 TRACE("(%p, %p)\n", brush, wrapmode);
684 if(!brush || !wrapmode)
685 return InvalidParameter;
687 *wrapmode = brush->wrap;
689 return Ok;
692 GpStatus WINGDIPAPI GdipGetPathGradientBlend(GpPathGradient *brush, REAL *blend,
693 REAL *positions, INT count)
695 TRACE("(%p, %p, %p, %d)\n", brush, blend, positions, count);
697 if(!brush || !blend || !positions || count <= 0)
698 return InvalidParameter;
700 if(count < brush->blendcount)
701 return InsufficientBuffer;
703 memcpy(blend, brush->blendfac, count*sizeof(REAL));
704 if(brush->blendcount > 1){
705 memcpy(positions, brush->blendpos, count*sizeof(REAL));
708 return Ok;
711 GpStatus WINGDIPAPI GdipGetPathGradientBlendCount(GpPathGradient *brush, INT *count)
713 TRACE("(%p, %p)\n", brush, count);
715 if(!brush || !count)
716 return InvalidParameter;
718 *count = brush->blendcount;
720 return Ok;
723 GpStatus WINGDIPAPI GdipGetPathGradientCenterPoint(GpPathGradient *grad,
724 GpPointF *point)
726 TRACE("(%p, %p)\n", grad, point);
728 if(!grad || !point)
729 return InvalidParameter;
731 point->X = grad->center.X;
732 point->Y = grad->center.Y;
734 return Ok;
737 GpStatus WINGDIPAPI GdipGetPathGradientCenterPointI(GpPathGradient *grad,
738 GpPoint *point)
740 GpStatus ret;
741 GpPointF ptf;
743 TRACE("(%p, %p)\n", grad, point);
745 if(!point)
746 return InvalidParameter;
748 ret = GdipGetPathGradientCenterPoint(grad,&ptf);
750 if(ret == Ok){
751 point->X = roundr(ptf.X);
752 point->Y = roundr(ptf.Y);
755 return ret;
758 GpStatus WINGDIPAPI GdipGetPathGradientFocusScales(GpPathGradient *grad,
759 REAL *x, REAL *y)
761 TRACE("(%p, %p, %p)\n", grad, x, y);
763 if(!grad || !x || !y)
764 return InvalidParameter;
766 *x = grad->focus.X;
767 *y = grad->focus.Y;
769 return Ok;
772 GpStatus WINGDIPAPI GdipGetPathGradientGammaCorrection(GpPathGradient *grad,
773 BOOL *gamma)
775 TRACE("(%p, %p)\n", grad, gamma);
777 if(!grad || !gamma)
778 return InvalidParameter;
780 *gamma = grad->gamma;
782 return Ok;
785 GpStatus WINGDIPAPI GdipGetPathGradientPointCount(GpPathGradient *grad,
786 INT *count)
788 TRACE("(%p, %p)\n", grad, count);
790 if(!grad || !count)
791 return InvalidParameter;
793 *count = grad->pathdata.Count;
795 return Ok;
798 GpStatus WINGDIPAPI GdipGetPathGradientRect(GpPathGradient *brush, GpRectF *rect)
800 GpRectF r;
801 GpPath* path;
802 GpStatus stat;
804 TRACE("(%p, %p)\n", brush, rect);
806 if(!brush || !rect)
807 return InvalidParameter;
809 stat = GdipCreatePath2(brush->pathdata.Points, brush->pathdata.Types,
810 brush->pathdata.Count, FillModeAlternate, &path);
811 if(stat != Ok) return stat;
813 stat = GdipGetPathWorldBounds(path, &r, NULL, NULL);
814 if(stat != Ok){
815 GdipDeletePath(path);
816 return stat;
819 memcpy(rect, &r, sizeof(GpRectF));
821 GdipDeletePath(path);
823 return Ok;
826 GpStatus WINGDIPAPI GdipGetPathGradientRectI(GpPathGradient *brush, GpRect *rect)
828 GpRectF rectf;
829 GpStatus stat;
831 TRACE("(%p, %p)\n", brush, rect);
833 if(!brush || !rect)
834 return InvalidParameter;
836 stat = GdipGetPathGradientRect(brush, &rectf);
837 if(stat != Ok) return stat;
839 rect->X = roundr(rectf.X);
840 rect->Y = roundr(rectf.Y);
841 rect->Width = roundr(rectf.Width);
842 rect->Height = roundr(rectf.Height);
844 return Ok;
847 GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorsWithCount(GpPathGradient
848 *grad, ARGB *argb, INT *count)
850 static int calls;
852 if(!grad || !argb || !count || (*count < grad->pathdata.Count))
853 return InvalidParameter;
855 if(!(calls++))
856 FIXME("not implemented\n");
858 return NotImplemented;
861 GpStatus WINGDIPAPI GdipGetPathGradientWrapMode(GpPathGradient *brush,
862 GpWrapMode *wrapmode)
864 TRACE("(%p, %p)\n", brush, wrapmode);
866 if(!brush || !wrapmode)
867 return InvalidParameter;
869 *wrapmode = brush->wrap;
871 return Ok;
874 GpStatus WINGDIPAPI GdipGetSolidFillColor(GpSolidFill *sf, ARGB *argb)
876 TRACE("(%p, %p)\n", sf, argb);
878 if(!sf || !argb)
879 return InvalidParameter;
881 *argb = sf->color;
883 return Ok;
886 /******************************************************************************
887 * GdipGetTextureTransform [GDIPLUS.@]
889 GpStatus WINGDIPAPI GdipGetTextureTransform(GpTexture *brush, GpMatrix *matrix)
891 TRACE("(%p, %p)\n", brush, matrix);
893 if(!brush || !matrix)
894 return InvalidParameter;
896 memcpy(matrix, brush->transform, sizeof(GpMatrix));
898 return Ok;
901 GpStatus WINGDIPAPI GdipSetLineBlend(GpLineGradient *brush,
902 GDIPCONST REAL *blend, GDIPCONST REAL* positions, INT count)
904 static int calls;
906 if(!brush || !blend || !positions || count <= 0)
907 return InvalidParameter;
909 if(!(calls++))
910 FIXME("not implemented\n");
912 return Ok;
915 GpStatus WINGDIPAPI GdipSetLineGammaCorrection(GpLineGradient *line,
916 BOOL usegamma)
918 TRACE("(%p, %d)\n", line, usegamma);
920 if(!line)
921 return InvalidParameter;
923 line->gamma = usegamma;
925 return Ok;
928 GpStatus WINGDIPAPI GdipSetLineSigmaBlend(GpLineGradient *line, REAL focus,
929 REAL scale)
931 static int calls;
933 if(!line || focus < 0.0 || focus > 1.0 || scale < 0.0 || scale > 1.0)
934 return InvalidParameter;
936 if(!(calls++))
937 FIXME("not implemented\n");
939 return NotImplemented;
942 GpStatus WINGDIPAPI GdipSetLineWrapMode(GpLineGradient *line,
943 GpWrapMode wrap)
945 TRACE("(%p, %d)\n", line, wrap);
947 if(!line || wrap == WrapModeClamp)
948 return InvalidParameter;
950 line->wrap = wrap;
952 return Ok;
955 GpStatus WINGDIPAPI GdipSetPathGradientBlend(GpPathGradient *brush, GDIPCONST REAL *blend,
956 GDIPCONST REAL *pos, INT count)
958 static int calls;
960 if(!(calls++))
961 FIXME("not implemented\n");
963 return NotImplemented;
966 GpStatus WINGDIPAPI GdipSetPathGradientCenterColor(GpPathGradient *grad,
967 ARGB argb)
969 TRACE("(%p, %x)\n", grad, argb);
971 if(!grad)
972 return InvalidParameter;
974 grad->centercolor = argb;
975 grad->brush.lb.lbColor = ARGB2COLORREF(argb);
977 DeleteObject(grad->brush.gdibrush);
978 grad->brush.gdibrush = CreateSolidBrush(grad->brush.lb.lbColor);
980 return Ok;
983 GpStatus WINGDIPAPI GdipSetPathGradientCenterPoint(GpPathGradient *grad,
984 GpPointF *point)
986 TRACE("(%p, %p)\n", grad, point);
988 if(!grad || !point)
989 return InvalidParameter;
991 grad->center.X = point->X;
992 grad->center.Y = point->Y;
994 return Ok;
997 GpStatus WINGDIPAPI GdipSetPathGradientCenterPointI(GpPathGradient *grad,
998 GpPoint *point)
1000 GpPointF ptf;
1002 TRACE("(%p, %p)\n", grad, point);
1004 if(!point)
1005 return InvalidParameter;
1007 ptf.X = (REAL)point->X;
1008 ptf.Y = (REAL)point->Y;
1010 return GdipSetPathGradientCenterPoint(grad,&ptf);
1013 GpStatus WINGDIPAPI GdipSetPathGradientFocusScales(GpPathGradient *grad,
1014 REAL x, REAL y)
1016 TRACE("(%p, %.2f, %.2f)\n", grad, x, y);
1018 if(!grad)
1019 return InvalidParameter;
1021 grad->focus.X = x;
1022 grad->focus.Y = y;
1024 return Ok;
1027 GpStatus WINGDIPAPI GdipSetPathGradientGammaCorrection(GpPathGradient *grad,
1028 BOOL gamma)
1030 TRACE("(%p, %d)\n", grad, gamma);
1032 if(!grad)
1033 return InvalidParameter;
1035 grad->gamma = gamma;
1037 return Ok;
1040 GpStatus WINGDIPAPI GdipSetPathGradientSigmaBlend(GpPathGradient *grad,
1041 REAL focus, REAL scale)
1043 static int calls;
1045 if(!grad || focus < 0.0 || focus > 1.0 || scale < 0.0 || scale > 1.0)
1046 return InvalidParameter;
1048 if(!(calls++))
1049 FIXME("not implemented\n");
1051 return NotImplemented;
1054 GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient
1055 *grad, ARGB *argb, INT *count)
1057 static int calls;
1059 if(!grad || !argb || !count || (*count <= 0) ||
1060 (*count > grad->pathdata.Count))
1061 return InvalidParameter;
1063 if(!(calls++))
1064 FIXME("not implemented\n");
1066 return NotImplemented;
1069 GpStatus WINGDIPAPI GdipSetPathGradientWrapMode(GpPathGradient *grad,
1070 GpWrapMode wrap)
1072 TRACE("(%p, %d)\n", grad, wrap);
1074 if(!grad)
1075 return InvalidParameter;
1077 grad->wrap = wrap;
1079 return Ok;
1082 GpStatus WINGDIPAPI GdipSetSolidFillColor(GpSolidFill *sf, ARGB argb)
1084 TRACE("(%p, %x)\n", sf, argb);
1086 if(!sf)
1087 return InvalidParameter;
1089 sf->color = argb;
1090 sf->brush.lb.lbColor = ARGB2COLORREF(argb);
1092 DeleteObject(sf->brush.gdibrush);
1093 sf->brush.gdibrush = CreateSolidBrush(sf->brush.lb.lbColor);
1095 return Ok;
1098 GpStatus WINGDIPAPI GdipSetTextureTransform(GpTexture *texture,
1099 GDIPCONST GpMatrix *matrix)
1101 static int calls;
1103 if(!texture || !matrix)
1104 return InvalidParameter;
1106 if(!(calls++))
1107 FIXME("not implemented\n");
1109 return Ok;
1112 GpStatus WINGDIPAPI GdipSetLineColors(GpLineGradient *brush, ARGB color1,
1113 ARGB color2)
1115 TRACE("(%p, %x, %x)\n", brush, color1, color2);
1117 if(!brush)
1118 return InvalidParameter;
1120 brush->startcolor = color1;
1121 brush->endcolor = color2;
1123 return Ok;
1126 GpStatus WINGDIPAPI GdipGetLineColors(GpLineGradient *brush, ARGB *colors)
1128 TRACE("(%p, %p)\n", brush, colors);
1130 if(!brush || !colors)
1131 return InvalidParameter;
1133 colors[0] = brush->startcolor;
1134 colors[1] = brush->endcolor;
1136 return Ok;
1139 GpStatus WINGDIPAPI GdipSetLineLinearBlend(GpLineGradient *brush, REAL focus,
1140 REAL scale)
1142 static int calls;
1144 if(!(calls++))
1145 FIXME("not implemented\n");
1147 return NotImplemented;
1150 GpStatus WINGDIPAPI GdipSetLinePresetBlend(GpLineGradient *brush,
1151 GDIPCONST ARGB *blend, GDIPCONST REAL* positions, INT count)
1153 static int calls;
1155 if(!(calls++))
1156 FIXME("not implemented\n");
1158 return NotImplemented;
1161 GpStatus WINGDIPAPI GdipSetLineTransform(GpLineGradient *brush,
1162 GDIPCONST GpMatrix *matrix)
1164 static int calls;
1166 if(!(calls++))
1167 FIXME("not implemented\n");
1169 return NotImplemented;
1172 GpStatus WINGDIPAPI GdipTranslateLineTransform(GpLineGradient* brush,
1173 REAL dx, REAL dy, GpMatrixOrder order)
1175 FIXME("stub: %p %f %f %d\n", brush, dx, dy, order);
1177 return NotImplemented;
1180 GpStatus WINGDIPAPI GdipGetLineRect(GpLineGradient *brush, GpRectF *rect)
1182 TRACE("(%p, %p)\n", brush, rect);
1184 if(!brush || !rect)
1185 return InvalidParameter;
1187 rect->X = (brush->startpoint.X < brush->endpoint.X ? brush->startpoint.X: brush->endpoint.X);
1188 rect->Y = (brush->startpoint.Y < brush->endpoint.Y ? brush->startpoint.Y: brush->endpoint.Y);
1190 rect->Width = fabs(brush->startpoint.X - brush->endpoint.X);
1191 rect->Height = fabs(brush->startpoint.Y - brush->endpoint.Y);
1193 return Ok;
1196 GpStatus WINGDIPAPI GdipGetLineRectI(GpLineGradient *brush, GpRect *rect)
1198 GpRectF rectF;
1199 GpStatus ret;
1201 TRACE("(%p, %p)\n", brush, rect);
1203 if(!rect)
1204 return InvalidParameter;
1206 ret = GdipGetLineRect(brush, &rectF);
1208 if(ret == Ok){
1209 rect->X = roundr(rectF.X);
1210 rect->Y = roundr(rectF.Y);
1211 rect->Width = roundr(rectF.Width);
1212 rect->Height = roundr(rectF.Height);
1215 return ret;