comctl32/tests: Avoid a structure initialization warning.
[wine.git] / dlls / gdiplus / pen.c
blob8bcb91819a2d1eceded99eb1b34cc29ae212a820
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 "wingdi.h"
25 #include "objbase.h"
27 #include "gdiplus.h"
28 #include "gdiplus_private.h"
29 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
33 static DWORD gdip_to_gdi_dash(GpDashStyle dash)
35 switch(dash){
36 case DashStyleSolid:
37 return PS_SOLID;
38 case DashStyleDash:
39 return PS_DASH;
40 case DashStyleDot:
41 return PS_DOT;
42 case DashStyleDashDot:
43 return PS_DASHDOT;
44 case DashStyleDashDotDot:
45 return PS_DASHDOTDOT;
46 case DashStyleCustom:
47 return PS_USERSTYLE;
48 default:
49 ERR("Not a member of GpDashStyle enumeration\n");
50 return 0;
54 static DWORD gdip_to_gdi_join(GpLineJoin join)
56 switch(join){
57 case LineJoinRound:
58 return PS_JOIN_ROUND;
59 case LineJoinBevel:
60 return PS_JOIN_BEVEL;
61 case LineJoinMiter:
62 case LineJoinMiterClipped:
63 return PS_JOIN_MITER;
64 default:
65 ERR("Not a member of GpLineJoin enumeration\n");
66 return 0;
70 static GpPenType bt_to_pt(GpBrushType bt)
72 switch(bt){
73 case BrushTypeSolidColor:
74 return PenTypeSolidColor;
75 case BrushTypeHatchFill:
76 return PenTypeHatchFill;
77 case BrushTypeTextureFill:
78 return PenTypeTextureFill;
79 case BrushTypePathGradient:
80 return PenTypePathGradient;
81 case BrushTypeLinearGradient:
82 return PenTypeLinearGradient;
83 default:
84 return PenTypeUnknown;
88 GpStatus WINGDIPAPI GdipClonePen(GpPen *pen, GpPen **clonepen)
90 GpStatus stat;
92 TRACE("(%p, %p)\n", pen, clonepen);
94 if(!pen || !clonepen)
95 return InvalidParameter;
97 *clonepen = heap_alloc_zero(sizeof(GpPen));
98 if(!*clonepen) return OutOfMemory;
100 **clonepen = *pen;
102 (*clonepen)->customstart = NULL;
103 (*clonepen)->customend = NULL;
104 (*clonepen)->brush = NULL;
105 (*clonepen)->dashes = NULL;
107 stat = GdipCloneBrush(pen->brush, &(*clonepen)->brush);
109 if (stat == Ok && pen->customstart)
110 stat = GdipCloneCustomLineCap(pen->customstart, &(*clonepen)->customstart);
112 if (stat == Ok && pen->customend)
113 stat = GdipCloneCustomLineCap(pen->customend, &(*clonepen)->customend);
115 if (stat == Ok && pen->dashes)
117 (*clonepen)->dashes = heap_alloc_zero(pen->numdashes * sizeof(REAL));
118 if ((*clonepen)->dashes)
119 memcpy((*clonepen)->dashes, pen->dashes, pen->numdashes * sizeof(REAL));
120 else
121 stat = OutOfMemory;
124 if (stat != Ok)
126 GdipDeletePen(*clonepen);
127 *clonepen = NULL;
128 return stat;
131 TRACE("<-- %p\n", *clonepen);
133 return Ok;
136 GpStatus WINGDIPAPI GdipCreatePen1(ARGB color, REAL width, GpUnit unit,
137 GpPen **pen)
139 GpBrush *brush;
140 GpStatus status;
142 TRACE("(%x, %.2f, %d, %p)\n", color, width, unit, pen);
144 GdipCreateSolidFill(color, (GpSolidFill **)(&brush));
145 status = GdipCreatePen2(brush, width, unit, pen);
146 GdipDeleteBrush(brush);
147 return status;
150 GpStatus WINGDIPAPI GdipCreatePen2(GpBrush *brush, REAL width, GpUnit unit,
151 GpPen **pen)
153 GpPen *gp_pen;
154 GpBrush *clone_brush;
156 TRACE("(%p, %.2f, %d, %p)\n", brush, width, unit, pen);
158 if(!pen || !brush)
159 return InvalidParameter;
161 gp_pen = heap_alloc_zero(sizeof(GpPen));
162 if(!gp_pen) return OutOfMemory;
164 gp_pen->style = GP_DEFAULT_PENSTYLE;
165 gp_pen->width = width;
166 gp_pen->unit = unit;
167 gp_pen->endcap = LineCapFlat;
168 gp_pen->join = LineJoinMiter;
169 gp_pen->miterlimit = 10.0;
170 gp_pen->dash = DashStyleSolid;
171 gp_pen->offset = 0.0;
172 gp_pen->customstart = NULL;
173 gp_pen->customend = NULL;
174 GdipSetMatrixElements(&gp_pen->transform, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0);
176 if(!((gp_pen->unit == UnitWorld) || (gp_pen->unit == UnitPixel))) {
177 FIXME("UnitWorld, UnitPixel only supported units\n");
178 heap_free(gp_pen);
179 return NotImplemented;
182 GdipCloneBrush(brush, &clone_brush);
183 gp_pen->brush = clone_brush;
185 *pen = gp_pen;
187 TRACE("<-- %p\n", *pen);
189 return Ok;
192 GpStatus WINGDIPAPI GdipDeletePen(GpPen *pen)
194 TRACE("(%p)\n", pen);
196 if(!pen) return InvalidParameter;
198 GdipDeleteBrush(pen->brush);
199 GdipDeleteCustomLineCap(pen->customstart);
200 GdipDeleteCustomLineCap(pen->customend);
201 heap_free(pen->dashes);
202 heap_free(pen);
204 return Ok;
207 GpStatus WINGDIPAPI GdipGetPenBrushFill(GpPen *pen, GpBrush **brush)
209 TRACE("(%p, %p)\n", pen, brush);
211 if(!pen || !brush)
212 return InvalidParameter;
214 return GdipCloneBrush(pen->brush, brush);
217 GpStatus WINGDIPAPI GdipGetPenColor(GpPen *pen, ARGB *argb)
219 TRACE("(%p, %p)\n", pen, argb);
221 if(!pen || !argb)
222 return InvalidParameter;
224 if(pen->brush->bt != BrushTypeSolidColor)
225 return NotImplemented;
227 return GdipGetSolidFillColor(((GpSolidFill*)pen->brush), argb);
230 GpStatus WINGDIPAPI GdipGetPenCustomEndCap(GpPen *pen, GpCustomLineCap** customCap)
232 TRACE("(%p, %p)\n", pen, customCap);
234 if(!pen || !customCap)
235 return InvalidParameter;
237 if(!pen->customend){
238 *customCap = NULL;
239 return Ok;
242 return GdipCloneCustomLineCap(pen->customend, customCap);
245 GpStatus WINGDIPAPI GdipGetPenCustomStartCap(GpPen *pen, GpCustomLineCap** customCap)
247 TRACE("(%p, %p)\n", pen, customCap);
249 if(!pen || !customCap)
250 return InvalidParameter;
252 if(!pen->customstart){
253 *customCap = NULL;
254 return Ok;
257 return GdipCloneCustomLineCap(pen->customstart, customCap);
260 GpStatus WINGDIPAPI GdipGetPenDashArray(GpPen *pen, REAL *dash, INT count)
262 TRACE("(%p, %p, %d)\n", pen, dash, count);
264 if(!pen || !dash || count > pen->numdashes)
265 return InvalidParameter;
267 /* note: if you pass a negative value for count, it crashes native gdiplus. */
268 if(count < 0)
269 return GenericError;
271 memcpy(dash, pen->dashes, count * sizeof(REAL));
273 return Ok;
276 GpStatus WINGDIPAPI GdipGetPenDashCap197819(GpPen *pen, GpDashCap *dashCap)
278 TRACE("(%p, %p)\n", pen, dashCap);
280 if(!pen || !dashCap)
281 return InvalidParameter;
283 *dashCap = pen->dashcap;
285 return Ok;
288 GpStatus WINGDIPAPI GdipGetPenDashCount(GpPen *pen, INT *count)
290 TRACE("(%p, %p)\n", pen, count);
292 if(!pen || !count)
293 return InvalidParameter;
295 *count = pen->numdashes;
297 return Ok;
300 GpStatus WINGDIPAPI GdipGetPenDashOffset(GpPen *pen, REAL *offset)
302 TRACE("(%p, %p)\n", pen, offset);
304 if(!pen || !offset)
305 return InvalidParameter;
307 *offset = pen->offset;
309 return Ok;
312 GpStatus WINGDIPAPI GdipGetPenDashStyle(GpPen *pen, GpDashStyle *dash)
314 TRACE("(%p, %p)\n", pen, dash);
316 if(!pen || !dash)
317 return InvalidParameter;
319 *dash = pen->dash;
321 return Ok;
324 GpStatus WINGDIPAPI GdipGetPenEndCap(GpPen *pen, GpLineCap *endCap)
326 TRACE("(%p, %p)\n", pen, endCap);
328 if(!pen || !endCap)
329 return InvalidParameter;
331 *endCap = pen->endcap;
333 return Ok;
336 GpStatus WINGDIPAPI GdipGetPenFillType(GpPen *pen, GpPenType* type)
338 TRACE("(%p, %p)\n", pen, type);
340 if(!pen || !type)
341 return InvalidParameter;
343 *type = bt_to_pt(pen->brush->bt);
345 return Ok;
348 GpStatus WINGDIPAPI GdipGetPenLineJoin(GpPen *pen, GpLineJoin *lineJoin)
350 TRACE("(%p, %p)\n", pen, lineJoin);
352 if(!pen || !lineJoin)
353 return InvalidParameter;
355 *lineJoin = pen->join;
357 return Ok;
360 GpStatus WINGDIPAPI GdipGetPenMode(GpPen *pen, GpPenAlignment *mode)
362 TRACE("(%p, %p)\n", pen, mode);
364 if(!pen || !mode)
365 return InvalidParameter;
367 *mode = pen->align;
369 return Ok;
372 GpStatus WINGDIPAPI GdipGetPenMiterLimit(GpPen *pen, REAL *miterLimit)
374 TRACE("(%p, %p)\n", pen, miterLimit);
376 if(!pen || !miterLimit)
377 return InvalidParameter;
379 *miterLimit = pen->miterlimit;
381 return Ok;
384 GpStatus WINGDIPAPI GdipGetPenStartCap(GpPen *pen, GpLineCap *startCap)
386 TRACE("(%p, %p)\n", pen, startCap);
388 if(!pen || !startCap)
389 return InvalidParameter;
391 *startCap = pen->startcap;
393 return Ok;
396 GpStatus WINGDIPAPI GdipGetPenUnit(GpPen *pen, GpUnit *unit)
398 TRACE("(%p, %p)\n", pen, unit);
400 if(!pen || !unit)
401 return InvalidParameter;
403 *unit = pen->unit;
405 return Ok;
408 GpStatus WINGDIPAPI GdipGetPenWidth(GpPen *pen, REAL *width)
410 TRACE("(%p, %p)\n", pen, width);
412 if(!pen || !width)
413 return InvalidParameter;
415 *width = pen->width;
417 return Ok;
420 GpStatus WINGDIPAPI GdipResetPenTransform(GpPen *pen)
422 TRACE("(%p)\n", pen);
424 if(!pen)
425 return InvalidParameter;
427 GdipSetMatrixElements(&pen->transform, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0);
429 return Ok;
432 GpStatus WINGDIPAPI GdipSetPenTransform(GpPen *pen, GpMatrix *matrix)
434 static int calls;
436 TRACE("(%p,%p)\n", pen, matrix);
438 if(!pen || !matrix)
439 return InvalidParameter;
441 if(!(calls++))
442 FIXME("(%p,%p) Semi-stub\n", pen, matrix);
444 pen->transform = *matrix;
446 return Ok;
449 GpStatus WINGDIPAPI GdipGetPenTransform(GpPen *pen, GpMatrix *matrix)
451 TRACE("(%p,%p)\n", pen, matrix);
453 if(!pen || !matrix)
454 return InvalidParameter;
456 *matrix = pen->transform;
458 return Ok;
461 GpStatus WINGDIPAPI GdipTranslatePenTransform(GpPen *pen, REAL dx, REAL dy, GpMatrixOrder order)
463 TRACE("(%p,%0.2f,%0.2f,%u)\n", pen, dx, dy, order);
465 if(!pen)
466 return InvalidParameter;
468 return GdipTranslateMatrix(&pen->transform, dx, dy, order);
471 GpStatus WINGDIPAPI GdipScalePenTransform(GpPen *pen, REAL sx, REAL sy, GpMatrixOrder order)
473 TRACE("(%p,%0.2f,%0.2f,%u)\n", pen, sx, sy, order);
475 if(!pen)
476 return InvalidParameter;
478 return GdipScaleMatrix(&pen->transform, sx, sy, order);
481 GpStatus WINGDIPAPI GdipRotatePenTransform(GpPen *pen, REAL angle, GpMatrixOrder order)
483 TRACE("(%p,%0.2f,%u)\n", pen, angle, order);
485 if(!pen)
486 return InvalidParameter;
488 return GdipRotateMatrix(&pen->transform, angle, order);
491 GpStatus WINGDIPAPI GdipMultiplyPenTransform(GpPen *pen, GDIPCONST GpMatrix *matrix,
492 GpMatrixOrder order)
494 TRACE("(%p,%p,%u)\n", pen, matrix, order);
496 if(!pen)
497 return InvalidParameter;
499 return GdipMultiplyMatrix(&pen->transform, matrix, order);
502 GpStatus WINGDIPAPI GdipSetPenBrushFill(GpPen *pen, GpBrush *brush)
504 TRACE("(%p, %p)\n", pen, brush);
506 if(!pen || !brush)
507 return InvalidParameter;
509 GdipDeleteBrush(pen->brush);
510 return GdipCloneBrush(brush, &pen->brush);
513 GpStatus WINGDIPAPI GdipSetPenColor(GpPen *pen, ARGB argb)
515 TRACE("(%p, %x)\n", pen, argb);
517 if(!pen)
518 return InvalidParameter;
520 if(pen->brush->bt != BrushTypeSolidColor)
521 return NotImplemented;
523 return GdipSetSolidFillColor(((GpSolidFill*)pen->brush), argb);
526 GpStatus WINGDIPAPI GdipGetPenCompoundCount(GpPen *pen, INT *count)
528 FIXME("(%p, %p): stub\n", pen, count);
530 if (!pen || !count)
531 return InvalidParameter;
533 return NotImplemented;
536 GpStatus WINGDIPAPI GdipSetPenCompoundArray(GpPen *pen, GDIPCONST REAL *dash,
537 INT count)
539 FIXME("(%p, %p, %i): stub\n", pen, dash, count);
541 if (!pen || !dash || count < 2 || count%2 == 1)
542 return InvalidParameter;
544 return NotImplemented;
547 GpStatus WINGDIPAPI GdipSetPenCustomEndCap(GpPen *pen, GpCustomLineCap* customCap)
549 GpCustomLineCap * cap;
550 GpStatus ret;
552 TRACE("(%p, %p)\n", pen, customCap);
554 /* native crashes on pen == NULL, customCap != NULL */
555 if(!customCap) return InvalidParameter;
557 if((ret = GdipCloneCustomLineCap(customCap, &cap)) == Ok){
558 GdipDeleteCustomLineCap(pen->customend);
559 pen->endcap = LineCapCustom;
560 pen->customend = cap;
563 return ret;
566 GpStatus WINGDIPAPI GdipSetPenCustomStartCap(GpPen *pen, GpCustomLineCap* customCap)
568 GpCustomLineCap * cap;
569 GpStatus ret;
571 TRACE("(%p, %p)\n", pen, customCap);
573 /* native crashes on pen == NULL, customCap != NULL */
574 if(!customCap) return InvalidParameter;
576 if((ret = GdipCloneCustomLineCap(customCap, &cap)) == Ok){
577 GdipDeleteCustomLineCap(pen->customstart);
578 pen->startcap = LineCapCustom;
579 pen->customstart = cap;
582 return ret;
585 GpStatus WINGDIPAPI GdipSetPenDashArray(GpPen *pen, GDIPCONST REAL *dash,
586 INT count)
588 INT i;
589 REAL sum = 0;
591 TRACE("(%p, %p, %d)\n", pen, dash, count);
593 if(!pen || !dash)
594 return InvalidParameter;
596 if(count <= 0)
597 return OutOfMemory;
599 for(i = 0; i < count; i++){
600 sum += dash[i];
601 if(dash[i] < 0.0)
602 return InvalidParameter;
605 if(sum == 0.0 && count)
606 return InvalidParameter;
608 heap_free(pen->dashes);
609 pen->dashes = NULL;
611 if(count > 0)
612 pen->dashes = heap_alloc_zero(count * sizeof(REAL));
613 if(!pen->dashes){
614 pen->numdashes = 0;
615 return OutOfMemory;
618 GdipSetPenDashStyle(pen, DashStyleCustom);
619 memcpy(pen->dashes, dash, count * sizeof(REAL));
620 pen->numdashes = count;
622 return Ok;
625 GpStatus WINGDIPAPI GdipSetPenDashCap197819(GpPen *pen, GpDashCap dashCap)
627 TRACE("(%p, %d)\n", pen, dashCap);
629 if(!pen)
630 return InvalidParameter;
632 pen->dashcap = dashCap;
634 return Ok;
637 /* FIXME: dash offset not used */
638 GpStatus WINGDIPAPI GdipSetPenDashOffset(GpPen *pen, REAL offset)
640 TRACE("(%p, %.2f)\n", pen, offset);
642 if(!pen)
643 return InvalidParameter;
645 pen->offset = offset;
647 return Ok;
650 GpStatus WINGDIPAPI GdipSetPenDashStyle(GpPen *pen, GpDashStyle dash)
652 TRACE("(%p, %d)\n", pen, dash);
654 if(!pen)
655 return InvalidParameter;
657 if(dash != DashStyleCustom){
658 heap_free(pen->dashes);
659 pen->dashes = NULL;
660 pen->numdashes = 0;
663 pen->dash = dash;
664 pen->style &= ~(PS_ALTERNATE | PS_SOLID | PS_DASH | PS_DOT | PS_DASHDOT |
665 PS_DASHDOTDOT | PS_NULL | PS_USERSTYLE | PS_INSIDEFRAME);
666 pen->style |= gdip_to_gdi_dash(dash);
668 return Ok;
671 GpStatus WINGDIPAPI GdipSetPenEndCap(GpPen *pen, GpLineCap cap)
673 TRACE("(%p, %d)\n", pen, cap);
675 if(!pen) return InvalidParameter;
677 /* The old custom cap gets deleted even if the new style is LineCapCustom. */
678 GdipDeleteCustomLineCap(pen->customend);
679 pen->customend = NULL;
680 pen->endcap = cap;
682 return Ok;
685 /* FIXME: startcap, dashcap not used. */
686 GpStatus WINGDIPAPI GdipSetPenLineCap197819(GpPen *pen, GpLineCap start,
687 GpLineCap end, GpDashCap dash)
689 TRACE("%p, %d, %d, %d)\n", pen, start, end, dash);
691 if(!pen)
692 return InvalidParameter;
694 GdipDeleteCustomLineCap(pen->customend);
695 GdipDeleteCustomLineCap(pen->customstart);
696 pen->customend = NULL;
697 pen->customstart = NULL;
699 pen->startcap = start;
700 pen->endcap = end;
701 pen->dashcap = dash;
703 return Ok;
706 /* FIXME: Miter line joins behave a bit differently than they do in windows.
707 * Both kinds of miter joins clip if the angle is less than 11 degrees. */
708 GpStatus WINGDIPAPI GdipSetPenLineJoin(GpPen *pen, GpLineJoin join)
710 TRACE("(%p, %d)\n", pen, join);
712 if(!pen) return InvalidParameter;
714 pen->join = join;
715 pen->style &= ~(PS_JOIN_ROUND | PS_JOIN_BEVEL | PS_JOIN_MITER);
716 pen->style |= gdip_to_gdi_join(join);
718 return Ok;
721 GpStatus WINGDIPAPI GdipSetPenMiterLimit(GpPen *pen, REAL limit)
723 TRACE("(%p, %.2f)\n", pen, limit);
725 if(!pen)
726 return InvalidParameter;
728 pen->miterlimit = limit;
730 return Ok;
733 GpStatus WINGDIPAPI GdipSetPenStartCap(GpPen *pen, GpLineCap cap)
735 TRACE("(%p, %d)\n", pen, cap);
737 if(!pen) return InvalidParameter;
739 GdipDeleteCustomLineCap(pen->customstart);
740 pen->customstart = NULL;
741 pen->startcap = cap;
743 return Ok;
746 GpStatus WINGDIPAPI GdipSetPenWidth(GpPen *pen, REAL width)
748 TRACE("(%p, %.2f)\n", pen, width);
750 if(!pen) return InvalidParameter;
752 pen->width = width;
754 return Ok;
757 GpStatus WINGDIPAPI GdipSetPenMode(GpPen *pen, GpPenAlignment mode)
759 TRACE("(%p, %d)\n", pen, mode);
761 if(!pen) return InvalidParameter;
763 pen->align = mode;
765 return Ok;