Release 0.9.39.
[wine/gsoc-2012-control.git] / dlls / gdiplus / pen.c
blobd0355dbf9e49db7bc2561157410f7cf724813216
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"
24 #include "gdiplus.h"
25 #include "gdiplus_private.h"
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
30 GpStatus WINGDIPAPI GdipCreatePen1(ARGB color, FLOAT width, GpUnit unit,
31 GpPen **pen)
33 LOGBRUSH lb;
34 GpPen *gp_pen;
36 gp_pen = GdipAlloc(sizeof(GpPen));
37 if(!pen) return OutOfMemory;
39 gp_pen->style = GP_DEFAULT_PENSTYLE;
40 gp_pen->color = ARGB2COLORREF(color);
41 gp_pen->width = width;
42 gp_pen->unit = unit;
44 /* FIXME: Currently only solid lines supported. */
45 lb.lbStyle = BS_SOLID;
46 lb.lbColor = gp_pen->color;
47 lb.lbHatch = 0;
49 if((gp_pen->unit == UnitWorld) || (gp_pen->unit == UnitPixel)) {
50 gp_pen->gdipen = ExtCreatePen(gp_pen->style, (INT) gp_pen->width, &lb,
51 0, NULL);
52 } else {
53 FIXME("UnitWorld, UnitPixel only supported units\n");
54 return NotImplemented;
57 if(!gp_pen)
58 return GenericError;
60 *pen = gp_pen;
62 return Ok;
65 GpStatus WINGDIPAPI GdipDeletePen(GpPen *pen)
67 if(!pen) return InvalidParameter;
68 DeleteObject(pen->gdipen);
69 GdipFree(pen);
71 return Ok;