Evan Stade | d50be49 | 2007-06-11 11:54:03 -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 | |
| 19 | #include <stdarg.h> |
| 20 | #include <math.h> |
Evan Stade | 44e9839 | 2007-08-15 16:22:09 -0700 | [diff] [blame] | 21 | #include <limits.h> |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 22 | |
| 23 | #include "windef.h" |
| 24 | #include "winbase.h" |
| 25 | #include "winuser.h" |
| 26 | #include "wingdi.h" |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 27 | #include "wine/unicode.h" |
Evan Stade | 50799cf | 2007-07-30 19:10:03 -0700 | [diff] [blame] | 28 | |
| 29 | #define COBJMACROS |
| 30 | #include "objbase.h" |
| 31 | #include "ocidl.h" |
| 32 | #include "olectl.h" |
| 33 | #include "ole2.h" |
| 34 | |
Evan Stade | 3ea77f5 | 2007-08-07 18:42:00 -0700 | [diff] [blame] | 35 | #include "winreg.h" |
| 36 | #include "shlwapi.h" |
| 37 | |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 38 | #include "gdiplus.h" |
| 39 | #include "gdiplus_private.h" |
| 40 | #include "wine/debug.h" |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 41 | #include "wine/list.h" |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 42 | |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 43 | WINE_DEFAULT_DEBUG_CHANNEL(gdiplus); |
| 44 | |
| 45 | /* looks-right constants */ |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 46 | #define ANCHOR_WIDTH (2.0) |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 47 | #define MAX_ITERS (50) |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 48 | |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 49 | /* Converts angle (in degrees) to x/y coordinates */ |
| 50 | static void deg2xy(REAL angle, REAL x_0, REAL y_0, REAL *x, REAL *y) |
| 51 | { |
| 52 | REAL radAngle, hypotenuse; |
| 53 | |
| 54 | radAngle = deg2rad(angle); |
| 55 | hypotenuse = 50.0; /* arbitrary */ |
| 56 | |
| 57 | *x = x_0 + cos(radAngle) * hypotenuse; |
| 58 | *y = y_0 + sin(radAngle) * hypotenuse; |
| 59 | } |
| 60 | |
Evan Stade | 85b5df4 | 2007-07-19 18:22:51 -0700 | [diff] [blame] | 61 | /* Converts from gdiplus path point type to gdi path point type. */ |
| 62 | static BYTE convert_path_point_type(BYTE type) |
| 63 | { |
| 64 | BYTE ret; |
| 65 | |
| 66 | switch(type & PathPointTypePathTypeMask){ |
| 67 | case PathPointTypeBezier: |
| 68 | ret = PT_BEZIERTO; |
| 69 | break; |
| 70 | case PathPointTypeLine: |
| 71 | ret = PT_LINETO; |
| 72 | break; |
| 73 | case PathPointTypeStart: |
| 74 | ret = PT_MOVETO; |
| 75 | break; |
| 76 | default: |
| 77 | ERR("Bad point type\n"); |
| 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | if(type & PathPointTypeCloseSubpath) |
| 82 | ret |= PT_CLOSEFIGURE; |
| 83 | |
| 84 | return ret; |
| 85 | } |
| 86 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 87 | static INT prepare_dc(GpGraphics *graphics, GpPen *pen) |
| 88 | { |
| 89 | HPEN gdipen; |
| 90 | REAL width; |
Evan Stade | 1f61f48 | 2007-07-27 16:07:39 -0700 | [diff] [blame] | 91 | INT save_state = SaveDC(graphics->hdc), i, numdashes; |
Evan Stade | b7053b7 | 2007-07-24 17:18:58 -0700 | [diff] [blame] | 92 | GpPointF pt[2]; |
Evan Stade | 1f61f48 | 2007-07-27 16:07:39 -0700 | [diff] [blame] | 93 | DWORD dash_array[MAX_DASHLEN]; |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 94 | |
| 95 | EndPath(graphics->hdc); |
| 96 | |
Evan Stade | afa4d32 | 2007-08-13 18:34:31 -0700 | [diff] [blame] | 97 | if(pen->unit == UnitPixel){ |
| 98 | width = pen->width; |
| 99 | } |
| 100 | else{ |
| 101 | /* Get an estimate for the amount the pen width is affected by the world |
| 102 | * transform. (This is similar to what some of the wine drivers do.) */ |
| 103 | pt[0].X = 0.0; |
| 104 | pt[0].Y = 0.0; |
| 105 | pt[1].X = 1.0; |
| 106 | pt[1].Y = 1.0; |
| 107 | GdipTransformMatrixPoints(graphics->worldtrans, pt, 2); |
| 108 | width = sqrt((pt[1].X - pt[0].X) * (pt[1].X - pt[0].X) + |
| 109 | (pt[1].Y - pt[0].Y) * (pt[1].Y - pt[0].Y)) / sqrt(2.0); |
Evan Stade | b7053b7 | 2007-07-24 17:18:58 -0700 | [diff] [blame] | 110 | |
Evan Stade | afa4d32 | 2007-08-13 18:34:31 -0700 | [diff] [blame] | 111 | width *= pen->width * convert_unit(graphics->hdc, |
| 112 | pen->unit == UnitWorld ? graphics->unit : pen->unit); |
| 113 | } |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 114 | |
Evan Stade | 1f61f48 | 2007-07-27 16:07:39 -0700 | [diff] [blame] | 115 | if(pen->dash == DashStyleCustom){ |
| 116 | numdashes = min(pen->numdashes, MAX_DASHLEN); |
| 117 | |
| 118 | TRACE("dashes are: "); |
| 119 | for(i = 0; i < numdashes; i++){ |
| 120 | dash_array[i] = roundr(width * pen->dashes[i]); |
| 121 | TRACE("%d, ", dash_array[i]); |
| 122 | } |
| 123 | TRACE("\n and the pen style is %x\n", pen->style); |
| 124 | |
| 125 | gdipen = ExtCreatePen(pen->style, roundr(width), &pen->brush->lb, |
| 126 | numdashes, dash_array); |
| 127 | } |
| 128 | else |
| 129 | gdipen = ExtCreatePen(pen->style, roundr(width), &pen->brush->lb, 0, NULL); |
| 130 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 131 | SelectObject(graphics->hdc, gdipen); |
| 132 | |
| 133 | return save_state; |
| 134 | } |
| 135 | |
| 136 | static void restore_dc(GpGraphics *graphics, INT state) |
| 137 | { |
| 138 | DeleteObject(SelectObject(graphics->hdc, GetStockObject(NULL_PEN))); |
| 139 | RestoreDC(graphics->hdc, state); |
| 140 | } |
| 141 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 142 | /* This helper applies all the changes that the points listed in ptf need in |
| 143 | * order to be drawn on the device context. In the end, this should include at |
| 144 | * least: |
| 145 | * -scaling by page unit |
| 146 | * -applying world transformation |
| 147 | * -converting from float to int |
| 148 | * Native gdiplus uses gdi32 to do all this (via SetMapMode, SetViewportExtEx, |
| 149 | * SetWindowExtEx, SetWorldTransform, etc.) but we cannot because we are using |
| 150 | * gdi to draw, and these functions would irreparably mess with line widths. |
| 151 | */ |
| 152 | static void transform_and_round_points(GpGraphics *graphics, POINT *pti, |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 153 | GpPointF *ptf, INT count) |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 154 | { |
| 155 | REAL unitscale; |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 156 | GpMatrix *matrix; |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 157 | int i; |
| 158 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 159 | unitscale = convert_unit(graphics->hdc, graphics->unit); |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 160 | |
Evan Stade | 8162139 | 2007-07-24 17:18:39 -0700 | [diff] [blame] | 161 | /* apply page scale */ |
| 162 | if(graphics->unit != UnitDisplay) |
| 163 | unitscale *= graphics->scale; |
| 164 | |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 165 | GdipCloneMatrix(graphics->worldtrans, &matrix); |
| 166 | GdipScaleMatrix(matrix, unitscale, unitscale, MatrixOrderAppend); |
| 167 | GdipTransformMatrixPoints(matrix, ptf, count); |
Evan Stade | f52adfd | 2007-07-25 19:15:20 -0700 | [diff] [blame] | 168 | GdipDeleteMatrix(matrix); |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 169 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 170 | for(i = 0; i < count; i++){ |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 171 | pti[i].x = roundr(ptf[i].X); |
| 172 | pti[i].y = roundr(ptf[i].Y); |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 173 | } |
| 174 | } |
| 175 | |
Vincent Povirk | a616130 | 2009-05-01 14:26:50 -0500 | [diff] [blame] | 176 | static ARGB blend_colors(ARGB start, ARGB end, REAL position) |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 177 | { |
| 178 | ARGB result=0; |
| 179 | ARGB i; |
| 180 | for (i=0xff; i<=0xff0000; i = i << 8) |
Vincent Povirk | a616130 | 2009-05-01 14:26:50 -0500 | [diff] [blame] | 181 | result |= (int)((start&i)*(1.0f - position)+(end&i)*(position))&i; |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 182 | return result; |
| 183 | } |
| 184 | |
Vincent Povirk | a616130 | 2009-05-01 14:26:50 -0500 | [diff] [blame] | 185 | static ARGB blend_line_gradient(GpLineGradient* brush, REAL position) |
| 186 | { |
| 187 | REAL blendfac; |
| 188 | |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 189 | /* clamp to between 0.0 and 1.0, using the wrap mode */ |
| 190 | if (brush->wrap == WrapModeTile) |
| 191 | { |
| 192 | position = fmodf(position, 1.0f); |
| 193 | if (position < 0.0f) position += 1.0f; |
| 194 | } |
| 195 | else /* WrapModeFlip* */ |
| 196 | { |
| 197 | position = fmodf(position, 2.0f); |
| 198 | if (position < 0.0f) position += 2.0f; |
| 199 | if (position > 1.0f) position = 2.0f - position; |
| 200 | } |
| 201 | |
Vincent Povirk | a616130 | 2009-05-01 14:26:50 -0500 | [diff] [blame] | 202 | if (brush->blendcount == 1) |
| 203 | blendfac = position; |
| 204 | else |
| 205 | { |
| 206 | int i=1; |
| 207 | REAL left_blendpos, left_blendfac, right_blendpos, right_blendfac; |
| 208 | REAL range; |
| 209 | |
| 210 | /* locate the blend positions surrounding this position */ |
| 211 | while (position > brush->blendpos[i]) |
| 212 | i++; |
| 213 | |
| 214 | /* interpolate between the blend positions */ |
| 215 | left_blendpos = brush->blendpos[i-1]; |
| 216 | left_blendfac = brush->blendfac[i-1]; |
| 217 | right_blendpos = brush->blendpos[i]; |
| 218 | right_blendfac = brush->blendfac[i]; |
| 219 | range = right_blendpos - left_blendpos; |
| 220 | blendfac = (left_blendfac * (right_blendpos - position) + |
| 221 | right_blendfac * (position - left_blendpos)) / range; |
| 222 | } |
Vincent Povirk | d2e999d | 2009-09-14 16:48:03 -0500 | [diff] [blame] | 223 | |
| 224 | if (brush->pblendcount == 0) |
| 225 | return blend_colors(brush->startcolor, brush->endcolor, blendfac); |
| 226 | else |
| 227 | { |
| 228 | int i=1; |
| 229 | ARGB left_blendcolor, right_blendcolor; |
| 230 | REAL left_blendpos, right_blendpos; |
| 231 | |
| 232 | /* locate the blend colors surrounding this position */ |
| 233 | while (blendfac > brush->pblendpos[i]) |
| 234 | i++; |
| 235 | |
| 236 | /* interpolate between the blend colors */ |
| 237 | left_blendpos = brush->pblendpos[i-1]; |
| 238 | left_blendcolor = brush->pblendcolor[i-1]; |
| 239 | right_blendpos = brush->pblendpos[i]; |
| 240 | right_blendcolor = brush->pblendcolor[i]; |
| 241 | blendfac = (blendfac - left_blendpos) / (right_blendpos - left_blendpos); |
| 242 | return blend_colors(left_blendcolor, right_blendcolor, blendfac); |
| 243 | } |
Vincent Povirk | a616130 | 2009-05-01 14:26:50 -0500 | [diff] [blame] | 244 | } |
| 245 | |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 246 | static void brush_fill_path(GpGraphics *graphics, GpBrush* brush) |
| 247 | { |
| 248 | switch (brush->bt) |
| 249 | { |
| 250 | case BrushTypeLinearGradient: |
| 251 | { |
| 252 | GpLineGradient *line = (GpLineGradient*)brush; |
| 253 | RECT rc; |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 254 | |
| 255 | SelectClipPath(graphics->hdc, RGN_AND); |
| 256 | if (GetClipBox(graphics->hdc, &rc) != NULLREGION) |
| 257 | { |
| 258 | GpPointF endpointsf[2]; |
| 259 | POINT endpointsi[2]; |
| 260 | POINT poly[4]; |
| 261 | |
| 262 | SelectObject(graphics->hdc, GetStockObject(NULL_PEN)); |
| 263 | |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 264 | endpointsf[0] = line->startpoint; |
| 265 | endpointsf[1] = line->endpoint; |
| 266 | transform_and_round_points(graphics, endpointsi, endpointsf, 2); |
| 267 | |
| 268 | if (abs(endpointsi[0].x-endpointsi[1].x) > abs(endpointsi[0].y-endpointsi[1].y)) |
| 269 | { |
| 270 | /* vertical-ish gradient */ |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 271 | int startx, endx; /* x co-ordinates of endpoints shifted to intersect the top of the visible rectangle */ |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 272 | int startbottomx; /* x co-ordinate of start point shifted to intersect the bottom of the visible rectangle */ |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 273 | int width; |
| 274 | COLORREF col; |
| 275 | HBRUSH hbrush, hprevbrush; |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 276 | int leftx, rightx; /* x co-ordinates where the leftmost and rightmost gradient lines hit the top of the visible rectangle */ |
| 277 | int x; |
| 278 | int tilt; /* horizontal distance covered by a gradient line */ |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 279 | |
| 280 | startx = roundr((rc.top - endpointsf[0].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[0].X); |
| 281 | endx = roundr((rc.top - endpointsf[1].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[1].X); |
| 282 | width = endx - startx; |
| 283 | startbottomx = roundr((rc.bottom - endpointsf[0].Y) * (endpointsf[1].Y - endpointsf[0].Y) / (endpointsf[0].X - endpointsf[1].X) + endpointsf[0].X); |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 284 | tilt = startx - startbottomx; |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 285 | |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 286 | if (startx >= startbottomx) |
| 287 | { |
| 288 | leftx = rc.left; |
| 289 | rightx = rc.right + tilt; |
| 290 | } |
| 291 | else |
| 292 | { |
| 293 | leftx = rc.left + tilt; |
| 294 | rightx = rc.right; |
| 295 | } |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 296 | |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 297 | poly[0].y = rc.bottom; |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 298 | poly[1].y = rc.top; |
| 299 | poly[2].y = rc.top; |
| 300 | poly[3].y = rc.bottom; |
| 301 | |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 302 | for (x=leftx; x<=rightx; x++) |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 303 | { |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 304 | ARGB argb = blend_line_gradient(line, (x-startx)/(REAL)width); |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 305 | col = ARGB2COLORREF(argb); |
| 306 | hbrush = CreateSolidBrush(col); |
| 307 | hprevbrush = SelectObject(graphics->hdc, hbrush); |
Vincent Povirk | cb478a3 | 2009-05-01 15:37:35 -0500 | [diff] [blame] | 308 | poly[0].x = x - tilt - 1; |
| 309 | poly[1].x = x - 1; |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 310 | poly[2].x = x; |
| 311 | poly[3].x = x - tilt; |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 312 | Polygon(graphics->hdc, poly, 4); |
| 313 | SelectObject(graphics->hdc, hprevbrush); |
| 314 | DeleteObject(hbrush); |
| 315 | } |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 316 | } |
| 317 | else if (endpointsi[0].y != endpointsi[1].y) |
| 318 | { |
| 319 | /* horizontal-ish gradient */ |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 320 | int starty, endy; /* y co-ordinates of endpoints shifted to intersect the left of the visible rectangle */ |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 321 | int startrighty; /* y co-ordinate of start point shifted to intersect the right of the visible rectangle */ |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 322 | int height; |
| 323 | COLORREF col; |
| 324 | HBRUSH hbrush, hprevbrush; |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 325 | int topy, bottomy; /* y co-ordinates where the topmost and bottommost gradient lines hit the left of the visible rectangle */ |
| 326 | int y; |
| 327 | int tilt; /* vertical distance covered by a gradient line */ |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 328 | |
| 329 | starty = roundr((rc.left - endpointsf[0].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[0].Y); |
| 330 | endy = roundr((rc.left - endpointsf[1].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[1].Y); |
| 331 | height = endy - starty; |
| 332 | startrighty = roundr((rc.right - endpointsf[0].X) * (endpointsf[0].X - endpointsf[1].X) / (endpointsf[1].Y - endpointsf[0].Y) + endpointsf[0].Y); |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 333 | tilt = starty - startrighty; |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 334 | |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 335 | if (starty >= startrighty) |
| 336 | { |
| 337 | topy = rc.top; |
| 338 | bottomy = rc.bottom + tilt; |
| 339 | } |
| 340 | else |
| 341 | { |
| 342 | topy = rc.top + tilt; |
| 343 | bottomy = rc.bottom; |
| 344 | } |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 345 | |
| 346 | poly[0].x = rc.right; |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 347 | poly[1].x = rc.left; |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 348 | poly[2].x = rc.left; |
| 349 | poly[3].x = rc.right; |
| 350 | |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 351 | for (y=topy; y<=bottomy; y++) |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 352 | { |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 353 | ARGB argb = blend_line_gradient(line, (y-starty)/(REAL)height); |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 354 | col = ARGB2COLORREF(argb); |
| 355 | hbrush = CreateSolidBrush(col); |
| 356 | hprevbrush = SelectObject(graphics->hdc, hbrush); |
Vincent Povirk | cb478a3 | 2009-05-01 15:37:35 -0500 | [diff] [blame] | 357 | poly[0].y = y - tilt - 1; |
| 358 | poly[1].y = y - 1; |
Vincent Povirk | 966fd5e | 2009-05-01 15:23:02 -0500 | [diff] [blame] | 359 | poly[2].y = y; |
| 360 | poly[3].y = y - tilt; |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 361 | Polygon(graphics->hdc, poly, 4); |
| 362 | SelectObject(graphics->hdc, hprevbrush); |
| 363 | DeleteObject(hbrush); |
| 364 | } |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 365 | } |
| 366 | /* else startpoint == endpoint */ |
| 367 | } |
| 368 | break; |
| 369 | } |
Vincent Povirk | 60167df | 2009-05-20 11:24:18 -0500 | [diff] [blame] | 370 | case BrushTypeSolidColor: |
| 371 | { |
| 372 | GpSolidFill *fill = (GpSolidFill*)brush; |
| 373 | if (fill->bmp) |
| 374 | { |
| 375 | RECT rc; |
| 376 | /* partially transparent fill */ |
| 377 | |
| 378 | SelectClipPath(graphics->hdc, RGN_AND); |
| 379 | if (GetClipBox(graphics->hdc, &rc) != NULLREGION) |
| 380 | { |
| 381 | HDC hdc = CreateCompatibleDC(NULL); |
| 382 | HBITMAP oldbmp; |
| 383 | BLENDFUNCTION bf; |
| 384 | |
| 385 | if (!hdc) break; |
| 386 | |
| 387 | oldbmp = SelectObject(hdc, fill->bmp); |
| 388 | |
| 389 | bf.BlendOp = AC_SRC_OVER; |
| 390 | bf.BlendFlags = 0; |
| 391 | bf.SourceConstantAlpha = 255; |
| 392 | bf.AlphaFormat = AC_SRC_ALPHA; |
| 393 | |
| 394 | GdiAlphaBlend(graphics->hdc, rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top, hdc, 0, 0, 1, 1, bf); |
| 395 | |
| 396 | SelectObject(hdc, oldbmp); |
| 397 | DeleteDC(hdc); |
| 398 | } |
| 399 | |
| 400 | break; |
| 401 | } |
| 402 | /* else fall through */ |
| 403 | } |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 404 | default: |
| 405 | SelectObject(graphics->hdc, brush->gdibrush); |
| 406 | FillPath(graphics->hdc); |
| 407 | break; |
| 408 | } |
| 409 | } |
| 410 | |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 411 | /* GdipDrawPie/GdipFillPie helper function */ |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 412 | static void draw_pie(GpGraphics *graphics, REAL x, REAL y, REAL width, |
| 413 | REAL height, REAL startAngle, REAL sweepAngle) |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 414 | { |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 415 | GpPointF ptf[4]; |
| 416 | POINT pti[4]; |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 417 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 418 | ptf[0].X = x; |
| 419 | ptf[0].Y = y; |
| 420 | ptf[1].X = x + width; |
| 421 | ptf[1].Y = y + height; |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 422 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 423 | deg2xy(startAngle+sweepAngle, x + width / 2.0, y + width / 2.0, &ptf[2].X, &ptf[2].Y); |
| 424 | deg2xy(startAngle, x + width / 2.0, y + width / 2.0, &ptf[3].X, &ptf[3].Y); |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 425 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 426 | transform_and_round_points(graphics, pti, ptf, 4); |
| 427 | |
| 428 | Pie(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y, pti[2].x, |
| 429 | pti[2].y, pti[3].x, pti[3].y); |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 430 | } |
| 431 | |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 432 | /* Draws the linecap the specified color and size on the hdc. The linecap is in |
Evan Stade | 8c5bcef | 2007-07-20 17:50:02 -0700 | [diff] [blame] | 433 | * direction of the line from x1, y1 to x2, y2 and is anchored on x2, y2. Probably |
| 434 | * should not be called on an hdc that has a path you care about. */ |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 435 | static void draw_cap(GpGraphics *graphics, COLORREF color, GpLineCap cap, REAL size, |
Evan Stade | 85b5df4 | 2007-07-19 18:22:51 -0700 | [diff] [blame] | 436 | const GpCustomLineCap *custom, REAL x1, REAL y1, REAL x2, REAL y2) |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 437 | { |
Evan Stade | b7053b7 | 2007-07-24 17:18:58 -0700 | [diff] [blame] | 438 | HGDIOBJ oldbrush = NULL, oldpen = NULL; |
Evan Stade | 85b5df4 | 2007-07-19 18:22:51 -0700 | [diff] [blame] | 439 | GpMatrix *matrix = NULL; |
Evan Stade | b7053b7 | 2007-07-24 17:18:58 -0700 | [diff] [blame] | 440 | HBRUSH brush = NULL; |
| 441 | HPEN pen = NULL; |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 442 | PointF ptf[4], *custptf = NULL; |
Evan Stade | 85b5df4 | 2007-07-19 18:22:51 -0700 | [diff] [blame] | 443 | POINT pt[4], *custpt = NULL; |
| 444 | BYTE *tp = NULL; |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 445 | REAL theta, dsmall, dbig, dx, dy = 0.0; |
Evan Stade | 85b5df4 | 2007-07-19 18:22:51 -0700 | [diff] [blame] | 446 | INT i, count; |
| 447 | LOGBRUSH lb; |
Evan Stade | b7053b7 | 2007-07-24 17:18:58 -0700 | [diff] [blame] | 448 | BOOL customstroke; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 449 | |
Evan Stade | 818051d | 2007-07-20 17:50:14 -0700 | [diff] [blame] | 450 | if((x1 == x2) && (y1 == y2)) |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 451 | return; |
| 452 | |
Evan Stade | 818051d | 2007-07-20 17:50:14 -0700 | [diff] [blame] | 453 | theta = gdiplus_atan2(y2 - y1, x2 - x1); |
| 454 | |
Evan Stade | b7053b7 | 2007-07-24 17:18:58 -0700 | [diff] [blame] | 455 | customstroke = (cap == LineCapCustom) && custom && (!custom->fill); |
| 456 | if(!customstroke){ |
| 457 | brush = CreateSolidBrush(color); |
| 458 | lb.lbStyle = BS_SOLID; |
| 459 | lb.lbColor = color; |
| 460 | lb.lbHatch = 0; |
| 461 | pen = ExtCreatePen(PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT | |
| 462 | PS_JOIN_MITER, 1, &lb, 0, |
| 463 | NULL); |
| 464 | oldbrush = SelectObject(graphics->hdc, brush); |
| 465 | oldpen = SelectObject(graphics->hdc, pen); |
| 466 | } |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 467 | |
| 468 | switch(cap){ |
| 469 | case LineCapFlat: |
| 470 | break; |
| 471 | case LineCapSquare: |
| 472 | case LineCapSquareAnchor: |
| 473 | case LineCapDiamondAnchor: |
| 474 | size = size * (cap & LineCapNoAnchor ? ANCHOR_WIDTH : 1.0) / 2.0; |
| 475 | if(cap == LineCapDiamondAnchor){ |
| 476 | dsmall = cos(theta + M_PI_2) * size; |
| 477 | dbig = sin(theta + M_PI_2) * size; |
| 478 | } |
| 479 | else{ |
| 480 | dsmall = cos(theta + M_PI_4) * size; |
| 481 | dbig = sin(theta + M_PI_4) * size; |
| 482 | } |
| 483 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 484 | ptf[0].X = x2 - dsmall; |
| 485 | ptf[1].X = x2 + dbig; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 486 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 487 | ptf[0].Y = y2 - dbig; |
| 488 | ptf[3].Y = y2 + dsmall; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 489 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 490 | ptf[1].Y = y2 - dsmall; |
| 491 | ptf[2].Y = y2 + dbig; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 492 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 493 | ptf[3].X = x2 - dbig; |
| 494 | ptf[2].X = x2 + dsmall; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 495 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 496 | transform_and_round_points(graphics, pt, ptf, 4); |
| 497 | Polygon(graphics->hdc, pt, 4); |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 498 | |
| 499 | break; |
| 500 | case LineCapArrowAnchor: |
| 501 | size = size * 4.0 / sqrt(3.0); |
| 502 | |
Evan Stade | ea5898c | 2007-07-19 18:22:47 -0700 | [diff] [blame] | 503 | dx = cos(M_PI / 6.0 + theta) * size; |
| 504 | dy = sin(M_PI / 6.0 + theta) * size; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 505 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 506 | ptf[0].X = x2 - dx; |
| 507 | ptf[0].Y = y2 - dy; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 508 | |
Evan Stade | ea5898c | 2007-07-19 18:22:47 -0700 | [diff] [blame] | 509 | dx = cos(- M_PI / 6.0 + theta) * size; |
| 510 | dy = sin(- M_PI / 6.0 + theta) * size; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 511 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 512 | ptf[1].X = x2 - dx; |
| 513 | ptf[1].Y = y2 - dy; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 514 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 515 | ptf[2].X = x2; |
| 516 | ptf[2].Y = y2; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 517 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 518 | transform_and_round_points(graphics, pt, ptf, 3); |
| 519 | Polygon(graphics->hdc, pt, 3); |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 520 | |
| 521 | break; |
| 522 | case LineCapRoundAnchor: |
| 523 | dx = dy = ANCHOR_WIDTH * size / 2.0; |
| 524 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 525 | ptf[0].X = x2 - dx; |
| 526 | ptf[0].Y = y2 - dy; |
| 527 | ptf[1].X = x2 + dx; |
| 528 | ptf[1].Y = y2 + dy; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 529 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 530 | transform_and_round_points(graphics, pt, ptf, 2); |
| 531 | Ellipse(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y); |
| 532 | |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 533 | break; |
| 534 | case LineCapTriangle: |
| 535 | size = size / 2.0; |
| 536 | dx = cos(M_PI_2 + theta) * size; |
| 537 | dy = sin(M_PI_2 + theta) * size; |
| 538 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 539 | ptf[0].X = x2 - dx; |
| 540 | ptf[0].Y = y2 - dy; |
| 541 | ptf[1].X = x2 + dx; |
| 542 | ptf[1].Y = y2 + dy; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 543 | |
Evan Stade | ea5898c | 2007-07-19 18:22:47 -0700 | [diff] [blame] | 544 | dx = cos(theta) * size; |
| 545 | dy = sin(theta) * size; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 546 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 547 | ptf[2].X = x2 + dx; |
| 548 | ptf[2].Y = y2 + dy; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 549 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 550 | transform_and_round_points(graphics, pt, ptf, 3); |
| 551 | Polygon(graphics->hdc, pt, 3); |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 552 | |
| 553 | break; |
| 554 | case LineCapRound: |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 555 | dx = dy = size / 2.0; |
| 556 | |
| 557 | ptf[0].X = x2 - dx; |
| 558 | ptf[0].Y = y2 - dy; |
| 559 | ptf[1].X = x2 + dx; |
| 560 | ptf[1].Y = y2 + dy; |
| 561 | |
Evan Stade | ea5898c | 2007-07-19 18:22:47 -0700 | [diff] [blame] | 562 | dx = -cos(M_PI_2 + theta) * size; |
| 563 | dy = -sin(M_PI_2 + theta) * size; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 564 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 565 | ptf[2].X = x2 - dx; |
| 566 | ptf[2].Y = y2 - dy; |
| 567 | ptf[3].X = x2 + dx; |
| 568 | ptf[3].Y = y2 + dy; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 569 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 570 | transform_and_round_points(graphics, pt, ptf, 4); |
| 571 | Pie(graphics->hdc, pt[0].x, pt[0].y, pt[1].x, pt[1].y, pt[2].x, |
| 572 | pt[2].y, pt[3].x, pt[3].y); |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 573 | |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 574 | break; |
| 575 | case LineCapCustom: |
Evan Stade | 85b5df4 | 2007-07-19 18:22:51 -0700 | [diff] [blame] | 576 | if(!custom) |
| 577 | break; |
| 578 | |
Evan Stade | 85b5df4 | 2007-07-19 18:22:51 -0700 | [diff] [blame] | 579 | count = custom->pathdata.Count; |
| 580 | custptf = GdipAlloc(count * sizeof(PointF)); |
| 581 | custpt = GdipAlloc(count * sizeof(POINT)); |
| 582 | tp = GdipAlloc(count); |
| 583 | |
| 584 | if(!custptf || !custpt || !tp || (GdipCreateMatrix(&matrix) != Ok)) |
| 585 | goto custend; |
| 586 | |
| 587 | memcpy(custptf, custom->pathdata.Points, count * sizeof(PointF)); |
| 588 | |
| 589 | GdipScaleMatrix(matrix, size, size, MatrixOrderAppend); |
| 590 | GdipRotateMatrix(matrix, (180.0 / M_PI) * (theta - M_PI_2), |
| 591 | MatrixOrderAppend); |
| 592 | GdipTranslateMatrix(matrix, x2, y2, MatrixOrderAppend); |
| 593 | GdipTransformMatrixPoints(matrix, custptf, count); |
| 594 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 595 | transform_and_round_points(graphics, custpt, custptf, count); |
| 596 | |
| 597 | for(i = 0; i < count; i++) |
Evan Stade | 85b5df4 | 2007-07-19 18:22:51 -0700 | [diff] [blame] | 598 | tp[i] = convert_path_point_type(custom->pathdata.Types[i]); |
Evan Stade | 85b5df4 | 2007-07-19 18:22:51 -0700 | [diff] [blame] | 599 | |
Evan Stade | 8c5bcef | 2007-07-20 17:50:02 -0700 | [diff] [blame] | 600 | if(custom->fill){ |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 601 | BeginPath(graphics->hdc); |
| 602 | PolyDraw(graphics->hdc, custpt, tp, count); |
| 603 | EndPath(graphics->hdc); |
| 604 | StrokeAndFillPath(graphics->hdc); |
Evan Stade | 8c5bcef | 2007-07-20 17:50:02 -0700 | [diff] [blame] | 605 | } |
| 606 | else |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 607 | PolyDraw(graphics->hdc, custpt, tp, count); |
Evan Stade | 85b5df4 | 2007-07-19 18:22:51 -0700 | [diff] [blame] | 608 | |
| 609 | custend: |
| 610 | GdipFree(custptf); |
| 611 | GdipFree(custpt); |
| 612 | GdipFree(tp); |
| 613 | GdipDeleteMatrix(matrix); |
| 614 | break; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 615 | default: |
| 616 | break; |
| 617 | } |
| 618 | |
Evan Stade | b7053b7 | 2007-07-24 17:18:58 -0700 | [diff] [blame] | 619 | if(!customstroke){ |
| 620 | SelectObject(graphics->hdc, oldbrush); |
| 621 | SelectObject(graphics->hdc, oldpen); |
| 622 | DeleteObject(brush); |
| 623 | DeleteObject(pen); |
| 624 | } |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | /* Shortens the line by the given percent by changing x2, y2. |
Evan Stade | f56fa32 | 2007-07-20 17:50:07 -0700 | [diff] [blame] | 628 | * If percent is > 1.0 then the line will change direction. |
| 629 | * If percent is negative it can lengthen the line. */ |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 630 | static void shorten_line_percent(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL percent) |
| 631 | { |
| 632 | REAL dist, theta, dx, dy; |
| 633 | |
| 634 | if((y1 == *y2) && (x1 == *x2)) |
| 635 | return; |
| 636 | |
Evan Stade | f56fa32 | 2007-07-20 17:50:07 -0700 | [diff] [blame] | 637 | dist = sqrt((*x2 - x1) * (*x2 - x1) + (*y2 - y1) * (*y2 - y1)) * -percent; |
Evan Stade | 818051d | 2007-07-20 17:50:14 -0700 | [diff] [blame] | 638 | theta = gdiplus_atan2((*y2 - y1), (*x2 - x1)); |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 639 | dx = cos(theta) * dist; |
| 640 | dy = sin(theta) * dist; |
| 641 | |
Evan Stade | f56fa32 | 2007-07-20 17:50:07 -0700 | [diff] [blame] | 642 | *x2 = *x2 + dx; |
| 643 | *y2 = *y2 + dy; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | /* Shortens the line by the given amount by changing x2, y2. |
Evan Stade | f56fa32 | 2007-07-20 17:50:07 -0700 | [diff] [blame] | 647 | * If the amount is greater than the distance, the line will become length 0. |
| 648 | * If the amount is negative, it can lengthen the line. */ |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 649 | static void shorten_line_amt(REAL x1, REAL y1, REAL *x2, REAL *y2, REAL amt) |
| 650 | { |
| 651 | REAL dx, dy, percent; |
| 652 | |
| 653 | dx = *x2 - x1; |
| 654 | dy = *y2 - y1; |
| 655 | if(dx == 0 && dy == 0) |
| 656 | return; |
| 657 | |
| 658 | percent = amt / sqrt(dx * dx + dy * dy); |
| 659 | if(percent >= 1.0){ |
| 660 | *x2 = x1; |
| 661 | *y2 = y1; |
| 662 | return; |
| 663 | } |
| 664 | |
| 665 | shorten_line_percent(x1, y1, x2, y2, percent); |
| 666 | } |
| 667 | |
| 668 | /* Draws lines between the given points, and if caps is true then draws an endcap |
Evan Stade | 88ab6d3 | 2007-08-02 17:53:13 -0700 | [diff] [blame] | 669 | * at the end of the last line. */ |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 670 | static GpStatus draw_polyline(GpGraphics *graphics, GpPen *pen, |
| 671 | GDIPCONST GpPointF * pt, INT count, BOOL caps) |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 672 | { |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 673 | POINT *pti = NULL; |
| 674 | GpPointF *ptcopy = NULL; |
Evan Stade | 6f4ab52 | 2007-07-11 18:07:44 -0700 | [diff] [blame] | 675 | GpStatus status = GenericError; |
| 676 | |
| 677 | if(!count) |
| 678 | return Ok; |
| 679 | |
| 680 | pti = GdipAlloc(count * sizeof(POINT)); |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 681 | ptcopy = GdipAlloc(count * sizeof(GpPointF)); |
Evan Stade | 6f4ab52 | 2007-07-11 18:07:44 -0700 | [diff] [blame] | 682 | |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 683 | if(!pti || !ptcopy){ |
Evan Stade | 6f4ab52 | 2007-07-11 18:07:44 -0700 | [diff] [blame] | 684 | status = OutOfMemory; |
| 685 | goto end; |
| 686 | } |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 687 | |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 688 | memcpy(ptcopy, pt, count * sizeof(GpPointF)); |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 689 | |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 690 | if(caps){ |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 691 | if(pen->endcap == LineCapArrowAnchor) |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 692 | shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y, |
| 693 | &ptcopy[count-1].X, &ptcopy[count-1].Y, pen->width); |
Evan Stade | f56fa32 | 2007-07-20 17:50:07 -0700 | [diff] [blame] | 694 | else if((pen->endcap == LineCapCustom) && pen->customend) |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 695 | shorten_line_amt(ptcopy[count-2].X, ptcopy[count-2].Y, |
| 696 | &ptcopy[count-1].X, &ptcopy[count-1].Y, |
| 697 | pen->customend->inset * pen->width); |
| 698 | |
| 699 | if(pen->startcap == LineCapArrowAnchor) |
| 700 | shorten_line_amt(ptcopy[1].X, ptcopy[1].Y, |
| 701 | &ptcopy[0].X, &ptcopy[0].Y, pen->width); |
| 702 | else if((pen->startcap == LineCapCustom) && pen->customstart) |
| 703 | shorten_line_amt(ptcopy[1].X, ptcopy[1].Y, |
| 704 | &ptcopy[0].X, &ptcopy[0].Y, |
Evan Stade | 02887b6 | 2007-08-07 18:42:44 -0700 | [diff] [blame] | 705 | pen->customstart->inset * pen->width); |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 706 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 707 | draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend, |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 708 | pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X, pt[count - 1].Y); |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 709 | draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart, |
Michael Stefaniuc | 1f26b14 | 2007-12-31 17:29:57 +0100 | [diff] [blame] | 710 | pt[1].X, pt[1].Y, pt[0].X, pt[0].Y); |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 711 | } |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 712 | |
| 713 | transform_and_round_points(graphics, pti, ptcopy, count); |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 714 | |
Royal Chan | c86f2c2 | 2008-02-10 12:40:52 -0800 | [diff] [blame] | 715 | if(Polyline(graphics->hdc, pti, count)) |
| 716 | status = Ok; |
Evan Stade | 6f4ab52 | 2007-07-11 18:07:44 -0700 | [diff] [blame] | 717 | |
| 718 | end: |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 719 | GdipFree(pti); |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 720 | GdipFree(ptcopy); |
Evan Stade | 6f4ab52 | 2007-07-11 18:07:44 -0700 | [diff] [blame] | 721 | |
| 722 | return status; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 723 | } |
| 724 | |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 725 | /* Conducts a linear search to find the bezier points that will back off |
| 726 | * the endpoint of the curve by a distance of amt. Linear search works |
| 727 | * better than binary in this case because there are multiple solutions, |
| 728 | * and binary searches often find a bad one. I don't think this is what |
| 729 | * Windows does but short of rendering the bezier without GDI's help it's |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 730 | * the best we can do. If rev then work from the start of the passed points |
| 731 | * instead of the end. */ |
| 732 | static void shorten_bezier_amt(GpPointF * pt, REAL amt, BOOL rev) |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 733 | { |
| 734 | GpPointF origpt[4]; |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 735 | REAL percent = 0.00, dx, dy, origx, origy, diff = -1.0; |
| 736 | INT i, first = 0, second = 1, third = 2, fourth = 3; |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 737 | |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 738 | if(rev){ |
| 739 | first = 3; |
| 740 | second = 2; |
| 741 | third = 1; |
| 742 | fourth = 0; |
| 743 | } |
| 744 | |
| 745 | origx = pt[fourth].X; |
| 746 | origy = pt[fourth].Y; |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 747 | memcpy(origpt, pt, sizeof(GpPointF) * 4); |
| 748 | |
| 749 | for(i = 0; (i < MAX_ITERS) && (diff < amt); i++){ |
| 750 | /* reset bezier points to original values */ |
| 751 | memcpy(pt, origpt, sizeof(GpPointF) * 4); |
| 752 | /* Perform magic on bezier points. Order is important here.*/ |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 753 | shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent); |
| 754 | shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent); |
| 755 | shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent); |
| 756 | shorten_line_percent(pt[first].X, pt[first].Y, &pt[second].X, &pt[second].Y, percent); |
| 757 | shorten_line_percent(pt[second].X, pt[second].Y, &pt[third].X, &pt[third].Y, percent); |
| 758 | shorten_line_percent(pt[third].X, pt[third].Y, &pt[fourth].X, &pt[fourth].Y, percent); |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 759 | |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 760 | dx = pt[fourth].X - origx; |
| 761 | dy = pt[fourth].Y - origy; |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 762 | |
| 763 | diff = sqrt(dx * dx + dy * dy); |
| 764 | percent += 0.0005 * amt; |
| 765 | } |
| 766 | } |
| 767 | |
| 768 | /* Draws bezier curves between given points, and if caps is true then draws an |
Evan Stade | 88ab6d3 | 2007-08-02 17:53:13 -0700 | [diff] [blame] | 769 | * endcap at the end of the last line. */ |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 770 | static GpStatus draw_polybezier(GpGraphics *graphics, GpPen *pen, |
| 771 | GDIPCONST GpPointF * pt, INT count, BOOL caps) |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 772 | { |
Evan Stade | 7f0aa3a | 2007-08-02 17:53:08 -0700 | [diff] [blame] | 773 | POINT *pti; |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 774 | GpPointF *ptcopy; |
Evan Stade | fa31217 | 2007-07-11 18:07:39 -0700 | [diff] [blame] | 775 | GpStatus status = GenericError; |
| 776 | |
| 777 | if(!count) |
| 778 | return Ok; |
| 779 | |
| 780 | pti = GdipAlloc(count * sizeof(POINT)); |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 781 | ptcopy = GdipAlloc(count * sizeof(GpPointF)); |
Evan Stade | fa31217 | 2007-07-11 18:07:39 -0700 | [diff] [blame] | 782 | |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 783 | if(!pti || !ptcopy){ |
Evan Stade | fa31217 | 2007-07-11 18:07:39 -0700 | [diff] [blame] | 784 | status = OutOfMemory; |
| 785 | goto end; |
| 786 | } |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 787 | |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 788 | memcpy(ptcopy, pt, count * sizeof(GpPointF)); |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 789 | |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 790 | if(caps){ |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 791 | if(pen->endcap == LineCapArrowAnchor) |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 792 | shorten_bezier_amt(&ptcopy[count-4], pen->width, FALSE); |
Evan Stade | 7f0aa3a | 2007-08-02 17:53:08 -0700 | [diff] [blame] | 793 | else if((pen->endcap == LineCapCustom) && pen->customend) |
| 794 | shorten_bezier_amt(&ptcopy[count-4], pen->width * pen->customend->inset, |
| 795 | FALSE); |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 796 | |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 797 | if(pen->startcap == LineCapArrowAnchor) |
| 798 | shorten_bezier_amt(ptcopy, pen->width, TRUE); |
Evan Stade | 7f0aa3a | 2007-08-02 17:53:08 -0700 | [diff] [blame] | 799 | else if((pen->startcap == LineCapCustom) && pen->customstart) |
Evan Stade | 02887b6 | 2007-08-07 18:42:44 -0700 | [diff] [blame] | 800 | shorten_bezier_amt(ptcopy, pen->width * pen->customstart->inset, TRUE); |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 801 | |
Evan Stade | 55d70e8 | 2007-07-11 18:08:26 -0700 | [diff] [blame] | 802 | /* the direction of the line cap is parallel to the direction at the |
| 803 | * end of the bezier (which, if it has been shortened, is not the same |
| 804 | * as the direction from pt[count-2] to pt[count-1]) */ |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 805 | draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend, |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 806 | pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X), |
| 807 | pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y), |
Evan Stade | 55d70e8 | 2007-07-11 18:08:26 -0700 | [diff] [blame] | 808 | pt[count - 1].X, pt[count - 1].Y); |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 809 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 810 | draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart, |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 811 | pt[0].X - (ptcopy[0].X - ptcopy[1].X), |
| 812 | pt[0].Y - (ptcopy[0].Y - ptcopy[1].Y), pt[0].X, pt[0].Y); |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 813 | } |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 814 | |
| 815 | transform_and_round_points(graphics, pti, ptcopy, count); |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 816 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 817 | PolyBezier(graphics->hdc, pti, count); |
Evan Stade | fa31217 | 2007-07-11 18:07:39 -0700 | [diff] [blame] | 818 | |
| 819 | status = Ok; |
| 820 | |
| 821 | end: |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 822 | GdipFree(pti); |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 823 | GdipFree(ptcopy); |
Evan Stade | fa31217 | 2007-07-11 18:07:39 -0700 | [diff] [blame] | 824 | |
| 825 | return status; |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 826 | } |
| 827 | |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 828 | /* Draws a combination of bezier curves and lines between points. */ |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 829 | static GpStatus draw_poly(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF * pt, |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 830 | GDIPCONST BYTE * types, INT count, BOOL caps) |
| 831 | { |
Evan Stade | 7f0aa3a | 2007-08-02 17:53:08 -0700 | [diff] [blame] | 832 | POINT *pti = GdipAlloc(count * sizeof(POINT)); |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 833 | BYTE *tp = GdipAlloc(count); |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 834 | GpPointF *ptcopy = GdipAlloc(count * sizeof(GpPointF)); |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 835 | INT i, j; |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 836 | GpStatus status = GenericError; |
| 837 | |
| 838 | if(!count){ |
| 839 | status = Ok; |
| 840 | goto end; |
| 841 | } |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 842 | if(!pti || !tp || !ptcopy){ |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 843 | status = OutOfMemory; |
| 844 | goto end; |
| 845 | } |
| 846 | |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 847 | for(i = 1; i < count; i++){ |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 848 | if((types[i] & PathPointTypePathTypeMask) == PathPointTypeBezier){ |
| 849 | if((i + 2 >= count) || !(types[i + 1] & PathPointTypeBezier) |
| 850 | || !(types[i + 1] & PathPointTypeBezier)){ |
| 851 | ERR("Bad bezier points\n"); |
| 852 | goto end; |
| 853 | } |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 854 | i += 2; |
| 855 | } |
| 856 | } |
| 857 | |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 858 | memcpy(ptcopy, pt, count * sizeof(GpPointF)); |
| 859 | |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 860 | /* If we are drawing caps, go through the points and adjust them accordingly, |
| 861 | * and draw the caps. */ |
| 862 | if(caps){ |
| 863 | switch(types[count - 1] & PathPointTypePathTypeMask){ |
| 864 | case PathPointTypeBezier: |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 865 | if(pen->endcap == LineCapArrowAnchor) |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 866 | shorten_bezier_amt(&ptcopy[count - 4], pen->width, FALSE); |
Evan Stade | 7f0aa3a | 2007-08-02 17:53:08 -0700 | [diff] [blame] | 867 | else if((pen->endcap == LineCapCustom) && pen->customend) |
| 868 | shorten_bezier_amt(&ptcopy[count - 4], |
| 869 | pen->width * pen->customend->inset, FALSE); |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 870 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 871 | draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend, |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 872 | pt[count - 1].X - (ptcopy[count - 1].X - ptcopy[count - 2].X), |
| 873 | pt[count - 1].Y - (ptcopy[count - 1].Y - ptcopy[count - 2].Y), |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 874 | pt[count - 1].X, pt[count - 1].Y); |
| 875 | |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 876 | break; |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 877 | case PathPointTypeLine: |
| 878 | if(pen->endcap == LineCapArrowAnchor) |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 879 | shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y, |
| 880 | &ptcopy[count - 1].X, &ptcopy[count - 1].Y, |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 881 | pen->width); |
Evan Stade | f56fa32 | 2007-07-20 17:50:07 -0700 | [diff] [blame] | 882 | else if((pen->endcap == LineCapCustom) && pen->customend) |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 883 | shorten_line_amt(ptcopy[count - 2].X, ptcopy[count - 2].Y, |
| 884 | &ptcopy[count - 1].X, &ptcopy[count - 1].Y, |
Evan Stade | f56fa32 | 2007-07-20 17:50:07 -0700 | [diff] [blame] | 885 | pen->customend->inset * pen->width); |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 886 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 887 | draw_cap(graphics, pen->brush->lb.lbColor, pen->endcap, pen->width, pen->customend, |
Evan Stade | 85b5df4 | 2007-07-19 18:22:51 -0700 | [diff] [blame] | 888 | pt[count - 2].X, pt[count - 2].Y, pt[count - 1].X, |
| 889 | pt[count - 1].Y); |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 890 | |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 891 | break; |
| 892 | default: |
| 893 | ERR("Bad path last point\n"); |
| 894 | goto end; |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 895 | } |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 896 | |
| 897 | /* Find start of points */ |
| 898 | for(j = 1; j < count && ((types[j] & PathPointTypePathTypeMask) |
| 899 | == PathPointTypeStart); j++); |
| 900 | |
| 901 | switch(types[j] & PathPointTypePathTypeMask){ |
| 902 | case PathPointTypeBezier: |
| 903 | if(pen->startcap == LineCapArrowAnchor) |
| 904 | shorten_bezier_amt(&ptcopy[j - 1], pen->width, TRUE); |
Evan Stade | 7f0aa3a | 2007-08-02 17:53:08 -0700 | [diff] [blame] | 905 | else if((pen->startcap == LineCapCustom) && pen->customstart) |
| 906 | shorten_bezier_amt(&ptcopy[j - 1], |
Evan Stade | 02887b6 | 2007-08-07 18:42:44 -0700 | [diff] [blame] | 907 | pen->width * pen->customstart->inset, TRUE); |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 908 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 909 | draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart, |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 910 | pt[j - 1].X - (ptcopy[j - 1].X - ptcopy[j].X), |
| 911 | pt[j - 1].Y - (ptcopy[j - 1].Y - ptcopy[j].Y), |
| 912 | pt[j - 1].X, pt[j - 1].Y); |
| 913 | |
| 914 | break; |
| 915 | case PathPointTypeLine: |
| 916 | if(pen->startcap == LineCapArrowAnchor) |
| 917 | shorten_line_amt(ptcopy[j].X, ptcopy[j].Y, |
| 918 | &ptcopy[j - 1].X, &ptcopy[j - 1].Y, |
| 919 | pen->width); |
| 920 | else if((pen->startcap == LineCapCustom) && pen->customstart) |
| 921 | shorten_line_amt(ptcopy[j].X, ptcopy[j].Y, |
| 922 | &ptcopy[j - 1].X, &ptcopy[j - 1].Y, |
| 923 | pen->customstart->inset * pen->width); |
| 924 | |
Evan Stade | 629e013 | 2007-07-27 16:07:50 -0700 | [diff] [blame] | 925 | draw_cap(graphics, pen->brush->lb.lbColor, pen->startcap, pen->width, pen->customstart, |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 926 | pt[j].X, pt[j].Y, pt[j - 1].X, |
| 927 | pt[j - 1].Y); |
| 928 | |
| 929 | break; |
| 930 | default: |
| 931 | ERR("Bad path points\n"); |
| 932 | goto end; |
| 933 | } |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 934 | } |
Evan Stade | c3e8af4 | 2007-07-24 17:18:50 -0700 | [diff] [blame] | 935 | |
| 936 | transform_and_round_points(graphics, pti, ptcopy, count); |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 937 | |
| 938 | for(i = 0; i < count; i++){ |
| 939 | tp[i] = convert_path_point_type(types[i]); |
| 940 | } |
| 941 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 942 | PolyDraw(graphics->hdc, pti, tp, count); |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 943 | |
| 944 | status = Ok; |
| 945 | |
| 946 | end: |
| 947 | GdipFree(pti); |
Evan Stade | a84b567 | 2007-07-20 17:50:11 -0700 | [diff] [blame] | 948 | GdipFree(ptcopy); |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 949 | GdipFree(tp); |
| 950 | |
| 951 | return status; |
| 952 | } |
| 953 | |
Vincent Povirk | 08aa0ca | 2008-11-24 15:01:47 -0600 | [diff] [blame] | 954 | GpStatus trace_path(GpGraphics *graphics, GpPath *path) |
| 955 | { |
| 956 | GpStatus result; |
| 957 | |
| 958 | BeginPath(graphics->hdc); |
| 959 | result = draw_poly(graphics, NULL, path->pathdata.Points, |
| 960 | path->pathdata.Types, path->pathdata.Count, FALSE); |
| 961 | EndPath(graphics->hdc); |
| 962 | return result; |
| 963 | } |
| 964 | |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 965 | typedef struct _GraphicsContainerItem { |
| 966 | struct list entry; |
| 967 | GraphicsContainer contid; |
| 968 | |
| 969 | SmoothingMode smoothing; |
| 970 | CompositingQuality compqual; |
| 971 | InterpolationMode interpolation; |
| 972 | CompositingMode compmode; |
| 973 | TextRenderingHint texthint; |
| 974 | REAL scale; |
| 975 | GpUnit unit; |
| 976 | PixelOffsetMode pixeloffset; |
| 977 | UINT textcontrast; |
| 978 | GpMatrix* worldtrans; |
| 979 | GpRegion* clip; |
| 980 | } GraphicsContainerItem; |
| 981 | |
| 982 | static GpStatus init_container(GraphicsContainerItem** container, |
| 983 | GDIPCONST GpGraphics* graphics){ |
| 984 | GpStatus sts; |
| 985 | |
| 986 | *container = GdipAlloc(sizeof(GraphicsContainerItem)); |
| 987 | if(!(*container)) |
| 988 | return OutOfMemory; |
| 989 | |
| 990 | (*container)->contid = graphics->contid + 1; |
| 991 | |
| 992 | (*container)->smoothing = graphics->smoothing; |
| 993 | (*container)->compqual = graphics->compqual; |
| 994 | (*container)->interpolation = graphics->interpolation; |
| 995 | (*container)->compmode = graphics->compmode; |
| 996 | (*container)->texthint = graphics->texthint; |
| 997 | (*container)->scale = graphics->scale; |
| 998 | (*container)->unit = graphics->unit; |
| 999 | (*container)->textcontrast = graphics->textcontrast; |
| 1000 | (*container)->pixeloffset = graphics->pixeloffset; |
| 1001 | |
| 1002 | sts = GdipCloneMatrix(graphics->worldtrans, &(*container)->worldtrans); |
| 1003 | if(sts != Ok){ |
| 1004 | GdipFree(*container); |
| 1005 | *container = NULL; |
| 1006 | return sts; |
| 1007 | } |
| 1008 | |
| 1009 | sts = GdipCloneRegion(graphics->clip, &(*container)->clip); |
| 1010 | if(sts != Ok){ |
| 1011 | GdipDeleteMatrix((*container)->worldtrans); |
| 1012 | GdipFree(*container); |
| 1013 | *container = NULL; |
| 1014 | return sts; |
| 1015 | } |
| 1016 | |
| 1017 | return Ok; |
| 1018 | } |
| 1019 | |
| 1020 | static void delete_container(GraphicsContainerItem* container){ |
| 1021 | GdipDeleteMatrix(container->worldtrans); |
| 1022 | GdipDeleteRegion(container->clip); |
| 1023 | GdipFree(container); |
| 1024 | } |
| 1025 | |
| 1026 | static GpStatus restore_container(GpGraphics* graphics, |
| 1027 | GDIPCONST GraphicsContainerItem* container){ |
| 1028 | GpStatus sts; |
| 1029 | GpMatrix *newTrans; |
| 1030 | GpRegion *newClip; |
| 1031 | |
| 1032 | sts = GdipCloneMatrix(container->worldtrans, &newTrans); |
| 1033 | if(sts != Ok) |
| 1034 | return sts; |
| 1035 | |
| 1036 | sts = GdipCloneRegion(container->clip, &newClip); |
| 1037 | if(sts != Ok){ |
| 1038 | GdipDeleteMatrix(newTrans); |
| 1039 | return sts; |
| 1040 | } |
| 1041 | |
| 1042 | GdipDeleteMatrix(graphics->worldtrans); |
| 1043 | graphics->worldtrans = newTrans; |
| 1044 | |
| 1045 | GdipDeleteRegion(graphics->clip); |
| 1046 | graphics->clip = newClip; |
| 1047 | |
| 1048 | graphics->contid = container->contid - 1; |
| 1049 | |
| 1050 | graphics->smoothing = container->smoothing; |
| 1051 | graphics->compqual = container->compqual; |
| 1052 | graphics->interpolation = container->interpolation; |
| 1053 | graphics->compmode = container->compmode; |
| 1054 | graphics->texthint = container->texthint; |
| 1055 | graphics->scale = container->scale; |
| 1056 | graphics->unit = container->unit; |
| 1057 | graphics->textcontrast = container->textcontrast; |
| 1058 | graphics->pixeloffset = container->pixeloffset; |
| 1059 | |
| 1060 | return Ok; |
| 1061 | } |
| 1062 | |
Andrew Eikum | fdf48f1 | 2009-08-12 15:36:54 -0500 | [diff] [blame] | 1063 | static GpStatus get_graphics_bounds(GpGraphics* graphics, GpRectF* rect) |
| 1064 | { |
| 1065 | RECT wnd_rect; |
| 1066 | |
| 1067 | if(graphics->hwnd) { |
| 1068 | if(!GetClientRect(graphics->hwnd, &wnd_rect)) |
| 1069 | return GenericError; |
| 1070 | |
| 1071 | rect->X = wnd_rect.left; |
| 1072 | rect->Y = wnd_rect.top; |
| 1073 | rect->Width = wnd_rect.right - wnd_rect.left; |
| 1074 | rect->Height = wnd_rect.bottom - wnd_rect.top; |
| 1075 | }else{ |
| 1076 | rect->X = 0; |
| 1077 | rect->Y = 0; |
| 1078 | rect->Width = GetDeviceCaps(graphics->hdc, HORZRES); |
| 1079 | rect->Height = GetDeviceCaps(graphics->hdc, VERTRES); |
| 1080 | } |
| 1081 | |
| 1082 | return Ok; |
| 1083 | } |
| 1084 | |
Andrew Eikum | 39f6f49 | 2009-08-26 18:03:08 -0500 | [diff] [blame] | 1085 | /* on success, rgn will contain the region of the graphics object which |
| 1086 | * is visible after clipping has been applied */ |
| 1087 | static GpStatus get_visible_clip_region(GpGraphics *graphics, GpRegion *rgn) |
| 1088 | { |
| 1089 | GpStatus stat; |
| 1090 | GpRectF rectf; |
| 1091 | GpRegion* tmp; |
| 1092 | |
| 1093 | if((stat = get_graphics_bounds(graphics, &rectf)) != Ok) |
| 1094 | return stat; |
| 1095 | |
| 1096 | if((stat = GdipCreateRegion(&tmp)) != Ok) |
| 1097 | return stat; |
| 1098 | |
| 1099 | if((stat = GdipCombineRegionRect(tmp, &rectf, CombineModeReplace)) != Ok) |
| 1100 | goto end; |
| 1101 | |
| 1102 | if((stat = GdipCombineRegionRegion(tmp, graphics->clip, CombineModeIntersect)) != Ok) |
| 1103 | goto end; |
| 1104 | |
| 1105 | stat = GdipCombineRegionRegion(rgn, tmp, CombineModeReplace); |
| 1106 | |
| 1107 | end: |
| 1108 | GdipDeleteRegion(tmp); |
| 1109 | return stat; |
| 1110 | } |
| 1111 | |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1112 | GpStatus WINGDIPAPI GdipCreateFromHDC(HDC hdc, GpGraphics **graphics) |
| 1113 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1114 | TRACE("(%p, %p)\n", hdc, graphics); |
| 1115 | |
Stefan Leichter | bfffb4f | 2007-12-23 10:56:32 +0100 | [diff] [blame] | 1116 | return GdipCreateFromHDC2(hdc, NULL, graphics); |
| 1117 | } |
| 1118 | |
| 1119 | GpStatus WINGDIPAPI GdipCreateFromHDC2(HDC hdc, HANDLE hDevice, GpGraphics **graphics) |
| 1120 | { |
Evan Stade | f30732f | 2007-07-24 17:18:47 -0700 | [diff] [blame] | 1121 | GpStatus retval; |
| 1122 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1123 | TRACE("(%p, %p, %p)\n", hdc, hDevice, graphics); |
| 1124 | |
Stefan Leichter | bfffb4f | 2007-12-23 10:56:32 +0100 | [diff] [blame] | 1125 | if(hDevice != NULL) { |
Ken Sharp | e3f4859 | 2009-06-09 21:48:05 +0100 | [diff] [blame] | 1126 | FIXME("Don't know how to handle parameter hDevice\n"); |
Stefan Leichter | bfffb4f | 2007-12-23 10:56:32 +0100 | [diff] [blame] | 1127 | return NotImplemented; |
| 1128 | } |
| 1129 | |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1130 | if(hdc == NULL) |
| 1131 | return OutOfMemory; |
| 1132 | |
| 1133 | if(graphics == NULL) |
| 1134 | return InvalidParameter; |
| 1135 | |
Evan Stade | 6490dad | 2007-06-22 19:27:02 -0700 | [diff] [blame] | 1136 | *graphics = GdipAlloc(sizeof(GpGraphics)); |
| 1137 | if(!*graphics) return OutOfMemory; |
| 1138 | |
Evan Stade | f30732f | 2007-07-24 17:18:47 -0700 | [diff] [blame] | 1139 | if((retval = GdipCreateMatrix(&(*graphics)->worldtrans)) != Ok){ |
| 1140 | GdipFree(*graphics); |
| 1141 | return retval; |
| 1142 | } |
| 1143 | |
Nikolay Sivov | ef50aa3 | 2008-08-27 02:03:27 +0400 | [diff] [blame] | 1144 | if((retval = GdipCreateRegion(&(*graphics)->clip)) != Ok){ |
| 1145 | GdipFree((*graphics)->worldtrans); |
| 1146 | GdipFree(*graphics); |
| 1147 | return retval; |
| 1148 | } |
| 1149 | |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1150 | (*graphics)->hdc = hdc; |
Nikolay Sivov | 7258dea | 2008-09-05 16:51:25 +0400 | [diff] [blame] | 1151 | (*graphics)->hwnd = WindowFromDC(hdc); |
Vincent Povirk | 8a3d9ff | 2009-04-24 13:29:56 -0500 | [diff] [blame] | 1152 | (*graphics)->owndc = FALSE; |
Evan Stade | 53e17d2 | 2007-07-13 17:51:13 -0700 | [diff] [blame] | 1153 | (*graphics)->smoothing = SmoothingModeDefault; |
Evan Stade | 60cad23 | 2007-07-13 17:51:25 -0700 | [diff] [blame] | 1154 | (*graphics)->compqual = CompositingQualityDefault; |
Evan Stade | a87ce7a | 2007-07-13 17:51:29 -0700 | [diff] [blame] | 1155 | (*graphics)->interpolation = InterpolationModeDefault; |
Evan Stade | d6bd866d | 2007-07-13 17:51:33 -0700 | [diff] [blame] | 1156 | (*graphics)->pixeloffset = PixelOffsetModeDefault; |
Evan Stade | e807eb9 | 2007-08-13 18:34:27 -0700 | [diff] [blame] | 1157 | (*graphics)->compmode = CompositingModeSourceOver; |
Evan Stade | 10b575b | 2007-07-23 20:24:41 -0700 | [diff] [blame] | 1158 | (*graphics)->unit = UnitDisplay; |
Evan Stade | 8162139 | 2007-07-24 17:18:39 -0700 | [diff] [blame] | 1159 | (*graphics)->scale = 1.0; |
Nikolay Sivov | 366ae1e | 2008-08-24 14:45:18 +0400 | [diff] [blame] | 1160 | (*graphics)->busy = FALSE; |
Nikolay Sivov | 56173d4 | 2008-11-09 14:32:26 +0300 | [diff] [blame] | 1161 | (*graphics)->textcontrast = 4; |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 1162 | list_init(&(*graphics)->containers); |
| 1163 | (*graphics)->contid = 0; |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1164 | |
Vincent Povirk | f8ca372 | 2009-12-18 15:09:45 -0600 | [diff] [blame] | 1165 | TRACE("<-- %p\n", *graphics); |
| 1166 | |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1167 | return Ok; |
| 1168 | } |
| 1169 | |
| 1170 | GpStatus WINGDIPAPI GdipCreateFromHWND(HWND hwnd, GpGraphics **graphics) |
| 1171 | { |
| 1172 | GpStatus ret; |
Vincent Povirk | c3d2395 | 2009-04-24 13:34:55 -0500 | [diff] [blame] | 1173 | HDC hdc; |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1174 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1175 | TRACE("(%p, %p)\n", hwnd, graphics); |
| 1176 | |
Vincent Povirk | c3d2395 | 2009-04-24 13:34:55 -0500 | [diff] [blame] | 1177 | hdc = GetDC(hwnd); |
| 1178 | |
| 1179 | if((ret = GdipCreateFromHDC(hdc, graphics)) != Ok) |
| 1180 | { |
| 1181 | ReleaseDC(hwnd, hdc); |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1182 | return ret; |
Vincent Povirk | c3d2395 | 2009-04-24 13:34:55 -0500 | [diff] [blame] | 1183 | } |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1184 | |
| 1185 | (*graphics)->hwnd = hwnd; |
Vincent Povirk | 8a3d9ff | 2009-04-24 13:29:56 -0500 | [diff] [blame] | 1186 | (*graphics)->owndc = TRUE; |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1187 | |
| 1188 | return Ok; |
| 1189 | } |
| 1190 | |
Nikolay Sivov | eb18ce9 | 2008-05-09 16:40:41 +0400 | [diff] [blame] | 1191 | /* FIXME: no icm handling */ |
| 1192 | GpStatus WINGDIPAPI GdipCreateFromHWNDICM(HWND hwnd, GpGraphics **graphics) |
| 1193 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1194 | TRACE("(%p, %p)\n", hwnd, graphics); |
| 1195 | |
Nikolay Sivov | eb18ce9 | 2008-05-09 16:40:41 +0400 | [diff] [blame] | 1196 | return GdipCreateFromHWND(hwnd, graphics); |
| 1197 | } |
| 1198 | |
Evan Stade | 5cc8c10 | 2007-07-24 17:19:05 -0700 | [diff] [blame] | 1199 | GpStatus WINGDIPAPI GdipCreateMetafileFromEmf(HENHMETAFILE hemf, BOOL delete, |
| 1200 | GpMetafile **metafile) |
| 1201 | { |
| 1202 | static int calls; |
| 1203 | |
| 1204 | if(!hemf || !metafile) |
| 1205 | return InvalidParameter; |
| 1206 | |
| 1207 | if(!(calls++)) |
| 1208 | FIXME("not implemented\n"); |
| 1209 | |
| 1210 | return NotImplemented; |
| 1211 | } |
| 1212 | |
Evan Stade | 021997f | 2007-07-24 17:19:15 -0700 | [diff] [blame] | 1213 | GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete, |
| 1214 | GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile) |
| 1215 | { |
Evan Stade | cfef981 | 2007-07-31 19:15:12 -0700 | [diff] [blame] | 1216 | IStream *stream = NULL; |
Evan Stade | 50799cf | 2007-07-30 19:10:03 -0700 | [diff] [blame] | 1217 | UINT read; |
| 1218 | BYTE* copy; |
Evan Stade | 50799cf | 2007-07-30 19:10:03 -0700 | [diff] [blame] | 1219 | HENHMETAFILE hemf; |
Vincent Povirk | 01b3295 | 2009-12-31 16:15:37 -0600 | [diff] [blame] | 1220 | GpStatus retval = Ok; |
Evan Stade | 021997f | 2007-07-24 17:19:15 -0700 | [diff] [blame] | 1221 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1222 | TRACE("(%p, %d, %p, %p)\n", hwmf, delete, placeable, metafile); |
| 1223 | |
Evan Stade | 021997f | 2007-07-24 17:19:15 -0700 | [diff] [blame] | 1224 | if(!hwmf || !metafile || !placeable) |
| 1225 | return InvalidParameter; |
Evan Stade | 7d03a41 | 2007-08-07 18:42:16 -0700 | [diff] [blame] | 1226 | |
| 1227 | *metafile = NULL; |
Evan Stade | 50799cf | 2007-07-30 19:10:03 -0700 | [diff] [blame] | 1228 | read = GetMetaFileBitsEx(hwmf, 0, NULL); |
| 1229 | if(!read) |
| 1230 | return GenericError; |
| 1231 | copy = GdipAlloc(read); |
| 1232 | GetMetaFileBitsEx(hwmf, read, copy); |
| 1233 | |
Evan Stade | 192e111 | 2007-08-01 17:55:33 -0700 | [diff] [blame] | 1234 | hemf = SetWinMetaFileBits(read, copy, NULL, NULL); |
Evan Stade | 50799cf | 2007-07-30 19:10:03 -0700 | [diff] [blame] | 1235 | GdipFree(copy); |
| 1236 | |
| 1237 | read = GetEnhMetaFileBits(hemf, 0, NULL); |
| 1238 | copy = GdipAlloc(read); |
| 1239 | GetEnhMetaFileBits(hemf, read, copy); |
| 1240 | DeleteEnhMetaFile(hemf); |
| 1241 | |
| 1242 | if(CreateStreamOnHGlobal(copy, TRUE, &stream) != S_OK){ |
| 1243 | ERR("could not make stream\n"); |
Evan Stade | 7d03a41 | 2007-08-07 18:42:16 -0700 | [diff] [blame] | 1244 | GdipFree(copy); |
Vincent Povirk | 01b3295 | 2009-12-31 16:15:37 -0600 | [diff] [blame] | 1245 | retval = GenericError; |
Evan Stade | 7d03a41 | 2007-08-07 18:42:16 -0700 | [diff] [blame] | 1246 | goto err; |
Evan Stade | 50799cf | 2007-07-30 19:10:03 -0700 | [diff] [blame] | 1247 | } |
| 1248 | |
| 1249 | *metafile = GdipAlloc(sizeof(GpMetafile)); |
Evan Stade | cfef981 | 2007-07-31 19:15:12 -0700 | [diff] [blame] | 1250 | if(!*metafile){ |
| 1251 | retval = OutOfMemory; |
Evan Stade | 7d03a41 | 2007-08-07 18:42:16 -0700 | [diff] [blame] | 1252 | goto err; |
Evan Stade | cfef981 | 2007-07-31 19:15:12 -0700 | [diff] [blame] | 1253 | } |
Evan Stade | 50799cf | 2007-07-30 19:10:03 -0700 | [diff] [blame] | 1254 | |
| 1255 | if(OleLoadPicture(stream, 0, FALSE, &IID_IPicture, |
Evan Stade | 7d03a41 | 2007-08-07 18:42:16 -0700 | [diff] [blame] | 1256 | (LPVOID*) &((*metafile)->image.picture)) != S_OK) |
Vincent Povirk | 01b3295 | 2009-12-31 16:15:37 -0600 | [diff] [blame] | 1257 | { |
| 1258 | retval = GenericError; |
Evan Stade | 7d03a41 | 2007-08-07 18:42:16 -0700 | [diff] [blame] | 1259 | goto err; |
Vincent Povirk | 01b3295 | 2009-12-31 16:15:37 -0600 | [diff] [blame] | 1260 | } |
Evan Stade | 7d03a41 | 2007-08-07 18:42:16 -0700 | [diff] [blame] | 1261 | |
Evan Stade | 50799cf | 2007-07-30 19:10:03 -0700 | [diff] [blame] | 1262 | |
| 1263 | (*metafile)->image.type = ImageTypeMetafile; |
Vincent Povirk | 0595fc5 | 2009-09-14 11:23:45 -0500 | [diff] [blame] | 1264 | memcpy(&(*metafile)->image.format, &ImageFormatWMF, sizeof(GUID)); |
Vincent Povirk | 39dc81c | 2009-12-11 16:51:46 -0600 | [diff] [blame] | 1265 | (*metafile)->image.palette_flags = 0; |
| 1266 | (*metafile)->image.palette_count = 0; |
| 1267 | (*metafile)->image.palette_size = 0; |
| 1268 | (*metafile)->image.palette_entries = NULL; |
Vincent Povirk | 1aea88c | 2009-12-26 20:46:55 -0500 | [diff] [blame] | 1269 | (*metafile)->image.xres = (REAL)placeable->Inch; |
| 1270 | (*metafile)->image.yres = (REAL)placeable->Inch; |
Evan Stade | 586e63e | 2007-07-30 19:09:57 -0700 | [diff] [blame] | 1271 | (*metafile)->bounds.X = ((REAL) placeable->BoundingBox.Left) / ((REAL) placeable->Inch); |
Vincent Povirk | c38d334 | 2009-12-26 20:07:37 -0500 | [diff] [blame] | 1272 | (*metafile)->bounds.Y = ((REAL) placeable->BoundingBox.Top) / ((REAL) placeable->Inch); |
Evan Stade | 586e63e | 2007-07-30 19:09:57 -0700 | [diff] [blame] | 1273 | (*metafile)->bounds.Width = ((REAL) (placeable->BoundingBox.Right |
| 1274 | - placeable->BoundingBox.Left)) / ((REAL) placeable->Inch); |
| 1275 | (*metafile)->bounds.Height = ((REAL) (placeable->BoundingBox.Bottom |
| 1276 | - placeable->BoundingBox.Top)) / ((REAL) placeable->Inch); |
| 1277 | (*metafile)->unit = UnitInch; |
| 1278 | |
Evan Stade | 50799cf | 2007-07-30 19:10:03 -0700 | [diff] [blame] | 1279 | if(delete) |
| 1280 | DeleteMetaFile(hwmf); |
| 1281 | |
Vincent Povirk | f8ca372 | 2009-12-18 15:09:45 -0600 | [diff] [blame] | 1282 | TRACE("<-- %p\n", *metafile); |
| 1283 | |
Evan Stade | 7d03a41 | 2007-08-07 18:42:16 -0700 | [diff] [blame] | 1284 | err: |
Vincent Povirk | 01b3295 | 2009-12-31 16:15:37 -0600 | [diff] [blame] | 1285 | if (retval != Ok) |
| 1286 | GdipFree(*metafile); |
Evan Stade | cfef981 | 2007-07-31 19:15:12 -0700 | [diff] [blame] | 1287 | IStream_Release(stream); |
Evan Stade | cfef981 | 2007-07-31 19:15:12 -0700 | [diff] [blame] | 1288 | return retval; |
Evan Stade | 021997f | 2007-07-24 17:19:15 -0700 | [diff] [blame] | 1289 | } |
| 1290 | |
Huw Davies | eb9d7f5 | 2008-07-10 15:30:30 +0100 | [diff] [blame] | 1291 | GpStatus WINGDIPAPI GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR *file, |
| 1292 | GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile) |
| 1293 | { |
| 1294 | HMETAFILE hmf = GetMetaFileW(file); |
| 1295 | |
| 1296 | TRACE("(%s, %p, %p)\n", debugstr_w(file), placeable, metafile); |
| 1297 | |
| 1298 | if(!hmf) return InvalidParameter; |
| 1299 | |
| 1300 | return GdipCreateMetafileFromWmf(hmf, TRUE, placeable, metafile); |
| 1301 | } |
| 1302 | |
Andrew Eikum | c02e75c | 2009-06-01 20:02:11 -0500 | [diff] [blame] | 1303 | GpStatus WINGDIPAPI GdipCreateMetafileFromFile(GDIPCONST WCHAR *file, |
| 1304 | GpMetafile **metafile) |
| 1305 | { |
| 1306 | FIXME("(%p, %p): stub\n", file, metafile); |
| 1307 | return NotImplemented; |
| 1308 | } |
| 1309 | |
| 1310 | GpStatus WINGDIPAPI GdipCreateMetafileFromStream(IStream *stream, |
| 1311 | GpMetafile **metafile) |
| 1312 | { |
| 1313 | FIXME("(%p, %p): stub\n", stream, metafile); |
| 1314 | return NotImplemented; |
| 1315 | } |
| 1316 | |
Evan Stade | 3ea77f5 | 2007-08-07 18:42:00 -0700 | [diff] [blame] | 1317 | GpStatus WINGDIPAPI GdipCreateStreamOnFile(GDIPCONST WCHAR * filename, |
| 1318 | UINT access, IStream **stream) |
| 1319 | { |
| 1320 | DWORD dwMode; |
| 1321 | HRESULT ret; |
| 1322 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1323 | TRACE("(%s, %u, %p)\n", debugstr_w(filename), access, stream); |
| 1324 | |
Evan Stade | 3ea77f5 | 2007-08-07 18:42:00 -0700 | [diff] [blame] | 1325 | if(!stream || !filename) |
| 1326 | return InvalidParameter; |
| 1327 | |
| 1328 | if(access & GENERIC_WRITE) |
| 1329 | dwMode = STGM_SHARE_DENY_WRITE | STGM_WRITE | STGM_CREATE; |
| 1330 | else if(access & GENERIC_READ) |
| 1331 | dwMode = STGM_SHARE_DENY_WRITE | STGM_READ | STGM_FAILIFTHERE; |
| 1332 | else |
| 1333 | return InvalidParameter; |
| 1334 | |
| 1335 | ret = SHCreateStreamOnFileW(filename, dwMode, stream); |
| 1336 | |
| 1337 | return hresult_to_status(ret); |
| 1338 | } |
| 1339 | |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1340 | GpStatus WINGDIPAPI GdipDeleteGraphics(GpGraphics *graphics) |
| 1341 | { |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 1342 | GraphicsContainerItem *cont, *next; |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1343 | TRACE("(%p)\n", graphics); |
| 1344 | |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1345 | if(!graphics) return InvalidParameter; |
Nikolay Sivov | 960de09 | 2008-08-26 01:58:33 +0400 | [diff] [blame] | 1346 | if(graphics->busy) return ObjectBusy; |
| 1347 | |
Vincent Povirk | 8a3d9ff | 2009-04-24 13:29:56 -0500 | [diff] [blame] | 1348 | if(graphics->owndc) |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1349 | ReleaseDC(graphics->hwnd, graphics->hdc); |
| 1350 | |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 1351 | LIST_FOR_EACH_ENTRY_SAFE(cont, next, &graphics->containers, GraphicsContainerItem, entry){ |
| 1352 | list_remove(&cont->entry); |
| 1353 | delete_container(cont); |
| 1354 | } |
| 1355 | |
Nikolay Sivov | ef50aa3 | 2008-08-27 02:03:27 +0400 | [diff] [blame] | 1356 | GdipDeleteRegion(graphics->clip); |
Evan Stade | f30732f | 2007-07-24 17:18:47 -0700 | [diff] [blame] | 1357 | GdipDeleteMatrix(graphics->worldtrans); |
Nikolay Sivov | 6e37ec6 | 2008-08-24 14:45:05 +0400 | [diff] [blame] | 1358 | GdipFree(graphics); |
Evan Stade | d50be49 | 2007-06-11 11:54:03 -0700 | [diff] [blame] | 1359 | |
| 1360 | return Ok; |
| 1361 | } |
Evan Stade | 2689b18 | 2007-06-12 10:44:31 -0700 | [diff] [blame] | 1362 | |
Evan Stade | c42f879 | 2007-06-19 19:31:19 -0700 | [diff] [blame] | 1363 | GpStatus WINGDIPAPI GdipDrawArc(GpGraphics *graphics, GpPen *pen, REAL x, |
| 1364 | REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle) |
| 1365 | { |
Evan Stade | 40f2273 | 2007-07-11 18:07:09 -0700 | [diff] [blame] | 1366 | INT save_state, num_pts; |
| 1367 | GpPointF points[MAX_ARC_PTS]; |
Evan Stade | fa31217 | 2007-07-11 18:07:39 -0700 | [diff] [blame] | 1368 | GpStatus retval; |
Evan Stade | c42f879 | 2007-06-19 19:31:19 -0700 | [diff] [blame] | 1369 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1370 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, |
| 1371 | width, height, startAngle, sweepAngle); |
| 1372 | |
Royal Chan | ea92872 | 2008-02-25 21:06:27 -0800 | [diff] [blame] | 1373 | if(!graphics || !pen || width <= 0 || height <= 0) |
Evan Stade | c42f879 | 2007-06-19 19:31:19 -0700 | [diff] [blame] | 1374 | return InvalidParameter; |
| 1375 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 1376 | if(graphics->busy) |
| 1377 | return ObjectBusy; |
| 1378 | |
Evan Stade | 40f2273 | 2007-07-11 18:07:09 -0700 | [diff] [blame] | 1379 | num_pts = arc2polybezier(points, x, y, width, height, startAngle, sweepAngle); |
Evan Stade | c42f879 | 2007-06-19 19:31:19 -0700 | [diff] [blame] | 1380 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 1381 | save_state = prepare_dc(graphics, pen); |
Evan Stade | c42f879 | 2007-06-19 19:31:19 -0700 | [diff] [blame] | 1382 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 1383 | retval = draw_polybezier(graphics, pen, points, num_pts, TRUE); |
Evan Stade | c42f879 | 2007-06-19 19:31:19 -0700 | [diff] [blame] | 1384 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 1385 | restore_dc(graphics, save_state); |
Evan Stade | c42f879 | 2007-06-19 19:31:19 -0700 | [diff] [blame] | 1386 | |
Evan Stade | fa31217 | 2007-07-11 18:07:39 -0700 | [diff] [blame] | 1387 | return retval; |
Evan Stade | c42f879 | 2007-06-19 19:31:19 -0700 | [diff] [blame] | 1388 | } |
| 1389 | |
Royal Chan | fc31303 | 2008-02-25 21:02:59 -0800 | [diff] [blame] | 1390 | GpStatus WINGDIPAPI GdipDrawArcI(GpGraphics *graphics, GpPen *pen, INT x, |
| 1391 | INT y, INT width, INT height, REAL startAngle, REAL sweepAngle) |
| 1392 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1393 | TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y, |
| 1394 | width, height, startAngle, sweepAngle); |
| 1395 | |
Nikolay Sivov | a77dc34 | 2008-05-08 00:39:05 +0400 | [diff] [blame] | 1396 | return GdipDrawArc(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle); |
Royal Chan | fc31303 | 2008-02-25 21:02:59 -0800 | [diff] [blame] | 1397 | } |
| 1398 | |
Evan Stade | 8b9f534 | 2007-06-15 21:27:38 -0700 | [diff] [blame] | 1399 | GpStatus WINGDIPAPI GdipDrawBezier(GpGraphics *graphics, GpPen *pen, REAL x1, |
| 1400 | REAL y1, REAL x2, REAL y2, REAL x3, REAL y3, REAL x4, REAL y4) |
| 1401 | { |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 1402 | INT save_state; |
| 1403 | GpPointF pt[4]; |
Evan Stade | fa31217 | 2007-07-11 18:07:39 -0700 | [diff] [blame] | 1404 | GpStatus retval; |
Evan Stade | 8b9f534 | 2007-06-15 21:27:38 -0700 | [diff] [blame] | 1405 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1406 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1, |
| 1407 | x2, y2, x3, y3, x4, y4); |
| 1408 | |
Evan Stade | 8b9f534 | 2007-06-15 21:27:38 -0700 | [diff] [blame] | 1409 | if(!graphics || !pen) |
| 1410 | return InvalidParameter; |
| 1411 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 1412 | if(graphics->busy) |
| 1413 | return ObjectBusy; |
| 1414 | |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 1415 | pt[0].X = x1; |
| 1416 | pt[0].Y = y1; |
| 1417 | pt[1].X = x2; |
| 1418 | pt[1].Y = y2; |
| 1419 | pt[2].X = x3; |
| 1420 | pt[2].Y = y3; |
| 1421 | pt[3].X = x4; |
| 1422 | pt[3].Y = y4; |
Evan Stade | 8b9f534 | 2007-06-15 21:27:38 -0700 | [diff] [blame] | 1423 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 1424 | save_state = prepare_dc(graphics, pen); |
Evan Stade | 8b9f534 | 2007-06-15 21:27:38 -0700 | [diff] [blame] | 1425 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 1426 | retval = draw_polybezier(graphics, pen, pt, 4, TRUE); |
Evan Stade | 69a807c | 2007-07-06 16:13:49 -0700 | [diff] [blame] | 1427 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 1428 | restore_dc(graphics, save_state); |
Evan Stade | 8b9f534 | 2007-06-15 21:27:38 -0700 | [diff] [blame] | 1429 | |
Evan Stade | fa31217 | 2007-07-11 18:07:39 -0700 | [diff] [blame] | 1430 | return retval; |
Evan Stade | 8b9f534 | 2007-06-15 21:27:38 -0700 | [diff] [blame] | 1431 | } |
| 1432 | |
Royal Chan | da161a5 | 2008-02-25 21:00:43 -0800 | [diff] [blame] | 1433 | GpStatus WINGDIPAPI GdipDrawBezierI(GpGraphics *graphics, GpPen *pen, INT x1, |
| 1434 | INT y1, INT x2, INT y2, INT x3, INT y3, INT x4, INT y4) |
| 1435 | { |
| 1436 | INT save_state; |
| 1437 | GpPointF pt[4]; |
| 1438 | GpStatus retval; |
| 1439 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1440 | TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d)\n", graphics, pen, x1, y1, |
| 1441 | x2, y2, x3, y3, x4, y4); |
| 1442 | |
Royal Chan | da161a5 | 2008-02-25 21:00:43 -0800 | [diff] [blame] | 1443 | if(!graphics || !pen) |
| 1444 | return InvalidParameter; |
| 1445 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 1446 | if(graphics->busy) |
| 1447 | return ObjectBusy; |
| 1448 | |
Royal Chan | da161a5 | 2008-02-25 21:00:43 -0800 | [diff] [blame] | 1449 | pt[0].X = x1; |
| 1450 | pt[0].Y = y1; |
| 1451 | pt[1].X = x2; |
| 1452 | pt[1].Y = y2; |
| 1453 | pt[2].X = x3; |
| 1454 | pt[2].Y = y3; |
| 1455 | pt[3].X = x4; |
| 1456 | pt[3].Y = y4; |
| 1457 | |
| 1458 | save_state = prepare_dc(graphics, pen); |
| 1459 | |
| 1460 | retval = draw_polybezier(graphics, pen, pt, 4, TRUE); |
| 1461 | |
| 1462 | restore_dc(graphics, save_state); |
| 1463 | |
| 1464 | return retval; |
| 1465 | } |
| 1466 | |
Nikolay Sivov | d020474 | 2008-07-03 03:04:50 +0400 | [diff] [blame] | 1467 | GpStatus WINGDIPAPI GdipDrawBeziers(GpGraphics *graphics, GpPen *pen, |
| 1468 | GDIPCONST GpPointF *points, INT count) |
| 1469 | { |
| 1470 | INT i; |
| 1471 | GpStatus ret; |
| 1472 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1473 | TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count); |
| 1474 | |
Nikolay Sivov | d020474 | 2008-07-03 03:04:50 +0400 | [diff] [blame] | 1475 | if(!graphics || !pen || !points || (count <= 0)) |
| 1476 | return InvalidParameter; |
| 1477 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 1478 | if(graphics->busy) |
| 1479 | return ObjectBusy; |
| 1480 | |
Nikolay Sivov | d020474 | 2008-07-03 03:04:50 +0400 | [diff] [blame] | 1481 | for(i = 0; i < floor(count / 4); i++){ |
| 1482 | ret = GdipDrawBezier(graphics, pen, |
| 1483 | points[4*i].X, points[4*i].Y, |
| 1484 | points[4*i + 1].X, points[4*i + 1].Y, |
| 1485 | points[4*i + 2].X, points[4*i + 2].Y, |
| 1486 | points[4*i + 3].X, points[4*i + 3].Y); |
| 1487 | if(ret != Ok) |
| 1488 | return ret; |
| 1489 | } |
| 1490 | |
| 1491 | return Ok; |
| 1492 | } |
| 1493 | |
| 1494 | GpStatus WINGDIPAPI GdipDrawBeziersI(GpGraphics *graphics, GpPen *pen, |
| 1495 | GDIPCONST GpPoint *points, INT count) |
| 1496 | { |
| 1497 | GpPointF *pts; |
| 1498 | GpStatus ret; |
| 1499 | INT i; |
| 1500 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1501 | TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count); |
| 1502 | |
Nikolay Sivov | d020474 | 2008-07-03 03:04:50 +0400 | [diff] [blame] | 1503 | if(!graphics || !pen || !points || (count <= 0)) |
| 1504 | return InvalidParameter; |
| 1505 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 1506 | if(graphics->busy) |
| 1507 | return ObjectBusy; |
| 1508 | |
Nikolay Sivov | d020474 | 2008-07-03 03:04:50 +0400 | [diff] [blame] | 1509 | pts = GdipAlloc(sizeof(GpPointF) * count); |
| 1510 | if(!pts) |
| 1511 | return OutOfMemory; |
| 1512 | |
| 1513 | for(i = 0; i < count; i++){ |
| 1514 | pts[i].X = (REAL)points[i].X; |
| 1515 | pts[i].Y = (REAL)points[i].Y; |
| 1516 | } |
| 1517 | |
| 1518 | ret = GdipDrawBeziers(graphics,pen,pts,count); |
| 1519 | |
| 1520 | GdipFree(pts); |
| 1521 | |
| 1522 | return ret; |
| 1523 | } |
| 1524 | |
Nikolay Sivov | 55916bb | 2008-07-09 00:39:31 +0400 | [diff] [blame] | 1525 | GpStatus WINGDIPAPI GdipDrawClosedCurve(GpGraphics *graphics, GpPen *pen, |
| 1526 | GDIPCONST GpPointF *points, INT count) |
| 1527 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1528 | TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count); |
| 1529 | |
Nikolay Sivov | 55916bb | 2008-07-09 00:39:31 +0400 | [diff] [blame] | 1530 | return GdipDrawClosedCurve2(graphics, pen, points, count, 1.0); |
| 1531 | } |
| 1532 | |
| 1533 | GpStatus WINGDIPAPI GdipDrawClosedCurveI(GpGraphics *graphics, GpPen *pen, |
| 1534 | GDIPCONST GpPoint *points, INT count) |
| 1535 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1536 | TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count); |
| 1537 | |
Nikolay Sivov | 55916bb | 2008-07-09 00:39:31 +0400 | [diff] [blame] | 1538 | return GdipDrawClosedCurve2I(graphics, pen, points, count, 1.0); |
| 1539 | } |
| 1540 | |
Nikolay Sivov | 8b8864b | 2008-07-09 00:39:19 +0400 | [diff] [blame] | 1541 | GpStatus WINGDIPAPI GdipDrawClosedCurve2(GpGraphics *graphics, GpPen *pen, |
| 1542 | GDIPCONST GpPointF *points, INT count, REAL tension) |
| 1543 | { |
Nikolay Sivov | 9c60a57 | 2008-09-03 19:57:09 +0400 | [diff] [blame] | 1544 | GpPath *path; |
Nikolay Sivov | 8b8864b | 2008-07-09 00:39:19 +0400 | [diff] [blame] | 1545 | GpStatus stat; |
| 1546 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1547 | TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension); |
| 1548 | |
Nikolay Sivov | 8b8864b | 2008-07-09 00:39:19 +0400 | [diff] [blame] | 1549 | if(!graphics || !pen || !points || count <= 0) |
| 1550 | return InvalidParameter; |
| 1551 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 1552 | if(graphics->busy) |
| 1553 | return ObjectBusy; |
| 1554 | |
Nikolay Sivov | 9c60a57 | 2008-09-03 19:57:09 +0400 | [diff] [blame] | 1555 | if((stat = GdipCreatePath(FillModeAlternate, &path)) != Ok) |
| 1556 | return stat; |
Nikolay Sivov | 8b8864b | 2008-07-09 00:39:19 +0400 | [diff] [blame] | 1557 | |
Nikolay Sivov | 9c60a57 | 2008-09-03 19:57:09 +0400 | [diff] [blame] | 1558 | stat = GdipAddPathClosedCurve2(path, points, count, tension); |
| 1559 | if(stat != Ok){ |
| 1560 | GdipDeletePath(path); |
| 1561 | return stat; |
| 1562 | } |
Nikolay Sivov | 8b8864b | 2008-07-09 00:39:19 +0400 | [diff] [blame] | 1563 | |
Nikolay Sivov | 9c60a57 | 2008-09-03 19:57:09 +0400 | [diff] [blame] | 1564 | stat = GdipDrawPath(graphics, pen, path); |
Nikolay Sivov | 8b8864b | 2008-07-09 00:39:19 +0400 | [diff] [blame] | 1565 | |
Nikolay Sivov | 9c60a57 | 2008-09-03 19:57:09 +0400 | [diff] [blame] | 1566 | GdipDeletePath(path); |
Nikolay Sivov | 8b8864b | 2008-07-09 00:39:19 +0400 | [diff] [blame] | 1567 | |
| 1568 | return stat; |
| 1569 | } |
| 1570 | |
| 1571 | GpStatus WINGDIPAPI GdipDrawClosedCurve2I(GpGraphics *graphics, GpPen *pen, |
| 1572 | GDIPCONST GpPoint *points, INT count, REAL tension) |
| 1573 | { |
| 1574 | GpPointF *ptf; |
| 1575 | GpStatus stat; |
| 1576 | INT i; |
| 1577 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1578 | TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension); |
| 1579 | |
Nikolay Sivov | 8b8864b | 2008-07-09 00:39:19 +0400 | [diff] [blame] | 1580 | if(!points || count <= 0) |
| 1581 | return InvalidParameter; |
| 1582 | |
| 1583 | ptf = GdipAlloc(sizeof(GpPointF)*count); |
| 1584 | if(!ptf) |
| 1585 | return OutOfMemory; |
| 1586 | |
| 1587 | for(i = 0; i < count; i++){ |
| 1588 | ptf[i].X = (REAL)points[i].X; |
| 1589 | ptf[i].Y = (REAL)points[i].Y; |
| 1590 | } |
| 1591 | |
| 1592 | stat = GdipDrawClosedCurve2(graphics, pen, ptf, count, tension); |
| 1593 | |
| 1594 | GdipFree(ptf); |
| 1595 | |
| 1596 | return stat; |
| 1597 | } |
| 1598 | |
Nikolay Sivov | fe1782e | 2008-04-29 00:09:55 +0400 | [diff] [blame] | 1599 | GpStatus WINGDIPAPI GdipDrawCurve(GpGraphics *graphics, GpPen *pen, |
| 1600 | GDIPCONST GpPointF *points, INT count) |
| 1601 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1602 | TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count); |
| 1603 | |
Nikolay Sivov | fe1782e | 2008-04-29 00:09:55 +0400 | [diff] [blame] | 1604 | return GdipDrawCurve2(graphics,pen,points,count,1.0); |
| 1605 | } |
| 1606 | |
| 1607 | GpStatus WINGDIPAPI GdipDrawCurveI(GpGraphics *graphics, GpPen *pen, |
| 1608 | GDIPCONST GpPoint *points, INT count) |
| 1609 | { |
| 1610 | GpPointF *pointsF; |
| 1611 | GpStatus ret; |
| 1612 | INT i; |
| 1613 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1614 | TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count); |
| 1615 | |
Andrew Eikum | fe55f0d | 2009-06-28 13:33:52 -0500 | [diff] [blame] | 1616 | if(!points) |
Nikolay Sivov | fe1782e | 2008-04-29 00:09:55 +0400 | [diff] [blame] | 1617 | return InvalidParameter; |
| 1618 | |
| 1619 | pointsF = GdipAlloc(sizeof(GpPointF)*count); |
| 1620 | if(!pointsF) |
| 1621 | return OutOfMemory; |
| 1622 | |
| 1623 | for(i = 0; i < count; i++){ |
| 1624 | pointsF[i].X = (REAL)points[i].X; |
| 1625 | pointsF[i].Y = (REAL)points[i].Y; |
| 1626 | } |
| 1627 | |
| 1628 | ret = GdipDrawCurve(graphics,pen,pointsF,count); |
| 1629 | GdipFree(pointsF); |
| 1630 | |
| 1631 | return ret; |
| 1632 | } |
| 1633 | |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1634 | /* Approximates cardinal spline with Bezier curves. */ |
| 1635 | GpStatus WINGDIPAPI GdipDrawCurve2(GpGraphics *graphics, GpPen *pen, |
| 1636 | GDIPCONST GpPointF *points, INT count, REAL tension) |
| 1637 | { |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1638 | /* PolyBezier expects count*3-2 points. */ |
Evan Stade | b72dc0d | 2007-07-09 20:54:23 -0700 | [diff] [blame] | 1639 | INT i, len_pt = count*3-2, save_state; |
| 1640 | GpPointF *pt; |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1641 | REAL x1, x2, y1, y2; |
Evan Stade | fa31217 | 2007-07-11 18:07:39 -0700 | [diff] [blame] | 1642 | GpStatus retval; |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1643 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1644 | TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension); |
| 1645 | |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1646 | if(!graphics || !pen) |
| 1647 | return InvalidParameter; |
| 1648 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 1649 | if(graphics->busy) |
| 1650 | return ObjectBusy; |
| 1651 | |
Andrew Eikum | 119e9af | 2009-06-06 12:02:29 -0500 | [diff] [blame] | 1652 | if(count < 2) |
| 1653 | return InvalidParameter; |
| 1654 | |
Evan Stade | b72dc0d | 2007-07-09 20:54:23 -0700 | [diff] [blame] | 1655 | pt = GdipAlloc(len_pt * sizeof(GpPointF)); |
Andrew Eikum | 119e9af | 2009-06-06 12:02:29 -0500 | [diff] [blame] | 1656 | if(!pt) |
| 1657 | return OutOfMemory; |
| 1658 | |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1659 | tension = tension * TENSION_CONST; |
| 1660 | |
| 1661 | calc_curve_bezier_endp(points[0].X, points[0].Y, points[1].X, points[1].Y, |
| 1662 | tension, &x1, &y1); |
| 1663 | |
Evan Stade | b72dc0d | 2007-07-09 20:54:23 -0700 | [diff] [blame] | 1664 | pt[0].X = points[0].X; |
| 1665 | pt[0].Y = points[0].Y; |
| 1666 | pt[1].X = x1; |
| 1667 | pt[1].Y = y1; |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1668 | |
| 1669 | for(i = 0; i < count-2; i++){ |
| 1670 | calc_curve_bezier(&(points[i]), tension, &x1, &y1, &x2, &y2); |
| 1671 | |
Evan Stade | b72dc0d | 2007-07-09 20:54:23 -0700 | [diff] [blame] | 1672 | pt[3*i+2].X = x1; |
| 1673 | pt[3*i+2].Y = y1; |
| 1674 | pt[3*i+3].X = points[i+1].X; |
| 1675 | pt[3*i+3].Y = points[i+1].Y; |
| 1676 | pt[3*i+4].X = x2; |
| 1677 | pt[3*i+4].Y = y2; |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1678 | } |
| 1679 | |
| 1680 | calc_curve_bezier_endp(points[count-1].X, points[count-1].Y, |
| 1681 | points[count-2].X, points[count-2].Y, tension, &x1, &y1); |
| 1682 | |
Evan Stade | b72dc0d | 2007-07-09 20:54:23 -0700 | [diff] [blame] | 1683 | pt[len_pt-2].X = x1; |
| 1684 | pt[len_pt-2].Y = y1; |
| 1685 | pt[len_pt-1].X = points[count-1].X; |
| 1686 | pt[len_pt-1].Y = points[count-1].Y; |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1687 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 1688 | save_state = prepare_dc(graphics, pen); |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1689 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 1690 | retval = draw_polybezier(graphics, pen, pt, len_pt, TRUE); |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1691 | |
Evan Stade | b72dc0d | 2007-07-09 20:54:23 -0700 | [diff] [blame] | 1692 | GdipFree(pt); |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 1693 | restore_dc(graphics, save_state); |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1694 | |
Evan Stade | fa31217 | 2007-07-11 18:07:39 -0700 | [diff] [blame] | 1695 | return retval; |
Evan Stade | 5c8b83c | 2007-06-19 19:31:28 -0700 | [diff] [blame] | 1696 | } |
| 1697 | |
Nikolay Sivov | 00cfffb | 2008-04-29 00:09:44 +0400 | [diff] [blame] | 1698 | GpStatus WINGDIPAPI GdipDrawCurve2I(GpGraphics *graphics, GpPen *pen, |
| 1699 | GDIPCONST GpPoint *points, INT count, REAL tension) |
| 1700 | { |
| 1701 | GpPointF *pointsF; |
| 1702 | GpStatus ret; |
| 1703 | INT i; |
| 1704 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1705 | TRACE("(%p, %p, %p, %d, %.2f)\n", graphics, pen, points, count, tension); |
| 1706 | |
Andrew Eikum | c2aa66d | 2009-06-28 13:33:59 -0500 | [diff] [blame] | 1707 | if(!points) |
Nikolay Sivov | 00cfffb | 2008-04-29 00:09:44 +0400 | [diff] [blame] | 1708 | return InvalidParameter; |
| 1709 | |
| 1710 | pointsF = GdipAlloc(sizeof(GpPointF)*count); |
| 1711 | if(!pointsF) |
| 1712 | return OutOfMemory; |
| 1713 | |
| 1714 | for(i = 0; i < count; i++){ |
| 1715 | pointsF[i].X = (REAL)points[i].X; |
| 1716 | pointsF[i].Y = (REAL)points[i].Y; |
| 1717 | } |
| 1718 | |
| 1719 | ret = GdipDrawCurve2(graphics,pen,pointsF,count,tension); |
| 1720 | GdipFree(pointsF); |
| 1721 | |
| 1722 | return ret; |
| 1723 | } |
| 1724 | |
Andrew Eikum | 4c0edba | 2009-06-29 22:12:40 -0500 | [diff] [blame] | 1725 | GpStatus WINGDIPAPI GdipDrawCurve3(GpGraphics *graphics, GpPen *pen, |
| 1726 | GDIPCONST GpPointF *points, INT count, INT offset, INT numberOfSegments, |
| 1727 | REAL tension) |
| 1728 | { |
| 1729 | TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension); |
| 1730 | |
| 1731 | if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){ |
| 1732 | return InvalidParameter; |
| 1733 | } |
| 1734 | |
| 1735 | return GdipDrawCurve2(graphics, pen, points + offset, numberOfSegments + 1, tension); |
| 1736 | } |
| 1737 | |
| 1738 | GpStatus WINGDIPAPI GdipDrawCurve3I(GpGraphics *graphics, GpPen *pen, |
| 1739 | GDIPCONST GpPoint *points, INT count, INT offset, INT numberOfSegments, |
| 1740 | REAL tension) |
| 1741 | { |
| 1742 | TRACE("(%p, %p, %p, %d, %d, %d, %.2f)\n", graphics, pen, points, count, offset, numberOfSegments, tension); |
| 1743 | |
| 1744 | if(count < 0){ |
| 1745 | return OutOfMemory; |
| 1746 | } |
| 1747 | |
| 1748 | if(offset >= count || numberOfSegments > count - offset - 1 || numberOfSegments <= 0){ |
| 1749 | return InvalidParameter; |
| 1750 | } |
| 1751 | |
| 1752 | return GdipDrawCurve2I(graphics, pen, points + offset, numberOfSegments + 1, tension); |
| 1753 | } |
| 1754 | |
Przemysław Białek | 864384e | 2008-06-27 10:59:23 +0200 | [diff] [blame] | 1755 | GpStatus WINGDIPAPI GdipDrawEllipse(GpGraphics *graphics, GpPen *pen, REAL x, |
| 1756 | REAL y, REAL width, REAL height) |
| 1757 | { |
| 1758 | INT save_state; |
| 1759 | GpPointF ptf[2]; |
| 1760 | POINT pti[2]; |
| 1761 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1762 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height); |
| 1763 | |
Przemysław Białek | 864384e | 2008-06-27 10:59:23 +0200 | [diff] [blame] | 1764 | if(!graphics || !pen) |
| 1765 | return InvalidParameter; |
| 1766 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 1767 | if(graphics->busy) |
| 1768 | return ObjectBusy; |
| 1769 | |
Przemysław Białek | 864384e | 2008-06-27 10:59:23 +0200 | [diff] [blame] | 1770 | ptf[0].X = x; |
| 1771 | ptf[0].Y = y; |
| 1772 | ptf[1].X = x + width; |
| 1773 | ptf[1].Y = y + height; |
| 1774 | |
| 1775 | save_state = prepare_dc(graphics, pen); |
| 1776 | SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH)); |
| 1777 | |
| 1778 | transform_and_round_points(graphics, pti, ptf, 2); |
| 1779 | |
| 1780 | Ellipse(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y); |
| 1781 | |
| 1782 | restore_dc(graphics, save_state); |
| 1783 | |
| 1784 | return Ok; |
| 1785 | } |
| 1786 | |
| 1787 | GpStatus WINGDIPAPI GdipDrawEllipseI(GpGraphics *graphics, GpPen *pen, INT x, |
| 1788 | INT y, INT width, INT height) |
| 1789 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1790 | TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height); |
| 1791 | |
Przemysław Białek | 864384e | 2008-06-27 10:59:23 +0200 | [diff] [blame] | 1792 | return GdipDrawEllipse(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height); |
| 1793 | } |
| 1794 | |
| 1795 | |
Nikolay Sivov | 4924704 | 2008-04-29 00:10:01 +0400 | [diff] [blame] | 1796 | GpStatus WINGDIPAPI GdipDrawImage(GpGraphics *graphics, GpImage *image, REAL x, REAL y) |
| 1797 | { |
Vincent Povirk | e72defc | 2009-08-20 16:16:05 -0500 | [diff] [blame] | 1798 | UINT width, height; |
| 1799 | GpPointF points[3]; |
| 1800 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1801 | TRACE("(%p, %p, %.2f, %.2f)\n", graphics, image, x, y); |
| 1802 | |
Evan Stade | de351ab | 2007-08-07 18:42:12 -0700 | [diff] [blame] | 1803 | if(!graphics || !image) |
| 1804 | return InvalidParameter; |
| 1805 | |
| 1806 | GdipGetImageWidth(image, &width); |
| 1807 | GdipGetImageHeight(image, &height); |
| 1808 | |
Vincent Povirk | e72defc | 2009-08-20 16:16:05 -0500 | [diff] [blame] | 1809 | /* FIXME: we should use the graphics and image dpi, somehow */ |
Evan Stade | de351ab | 2007-08-07 18:42:12 -0700 | [diff] [blame] | 1810 | |
Vincent Povirk | e72defc | 2009-08-20 16:16:05 -0500 | [diff] [blame] | 1811 | points[0].X = points[2].X = x; |
| 1812 | points[0].Y = points[1].Y = y; |
| 1813 | points[1].X = x + width; |
| 1814 | points[2].Y = y + height; |
Evan Stade | de351ab | 2007-08-07 18:42:12 -0700 | [diff] [blame] | 1815 | |
Vincent Povirk | e72defc | 2009-08-20 16:16:05 -0500 | [diff] [blame] | 1816 | return GdipDrawImagePointsRect(graphics, image, points, 3, 0, 0, width, height, |
| 1817 | UnitPixel, NULL, NULL, NULL); |
| 1818 | } |
Evan Stade | de351ab | 2007-08-07 18:42:12 -0700 | [diff] [blame] | 1819 | |
Vincent Povirk | e72defc | 2009-08-20 16:16:05 -0500 | [diff] [blame] | 1820 | GpStatus WINGDIPAPI GdipDrawImageI(GpGraphics *graphics, GpImage *image, INT x, |
| 1821 | INT y) |
| 1822 | { |
| 1823 | TRACE("(%p, %p, %d, %d)\n", graphics, image, x, y); |
| 1824 | |
| 1825 | return GdipDrawImage(graphics, image, (REAL)x, (REAL)y); |
Evan Stade | de351ab | 2007-08-07 18:42:12 -0700 | [diff] [blame] | 1826 | } |
| 1827 | |
Andrew Eikum | eec8d51 | 2009-06-02 22:34:37 -0500 | [diff] [blame] | 1828 | GpStatus WINGDIPAPI GdipDrawImagePointRect(GpGraphics *graphics, GpImage *image, |
| 1829 | REAL x, REAL y, REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight, |
| 1830 | GpUnit srcUnit) |
| 1831 | { |
Vincent Povirk | 94ab233 | 2009-09-04 12:51:48 -0500 | [diff] [blame] | 1832 | GpPointF points[3]; |
| 1833 | TRACE("(%p, %p, %f, %f, %f, %f, %f, %f, %d)\n", graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit); |
| 1834 | |
| 1835 | points[0].X = points[2].X = x; |
| 1836 | points[0].Y = points[1].Y = y; |
| 1837 | |
| 1838 | /* FIXME: convert image coordinates to Graphics coordinates? */ |
| 1839 | points[1].X = x + srcwidth; |
| 1840 | points[2].Y = y + srcheight; |
| 1841 | |
| 1842 | return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy, |
| 1843 | srcwidth, srcheight, srcUnit, NULL, NULL, NULL); |
Andrew Eikum | eec8d51 | 2009-06-02 22:34:37 -0500 | [diff] [blame] | 1844 | } |
| 1845 | |
| 1846 | GpStatus WINGDIPAPI GdipDrawImagePointRectI(GpGraphics *graphics, GpImage *image, |
| 1847 | INT x, INT y, INT srcx, INT srcy, INT srcwidth, INT srcheight, |
| 1848 | GpUnit srcUnit) |
| 1849 | { |
Vincent Povirk | 94ab233 | 2009-09-04 12:51:48 -0500 | [diff] [blame] | 1850 | return GdipDrawImagePointRect(graphics, image, x, y, srcx, srcy, srcwidth, srcheight, srcUnit); |
Andrew Eikum | eec8d51 | 2009-06-02 22:34:37 -0500 | [diff] [blame] | 1851 | } |
| 1852 | |
Andrew Eikum | 156eeb0 | 2009-06-03 23:31:21 -0500 | [diff] [blame] | 1853 | GpStatus WINGDIPAPI GdipDrawImagePoints(GpGraphics *graphics, GpImage *image, |
| 1854 | GDIPCONST GpPointF *dstpoints, INT count) |
| 1855 | { |
| 1856 | FIXME("(%p, %p, %p, %d): stub\n", graphics, image, dstpoints, count); |
| 1857 | return NotImplemented; |
| 1858 | } |
| 1859 | |
| 1860 | GpStatus WINGDIPAPI GdipDrawImagePointsI(GpGraphics *graphics, GpImage *image, |
| 1861 | GDIPCONST GpPoint *dstpoints, INT count) |
| 1862 | { |
| 1863 | FIXME("(%p, %p, %p, %d): stub\n", graphics, image, dstpoints, count); |
| 1864 | return NotImplemented; |
| 1865 | } |
| 1866 | |
Evan Stade | 04d4c26 | 2007-08-09 18:25:09 -0700 | [diff] [blame] | 1867 | /* FIXME: partially implemented (only works for rectangular parallelograms) */ |
Evan Stade | 460f01b | 2007-07-30 19:09:45 -0700 | [diff] [blame] | 1868 | GpStatus WINGDIPAPI GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image, |
Evan Stade | a9c4f30 | 2007-07-30 19:10:07 -0700 | [diff] [blame] | 1869 | GDIPCONST GpPointF *points, INT count, REAL srcx, REAL srcy, REAL srcwidth, |
| 1870 | REAL srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes, |
| 1871 | DrawImageAbort callback, VOID * callbackData) |
Evan Stade | 460f01b | 2007-07-30 19:09:45 -0700 | [diff] [blame] | 1872 | { |
Evan Stade | a9c4f30 | 2007-07-30 19:10:07 -0700 | [diff] [blame] | 1873 | GpPointF ptf[3]; |
| 1874 | POINT pti[3]; |
Evan Stade | 6e0c574 | 2007-07-31 19:16:23 -0700 | [diff] [blame] | 1875 | REAL dx, dy; |
Evan Stade | 460f01b | 2007-07-30 19:09:45 -0700 | [diff] [blame] | 1876 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 1877 | TRACE("(%p, %p, %p, %d, %f, %f, %f, %f, %d, %p, %p, %p)\n", graphics, image, points, |
| 1878 | count, srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback, |
Evan Stade | a9c4f30 | 2007-07-30 19:10:07 -0700 | [diff] [blame] | 1879 | callbackData); |
Evan Stade | 460f01b | 2007-07-30 19:09:45 -0700 | [diff] [blame] | 1880 | |
Nikolay Sivov | 8cf5608 | 2008-04-25 01:58:36 +0400 | [diff] [blame] | 1881 | if(!graphics || !image || !points || count != 3) |
Evan Stade | a9c4f30 | 2007-07-30 19:10:07 -0700 | [diff] [blame] | 1882 | return InvalidParameter; |
Evan Stade | 460f01b | 2007-07-30 19:09:45 -0700 | [diff] [blame] | 1883 | |
Vincent Povirk | 7ded3d8 | 2009-12-18 15:45:02 -0600 | [diff] [blame] | 1884 | TRACE("%s %s %s\n", debugstr_pointf(&points[0]), debugstr_pointf(&points[1]), |
| 1885 | debugstr_pointf(&points[2])); |
| 1886 | |
Evan Stade | a9c4f30 | 2007-07-30 19:10:07 -0700 | [diff] [blame] | 1887 | memcpy(ptf, points, 3 * sizeof(GpPointF)); |
| 1888 | transform_and_round_points(graphics, pti, ptf, 3); |
| 1889 | |
Vincent Povirk | 436b3be | 2009-08-28 16:21:27 -0500 | [diff] [blame] | 1890 | if (image->picture) |
| 1891 | { |
| 1892 | if(srcUnit == UnitInch) |
| 1893 | dx = dy = (REAL) INCH_HIMETRIC; |
| 1894 | else if(srcUnit == UnitPixel){ |
| 1895 | dx = ((REAL) INCH_HIMETRIC) / |
| 1896 | ((REAL) GetDeviceCaps(graphics->hdc, LOGPIXELSX)); |
| 1897 | dy = ((REAL) INCH_HIMETRIC) / |
| 1898 | ((REAL) GetDeviceCaps(graphics->hdc, LOGPIXELSY)); |
| 1899 | } |
| 1900 | else |
| 1901 | return NotImplemented; |
Evan Stade | 6e0c574 | 2007-07-31 19:16:23 -0700 | [diff] [blame] | 1902 | |
Vincent Povirk | 436b3be | 2009-08-28 16:21:27 -0500 | [diff] [blame] | 1903 | if(IPicture_Render(image->picture, graphics->hdc, |
| 1904 | pti[0].x, pti[0].y, pti[1].x - pti[0].x, pti[2].y - pti[0].y, |
| 1905 | srcx * dx, srcy * dy, |
| 1906 | srcwidth * dx, srcheight * dy, |
| 1907 | NULL) != S_OK){ |
| 1908 | if(callback) |
| 1909 | callback(callbackData); |
| 1910 | return GenericError; |
| 1911 | } |
| 1912 | } |
| 1913 | else if (image->type == ImageTypeBitmap && ((GpBitmap*)image)->hbitmap) |
| 1914 | { |
| 1915 | HDC hdc; |
| 1916 | GpBitmap* bitmap = (GpBitmap*)image; |
Vincent Povirk | 895c6d8 | 2009-08-28 17:21:10 -0500 | [diff] [blame] | 1917 | int temp_hdc=0, temp_bitmap=0; |
| 1918 | HBITMAP hbitmap, old_hbm=NULL; |
Vincent Povirk | 436b3be | 2009-08-28 16:21:27 -0500 | [diff] [blame] | 1919 | |
| 1920 | if (srcUnit == UnitInch) |
| 1921 | dx = dy = 96.0; /* FIXME: use the image resolution */ |
| 1922 | else if (srcUnit == UnitPixel) |
| 1923 | dx = dy = 1.0; |
| 1924 | else |
| 1925 | return NotImplemented; |
| 1926 | |
Vincent Povirk | 895c6d8 | 2009-08-28 17:21:10 -0500 | [diff] [blame] | 1927 | if (bitmap->format == PixelFormat32bppARGB) |
Vincent Povirk | 436b3be | 2009-08-28 16:21:27 -0500 | [diff] [blame] | 1928 | { |
Vincent Povirk | 895c6d8 | 2009-08-28 17:21:10 -0500 | [diff] [blame] | 1929 | BITMAPINFOHEADER bih; |
| 1930 | BYTE *temp_bits; |
| 1931 | |
| 1932 | /* we need a bitmap with premultiplied alpha */ |
Vincent Povirk | 436b3be | 2009-08-28 16:21:27 -0500 | [diff] [blame] | 1933 | hdc = CreateCompatibleDC(0); |
Vincent Povirk | 895c6d8 | 2009-08-28 17:21:10 -0500 | [diff] [blame] | 1934 | temp_hdc = 1; |
| 1935 | temp_bitmap = 1; |
| 1936 | |
| 1937 | bih.biSize = sizeof(BITMAPINFOHEADER); |
| 1938 | bih.biWidth = bitmap->width; |
| 1939 | bih.biHeight = -bitmap->height; |
| 1940 | bih.biPlanes = 1; |
| 1941 | bih.biBitCount = 32; |
| 1942 | bih.biCompression = BI_RGB; |
| 1943 | bih.biSizeImage = 0; |
| 1944 | bih.biXPelsPerMeter = 0; |
| 1945 | bih.biYPelsPerMeter = 0; |
| 1946 | bih.biClrUsed = 0; |
| 1947 | bih.biClrImportant = 0; |
| 1948 | |
| 1949 | hbitmap = CreateDIBSection(hdc, (BITMAPINFO*)&bih, DIB_RGB_COLORS, |
| 1950 | (void**)&temp_bits, NULL, 0); |
| 1951 | |
| 1952 | convert_32bppARGB_to_32bppPARGB(bitmap->width, bitmap->height, |
| 1953 | temp_bits, bitmap->width*4, bitmap->bits, bitmap->stride); |
| 1954 | } |
| 1955 | else |
| 1956 | { |
| 1957 | hbitmap = bitmap->hbitmap; |
| 1958 | hdc = bitmap->hdc; |
| 1959 | temp_hdc = (hdc == 0); |
Vincent Povirk | 436b3be | 2009-08-28 16:21:27 -0500 | [diff] [blame] | 1960 | } |
| 1961 | |
Vincent Povirk | 895c6d8 | 2009-08-28 17:21:10 -0500 | [diff] [blame] | 1962 | if (temp_hdc) |
| 1963 | { |
| 1964 | if (!hdc) hdc = CreateCompatibleDC(0); |
| 1965 | old_hbm = SelectObject(hdc, hbitmap); |
| 1966 | } |
Vincent Povirk | 436b3be | 2009-08-28 16:21:27 -0500 | [diff] [blame] | 1967 | |
Vincent Povirk | 895c6d8 | 2009-08-28 17:21:10 -0500 | [diff] [blame] | 1968 | if (bitmap->format == PixelFormat32bppARGB || bitmap->format == PixelFormat32bppPARGB) |
| 1969 | { |
| 1970 | BLENDFUNCTION bf; |
| 1971 | |
| 1972 | bf.BlendOp = AC_SRC_OVER; |
| 1973 | bf.BlendFlags = 0; |
| 1974 | bf.SourceConstantAlpha = 255; |
| 1975 | bf.AlphaFormat = AC_SRC_ALPHA; |
| 1976 | |
| 1977 | GdiAlphaBlend(graphics->hdc, pti[0].x, pti[0].y, pti[1].x-pti[0].x, pti[2].y-pti[0].y, |
| 1978 | hdc, srcx*dx, srcy*dy, srcwidth*dx, srcheight*dy, bf); |
| 1979 | } |
| 1980 | else |
| 1981 | { |
| 1982 | StretchBlt(graphics->hdc, pti[0].x, pti[0].y, pti[1].x-pti[0].x, pti[2].y-pti[0].y, |
| 1983 | hdc, srcx*dx, srcy*dy, srcwidth*dx, srcheight*dy, SRCCOPY); |
| 1984 | } |
| 1985 | |
| 1986 | if (temp_hdc) |
Vincent Povirk | 436b3be | 2009-08-28 16:21:27 -0500 | [diff] [blame] | 1987 | { |
| 1988 | SelectObject(hdc, old_hbm); |
| 1989 | DeleteDC(hdc); |
| 1990 | } |
Vincent Povirk | 895c6d8 | 2009-08-28 17:21:10 -0500 | [diff] [blame] | 1991 | |
| 1992 | if (temp_bitmap) |
| 1993 | DeleteObject(hbitmap); |
Vincent Povirk | 436b3be | 2009-08-28 16:21:27 -0500 | [diff] [blame] | 1994 | } |
| 1995 | else |
| 1996 | { |
| 1997 | ERR("GpImage with no IPicture or HBITMAP?!\n"); |
| 1998 | return NotImplemented; |
Evan Stade | a9c4f30 | 2007-07-30 19:10:07 -0700 | [diff] [blame] | 1999 | } |
| 2000 | |
| 2001 | return Ok; |
Evan Stade | 460f01b | 2007-07-30 19:09:45 -0700 | [diff] [blame] | 2002 | } |
| 2003 | |
Nikolay Sivov | 79b49a8 | 2008-04-29 00:10:05 +0400 | [diff] [blame] | 2004 | GpStatus WINGDIPAPI GdipDrawImagePointsRectI(GpGraphics *graphics, GpImage *image, |
| 2005 | GDIPCONST GpPoint *points, INT count, INT srcx, INT srcy, INT srcwidth, |
| 2006 | INT srcheight, GpUnit srcUnit, GDIPCONST GpImageAttributes* imageAttributes, |
| 2007 | DrawImageAbort callback, VOID * callbackData) |
| 2008 | { |
| 2009 | GpPointF pointsF[3]; |
| 2010 | INT i; |
| 2011 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2012 | TRACE("(%p, %p, %p, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n", graphics, image, points, count, |
| 2013 | srcx, srcy, srcwidth, srcheight, srcUnit, imageAttributes, callback, |
| 2014 | callbackData); |
| 2015 | |
Nikolay Sivov | 79b49a8 | 2008-04-29 00:10:05 +0400 | [diff] [blame] | 2016 | if(!points || count!=3) |
| 2017 | return InvalidParameter; |
| 2018 | |
| 2019 | for(i = 0; i < count; i++){ |
| 2020 | pointsF[i].X = (REAL)points[i].X; |
| 2021 | pointsF[i].Y = (REAL)points[i].Y; |
| 2022 | } |
| 2023 | |
| 2024 | return GdipDrawImagePointsRect(graphics, image, pointsF, count, (REAL)srcx, (REAL)srcy, |
| 2025 | (REAL)srcwidth, (REAL)srcheight, srcUnit, imageAttributes, |
| 2026 | callback, callbackData); |
| 2027 | } |
| 2028 | |
Evan Stade | 04d4c26 | 2007-08-09 18:25:09 -0700 | [diff] [blame] | 2029 | GpStatus WINGDIPAPI GdipDrawImageRectRect(GpGraphics *graphics, GpImage *image, |
| 2030 | REAL dstx, REAL dsty, REAL dstwidth, REAL dstheight, REAL srcx, REAL srcy, |
| 2031 | REAL srcwidth, REAL srcheight, GpUnit srcUnit, |
| 2032 | GDIPCONST GpImageAttributes* imageattr, DrawImageAbort callback, |
| 2033 | VOID * callbackData) |
| 2034 | { |
| 2035 | GpPointF points[3]; |
| 2036 | |
Francois Gouget | 758c453 | 2008-09-05 13:14:56 +0200 | [diff] [blame] | 2037 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %d, %p, %p, %p)\n", |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2038 | graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy, |
| 2039 | srcwidth, srcheight, srcUnit, imageattr, callback, callbackData); |
| 2040 | |
Evan Stade | 04d4c26 | 2007-08-09 18:25:09 -0700 | [diff] [blame] | 2041 | points[0].X = dstx; |
| 2042 | points[0].Y = dsty; |
| 2043 | points[1].X = dstx + dstwidth; |
| 2044 | points[1].Y = dsty; |
| 2045 | points[2].X = dstx; |
| 2046 | points[2].Y = dsty + dstheight; |
| 2047 | |
| 2048 | return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy, |
| 2049 | srcwidth, srcheight, srcUnit, imageattr, callback, callbackData); |
| 2050 | } |
| 2051 | |
Jon Yang | 29bc9ba | 2008-02-28 21:54:47 -0800 | [diff] [blame] | 2052 | GpStatus WINGDIPAPI GdipDrawImageRectRectI(GpGraphics *graphics, GpImage *image, |
| 2053 | INT dstx, INT dsty, INT dstwidth, INT dstheight, INT srcx, INT srcy, |
| 2054 | INT srcwidth, INT srcheight, GpUnit srcUnit, |
| 2055 | GDIPCONST GpImageAttributes* imageAttributes, DrawImageAbort callback, |
| 2056 | VOID * callbackData) |
| 2057 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2058 | GpPointF points[3]; |
| 2059 | |
Francois Gouget | 758c453 | 2008-09-05 13:14:56 +0200 | [diff] [blame] | 2060 | TRACE("(%p, %p, %d, %d, %d, %d, %d, %d, %d, %d, %d, %p, %p, %p)\n", |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2061 | graphics, image, dstx, dsty, dstwidth, dstheight, srcx, srcy, |
| 2062 | srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData); |
Jon Yang | 29bc9ba | 2008-02-28 21:54:47 -0800 | [diff] [blame] | 2063 | |
| 2064 | points[0].X = dstx; |
| 2065 | points[0].Y = dsty; |
| 2066 | points[1].X = dstx + dstwidth; |
| 2067 | points[1].Y = dsty; |
| 2068 | points[2].X = dstx; |
| 2069 | points[2].Y = dsty + dstheight; |
| 2070 | |
| 2071 | return GdipDrawImagePointsRect(graphics, image, points, 3, srcx, srcy, |
| 2072 | srcwidth, srcheight, srcUnit, imageAttributes, callback, callbackData); |
| 2073 | } |
| 2074 | |
Nikolay Sivov | 8cf5608 | 2008-04-25 01:58:36 +0400 | [diff] [blame] | 2075 | GpStatus WINGDIPAPI GdipDrawImageRect(GpGraphics *graphics, GpImage *image, |
| 2076 | REAL x, REAL y, REAL width, REAL height) |
| 2077 | { |
| 2078 | RectF bounds; |
| 2079 | GpUnit unit; |
| 2080 | GpStatus ret; |
| 2081 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2082 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, image, x, y, width, height); |
| 2083 | |
Nikolay Sivov | 8cf5608 | 2008-04-25 01:58:36 +0400 | [diff] [blame] | 2084 | if(!graphics || !image) |
| 2085 | return InvalidParameter; |
| 2086 | |
| 2087 | ret = GdipGetImageBounds(image, &bounds, &unit); |
| 2088 | if(ret != Ok) |
| 2089 | return ret; |
| 2090 | |
| 2091 | return GdipDrawImageRectRect(graphics, image, x, y, width, height, |
| 2092 | bounds.X, bounds.Y, bounds.Width, bounds.Height, |
| 2093 | unit, NULL, NULL, NULL); |
| 2094 | } |
| 2095 | |
| 2096 | GpStatus WINGDIPAPI GdipDrawImageRectI(GpGraphics *graphics, GpImage *image, |
| 2097 | INT x, INT y, INT width, INT height) |
| 2098 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2099 | TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, image, x, y, width, height); |
| 2100 | |
Nikolay Sivov | 8cf5608 | 2008-04-25 01:58:36 +0400 | [diff] [blame] | 2101 | return GdipDrawImageRect(graphics, image, (REAL)x, (REAL)y, (REAL)width, (REAL)height); |
| 2102 | } |
| 2103 | |
Evan Stade | 5e29e37 | 2007-08-01 17:55:58 -0700 | [diff] [blame] | 2104 | GpStatus WINGDIPAPI GdipDrawLine(GpGraphics *graphics, GpPen *pen, REAL x1, |
| 2105 | REAL y1, REAL x2, REAL y2) |
| 2106 | { |
| 2107 | INT save_state; |
| 2108 | GpPointF pt[2]; |
| 2109 | GpStatus retval; |
| 2110 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2111 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x1, y1, x2, y2); |
| 2112 | |
Evan Stade | 5e29e37 | 2007-08-01 17:55:58 -0700 | [diff] [blame] | 2113 | if(!pen || !graphics) |
| 2114 | return InvalidParameter; |
| 2115 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2116 | if(graphics->busy) |
| 2117 | return ObjectBusy; |
| 2118 | |
Evan Stade | 5e29e37 | 2007-08-01 17:55:58 -0700 | [diff] [blame] | 2119 | pt[0].X = x1; |
| 2120 | pt[0].Y = y1; |
| 2121 | pt[1].X = x2; |
| 2122 | pt[1].Y = y2; |
| 2123 | |
| 2124 | save_state = prepare_dc(graphics, pen); |
| 2125 | |
| 2126 | retval = draw_polyline(graphics, pen, pt, 2, TRUE); |
| 2127 | |
| 2128 | restore_dc(graphics, save_state); |
| 2129 | |
| 2130 | return retval; |
| 2131 | } |
| 2132 | |
Evan Stade | 2689b18 | 2007-06-12 10:44:31 -0700 | [diff] [blame] | 2133 | GpStatus WINGDIPAPI GdipDrawLineI(GpGraphics *graphics, GpPen *pen, INT x1, |
| 2134 | INT y1, INT x2, INT y2) |
| 2135 | { |
Evan Stade | d9ef172 | 2007-07-02 15:13:05 -0700 | [diff] [blame] | 2136 | INT save_state; |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 2137 | GpPointF pt[2]; |
Evan Stade | 6f4ab52 | 2007-07-11 18:07:44 -0700 | [diff] [blame] | 2138 | GpStatus retval; |
Evan Stade | 2689b18 | 2007-06-12 10:44:31 -0700 | [diff] [blame] | 2139 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2140 | TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x1, y1, x2, y2); |
| 2141 | |
Evan Stade | 2689b18 | 2007-06-12 10:44:31 -0700 | [diff] [blame] | 2142 | if(!pen || !graphics) |
| 2143 | return InvalidParameter; |
| 2144 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2145 | if(graphics->busy) |
| 2146 | return ObjectBusy; |
| 2147 | |
Evan Stade | 5128e5d | 2007-07-07 13:20:41 -0700 | [diff] [blame] | 2148 | pt[0].X = (REAL)x1; |
| 2149 | pt[0].Y = (REAL)y1; |
| 2150 | pt[1].X = (REAL)x2; |
| 2151 | pt[1].Y = (REAL)y2; |
| 2152 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2153 | save_state = prepare_dc(graphics, pen); |
Evan Stade | d9ef172 | 2007-07-02 15:13:05 -0700 | [diff] [blame] | 2154 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 2155 | retval = draw_polyline(graphics, pen, pt, 2, TRUE); |
Evan Stade | d9ef172 | 2007-07-02 15:13:05 -0700 | [diff] [blame] | 2156 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2157 | restore_dc(graphics, save_state); |
Evan Stade | 2689b18 | 2007-06-12 10:44:31 -0700 | [diff] [blame] | 2158 | |
Evan Stade | 6f4ab52 | 2007-07-11 18:07:44 -0700 | [diff] [blame] | 2159 | return retval; |
Evan Stade | 2689b18 | 2007-06-12 10:44:31 -0700 | [diff] [blame] | 2160 | } |
Evan Stade | 4b9bfbe | 2007-06-12 10:51:20 -0700 | [diff] [blame] | 2161 | |
Evan Stade | f6f04f6 | 2007-06-21 16:15:13 -0700 | [diff] [blame] | 2162 | GpStatus WINGDIPAPI GdipDrawLines(GpGraphics *graphics, GpPen *pen, GDIPCONST |
| 2163 | GpPointF *points, INT count) |
| 2164 | { |
Evan Stade | 852aac8 | 2007-07-11 18:07:16 -0700 | [diff] [blame] | 2165 | INT save_state; |
Evan Stade | 6f4ab52 | 2007-07-11 18:07:44 -0700 | [diff] [blame] | 2166 | GpStatus retval; |
Evan Stade | f6f04f6 | 2007-06-21 16:15:13 -0700 | [diff] [blame] | 2167 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2168 | TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count); |
| 2169 | |
Evan Stade | f6f04f6 | 2007-06-21 16:15:13 -0700 | [diff] [blame] | 2170 | if(!pen || !graphics || (count < 2)) |
| 2171 | return InvalidParameter; |
| 2172 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2173 | if(graphics->busy) |
| 2174 | return ObjectBusy; |
| 2175 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2176 | save_state = prepare_dc(graphics, pen); |
Evan Stade | f6f04f6 | 2007-06-21 16:15:13 -0700 | [diff] [blame] | 2177 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 2178 | retval = draw_polyline(graphics, pen, points, count, TRUE); |
Evan Stade | f6f04f6 | 2007-06-21 16:15:13 -0700 | [diff] [blame] | 2179 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2180 | restore_dc(graphics, save_state); |
Evan Stade | f6f04f6 | 2007-06-21 16:15:13 -0700 | [diff] [blame] | 2181 | |
Evan Stade | 6f4ab52 | 2007-07-11 18:07:44 -0700 | [diff] [blame] | 2182 | return retval; |
Evan Stade | f6f04f6 | 2007-06-21 16:15:13 -0700 | [diff] [blame] | 2183 | } |
| 2184 | |
Royal Chan | 6e7b534 | 2008-02-29 04:58:39 -0800 | [diff] [blame] | 2185 | GpStatus WINGDIPAPI GdipDrawLinesI(GpGraphics *graphics, GpPen *pen, GDIPCONST |
| 2186 | GpPoint *points, INT count) |
| 2187 | { |
| 2188 | INT save_state; |
| 2189 | GpStatus retval; |
| 2190 | GpPointF *ptf = NULL; |
| 2191 | int i; |
| 2192 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2193 | TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count); |
| 2194 | |
Royal Chan | 6e7b534 | 2008-02-29 04:58:39 -0800 | [diff] [blame] | 2195 | if(!pen || !graphics || (count < 2)) |
| 2196 | return InvalidParameter; |
| 2197 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2198 | if(graphics->busy) |
| 2199 | return ObjectBusy; |
| 2200 | |
Royal Chan | 6e7b534 | 2008-02-29 04:58:39 -0800 | [diff] [blame] | 2201 | ptf = GdipAlloc(count * sizeof(GpPointF)); |
| 2202 | if(!ptf) return OutOfMemory; |
| 2203 | |
| 2204 | for(i = 0; i < count; i ++){ |
| 2205 | ptf[i].X = (REAL) points[i].X; |
| 2206 | ptf[i].Y = (REAL) points[i].Y; |
| 2207 | } |
| 2208 | |
| 2209 | save_state = prepare_dc(graphics, pen); |
| 2210 | |
| 2211 | retval = draw_polyline(graphics, pen, ptf, count, TRUE); |
| 2212 | |
| 2213 | restore_dc(graphics, save_state); |
| 2214 | |
| 2215 | GdipFree(ptf); |
| 2216 | return retval; |
| 2217 | } |
| 2218 | |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 2219 | GpStatus WINGDIPAPI GdipDrawPath(GpGraphics *graphics, GpPen *pen, GpPath *path) |
| 2220 | { |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 2221 | INT save_state; |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 2222 | GpStatus retval; |
| 2223 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2224 | TRACE("(%p, %p, %p)\n", graphics, pen, path); |
| 2225 | |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 2226 | if(!pen || !graphics) |
| 2227 | return InvalidParameter; |
| 2228 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2229 | if(graphics->busy) |
| 2230 | return ObjectBusy; |
| 2231 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2232 | save_state = prepare_dc(graphics, pen); |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 2233 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 2234 | retval = draw_poly(graphics, pen, path->pathdata.Points, |
Evan Stade | 9e88347 | 2007-07-13 17:51:49 -0700 | [diff] [blame] | 2235 | path->pathdata.Types, path->pathdata.Count, TRUE); |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 2236 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2237 | restore_dc(graphics, save_state); |
Evan Stade | 9d5f568 | 2007-07-11 18:07:34 -0700 | [diff] [blame] | 2238 | |
| 2239 | return retval; |
| 2240 | } |
| 2241 | |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 2242 | GpStatus WINGDIPAPI GdipDrawPie(GpGraphics *graphics, GpPen *pen, REAL x, |
| 2243 | REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle) |
| 2244 | { |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2245 | INT save_state; |
| 2246 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2247 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, |
| 2248 | width, height, startAngle, sweepAngle); |
| 2249 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2250 | if(!graphics || !pen) |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 2251 | return InvalidParameter; |
| 2252 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2253 | if(graphics->busy) |
| 2254 | return ObjectBusy; |
| 2255 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2256 | save_state = prepare_dc(graphics, pen); |
| 2257 | SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH)); |
| 2258 | |
| 2259 | draw_pie(graphics, x, y, width, height, startAngle, sweepAngle); |
| 2260 | |
| 2261 | restore_dc(graphics, save_state); |
| 2262 | |
| 2263 | return Ok; |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 2264 | } |
| 2265 | |
Nikolay Sivov | 7193161 | 2008-04-24 20:48:00 +0400 | [diff] [blame] | 2266 | GpStatus WINGDIPAPI GdipDrawPieI(GpGraphics *graphics, GpPen *pen, INT x, |
| 2267 | INT y, INT width, INT height, REAL startAngle, REAL sweepAngle) |
| 2268 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2269 | TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", graphics, pen, x, y, |
| 2270 | width, height, startAngle, sweepAngle); |
| 2271 | |
Nikolay Sivov | 7193161 | 2008-04-24 20:48:00 +0400 | [diff] [blame] | 2272 | return GdipDrawPie(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle); |
| 2273 | } |
| 2274 | |
Nikolay Sivov | 172389e | 2008-04-20 21:27:10 +0400 | [diff] [blame] | 2275 | GpStatus WINGDIPAPI GdipDrawRectangle(GpGraphics *graphics, GpPen *pen, REAL x, |
| 2276 | REAL y, REAL width, REAL height) |
Evan Stade | 4b9bfbe | 2007-06-12 10:51:20 -0700 | [diff] [blame] | 2277 | { |
Evan Stade | 14e0df1 | 2007-07-09 20:54:18 -0700 | [diff] [blame] | 2278 | INT save_state; |
Evan Stade | c84c204 | 2007-08-07 18:43:08 -0700 | [diff] [blame] | 2279 | GpPointF ptf[4]; |
| 2280 | POINT pti[4]; |
Evan Stade | 4b9bfbe | 2007-06-12 10:51:20 -0700 | [diff] [blame] | 2281 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2282 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, pen, x, y, width, height); |
| 2283 | |
Evan Stade | 4b9bfbe | 2007-06-12 10:51:20 -0700 | [diff] [blame] | 2284 | if(!pen || !graphics) |
| 2285 | return InvalidParameter; |
| 2286 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2287 | if(graphics->busy) |
| 2288 | return ObjectBusy; |
| 2289 | |
Evan Stade | c84c204 | 2007-08-07 18:43:08 -0700 | [diff] [blame] | 2290 | ptf[0].X = x; |
| 2291 | ptf[0].Y = y; |
| 2292 | ptf[1].X = x + width; |
| 2293 | ptf[1].Y = y; |
| 2294 | ptf[2].X = x + width; |
| 2295 | ptf[2].Y = y + height; |
| 2296 | ptf[3].X = x; |
| 2297 | ptf[3].Y = y + height; |
| 2298 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2299 | save_state = prepare_dc(graphics, pen); |
Evan Stade | 14e0df1 | 2007-07-09 20:54:18 -0700 | [diff] [blame] | 2300 | SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH)); |
Evan Stade | 4b9bfbe | 2007-06-12 10:51:20 -0700 | [diff] [blame] | 2301 | |
Evan Stade | c84c204 | 2007-08-07 18:43:08 -0700 | [diff] [blame] | 2302 | transform_and_round_points(graphics, pti, ptf, 4); |
| 2303 | Polygon(graphics->hdc, pti, 4); |
Evan Stade | 4b9bfbe | 2007-06-12 10:51:20 -0700 | [diff] [blame] | 2304 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2305 | restore_dc(graphics, save_state); |
Evan Stade | 4b9bfbe | 2007-06-12 10:51:20 -0700 | [diff] [blame] | 2306 | |
| 2307 | return Ok; |
| 2308 | } |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 2309 | |
Nikolay Sivov | 172389e | 2008-04-20 21:27:10 +0400 | [diff] [blame] | 2310 | GpStatus WINGDIPAPI GdipDrawRectangleI(GpGraphics *graphics, GpPen *pen, INT x, |
| 2311 | INT y, INT width, INT height) |
| 2312 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2313 | TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, pen, x, y, width, height); |
| 2314 | |
Nikolay Sivov | 172389e | 2008-04-20 21:27:10 +0400 | [diff] [blame] | 2315 | return GdipDrawRectangle(graphics,pen,(REAL)x,(REAL)y,(REAL)width,(REAL)height); |
| 2316 | } |
| 2317 | |
Evan Stade | 9d6e075 | 2007-08-13 18:34:46 -0700 | [diff] [blame] | 2318 | GpStatus WINGDIPAPI GdipDrawRectangles(GpGraphics *graphics, GpPen *pen, |
Francois Gouget | b6b97b1 | 2007-08-29 21:42:01 +0200 | [diff] [blame] | 2319 | GDIPCONST GpRectF* rects, INT count) |
Evan Stade | 9d6e075 | 2007-08-13 18:34:46 -0700 | [diff] [blame] | 2320 | { |
| 2321 | GpPointF *ptf; |
| 2322 | POINT *pti; |
| 2323 | INT save_state, i; |
| 2324 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2325 | TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count); |
| 2326 | |
Evan Stade | 9d6e075 | 2007-08-13 18:34:46 -0700 | [diff] [blame] | 2327 | if(!graphics || !pen || !rects || count < 1) |
| 2328 | return InvalidParameter; |
| 2329 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2330 | if(graphics->busy) |
| 2331 | return ObjectBusy; |
| 2332 | |
Evan Stade | 9d6e075 | 2007-08-13 18:34:46 -0700 | [diff] [blame] | 2333 | ptf = GdipAlloc(4 * count * sizeof(GpPointF)); |
| 2334 | pti = GdipAlloc(4 * count * sizeof(POINT)); |
| 2335 | |
| 2336 | if(!ptf || !pti){ |
| 2337 | GdipFree(ptf); |
| 2338 | GdipFree(pti); |
| 2339 | return OutOfMemory; |
| 2340 | } |
| 2341 | |
| 2342 | for(i = 0; i < count; i++){ |
| 2343 | ptf[4 * i + 3].X = ptf[4 * i].X = rects[i].X; |
| 2344 | ptf[4 * i + 1].Y = ptf[4 * i].Y = rects[i].Y; |
| 2345 | ptf[4 * i + 2].X = ptf[4 * i + 1].X = rects[i].X + rects[i].Width; |
| 2346 | ptf[4 * i + 3].Y = ptf[4 * i + 2].Y = rects[i].Y + rects[i].Height; |
| 2347 | } |
| 2348 | |
| 2349 | save_state = prepare_dc(graphics, pen); |
| 2350 | SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH)); |
| 2351 | |
| 2352 | transform_and_round_points(graphics, pti, ptf, 4 * count); |
| 2353 | |
| 2354 | for(i = 0; i < count; i++) |
| 2355 | Polygon(graphics->hdc, &pti[4 * i], 4); |
| 2356 | |
| 2357 | restore_dc(graphics, save_state); |
| 2358 | |
| 2359 | GdipFree(ptf); |
| 2360 | GdipFree(pti); |
| 2361 | |
| 2362 | return Ok; |
| 2363 | } |
| 2364 | |
Nikolay Sivov | 3903ac6 | 2008-04-24 20:48:08 +0400 | [diff] [blame] | 2365 | GpStatus WINGDIPAPI GdipDrawRectanglesI(GpGraphics *graphics, GpPen *pen, |
| 2366 | GDIPCONST GpRect* rects, INT count) |
| 2367 | { |
| 2368 | GpRectF *rectsF; |
| 2369 | GpStatus ret; |
| 2370 | INT i; |
| 2371 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2372 | TRACE("(%p, %p, %p, %d)\n", graphics, pen, rects, count); |
| 2373 | |
Nikolay Sivov | 3903ac6 | 2008-04-24 20:48:08 +0400 | [diff] [blame] | 2374 | if(!rects || count<=0) |
| 2375 | return InvalidParameter; |
| 2376 | |
| 2377 | rectsF = GdipAlloc(sizeof(GpRectF) * count); |
| 2378 | if(!rectsF) |
| 2379 | return OutOfMemory; |
| 2380 | |
| 2381 | for(i = 0;i < count;i++){ |
| 2382 | rectsF[i].X = (REAL)rects[i].X; |
| 2383 | rectsF[i].Y = (REAL)rects[i].Y; |
| 2384 | rectsF[i].Width = (REAL)rects[i].Width; |
| 2385 | rectsF[i].Height = (REAL)rects[i].Height; |
| 2386 | } |
| 2387 | |
| 2388 | ret = GdipDrawRectangles(graphics, pen, rectsF, count); |
| 2389 | GdipFree(rectsF); |
| 2390 | |
| 2391 | return ret; |
| 2392 | } |
| 2393 | |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2394 | GpStatus WINGDIPAPI GdipDrawString(GpGraphics *graphics, GDIPCONST WCHAR *string, |
| 2395 | INT length, GDIPCONST GpFont *font, GDIPCONST RectF *rect, |
| 2396 | GDIPCONST GpStringFormat *format, GDIPCONST GpBrush *brush) |
| 2397 | { |
Evan Stade | ca94939 | 2007-08-15 16:22:13 -0700 | [diff] [blame] | 2398 | HRGN rgn = NULL; |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2399 | HFONT gdifont; |
| 2400 | LOGFONTW lfw; |
| 2401 | TEXTMETRICW textmet; |
Vincent Povirk | 99012b9 | 2009-09-04 14:11:52 -0500 | [diff] [blame] | 2402 | GpPointF pt[3], rectcpy[4]; |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2403 | POINT corners[4]; |
| 2404 | WCHAR* stringdup; |
| 2405 | REAL angle, ang_cos, ang_sin, rel_width, rel_height; |
Stephan Rose | eb3904d | 2009-06-04 18:51:07 -0400 | [diff] [blame] | 2406 | INT sum = 0, height = 0, offsety = 0, fit, fitcpy, save_state, i, j, lret, nwidth, |
Vincent Povirk | e0d9d17 | 2009-07-24 16:24:19 -0500 | [diff] [blame] | 2407 | nheight, lineend; |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2408 | SIZE size; |
Vincent Povirk | aa9602d | 2009-06-29 16:36:11 -0500 | [diff] [blame] | 2409 | POINT drawbase; |
| 2410 | UINT drawflags; |
Evan Stade | be66c3c | 2007-08-15 16:22:17 -0700 | [diff] [blame] | 2411 | RECT drawcoord; |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2412 | |
Vincent Povirk | 3dd5ce7 | 2009-05-13 13:55:46 -0500 | [diff] [blame] | 2413 | TRACE("(%p, %s, %i, %p, %s, %p, %p)\n", graphics, debugstr_wn(string, length), |
| 2414 | length, font, debugstr_rectf(rect), format, brush); |
| 2415 | |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2416 | if(!graphics || !string || !font || !brush || !rect) |
| 2417 | return InvalidParameter; |
| 2418 | |
Evan Stade | 3f32083 | 2007-08-15 16:22:00 -0700 | [diff] [blame] | 2419 | if((brush->bt != BrushTypeSolidColor)){ |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2420 | FIXME("not implemented for given parameters\n"); |
| 2421 | return NotImplemented; |
| 2422 | } |
| 2423 | |
Stephan Rose | eb3904d | 2009-06-04 18:51:07 -0400 | [diff] [blame] | 2424 | if(format){ |
Evan Stade | 3f32083 | 2007-08-15 16:22:00 -0700 | [diff] [blame] | 2425 | TRACE("may be ignoring some format flags: attr %x\n", format->attr); |
| 2426 | |
Stephan Rose | eb3904d | 2009-06-04 18:51:07 -0400 | [diff] [blame] | 2427 | /* Should be no need to explicitly test for StringAlignmentNear as |
| 2428 | * that is default behavior if no alignment is passed. */ |
| 2429 | if(format->vertalign != StringAlignmentNear){ |
| 2430 | RectF bounds; |
| 2431 | GdipMeasureString(graphics, string, length, font, rect, format, &bounds, 0, 0); |
| 2432 | |
| 2433 | if(format->vertalign == StringAlignmentCenter) |
| 2434 | offsety = (rect->Height - bounds.Height) / 2; |
| 2435 | else if(format->vertalign == StringAlignmentFar) |
| 2436 | offsety = (rect->Height - bounds.Height); |
| 2437 | } |
| 2438 | } |
| 2439 | |
Evan Stade | d0cead3 | 2007-08-14 19:01:07 -0700 | [diff] [blame] | 2440 | if(length == -1) length = lstrlenW(string); |
| 2441 | |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2442 | stringdup = GdipAlloc(length * sizeof(WCHAR)); |
| 2443 | if(!stringdup) return OutOfMemory; |
| 2444 | |
| 2445 | save_state = SaveDC(graphics->hdc); |
| 2446 | SetBkMode(graphics->hdc, TRANSPARENT); |
| 2447 | SetTextColor(graphics->hdc, brush->lb.lbColor); |
| 2448 | |
Vincent Povirk | 99012b9 | 2009-09-04 14:11:52 -0500 | [diff] [blame] | 2449 | pt[0].X = 0.0; |
| 2450 | pt[0].Y = 0.0; |
| 2451 | pt[1].X = 1.0; |
| 2452 | pt[1].Y = 0.0; |
| 2453 | pt[2].X = 0.0; |
| 2454 | pt[2].Y = 1.0; |
| 2455 | GdipTransformPoints(graphics, CoordinateSpaceDevice, CoordinateSpaceWorld, pt, 3); |
| 2456 | angle = -gdiplus_atan2((pt[1].Y - pt[0].Y), (pt[1].X - pt[0].X)); |
| 2457 | ang_cos = cos(angle); |
| 2458 | ang_sin = sin(angle); |
| 2459 | rel_width = sqrt((pt[1].Y-pt[0].Y)*(pt[1].Y-pt[0].Y)+ |
| 2460 | (pt[1].X-pt[0].X)*(pt[1].X-pt[0].X)); |
| 2461 | rel_height = sqrt((pt[2].Y-pt[0].Y)*(pt[2].Y-pt[0].Y)+ |
| 2462 | (pt[2].X-pt[0].X)*(pt[2].X-pt[0].X)); |
| 2463 | |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2464 | rectcpy[3].X = rectcpy[0].X = rect->X; |
Stephan Rose | eb3904d | 2009-06-04 18:51:07 -0400 | [diff] [blame] | 2465 | rectcpy[1].Y = rectcpy[0].Y = rect->Y + offsety; |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2466 | rectcpy[2].X = rectcpy[1].X = rect->X + rect->Width; |
Stephan Rose | eb3904d | 2009-06-04 18:51:07 -0400 | [diff] [blame] | 2467 | rectcpy[3].Y = rectcpy[2].Y = rect->Y + offsety + rect->Height; |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2468 | transform_and_round_points(graphics, corners, rectcpy, 4); |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2469 | |
Vincent Povirk | 0879b76 | 2009-04-01 14:08:12 -0500 | [diff] [blame] | 2470 | if (roundr(rect->Width) == 0) |
Vincent Povirk | 0879b76 | 2009-04-01 14:08:12 -0500 | [diff] [blame] | 2471 | nwidth = INT_MAX; |
Vincent Povirk | 0879b76 | 2009-04-01 14:08:12 -0500 | [diff] [blame] | 2472 | else |
Vincent Povirk | 0879b76 | 2009-04-01 14:08:12 -0500 | [diff] [blame] | 2473 | nwidth = roundr(rel_width * rect->Width); |
Vincent Povirk | 0879b76 | 2009-04-01 14:08:12 -0500 | [diff] [blame] | 2474 | |
| 2475 | if (roundr(rect->Height) == 0) |
Vincent Povirk | 0879b76 | 2009-04-01 14:08:12 -0500 | [diff] [blame] | 2476 | nheight = INT_MAX; |
Vincent Povirk | 0879b76 | 2009-04-01 14:08:12 -0500 | [diff] [blame] | 2477 | else |
Evan Stade | ca94939 | 2007-08-15 16:22:13 -0700 | [diff] [blame] | 2478 | nheight = roundr(rel_height * rect->Height); |
Vincent Povirk | 0879b76 | 2009-04-01 14:08:12 -0500 | [diff] [blame] | 2479 | |
| 2480 | if (roundr(rect->Width) != 0 && roundr(rect->Height) != 0) |
| 2481 | { |
| 2482 | /* FIXME: If only the width or only the height is 0, we should probably still clip */ |
Evan Stade | ca94939 | 2007-08-15 16:22:13 -0700 | [diff] [blame] | 2483 | rgn = CreatePolygonRgn(corners, 4, ALTERNATE); |
| 2484 | SelectClipRgn(graphics->hdc, rgn); |
| 2485 | } |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2486 | |
| 2487 | /* Use gdi to find the font, then perform transformations on it (height, |
| 2488 | * width, angle). */ |
| 2489 | SelectObject(graphics->hdc, CreateFontIndirectW(&font->lfw)); |
| 2490 | GetTextMetricsW(graphics->hdc, &textmet); |
Andrew Talbot | 5e8253a | 2008-02-29 22:06:47 +0000 | [diff] [blame] | 2491 | lfw = font->lfw; |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2492 | |
| 2493 | lfw.lfHeight = roundr(((REAL)lfw.lfHeight) * rel_height); |
| 2494 | lfw.lfWidth = roundr(textmet.tmAveCharWidth * rel_width); |
| 2495 | |
Vincent Povirk | b330ebf | 2009-07-24 13:56:22 -0500 | [diff] [blame] | 2496 | lfw.lfEscapement = lfw.lfOrientation = roundr((angle / M_PI) * 1800.0); |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2497 | |
| 2498 | gdifont = CreateFontIndirectW(&lfw); |
| 2499 | DeleteObject(SelectObject(graphics->hdc, CreateFontIndirectW(&lfw))); |
| 2500 | |
| 2501 | for(i = 0, j = 0; i < length; i++){ |
| 2502 | if(!isprintW(string[i]) && (string[i] != '\n')) |
| 2503 | continue; |
| 2504 | |
| 2505 | stringdup[j] = string[i]; |
| 2506 | j++; |
| 2507 | } |
| 2508 | |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2509 | length = j; |
| 2510 | |
Vincent Povirk | 9fceef3 | 2009-06-30 09:23:07 -0500 | [diff] [blame] | 2511 | if (!format || format->align == StringAlignmentNear) |
Vincent Povirk | aa9602d | 2009-06-29 16:36:11 -0500 | [diff] [blame] | 2512 | { |
| 2513 | drawbase.x = corners[0].x; |
| 2514 | drawbase.y = corners[0].y; |
| 2515 | drawflags = DT_NOCLIP | DT_EXPANDTABS; |
| 2516 | } |
| 2517 | else if (format->align == StringAlignmentCenter) |
| 2518 | { |
| 2519 | drawbase.x = (corners[0].x + corners[1].x)/2; |
| 2520 | drawbase.y = (corners[0].y + corners[1].y)/2; |
| 2521 | drawflags = DT_NOCLIP | DT_EXPANDTABS | DT_CENTER; |
| 2522 | } |
| 2523 | else /* (format->align == StringAlignmentFar) */ |
| 2524 | { |
| 2525 | drawbase.x = corners[1].x; |
| 2526 | drawbase.y = corners[1].y; |
| 2527 | drawflags = DT_NOCLIP | DT_EXPANDTABS | DT_RIGHT; |
| 2528 | } |
| 2529 | |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2530 | while(sum < length){ |
Vincent Povirk | aa9602d | 2009-06-29 16:36:11 -0500 | [diff] [blame] | 2531 | drawcoord.left = drawcoord.right = drawbase.x + roundr(ang_sin * (REAL) height); |
| 2532 | drawcoord.top = drawcoord.bottom = drawbase.y + roundr(ang_cos * (REAL) height); |
Evan Stade | be66c3c | 2007-08-15 16:22:17 -0700 | [diff] [blame] | 2533 | |
Evan Stade | 92aa57b | 2007-08-15 16:21:56 -0700 | [diff] [blame] | 2534 | GetTextExtentExPointW(graphics->hdc, stringdup + sum, length - sum, |
| 2535 | nwidth, &fit, NULL, &size); |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2536 | fitcpy = fit; |
| 2537 | |
| 2538 | if(fit == 0){ |
Vincent Povirk | aa9602d | 2009-06-29 16:36:11 -0500 | [diff] [blame] | 2539 | DrawTextW(graphics->hdc, stringdup + sum, 1, &drawcoord, drawflags); |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2540 | break; |
| 2541 | } |
| 2542 | |
| 2543 | for(lret = 0; lret < fit; lret++) |
| 2544 | if(*(stringdup + sum + lret) == '\n') |
| 2545 | break; |
| 2546 | |
| 2547 | /* Line break code (may look strange, but it imitates windows). */ |
| 2548 | if(lret < fit) |
Vincent Povirk | e0d9d17 | 2009-07-24 16:24:19 -0500 | [diff] [blame] | 2549 | lineend = fit = lret; /* this is not an off-by-one error */ |
Evan Stade | 92aa57b | 2007-08-15 16:21:56 -0700 | [diff] [blame] | 2550 | else if(fit < (length - sum)){ |
| 2551 | if(*(stringdup + sum + fit) == ' ') |
| 2552 | while(*(stringdup + sum + fit) == ' ') |
| 2553 | fit++; |
| 2554 | else |
| 2555 | while(*(stringdup + sum + fit - 1) != ' '){ |
| 2556 | fit--; |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2557 | |
Evan Stade | 92aa57b | 2007-08-15 16:21:56 -0700 | [diff] [blame] | 2558 | if(*(stringdup + sum + fit) == '\t') |
| 2559 | break; |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2560 | |
Evan Stade | 92aa57b | 2007-08-15 16:21:56 -0700 | [diff] [blame] | 2561 | if(fit == 0){ |
| 2562 | fit = fitcpy; |
| 2563 | break; |
| 2564 | } |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2565 | } |
Vincent Povirk | e0d9d17 | 2009-07-24 16:24:19 -0500 | [diff] [blame] | 2566 | lineend = fit; |
| 2567 | while(*(stringdup + sum + lineend - 1) == ' ' || |
| 2568 | *(stringdup + sum + lineend - 1) == '\t') |
| 2569 | lineend--; |
Evan Stade | 92aa57b | 2007-08-15 16:21:56 -0700 | [diff] [blame] | 2570 | } |
Vincent Povirk | e0d9d17 | 2009-07-24 16:24:19 -0500 | [diff] [blame] | 2571 | else |
| 2572 | lineend = fit; |
| 2573 | DrawTextW(graphics->hdc, stringdup + sum, min(length - sum, lineend), |
Vincent Povirk | aa9602d | 2009-06-29 16:36:11 -0500 | [diff] [blame] | 2574 | &drawcoord, drawflags); |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2575 | |
| 2576 | sum += fit + (lret < fitcpy ? 1 : 0); |
| 2577 | height += size.cy; |
| 2578 | |
Evan Stade | ca94939 | 2007-08-15 16:22:13 -0700 | [diff] [blame] | 2579 | if(height > nheight) |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2580 | break; |
Evan Stade | 3f32083 | 2007-08-15 16:22:00 -0700 | [diff] [blame] | 2581 | |
| 2582 | /* Stop if this was a linewrap (but not if it was a linebreak). */ |
| 2583 | if((lret == fitcpy) && format && (format->attr & StringFormatFlagsNoWrap)) |
| 2584 | break; |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2585 | } |
| 2586 | |
Andrew Talbot | dfac063 | 2007-09-25 20:52:58 +0100 | [diff] [blame] | 2587 | GdipFree(stringdup); |
Evan Stade | f7d27e0 | 2007-08-14 18:58:39 -0700 | [diff] [blame] | 2588 | DeleteObject(rgn); |
| 2589 | DeleteObject(gdifont); |
| 2590 | |
| 2591 | RestoreDC(graphics->hdc, save_state); |
| 2592 | |
| 2593 | return Ok; |
| 2594 | } |
| 2595 | |
Nikolay Sivov | 4a44100 | 2008-08-22 02:16:49 +0400 | [diff] [blame] | 2596 | GpStatus WINGDIPAPI GdipFillClosedCurve2(GpGraphics *graphics, GpBrush *brush, |
| 2597 | GDIPCONST GpPointF *points, INT count, REAL tension, GpFillMode fill) |
| 2598 | { |
| 2599 | GpPath *path; |
| 2600 | GpStatus stat; |
| 2601 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2602 | TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points, |
| 2603 | count, tension, fill); |
| 2604 | |
Nikolay Sivov | 4a44100 | 2008-08-22 02:16:49 +0400 | [diff] [blame] | 2605 | if(!graphics || !brush || !points) |
| 2606 | return InvalidParameter; |
| 2607 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2608 | if(graphics->busy) |
| 2609 | return ObjectBusy; |
| 2610 | |
Nikolay Sivov | 4a44100 | 2008-08-22 02:16:49 +0400 | [diff] [blame] | 2611 | stat = GdipCreatePath(fill, &path); |
| 2612 | if(stat != Ok) |
| 2613 | return stat; |
| 2614 | |
| 2615 | stat = GdipAddPathClosedCurve2(path, points, count, tension); |
| 2616 | if(stat != Ok){ |
| 2617 | GdipDeletePath(path); |
| 2618 | return stat; |
| 2619 | } |
| 2620 | |
| 2621 | stat = GdipFillPath(graphics, brush, path); |
| 2622 | if(stat != Ok){ |
| 2623 | GdipDeletePath(path); |
| 2624 | return stat; |
| 2625 | } |
| 2626 | |
| 2627 | GdipDeletePath(path); |
| 2628 | |
| 2629 | return Ok; |
| 2630 | } |
| 2631 | |
| 2632 | GpStatus WINGDIPAPI GdipFillClosedCurve2I(GpGraphics *graphics, GpBrush *brush, |
| 2633 | GDIPCONST GpPoint *points, INT count, REAL tension, GpFillMode fill) |
| 2634 | { |
| 2635 | GpPointF *ptf; |
| 2636 | GpStatus stat; |
| 2637 | INT i; |
| 2638 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2639 | TRACE("(%p, %p, %p, %d, %.2f, %d)\n", graphics, brush, points, |
| 2640 | count, tension, fill); |
| 2641 | |
Nikolay Sivov | 4a44100 | 2008-08-22 02:16:49 +0400 | [diff] [blame] | 2642 | if(!points || count <= 0) |
| 2643 | return InvalidParameter; |
| 2644 | |
| 2645 | ptf = GdipAlloc(sizeof(GpPointF)*count); |
| 2646 | if(!ptf) |
| 2647 | return OutOfMemory; |
| 2648 | |
| 2649 | for(i = 0;i < count;i++){ |
| 2650 | ptf[i].X = (REAL)points[i].X; |
| 2651 | ptf[i].Y = (REAL)points[i].Y; |
| 2652 | } |
| 2653 | |
| 2654 | stat = GdipFillClosedCurve2(graphics, brush, ptf, count, tension, fill); |
| 2655 | |
| 2656 | GdipFree(ptf); |
| 2657 | |
| 2658 | return stat; |
| 2659 | } |
| 2660 | |
Nikolay Sivov | fc2dc8b | 2008-04-29 00:10:10 +0400 | [diff] [blame] | 2661 | GpStatus WINGDIPAPI GdipFillEllipse(GpGraphics *graphics, GpBrush *brush, REAL x, |
| 2662 | REAL y, REAL width, REAL height) |
| 2663 | { |
| 2664 | INT save_state; |
| 2665 | GpPointF ptf[2]; |
| 2666 | POINT pti[2]; |
| 2667 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2668 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height); |
| 2669 | |
Nikolay Sivov | fc2dc8b | 2008-04-29 00:10:10 +0400 | [diff] [blame] | 2670 | if(!graphics || !brush) |
| 2671 | return InvalidParameter; |
| 2672 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2673 | if(graphics->busy) |
| 2674 | return ObjectBusy; |
| 2675 | |
Nikolay Sivov | fc2dc8b | 2008-04-29 00:10:10 +0400 | [diff] [blame] | 2676 | ptf[0].X = x; |
| 2677 | ptf[0].Y = y; |
| 2678 | ptf[1].X = x + width; |
| 2679 | ptf[1].Y = y + height; |
| 2680 | |
| 2681 | save_state = SaveDC(graphics->hdc); |
| 2682 | EndPath(graphics->hdc); |
Nikolay Sivov | fc2dc8b | 2008-04-29 00:10:10 +0400 | [diff] [blame] | 2683 | |
| 2684 | transform_and_round_points(graphics, pti, ptf, 2); |
| 2685 | |
Vincent Povirk | e306316 | 2009-07-11 10:29:44 -0500 | [diff] [blame] | 2686 | BeginPath(graphics->hdc); |
Nikolay Sivov | fc2dc8b | 2008-04-29 00:10:10 +0400 | [diff] [blame] | 2687 | Ellipse(graphics->hdc, pti[0].x, pti[0].y, pti[1].x, pti[1].y); |
Vincent Povirk | e306316 | 2009-07-11 10:29:44 -0500 | [diff] [blame] | 2688 | EndPath(graphics->hdc); |
| 2689 | |
| 2690 | brush_fill_path(graphics, brush); |
Nikolay Sivov | fc2dc8b | 2008-04-29 00:10:10 +0400 | [diff] [blame] | 2691 | |
| 2692 | RestoreDC(graphics->hdc, save_state); |
| 2693 | |
| 2694 | return Ok; |
| 2695 | } |
| 2696 | |
| 2697 | GpStatus WINGDIPAPI GdipFillEllipseI(GpGraphics *graphics, GpBrush *brush, INT x, |
| 2698 | INT y, INT width, INT height) |
| 2699 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2700 | TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height); |
| 2701 | |
Nikolay Sivov | fc2dc8b | 2008-04-29 00:10:10 +0400 | [diff] [blame] | 2702 | return GdipFillEllipse(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height); |
| 2703 | } |
| 2704 | |
Evan Stade | d362b58 | 2007-07-13 20:19:46 -0700 | [diff] [blame] | 2705 | GpStatus WINGDIPAPI GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path) |
| 2706 | { |
| 2707 | INT save_state; |
| 2708 | GpStatus retval; |
| 2709 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2710 | TRACE("(%p, %p, %p)\n", graphics, brush, path); |
| 2711 | |
Evan Stade | d362b58 | 2007-07-13 20:19:46 -0700 | [diff] [blame] | 2712 | if(!brush || !graphics || !path) |
| 2713 | return InvalidParameter; |
| 2714 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2715 | if(graphics->busy) |
| 2716 | return ObjectBusy; |
| 2717 | |
Evan Stade | d362b58 | 2007-07-13 20:19:46 -0700 | [diff] [blame] | 2718 | save_state = SaveDC(graphics->hdc); |
| 2719 | EndPath(graphics->hdc); |
Evan Stade | d362b58 | 2007-07-13 20:19:46 -0700 | [diff] [blame] | 2720 | SetPolyFillMode(graphics->hdc, (path->fill == FillModeAlternate ? ALTERNATE |
| 2721 | : WINDING)); |
| 2722 | |
| 2723 | BeginPath(graphics->hdc); |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 2724 | retval = draw_poly(graphics, NULL, path->pathdata.Points, |
Evan Stade | d362b58 | 2007-07-13 20:19:46 -0700 | [diff] [blame] | 2725 | path->pathdata.Types, path->pathdata.Count, FALSE); |
| 2726 | |
| 2727 | if(retval != Ok) |
| 2728 | goto end; |
| 2729 | |
| 2730 | EndPath(graphics->hdc); |
Vincent Povirk | 68dba4e | 2009-03-16 12:51:04 -0500 | [diff] [blame] | 2731 | brush_fill_path(graphics, brush); |
Evan Stade | d362b58 | 2007-07-13 20:19:46 -0700 | [diff] [blame] | 2732 | |
| 2733 | retval = Ok; |
| 2734 | |
| 2735 | end: |
| 2736 | RestoreDC(graphics->hdc, save_state); |
| 2737 | |
| 2738 | return retval; |
| 2739 | } |
| 2740 | |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 2741 | GpStatus WINGDIPAPI GdipFillPie(GpGraphics *graphics, GpBrush *brush, REAL x, |
| 2742 | REAL y, REAL width, REAL height, REAL startAngle, REAL sweepAngle) |
| 2743 | { |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2744 | INT save_state; |
| 2745 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2746 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f)\n", |
| 2747 | graphics, brush, x, y, width, height, startAngle, sweepAngle); |
| 2748 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2749 | if(!graphics || !brush) |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 2750 | return InvalidParameter; |
| 2751 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2752 | if(graphics->busy) |
| 2753 | return ObjectBusy; |
| 2754 | |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2755 | save_state = SaveDC(graphics->hdc); |
| 2756 | EndPath(graphics->hdc); |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2757 | |
Vincent Povirk | bedbd40 | 2009-07-11 10:32:34 -0500 | [diff] [blame] | 2758 | BeginPath(graphics->hdc); |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2759 | draw_pie(graphics, x, y, width, height, startAngle, sweepAngle); |
Vincent Povirk | bedbd40 | 2009-07-11 10:32:34 -0500 | [diff] [blame] | 2760 | EndPath(graphics->hdc); |
| 2761 | |
| 2762 | brush_fill_path(graphics, brush); |
Evan Stade | 4c424b3 | 2007-07-24 17:18:54 -0700 | [diff] [blame] | 2763 | |
| 2764 | RestoreDC(graphics->hdc, save_state); |
| 2765 | |
| 2766 | return Ok; |
Evan Stade | 72ab72c50 | 2007-06-18 16:55:51 -0700 | [diff] [blame] | 2767 | } |
Evan Stade | 53e17d2 | 2007-07-13 17:51:13 -0700 | [diff] [blame] | 2768 | |
Nikolay Sivov | 2c059d7 | 2008-04-24 20:48:23 +0400 | [diff] [blame] | 2769 | GpStatus WINGDIPAPI GdipFillPieI(GpGraphics *graphics, GpBrush *brush, INT x, |
| 2770 | INT y, INT width, INT height, REAL startAngle, REAL sweepAngle) |
| 2771 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2772 | TRACE("(%p, %p, %d, %d, %d, %d, %.2f, %.2f)\n", |
| 2773 | graphics, brush, x, y, width, height, startAngle, sweepAngle); |
| 2774 | |
Nikolay Sivov | 2c059d7 | 2008-04-24 20:48:23 +0400 | [diff] [blame] | 2775 | return GdipFillPie(graphics,brush,(REAL)x,(REAL)y,(REAL)width,(REAL)height,startAngle,sweepAngle); |
| 2776 | } |
| 2777 | |
Evan Stade | 1ef7793 | 2007-08-01 17:55:50 -0700 | [diff] [blame] | 2778 | GpStatus WINGDIPAPI GdipFillPolygon(GpGraphics *graphics, GpBrush *brush, |
| 2779 | GDIPCONST GpPointF *points, INT count, GpFillMode fillMode) |
| 2780 | { |
| 2781 | INT save_state; |
| 2782 | GpPointF *ptf = NULL; |
| 2783 | POINT *pti = NULL; |
| 2784 | GpStatus retval = Ok; |
| 2785 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2786 | TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode); |
| 2787 | |
Evan Stade | 1ef7793 | 2007-08-01 17:55:50 -0700 | [diff] [blame] | 2788 | if(!graphics || !brush || !points || !count) |
| 2789 | return InvalidParameter; |
| 2790 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2791 | if(graphics->busy) |
| 2792 | return ObjectBusy; |
| 2793 | |
Evan Stade | 1ef7793 | 2007-08-01 17:55:50 -0700 | [diff] [blame] | 2794 | ptf = GdipAlloc(count * sizeof(GpPointF)); |
| 2795 | pti = GdipAlloc(count * sizeof(POINT)); |
| 2796 | if(!ptf || !pti){ |
| 2797 | retval = OutOfMemory; |
| 2798 | goto end; |
| 2799 | } |
| 2800 | |
| 2801 | memcpy(ptf, points, count * sizeof(GpPointF)); |
| 2802 | |
| 2803 | save_state = SaveDC(graphics->hdc); |
| 2804 | EndPath(graphics->hdc); |
Evan Stade | 1ef7793 | 2007-08-01 17:55:50 -0700 | [diff] [blame] | 2805 | SetPolyFillMode(graphics->hdc, (fillMode == FillModeAlternate ? ALTERNATE |
| 2806 | : WINDING)); |
| 2807 | |
| 2808 | transform_and_round_points(graphics, pti, ptf, count); |
Vincent Povirk | 15fef07 | 2009-07-11 10:35:40 -0500 | [diff] [blame] | 2809 | |
| 2810 | BeginPath(graphics->hdc); |
Evan Stade | 1ef7793 | 2007-08-01 17:55:50 -0700 | [diff] [blame] | 2811 | Polygon(graphics->hdc, pti, count); |
Vincent Povirk | 15fef07 | 2009-07-11 10:35:40 -0500 | [diff] [blame] | 2812 | EndPath(graphics->hdc); |
| 2813 | |
| 2814 | brush_fill_path(graphics, brush); |
Evan Stade | 1ef7793 | 2007-08-01 17:55:50 -0700 | [diff] [blame] | 2815 | |
| 2816 | RestoreDC(graphics->hdc, save_state); |
| 2817 | |
| 2818 | end: |
| 2819 | GdipFree(ptf); |
| 2820 | GdipFree(pti); |
| 2821 | |
| 2822 | return retval; |
| 2823 | } |
| 2824 | |
Evan Stade | 6467526 | 2007-07-23 20:24:35 -0700 | [diff] [blame] | 2825 | GpStatus WINGDIPAPI GdipFillPolygonI(GpGraphics *graphics, GpBrush *brush, |
| 2826 | GDIPCONST GpPoint *points, INT count, GpFillMode fillMode) |
| 2827 | { |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 2828 | INT save_state, i; |
| 2829 | GpPointF *ptf = NULL; |
| 2830 | POINT *pti = NULL; |
| 2831 | GpStatus retval = Ok; |
Evan Stade | 6467526 | 2007-07-23 20:24:35 -0700 | [diff] [blame] | 2832 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2833 | TRACE("(%p, %p, %p, %d, %d)\n", graphics, brush, points, count, fillMode); |
| 2834 | |
Evan Stade | 6467526 | 2007-07-23 20:24:35 -0700 | [diff] [blame] | 2835 | if(!graphics || !brush || !points || !count) |
| 2836 | return InvalidParameter; |
| 2837 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2838 | if(graphics->busy) |
| 2839 | return ObjectBusy; |
| 2840 | |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 2841 | ptf = GdipAlloc(count * sizeof(GpPointF)); |
| 2842 | pti = GdipAlloc(count * sizeof(POINT)); |
| 2843 | if(!ptf || !pti){ |
| 2844 | retval = OutOfMemory; |
| 2845 | goto end; |
| 2846 | } |
| 2847 | |
| 2848 | for(i = 0; i < count; i ++){ |
| 2849 | ptf[i].X = (REAL) points[i].X; |
| 2850 | ptf[i].Y = (REAL) points[i].Y; |
| 2851 | } |
| 2852 | |
Evan Stade | 6467526 | 2007-07-23 20:24:35 -0700 | [diff] [blame] | 2853 | save_state = SaveDC(graphics->hdc); |
| 2854 | EndPath(graphics->hdc); |
Evan Stade | 6467526 | 2007-07-23 20:24:35 -0700 | [diff] [blame] | 2855 | SetPolyFillMode(graphics->hdc, (fillMode == FillModeAlternate ? ALTERNATE |
| 2856 | : WINDING)); |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 2857 | |
| 2858 | transform_and_round_points(graphics, pti, ptf, count); |
Vincent Povirk | 38fc894 | 2009-07-11 10:37:22 -0500 | [diff] [blame] | 2859 | |
| 2860 | BeginPath(graphics->hdc); |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 2861 | Polygon(graphics->hdc, pti, count); |
Vincent Povirk | 38fc894 | 2009-07-11 10:37:22 -0500 | [diff] [blame] | 2862 | EndPath(graphics->hdc); |
| 2863 | |
| 2864 | brush_fill_path(graphics, brush); |
Evan Stade | 6467526 | 2007-07-23 20:24:35 -0700 | [diff] [blame] | 2865 | |
| 2866 | RestoreDC(graphics->hdc, save_state); |
Evan Stade | d01c697 | 2007-07-23 20:24:53 -0700 | [diff] [blame] | 2867 | |
| 2868 | end: |
| 2869 | GdipFree(ptf); |
| 2870 | GdipFree(pti); |
| 2871 | |
| 2872 | return retval; |
Evan Stade | 6467526 | 2007-07-23 20:24:35 -0700 | [diff] [blame] | 2873 | } |
| 2874 | |
Nikolay Sivov | e04a662 | 2008-08-03 12:19:36 +0400 | [diff] [blame] | 2875 | GpStatus WINGDIPAPI GdipFillPolygon2(GpGraphics *graphics, GpBrush *brush, |
| 2876 | GDIPCONST GpPointF *points, INT count) |
| 2877 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2878 | TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count); |
| 2879 | |
Nikolay Sivov | e04a662 | 2008-08-03 12:19:36 +0400 | [diff] [blame] | 2880 | return GdipFillPolygon(graphics, brush, points, count, FillModeAlternate); |
| 2881 | } |
| 2882 | |
| 2883 | GpStatus WINGDIPAPI GdipFillPolygon2I(GpGraphics *graphics, GpBrush *brush, |
| 2884 | GDIPCONST GpPoint *points, INT count) |
| 2885 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2886 | TRACE("(%p, %p, %p, %d)\n", graphics, brush, points, count); |
| 2887 | |
Nikolay Sivov | e04a662 | 2008-08-03 12:19:36 +0400 | [diff] [blame] | 2888 | return GdipFillPolygonI(graphics, brush, points, count, FillModeAlternate); |
| 2889 | } |
| 2890 | |
Evan Stade | b66c0a0 | 2007-08-08 19:42:10 -0700 | [diff] [blame] | 2891 | GpStatus WINGDIPAPI GdipFillRectangle(GpGraphics *graphics, GpBrush *brush, |
| 2892 | REAL x, REAL y, REAL width, REAL height) |
| 2893 | { |
| 2894 | INT save_state; |
| 2895 | GpPointF ptf[4]; |
| 2896 | POINT pti[4]; |
| 2897 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2898 | TRACE("(%p, %p, %.2f, %.2f, %.2f, %.2f)\n", graphics, brush, x, y, width, height); |
| 2899 | |
Evan Stade | b66c0a0 | 2007-08-08 19:42:10 -0700 | [diff] [blame] | 2900 | if(!graphics || !brush) |
| 2901 | return InvalidParameter; |
| 2902 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2903 | if(graphics->busy) |
| 2904 | return ObjectBusy; |
| 2905 | |
Evan Stade | b66c0a0 | 2007-08-08 19:42:10 -0700 | [diff] [blame] | 2906 | ptf[0].X = x; |
| 2907 | ptf[0].Y = y; |
| 2908 | ptf[1].X = x + width; |
| 2909 | ptf[1].Y = y; |
| 2910 | ptf[2].X = x + width; |
| 2911 | ptf[2].Y = y + height; |
| 2912 | ptf[3].X = x; |
| 2913 | ptf[3].Y = y + height; |
| 2914 | |
| 2915 | save_state = SaveDC(graphics->hdc); |
| 2916 | EndPath(graphics->hdc); |
Evan Stade | b66c0a0 | 2007-08-08 19:42:10 -0700 | [diff] [blame] | 2917 | |
| 2918 | transform_and_round_points(graphics, pti, ptf, 4); |
| 2919 | |
Vincent Povirk | 323e7e68 | 2009-05-06 16:34:19 -0500 | [diff] [blame] | 2920 | BeginPath(graphics->hdc); |
Evan Stade | b66c0a0 | 2007-08-08 19:42:10 -0700 | [diff] [blame] | 2921 | Polygon(graphics->hdc, pti, 4); |
Vincent Povirk | 323e7e68 | 2009-05-06 16:34:19 -0500 | [diff] [blame] | 2922 | EndPath(graphics->hdc); |
| 2923 | |
| 2924 | brush_fill_path(graphics, brush); |
Evan Stade | b66c0a0 | 2007-08-08 19:42:10 -0700 | [diff] [blame] | 2925 | |
| 2926 | RestoreDC(graphics->hdc, save_state); |
| 2927 | |
| 2928 | return Ok; |
| 2929 | } |
| 2930 | |
Evan Stade | bb904a2 | 2007-08-07 18:43:04 -0700 | [diff] [blame] | 2931 | GpStatus WINGDIPAPI GdipFillRectangleI(GpGraphics *graphics, GpBrush *brush, |
| 2932 | INT x, INT y, INT width, INT height) |
| 2933 | { |
| 2934 | INT save_state; |
| 2935 | GpPointF ptf[4]; |
| 2936 | POINT pti[4]; |
| 2937 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2938 | TRACE("(%p, %p, %d, %d, %d, %d)\n", graphics, brush, x, y, width, height); |
| 2939 | |
Evan Stade | bb904a2 | 2007-08-07 18:43:04 -0700 | [diff] [blame] | 2940 | if(!graphics || !brush) |
| 2941 | return InvalidParameter; |
| 2942 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 2943 | if(graphics->busy) |
| 2944 | return ObjectBusy; |
| 2945 | |
Evan Stade | bb904a2 | 2007-08-07 18:43:04 -0700 | [diff] [blame] | 2946 | ptf[0].X = x; |
| 2947 | ptf[0].Y = y; |
| 2948 | ptf[1].X = x + width; |
| 2949 | ptf[1].Y = y; |
| 2950 | ptf[2].X = x + width; |
| 2951 | ptf[2].Y = y + height; |
| 2952 | ptf[3].X = x; |
| 2953 | ptf[3].Y = y + height; |
| 2954 | |
| 2955 | save_state = SaveDC(graphics->hdc); |
| 2956 | EndPath(graphics->hdc); |
Evan Stade | bb904a2 | 2007-08-07 18:43:04 -0700 | [diff] [blame] | 2957 | |
| 2958 | transform_and_round_points(graphics, pti, ptf, 4); |
| 2959 | |
Vincent Povirk | 849af30 | 2009-07-11 10:38:47 -0500 | [diff] [blame] | 2960 | BeginPath(graphics->hdc); |
Evan Stade | bb904a2 | 2007-08-07 18:43:04 -0700 | [diff] [blame] | 2961 | Polygon(graphics->hdc, pti, 4); |
Vincent Povirk | 849af30 | 2009-07-11 10:38:47 -0500 | [diff] [blame] | 2962 | EndPath(graphics->hdc); |
| 2963 | |
| 2964 | brush_fill_path(graphics, brush); |
Evan Stade | bb904a2 | 2007-08-07 18:43:04 -0700 | [diff] [blame] | 2965 | |
| 2966 | RestoreDC(graphics->hdc, save_state); |
| 2967 | |
| 2968 | return Ok; |
| 2969 | } |
| 2970 | |
Nikolay Sivov | 7ce48b0 | 2008-04-29 00:10:15 +0400 | [diff] [blame] | 2971 | GpStatus WINGDIPAPI GdipFillRectangles(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRectF *rects, |
| 2972 | INT count) |
| 2973 | { |
| 2974 | GpStatus ret; |
| 2975 | INT i; |
| 2976 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2977 | TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count); |
| 2978 | |
Nikolay Sivov | 7ce48b0 | 2008-04-29 00:10:15 +0400 | [diff] [blame] | 2979 | if(!rects) |
| 2980 | return InvalidParameter; |
| 2981 | |
| 2982 | for(i = 0; i < count; i++){ |
| 2983 | ret = GdipFillRectangle(graphics, brush, rects[i].X, rects[i].Y, rects[i].Width, rects[i].Height); |
| 2984 | if(ret != Ok) return ret; |
| 2985 | } |
| 2986 | |
| 2987 | return Ok; |
| 2988 | } |
| 2989 | |
| 2990 | GpStatus WINGDIPAPI GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush, GDIPCONST GpRect *rects, |
| 2991 | INT count) |
| 2992 | { |
| 2993 | GpRectF *rectsF; |
| 2994 | GpStatus ret; |
| 2995 | INT i; |
| 2996 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 2997 | TRACE("(%p, %p, %p, %d)\n", graphics, brush, rects, count); |
| 2998 | |
Nikolay Sivov | 7ce48b0 | 2008-04-29 00:10:15 +0400 | [diff] [blame] | 2999 | if(!rects || count <= 0) |
| 3000 | return InvalidParameter; |
| 3001 | |
| 3002 | rectsF = GdipAlloc(sizeof(GpRectF)*count); |
| 3003 | if(!rectsF) |
| 3004 | return OutOfMemory; |
| 3005 | |
| 3006 | for(i = 0; i < count; i++){ |
| 3007 | rectsF[i].X = (REAL)rects[i].X; |
| 3008 | rectsF[i].Y = (REAL)rects[i].Y; |
| 3009 | rectsF[i].X = (REAL)rects[i].Width; |
| 3010 | rectsF[i].Height = (REAL)rects[i].Height; |
| 3011 | } |
| 3012 | |
| 3013 | ret = GdipFillRectangles(graphics,brush,rectsF,count); |
| 3014 | GdipFree(rectsF); |
| 3015 | |
| 3016 | return ret; |
| 3017 | } |
| 3018 | |
Nikolay Sivov | 9f0edc5 | 2009-02-03 22:17:47 +0300 | [diff] [blame] | 3019 | /***************************************************************************** |
| 3020 | * GdipFillRegion [GDIPLUS.@] |
| 3021 | */ |
Nikolay Sivov | 0e840f6 | 2008-07-10 23:15:59 +0400 | [diff] [blame] | 3022 | GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush, |
| 3023 | GpRegion* region) |
| 3024 | { |
Nikolay Sivov | 9f0edc5 | 2009-02-03 22:17:47 +0300 | [diff] [blame] | 3025 | INT save_state; |
| 3026 | GpStatus status; |
| 3027 | HRGN hrgn; |
Vincent Povirk | 6a8a770 | 2009-07-11 10:57:07 -0500 | [diff] [blame] | 3028 | RECT rc; |
Nikolay Sivov | 9f0edc5 | 2009-02-03 22:17:47 +0300 | [diff] [blame] | 3029 | |
| 3030 | TRACE("(%p, %p, %p)\n", graphics, brush, region); |
| 3031 | |
Nikolay Sivov | 0e840f6 | 2008-07-10 23:15:59 +0400 | [diff] [blame] | 3032 | if (!(graphics && brush && region)) |
| 3033 | return InvalidParameter; |
| 3034 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3035 | if(graphics->busy) |
| 3036 | return ObjectBusy; |
| 3037 | |
Nikolay Sivov | 9f0edc5 | 2009-02-03 22:17:47 +0300 | [diff] [blame] | 3038 | status = GdipGetRegionHRgn(region, graphics, &hrgn); |
| 3039 | if(status != Ok) |
| 3040 | return status; |
Nikolay Sivov | 0e840f6 | 2008-07-10 23:15:59 +0400 | [diff] [blame] | 3041 | |
Nikolay Sivov | 9f0edc5 | 2009-02-03 22:17:47 +0300 | [diff] [blame] | 3042 | save_state = SaveDC(graphics->hdc); |
| 3043 | EndPath(graphics->hdc); |
Nikolay Sivov | 9f0edc5 | 2009-02-03 22:17:47 +0300 | [diff] [blame] | 3044 | |
Vincent Povirk | 6a8a770 | 2009-07-11 10:57:07 -0500 | [diff] [blame] | 3045 | ExtSelectClipRgn(graphics->hdc, hrgn, RGN_AND); |
| 3046 | |
| 3047 | if (GetClipBox(graphics->hdc, &rc) != NULLREGION) |
| 3048 | { |
| 3049 | BeginPath(graphics->hdc); |
| 3050 | Rectangle(graphics->hdc, rc.left, rc.top, rc.right, rc.bottom); |
| 3051 | EndPath(graphics->hdc); |
| 3052 | |
| 3053 | brush_fill_path(graphics, brush); |
| 3054 | } |
Nikolay Sivov | 9f0edc5 | 2009-02-03 22:17:47 +0300 | [diff] [blame] | 3055 | |
| 3056 | RestoreDC(graphics->hdc, save_state); |
| 3057 | |
| 3058 | DeleteObject(hrgn); |
| 3059 | |
| 3060 | return Ok; |
Nikolay Sivov | 0e840f6 | 2008-07-10 23:15:59 +0400 | [diff] [blame] | 3061 | } |
| 3062 | |
Nikolay Sivov | f620b66 | 2008-06-18 11:33:10 +0400 | [diff] [blame] | 3063 | GpStatus WINGDIPAPI GdipFlush(GpGraphics *graphics, GpFlushIntention intention) |
| 3064 | { |
| 3065 | static int calls; |
| 3066 | |
| 3067 | if(!graphics) |
| 3068 | return InvalidParameter; |
| 3069 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3070 | if(graphics->busy) |
| 3071 | return ObjectBusy; |
| 3072 | |
Nikolay Sivov | f620b66 | 2008-06-18 11:33:10 +0400 | [diff] [blame] | 3073 | if(!(calls++)) |
| 3074 | FIXME("not implemented\n"); |
| 3075 | |
| 3076 | return NotImplemented; |
| 3077 | } |
| 3078 | |
Nikolay Sivov | bcfe4e7 | 2009-02-02 22:58:27 +0300 | [diff] [blame] | 3079 | /***************************************************************************** |
| 3080 | * GdipGetClipBounds [GDIPLUS.@] |
| 3081 | */ |
| 3082 | GpStatus WINGDIPAPI GdipGetClipBounds(GpGraphics *graphics, GpRectF *rect) |
| 3083 | { |
| 3084 | TRACE("(%p, %p)\n", graphics, rect); |
| 3085 | |
| 3086 | if(!graphics) |
| 3087 | return InvalidParameter; |
| 3088 | |
Nikolay Sivov | 8c09616 | 2009-02-02 23:48:01 +0300 | [diff] [blame] | 3089 | if(graphics->busy) |
| 3090 | return ObjectBusy; |
| 3091 | |
Nikolay Sivov | bcfe4e7 | 2009-02-02 22:58:27 +0300 | [diff] [blame] | 3092 | return GdipGetRegionBounds(graphics->clip, graphics, rect); |
| 3093 | } |
| 3094 | |
| 3095 | /***************************************************************************** |
| 3096 | * GdipGetClipBoundsI [GDIPLUS.@] |
| 3097 | */ |
| 3098 | GpStatus WINGDIPAPI GdipGetClipBoundsI(GpGraphics *graphics, GpRect *rect) |
| 3099 | { |
| 3100 | TRACE("(%p, %p)\n", graphics, rect); |
| 3101 | |
| 3102 | if(!graphics) |
| 3103 | return InvalidParameter; |
| 3104 | |
Nikolay Sivov | 8c09616 | 2009-02-02 23:48:01 +0300 | [diff] [blame] | 3105 | if(graphics->busy) |
| 3106 | return ObjectBusy; |
| 3107 | |
Nikolay Sivov | bcfe4e7 | 2009-02-02 22:58:27 +0300 | [diff] [blame] | 3108 | return GdipGetRegionBoundsI(graphics->clip, graphics, rect); |
| 3109 | } |
| 3110 | |
Evan Stade | e807eb9 | 2007-08-13 18:34:27 -0700 | [diff] [blame] | 3111 | /* FIXME: Compositing mode is not used anywhere except the getter/setter. */ |
| 3112 | GpStatus WINGDIPAPI GdipGetCompositingMode(GpGraphics *graphics, |
| 3113 | CompositingMode *mode) |
| 3114 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3115 | TRACE("(%p, %p)\n", graphics, mode); |
| 3116 | |
Evan Stade | e807eb9 | 2007-08-13 18:34:27 -0700 | [diff] [blame] | 3117 | if(!graphics || !mode) |
| 3118 | return InvalidParameter; |
| 3119 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3120 | if(graphics->busy) |
| 3121 | return ObjectBusy; |
| 3122 | |
Evan Stade | e807eb9 | 2007-08-13 18:34:27 -0700 | [diff] [blame] | 3123 | *mode = graphics->compmode; |
| 3124 | |
| 3125 | return Ok; |
| 3126 | } |
| 3127 | |
Evan Stade | 60cad23 | 2007-07-13 17:51:25 -0700 | [diff] [blame] | 3128 | /* FIXME: Compositing quality is not used anywhere except the getter/setter. */ |
| 3129 | GpStatus WINGDIPAPI GdipGetCompositingQuality(GpGraphics *graphics, |
| 3130 | CompositingQuality *quality) |
| 3131 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3132 | TRACE("(%p, %p)\n", graphics, quality); |
| 3133 | |
Evan Stade | 60cad23 | 2007-07-13 17:51:25 -0700 | [diff] [blame] | 3134 | if(!graphics || !quality) |
| 3135 | return InvalidParameter; |
| 3136 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3137 | if(graphics->busy) |
| 3138 | return ObjectBusy; |
| 3139 | |
Evan Stade | 60cad23 | 2007-07-13 17:51:25 -0700 | [diff] [blame] | 3140 | *quality = graphics->compqual; |
| 3141 | |
| 3142 | return Ok; |
| 3143 | } |
| 3144 | |
Evan Stade | a87ce7a | 2007-07-13 17:51:29 -0700 | [diff] [blame] | 3145 | /* FIXME: Interpolation mode is not used anywhere except the getter/setter. */ |
| 3146 | GpStatus WINGDIPAPI GdipGetInterpolationMode(GpGraphics *graphics, |
| 3147 | InterpolationMode *mode) |
| 3148 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3149 | TRACE("(%p, %p)\n", graphics, mode); |
| 3150 | |
Evan Stade | a87ce7a | 2007-07-13 17:51:29 -0700 | [diff] [blame] | 3151 | if(!graphics || !mode) |
| 3152 | return InvalidParameter; |
| 3153 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3154 | if(graphics->busy) |
| 3155 | return ObjectBusy; |
| 3156 | |
Evan Stade | a87ce7a | 2007-07-13 17:51:29 -0700 | [diff] [blame] | 3157 | *mode = graphics->interpolation; |
| 3158 | |
| 3159 | return Ok; |
| 3160 | } |
| 3161 | |
Nikolay Sivov | 63ae714 | 2008-12-11 10:32:43 +0300 | [diff] [blame] | 3162 | GpStatus WINGDIPAPI GdipGetNearestColor(GpGraphics *graphics, ARGB* argb) |
| 3163 | { |
| 3164 | if(!graphics || !argb) |
| 3165 | return InvalidParameter; |
| 3166 | |
| 3167 | if(graphics->busy) |
| 3168 | return ObjectBusy; |
| 3169 | |
| 3170 | FIXME("(%p, %p): stub\n", graphics, argb); |
| 3171 | |
| 3172 | return NotImplemented; |
| 3173 | } |
| 3174 | |
Evan Stade | 8162139 | 2007-07-24 17:18:39 -0700 | [diff] [blame] | 3175 | GpStatus WINGDIPAPI GdipGetPageScale(GpGraphics *graphics, REAL *scale) |
| 3176 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3177 | TRACE("(%p, %p)\n", graphics, scale); |
| 3178 | |
Evan Stade | 8162139 | 2007-07-24 17:18:39 -0700 | [diff] [blame] | 3179 | if(!graphics || !scale) |
| 3180 | return InvalidParameter; |
| 3181 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3182 | if(graphics->busy) |
| 3183 | return ObjectBusy; |
| 3184 | |
Evan Stade | 8162139 | 2007-07-24 17:18:39 -0700 | [diff] [blame] | 3185 | *scale = graphics->scale; |
| 3186 | |
| 3187 | return Ok; |
| 3188 | } |
| 3189 | |
Evan Stade | 10b575b | 2007-07-23 20:24:41 -0700 | [diff] [blame] | 3190 | GpStatus WINGDIPAPI GdipGetPageUnit(GpGraphics *graphics, GpUnit *unit) |
| 3191 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3192 | TRACE("(%p, %p)\n", graphics, unit); |
| 3193 | |
Evan Stade | 10b575b | 2007-07-23 20:24:41 -0700 | [diff] [blame] | 3194 | if(!graphics || !unit) |
| 3195 | return InvalidParameter; |
| 3196 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3197 | if(graphics->busy) |
| 3198 | return ObjectBusy; |
| 3199 | |
Evan Stade | 10b575b | 2007-07-23 20:24:41 -0700 | [diff] [blame] | 3200 | *unit = graphics->unit; |
| 3201 | |
| 3202 | return Ok; |
| 3203 | } |
| 3204 | |
Evan Stade | d6bd866d | 2007-07-13 17:51:33 -0700 | [diff] [blame] | 3205 | /* FIXME: Pixel offset mode is not used anywhere except the getter/setter. */ |
| 3206 | GpStatus WINGDIPAPI GdipGetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode |
| 3207 | *mode) |
| 3208 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3209 | TRACE("(%p, %p)\n", graphics, mode); |
| 3210 | |
Evan Stade | d6bd866d | 2007-07-13 17:51:33 -0700 | [diff] [blame] | 3211 | if(!graphics || !mode) |
| 3212 | return InvalidParameter; |
| 3213 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3214 | if(graphics->busy) |
| 3215 | return ObjectBusy; |
| 3216 | |
Evan Stade | d6bd866d | 2007-07-13 17:51:33 -0700 | [diff] [blame] | 3217 | *mode = graphics->pixeloffset; |
| 3218 | |
| 3219 | return Ok; |
| 3220 | } |
| 3221 | |
Evan Stade | 53e17d2 | 2007-07-13 17:51:13 -0700 | [diff] [blame] | 3222 | /* FIXME: Smoothing mode is not used anywhere except the getter/setter. */ |
| 3223 | GpStatus WINGDIPAPI GdipGetSmoothingMode(GpGraphics *graphics, SmoothingMode *mode) |
| 3224 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3225 | TRACE("(%p, %p)\n", graphics, mode); |
| 3226 | |
Evan Stade | 53e17d2 | 2007-07-13 17:51:13 -0700 | [diff] [blame] | 3227 | if(!graphics || !mode) |
| 3228 | return InvalidParameter; |
| 3229 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3230 | if(graphics->busy) |
| 3231 | return ObjectBusy; |
| 3232 | |
Evan Stade | 53e17d2 | 2007-07-13 17:51:13 -0700 | [diff] [blame] | 3233 | *mode = graphics->smoothing; |
| 3234 | |
| 3235 | return Ok; |
| 3236 | } |
| 3237 | |
Nikolay Sivov | 56173d4 | 2008-11-09 14:32:26 +0300 | [diff] [blame] | 3238 | GpStatus WINGDIPAPI GdipGetTextContrast(GpGraphics *graphics, UINT *contrast) |
| 3239 | { |
| 3240 | TRACE("(%p, %p)\n", graphics, contrast); |
| 3241 | |
| 3242 | if(!graphics || !contrast) |
| 3243 | return InvalidParameter; |
| 3244 | |
| 3245 | *contrast = graphics->textcontrast; |
| 3246 | |
| 3247 | return Ok; |
| 3248 | } |
| 3249 | |
Evan Stade | 5662820 | 2007-08-14 19:00:09 -0700 | [diff] [blame] | 3250 | /* FIXME: Text rendering hint is not used anywhere except the getter/setter. */ |
| 3251 | GpStatus WINGDIPAPI GdipGetTextRenderingHint(GpGraphics *graphics, |
| 3252 | TextRenderingHint *hint) |
| 3253 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3254 | TRACE("(%p, %p)\n", graphics, hint); |
| 3255 | |
Evan Stade | 5662820 | 2007-08-14 19:00:09 -0700 | [diff] [blame] | 3256 | if(!graphics || !hint) |
| 3257 | return InvalidParameter; |
| 3258 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3259 | if(graphics->busy) |
| 3260 | return ObjectBusy; |
| 3261 | |
Evan Stade | 5662820 | 2007-08-14 19:00:09 -0700 | [diff] [blame] | 3262 | *hint = graphics->texthint; |
| 3263 | |
| 3264 | return Ok; |
| 3265 | } |
| 3266 | |
Andrew Eikum | ef0ee6e | 2009-08-12 15:37:09 -0500 | [diff] [blame] | 3267 | GpStatus WINGDIPAPI GdipGetVisibleClipBounds(GpGraphics *graphics, GpRectF *rect) |
| 3268 | { |
| 3269 | GpRegion *clip_rgn; |
| 3270 | GpStatus stat; |
Andrew Eikum | ef0ee6e | 2009-08-12 15:37:09 -0500 | [diff] [blame] | 3271 | |
| 3272 | TRACE("(%p, %p)\n", graphics, rect); |
| 3273 | |
| 3274 | if(!graphics || !rect) |
| 3275 | return InvalidParameter; |
| 3276 | |
| 3277 | if(graphics->busy) |
| 3278 | return ObjectBusy; |
| 3279 | |
Andrew Eikum | ef0ee6e | 2009-08-12 15:37:09 -0500 | [diff] [blame] | 3280 | /* intersect window and graphics clipping regions */ |
| 3281 | if((stat = GdipCreateRegion(&clip_rgn)) != Ok) |
| 3282 | return stat; |
| 3283 | |
Andrew Eikum | 39f6f49 | 2009-08-26 18:03:08 -0500 | [diff] [blame] | 3284 | if((stat = get_visible_clip_region(graphics, clip_rgn)) != Ok) |
Andrew Eikum | ef0ee6e | 2009-08-12 15:37:09 -0500 | [diff] [blame] | 3285 | goto cleanup; |
| 3286 | |
| 3287 | /* get bounds of the region */ |
| 3288 | stat = GdipGetRegionBounds(clip_rgn, graphics, rect); |
| 3289 | |
| 3290 | cleanup: |
| 3291 | GdipDeleteRegion(clip_rgn); |
| 3292 | |
| 3293 | return stat; |
| 3294 | } |
| 3295 | |
| 3296 | GpStatus WINGDIPAPI GdipGetVisibleClipBoundsI(GpGraphics *graphics, GpRect *rect) |
| 3297 | { |
| 3298 | GpRectF rectf; |
| 3299 | GpStatus stat; |
| 3300 | |
| 3301 | TRACE("(%p, %p)\n", graphics, rect); |
| 3302 | |
| 3303 | if(!graphics || !rect) |
| 3304 | return InvalidParameter; |
| 3305 | |
| 3306 | if((stat = GdipGetVisibleClipBounds(graphics, &rectf)) == Ok) |
| 3307 | { |
| 3308 | rect->X = roundr(rectf.X); |
| 3309 | rect->Y = roundr(rectf.Y); |
| 3310 | rect->Width = roundr(rectf.Width); |
| 3311 | rect->Height = roundr(rectf.Height); |
| 3312 | } |
| 3313 | |
| 3314 | return stat; |
| 3315 | } |
| 3316 | |
Evan Stade | f30732f | 2007-07-24 17:18:47 -0700 | [diff] [blame] | 3317 | GpStatus WINGDIPAPI GdipGetWorldTransform(GpGraphics *graphics, GpMatrix *matrix) |
| 3318 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3319 | TRACE("(%p, %p)\n", graphics, matrix); |
| 3320 | |
Evan Stade | f30732f | 2007-07-24 17:18:47 -0700 | [diff] [blame] | 3321 | if(!graphics || !matrix) |
| 3322 | return InvalidParameter; |
| 3323 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3324 | if(graphics->busy) |
| 3325 | return ObjectBusy; |
| 3326 | |
Andrew Talbot | 5e8253a | 2008-02-29 22:06:47 +0000 | [diff] [blame] | 3327 | *matrix = *graphics->worldtrans; |
Evan Stade | f30732f | 2007-07-24 17:18:47 -0700 | [diff] [blame] | 3328 | return Ok; |
| 3329 | } |
| 3330 | |
Nikolay Sivov | bff1678 | 2008-09-05 13:56:10 +0400 | [diff] [blame] | 3331 | GpStatus WINGDIPAPI GdipGraphicsClear(GpGraphics *graphics, ARGB color) |
| 3332 | { |
| 3333 | GpSolidFill *brush; |
| 3334 | GpStatus stat; |
Andrew Eikum | fdf48f1 | 2009-08-12 15:36:54 -0500 | [diff] [blame] | 3335 | GpRectF wnd_rect; |
Nikolay Sivov | bff1678 | 2008-09-05 13:56:10 +0400 | [diff] [blame] | 3336 | |
| 3337 | TRACE("(%p, %x)\n", graphics, color); |
| 3338 | |
| 3339 | if(!graphics) |
| 3340 | return InvalidParameter; |
| 3341 | |
| 3342 | if(graphics->busy) |
| 3343 | return ObjectBusy; |
| 3344 | |
| 3345 | if((stat = GdipCreateSolidFill(color, &brush)) != Ok) |
| 3346 | return stat; |
| 3347 | |
Andrew Eikum | fdf48f1 | 2009-08-12 15:36:54 -0500 | [diff] [blame] | 3348 | if((stat = get_graphics_bounds(graphics, &wnd_rect)) != Ok){ |
| 3349 | GdipDeleteBrush((GpBrush*)brush); |
| 3350 | return stat; |
Nikolay Sivov | bff1678 | 2008-09-05 13:56:10 +0400 | [diff] [blame] | 3351 | } |
Andrew Eikum | fdf48f1 | 2009-08-12 15:36:54 -0500 | [diff] [blame] | 3352 | |
| 3353 | GdipFillRectangle(graphics, (GpBrush*)brush, wnd_rect.X, wnd_rect.Y, |
| 3354 | wnd_rect.Width, wnd_rect.Height); |
Nikolay Sivov | bff1678 | 2008-09-05 13:56:10 +0400 | [diff] [blame] | 3355 | |
| 3356 | GdipDeleteBrush((GpBrush*)brush); |
| 3357 | |
| 3358 | return Ok; |
| 3359 | } |
| 3360 | |
Nikolay Sivov | 813d6dc | 2008-08-28 17:49:41 +0400 | [diff] [blame] | 3361 | GpStatus WINGDIPAPI GdipIsClipEmpty(GpGraphics *graphics, BOOL *res) |
| 3362 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3363 | TRACE("(%p, %p)\n", graphics, res); |
| 3364 | |
Nikolay Sivov | 813d6dc | 2008-08-28 17:49:41 +0400 | [diff] [blame] | 3365 | if(!graphics || !res) |
| 3366 | return InvalidParameter; |
| 3367 | |
| 3368 | return GdipIsEmptyRegion(graphics->clip, graphics, res); |
| 3369 | } |
| 3370 | |
Nikolay Sivov | 3ecb8bd | 2008-09-26 22:34:39 +0400 | [diff] [blame] | 3371 | GpStatus WINGDIPAPI GdipIsVisiblePoint(GpGraphics *graphics, REAL x, REAL y, BOOL *result) |
| 3372 | { |
Andrew Eikum | d06dd2d | 2009-08-26 18:03:11 -0500 | [diff] [blame] | 3373 | GpStatus stat; |
| 3374 | GpRegion* rgn; |
| 3375 | GpPointF pt; |
| 3376 | |
| 3377 | TRACE("(%p, %.2f, %.2f, %p)\n", graphics, x, y, result); |
Nikolay Sivov | 3ecb8bd | 2008-09-26 22:34:39 +0400 | [diff] [blame] | 3378 | |
| 3379 | if(!graphics || !result) |
| 3380 | return InvalidParameter; |
| 3381 | |
| 3382 | if(graphics->busy) |
| 3383 | return ObjectBusy; |
| 3384 | |
Andrew Eikum | d06dd2d | 2009-08-26 18:03:11 -0500 | [diff] [blame] | 3385 | pt.X = x; |
| 3386 | pt.Y = y; |
| 3387 | if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice, |
| 3388 | CoordinateSpaceWorld, &pt, 1)) != Ok) |
| 3389 | return stat; |
| 3390 | |
| 3391 | if((stat = GdipCreateRegion(&rgn)) != Ok) |
| 3392 | return stat; |
| 3393 | |
| 3394 | if((stat = get_visible_clip_region(graphics, rgn)) != Ok) |
| 3395 | goto cleanup; |
| 3396 | |
| 3397 | stat = GdipIsVisibleRegionPoint(rgn, pt.X, pt.Y, graphics, result); |
| 3398 | |
| 3399 | cleanup: |
| 3400 | GdipDeleteRegion(rgn); |
| 3401 | return stat; |
Nikolay Sivov | 3ecb8bd | 2008-09-26 22:34:39 +0400 | [diff] [blame] | 3402 | } |
| 3403 | |
| 3404 | GpStatus WINGDIPAPI GdipIsVisiblePointI(GpGraphics *graphics, INT x, INT y, BOOL *result) |
| 3405 | { |
Andrew Eikum | d06dd2d | 2009-08-26 18:03:11 -0500 | [diff] [blame] | 3406 | return GdipIsVisiblePoint(graphics, (REAL)x, (REAL)y, result); |
Nikolay Sivov | 3ecb8bd | 2008-09-26 22:34:39 +0400 | [diff] [blame] | 3407 | } |
| 3408 | |
Andrew Eikum | f5896a2 | 2009-08-26 18:03:13 -0500 | [diff] [blame] | 3409 | GpStatus WINGDIPAPI GdipIsVisibleRect(GpGraphics *graphics, REAL x, REAL y, REAL width, REAL height, BOOL *result) |
| 3410 | { |
| 3411 | GpStatus stat; |
| 3412 | GpRegion* rgn; |
| 3413 | GpPointF pts[2]; |
| 3414 | |
| 3415 | TRACE("(%p %.2f %.2f %.2f %.2f %p)\n", graphics, x, y, width, height, result); |
| 3416 | |
| 3417 | if(!graphics || !result) |
| 3418 | return InvalidParameter; |
| 3419 | |
| 3420 | if(graphics->busy) |
| 3421 | return ObjectBusy; |
| 3422 | |
| 3423 | pts[0].X = x; |
| 3424 | pts[0].Y = y; |
| 3425 | pts[1].X = x + width; |
| 3426 | pts[1].Y = y + height; |
| 3427 | |
| 3428 | if((stat = GdipTransformPoints(graphics, CoordinateSpaceDevice, |
| 3429 | CoordinateSpaceWorld, pts, 2)) != Ok) |
| 3430 | return stat; |
| 3431 | |
| 3432 | pts[1].X -= pts[0].X; |
| 3433 | pts[1].Y -= pts[0].Y; |
| 3434 | |
| 3435 | if((stat = GdipCreateRegion(&rgn)) != Ok) |
| 3436 | return stat; |
| 3437 | |
| 3438 | if((stat = get_visible_clip_region(graphics, rgn)) != Ok) |
| 3439 | goto cleanup; |
| 3440 | |
| 3441 | stat = GdipIsVisibleRegionRect(rgn, pts[0].X, pts[0].Y, pts[1].X, pts[1].Y, graphics, result); |
| 3442 | |
| 3443 | cleanup: |
| 3444 | GdipDeleteRegion(rgn); |
| 3445 | return stat; |
| 3446 | } |
| 3447 | |
| 3448 | GpStatus WINGDIPAPI GdipIsVisibleRectI(GpGraphics *graphics, INT x, INT y, INT width, INT height, BOOL *result) |
| 3449 | { |
| 3450 | return GdipIsVisibleRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, result); |
| 3451 | } |
| 3452 | |
Adam Petaccia | be4a226 | 2008-07-09 03:33:40 -0400 | [diff] [blame] | 3453 | GpStatus WINGDIPAPI GdipMeasureCharacterRanges(GpGraphics* graphics, |
| 3454 | GDIPCONST WCHAR* string, INT length, GDIPCONST GpFont* font, |
| 3455 | GDIPCONST RectF* layoutRect, GDIPCONST GpStringFormat *stringFormat, |
| 3456 | INT regionCount, GpRegion** regions) |
| 3457 | { |
| 3458 | if (!(graphics && string && font && layoutRect && stringFormat && regions)) |
| 3459 | return InvalidParameter; |
| 3460 | |
| 3461 | FIXME("stub: %p %s %d %p %p %p %d %p\n", graphics, debugstr_w(string), |
| 3462 | length, font, layoutRect, stringFormat, regionCount, regions); |
| 3463 | |
| 3464 | return NotImplemented; |
| 3465 | } |
| 3466 | |
Evan Stade | 44e9839 | 2007-08-15 16:22:09 -0700 | [diff] [blame] | 3467 | /* Find the smallest rectangle that bounds the text when it is printed in rect |
| 3468 | * according to the format options listed in format. If rect has 0 width and |
| 3469 | * height, then just find the smallest rectangle that bounds the text when it's |
| 3470 | * printed at location (rect->X, rect-Y). */ |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3471 | GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics, |
| 3472 | GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font, |
| 3473 | GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format, RectF *bounds, |
| 3474 | INT *codepointsfitted, INT *linesfilled) |
| 3475 | { |
| 3476 | HFONT oldfont; |
| 3477 | WCHAR* stringdup; |
Evan Stade | 44e9839 | 2007-08-15 16:22:09 -0700 | [diff] [blame] | 3478 | INT sum = 0, height = 0, fit, fitcpy, max_width = 0, i, j, lret, nwidth, |
Vincent Povirk | e0d9d17 | 2009-07-24 16:24:19 -0500 | [diff] [blame] | 3479 | nheight, lineend; |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3480 | SIZE size; |
| 3481 | |
Vincent Povirk | 0f80aa8 | 2009-05-13 14:30:00 -0500 | [diff] [blame] | 3482 | TRACE("(%p, %s, %i, %p, %s, %p, %p, %p, %p)\n", graphics, |
| 3483 | debugstr_wn(string, length), length, font, debugstr_rectf(rect), format, |
| 3484 | bounds, codepointsfitted, linesfilled); |
| 3485 | |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3486 | if(!graphics || !string || !font || !rect) |
| 3487 | return InvalidParameter; |
| 3488 | |
Hans Leidekker | 1e170c9 | 2008-11-24 10:22:26 +0100 | [diff] [blame] | 3489 | if(linesfilled) *linesfilled = 0; |
| 3490 | if(codepointsfitted) *codepointsfitted = 0; |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3491 | |
Evan Stade | d4107db | 2007-08-15 16:22:04 -0700 | [diff] [blame] | 3492 | if(format) |
| 3493 | TRACE("may be ignoring some format flags: attr %x\n", format->attr); |
| 3494 | |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3495 | if(length == -1) length = lstrlenW(string); |
| 3496 | |
Alexandre Julliard | a2d0467 | 2008-09-25 11:19:23 +0200 | [diff] [blame] | 3497 | stringdup = GdipAlloc((length + 1) * sizeof(WCHAR)); |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3498 | if(!stringdup) return OutOfMemory; |
| 3499 | |
| 3500 | oldfont = SelectObject(graphics->hdc, CreateFontIndirectW(&font->lfw)); |
| 3501 | nwidth = roundr(rect->Width); |
Evan Stade | 44e9839 | 2007-08-15 16:22:09 -0700 | [diff] [blame] | 3502 | nheight = roundr(rect->Height); |
| 3503 | |
| 3504 | if((nwidth == 0) && (nheight == 0)) |
| 3505 | nwidth = nheight = INT_MAX; |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3506 | |
| 3507 | for(i = 0, j = 0; i < length; i++){ |
| 3508 | if(!isprintW(string[i]) && (string[i] != '\n')) |
| 3509 | continue; |
| 3510 | |
| 3511 | stringdup[j] = string[i]; |
| 3512 | j++; |
| 3513 | } |
| 3514 | |
| 3515 | stringdup[j] = 0; |
| 3516 | length = j; |
| 3517 | |
| 3518 | while(sum < length){ |
| 3519 | GetTextExtentExPointW(graphics->hdc, stringdup + sum, length - sum, |
| 3520 | nwidth, &fit, NULL, &size); |
| 3521 | fitcpy = fit; |
| 3522 | |
| 3523 | if(fit == 0) |
| 3524 | break; |
| 3525 | |
| 3526 | for(lret = 0; lret < fit; lret++) |
| 3527 | if(*(stringdup + sum + lret) == '\n') |
| 3528 | break; |
| 3529 | |
| 3530 | /* Line break code (may look strange, but it imitates windows). */ |
| 3531 | if(lret < fit) |
Vincent Povirk | e0d9d17 | 2009-07-24 16:24:19 -0500 | [diff] [blame] | 3532 | lineend = fit = lret; /* this is not an off-by-one error */ |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3533 | else if(fit < (length - sum)){ |
| 3534 | if(*(stringdup + sum + fit) == ' ') |
| 3535 | while(*(stringdup + sum + fit) == ' ') |
| 3536 | fit++; |
| 3537 | else |
| 3538 | while(*(stringdup + sum + fit - 1) != ' '){ |
| 3539 | fit--; |
| 3540 | |
| 3541 | if(*(stringdup + sum + fit) == '\t') |
| 3542 | break; |
| 3543 | |
| 3544 | if(fit == 0){ |
| 3545 | fit = fitcpy; |
| 3546 | break; |
| 3547 | } |
| 3548 | } |
Vincent Povirk | e0d9d17 | 2009-07-24 16:24:19 -0500 | [diff] [blame] | 3549 | lineend = fit; |
| 3550 | while(*(stringdup + sum + lineend - 1) == ' ' || |
| 3551 | *(stringdup + sum + lineend - 1) == '\t') |
| 3552 | lineend--; |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3553 | } |
Vincent Povirk | e0d9d17 | 2009-07-24 16:24:19 -0500 | [diff] [blame] | 3554 | else |
| 3555 | lineend = fit; |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3556 | |
Vincent Povirk | e0d9d17 | 2009-07-24 16:24:19 -0500 | [diff] [blame] | 3557 | GetTextExtentExPointW(graphics->hdc, stringdup + sum, lineend, |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3558 | nwidth, &j, NULL, &size); |
| 3559 | |
| 3560 | sum += fit + (lret < fitcpy ? 1 : 0); |
Hans Leidekker | 1e170c9 | 2008-11-24 10:22:26 +0100 | [diff] [blame] | 3561 | if(codepointsfitted) *codepointsfitted = sum; |
| 3562 | |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3563 | height += size.cy; |
Hans Leidekker | 1e170c9 | 2008-11-24 10:22:26 +0100 | [diff] [blame] | 3564 | if(linesfilled) *linesfilled += size.cy; |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3565 | max_width = max(max_width, size.cx); |
| 3566 | |
Evan Stade | 44e9839 | 2007-08-15 16:22:09 -0700 | [diff] [blame] | 3567 | if(height > nheight) |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3568 | break; |
Evan Stade | d4107db | 2007-08-15 16:22:04 -0700 | [diff] [blame] | 3569 | |
| 3570 | /* Stop if this was a linewrap (but not if it was a linebreak). */ |
| 3571 | if((lret == fitcpy) && format && (format->attr & StringFormatFlagsNoWrap)) |
| 3572 | break; |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3573 | } |
| 3574 | |
| 3575 | bounds->X = rect->X; |
| 3576 | bounds->Y = rect->Y; |
| 3577 | bounds->Width = (REAL)max_width; |
Evan Stade | 44e9839 | 2007-08-15 16:22:09 -0700 | [diff] [blame] | 3578 | bounds->Height = (REAL) min(height, nheight); |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3579 | |
Andrew Talbot | dfac063 | 2007-09-25 20:52:58 +0100 | [diff] [blame] | 3580 | GdipFree(stringdup); |
Evan Stade | a51cf1d | 2007-08-15 16:21:52 -0700 | [diff] [blame] | 3581 | DeleteObject(SelectObject(graphics->hdc, oldfont)); |
| 3582 | |
| 3583 | return Ok; |
| 3584 | } |
| 3585 | |
Nikolay Sivov | ff88d4e | 2008-08-28 17:34:22 +0400 | [diff] [blame] | 3586 | GpStatus WINGDIPAPI GdipResetClip(GpGraphics *graphics) |
| 3587 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3588 | TRACE("(%p)\n", graphics); |
| 3589 | |
Nikolay Sivov | ff88d4e | 2008-08-28 17:34:22 +0400 | [diff] [blame] | 3590 | if(!graphics) |
| 3591 | return InvalidParameter; |
| 3592 | |
| 3593 | if(graphics->busy) |
| 3594 | return ObjectBusy; |
| 3595 | |
| 3596 | return GdipSetInfinite(graphics->clip); |
| 3597 | } |
| 3598 | |
Nikolay Sivov | 169e87d | 2008-08-06 18:36:16 +0400 | [diff] [blame] | 3599 | GpStatus WINGDIPAPI GdipResetWorldTransform(GpGraphics *graphics) |
| 3600 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3601 | TRACE("(%p)\n", graphics); |
| 3602 | |
Nikolay Sivov | 169e87d | 2008-08-06 18:36:16 +0400 | [diff] [blame] | 3603 | if(!graphics) |
| 3604 | return InvalidParameter; |
| 3605 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3606 | if(graphics->busy) |
| 3607 | return ObjectBusy; |
| 3608 | |
Nikolay Sivov | 169e87d | 2008-08-06 18:36:16 +0400 | [diff] [blame] | 3609 | graphics->worldtrans->matrix[0] = 1.0; |
| 3610 | graphics->worldtrans->matrix[1] = 0.0; |
| 3611 | graphics->worldtrans->matrix[2] = 0.0; |
| 3612 | graphics->worldtrans->matrix[3] = 1.0; |
| 3613 | graphics->worldtrans->matrix[4] = 0.0; |
| 3614 | graphics->worldtrans->matrix[5] = 0.0; |
| 3615 | |
| 3616 | return Ok; |
| 3617 | } |
| 3618 | |
Evan Stade | c760668 | 2007-07-13 17:51:37 -0700 | [diff] [blame] | 3619 | GpStatus WINGDIPAPI GdipRestoreGraphics(GpGraphics *graphics, GraphicsState state) |
| 3620 | { |
Andrew Eikum | 1ef1394 | 2009-07-07 22:30:49 -0500 | [diff] [blame] | 3621 | return GdipEndContainer(graphics, state); |
Evan Stade | c760668 | 2007-07-13 17:51:37 -0700 | [diff] [blame] | 3622 | } |
| 3623 | |
Evan Stade | 3126c77 | 2007-08-13 18:34:35 -0700 | [diff] [blame] | 3624 | GpStatus WINGDIPAPI GdipRotateWorldTransform(GpGraphics *graphics, REAL angle, |
| 3625 | GpMatrixOrder order) |
| 3626 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3627 | TRACE("(%p, %.2f, %d)\n", graphics, angle, order); |
| 3628 | |
Evan Stade | 3126c77 | 2007-08-13 18:34:35 -0700 | [diff] [blame] | 3629 | if(!graphics) |
| 3630 | return InvalidParameter; |
| 3631 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3632 | if(graphics->busy) |
| 3633 | return ObjectBusy; |
| 3634 | |
Evan Stade | 3126c77 | 2007-08-13 18:34:35 -0700 | [diff] [blame] | 3635 | return GdipRotateMatrix(graphics->worldtrans, angle, order); |
| 3636 | } |
| 3637 | |
Evan Stade | c760668 | 2007-07-13 17:51:37 -0700 | [diff] [blame] | 3638 | GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state) |
| 3639 | { |
Andrew Eikum | 1ef1394 | 2009-07-07 22:30:49 -0500 | [diff] [blame] | 3640 | return GdipBeginContainer2(graphics, state); |
Evan Stade | c760668 | 2007-07-13 17:51:37 -0700 | [diff] [blame] | 3641 | } |
| 3642 | |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 3643 | GpStatus WINGDIPAPI GdipBeginContainer2(GpGraphics *graphics, |
| 3644 | GraphicsContainer *state) |
Hans Leidekker | 5ce729a | 2008-11-24 10:22:51 +0100 | [diff] [blame] | 3645 | { |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 3646 | GraphicsContainerItem *container; |
| 3647 | GpStatus sts; |
| 3648 | |
| 3649 | TRACE("(%p, %p)\n", graphics, state); |
Hans Leidekker | 5ce729a | 2008-11-24 10:22:51 +0100 | [diff] [blame] | 3650 | |
| 3651 | if(!graphics || !state) |
| 3652 | return InvalidParameter; |
| 3653 | |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 3654 | sts = init_container(&container, graphics); |
| 3655 | if(sts != Ok) |
| 3656 | return sts; |
| 3657 | |
| 3658 | list_add_head(&graphics->containers, &container->entry); |
| 3659 | *state = graphics->contid = container->contid; |
| 3660 | |
Hans Leidekker | 5ce729a | 2008-11-24 10:22:51 +0100 | [diff] [blame] | 3661 | return Ok; |
| 3662 | } |
| 3663 | |
Andrew Eikum | 3091506 | 2009-05-31 15:00:03 -0500 | [diff] [blame] | 3664 | GpStatus WINGDIPAPI GdipBeginContainer(GpGraphics *graphics, GDIPCONST GpRectF *dstrect, GDIPCONST GpRectF *srcrect, GpUnit unit, GraphicsContainer *state) |
| 3665 | { |
| 3666 | FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state); |
| 3667 | return NotImplemented; |
| 3668 | } |
| 3669 | |
| 3670 | GpStatus WINGDIPAPI GdipBeginContainerI(GpGraphics *graphics, GDIPCONST GpRect *dstrect, GDIPCONST GpRect *srcrect, GpUnit unit, GraphicsContainer *state) |
| 3671 | { |
| 3672 | FIXME("(%p, %p, %p, %d, %p): stub\n", graphics, dstrect, srcrect, unit, state); |
| 3673 | return NotImplemented; |
| 3674 | } |
| 3675 | |
Andrew Eikum | b850008 | 2009-06-01 20:01:43 -0500 | [diff] [blame] | 3676 | GpStatus WINGDIPAPI GdipComment(GpGraphics *graphics, UINT sizeData, GDIPCONST BYTE *data) |
| 3677 | { |
| 3678 | FIXME("(%p, %d, %p): stub\n", graphics, sizeData, data); |
| 3679 | return NotImplemented; |
| 3680 | } |
| 3681 | |
Andrew Eikum | a06c257 | 2009-07-07 22:30:29 -0500 | [diff] [blame] | 3682 | GpStatus WINGDIPAPI GdipEndContainer(GpGraphics *graphics, GraphicsContainer state) |
Hans Leidekker | 5ce729a | 2008-11-24 10:22:51 +0100 | [diff] [blame] | 3683 | { |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 3684 | GpStatus sts; |
| 3685 | GraphicsContainerItem *container, *container2; |
Hans Leidekker | 5ce729a | 2008-11-24 10:22:51 +0100 | [diff] [blame] | 3686 | |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 3687 | TRACE("(%p, %x)\n", graphics, state); |
| 3688 | |
| 3689 | if(!graphics) |
Hans Leidekker | 5ce729a | 2008-11-24 10:22:51 +0100 | [diff] [blame] | 3690 | return InvalidParameter; |
| 3691 | |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 3692 | LIST_FOR_EACH_ENTRY(container, &graphics->containers, GraphicsContainerItem, entry){ |
| 3693 | if(container->contid == state) |
| 3694 | break; |
| 3695 | } |
| 3696 | |
| 3697 | /* did not find a matching container */ |
| 3698 | if(&container->entry == &graphics->containers) |
| 3699 | return Ok; |
| 3700 | |
Andrew Eikum | a06c257 | 2009-07-07 22:30:29 -0500 | [diff] [blame] | 3701 | sts = restore_container(graphics, container); |
| 3702 | if(sts != Ok) |
| 3703 | return sts; |
| 3704 | |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 3705 | /* remove all of the containers on top of the found container */ |
| 3706 | LIST_FOR_EACH_ENTRY_SAFE(container, container2, &graphics->containers, GraphicsContainerItem, entry){ |
| 3707 | if(container->contid == state) |
| 3708 | break; |
| 3709 | list_remove(&container->entry); |
| 3710 | delete_container(container); |
| 3711 | } |
| 3712 | |
| 3713 | list_remove(&container->entry); |
Andrew Eikum | 632aef3 | 2009-07-05 17:04:20 -0500 | [diff] [blame] | 3714 | delete_container(container); |
| 3715 | |
Andrew Eikum | a06c257 | 2009-07-07 22:30:29 -0500 | [diff] [blame] | 3716 | return Ok; |
Hans Leidekker | 5ce729a | 2008-11-24 10:22:51 +0100 | [diff] [blame] | 3717 | } |
| 3718 | |
Evan Stade | 30fdcc7 | 2007-08-13 18:34:38 -0700 | [diff] [blame] | 3719 | GpStatus WINGDIPAPI GdipScaleWorldTransform(GpGraphics *graphics, REAL sx, |
| 3720 | REAL sy, GpMatrixOrder order) |
| 3721 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3722 | TRACE("(%p, %.2f, %.2f, %d)\n", graphics, sx, sy, order); |
| 3723 | |
Evan Stade | 30fdcc7 | 2007-08-13 18:34:38 -0700 | [diff] [blame] | 3724 | if(!graphics) |
| 3725 | return InvalidParameter; |
| 3726 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3727 | if(graphics->busy) |
| 3728 | return ObjectBusy; |
| 3729 | |
Evan Stade | 30fdcc7 | 2007-08-13 18:34:38 -0700 | [diff] [blame] | 3730 | return GdipScaleMatrix(graphics->worldtrans, sx, sy, order); |
| 3731 | } |
| 3732 | |
Nikolay Sivov | c543f3d | 2008-10-22 20:03:10 +0400 | [diff] [blame] | 3733 | GpStatus WINGDIPAPI GdipSetClipGraphics(GpGraphics *graphics, GpGraphics *srcgraphics, |
| 3734 | CombineMode mode) |
| 3735 | { |
| 3736 | TRACE("(%p, %p, %d)\n", graphics, srcgraphics, mode); |
| 3737 | |
| 3738 | if(!graphics || !srcgraphics) |
| 3739 | return InvalidParameter; |
| 3740 | |
| 3741 | return GdipCombineRegionRegion(graphics->clip, srcgraphics->clip, mode); |
| 3742 | } |
| 3743 | |
Evan Stade | e807eb9 | 2007-08-13 18:34:27 -0700 | [diff] [blame] | 3744 | GpStatus WINGDIPAPI GdipSetCompositingMode(GpGraphics *graphics, |
| 3745 | CompositingMode mode) |
| 3746 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3747 | TRACE("(%p, %d)\n", graphics, mode); |
| 3748 | |
Evan Stade | e807eb9 | 2007-08-13 18:34:27 -0700 | [diff] [blame] | 3749 | if(!graphics) |
| 3750 | return InvalidParameter; |
| 3751 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3752 | if(graphics->busy) |
| 3753 | return ObjectBusy; |
| 3754 | |
Evan Stade | e807eb9 | 2007-08-13 18:34:27 -0700 | [diff] [blame] | 3755 | graphics->compmode = mode; |
| 3756 | |
| 3757 | return Ok; |
| 3758 | } |
| 3759 | |
Evan Stade | 60cad23 | 2007-07-13 17:51:25 -0700 | [diff] [blame] | 3760 | GpStatus WINGDIPAPI GdipSetCompositingQuality(GpGraphics *graphics, |
| 3761 | CompositingQuality quality) |
| 3762 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3763 | TRACE("(%p, %d)\n", graphics, quality); |
| 3764 | |
Evan Stade | 60cad23 | 2007-07-13 17:51:25 -0700 | [diff] [blame] | 3765 | if(!graphics) |
| 3766 | return InvalidParameter; |
| 3767 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3768 | if(graphics->busy) |
| 3769 | return ObjectBusy; |
| 3770 | |
Evan Stade | 60cad23 | 2007-07-13 17:51:25 -0700 | [diff] [blame] | 3771 | graphics->compqual = quality; |
| 3772 | |
| 3773 | return Ok; |
| 3774 | } |
| 3775 | |
Evan Stade | a87ce7a | 2007-07-13 17:51:29 -0700 | [diff] [blame] | 3776 | GpStatus WINGDIPAPI GdipSetInterpolationMode(GpGraphics *graphics, |
| 3777 | InterpolationMode mode) |
| 3778 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3779 | TRACE("(%p, %d)\n", graphics, mode); |
| 3780 | |
Evan Stade | a87ce7a | 2007-07-13 17:51:29 -0700 | [diff] [blame] | 3781 | if(!graphics) |
| 3782 | return InvalidParameter; |
| 3783 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3784 | if(graphics->busy) |
| 3785 | return ObjectBusy; |
| 3786 | |
Evan Stade | a87ce7a | 2007-07-13 17:51:29 -0700 | [diff] [blame] | 3787 | graphics->interpolation = mode; |
| 3788 | |
| 3789 | return Ok; |
| 3790 | } |
| 3791 | |
Evan Stade | 8162139 | 2007-07-24 17:18:39 -0700 | [diff] [blame] | 3792 | GpStatus WINGDIPAPI GdipSetPageScale(GpGraphics *graphics, REAL scale) |
| 3793 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3794 | TRACE("(%p, %.2f)\n", graphics, scale); |
| 3795 | |
Evan Stade | 8162139 | 2007-07-24 17:18:39 -0700 | [diff] [blame] | 3796 | if(!graphics || (scale <= 0.0)) |
| 3797 | return InvalidParameter; |
| 3798 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3799 | if(graphics->busy) |
| 3800 | return ObjectBusy; |
| 3801 | |
Evan Stade | 8162139 | 2007-07-24 17:18:39 -0700 | [diff] [blame] | 3802 | graphics->scale = scale; |
| 3803 | |
| 3804 | return Ok; |
| 3805 | } |
| 3806 | |
Evan Stade | 10b575b | 2007-07-23 20:24:41 -0700 | [diff] [blame] | 3807 | GpStatus WINGDIPAPI GdipSetPageUnit(GpGraphics *graphics, GpUnit unit) |
| 3808 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3809 | TRACE("(%p, %d)\n", graphics, unit); |
| 3810 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3811 | if(!graphics) |
| 3812 | return InvalidParameter; |
| 3813 | |
| 3814 | if(graphics->busy) |
| 3815 | return ObjectBusy; |
| 3816 | |
| 3817 | if(unit == UnitWorld) |
Evan Stade | 10b575b | 2007-07-23 20:24:41 -0700 | [diff] [blame] | 3818 | return InvalidParameter; |
| 3819 | |
| 3820 | graphics->unit = unit; |
| 3821 | |
| 3822 | return Ok; |
| 3823 | } |
| 3824 | |
Evan Stade | d6bd866d | 2007-07-13 17:51:33 -0700 | [diff] [blame] | 3825 | GpStatus WINGDIPAPI GdipSetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode |
| 3826 | mode) |
| 3827 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3828 | TRACE("(%p, %d)\n", graphics, mode); |
| 3829 | |
Evan Stade | d6bd866d | 2007-07-13 17:51:33 -0700 | [diff] [blame] | 3830 | if(!graphics) |
| 3831 | return InvalidParameter; |
| 3832 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3833 | if(graphics->busy) |
| 3834 | return ObjectBusy; |
| 3835 | |
Evan Stade | d6bd866d | 2007-07-13 17:51:33 -0700 | [diff] [blame] | 3836 | graphics->pixeloffset = mode; |
| 3837 | |
| 3838 | return Ok; |
| 3839 | } |
| 3840 | |
Vincent Povirk | 27b47ea | 2009-05-06 16:03:27 -0500 | [diff] [blame] | 3841 | GpStatus WINGDIPAPI GdipSetRenderingOrigin(GpGraphics *graphics, INT x, INT y) |
| 3842 | { |
| 3843 | static int calls; |
| 3844 | |
| 3845 | TRACE("(%p,%i,%i)\n", graphics, x, y); |
| 3846 | |
| 3847 | if (!(calls++)) |
| 3848 | FIXME("not implemented\n"); |
| 3849 | |
| 3850 | return NotImplemented; |
| 3851 | } |
| 3852 | |
Evan Stade | 53e17d2 | 2007-07-13 17:51:13 -0700 | [diff] [blame] | 3853 | GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics *graphics, SmoothingMode mode) |
| 3854 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3855 | TRACE("(%p, %d)\n", graphics, mode); |
| 3856 | |
Evan Stade | 53e17d2 | 2007-07-13 17:51:13 -0700 | [diff] [blame] | 3857 | if(!graphics) |
| 3858 | return InvalidParameter; |
| 3859 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3860 | if(graphics->busy) |
| 3861 | return ObjectBusy; |
| 3862 | |
Evan Stade | 53e17d2 | 2007-07-13 17:51:13 -0700 | [diff] [blame] | 3863 | graphics->smoothing = mode; |
| 3864 | |
| 3865 | return Ok; |
| 3866 | } |
Evan Stade | f30732f | 2007-07-24 17:18:47 -0700 | [diff] [blame] | 3867 | |
Nikolay Sivov | 7126473 | 2008-11-09 14:38:16 +0300 | [diff] [blame] | 3868 | GpStatus WINGDIPAPI GdipSetTextContrast(GpGraphics *graphics, UINT contrast) |
| 3869 | { |
| 3870 | TRACE("(%p, %d)\n", graphics, contrast); |
| 3871 | |
| 3872 | if(!graphics) |
| 3873 | return InvalidParameter; |
| 3874 | |
| 3875 | graphics->textcontrast = contrast; |
| 3876 | |
| 3877 | return Ok; |
| 3878 | } |
| 3879 | |
Evan Stade | 5662820 | 2007-08-14 19:00:09 -0700 | [diff] [blame] | 3880 | GpStatus WINGDIPAPI GdipSetTextRenderingHint(GpGraphics *graphics, |
| 3881 | TextRenderingHint hint) |
| 3882 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3883 | TRACE("(%p, %d)\n", graphics, hint); |
| 3884 | |
Evan Stade | 5662820 | 2007-08-14 19:00:09 -0700 | [diff] [blame] | 3885 | if(!graphics) |
| 3886 | return InvalidParameter; |
| 3887 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3888 | if(graphics->busy) |
| 3889 | return ObjectBusy; |
| 3890 | |
Evan Stade | 5662820 | 2007-08-14 19:00:09 -0700 | [diff] [blame] | 3891 | graphics->texthint = hint; |
| 3892 | |
| 3893 | return Ok; |
| 3894 | } |
| 3895 | |
Evan Stade | f30732f | 2007-07-24 17:18:47 -0700 | [diff] [blame] | 3896 | GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics *graphics, GpMatrix *matrix) |
| 3897 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3898 | TRACE("(%p, %p)\n", graphics, matrix); |
| 3899 | |
Evan Stade | f30732f | 2007-07-24 17:18:47 -0700 | [diff] [blame] | 3900 | if(!graphics || !matrix) |
| 3901 | return InvalidParameter; |
| 3902 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3903 | if(graphics->busy) |
| 3904 | return ObjectBusy; |
| 3905 | |
Evan Stade | f30732f | 2007-07-24 17:18:47 -0700 | [diff] [blame] | 3906 | GdipDeleteMatrix(graphics->worldtrans); |
| 3907 | return GdipCloneMatrix(matrix, &graphics->worldtrans); |
| 3908 | } |
Evan Stade | 795b622 | 2007-08-09 18:25:31 -0700 | [diff] [blame] | 3909 | |
| 3910 | GpStatus WINGDIPAPI GdipTranslateWorldTransform(GpGraphics *graphics, REAL dx, |
| 3911 | REAL dy, GpMatrixOrder order) |
| 3912 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 3913 | TRACE("(%p, %.2f, %.2f, %d)\n", graphics, dx, dy, order); |
| 3914 | |
Evan Stade | 795b622 | 2007-08-09 18:25:31 -0700 | [diff] [blame] | 3915 | if(!graphics) |
| 3916 | return InvalidParameter; |
| 3917 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3918 | if(graphics->busy) |
| 3919 | return ObjectBusy; |
| 3920 | |
Evan Stade | 795b622 | 2007-08-09 18:25:31 -0700 | [diff] [blame] | 3921 | return GdipTranslateMatrix(graphics->worldtrans, dx, dy, order); |
| 3922 | } |
Lei Zhang | d9a4299 | 2008-04-08 14:44:41 -0700 | [diff] [blame] | 3923 | |
Nikolay Sivov | f8edb06 | 2009-02-02 23:33:41 +0300 | [diff] [blame] | 3924 | /***************************************************************************** |
| 3925 | * GdipSetClipHrgn [GDIPLUS.@] |
| 3926 | */ |
| 3927 | GpStatus WINGDIPAPI GdipSetClipHrgn(GpGraphics *graphics, HRGN hrgn, CombineMode mode) |
| 3928 | { |
| 3929 | GpRegion *region; |
| 3930 | GpStatus status; |
| 3931 | |
| 3932 | TRACE("(%p, %p, %d)\n", graphics, hrgn, mode); |
| 3933 | |
| 3934 | if(!graphics) |
| 3935 | return InvalidParameter; |
| 3936 | |
| 3937 | status = GdipCreateRegionHrgn(hrgn, ®ion); |
| 3938 | if(status != Ok) |
| 3939 | return status; |
| 3940 | |
| 3941 | status = GdipSetClipRegion(graphics, region, mode); |
| 3942 | |
| 3943 | GdipDeleteRegion(region); |
| 3944 | return status; |
| 3945 | } |
| 3946 | |
Nikolay Sivov | e2817e5 | 2008-09-26 22:18:09 +0400 | [diff] [blame] | 3947 | GpStatus WINGDIPAPI GdipSetClipPath(GpGraphics *graphics, GpPath *path, CombineMode mode) |
| 3948 | { |
| 3949 | TRACE("(%p, %p, %d)\n", graphics, path, mode); |
| 3950 | |
| 3951 | if(!graphics) |
| 3952 | return InvalidParameter; |
| 3953 | |
| 3954 | if(graphics->busy) |
| 3955 | return ObjectBusy; |
| 3956 | |
| 3957 | return GdipCombineRegionPath(graphics->clip, path, mode); |
| 3958 | } |
| 3959 | |
Nikolay Sivov | 8d9c486 | 2008-09-25 10:41:15 +0400 | [diff] [blame] | 3960 | GpStatus WINGDIPAPI GdipSetClipRect(GpGraphics *graphics, REAL x, REAL y, |
| 3961 | REAL width, REAL height, |
| 3962 | CombineMode mode) |
Lei Zhang | d9a4299 | 2008-04-08 14:44:41 -0700 | [diff] [blame] | 3963 | { |
Nikolay Sivov | 8d9c486 | 2008-09-25 10:41:15 +0400 | [diff] [blame] | 3964 | GpRectF rect; |
| 3965 | |
| 3966 | TRACE("(%p, %.2f, %.2f, %.2f, %.2f, %d)\n", graphics, x, y, width, height, mode); |
Lei Zhang | d9a4299 | 2008-04-08 14:44:41 -0700 | [diff] [blame] | 3967 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 3968 | if(!graphics) |
| 3969 | return InvalidParameter; |
| 3970 | |
| 3971 | if(graphics->busy) |
| 3972 | return ObjectBusy; |
| 3973 | |
Nikolay Sivov | 8d9c486 | 2008-09-25 10:41:15 +0400 | [diff] [blame] | 3974 | rect.X = x; |
| 3975 | rect.Y = y; |
| 3976 | rect.Width = width; |
| 3977 | rect.Height = height; |
Lei Zhang | d9a4299 | 2008-04-08 14:44:41 -0700 | [diff] [blame] | 3978 | |
Nikolay Sivov | 8d9c486 | 2008-09-25 10:41:15 +0400 | [diff] [blame] | 3979 | return GdipCombineRegionRect(graphics->clip, &rect, mode); |
| 3980 | } |
| 3981 | |
| 3982 | GpStatus WINGDIPAPI GdipSetClipRectI(GpGraphics *graphics, INT x, INT y, |
| 3983 | INT width, INT height, |
| 3984 | CombineMode mode) |
| 3985 | { |
| 3986 | TRACE("(%p, %d, %d, %d, %d, %d)\n", graphics, x, y, width, height, mode); |
| 3987 | |
| 3988 | if(!graphics) |
| 3989 | return InvalidParameter; |
| 3990 | |
| 3991 | if(graphics->busy) |
| 3992 | return ObjectBusy; |
| 3993 | |
| 3994 | return GdipSetClipRect(graphics, (REAL)x, (REAL)y, (REAL)width, (REAL)height, mode); |
Lei Zhang | d9a4299 | 2008-04-08 14:44:41 -0700 | [diff] [blame] | 3995 | } |
Lei Zhang | cec6c2e | 2008-04-09 12:35:29 -0700 | [diff] [blame] | 3996 | |
| 3997 | GpStatus WINGDIPAPI GdipSetClipRegion(GpGraphics *graphics, GpRegion *region, |
Nikolay Sivov | 0df5fb5 | 2008-08-27 23:30:59 +0400 | [diff] [blame] | 3998 | CombineMode mode) |
Lei Zhang | cec6c2e | 2008-04-09 12:35:29 -0700 | [diff] [blame] | 3999 | { |
Nikolay Sivov | 0df5fb5 | 2008-08-27 23:30:59 +0400 | [diff] [blame] | 4000 | TRACE("(%p, %p, %d)\n", graphics, region, mode); |
Lei Zhang | cec6c2e | 2008-04-09 12:35:29 -0700 | [diff] [blame] | 4001 | |
Nikolay Sivov | 0df5fb5 | 2008-08-27 23:30:59 +0400 | [diff] [blame] | 4002 | if(!graphics || !region) |
| 4003 | return InvalidParameter; |
Lei Zhang | cec6c2e | 2008-04-09 12:35:29 -0700 | [diff] [blame] | 4004 | |
Nikolay Sivov | 0df5fb5 | 2008-08-27 23:30:59 +0400 | [diff] [blame] | 4005 | if(graphics->busy) |
| 4006 | return ObjectBusy; |
| 4007 | |
| 4008 | return GdipCombineRegionRegion(graphics->clip, region, mode); |
Lei Zhang | cec6c2e | 2008-04-09 12:35:29 -0700 | [diff] [blame] | 4009 | } |
Lei Zhang | 54a0664 | 2008-04-10 12:40:21 -0700 | [diff] [blame] | 4010 | |
Nikolay Sivov | 4570501 | 2008-08-24 14:45:14 +0400 | [diff] [blame] | 4011 | GpStatus WINGDIPAPI GdipSetMetafileDownLevelRasterizationLimit(GpMetafile *metafile, |
Lei Zhang | 54a0664 | 2008-04-10 12:40:21 -0700 | [diff] [blame] | 4012 | UINT limitDpi) |
| 4013 | { |
| 4014 | static int calls; |
| 4015 | |
| 4016 | if(!(calls++)) |
| 4017 | FIXME("not implemented\n"); |
| 4018 | |
| 4019 | return NotImplemented; |
| 4020 | } |
Nikolay Sivov | 4697593 | 2008-04-24 20:48:17 +0400 | [diff] [blame] | 4021 | |
| 4022 | GpStatus WINGDIPAPI GdipDrawPolygon(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPointF *points, |
| 4023 | INT count) |
| 4024 | { |
| 4025 | INT save_state; |
| 4026 | POINT *pti; |
| 4027 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 4028 | TRACE("(%p, %p, %d)\n", graphics, points, count); |
| 4029 | |
Nikolay Sivov | 4697593 | 2008-04-24 20:48:17 +0400 | [diff] [blame] | 4030 | if(!graphics || !pen || count<=0) |
| 4031 | return InvalidParameter; |
| 4032 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 4033 | if(graphics->busy) |
| 4034 | return ObjectBusy; |
| 4035 | |
Nikolay Sivov | 4697593 | 2008-04-24 20:48:17 +0400 | [diff] [blame] | 4036 | pti = GdipAlloc(sizeof(POINT) * count); |
| 4037 | |
| 4038 | save_state = prepare_dc(graphics, pen); |
| 4039 | SelectObject(graphics->hdc, GetStockObject(NULL_BRUSH)); |
| 4040 | |
| 4041 | transform_and_round_points(graphics, pti, (GpPointF*)points, count); |
| 4042 | Polygon(graphics->hdc, pti, count); |
| 4043 | |
| 4044 | restore_dc(graphics, save_state); |
| 4045 | GdipFree(pti); |
| 4046 | |
| 4047 | return Ok; |
| 4048 | } |
| 4049 | |
| 4050 | GpStatus WINGDIPAPI GdipDrawPolygonI(GpGraphics *graphics,GpPen *pen,GDIPCONST GpPoint *points, |
| 4051 | INT count) |
| 4052 | { |
| 4053 | GpStatus ret; |
| 4054 | GpPointF *ptf; |
| 4055 | INT i; |
| 4056 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 4057 | TRACE("(%p, %p, %p, %d)\n", graphics, pen, points, count); |
| 4058 | |
Nikolay Sivov | 4697593 | 2008-04-24 20:48:17 +0400 | [diff] [blame] | 4059 | if(count<=0) return InvalidParameter; |
| 4060 | ptf = GdipAlloc(sizeof(GpPointF) * count); |
| 4061 | |
| 4062 | for(i = 0;i < count; i++){ |
| 4063 | ptf[i].X = (REAL)points[i].X; |
| 4064 | ptf[i].Y = (REAL)points[i].Y; |
| 4065 | } |
| 4066 | |
| 4067 | ret = GdipDrawPolygon(graphics,pen,ptf,count); |
| 4068 | GdipFree(ptf); |
| 4069 | |
| 4070 | return ret; |
| 4071 | } |
Nikolay Sivov | d576995 | 2008-04-29 00:10:20 +0400 | [diff] [blame] | 4072 | |
| 4073 | GpStatus WINGDIPAPI GdipGetDpiX(GpGraphics *graphics, REAL* dpi) |
| 4074 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 4075 | TRACE("(%p, %p)\n", graphics, dpi); |
| 4076 | |
Nikolay Sivov | d576995 | 2008-04-29 00:10:20 +0400 | [diff] [blame] | 4077 | if(!graphics || !dpi) |
| 4078 | return InvalidParameter; |
| 4079 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 4080 | if(graphics->busy) |
| 4081 | return ObjectBusy; |
| 4082 | |
Nikolay Sivov | d576995 | 2008-04-29 00:10:20 +0400 | [diff] [blame] | 4083 | *dpi = (REAL)GetDeviceCaps(graphics->hdc, LOGPIXELSX); |
| 4084 | |
| 4085 | return Ok; |
| 4086 | } |
| 4087 | |
| 4088 | GpStatus WINGDIPAPI GdipGetDpiY(GpGraphics *graphics, REAL* dpi) |
| 4089 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 4090 | TRACE("(%p, %p)\n", graphics, dpi); |
| 4091 | |
Nikolay Sivov | d576995 | 2008-04-29 00:10:20 +0400 | [diff] [blame] | 4092 | if(!graphics || !dpi) |
| 4093 | return InvalidParameter; |
| 4094 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 4095 | if(graphics->busy) |
| 4096 | return ObjectBusy; |
| 4097 | |
Nikolay Sivov | d576995 | 2008-04-29 00:10:20 +0400 | [diff] [blame] | 4098 | *dpi = (REAL)GetDeviceCaps(graphics->hdc, LOGPIXELSY); |
| 4099 | |
| 4100 | return Ok; |
| 4101 | } |
Nikolay Sivov | 510c26a | 2008-04-30 01:28:40 +0400 | [diff] [blame] | 4102 | |
| 4103 | GpStatus WINGDIPAPI GdipMultiplyWorldTransform(GpGraphics *graphics, GDIPCONST GpMatrix *matrix, |
| 4104 | GpMatrixOrder order) |
| 4105 | { |
| 4106 | GpMatrix m; |
| 4107 | GpStatus ret; |
| 4108 | |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 4109 | TRACE("(%p, %p, %d)\n", graphics, matrix, order); |
| 4110 | |
Nikolay Sivov | 510c26a | 2008-04-30 01:28:40 +0400 | [diff] [blame] | 4111 | if(!graphics || !matrix) |
| 4112 | return InvalidParameter; |
| 4113 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 4114 | if(graphics->busy) |
| 4115 | return ObjectBusy; |
| 4116 | |
Nikolay Sivov | 510c26a | 2008-04-30 01:28:40 +0400 | [diff] [blame] | 4117 | m = *(graphics->worldtrans); |
| 4118 | |
Michael Stefaniuc | b53877d | 2009-01-14 09:52:24 +0100 | [diff] [blame] | 4119 | ret = GdipMultiplyMatrix(&m, matrix, order); |
Nikolay Sivov | 510c26a | 2008-04-30 01:28:40 +0400 | [diff] [blame] | 4120 | if(ret == Ok) |
| 4121 | *(graphics->worldtrans) = m; |
| 4122 | |
| 4123 | return ret; |
| 4124 | } |
Huw Davies | 6cfb469 | 2008-05-12 16:51:32 +0100 | [diff] [blame] | 4125 | |
| 4126 | GpStatus WINGDIPAPI GdipGetDC(GpGraphics *graphics, HDC *hdc) |
| 4127 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 4128 | TRACE("(%p, %p)\n", graphics, hdc); |
| 4129 | |
Nikolay Sivov | 4570501 | 2008-08-24 14:45:14 +0400 | [diff] [blame] | 4130 | if(!graphics || !hdc) |
| 4131 | return InvalidParameter; |
| 4132 | |
Nikolay Sivov | 366ae1e | 2008-08-24 14:45:18 +0400 | [diff] [blame] | 4133 | if(graphics->busy) |
| 4134 | return ObjectBusy; |
| 4135 | |
| 4136 | *hdc = graphics->hdc; |
| 4137 | graphics->busy = TRUE; |
| 4138 | |
| 4139 | return Ok; |
Huw Davies | 6cfb469 | 2008-05-12 16:51:32 +0100 | [diff] [blame] | 4140 | } |
| 4141 | |
| 4142 | GpStatus WINGDIPAPI GdipReleaseDC(GpGraphics *graphics, HDC hdc) |
| 4143 | { |
Nikolay Sivov | 29f4c9d | 2008-09-02 23:45:39 +0400 | [diff] [blame] | 4144 | TRACE("(%p, %p)\n", graphics, hdc); |
| 4145 | |
Nikolay Sivov | 4570501 | 2008-08-24 14:45:14 +0400 | [diff] [blame] | 4146 | if(!graphics) |
| 4147 | return InvalidParameter; |
| 4148 | |
Nikolay Sivov | 366ae1e | 2008-08-24 14:45:18 +0400 | [diff] [blame] | 4149 | if(graphics->hdc != hdc || !(graphics->busy)) |
Nikolay Sivov | 4570501 | 2008-08-24 14:45:14 +0400 | [diff] [blame] | 4150 | return InvalidParameter; |
| 4151 | |
Nikolay Sivov | 366ae1e | 2008-08-24 14:45:18 +0400 | [diff] [blame] | 4152 | graphics->busy = FALSE; |
| 4153 | |
| 4154 | return Ok; |
Huw Davies | 6cfb469 | 2008-05-12 16:51:32 +0100 | [diff] [blame] | 4155 | } |
Huw Davies | d5ccbe2 | 2008-05-12 16:57:28 +0100 | [diff] [blame] | 4156 | |
| 4157 | GpStatus WINGDIPAPI GdipGetClip(GpGraphics *graphics, GpRegion *region) |
| 4158 | { |
Nikolay Sivov | ef50aa3 | 2008-08-27 02:03:27 +0400 | [diff] [blame] | 4159 | GpRegion *clip; |
| 4160 | GpStatus status; |
| 4161 | |
| 4162 | TRACE("(%p, %p)\n", graphics, region); |
| 4163 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 4164 | if(!graphics || !region) |
| 4165 | return InvalidParameter; |
Huw Davies | d5ccbe2 | 2008-05-12 16:57:28 +0100 | [diff] [blame] | 4166 | |
Nikolay Sivov | f0a507e | 2008-08-24 14:45:23 +0400 | [diff] [blame] | 4167 | if(graphics->busy) |
| 4168 | return ObjectBusy; |
| 4169 | |
Nikolay Sivov | ef50aa3 | 2008-08-27 02:03:27 +0400 | [diff] [blame] | 4170 | if((status = GdipCloneRegion(graphics->clip, &clip)) != Ok) |
| 4171 | return status; |
| 4172 | |
| 4173 | /* free everything except root node and header */ |
| 4174 | delete_element(®ion->node); |
| 4175 | memcpy(region, clip, sizeof(GpRegion)); |
Huw Davies | 68bacfb | 2009-12-12 16:49:15 +0000 | [diff] [blame] | 4176 | GdipFree(clip); |
Nikolay Sivov | ef50aa3 | 2008-08-27 02:03:27 +0400 | [diff] [blame] | 4177 | |
| 4178 | return Ok; |
Huw Davies | d5ccbe2 | 2008-05-12 16:57:28 +0100 | [diff] [blame] | 4179 | } |
Huw Davies | 3ab7666 | 2008-07-10 15:26:58 +0100 | [diff] [blame] | 4180 | |
| 4181 | GpStatus WINGDIPAPI GdipTransformPoints(GpGraphics *graphics, GpCoordinateSpace dst_space, |
| 4182 | GpCoordinateSpace src_space, GpPointF *points, INT count) |
| 4183 | { |
Vincent Povirk | 2af29ed | 2009-03-23 16:34:12 -0500 | [diff] [blame] | 4184 | GpMatrix *matrix; |
| 4185 | GpStatus stat; |
| 4186 | REAL unitscale; |
| 4187 | |
Nikolay Sivov | c61ece6 | 2008-08-26 01:58:42 +0400 | [diff] [blame] | 4188 | if(!graphics || !points || count <= 0) |
| 4189 | return InvalidParameter; |
| 4190 | |
| 4191 | if(graphics->busy) |
| 4192 | return ObjectBusy; |
| 4193 | |
Vincent Povirk | 2af29ed | 2009-03-23 16:34:12 -0500 | [diff] [blame] | 4194 | TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count); |
Huw Davies | 3ab7666 | 2008-07-10 15:26:58 +0100 | [diff] [blame] | 4195 | |
Vincent Povirk | 2af29ed | 2009-03-23 16:34:12 -0500 | [diff] [blame] | 4196 | if (src_space == dst_space) return Ok; |
| 4197 | |
| 4198 | stat = GdipCreateMatrix(&matrix); |
| 4199 | if (stat == Ok) |
| 4200 | { |
| 4201 | unitscale = convert_unit(graphics->hdc, graphics->unit); |
| 4202 | |
| 4203 | if(graphics->unit != UnitDisplay) |
| 4204 | unitscale *= graphics->scale; |
| 4205 | |
| 4206 | /* transform from src_space to CoordinateSpacePage */ |
| 4207 | switch (src_space) |
| 4208 | { |
| 4209 | case CoordinateSpaceWorld: |
| 4210 | GdipMultiplyMatrix(matrix, graphics->worldtrans, MatrixOrderAppend); |
| 4211 | break; |
| 4212 | case CoordinateSpacePage: |
| 4213 | break; |
| 4214 | case CoordinateSpaceDevice: |
| 4215 | GdipScaleMatrix(matrix, 1.0/unitscale, 1.0/unitscale, MatrixOrderAppend); |
| 4216 | break; |
| 4217 | } |
| 4218 | |
| 4219 | /* transform from CoordinateSpacePage to dst_space */ |
| 4220 | switch (dst_space) |
| 4221 | { |
| 4222 | case CoordinateSpaceWorld: |
| 4223 | { |
| 4224 | GpMatrix *inverted_transform; |
| 4225 | stat = GdipCloneMatrix(graphics->worldtrans, &inverted_transform); |
| 4226 | if (stat == Ok) |
| 4227 | { |
| 4228 | stat = GdipInvertMatrix(inverted_transform); |
| 4229 | if (stat == Ok) |
| 4230 | GdipMultiplyMatrix(matrix, inverted_transform, MatrixOrderAppend); |
| 4231 | GdipDeleteMatrix(inverted_transform); |
| 4232 | } |
| 4233 | break; |
| 4234 | } |
| 4235 | case CoordinateSpacePage: |
| 4236 | break; |
| 4237 | case CoordinateSpaceDevice: |
| 4238 | GdipScaleMatrix(matrix, unitscale, unitscale, MatrixOrderAppend); |
| 4239 | break; |
| 4240 | } |
| 4241 | |
| 4242 | if (stat == Ok) |
| 4243 | stat = GdipTransformMatrixPoints(matrix, points, count); |
| 4244 | |
| 4245 | GdipDeleteMatrix(matrix); |
| 4246 | } |
| 4247 | |
| 4248 | return stat; |
Huw Davies | 3ab7666 | 2008-07-10 15:26:58 +0100 | [diff] [blame] | 4249 | } |
| 4250 | |
| 4251 | GpStatus WINGDIPAPI GdipTransformPointsI(GpGraphics *graphics, GpCoordinateSpace dst_space, |
| 4252 | GpCoordinateSpace src_space, GpPoint *points, INT count) |
| 4253 | { |
Vincent Povirk | c486e81 | 2009-05-19 15:40:43 -0500 | [diff] [blame] | 4254 | GpPointF *pointsF; |
| 4255 | GpStatus ret; |
| 4256 | INT i; |
Huw Davies | 3ab7666 | 2008-07-10 15:26:58 +0100 | [diff] [blame] | 4257 | |
Vincent Povirk | c486e81 | 2009-05-19 15:40:43 -0500 | [diff] [blame] | 4258 | TRACE("(%p, %d, %d, %p, %d)\n", graphics, dst_space, src_space, points, count); |
| 4259 | |
| 4260 | if(count <= 0) |
| 4261 | return InvalidParameter; |
| 4262 | |
| 4263 | pointsF = GdipAlloc(sizeof(GpPointF) * count); |
| 4264 | if(!pointsF) |
| 4265 | return OutOfMemory; |
| 4266 | |
| 4267 | for(i = 0; i < count; i++){ |
| 4268 | pointsF[i].X = (REAL)points[i].X; |
| 4269 | pointsF[i].Y = (REAL)points[i].Y; |
| 4270 | } |
| 4271 | |
| 4272 | ret = GdipTransformPoints(graphics, dst_space, src_space, pointsF, count); |
| 4273 | |
| 4274 | if(ret == Ok) |
| 4275 | for(i = 0; i < count; i++){ |
| 4276 | points[i].X = roundr(pointsF[i].X); |
| 4277 | points[i].Y = roundr(pointsF[i].Y); |
| 4278 | } |
| 4279 | GdipFree(pointsF); |
| 4280 | |
| 4281 | return ret; |
Huw Davies | 3ab7666 | 2008-07-10 15:26:58 +0100 | [diff] [blame] | 4282 | } |
Hans Leidekker | 6122c77 | 2008-11-24 10:23:03 +0100 | [diff] [blame] | 4283 | |
| 4284 | HPALETTE WINGDIPAPI GdipCreateHalftonePalette(void) |
| 4285 | { |
| 4286 | FIXME("\n"); |
| 4287 | |
| 4288 | return NULL; |
| 4289 | } |
Nikolay Sivov | 5da52e0 | 2009-01-31 00:07:30 +0300 | [diff] [blame] | 4290 | |
| 4291 | /***************************************************************************** |
| 4292 | * GdipTranslateClip [GDIPLUS.@] |
| 4293 | */ |
| 4294 | GpStatus WINGDIPAPI GdipTranslateClip(GpGraphics *graphics, REAL dx, REAL dy) |
| 4295 | { |
| 4296 | TRACE("(%p, %.2f, %.2f)\n", graphics, dx, dy); |
| 4297 | |
| 4298 | if(!graphics) |
| 4299 | return InvalidParameter; |
| 4300 | |
Nikolay Sivov | 8c09616 | 2009-02-02 23:48:01 +0300 | [diff] [blame] | 4301 | if(graphics->busy) |
| 4302 | return ObjectBusy; |
| 4303 | |
Nikolay Sivov | 5da52e0 | 2009-01-31 00:07:30 +0300 | [diff] [blame] | 4304 | return GdipTranslateRegion(graphics->clip, dx, dy); |
| 4305 | } |
| 4306 | |
| 4307 | /***************************************************************************** |
| 4308 | * GdipTranslateClipI [GDIPLUS.@] |
| 4309 | */ |
| 4310 | GpStatus WINGDIPAPI GdipTranslateClipI(GpGraphics *graphics, INT dx, INT dy) |
| 4311 | { |
| 4312 | TRACE("(%p, %d, %d)\n", graphics, dx, dy); |
| 4313 | |
| 4314 | if(!graphics) |
| 4315 | return InvalidParameter; |
| 4316 | |
Nikolay Sivov | 8c09616 | 2009-02-02 23:48:01 +0300 | [diff] [blame] | 4317 | if(graphics->busy) |
| 4318 | return ObjectBusy; |
| 4319 | |
Nikolay Sivov | 5da52e0 | 2009-01-31 00:07:30 +0300 | [diff] [blame] | 4320 | return GdipTranslateRegion(graphics->clip, (REAL)dx, (REAL)dy); |
| 4321 | } |
Ken Sharp | e3f4859 | 2009-06-09 21:48:05 +0100 | [diff] [blame] | 4322 | |
| 4323 | |
| 4324 | /***************************************************************************** |
| 4325 | * GdipMeasureDriverString [GDIPLUS.@] |
| 4326 | */ |
| 4327 | GpStatus WINGDIPAPI GdipMeasureDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length, |
| 4328 | GDIPCONST GpFont *font, GDIPCONST PointF *positions, |
| 4329 | INT flags, GDIPCONST GpMatrix *matrix, RectF *boundingBox) |
| 4330 | { |
| 4331 | FIXME("(%p %p %d %p %p %d %p %p): stub\n", graphics, text, length, font, positions, flags, matrix, boundingBox); |
| 4332 | return NotImplemented; |
| 4333 | } |
| 4334 | |
| 4335 | /***************************************************************************** |
Ken Sharp | e3f4859 | 2009-06-09 21:48:05 +0100 | [diff] [blame] | 4336 | * GdipDrawDriverString [GDIPLUS.@] |
| 4337 | */ |
| 4338 | GpStatus WINGDIPAPI GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 *text, INT length, |
| 4339 | GDIPCONST GpFont *font, GDIPCONST GpBrush *brush, |
| 4340 | GDIPCONST PointF *positions, INT flags, |
| 4341 | GDIPCONST GpMatrix *matrix ) |
| 4342 | { |
Francois Gouget | 489bd52 | 2009-06-15 11:00:03 +0200 | [diff] [blame] | 4343 | FIXME("(%p %p %d %p %p %p %d %p): stub\n", graphics, text, length, font, brush, positions, flags, matrix); |
Ken Sharp | e3f4859 | 2009-06-09 21:48:05 +0100 | [diff] [blame] | 4344 | return NotImplemented; |
| 4345 | } |
Ken Sharp | e096b59 | 2009-06-22 21:59:59 +0100 | [diff] [blame] | 4346 | |
| 4347 | /***************************************************************************** |
Alistair Leslie-Hughes | 7b2292f | 2009-07-30 13:56:42 +1000 | [diff] [blame] | 4348 | * GdipRecordMetafileI [GDIPLUS.@] |
| 4349 | */ |
| 4350 | GpStatus WINGDIPAPI GdipRecordMetafileI(HDC hdc, EmfType type, GDIPCONST GpRect *frameRect, |
| 4351 | MetafileFrameUnit frameUnit, GDIPCONST WCHAR *desc, GpMetafile **metafile) |
| 4352 | { |
| 4353 | FIXME("(%p %d %p %d %p %p): stub\n", hdc, type, frameRect, frameUnit, desc, metafile); |
| 4354 | return NotImplemented; |
| 4355 | } |