mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 05:15:01 +00:00
954 lines
24 KiB
C
954 lines
24 KiB
C
/*
|
|
* Copyright (C) 2007 Google (Evan Stade)
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include <math.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winuser.h"
|
|
#include "wingdi.h"
|
|
|
|
#include "objbase.h"
|
|
|
|
#include "gdiplus.h"
|
|
#include "gdiplus_private.h"
|
|
#include "wine/debug.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
|
|
|
|
/* make sure path has enough space for len more points */
|
|
static BOOL lengthen_path(GpPath *path, INT len)
|
|
{
|
|
/* initial allocation */
|
|
if(path->datalen == 0){
|
|
path->datalen = len * 2;
|
|
|
|
path->pathdata.Points = GdipAlloc(path->datalen * sizeof(PointF));
|
|
if(!path->pathdata.Points) return FALSE;
|
|
|
|
path->pathdata.Types = GdipAlloc(path->datalen);
|
|
if(!path->pathdata.Types){
|
|
GdipFree(path->pathdata.Points);
|
|
return FALSE;
|
|
}
|
|
}
|
|
/* reallocation, double size of arrays */
|
|
else if(path->datalen - path->pathdata.Count < len){
|
|
while(path->datalen - path->pathdata.Count < len)
|
|
path->datalen *= 2;
|
|
|
|
path->pathdata.Points = HeapReAlloc(GetProcessHeap(), 0,
|
|
path->pathdata.Points, path->datalen * sizeof(PointF));
|
|
if(!path->pathdata.Points) return FALSE;
|
|
|
|
path->pathdata.Types = HeapReAlloc(GetProcessHeap(), 0,
|
|
path->pathdata.Types, path->datalen);
|
|
if(!path->pathdata.Types) return FALSE;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathArc(GpPath *path, REAL x1, REAL y1, REAL x2,
|
|
REAL y2, REAL startAngle, REAL sweepAngle)
|
|
{
|
|
INT count, old_count, i;
|
|
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
count = arc2polybezier(NULL, x1, y1, x2, y2, startAngle, sweepAngle);
|
|
|
|
if(count == 0)
|
|
return Ok;
|
|
if(!lengthen_path(path, count))
|
|
return OutOfMemory;
|
|
|
|
old_count = path->pathdata.Count;
|
|
arc2polybezier(&path->pathdata.Points[old_count], x1, y1, x2, y2,
|
|
startAngle, sweepAngle);
|
|
|
|
for(i = 0; i < count; i++){
|
|
path->pathdata.Types[old_count + i] = PathPointTypeBezier;
|
|
}
|
|
|
|
path->pathdata.Types[old_count] =
|
|
(path->newfigure ? PathPointTypeStart : PathPointTypeLine);
|
|
path->newfigure = FALSE;
|
|
path->pathdata.Count += count;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathArcI(GpPath *path, INT x1, INT y1, INT x2,
|
|
INT y2, REAL startAngle, REAL sweepAngle)
|
|
{
|
|
return GdipAddPathArc(path,(REAL)x1,(REAL)y1,(REAL)x2,(REAL)y2,startAngle,sweepAngle);
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathBezier(GpPath *path, REAL x1, REAL y1, REAL x2,
|
|
REAL y2, REAL x3, REAL y3, REAL x4, REAL y4)
|
|
{
|
|
INT old_count;
|
|
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
if(!lengthen_path(path, 4))
|
|
return OutOfMemory;
|
|
|
|
old_count = path->pathdata.Count;
|
|
|
|
path->pathdata.Points[old_count].X = x1;
|
|
path->pathdata.Points[old_count].Y = y1;
|
|
path->pathdata.Points[old_count + 1].X = x2;
|
|
path->pathdata.Points[old_count + 1].Y = y2;
|
|
path->pathdata.Points[old_count + 2].X = x3;
|
|
path->pathdata.Points[old_count + 2].Y = y3;
|
|
path->pathdata.Points[old_count + 3].X = x4;
|
|
path->pathdata.Points[old_count + 3].Y = y4;
|
|
|
|
path->pathdata.Types[old_count] =
|
|
(path->newfigure ? PathPointTypeStart : PathPointTypeLine);
|
|
path->pathdata.Types[old_count + 1] = PathPointTypeBezier;
|
|
path->pathdata.Types[old_count + 2] = PathPointTypeBezier;
|
|
path->pathdata.Types[old_count + 3] = PathPointTypeBezier;
|
|
|
|
path->newfigure = FALSE;
|
|
path->pathdata.Count += 4;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathBezierI(GpPath *path, INT x1, INT y1, INT x2,
|
|
INT y2, INT x3, INT y3, INT x4, INT y4)
|
|
{
|
|
return GdipAddPathBezier(path,(REAL)x1,(REAL)y1,(REAL)x2,(REAL)y2,(REAL)x3,(REAL)y3,
|
|
(REAL)x4,(REAL)y4);
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathBeziers(GpPath *path, GDIPCONST GpPointF *points,
|
|
INT count)
|
|
{
|
|
INT i, old_count;
|
|
|
|
if(!path || !points || ((count - 1) % 3))
|
|
return InvalidParameter;
|
|
|
|
if(!lengthen_path(path, count))
|
|
return OutOfMemory;
|
|
|
|
old_count = path->pathdata.Count;
|
|
|
|
for(i = 0; i < count; i++){
|
|
path->pathdata.Points[old_count + i].X = points[i].X;
|
|
path->pathdata.Points[old_count + i].Y = points[i].Y;
|
|
path->pathdata.Types[old_count + i] = PathPointTypeBezier;
|
|
}
|
|
|
|
path->pathdata.Types[old_count] =
|
|
(path->newfigure ? PathPointTypeStart : PathPointTypeLine);
|
|
path->newfigure = FALSE;
|
|
path->pathdata.Count += count;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathBeziersI(GpPath *path, GDIPCONST GpPoint *points,
|
|
INT count)
|
|
{
|
|
GpPointF *ptsF;
|
|
GpStatus ret;
|
|
INT i;
|
|
|
|
if(!points || ((count - 1) % 3))
|
|
return InvalidParameter;
|
|
|
|
ptsF = GdipAlloc(sizeof(GpPointF) * count);
|
|
if(!ptsF)
|
|
return OutOfMemory;
|
|
|
|
for(i = 0; i < count; i++){
|
|
ptsF[i].X = (REAL)points[i].X;
|
|
ptsF[i].Y = (REAL)points[i].Y;
|
|
}
|
|
|
|
ret = GdipAddPathBeziers(path, ptsF, count);
|
|
GdipFree(ptsF);
|
|
|
|
return ret;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathEllipse(GpPath *path, REAL x, REAL y, REAL width,
|
|
REAL height)
|
|
{
|
|
INT old_count, numpts;
|
|
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
if(!lengthen_path(path, MAX_ARC_PTS))
|
|
return OutOfMemory;
|
|
|
|
old_count = path->pathdata.Count;
|
|
if((numpts = arc2polybezier(&path->pathdata.Points[old_count], x, y, width,
|
|
height, 0.0, 360.0)) != MAX_ARC_PTS){
|
|
ERR("expected %d points but got %d\n", MAX_ARC_PTS, numpts);
|
|
return GenericError;
|
|
}
|
|
|
|
memset(&path->pathdata.Types[old_count + 1], PathPointTypeBezier,
|
|
MAX_ARC_PTS - 1);
|
|
|
|
/* An ellipse is an intrinsic figure (always is its own subpath). */
|
|
path->pathdata.Types[old_count] = PathPointTypeStart;
|
|
path->pathdata.Types[old_count + MAX_ARC_PTS - 1] |= PathPointTypeCloseSubpath;
|
|
path->newfigure = TRUE;
|
|
path->pathdata.Count += MAX_ARC_PTS;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathEllipseI(GpPath *path, INT x, INT y, INT width,
|
|
INT height)
|
|
{
|
|
return GdipAddPathEllipse(path,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathLine2(GpPath *path, GDIPCONST GpPointF *points,
|
|
INT count)
|
|
{
|
|
INT i, old_count;
|
|
|
|
if(!path || !points)
|
|
return InvalidParameter;
|
|
|
|
if(!lengthen_path(path, count))
|
|
return OutOfMemory;
|
|
|
|
old_count = path->pathdata.Count;
|
|
|
|
for(i = 0; i < count; i++){
|
|
path->pathdata.Points[old_count + i].X = points[i].X;
|
|
path->pathdata.Points[old_count + i].Y = points[i].Y;
|
|
path->pathdata.Types[old_count + i] = PathPointTypeLine;
|
|
}
|
|
|
|
if(path->newfigure){
|
|
path->pathdata.Types[old_count] = PathPointTypeStart;
|
|
path->newfigure = FALSE;
|
|
}
|
|
|
|
path->pathdata.Count += count;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathLine2I(GpPath *path, GDIPCONST GpPoint *points, INT count)
|
|
{
|
|
GpPointF *pointsF;
|
|
INT i;
|
|
GpStatus stat;
|
|
|
|
if(count <= 0)
|
|
return InvalidParameter;
|
|
|
|
pointsF = GdipAlloc(sizeof(GpPointF) * count);
|
|
if(!pointsF) return OutOfMemory;
|
|
|
|
for(i = 0;i < count; i++){
|
|
pointsF[i].X = (REAL)points[i].X;
|
|
pointsF[i].Y = (REAL)points[i].Y;
|
|
}
|
|
|
|
stat = GdipAddPathLine2(path, pointsF, count);
|
|
|
|
GdipFree(pointsF);
|
|
|
|
return stat;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathLine(GpPath *path, REAL x1, REAL y1, REAL x2, REAL y2)
|
|
{
|
|
INT old_count;
|
|
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
if(!lengthen_path(path, 2))
|
|
return OutOfMemory;
|
|
|
|
old_count = path->pathdata.Count;
|
|
|
|
path->pathdata.Points[old_count].X = x1;
|
|
path->pathdata.Points[old_count].Y = y1;
|
|
path->pathdata.Points[old_count + 1].X = x2;
|
|
path->pathdata.Points[old_count + 1].Y = y2;
|
|
|
|
path->pathdata.Types[old_count] =
|
|
(path->newfigure ? PathPointTypeStart : PathPointTypeLine);
|
|
path->pathdata.Types[old_count + 1] = PathPointTypeLine;
|
|
|
|
path->newfigure = FALSE;
|
|
path->pathdata.Count += 2;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathLineI(GpPath *path, INT x1, INT y1, INT x2, INT y2)
|
|
{
|
|
return GdipAddPathLine(path, (REAL)x1, (REAL)y1, (REAL)x2, (REAL)y2);
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathPath(GpPath *path, GDIPCONST GpPath* addingPath,
|
|
BOOL connect)
|
|
{
|
|
INT old_count, count;
|
|
|
|
if(!path || !addingPath)
|
|
return InvalidParameter;
|
|
|
|
old_count = path->pathdata.Count;
|
|
count = addingPath->pathdata.Count;
|
|
|
|
if(!lengthen_path(path, count))
|
|
return OutOfMemory;
|
|
|
|
memcpy(&path->pathdata.Points[old_count], addingPath->pathdata.Points,
|
|
count * sizeof(GpPointF));
|
|
memcpy(&path->pathdata.Types[old_count], addingPath->pathdata.Types, count);
|
|
|
|
if(path->newfigure || !connect)
|
|
path->pathdata.Types[old_count] = PathPointTypeStart;
|
|
else
|
|
path->pathdata.Types[old_count] = PathPointTypeLine;
|
|
|
|
path->newfigure = FALSE;
|
|
path->pathdata.Count += count;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathPolygon(GpPath *path, GDIPCONST GpPointF *points, INT count)
|
|
{
|
|
INT old_count;
|
|
|
|
if(!path || !points || count < 3)
|
|
return InvalidParameter;
|
|
|
|
if(!lengthen_path(path, count))
|
|
return OutOfMemory;
|
|
|
|
old_count = path->pathdata.Count;
|
|
|
|
memcpy(&path->pathdata.Points[old_count], points, count*sizeof(GpPointF));
|
|
memset(&path->pathdata.Types[old_count + 1], PathPointTypeLine, count - 1);
|
|
|
|
/* A polygon is an intrinsic figure */
|
|
path->pathdata.Types[old_count] = PathPointTypeStart;
|
|
path->pathdata.Types[old_count + count - 1] |= PathPointTypeCloseSubpath;
|
|
path->newfigure = TRUE;
|
|
path->pathdata.Count += count;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathPolygonI(GpPath *path, GDIPCONST GpPoint *points, INT count)
|
|
{
|
|
GpPointF *ptf;
|
|
GpStatus status;
|
|
INT i;
|
|
|
|
if(!points || count < 3)
|
|
return InvalidParameter;
|
|
|
|
ptf = GdipAlloc(sizeof(GpPointF) * count);
|
|
if(!ptf)
|
|
return OutOfMemory;
|
|
|
|
for(i = 0; i < count; i++){
|
|
ptf[i].X = (REAL)points[i].X;
|
|
ptf[i].Y = (REAL)points[i].Y;
|
|
}
|
|
|
|
status = GdipAddPathPolygon(path, ptf, count);
|
|
|
|
GdipFree(ptf);
|
|
|
|
return status;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipClonePath(GpPath* path, GpPath **clone)
|
|
{
|
|
if(!path || !clone)
|
|
return InvalidParameter;
|
|
|
|
*clone = GdipAlloc(sizeof(GpPath));
|
|
if(!*clone) return OutOfMemory;
|
|
|
|
**clone = *path;
|
|
|
|
(*clone)->pathdata.Points = GdipAlloc(path->datalen * sizeof(PointF));
|
|
(*clone)->pathdata.Types = GdipAlloc(path->datalen);
|
|
if(!(*clone)->pathdata.Points || !(*clone)->pathdata.Types){
|
|
GdipFree(*clone);
|
|
GdipFree((*clone)->pathdata.Points);
|
|
GdipFree((*clone)->pathdata.Types);
|
|
return OutOfMemory;
|
|
}
|
|
|
|
memcpy((*clone)->pathdata.Points, path->pathdata.Points,
|
|
path->datalen * sizeof(PointF));
|
|
memcpy((*clone)->pathdata.Types, path->pathdata.Types, path->datalen);
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipClosePathFigure(GpPath* path)
|
|
{
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
if(path->pathdata.Count > 0){
|
|
path->pathdata.Types[path->pathdata.Count - 1] |= PathPointTypeCloseSubpath;
|
|
path->newfigure = TRUE;
|
|
}
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipClosePathFigures(GpPath* path)
|
|
{
|
|
INT i;
|
|
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
for(i = 1; i < path->pathdata.Count; i++){
|
|
if(path->pathdata.Types[i] == PathPointTypeStart)
|
|
path->pathdata.Types[i-1] |= PathPointTypeCloseSubpath;
|
|
}
|
|
|
|
path->newfigure = TRUE;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipCreatePath(GpFillMode fill, GpPath **path)
|
|
{
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
*path = GdipAlloc(sizeof(GpPath));
|
|
if(!*path) return OutOfMemory;
|
|
|
|
(*path)->fill = fill;
|
|
(*path)->newfigure = TRUE;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipCreatePath2(GDIPCONST GpPointF* points,
|
|
GDIPCONST BYTE* types, INT count, GpFillMode fill, GpPath **path)
|
|
{
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
*path = GdipAlloc(sizeof(GpPath));
|
|
if(!*path) return OutOfMemory;
|
|
|
|
(*path)->pathdata.Points = GdipAlloc(count * sizeof(PointF));
|
|
(*path)->pathdata.Types = GdipAlloc(count);
|
|
|
|
if(!(*path)->pathdata.Points || !(*path)->pathdata.Types){
|
|
GdipFree((*path)->pathdata.Points);
|
|
GdipFree((*path)->pathdata.Types);
|
|
GdipFree(*path);
|
|
return OutOfMemory;
|
|
}
|
|
|
|
memcpy((*path)->pathdata.Points, points, count * sizeof(PointF));
|
|
memcpy((*path)->pathdata.Types, types, count);
|
|
(*path)->pathdata.Count = count;
|
|
(*path)->datalen = count;
|
|
|
|
(*path)->fill = fill;
|
|
(*path)->newfigure = TRUE;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipCreatePath2I(GDIPCONST GpPoint* points,
|
|
GDIPCONST BYTE* types, INT count, GpFillMode fill, GpPath **path)
|
|
{
|
|
GpPointF *ptF;
|
|
GpStatus ret;
|
|
INT i;
|
|
|
|
ptF = GdipAlloc(sizeof(GpPointF)*count);
|
|
|
|
for(i = 0;i < count; i++){
|
|
ptF[i].X = (REAL)points[i].X;
|
|
ptF[i].Y = (REAL)points[i].Y;
|
|
}
|
|
|
|
ret = GdipCreatePath2(ptF, types, count, fill, path);
|
|
|
|
GdipFree(ptF);
|
|
|
|
return ret;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipDeletePath(GpPath *path)
|
|
{
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
GdipFree(path->pathdata.Points);
|
|
GdipFree(path->pathdata.Types);
|
|
GdipFree(path);
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipGetPathData(GpPath *path, GpPathData* pathData)
|
|
{
|
|
if(!path || !pathData)
|
|
return InvalidParameter;
|
|
|
|
/* Only copy data. pathData allocation/freeing controlled by wrapper class.
|
|
Assumed that pathData is enough wide to get all data - controlled by wrapper too. */
|
|
memcpy(pathData->Points, path->pathdata.Points, sizeof(PointF) * pathData->Count);
|
|
memcpy(pathData->Types , path->pathdata.Types , pathData->Count);
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipGetPathFillMode(GpPath *path, GpFillMode *fillmode)
|
|
{
|
|
if(!path || !fillmode)
|
|
return InvalidParameter;
|
|
|
|
*fillmode = path->fill;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipGetPathLastPoint(GpPath* path, GpPointF* lastPoint)
|
|
{
|
|
INT count;
|
|
|
|
if(!path || !lastPoint)
|
|
return InvalidParameter;
|
|
|
|
count = path->pathdata.Count;
|
|
if(count > 0)
|
|
*lastPoint = path->pathdata.Points[count-1];
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipGetPathPoints(GpPath *path, GpPointF* points, INT count)
|
|
{
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
if(count < path->pathdata.Count)
|
|
return InsufficientBuffer;
|
|
|
|
memcpy(points, path->pathdata.Points, path->pathdata.Count * sizeof(GpPointF));
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipGetPathPointsI(GpPath *path, GpPoint* points, INT count)
|
|
{
|
|
GpStatus ret;
|
|
GpPointF *ptf;
|
|
INT i;
|
|
|
|
if(count <= 0)
|
|
return InvalidParameter;
|
|
|
|
ptf = GdipAlloc(sizeof(GpPointF)*count);
|
|
if(!ptf) return OutOfMemory;
|
|
|
|
ret = GdipGetPathPoints(path,ptf,count);
|
|
if(ret == Ok)
|
|
for(i = 0;i < count;i++){
|
|
points[i].X = roundr(ptf[i].X);
|
|
points[i].Y = roundr(ptf[i].Y);
|
|
};
|
|
GdipFree(ptf);
|
|
|
|
return ret;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipGetPathTypes(GpPath *path, BYTE* types, INT count)
|
|
{
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
if(count < path->pathdata.Count)
|
|
return InsufficientBuffer;
|
|
|
|
memcpy(types, path->pathdata.Types, path->pathdata.Count);
|
|
|
|
return Ok;
|
|
}
|
|
|
|
/* Windows expands the bounding box to the maximum possible bounding box
|
|
* for a given pen. For example, if a line join can extend past the point
|
|
* it's joining by x units, the bounding box is extended by x units in every
|
|
* direction (even though this is too conservative for most cases). */
|
|
GpStatus WINGDIPAPI GdipGetPathWorldBounds(GpPath* path, GpRectF* bounds,
|
|
GDIPCONST GpMatrix *matrix, GDIPCONST GpPen *pen)
|
|
{
|
|
GpPointF * points, temp_pts[4];
|
|
INT count, i;
|
|
REAL path_width = 1.0, width, height, temp, low_x, low_y, high_x, high_y;
|
|
|
|
/* Matrix and pen can be null. */
|
|
if(!path || !bounds)
|
|
return InvalidParameter;
|
|
|
|
/* If path is empty just return. */
|
|
count = path->pathdata.Count;
|
|
if(count == 0){
|
|
bounds->X = bounds->Y = bounds->Width = bounds->Height = 0.0;
|
|
return Ok;
|
|
}
|
|
|
|
points = path->pathdata.Points;
|
|
|
|
low_x = high_x = points[0].X;
|
|
low_y = high_y = points[0].Y;
|
|
|
|
for(i = 1; i < count; i++){
|
|
low_x = min(low_x, points[i].X);
|
|
low_y = min(low_y, points[i].Y);
|
|
high_x = max(high_x, points[i].X);
|
|
high_y = max(high_y, points[i].Y);
|
|
}
|
|
|
|
width = high_x - low_x;
|
|
height = high_y - low_y;
|
|
|
|
/* This looks unusual but it's the only way I can imitate windows. */
|
|
if(matrix){
|
|
temp_pts[0].X = low_x;
|
|
temp_pts[0].Y = low_y;
|
|
temp_pts[1].X = low_x;
|
|
temp_pts[1].Y = high_y;
|
|
temp_pts[2].X = high_x;
|
|
temp_pts[2].Y = high_y;
|
|
temp_pts[3].X = high_x;
|
|
temp_pts[3].Y = low_y;
|
|
|
|
GdipTransformMatrixPoints((GpMatrix*)matrix, temp_pts, 4);
|
|
low_x = temp_pts[0].X;
|
|
low_y = temp_pts[0].Y;
|
|
|
|
for(i = 1; i < 4; i++){
|
|
low_x = min(low_x, temp_pts[i].X);
|
|
low_y = min(low_y, temp_pts[i].Y);
|
|
}
|
|
|
|
temp = width;
|
|
width = height * fabs(matrix->matrix[2]) + width * fabs(matrix->matrix[0]);
|
|
height = height * fabs(matrix->matrix[3]) + temp * fabs(matrix->matrix[1]);
|
|
}
|
|
|
|
if(pen){
|
|
path_width = pen->width / 2.0;
|
|
|
|
if(count > 2)
|
|
path_width = max(path_width, pen->width * pen->miterlimit / 2.0);
|
|
/* FIXME: this should probably also check for the startcap */
|
|
if(pen->endcap & LineCapNoAnchor)
|
|
path_width = max(path_width, pen->width * 2.2);
|
|
|
|
low_x -= path_width;
|
|
low_y -= path_width;
|
|
width += 2.0 * path_width;
|
|
height += 2.0 * path_width;
|
|
}
|
|
|
|
bounds->X = low_x;
|
|
bounds->Y = low_y;
|
|
bounds->Width = width;
|
|
bounds->Height = height;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipGetPathWorldBoundsI(GpPath* path, GpRect* bounds,
|
|
GDIPCONST GpMatrix *matrix, GDIPCONST GpPen *pen)
|
|
{
|
|
GpStatus ret;
|
|
GpRectF boundsF;
|
|
|
|
ret = GdipGetPathWorldBounds(path,&boundsF,matrix,pen);
|
|
|
|
if(ret == Ok){
|
|
bounds->X = roundr(boundsF.X);
|
|
bounds->Y = roundr(boundsF.Y);
|
|
bounds->Width = roundr(boundsF.Width);
|
|
bounds->Height = roundr(boundsF.Height);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipGetPointCount(GpPath *path, INT *count)
|
|
{
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
*count = path->pathdata.Count;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipIsOutlineVisiblePathPointI(GpPath* path, INT x, INT y,
|
|
GpPen *pen, GpGraphics *graphics, BOOL *result)
|
|
{
|
|
return GdipIsOutlineVisiblePathPoint(path, x, y, pen, graphics, result);
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipIsOutlineVisiblePathPoint(GpPath* path, REAL x, REAL y,
|
|
GpPen *pen, GpGraphics *graphics, BOOL *result)
|
|
{
|
|
static int calls;
|
|
|
|
if(!path || !pen)
|
|
return InvalidParameter;
|
|
|
|
if(!(calls++))
|
|
FIXME("not implemented\n");
|
|
|
|
return NotImplemented;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipIsVisiblePathPointI(GpPath* path, INT x, INT y, GpGraphics *graphics, BOOL *result)
|
|
{
|
|
return GdipIsVisiblePathPoint(path, x, y, graphics, result);
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipIsVisiblePathPoint(GpPath* path, REAL x, REAL y, GpGraphics *graphics, BOOL *result)
|
|
{
|
|
static int calls;
|
|
|
|
if(!path) return InvalidParameter;
|
|
|
|
if(!(calls++))
|
|
FIXME("not implemented\n");
|
|
|
|
return NotImplemented;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipStartPathFigure(GpPath *path)
|
|
{
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
path->newfigure = TRUE;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipResetPath(GpPath *path)
|
|
{
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
path->pathdata.Count = 0;
|
|
path->newfigure = TRUE;
|
|
path->fill = FillModeAlternate;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipSetPathFillMode(GpPath *path, GpFillMode fill)
|
|
{
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
path->fill = fill;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipTransformPath(GpPath *path, GpMatrix *matrix)
|
|
{
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
if(path->pathdata.Count == 0)
|
|
return Ok;
|
|
|
|
return GdipTransformMatrixPoints(matrix, path->pathdata.Points,
|
|
path->pathdata.Count);
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathRectangle(GpPath *path, REAL x, REAL y,
|
|
REAL width, REAL height)
|
|
{
|
|
GpPath *backup;
|
|
GpPointF ptf[2];
|
|
GpStatus retstat;
|
|
BOOL old_new;
|
|
|
|
if(!path || width < 0.0 || height < 0.0)
|
|
return InvalidParameter;
|
|
|
|
/* make a backup copy of path data */
|
|
if((retstat = GdipClonePath(path, &backup)) != Ok)
|
|
return retstat;
|
|
|
|
/* rectangle should start as new path */
|
|
old_new = path->newfigure;
|
|
path->newfigure = TRUE;
|
|
if((retstat = GdipAddPathLine(path,x,y,x+width,y)) != Ok){
|
|
path->newfigure = old_new;
|
|
goto fail;
|
|
}
|
|
|
|
ptf[0].X = x+width;
|
|
ptf[0].Y = y+height;
|
|
ptf[1].X = x;
|
|
ptf[1].Y = y+height;
|
|
|
|
if((retstat = GdipAddPathLine2(path, ptf, 2)) != Ok) goto fail;
|
|
path->pathdata.Types[path->pathdata.Count-1] |= PathPointTypeCloseSubpath;
|
|
|
|
/* free backup */
|
|
GdipDeletePath(backup);
|
|
return Ok;
|
|
|
|
fail:
|
|
/* reverting */
|
|
GdipDeletePath(path);
|
|
GdipClonePath(backup, &path);
|
|
GdipDeletePath(backup);
|
|
|
|
return retstat;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathRectangleI(GpPath *path, INT x, INT y,
|
|
INT width, INT height)
|
|
{
|
|
return GdipAddPathRectangle(path,(REAL)x,(REAL)y,(REAL)width,(REAL)height);
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathRectangles(GpPath *path, GDIPCONST GpRectF *rects, INT count)
|
|
{
|
|
GpPath *backup;
|
|
GpStatus retstat;
|
|
INT i;
|
|
|
|
/* count == 0 - verified condition */
|
|
if(!path || !rects || count == 0)
|
|
return InvalidParameter;
|
|
|
|
if(count < 0)
|
|
return OutOfMemory;
|
|
|
|
/* make a backup copy */
|
|
if((retstat = GdipClonePath(path, &backup)) != Ok)
|
|
return retstat;
|
|
|
|
for(i = 0; i < count; i++){
|
|
if((retstat = GdipAddPathRectangle(path,rects[i].X,rects[i].Y,rects[i].Width,rects[i].Height)) != Ok)
|
|
goto fail;
|
|
}
|
|
|
|
/* free backup */
|
|
GdipDeletePath(backup);
|
|
return Ok;
|
|
|
|
fail:
|
|
/* reverting */
|
|
GdipDeletePath(path);
|
|
GdipClonePath(backup, &path);
|
|
GdipDeletePath(backup);
|
|
|
|
return retstat;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipAddPathRectanglesI(GpPath *path, GDIPCONST GpRect *rects, INT count)
|
|
{
|
|
GpRectF *rectsF;
|
|
GpStatus retstat;
|
|
INT i;
|
|
|
|
if(!rects || count == 0)
|
|
return InvalidParameter;
|
|
|
|
if(count < 0)
|
|
return OutOfMemory;
|
|
|
|
rectsF = GdipAlloc(sizeof(GpRectF)*count);
|
|
|
|
for(i = 0;i < count;i++){
|
|
rectsF[i].X = (REAL)rects[i].X;
|
|
rectsF[i].Y = (REAL)rects[i].Y;
|
|
rectsF[i].Width = (REAL)rects[i].Width;
|
|
rectsF[i].Height = (REAL)rects[i].Height;
|
|
}
|
|
|
|
retstat = GdipAddPathRectangles(path, rectsF, count);
|
|
GdipFree(rectsF);
|
|
|
|
return retstat;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipSetPathMarker(GpPath* path)
|
|
{
|
|
INT count;
|
|
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
count = path->pathdata.Count;
|
|
|
|
/* set marker flag */
|
|
if(count > 0)
|
|
path->pathdata.Types[count-1] |= PathPointTypePathMarker;
|
|
|
|
return Ok;
|
|
}
|
|
|
|
GpStatus WINGDIPAPI GdipClearPathMarkers(GpPath* path)
|
|
{
|
|
INT count;
|
|
INT i;
|
|
|
|
if(!path)
|
|
return InvalidParameter;
|
|
|
|
count = path->pathdata.Count;
|
|
|
|
for(i = 0; i < count - 1; i++){
|
|
path->pathdata.Types[i] &= ~PathPointTypePathMarker;
|
|
}
|
|
|
|
return Ok;
|
|
}
|