Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 1 | /* |
| 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 Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 19 | #include <stdarg.h> |
| 20 | |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 21 | #include "windef.h" |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 22 | #include "winbase.h" |
| 23 | #include "winuser.h" |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 24 | #include "wingdi.h" |
Evan Stade | 4c5486f | 2007-07-31 19:15:48 -0700 | [diff] [blame] | 25 | |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 26 | #define COBJMACROS |
Evan Stade | 4c5486f | 2007-07-31 19:15:48 -0700 | [diff] [blame] | 27 | #include "objbase.h" |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 28 | #include "olectl.h" |
| 29 | #include "ole2.h" |
Evan Stade | 4c5486f | 2007-07-31 19:15:48 -0700 | [diff] [blame] | 30 | |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 31 | #include "gdiplus.h" |
| 32 | #include "gdiplus_private.h" |
Evan Stade | f18cdef | 2007-08-01 17:56:02 -0700 | [diff] [blame] | 33 | #include "wine/debug.h" |
| 34 | |
| 35 | WINE_DEFAULT_DEBUG_CHANNEL(gdiplus); |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 36 | |
Francois Gouget | 8577025 | 2008-09-14 02:12:25 +0200 | [diff] [blame] | 37 | /****************************************************************************** |
| 38 | * GdipCloneBrush [GDIPLUS.@] |
| 39 | */ |
Evan Stade | b2b4b87 | 2007-07-19 18:23:04 -0700 | [diff] [blame] | 40 | GpStatus WINGDIPAPI GdipCloneBrush(GpBrush *brush, GpBrush **clone) |
| 41 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 42 | TRACE("(%p, %p)\n", brush, clone); |
| 43 | |
Evan Stade | b2b4b87 | 2007-07-19 18:23:04 -0700 | [diff] [blame] | 44 | if(!brush || !clone) |
| 45 | return InvalidParameter; |
| 46 | |
Evan Stade | 8b2ce0f | 2007-07-23 20:24:24 -0700 | [diff] [blame] | 47 | switch(brush->bt){ |
| 48 | case BrushTypeSolidColor: |
Vincent Povirk | 60167df | 2009-05-20 11:24:18 -0500 | [diff] [blame] | 49 | { |
| 50 | GpSolidFill *fill; |
Evan Stade | 8b2ce0f | 2007-07-23 20:24:24 -0700 | [diff] [blame] | 51 | *clone = GdipAlloc(sizeof(GpSolidFill)); |
| 52 | if (!*clone) return OutOfMemory; |
Evan Stade | b2b4b87 | 2007-07-19 18:23:04 -0700 | [diff] [blame] | 53 | |
Vincent Povirk | 60167df | 2009-05-20 11:24:18 -0500 | [diff] [blame] | 54 | fill = (GpSolidFill*)*clone; |
| 55 | |
Evan Stade | 8b2ce0f | 2007-07-23 20:24:24 -0700 | [diff] [blame] | 56 | memcpy(*clone, brush, sizeof(GpSolidFill)); |
Evan Stade | b2b4b87 | 2007-07-19 18:23:04 -0700 | [diff] [blame] | 57 | |
Evan Stade | 8b2ce0f | 2007-07-23 20:24:24 -0700 | [diff] [blame] | 58 | (*clone)->gdibrush = CreateBrushIndirect(&(*clone)->lb); |
Vincent Povirk | 60167df | 2009-05-20 11:24:18 -0500 | [diff] [blame] | 59 | fill->bmp = ARGB2BMP(fill->color); |
Evan Stade | 8b2ce0f | 2007-07-23 20:24:24 -0700 | [diff] [blame] | 60 | break; |
Vincent Povirk | 60167df | 2009-05-20 11:24:18 -0500 | [diff] [blame] | 61 | } |
Chris Wulff | a2a94a4 | 2009-01-10 18:45:11 -0500 | [diff] [blame] | 62 | case BrushTypeHatchFill: |
Vincent Povirk | e933da4 | 2010-02-11 16:01:14 -0600 | [diff] [blame] | 63 | { |
| 64 | GpHatch *hatch = (GpHatch*)brush; |
Chris Wulff | a2a94a4 | 2009-01-10 18:45:11 -0500 | [diff] [blame] | 65 | |
Vincent Povirk | e933da4 | 2010-02-11 16:01:14 -0600 | [diff] [blame] | 66 | return GdipCreateHatchBrush(hatch->hatchstyle, hatch->forecol, hatch->backcol, (GpHatch**)clone); |
| 67 | } |
Evan Stade | 7929ba8 | 2007-08-02 17:52:55 -0700 | [diff] [blame] | 68 | 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 Sivov | 01abb3d | 2008-07-21 23:30:39 +0400 | [diff] [blame] | 95 | /* 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 Stade | 7929ba8 | 2007-08-02 17:52:55 -0700 | [diff] [blame] | 113 | break; |
| 114 | } |
Vincent Povirk | b05cf90 | 2009-04-28 18:03:41 -0500 | [diff] [blame] | 115 | case BrushTypeLinearGradient:{ |
| 116 | GpLineGradient *dest, *src; |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 117 | INT count, pcount; |
Evan Stade | ec30491 | 2007-08-07 18:42:56 -0700 | [diff] [blame] | 118 | |
Vincent Povirk | b05cf90 | 2009-04-28 18:03:41 -0500 | [diff] [blame] | 119 | dest = GdipAlloc(sizeof(GpLineGradient)); |
| 120 | if(!dest) return OutOfMemory; |
Evan Stade | ec30491 | 2007-08-07 18:42:56 -0700 | [diff] [blame] | 121 | |
Vincent Povirk | b05cf90 | 2009-04-28 18:03:41 -0500 | [diff] [blame] | 122 | 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 Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 131 | pcount = dest->pblendcount; |
| 132 | if (pcount) |
| 133 | { |
| 134 | dest->pblendcolor = GdipAlloc(pcount * sizeof(ARGB)); |
| 135 | dest->pblendpos = GdipAlloc(pcount * sizeof(REAL)); |
| 136 | } |
Vincent Povirk | b05cf90 | 2009-04-28 18:03:41 -0500 | [diff] [blame] | 137 | |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 138 | if (!dest->blendfac || !dest->blendpos || |
| 139 | (pcount && (!dest->pblendcolor || !dest->pblendpos))) |
Vincent Povirk | b05cf90 | 2009-04-28 18:03:41 -0500 | [diff] [blame] | 140 | { |
| 141 | GdipFree(dest->blendfac); |
| 142 | GdipFree(dest->blendpos); |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 143 | GdipFree(dest->pblendcolor); |
| 144 | GdipFree(dest->pblendpos); |
Vincent Povirk | b05cf90 | 2009-04-28 18:03:41 -0500 | [diff] [blame] | 145 | 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 Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 153 | if (pcount) |
| 154 | { |
| 155 | memcpy(dest->pblendcolor, src->pblendcolor, pcount * sizeof(ARGB)); |
| 156 | memcpy(dest->pblendpos, src->pblendpos, pcount * sizeof(REAL)); |
| 157 | } |
| 158 | |
Vincent Povirk | b05cf90 | 2009-04-28 18:03:41 -0500 | [diff] [blame] | 159 | *clone = &dest->brush; |
Evan Stade | ec30491 | 2007-08-07 18:42:56 -0700 | [diff] [blame] | 160 | break; |
Vincent Povirk | b05cf90 | 2009-04-28 18:03:41 -0500 | [diff] [blame] | 161 | } |
Evan Stade | 8254c37 | 2007-08-09 18:25:18 -0700 | [diff] [blame] | 162 | case BrushTypeTextureFill: |
Vincent Povirk | 70c9e4f | 2010-02-11 16:43:45 -0600 | [diff] [blame] | 163 | { |
| 164 | GpStatus stat; |
| 165 | GpTexture *texture = (GpTexture*)brush; |
| 166 | GpTexture *new_texture; |
Evan Stade | 8254c37 | 2007-08-09 18:25:18 -0700 | [diff] [blame] | 167 | |
Vincent Povirk | 70c9e4f | 2010-02-11 16:43:45 -0600 | [diff] [blame] | 168 | stat = GdipCreateTexture(texture->image, texture->wrap, &new_texture); |
Evan Stade | 8254c37 | 2007-08-09 18:25:18 -0700 | [diff] [blame] | 169 | |
Vincent Povirk | 70c9e4f | 2010-02-11 16:43:45 -0600 | [diff] [blame] | 170 | 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 Stade | 8b2ce0f | 2007-07-23 20:24:24 -0700 | [diff] [blame] | 180 | default: |
Evan Stade | 8254c37 | 2007-08-09 18:25:18 -0700 | [diff] [blame] | 181 | ERR("not implemented for brush type %d\n", brush->bt); |
Evan Stade | 8b2ce0f | 2007-07-23 20:24:24 -0700 | [diff] [blame] | 182 | return NotImplemented; |
| 183 | } |
Evan Stade | b2b4b87 | 2007-07-19 18:23:04 -0700 | [diff] [blame] | 184 | |
Vincent Povirk | f141778 | 2009-12-18 14:58:28 -0600 | [diff] [blame] | 185 | TRACE("<-- %p\n", *clone); |
Evan Stade | b2b4b87 | 2007-07-19 18:23:04 -0700 | [diff] [blame] | 186 | return Ok; |
| 187 | } |
| 188 | |
Vincent Povirk | bd86e27 | 2009-10-08 13:35:03 -0500 | [diff] [blame] | 189 | static 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 Povirk | f0c99e0 | 2009-10-08 15:48:21 -0500 | [diff] [blame] | 196 | { 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 Povirk | bd86e27 | 2009-10-08 13:35:03 -0500 | [diff] [blame] | 220 | }; |
Chris Wulff | a2a94a4 | 2009-01-10 18:45:11 -0500 | [diff] [blame] | 221 | |
| 222 | /****************************************************************************** |
| 223 | * GdipCreateHatchBrush [GDIPLUS.@] |
| 224 | */ |
Alexandre Julliard | 0208fe2 | 2009-01-16 16:36:29 +0100 | [diff] [blame] | 225 | GpStatus WINGDIPAPI GdipCreateHatchBrush(HatchStyle hatchstyle, ARGB forecol, ARGB backcol, GpHatch **brush) |
Chris Wulff | a2a94a4 | 2009-01-10 18:45:11 -0500 | [diff] [blame] | 226 | { |
| 227 | COLORREF fgcol = ARGB2COLORREF(forecol); |
Vincent Povirk | bd86e27 | 2009-10-08 13:35:03 -0500 | [diff] [blame] | 228 | GpStatus stat = Ok; |
Chris Wulff | a2a94a4 | 2009-01-10 18:45:11 -0500 | [diff] [blame] | 229 | |
| 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 Povirk | bd86e27 | 2009-10-08 13:35:03 -0500 | [diff] [blame] | 237 | if (hatchstyle < sizeof(HatchBrushes) / sizeof(HatchBrushes[0])) |
Chris Wulff | a2a94a4 | 2009-01-10 18:45:11 -0500 | [diff] [blame] | 238 | { |
Vincent Povirk | bd86e27 | 2009-10-08 13:35:03 -0500 | [diff] [blame] | 239 | HBITMAP hbmp; |
| 240 | HDC hdc; |
| 241 | BITMAPINFOHEADER bmih; |
| 242 | DWORD* bits; |
| 243 | int x, y; |
Chris Wulff | a2a94a4 | 2009-01-10 18:45:11 -0500 | [diff] [blame] | 244 | |
Vincent Povirk | bd86e27 | 2009-10-08 13:35:03 -0500 | [diff] [blame] | 245 | hdc = CreateCompatibleDC(0); |
Chris Wulff | a2a94a4 | 2009-01-10 18:45:11 -0500 | [diff] [blame] | 246 | |
Vincent Povirk | bd86e27 | 2009-10-08 13:35:03 -0500 | [diff] [blame] | 247 | 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 Wulff | a2a94a4 | 2009-01-10 18:45:11 -0500 | [diff] [blame] | 294 | } |
| 295 | |
Vincent Povirk | bd86e27 | 2009-10-08 13:35:03 -0500 | [diff] [blame] | 296 | if (stat == Ok) |
| 297 | { |
| 298 | (*brush)->brush.bt = BrushTypeHatchFill; |
| 299 | (*brush)->forecol = forecol; |
| 300 | (*brush)->backcol = backcol; |
| 301 | (*brush)->hatchstyle = hatchstyle; |
Vincent Povirk | f141778 | 2009-12-18 14:58:28 -0600 | [diff] [blame] | 302 | TRACE("<-- %p\n", *brush); |
Vincent Povirk | bd86e27 | 2009-10-08 13:35:03 -0500 | [diff] [blame] | 303 | } |
| 304 | else |
| 305 | { |
| 306 | GdipFree(*brush); |
| 307 | *brush = NULL; |
| 308 | } |
Chris Wulff | a2a94a4 | 2009-01-10 18:45:11 -0500 | [diff] [blame] | 309 | |
Vincent Povirk | bd86e27 | 2009-10-08 13:35:03 -0500 | [diff] [blame] | 310 | return stat; |
Chris Wulff | a2a94a4 | 2009-01-10 18:45:11 -0500 | [diff] [blame] | 311 | } |
| 312 | |
Francois Gouget | 8577025 | 2008-09-14 02:12:25 +0200 | [diff] [blame] | 313 | /****************************************************************************** |
| 314 | * GdipCreateLineBrush [GDIPLUS.@] |
| 315 | */ |
Evan Stade | 2b438a0 | 2007-08-07 18:42:29 -0700 | [diff] [blame] | 316 | GpStatus 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 Povirk | 7ded3d8 | 2009-12-18 15:45:02 -0600 | [diff] [blame] | 322 | TRACE("(%s, %s, %x, %x, %d, %p)\n", debugstr_pointf(startpoint), |
| 323 | debugstr_pointf(endpoint), startcolor, endcolor, wrap, line); |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 324 | |
Evan Stade | 37657bc | 2007-08-07 18:42:32 -0700 | [diff] [blame] | 325 | if(!line || !startpoint || !endpoint || wrap == WrapModeClamp) |
Evan Stade | 2b438a0 | 2007-08-07 18:42:29 -0700 | [diff] [blame] | 326 | 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 Stade | ddea5bd | 2007-08-07 18:42:40 -0700 | [diff] [blame] | 344 | (*line)->gamma = FALSE; |
Evan Stade | 2b438a0 | 2007-08-07 18:42:29 -0700 | [diff] [blame] | 345 | |
Vincent Povirk | 173a1f6 | 2009-05-07 11:33:28 -0500 | [diff] [blame] | 346 | (*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 Povirk | ee74501 | 2009-08-03 09:02:49 -0500 | [diff] [blame] | 351 | 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 Povirk | b05cf90 | 2009-04-28 18:03:41 -0500 | [diff] [blame] | 362 | (*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 Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 379 | (*line)->pblendcolor = NULL; |
| 380 | (*line)->pblendpos = NULL; |
| 381 | (*line)->pblendcount = 0; |
| 382 | |
Vincent Povirk | f141778 | 2009-12-18 14:58:28 -0600 | [diff] [blame] | 383 | TRACE("<-- %p\n", *line); |
| 384 | |
Evan Stade | 2b438a0 | 2007-08-07 18:42:29 -0700 | [diff] [blame] | 385 | return Ok; |
| 386 | } |
| 387 | |
Nikolay Sivov | 0679e97 | 2008-04-21 00:45:52 +0400 | [diff] [blame] | 388 | GpStatus 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 Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 395 | TRACE("(%p, %p, %x, %x, %d, %p)\n", startpoint, endpoint, |
| 396 | startcolor, endcolor, wrap, line); |
| 397 | |
Nikolay Sivov | 0679e97 | 2008-04-21 00:45:52 +0400 | [diff] [blame] | 398 | 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 Sivov | 5873bac | 2008-04-25 23:17:46 +0400 | [diff] [blame] | 409 | GpStatus WINGDIPAPI GdipCreateLineBrushFromRect(GDIPCONST GpRectF* rect, |
Evan Stade | d806c67 | 2007-08-07 18:43:00 -0700 | [diff] [blame] | 410 | ARGB startcolor, ARGB endcolor, LinearGradientMode mode, GpWrapMode wrap, |
| 411 | GpLineGradient **line) |
| 412 | { |
| 413 | GpPointF start, end; |
Vincent Povirk | aaee4d7 | 2009-05-07 11:40:13 -0500 | [diff] [blame] | 414 | GpStatus stat; |
Evan Stade | d806c67 | 2007-08-07 18:43:00 -0700 | [diff] [blame] | 415 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 416 | TRACE("(%p, %x, %x, %d, %d, %p)\n", rect, startcolor, endcolor, mode, |
| 417 | wrap, line); |
| 418 | |
Evan Stade | d806c67 | 2007-08-07 18:43:00 -0700 | [diff] [blame] | 419 | if(!line || !rect) |
| 420 | return InvalidParameter; |
| 421 | |
Vincent Povirk | 717ac52 | 2009-05-06 16:36:06 -0500 | [diff] [blame] | 422 | 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 Stade | d806c67 | 2007-08-07 18:43:00 -0700 | [diff] [blame] | 451 | |
Vincent Povirk | aaee4d7 | 2009-05-07 11:40:13 -0500 | [diff] [blame] | 452 | stat = GdipCreateLineBrush(&start, &end, startcolor, endcolor, wrap, line); |
| 453 | |
| 454 | if (stat == Ok) |
| 455 | (*line)->rect = *rect; |
| 456 | |
| 457 | return stat; |
Evan Stade | d806c67 | 2007-08-07 18:43:00 -0700 | [diff] [blame] | 458 | } |
| 459 | |
Nikolay Sivov | 5873bac | 2008-04-25 23:17:46 +0400 | [diff] [blame] | 460 | GpStatus WINGDIPAPI GdipCreateLineBrushFromRectI(GDIPCONST GpRect* rect, |
| 461 | ARGB startcolor, ARGB endcolor, LinearGradientMode mode, GpWrapMode wrap, |
| 462 | GpLineGradient **line) |
| 463 | { |
| 464 | GpRectF rectF; |
| 465 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 466 | TRACE("(%p, %x, %x, %d, %d, %p)\n", rect, startcolor, endcolor, mode, |
| 467 | wrap, line); |
| 468 | |
Nikolay Sivov | 5873bac | 2008-04-25 23:17:46 +0400 | [diff] [blame] | 469 | 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 Gouget | 8577025 | 2008-09-14 02:12:25 +0200 | [diff] [blame] | 477 | /****************************************************************************** |
| 478 | * GdipCreateLineBrushFromRectWithAngle [GDIPLUS.@] |
Francois Gouget | 8577025 | 2008-09-14 02:12:25 +0200 | [diff] [blame] | 479 | */ |
Nikolay Sivov | 3e59f9e | 2008-07-09 01:45:07 +0400 | [diff] [blame] | 480 | GpStatus WINGDIPAPI GdipCreateLineBrushFromRectWithAngle(GDIPCONST GpRectF* rect, |
| 481 | ARGB startcolor, ARGB endcolor, REAL angle, BOOL isAngleScalable, GpWrapMode wrap, |
| 482 | GpLineGradient **line) |
| 483 | { |
Vincent Povirk | 71e4af5 | 2010-02-06 15:43:16 -0600 | [diff] [blame] | 484 | GpStatus stat; |
| 485 | LinearGradientMode mode; |
| 486 | REAL width, height, exofs, eyofs; |
| 487 | REAL sin_angle, cos_angle, sin_cos_angle; |
| 488 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 489 | TRACE("(%p, %x, %x, %.2f, %d, %d, %p)\n", rect, startcolor, endcolor, angle, isAngleScalable, |
| 490 | wrap, line); |
| 491 | |
Vincent Povirk | 71e4af5 | 2010-02-06 15:43:16 -0600 | [diff] [blame] | 492 | 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 Sivov | 3e59f9e | 2008-07-09 01:45:07 +0400 | [diff] [blame] | 547 | } |
| 548 | |
| 549 | GpStatus WINGDIPAPI GdipCreateLineBrushFromRectWithAngleI(GDIPCONST GpRect* rect, |
| 550 | ARGB startcolor, ARGB endcolor, REAL angle, BOOL isAngleScalable, GpWrapMode wrap, |
| 551 | GpLineGradient **line) |
| 552 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 553 | TRACE("(%p, %x, %x, %.2f, %d, %d, %p)\n", rect, startcolor, endcolor, angle, isAngleScalable, |
| 554 | wrap, line); |
| 555 | |
Nikolay Sivov | 3e59f9e | 2008-07-09 01:45:07 +0400 | [diff] [blame] | 556 | return GdipCreateLineBrushFromRectI(rect, startcolor, endcolor, LinearGradientModeForwardDiagonal, |
| 557 | wrap, line); |
| 558 | } |
| 559 | |
Evan Stade | b26d7ce | 2007-08-02 17:54:24 -0700 | [diff] [blame] | 560 | GpStatus WINGDIPAPI GdipCreatePathGradient(GDIPCONST GpPointF* points, |
| 561 | INT count, GpWrapMode wrap, GpPathGradient **grad) |
| 562 | { |
| 563 | COLORREF col = ARGB2COLORREF(0xffffffff); |
| 564 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 565 | TRACE("(%p, %d, %d, %p)\n", points, count, wrap, grad); |
| 566 | |
Evan Stade | b26d7ce | 2007-08-02 17:54:24 -0700 | [diff] [blame] | 567 | 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 Sivov | 01abb3d | 2008-07-21 23:30:39 +0400 | [diff] [blame] | 576 | (*grad)->blendfac = GdipAlloc(sizeof(REAL)); |
Vincent Povirk | 4c93f9f | 2010-06-19 16:31:14 -0500 | [diff] [blame] | 577 | (*grad)->blendpos = GdipAlloc(sizeof(REAL)); |
| 578 | if(!(*grad)->blendfac || !(*grad)->blendpos){ |
| 579 | GdipFree((*grad)->blendfac); |
| 580 | GdipFree((*grad)->blendpos); |
Nikolay Sivov | 01abb3d | 2008-07-21 23:30:39 +0400 | [diff] [blame] | 581 | GdipFree(*grad); |
| 582 | return OutOfMemory; |
| 583 | } |
| 584 | (*grad)->blendfac[0] = 1.0; |
Vincent Povirk | 4c93f9f | 2010-06-19 16:31:14 -0500 | [diff] [blame] | 585 | (*grad)->blendpos[0] = 1.0; |
Nikolay Sivov | 01abb3d | 2008-07-21 23:30:39 +0400 | [diff] [blame] | 586 | (*grad)->blendcount = 1; |
| 587 | |
Evan Stade | b26d7ce | 2007-08-02 17:54:24 -0700 | [diff] [blame] | 588 | (*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 Stade | 9ea7ef4 | 2007-08-02 17:52:49 -0700 | [diff] [blame] | 610 | (*grad)->gamma = FALSE; |
Evan Stade | 9a9c857 | 2007-08-02 17:52:59 -0700 | [diff] [blame] | 611 | (*grad)->center.X = 0.0; |
| 612 | (*grad)->center.Y = 0.0; |
Evan Stade | 496c319 | 2007-08-02 17:53:04 -0700 | [diff] [blame] | 613 | (*grad)->focus.X = 0.0; |
| 614 | (*grad)->focus.Y = 0.0; |
Evan Stade | b26d7ce | 2007-08-02 17:54:24 -0700 | [diff] [blame] | 615 | |
Vincent Povirk | f141778 | 2009-12-18 14:58:28 -0600 | [diff] [blame] | 616 | TRACE("<-- %p\n", *grad); |
| 617 | |
Evan Stade | b26d7ce | 2007-08-02 17:54:24 -0700 | [diff] [blame] | 618 | return Ok; |
| 619 | } |
| 620 | |
Nikolay Sivov | 836b418 | 2008-04-25 23:17:41 +0400 | [diff] [blame] | 621 | GpStatus WINGDIPAPI GdipCreatePathGradientI(GDIPCONST GpPoint* points, |
| 622 | INT count, GpWrapMode wrap, GpPathGradient **grad) |
| 623 | { |
| 624 | GpPointF *pointsF; |
| 625 | GpStatus ret; |
| 626 | INT i; |
| 627 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 628 | TRACE("(%p, %d, %d, %p)\n", points, count, wrap, grad); |
| 629 | |
Nikolay Sivov | 836b418 | 2008-04-25 23:17:41 +0400 | [diff] [blame] | 630 | 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 Gouget | 8577025 | 2008-09-14 02:12:25 +0200 | [diff] [blame] | 651 | /****************************************************************************** |
| 652 | * GdipCreatePathGradientFromPath [GDIPLUS.@] |
| 653 | * |
| 654 | * FIXME: path gradient brushes not truly supported (drawn as solid brushes) |
| 655 | */ |
Evan Stade | f18cdef | 2007-08-01 17:56:02 -0700 | [diff] [blame] | 656 | GpStatus WINGDIPAPI GdipCreatePathGradientFromPath(GDIPCONST GpPath* path, |
| 657 | GpPathGradient **grad) |
| 658 | { |
| 659 | COLORREF col = ARGB2COLORREF(0xffffffff); |
| 660 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 661 | TRACE("(%p, %p)\n", path, grad); |
| 662 | |
Evan Stade | f18cdef | 2007-08-01 17:56:02 -0700 | [diff] [blame] | 663 | if(!path || !grad) |
| 664 | return InvalidParameter; |
| 665 | |
| 666 | *grad = GdipAlloc(sizeof(GpPathGradient)); |
| 667 | if (!*grad) return OutOfMemory; |
| 668 | |
Nikolay Sivov | 01abb3d | 2008-07-21 23:30:39 +0400 | [diff] [blame] | 669 | (*grad)->blendfac = GdipAlloc(sizeof(REAL)); |
Vincent Povirk | 4c93f9f | 2010-06-19 16:31:14 -0500 | [diff] [blame] | 670 | (*grad)->blendpos = GdipAlloc(sizeof(REAL)); |
| 671 | if(!(*grad)->blendfac || !(*grad)->blendpos){ |
| 672 | GdipFree((*grad)->blendfac); |
| 673 | GdipFree((*grad)->blendpos); |
Nikolay Sivov | 01abb3d | 2008-07-21 23:30:39 +0400 | [diff] [blame] | 674 | GdipFree(*grad); |
| 675 | return OutOfMemory; |
| 676 | } |
| 677 | (*grad)->blendfac[0] = 1.0; |
Vincent Povirk | 4c93f9f | 2010-06-19 16:31:14 -0500 | [diff] [blame] | 678 | (*grad)->blendpos[0] = 1.0; |
Nikolay Sivov | 01abb3d | 2008-07-21 23:30:39 +0400 | [diff] [blame] | 679 | (*grad)->blendcount = 1; |
| 680 | |
Evan Stade | 490ca1c | 2007-08-02 17:51:49 -0700 | [diff] [blame] | 681 | (*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 Stade | f18cdef | 2007-08-01 17:56:02 -0700 | [diff] [blame] | 696 | (*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 Stade | 490ca1c | 2007-08-02 17:51:49 -0700 | [diff] [blame] | 701 | (*grad)->brush.bt = BrushTypePathGradient; |
Evan Stade | f18cdef | 2007-08-01 17:56:02 -0700 | [diff] [blame] | 702 | (*grad)->centercolor = 0xffffffff; |
Evan Stade | f0dbfe9 | 2007-08-01 17:56:10 -0700 | [diff] [blame] | 703 | (*grad)->wrap = WrapModeClamp; |
Evan Stade | 9ea7ef4 | 2007-08-02 17:52:49 -0700 | [diff] [blame] | 704 | (*grad)->gamma = FALSE; |
Evan Stade | 9a9c857 | 2007-08-02 17:52:59 -0700 | [diff] [blame] | 705 | /* 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 Stade | 496c319 | 2007-08-02 17:53:04 -0700 | [diff] [blame] | 708 | (*grad)->focus.X = 0.0; |
| 709 | (*grad)->focus.Y = 0.0; |
Evan Stade | f18cdef | 2007-08-01 17:56:02 -0700 | [diff] [blame] | 710 | |
Vincent Povirk | f141778 | 2009-12-18 14:58:28 -0600 | [diff] [blame] | 711 | TRACE("<-- %p\n", *grad); |
| 712 | |
Evan Stade | f18cdef | 2007-08-01 17:56:02 -0700 | [diff] [blame] | 713 | return Ok; |
| 714 | } |
| 715 | |
Francois Gouget | 8577025 | 2008-09-14 02:12:25 +0200 | [diff] [blame] | 716 | /****************************************************************************** |
| 717 | * GdipCreateSolidFill [GDIPLUS.@] |
| 718 | */ |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 719 | GpStatus WINGDIPAPI GdipCreateSolidFill(ARGB color, GpSolidFill **sf) |
| 720 | { |
| 721 | COLORREF col = ARGB2COLORREF(color); |
| 722 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 723 | TRACE("(%x, %p)\n", color, sf); |
| 724 | |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 725 | if(!sf) return InvalidParameter; |
| 726 | |
| 727 | *sf = GdipAlloc(sizeof(GpSolidFill)); |
| 728 | if (!*sf) return OutOfMemory; |
| 729 | |
Evan Stade | 7af2e97 | 2007-07-19 18:22:59 -0700 | [diff] [blame] | 730 | (*sf)->brush.lb.lbStyle = BS_SOLID; |
| 731 | (*sf)->brush.lb.lbColor = col; |
| 732 | (*sf)->brush.lb.lbHatch = 0; |
| 733 | |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 734 | (*sf)->brush.gdibrush = CreateSolidBrush(col); |
| 735 | (*sf)->brush.bt = BrushTypeSolidColor; |
Evan Stade | 8b2ce0f | 2007-07-23 20:24:24 -0700 | [diff] [blame] | 736 | (*sf)->color = color; |
Vincent Povirk | 60167df | 2009-05-20 11:24:18 -0500 | [diff] [blame] | 737 | (*sf)->bmp = ARGB2BMP(color); |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 738 | |
Vincent Povirk | f141778 | 2009-12-18 14:58:28 -0600 | [diff] [blame] | 739 | TRACE("<-- %p\n", *sf); |
| 740 | |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 741 | return Ok; |
| 742 | } |
| 743 | |
Francois Gouget | 8577025 | 2008-09-14 02:12:25 +0200 | [diff] [blame] | 744 | /****************************************************************************** |
Adam Petaccia | 7b3e6d0 | 2008-08-31 01:06:58 -0400 | [diff] [blame] | 745 | * 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 Petaccia | 406c5d3 | 2008-08-31 01:06:42 -0400 | [diff] [blame] | 756 | GpStatus WINGDIPAPI GdipCreateTexture(GpImage *image, GpWrapMode wrapmode, |
| 757 | GpTexture **texture) |
| 758 | { |
Adam Petaccia | 7b3e6d0 | 2008-08-31 01:06:58 -0400 | [diff] [blame] | 759 | UINT width, height; |
| 760 | GpImageAttributes attributes; |
| 761 | GpStatus stat; |
Adam Petaccia | 406c5d3 | 2008-08-31 01:06:42 -0400 | [diff] [blame] | 762 | |
Adam Petaccia | 7b3e6d0 | 2008-08-31 01:06:58 -0400 | [diff] [blame] | 763 | 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 Petaccia | 406c5d3 | 2008-08-31 01:06:42 -0400 | [diff] [blame] | 776 | } |
| 777 | |
Francois Gouget | 8577025 | 2008-09-14 02:12:25 +0200 | [diff] [blame] | 778 | /****************************************************************************** |
| 779 | * GdipCreateTexture2 [GDIPLUS.@] |
| 780 | */ |
Adam Petaccia | 29e1994 | 2008-08-31 01:06:49 -0400 | [diff] [blame] | 781 | GpStatus WINGDIPAPI GdipCreateTexture2(GpImage *image, GpWrapMode wrapmode, |
| 782 | REAL x, REAL y, REAL width, REAL height, GpTexture **texture) |
| 783 | { |
Adam Petaccia | b6afa7a | 2008-08-31 01:07:02 -0400 | [diff] [blame] | 784 | GpImageAttributes attributes; |
| 785 | |
| 786 | TRACE("%p %d %f %f %f %f %p\n", image, wrapmode, |
Adam Petaccia | 29e1994 | 2008-08-31 01:06:49 -0400 | [diff] [blame] | 787 | x, y, width, height, texture); |
| 788 | |
Adam Petaccia | b6afa7a | 2008-08-31 01:07:02 -0400 | [diff] [blame] | 789 | attributes.wrap = wrapmode; |
| 790 | return GdipCreateTextureIA(image, &attributes, x, y, width, height, |
| 791 | texture); |
Adam Petaccia | 29e1994 | 2008-08-31 01:06:49 -0400 | [diff] [blame] | 792 | } |
| 793 | |
Francois Gouget | 8577025 | 2008-09-14 02:12:25 +0200 | [diff] [blame] | 794 | /****************************************************************************** |
| 795 | * GdipCreateTextureIA [GDIPLUS.@] |
| 796 | * |
| 797 | * FIXME: imageattr ignored |
| 798 | */ |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 799 | GpStatus WINGDIPAPI GdipCreateTextureIA(GpImage *image, |
| 800 | GDIPCONST GpImageAttributes *imageattr, REAL x, REAL y, REAL width, |
| 801 | REAL height, GpTexture **texture) |
| 802 | { |
Vincent Povirk | aa76490 | 2010-04-17 15:38:44 -0500 | [diff] [blame] | 803 | HBITMAP hbm=NULL; |
Nikolay Sivov | 48b8072 | 2008-09-25 08:54:24 +0400 | [diff] [blame] | 804 | GpStatus status; |
Vincent Povirk | 53e326a | 2010-02-11 16:30:56 -0600 | [diff] [blame] | 805 | GpImage *new_image=NULL; |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 806 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 807 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %p)\n", image, imageattr, x, y, width, height, |
| 808 | texture); |
| 809 | |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 810 | if(!image || !texture || x < 0.0 || y < 0.0 || width < 0.0 || height < 0.0) |
| 811 | return InvalidParameter; |
| 812 | |
Marcus Meissner | 21b9049 | 2010-02-16 11:54:48 +0100 | [diff] [blame] | 813 | *texture = NULL; |
| 814 | |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 815 | if(image->type != ImageTypeBitmap){ |
| 816 | FIXME("not implemented for image type %d\n", image->type); |
| 817 | return NotImplemented; |
| 818 | } |
| 819 | |
Vincent Povirk | 53e326a | 2010-02-11 16:30:56 -0600 | [diff] [blame] | 820 | status = GdipCloneBitmapArea(x, y, width, height, PixelFormatDontCare, (GpBitmap*)image, (GpBitmap**)&new_image); |
| 821 | if (status != Ok) |
| 822 | return status; |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 823 | |
Vincent Povirk | aa76490 | 2010-04-17 15:38:44 -0500 | [diff] [blame] | 824 | status = GdipCreateHBITMAPFromBitmap((GpBitmap*)new_image, &hbm, 0); |
Vincent Povirk | 53e326a | 2010-02-11 16:30:56 -0600 | [diff] [blame] | 825 | if(!hbm) |
| 826 | { |
| 827 | status = GenericError; |
| 828 | goto exit; |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 829 | } |
| 830 | |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 831 | *texture = GdipAlloc(sizeof(GpTexture)); |
Lei Zhang | fc753bb | 2008-09-28 12:17:26 -0700 | [diff] [blame] | 832 | if (!*texture){ |
Vincent Povirk | 53e326a | 2010-02-11 16:30:56 -0600 | [diff] [blame] | 833 | status = OutOfMemory; |
| 834 | goto exit; |
Lei Zhang | fc753bb | 2008-09-28 12:17:26 -0700 | [diff] [blame] | 835 | } |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 836 | |
Nikolay Sivov | 48b8072 | 2008-09-25 08:54:24 +0400 | [diff] [blame] | 837 | if((status = GdipCreateMatrix(&(*texture)->transform)) != Ok){ |
Vincent Povirk | 53e326a | 2010-02-11 16:30:56 -0600 | [diff] [blame] | 838 | goto exit; |
Nikolay Sivov | 48b8072 | 2008-09-25 08:54:24 +0400 | [diff] [blame] | 839 | } |
| 840 | |
Vincent Povirk | 53e326a | 2010-02-11 16:30:56 -0600 | [diff] [blame] | 841 | (*texture)->brush.lb.lbStyle = BS_PATTERN; |
| 842 | (*texture)->brush.lb.lbColor = 0; |
| 843 | (*texture)->brush.lb.lbHatch = (ULONG_PTR)hbm; |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 844 | |
| 845 | (*texture)->brush.gdibrush = CreateBrushIndirect(&(*texture)->brush.lb); |
| 846 | (*texture)->brush.bt = BrushTypeTextureFill; |
Vincent Povirk | 69e9de1 | 2010-03-08 11:28:25 -0600 | [diff] [blame] | 847 | if (imageattr) |
| 848 | (*texture)->wrap = imageattr->wrap; |
| 849 | else |
| 850 | (*texture)->wrap = WrapModeTile; |
Vincent Povirk | 70c9e4f | 2010-02-11 16:43:45 -0600 | [diff] [blame] | 851 | (*texture)->image = new_image; |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 852 | |
Vincent Povirk | 53e326a | 2010-02-11 16:30:56 -0600 | [diff] [blame] | 853 | exit: |
Vincent Povirk | 53e326a | 2010-02-11 16:30:56 -0600 | [diff] [blame] | 854 | 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 Povirk | 70c9e4f | 2010-02-11 16:43:45 -0600 | [diff] [blame] | 866 | GdipDisposeImage(new_image); |
Vincent Povirk | 53e326a | 2010-02-11 16:30:56 -0600 | [diff] [blame] | 867 | TRACE("<-- error %u\n", status); |
| 868 | } |
Vincent Povirk | f141778 | 2009-12-18 14:58:28 -0600 | [diff] [blame] | 869 | |
Vincent Povirk | aa76490 | 2010-04-17 15:38:44 -0500 | [diff] [blame] | 870 | DeleteObject(hbm); |
| 871 | |
Vincent Povirk | 53e326a | 2010-02-11 16:30:56 -0600 | [diff] [blame] | 872 | return status; |
Evan Stade | b9411ba | 2007-08-09 18:25:14 -0700 | [diff] [blame] | 873 | } |
| 874 | |
Francois Gouget | 8577025 | 2008-09-14 02:12:25 +0200 | [diff] [blame] | 875 | /****************************************************************************** |
| 876 | * GdipCreateTextureIAI [GDIPLUS.@] |
| 877 | */ |
Nikolay Sivov | 1ee3b0f | 2008-07-03 03:04:40 +0400 | [diff] [blame] | 878 | GpStatus WINGDIPAPI GdipCreateTextureIAI(GpImage *image, GDIPCONST GpImageAttributes *imageattr, |
| 879 | INT x, INT y, INT width, INT height, GpTexture **texture) |
| 880 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 881 | TRACE("(%p, %p, %d, %d, %d, %d, %p)\n", image, imageattr, x, y, width, height, |
| 882 | texture); |
| 883 | |
Nikolay Sivov | 1ee3b0f | 2008-07-03 03:04:40 +0400 | [diff] [blame] | 884 | return GdipCreateTextureIA(image,imageattr,(REAL)x,(REAL)y,(REAL)width,(REAL)height,texture); |
| 885 | } |
| 886 | |
Adam Petaccia | cb88bbd | 2008-08-31 01:06:54 -0400 | [diff] [blame] | 887 | GpStatus WINGDIPAPI GdipCreateTexture2I(GpImage *image, GpWrapMode wrapmode, |
| 888 | INT x, INT y, INT width, INT height, GpTexture **texture) |
| 889 | { |
Adam Petaccia | f7fc4e1 | 2008-08-31 01:07:06 -0400 | [diff] [blame] | 890 | GpImageAttributes imageattr; |
Adam Petaccia | cb88bbd | 2008-08-31 01:06:54 -0400 | [diff] [blame] | 891 | |
Francois Gouget | 758c453 | 2008-09-05 13:14:56 +0200 | [diff] [blame] | 892 | TRACE("%p %d %d %d %d %d %p\n", image, wrapmode, x, y, width, height, |
Adam Petaccia | f7fc4e1 | 2008-08-31 01:07:06 -0400 | [diff] [blame] | 893 | texture); |
| 894 | |
| 895 | imageattr.wrap = wrapmode; |
| 896 | |
| 897 | return GdipCreateTextureIA(image, &imageattr, x, y, width, height, texture); |
Adam Petaccia | cb88bbd | 2008-08-31 01:06:54 -0400 | [diff] [blame] | 898 | } |
| 899 | |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 900 | GpStatus WINGDIPAPI GdipGetBrushType(GpBrush *brush, GpBrushType *type) |
| 901 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 902 | TRACE("(%p, %p)\n", brush, type); |
| 903 | |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 904 | if(!brush || !type) return InvalidParameter; |
| 905 | |
| 906 | *type = brush->bt; |
| 907 | |
| 908 | return Ok; |
| 909 | } |
| 910 | |
Chris Wulff | 10637b4 | 2009-01-10 18:52:31 -0500 | [diff] [blame] | 911 | GpStatus 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 | |
| 922 | GpStatus 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 | |
| 933 | GpStatus 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 Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 944 | GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush *brush) |
| 945 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 946 | TRACE("(%p)\n", brush); |
| 947 | |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 948 | if(!brush) return InvalidParameter; |
| 949 | |
Evan Stade | 7929ba8 | 2007-08-02 17:52:55 -0700 | [diff] [blame] | 950 | switch(brush->bt) |
| 951 | { |
| 952 | case BrushTypePathGradient: |
| 953 | GdipFree(((GpPathGradient*) brush)->pathdata.Points); |
| 954 | GdipFree(((GpPathGradient*) brush)->pathdata.Types); |
Nikolay Sivov | 01abb3d | 2008-07-21 23:30:39 +0400 | [diff] [blame] | 955 | GdipFree(((GpPathGradient*) brush)->blendfac); |
| 956 | GdipFree(((GpPathGradient*) brush)->blendpos); |
Evan Stade | 7929ba8 | 2007-08-02 17:52:55 -0700 | [diff] [blame] | 957 | break; |
| 958 | case BrushTypeSolidColor: |
Vincent Povirk | 60167df | 2009-05-20 11:24:18 -0500 | [diff] [blame] | 959 | if (((GpSolidFill*)brush)->bmp) |
| 960 | DeleteObject(((GpSolidFill*)brush)->bmp); |
Vincent Povirk | b05cf90 | 2009-04-28 18:03:41 -0500 | [diff] [blame] | 961 | break; |
Evan Stade | ec30491 | 2007-08-07 18:42:56 -0700 | [diff] [blame] | 962 | case BrushTypeLinearGradient: |
Vincent Povirk | b05cf90 | 2009-04-28 18:03:41 -0500 | [diff] [blame] | 963 | GdipFree(((GpLineGradient*)brush)->blendfac); |
| 964 | GdipFree(((GpLineGradient*)brush)->blendpos); |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 965 | GdipFree(((GpLineGradient*)brush)->pblendcolor); |
| 966 | GdipFree(((GpLineGradient*)brush)->pblendpos); |
Nikolay Sivov | 48b8072 | 2008-09-25 08:54:24 +0400 | [diff] [blame] | 967 | break; |
Evan Stade | 8254c37 | 2007-08-09 18:25:18 -0700 | [diff] [blame] | 968 | case BrushTypeTextureFill: |
Nikolay Sivov | 48b8072 | 2008-09-25 08:54:24 +0400 | [diff] [blame] | 969 | GdipDeleteMatrix(((GpTexture*)brush)->transform); |
Vincent Povirk | 70c9e4f | 2010-02-11 16:43:45 -0600 | [diff] [blame] | 970 | GdipDisposeImage(((GpTexture*)brush)->image); |
Nikolay Sivov | 48b8072 | 2008-09-25 08:54:24 +0400 | [diff] [blame] | 971 | break; |
Evan Stade | 7929ba8 | 2007-08-02 17:52:55 -0700 | [diff] [blame] | 972 | default: |
| 973 | break; |
| 974 | } |
| 975 | |
Evan Stade | cc0a676 | 2007-06-14 16:09:07 -0700 | [diff] [blame] | 976 | DeleteObject(brush->gdibrush); |
| 977 | GdipFree(brush); |
| 978 | |
| 979 | return Ok; |
| 980 | } |
Evan Stade | 82abeee | 2007-07-23 20:24:13 -0700 | [diff] [blame] | 981 | |
Evan Stade | ddea5bd | 2007-08-07 18:42:40 -0700 | [diff] [blame] | 982 | GpStatus WINGDIPAPI GdipGetLineGammaCorrection(GpLineGradient *line, |
| 983 | BOOL *usinggamma) |
| 984 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 985 | TRACE("(%p, %p)\n", line, usinggamma); |
| 986 | |
Nikolay Sivov | 69e17d6 | 2008-09-03 00:25:39 +0400 | [diff] [blame] | 987 | if(!line || !usinggamma) |
Evan Stade | ddea5bd | 2007-08-07 18:42:40 -0700 | [diff] [blame] | 988 | return InvalidParameter; |
| 989 | |
| 990 | *usinggamma = line->gamma; |
| 991 | |
| 992 | return Ok; |
| 993 | } |
| 994 | |
Nikolay Sivov | 9fbec61 | 2008-07-08 01:32:19 +0400 | [diff] [blame] | 995 | GpStatus WINGDIPAPI GdipGetLineWrapMode(GpLineGradient *brush, GpWrapMode *wrapmode) |
| 996 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 997 | TRACE("(%p, %p)\n", brush, wrapmode); |
| 998 | |
Nikolay Sivov | 9fbec61 | 2008-07-08 01:32:19 +0400 | [diff] [blame] | 999 | if(!brush || !wrapmode) |
| 1000 | return InvalidParameter; |
| 1001 | |
| 1002 | *wrapmode = brush->wrap; |
| 1003 | |
| 1004 | return Ok; |
| 1005 | } |
| 1006 | |
Nikolay Sivov | 48e914b | 2008-07-21 23:30:50 +0400 | [diff] [blame] | 1007 | GpStatus WINGDIPAPI GdipGetPathGradientBlend(GpPathGradient *brush, REAL *blend, |
| 1008 | REAL *positions, INT count) |
| 1009 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1010 | TRACE("(%p, %p, %p, %d)\n", brush, blend, positions, count); |
| 1011 | |
Nikolay Sivov | 48e914b | 2008-07-21 23:30:50 +0400 | [diff] [blame] | 1012 | 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 Sivov | 01abb3d | 2008-07-21 23:30:39 +0400 | [diff] [blame] | 1026 | GpStatus WINGDIPAPI GdipGetPathGradientBlendCount(GpPathGradient *brush, INT *count) |
| 1027 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1028 | TRACE("(%p, %p)\n", brush, count); |
| 1029 | |
Nikolay Sivov | 01abb3d | 2008-07-21 23:30:39 +0400 | [diff] [blame] | 1030 | if(!brush || !count) |
| 1031 | return InvalidParameter; |
| 1032 | |
| 1033 | *count = brush->blendcount; |
| 1034 | |
| 1035 | return Ok; |
| 1036 | } |
| 1037 | |
Evan Stade | 9a9c857 | 2007-08-02 17:52:59 -0700 | [diff] [blame] | 1038 | GpStatus WINGDIPAPI GdipGetPathGradientCenterPoint(GpPathGradient *grad, |
| 1039 | GpPointF *point) |
| 1040 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1041 | TRACE("(%p, %p)\n", grad, point); |
| 1042 | |
Evan Stade | 9a9c857 | 2007-08-02 17:52:59 -0700 | [diff] [blame] | 1043 | 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 Sivov | 9cce789 | 2008-04-29 00:10:25 +0400 | [diff] [blame] | 1052 | GpStatus WINGDIPAPI GdipGetPathGradientCenterPointI(GpPathGradient *grad, |
| 1053 | GpPoint *point) |
| 1054 | { |
| 1055 | GpStatus ret; |
| 1056 | GpPointF ptf; |
| 1057 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1058 | TRACE("(%p, %p)\n", grad, point); |
| 1059 | |
Nikolay Sivov | 9cce789 | 2008-04-29 00:10:25 +0400 | [diff] [blame] | 1060 | 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 Povirk | 0178093 | 2010-06-19 16:15:00 -0500 | [diff] [blame] | 1073 | GpStatus 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 Stade | 496c319 | 2007-08-02 17:53:04 -0700 | [diff] [blame] | 1086 | GpStatus WINGDIPAPI GdipGetPathGradientFocusScales(GpPathGradient *grad, |
| 1087 | REAL *x, REAL *y) |
| 1088 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1089 | TRACE("(%p, %p, %p)\n", grad, x, y); |
| 1090 | |
Evan Stade | 496c319 | 2007-08-02 17:53:04 -0700 | [diff] [blame] | 1091 | 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 Stade | 9ea7ef4 | 2007-08-02 17:52:49 -0700 | [diff] [blame] | 1100 | GpStatus WINGDIPAPI GdipGetPathGradientGammaCorrection(GpPathGradient *grad, |
| 1101 | BOOL *gamma) |
| 1102 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1103 | TRACE("(%p, %p)\n", grad, gamma); |
| 1104 | |
Evan Stade | 9ea7ef4 | 2007-08-02 17:52:49 -0700 | [diff] [blame] | 1105 | if(!grad || !gamma) |
| 1106 | return InvalidParameter; |
| 1107 | |
| 1108 | *gamma = grad->gamma; |
| 1109 | |
| 1110 | return Ok; |
| 1111 | } |
| 1112 | |
Evan Stade | 490ca1c | 2007-08-02 17:51:49 -0700 | [diff] [blame] | 1113 | GpStatus WINGDIPAPI GdipGetPathGradientPointCount(GpPathGradient *grad, |
| 1114 | INT *count) |
| 1115 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1116 | TRACE("(%p, %p)\n", grad, count); |
| 1117 | |
Evan Stade | 490ca1c | 2007-08-02 17:51:49 -0700 | [diff] [blame] | 1118 | if(!grad || !count) |
| 1119 | return InvalidParameter; |
| 1120 | |
| 1121 | *count = grad->pathdata.Count; |
| 1122 | |
| 1123 | return Ok; |
| 1124 | } |
| 1125 | |
Nikolay Sivov | 74dc990 | 2008-07-23 02:07:28 +0400 | [diff] [blame] | 1126 | GpStatus WINGDIPAPI GdipGetPathGradientRect(GpPathGradient *brush, GpRectF *rect) |
| 1127 | { |
| 1128 | GpRectF r; |
| 1129 | GpPath* path; |
| 1130 | GpStatus stat; |
| 1131 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1132 | TRACE("(%p, %p)\n", brush, rect); |
| 1133 | |
Nikolay Sivov | 74dc990 | 2008-07-23 02:07:28 +0400 | [diff] [blame] | 1134 | 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 | |
| 1154 | GpStatus WINGDIPAPI GdipGetPathGradientRectI(GpPathGradient *brush, GpRect *rect) |
| 1155 | { |
| 1156 | GpRectF rectf; |
| 1157 | GpStatus stat; |
| 1158 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1159 | TRACE("(%p, %p)\n", brush, rect); |
| 1160 | |
Nikolay Sivov | 74dc990 | 2008-07-23 02:07:28 +0400 | [diff] [blame] | 1161 | 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 Stade | 03af4ed | 2007-08-02 17:51:58 -0700 | [diff] [blame] | 1175 | GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorsWithCount(GpPathGradient |
| 1176 | *grad, ARGB *argb, INT *count) |
| 1177 | { |
| 1178 | static int calls; |
| 1179 | |
Vincent Povirk | d49510e | 2009-12-18 15:54:26 -0600 | [diff] [blame] | 1180 | TRACE("(%p,%p,%p)\n", grad, argb, count); |
| 1181 | |
Evan Stade | 03af4ed | 2007-08-02 17:51:58 -0700 | [diff] [blame] | 1182 | 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 Chevrier | 4027813 | 2010-03-27 17:55:27 -0400 | [diff] [blame] | 1191 | GpStatus 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 Sivov | 58901f1 | 2008-06-29 13:02:27 +0400 | [diff] [blame] | 1201 | GpStatus WINGDIPAPI GdipGetPathGradientWrapMode(GpPathGradient *brush, |
| 1202 | GpWrapMode *wrapmode) |
| 1203 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1204 | TRACE("(%p, %p)\n", brush, wrapmode); |
| 1205 | |
Nikolay Sivov | 58901f1 | 2008-06-29 13:02:27 +0400 | [diff] [blame] | 1206 | if(!brush || !wrapmode) |
| 1207 | return InvalidParameter; |
| 1208 | |
| 1209 | *wrapmode = brush->wrap; |
| 1210 | |
| 1211 | return Ok; |
| 1212 | } |
| 1213 | |
Evan Stade | 82abeee | 2007-07-23 20:24:13 -0700 | [diff] [blame] | 1214 | GpStatus WINGDIPAPI GdipGetSolidFillColor(GpSolidFill *sf, ARGB *argb) |
| 1215 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1216 | TRACE("(%p, %p)\n", sf, argb); |
| 1217 | |
Evan Stade | 82abeee | 2007-07-23 20:24:13 -0700 | [diff] [blame] | 1218 | if(!sf || !argb) |
| 1219 | return InvalidParameter; |
| 1220 | |
Evan Stade | 8b2ce0f | 2007-07-23 20:24:24 -0700 | [diff] [blame] | 1221 | *argb = sf->color; |
| 1222 | |
| 1223 | return Ok; |
Evan Stade | 82abeee | 2007-07-23 20:24:13 -0700 | [diff] [blame] | 1224 | } |
| 1225 | |
Nikolay Sivov | 48b8072 | 2008-09-25 08:54:24 +0400 | [diff] [blame] | 1226 | /****************************************************************************** |
Vincent Povirk | cf4ec6e | 2010-02-13 12:21:08 -0600 | [diff] [blame] | 1227 | * GdipGetTextureImage [GDIPLUS.@] |
| 1228 | */ |
| 1229 | GpStatus 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 Sivov | 48b8072 | 2008-09-25 08:54:24 +0400 | [diff] [blame] | 1240 | * GdipGetTextureTransform [GDIPLUS.@] |
| 1241 | */ |
| 1242 | GpStatus 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 Sivov | 31847cf | 2008-09-25 08:57:55 +0400 | [diff] [blame] | 1254 | /****************************************************************************** |
Nikolay Sivov | 37bbe9d | 2008-10-21 19:39:21 +0400 | [diff] [blame] | 1255 | * GdipGetTextureWrapMode [GDIPLUS.@] |
| 1256 | */ |
| 1257 | GpStatus 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 Sivov | a886b47 | 2008-12-03 00:49:19 +0300 | [diff] [blame] | 1270 | * GdipMultiplyTextureTransform [GDIPLUS.@] |
| 1271 | */ |
| 1272 | GpStatus 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 Sivov | 31847cf | 2008-09-25 08:57:55 +0400 | [diff] [blame] | 1284 | * GdipResetTextureTransform [GDIPLUS.@] |
| 1285 | */ |
| 1286 | GpStatus 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 Sivov | 958e73a | 2008-12-05 10:37:21 +0300 | [diff] [blame] | 1296 | /****************************************************************************** |
| 1297 | * GdipScaleTextureTransform [GDIPLUS.@] |
| 1298 | */ |
| 1299 | GpStatus 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 Stade | b56689d | 2007-08-14 19:01:00 -0700 | [diff] [blame] | 1310 | GpStatus WINGDIPAPI GdipSetLineBlend(GpLineGradient *brush, |
Vincent Povirk | 1f4940a | 2009-04-28 18:25:59 -0500 | [diff] [blame] | 1311 | GDIPCONST REAL *factors, GDIPCONST REAL* positions, INT count) |
Evan Stade | b56689d | 2007-08-14 19:01:00 -0700 | [diff] [blame] | 1312 | { |
Vincent Povirk | 1f4940a | 2009-04-28 18:25:59 -0500 | [diff] [blame] | 1313 | REAL *new_blendfac, *new_blendpos; |
Evan Stade | b56689d | 2007-08-14 19:01:00 -0700 | [diff] [blame] | 1314 | |
Vincent Povirk | 1f4940a | 2009-04-28 18:25:59 -0500 | [diff] [blame] | 1315 | 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 Stade | b56689d | 2007-08-14 19:01:00 -0700 | [diff] [blame] | 1319 | return InvalidParameter; |
| 1320 | |
Vincent Povirk | 1f4940a | 2009-04-28 18:25:59 -0500 | [diff] [blame] | 1321 | 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 Stade | b56689d | 2007-08-14 19:01:00 -0700 | [diff] [blame] | 1340 | |
| 1341 | return Ok; |
| 1342 | } |
| 1343 | |
Vincent Povirk | 1de7922 | 2009-04-28 17:28:22 -0500 | [diff] [blame] | 1344 | GpStatus WINGDIPAPI GdipGetLineBlend(GpLineGradient *brush, REAL *factors, |
| 1345 | REAL *positions, INT count) |
| 1346 | { |
Vincent Povirk | 1de7922 | 2009-04-28 17:28:22 -0500 | [diff] [blame] | 1347 | TRACE("(%p, %p, %p, %i)\n", brush, factors, positions, count); |
| 1348 | |
Vincent Povirk | 47a81f5 | 2009-04-28 18:18:26 -0500 | [diff] [blame] | 1349 | if (!brush || !factors || !positions || count <= 0) |
| 1350 | return InvalidParameter; |
Vincent Povirk | 1de7922 | 2009-04-28 17:28:22 -0500 | [diff] [blame] | 1351 | |
Vincent Povirk | 47a81f5 | 2009-04-28 18:18:26 -0500 | [diff] [blame] | 1352 | 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 Povirk | 1de7922 | 2009-04-28 17:28:22 -0500 | [diff] [blame] | 1359 | } |
| 1360 | |
Vincent Povirk | 3d37b0a | 2009-04-28 17:01:38 -0500 | [diff] [blame] | 1361 | GpStatus WINGDIPAPI GdipGetLineBlendCount(GpLineGradient *brush, INT *count) |
| 1362 | { |
Vincent Povirk | 3d37b0a | 2009-04-28 17:01:38 -0500 | [diff] [blame] | 1363 | TRACE("(%p, %p)\n", brush, count); |
| 1364 | |
Vincent Povirk | 1e88ee5 | 2009-04-28 18:08:54 -0500 | [diff] [blame] | 1365 | if (!brush || !count) |
| 1366 | return InvalidParameter; |
Vincent Povirk | 3d37b0a | 2009-04-28 17:01:38 -0500 | [diff] [blame] | 1367 | |
Vincent Povirk | 1e88ee5 | 2009-04-28 18:08:54 -0500 | [diff] [blame] | 1368 | *count = brush->blendcount; |
| 1369 | |
| 1370 | return Ok; |
Vincent Povirk | 3d37b0a | 2009-04-28 17:01:38 -0500 | [diff] [blame] | 1371 | } |
| 1372 | |
Evan Stade | ddea5bd | 2007-08-07 18:42:40 -0700 | [diff] [blame] | 1373 | GpStatus WINGDIPAPI GdipSetLineGammaCorrection(GpLineGradient *line, |
| 1374 | BOOL usegamma) |
| 1375 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1376 | TRACE("(%p, %d)\n", line, usegamma); |
| 1377 | |
Evan Stade | ddea5bd | 2007-08-07 18:42:40 -0700 | [diff] [blame] | 1378 | if(!line) |
| 1379 | return InvalidParameter; |
| 1380 | |
| 1381 | line->gamma = usegamma; |
| 1382 | |
| 1383 | return Ok; |
| 1384 | } |
| 1385 | |
Evan Stade | 48ae8ea | 2007-08-07 18:42:36 -0700 | [diff] [blame] | 1386 | GpStatus WINGDIPAPI GdipSetLineSigmaBlend(GpLineGradient *line, REAL focus, |
| 1387 | REAL scale) |
| 1388 | { |
Vincent Povirk | 1860b32 | 2009-05-04 17:53:48 -0500 | [diff] [blame] | 1389 | 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 Stade | 48ae8ea | 2007-08-07 18:42:36 -0700 | [diff] [blame] | 1399 | |
| 1400 | if(!line || focus < 0.0 || focus > 1.0 || scale < 0.0 || scale > 1.0) |
| 1401 | return InvalidParameter; |
| 1402 | |
Vincent Povirk | 1860b32 | 2009-05-04 17:53:48 -0500 | [diff] [blame] | 1403 | /* we want 2 standard deviations */ |
| 1404 | erf_range = 2.0 / sqrt(2); |
Evan Stade | 48ae8ea | 2007-08-07 18:42:36 -0700 | [diff] [blame] | 1405 | |
Vincent Povirk | 1860b32 | 2009-05-04 17:53:48 -0500 | [diff] [blame] | 1406 | /* 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 Stade | 48ae8ea | 2007-08-07 18:42:36 -0700 | [diff] [blame] | 1440 | } |
| 1441 | |
Evan Stade | 37657bc | 2007-08-07 18:42:32 -0700 | [diff] [blame] | 1442 | GpStatus WINGDIPAPI GdipSetLineWrapMode(GpLineGradient *line, |
| 1443 | GpWrapMode wrap) |
| 1444 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1445 | TRACE("(%p, %d)\n", line, wrap); |
| 1446 | |
Evan Stade | 37657bc | 2007-08-07 18:42:32 -0700 | [diff] [blame] | 1447 | if(!line || wrap == WrapModeClamp) |
| 1448 | return InvalidParameter; |
| 1449 | |
| 1450 | line->wrap = wrap; |
| 1451 | |
| 1452 | return Ok; |
| 1453 | } |
| 1454 | |
Nikolay Sivov | 067a08e | 2008-09-25 08:51:02 +0400 | [diff] [blame] | 1455 | GpStatus WINGDIPAPI GdipSetPathGradientBlend(GpPathGradient *brush, GDIPCONST REAL *blend, |
| 1456 | GDIPCONST REAL *pos, INT count) |
| 1457 | { |
| 1458 | static int calls; |
| 1459 | |
Vincent Povirk | d49510e | 2009-12-18 15:54:26 -0600 | [diff] [blame] | 1460 | TRACE("(%p,%p,%p,%i)\n", brush, blend, pos, count); |
| 1461 | |
Nikolay Sivov | 067a08e | 2008-09-25 08:51:02 +0400 | [diff] [blame] | 1462 | if(!(calls++)) |
| 1463 | FIXME("not implemented\n"); |
| 1464 | |
| 1465 | return NotImplemented; |
| 1466 | } |
| 1467 | |
Vincent Povirk | edce2c1 | 2009-06-09 12:11:38 -0500 | [diff] [blame] | 1468 | GpStatus 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 Stade | f2cf555 | 2007-08-01 17:56:05 -0700 | [diff] [blame] | 1475 | GpStatus WINGDIPAPI GdipSetPathGradientCenterColor(GpPathGradient *grad, |
| 1476 | ARGB argb) |
| 1477 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1478 | TRACE("(%p, %x)\n", grad, argb); |
| 1479 | |
Evan Stade | f2cf555 | 2007-08-01 17:56:05 -0700 | [diff] [blame] | 1480 | 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 Stade | 9a9c857 | 2007-08-02 17:52:59 -0700 | [diff] [blame] | 1492 | GpStatus WINGDIPAPI GdipSetPathGradientCenterPoint(GpPathGradient *grad, |
| 1493 | GpPointF *point) |
| 1494 | { |
Vincent Povirk | 7ded3d8 | 2009-12-18 15:45:02 -0600 | [diff] [blame] | 1495 | TRACE("(%p, %s)\n", grad, debugstr_pointf(point)); |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1496 | |
Evan Stade | 9a9c857 | 2007-08-02 17:52:59 -0700 | [diff] [blame] | 1497 | 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 Sivov | 17621fb | 2008-04-30 01:28:45 +0400 | [diff] [blame] | 1506 | GpStatus WINGDIPAPI GdipSetPathGradientCenterPointI(GpPathGradient *grad, |
| 1507 | GpPoint *point) |
| 1508 | { |
| 1509 | GpPointF ptf; |
| 1510 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1511 | TRACE("(%p, %p)\n", grad, point); |
| 1512 | |
Nikolay Sivov | 17621fb | 2008-04-30 01:28:45 +0400 | [diff] [blame] | 1513 | 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 Stade | 496c319 | 2007-08-02 17:53:04 -0700 | [diff] [blame] | 1522 | GpStatus WINGDIPAPI GdipSetPathGradientFocusScales(GpPathGradient *grad, |
| 1523 | REAL x, REAL y) |
| 1524 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1525 | TRACE("(%p, %.2f, %.2f)\n", grad, x, y); |
| 1526 | |
Evan Stade | 496c319 | 2007-08-02 17:53:04 -0700 | [diff] [blame] | 1527 | if(!grad) |
| 1528 | return InvalidParameter; |
| 1529 | |
| 1530 | grad->focus.X = x; |
| 1531 | grad->focus.Y = y; |
| 1532 | |
| 1533 | return Ok; |
| 1534 | } |
| 1535 | |
Evan Stade | 9ea7ef4 | 2007-08-02 17:52:49 -0700 | [diff] [blame] | 1536 | GpStatus WINGDIPAPI GdipSetPathGradientGammaCorrection(GpPathGradient *grad, |
| 1537 | BOOL gamma) |
| 1538 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1539 | TRACE("(%p, %d)\n", grad, gamma); |
| 1540 | |
Evan Stade | 9ea7ef4 | 2007-08-02 17:52:49 -0700 | [diff] [blame] | 1541 | if(!grad) |
| 1542 | return InvalidParameter; |
| 1543 | |
| 1544 | grad->gamma = gamma; |
| 1545 | |
| 1546 | return Ok; |
| 1547 | } |
| 1548 | |
Evan Stade | 15dce3a | 2007-08-02 17:52:43 -0700 | [diff] [blame] | 1549 | GpStatus WINGDIPAPI GdipSetPathGradientSigmaBlend(GpPathGradient *grad, |
| 1550 | REAL focus, REAL scale) |
| 1551 | { |
| 1552 | static int calls; |
| 1553 | |
Vincent Povirk | d49510e | 2009-12-18 15:54:26 -0600 | [diff] [blame] | 1554 | TRACE("(%p,%0.2f,%0.2f)\n", grad, focus, scale); |
| 1555 | |
Evan Stade | 15dce3a | 2007-08-02 17:52:43 -0700 | [diff] [blame] | 1556 | 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 Stade | 03af4ed | 2007-08-02 17:51:58 -0700 | [diff] [blame] | 1565 | GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient |
Justin Chevrier | 88b4263 | 2010-03-27 17:55:26 -0400 | [diff] [blame] | 1566 | *grad, GDIPCONST ARGB *argb, INT *count) |
Evan Stade | 03af4ed | 2007-08-02 17:51:58 -0700 | [diff] [blame] | 1567 | { |
| 1568 | static int calls; |
| 1569 | |
Vincent Povirk | d49510e | 2009-12-18 15:54:26 -0600 | [diff] [blame] | 1570 | TRACE("(%p,%p,%p)\n", grad, argb, count); |
| 1571 | |
Evan Stade | 03af4ed | 2007-08-02 17:51:58 -0700 | [diff] [blame] | 1572 | 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 Stade | f0dbfe9 | 2007-08-01 17:56:10 -0700 | [diff] [blame] | 1582 | GpStatus WINGDIPAPI GdipSetPathGradientWrapMode(GpPathGradient *grad, |
| 1583 | GpWrapMode wrap) |
| 1584 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1585 | TRACE("(%p, %d)\n", grad, wrap); |
| 1586 | |
Evan Stade | f0dbfe9 | 2007-08-01 17:56:10 -0700 | [diff] [blame] | 1587 | if(!grad) |
| 1588 | return InvalidParameter; |
| 1589 | |
| 1590 | grad->wrap = wrap; |
| 1591 | |
| 1592 | return Ok; |
| 1593 | } |
| 1594 | |
Evan Stade | 82abeee | 2007-07-23 20:24:13 -0700 | [diff] [blame] | 1595 | GpStatus WINGDIPAPI GdipSetSolidFillColor(GpSolidFill *sf, ARGB argb) |
| 1596 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1597 | TRACE("(%p, %x)\n", sf, argb); |
| 1598 | |
Evan Stade | 82abeee | 2007-07-23 20:24:13 -0700 | [diff] [blame] | 1599 | if(!sf) |
| 1600 | return InvalidParameter; |
| 1601 | |
Evan Stade | 8b2ce0f | 2007-07-23 20:24:24 -0700 | [diff] [blame] | 1602 | 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 Stade | 82abeee | 2007-07-23 20:24:13 -0700 | [diff] [blame] | 1609 | } |
Evan Stade | 96a69f0 | 2007-08-09 18:25:22 -0700 | [diff] [blame] | 1610 | |
Nikolay Sivov | edb764f | 2008-09-25 08:56:35 +0400 | [diff] [blame] | 1611 | /****************************************************************************** |
| 1612 | * GdipSetTextureTransform [GDIPLUS.@] |
| 1613 | */ |
Evan Stade | 96a69f0 | 2007-08-09 18:25:22 -0700 | [diff] [blame] | 1614 | GpStatus WINGDIPAPI GdipSetTextureTransform(GpTexture *texture, |
| 1615 | GDIPCONST GpMatrix *matrix) |
| 1616 | { |
Nikolay Sivov | edb764f | 2008-09-25 08:56:35 +0400 | [diff] [blame] | 1617 | TRACE("(%p, %p)\n", texture, matrix); |
Evan Stade | 96a69f0 | 2007-08-09 18:25:22 -0700 | [diff] [blame] | 1618 | |
| 1619 | if(!texture || !matrix) |
| 1620 | return InvalidParameter; |
| 1621 | |
Nikolay Sivov | edb764f | 2008-09-25 08:56:35 +0400 | [diff] [blame] | 1622 | memcpy(texture->transform, matrix, sizeof(GpMatrix)); |
Evan Stade | 96a69f0 | 2007-08-09 18:25:22 -0700 | [diff] [blame] | 1623 | |
| 1624 | return Ok; |
| 1625 | } |
Lei Zhang | 89b0a97 | 2008-04-10 12:40:17 -0700 | [diff] [blame] | 1626 | |
Nikolay Sivov | 37bbe9d | 2008-10-21 19:39:21 +0400 | [diff] [blame] | 1627 | /****************************************************************************** |
| 1628 | * GdipSetTextureWrapMode [GDIPLUS.@] |
| 1629 | * |
| 1630 | * WrapMode not used, only stored |
| 1631 | */ |
| 1632 | GpStatus 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 Zhang | 89b0a97 | 2008-04-10 12:40:17 -0700 | [diff] [blame] | 1644 | GpStatus WINGDIPAPI GdipSetLineColors(GpLineGradient *brush, ARGB color1, |
| 1645 | ARGB color2) |
| 1646 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1647 | TRACE("(%p, %x, %x)\n", brush, color1, color2); |
| 1648 | |
Nikolay Sivov | 59ef3c9 | 2008-04-24 22:43:41 +0400 | [diff] [blame] | 1649 | if(!brush) |
| 1650 | return InvalidParameter; |
Lei Zhang | 89b0a97 | 2008-04-10 12:40:17 -0700 | [diff] [blame] | 1651 | |
Nikolay Sivov | 59ef3c9 | 2008-04-24 22:43:41 +0400 | [diff] [blame] | 1652 | brush->startcolor = color1; |
| 1653 | brush->endcolor = color2; |
Lei Zhang | 89b0a97 | 2008-04-10 12:40:17 -0700 | [diff] [blame] | 1654 | |
Nikolay Sivov | 59ef3c9 | 2008-04-24 22:43:41 +0400 | [diff] [blame] | 1655 | return Ok; |
Lei Zhang | 89b0a97 | 2008-04-10 12:40:17 -0700 | [diff] [blame] | 1656 | } |
Lei Zhang | 0399cda | 2008-04-10 12:40:18 -0700 | [diff] [blame] | 1657 | |
Nikolay Sivov | b31f225 | 2008-04-24 22:43:36 +0400 | [diff] [blame] | 1658 | GpStatus WINGDIPAPI GdipGetLineColors(GpLineGradient *brush, ARGB *colors) |
| 1659 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1660 | TRACE("(%p, %p)\n", brush, colors); |
| 1661 | |
Nikolay Sivov | b31f225 | 2008-04-24 22:43:36 +0400 | [diff] [blame] | 1662 | if(!brush || !colors) |
| 1663 | return InvalidParameter; |
| 1664 | |
| 1665 | colors[0] = brush->startcolor; |
| 1666 | colors[1] = brush->endcolor; |
| 1667 | |
| 1668 | return Ok; |
| 1669 | } |
| 1670 | |
Nikolay Sivov | eabb8d1 | 2008-12-03 00:33:16 +0300 | [diff] [blame] | 1671 | /****************************************************************************** |
| 1672 | * GdipRotateTextureTransform [GDIPLUS.@] |
| 1673 | */ |
| 1674 | GpStatus 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 Zhang | 0399cda | 2008-04-10 12:40:18 -0700 | [diff] [blame] | 1685 | GpStatus WINGDIPAPI GdipSetLineLinearBlend(GpLineGradient *brush, REAL focus, |
| 1686 | REAL scale) |
| 1687 | { |
Vincent Povirk | 2cdc48a | 2009-07-11 11:49:44 -0500 | [diff] [blame] | 1688 | REAL factors[3]; |
| 1689 | REAL positions[3]; |
| 1690 | int num_points = 0; |
Lei Zhang | 0399cda | 2008-04-10 12:40:18 -0700 | [diff] [blame] | 1691 | |
Vincent Povirk | 2cdc48a | 2009-07-11 11:49:44 -0500 | [diff] [blame] | 1692 | TRACE("(%p,%.2f,%.2f)\n", brush, focus, scale); |
Lei Zhang | 0399cda | 2008-04-10 12:40:18 -0700 | [diff] [blame] | 1693 | |
Vincent Povirk | 2cdc48a | 2009-07-11 11:49:44 -0500 | [diff] [blame] | 1694 | 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 Zhang | 0399cda | 2008-04-10 12:40:18 -0700 | [diff] [blame] | 1715 | } |
Lei Zhang | 942f349 | 2008-04-10 12:40:19 -0700 | [diff] [blame] | 1716 | |
| 1717 | GpStatus WINGDIPAPI GdipSetLinePresetBlend(GpLineGradient *brush, |
| 1718 | GDIPCONST ARGB *blend, GDIPCONST REAL* positions, INT count) |
| 1719 | { |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 1720 | ARGB *new_color; |
| 1721 | REAL *new_pos; |
| 1722 | TRACE("(%p,%p,%p,%i)\n", brush, blend, positions, count); |
Lei Zhang | 942f349 | 2008-04-10 12:40:19 -0700 | [diff] [blame] | 1723 | |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 1724 | if (!brush || !blend || !positions || count < 2 || |
| 1725 | positions[0] != 0.0f || positions[count-1] != 1.0f) |
| 1726 | { |
| 1727 | return InvalidParameter; |
| 1728 | } |
Lei Zhang | 942f349 | 2008-04-10 12:40:19 -0700 | [diff] [blame] | 1729 | |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 1730 | 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 Zhang | 942f349 | 2008-04-10 12:40:19 -0700 | [diff] [blame] | 1750 | } |
Lei Zhang | 82d0144 | 2008-04-10 12:40:20 -0700 | [diff] [blame] | 1751 | |
Vincent Povirk | 52e9192 | 2009-09-14 15:42:21 -0500 | [diff] [blame] | 1752 | GpStatus WINGDIPAPI GdipGetLinePresetBlend(GpLineGradient *brush, |
| 1753 | ARGB *blend, REAL* positions, INT count) |
| 1754 | { |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 1755 | if (!brush || !blend || !positions || count < 2) |
| 1756 | return InvalidParameter; |
Vincent Povirk | 52e9192 | 2009-09-14 15:42:21 -0500 | [diff] [blame] | 1757 | |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 1758 | if (brush->pblendcount == 0) |
| 1759 | return GenericError; |
Vincent Povirk | 52e9192 | 2009-09-14 15:42:21 -0500 | [diff] [blame] | 1760 | |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 1761 | 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 Povirk | 52e9192 | 2009-09-14 15:42:21 -0500 | [diff] [blame] | 1768 | } |
| 1769 | |
| 1770 | GpStatus WINGDIPAPI GdipGetLinePresetBlendCount(GpLineGradient *brush, |
| 1771 | INT *count) |
| 1772 | { |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 1773 | if (!brush || !count) |
| 1774 | return InvalidParameter; |
Vincent Povirk | 52e9192 | 2009-09-14 15:42:21 -0500 | [diff] [blame] | 1775 | |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 1776 | *count = brush->pblendcount; |
Vincent Povirk | 52e9192 | 2009-09-14 15:42:21 -0500 | [diff] [blame] | 1777 | |
Vincent Povirk | 8bdabe3 | 2009-09-14 16:21:50 -0500 | [diff] [blame] | 1778 | return Ok; |
Vincent Povirk | 52e9192 | 2009-09-14 15:42:21 -0500 | [diff] [blame] | 1779 | } |
| 1780 | |
Vincent Povirk | cded6c8 | 2009-09-04 13:01:29 -0500 | [diff] [blame] | 1781 | GpStatus WINGDIPAPI GdipResetLineTransform(GpLineGradient *brush) |
| 1782 | { |
| 1783 | static int calls; |
| 1784 | |
Vincent Povirk | d49510e | 2009-12-18 15:54:26 -0600 | [diff] [blame] | 1785 | TRACE("(%p)\n", brush); |
| 1786 | |
Vincent Povirk | cded6c8 | 2009-09-04 13:01:29 -0500 | [diff] [blame] | 1787 | if(!(calls++)) |
| 1788 | FIXME("not implemented\n"); |
| 1789 | |
| 1790 | return NotImplemented; |
| 1791 | } |
| 1792 | |
Lei Zhang | 82d0144 | 2008-04-10 12:40:20 -0700 | [diff] [blame] | 1793 | GpStatus WINGDIPAPI GdipSetLineTransform(GpLineGradient *brush, |
| 1794 | GDIPCONST GpMatrix *matrix) |
| 1795 | { |
| 1796 | static int calls; |
| 1797 | |
Vincent Povirk | d49510e | 2009-12-18 15:54:26 -0600 | [diff] [blame] | 1798 | TRACE("(%p,%p)\n", brush, matrix); |
| 1799 | |
Lei Zhang | 82d0144 | 2008-04-10 12:40:20 -0700 | [diff] [blame] | 1800 | if(!(calls++)) |
| 1801 | FIXME("not implemented\n"); |
| 1802 | |
| 1803 | return NotImplemented; |
| 1804 | } |
Nikolay Sivov | 3d274bc | 2008-04-24 22:43:26 +0400 | [diff] [blame] | 1805 | |
Vincent Povirk | 2e4eb71 | 2010-06-19 16:09:00 -0500 | [diff] [blame] | 1806 | GpStatus 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 Povirk | 969da83 | 2009-09-04 13:12:08 -0500 | [diff] [blame] | 1818 | GpStatus WINGDIPAPI GdipScaleLineTransform(GpLineGradient *brush, REAL sx, REAL sy, |
| 1819 | GpMatrixOrder order) |
| 1820 | { |
| 1821 | static int calls; |
| 1822 | |
Vincent Povirk | d49510e | 2009-12-18 15:54:26 -0600 | [diff] [blame] | 1823 | TRACE("(%p,%0.2f,%0.2f,%u)\n", brush, sx, sy, order); |
| 1824 | |
Vincent Povirk | 969da83 | 2009-09-04 13:12:08 -0500 | [diff] [blame] | 1825 | if(!(calls++)) |
| 1826 | FIXME("not implemented\n"); |
| 1827 | |
| 1828 | return NotImplemented; |
| 1829 | } |
| 1830 | |
Vincent Povirk | 86f4e00 | 2010-06-19 16:11:33 -0500 | [diff] [blame] | 1831 | GpStatus 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 Petaccia | a90bced | 2008-08-31 01:06:37 -0400 | [diff] [blame] | 1844 | GpStatus 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 Sivov | 2d1a9eb | 2008-12-03 00:22:52 +0300 | [diff] [blame] | 1852 | /****************************************************************************** |
| 1853 | * GdipTranslateTextureTransform [GDIPLUS.@] |
| 1854 | */ |
| 1855 | GpStatus 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 Sivov | 3d274bc | 2008-04-24 22:43:26 +0400 | [diff] [blame] | 1866 | GpStatus WINGDIPAPI GdipGetLineRect(GpLineGradient *brush, GpRectF *rect) |
| 1867 | { |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1868 | TRACE("(%p, %p)\n", brush, rect); |
| 1869 | |
Nikolay Sivov | 3d274bc | 2008-04-24 22:43:26 +0400 | [diff] [blame] | 1870 | if(!brush || !rect) |
| 1871 | return InvalidParameter; |
| 1872 | |
Vincent Povirk | 173a1f6 | 2009-05-07 11:33:28 -0500 | [diff] [blame] | 1873 | *rect = brush->rect; |
Nikolay Sivov | 3d274bc | 2008-04-24 22:43:26 +0400 | [diff] [blame] | 1874 | |
| 1875 | return Ok; |
| 1876 | } |
| 1877 | |
| 1878 | GpStatus WINGDIPAPI GdipGetLineRectI(GpLineGradient *brush, GpRect *rect) |
| 1879 | { |
| 1880 | GpRectF rectF; |
| 1881 | GpStatus ret; |
| 1882 | |
Nikolay Sivov | 26ccb33 | 2008-09-03 00:13:40 +0400 | [diff] [blame] | 1883 | TRACE("(%p, %p)\n", brush, rect); |
| 1884 | |
Nikolay Sivov | 250a9d7 | 2008-06-18 11:32:37 +0400 | [diff] [blame] | 1885 | if(!rect) |
| 1886 | return InvalidParameter; |
| 1887 | |
Nikolay Sivov | 3d274bc | 2008-04-24 22:43:26 +0400 | [diff] [blame] | 1888 | 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 Sivov | be7d212 | 2008-12-27 21:39:57 +0300 | [diff] [blame] | 1899 | |
| 1900 | GpStatus WINGDIPAPI GdipRotateLineTransform(GpLineGradient* brush, |
| 1901 | REAL angle, GpMatrixOrder order) |
| 1902 | { |
| 1903 | static int calls; |
| 1904 | |
Vincent Povirk | d49510e | 2009-12-18 15:54:26 -0600 | [diff] [blame] | 1905 | TRACE("(%p,%0.2f,%u)\n", brush, angle, order); |
| 1906 | |
Nikolay Sivov | be7d212 | 2008-12-27 21:39:57 +0300 | [diff] [blame] | 1907 | if(!brush) |
| 1908 | return InvalidParameter; |
| 1909 | |
| 1910 | if(!(calls++)) |
| 1911 | FIXME("(%p, %.2f, %d) stub\n", brush, angle, order); |
| 1912 | |
| 1913 | return NotImplemented; |
| 1914 | } |