2007-07-20 03:22:34 +02:00
|
|
|
/*
|
|
|
|
* 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 "windef.h"
|
|
|
|
#include "winbase.h"
|
2007-08-01 04:15:29 +02:00
|
|
|
#include "wingdi.h"
|
2007-07-20 03:22:34 +02:00
|
|
|
|
2007-08-01 04:15:48 +02:00
|
|
|
#include "objbase.h"
|
|
|
|
|
2007-07-20 03:22:34 +02:00
|
|
|
#include "gdiplus.h"
|
|
|
|
#include "gdiplus_private.h"
|
2007-07-21 02:50:02 +02:00
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
|
2007-07-20 03:22:34 +02:00
|
|
|
|
2007-07-20 03:22:38 +02:00
|
|
|
GpStatus WINGDIPAPI GdipCloneCustomLineCap(GpCustomLineCap* from,
|
|
|
|
GpCustomLineCap** to)
|
|
|
|
{
|
2008-09-02 21:52:20 +02:00
|
|
|
TRACE("(%p, %p)\n", from, to);
|
|
|
|
|
2007-07-20 03:22:38 +02:00
|
|
|
if(!from || !to)
|
|
|
|
return InvalidParameter;
|
|
|
|
|
|
|
|
*to = GdipAlloc(sizeof(GpCustomLineCap));
|
|
|
|
if(!*to) return OutOfMemory;
|
|
|
|
|
|
|
|
memcpy(*to, from, sizeof(GpCustomLineCap));
|
|
|
|
|
|
|
|
(*to)->pathdata.Points = GdipAlloc(from->pathdata.Count * sizeof(PointF));
|
|
|
|
(*to)->pathdata.Types = GdipAlloc(from->pathdata.Count);
|
|
|
|
|
|
|
|
if((!(*to)->pathdata.Types || !(*to)->pathdata.Points) && (*to)->pathdata.Count){
|
|
|
|
GdipFree((*to)->pathdata.Points);
|
|
|
|
GdipFree((*to)->pathdata.Types);
|
|
|
|
GdipFree(*to);
|
|
|
|
return OutOfMemory;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy((*to)->pathdata.Points, from->pathdata.Points, from->pathdata.Count
|
|
|
|
* sizeof(PointF));
|
|
|
|
memcpy((*to)->pathdata.Types, from->pathdata.Types, from->pathdata.Count);
|
|
|
|
|
2009-12-18 22:00:39 +01:00
|
|
|
TRACE("<-- %p\n", *to);
|
|
|
|
|
2007-07-20 03:22:38 +02:00
|
|
|
return Ok;
|
|
|
|
}
|
|
|
|
|
2007-07-21 02:50:02 +02:00
|
|
|
/* FIXME: Sometimes when fillPath is non-null and stroke path is null, the native
|
|
|
|
* version of this function returns NotImplemented. I cannot figure out why. */
|
2007-07-20 03:22:34 +02:00
|
|
|
GpStatus WINGDIPAPI GdipCreateCustomLineCap(GpPath* fillPath, GpPath* strokePath,
|
|
|
|
GpLineCap baseCap, REAL baseInset, GpCustomLineCap **customCap)
|
|
|
|
{
|
|
|
|
GpPathData *pathdata;
|
|
|
|
|
2007-07-21 02:50:02 +02:00
|
|
|
TRACE("%p %p %d %f %p\n", fillPath, strokePath, baseCap, baseInset, customCap);
|
|
|
|
|
2007-07-20 03:22:34 +02:00
|
|
|
if(!customCap || !(fillPath || strokePath))
|
|
|
|
return InvalidParameter;
|
|
|
|
|
|
|
|
*customCap = GdipAlloc(sizeof(GpCustomLineCap));
|
|
|
|
if(!*customCap) return OutOfMemory;
|
|
|
|
|
|
|
|
if(strokePath){
|
|
|
|
(*customCap)->fill = FALSE;
|
|
|
|
pathdata = &strokePath->pathdata;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
(*customCap)->fill = TRUE;
|
|
|
|
pathdata = &fillPath->pathdata;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*customCap)->pathdata.Points = GdipAlloc(pathdata->Count * sizeof(PointF));
|
|
|
|
(*customCap)->pathdata.Types = GdipAlloc(pathdata->Count);
|
|
|
|
|
|
|
|
if((!(*customCap)->pathdata.Types || !(*customCap)->pathdata.Points) &&
|
|
|
|
pathdata->Count){
|
|
|
|
GdipFree((*customCap)->pathdata.Points);
|
|
|
|
GdipFree((*customCap)->pathdata.Types);
|
|
|
|
GdipFree(*customCap);
|
|
|
|
return OutOfMemory;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy((*customCap)->pathdata.Points, pathdata->Points, pathdata->Count
|
|
|
|
* sizeof(PointF));
|
|
|
|
memcpy((*customCap)->pathdata.Types, pathdata->Types, pathdata->Count);
|
|
|
|
(*customCap)->pathdata.Count = pathdata->Count;
|
|
|
|
|
|
|
|
(*customCap)->inset = baseInset;
|
|
|
|
(*customCap)->cap = baseCap;
|
2008-07-26 10:48:01 +02:00
|
|
|
(*customCap)->join = LineJoinMiter;
|
2008-07-26 10:48:16 +02:00
|
|
|
(*customCap)->scale = 1.0;
|
2007-07-20 03:22:34 +02:00
|
|
|
|
2009-12-18 22:00:39 +01:00
|
|
|
TRACE("<-- %p\n", *customCap);
|
|
|
|
|
2007-07-20 03:22:34 +02:00
|
|
|
return Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipDeleteCustomLineCap(GpCustomLineCap *customCap)
|
|
|
|
{
|
2008-09-02 21:52:20 +02:00
|
|
|
TRACE("(%p)\n", customCap);
|
|
|
|
|
2007-07-20 03:22:34 +02:00
|
|
|
if(!customCap)
|
|
|
|
return InvalidParameter;
|
|
|
|
|
|
|
|
GdipFree(customCap->pathdata.Points);
|
|
|
|
GdipFree(customCap->pathdata.Types);
|
|
|
|
GdipFree(customCap);
|
|
|
|
|
|
|
|
return Ok;
|
|
|
|
}
|
2007-08-08 03:42:52 +02:00
|
|
|
|
2008-07-26 10:48:01 +02:00
|
|
|
GpStatus WINGDIPAPI GdipGetCustomLineCapStrokeJoin(GpCustomLineCap* customCap,
|
|
|
|
GpLineJoin* lineJoin)
|
|
|
|
{
|
2008-09-02 21:52:20 +02:00
|
|
|
TRACE("(%p, %p)\n", customCap, lineJoin);
|
|
|
|
|
2008-07-26 10:48:01 +02:00
|
|
|
if(!customCap || !lineJoin)
|
|
|
|
return InvalidParameter;
|
|
|
|
|
|
|
|
*lineJoin = customCap->join;
|
|
|
|
|
|
|
|
return Ok;
|
|
|
|
}
|
|
|
|
|
2008-07-26 10:48:16 +02:00
|
|
|
GpStatus WINGDIPAPI GdipGetCustomLineCapWidthScale(GpCustomLineCap* custom,
|
|
|
|
REAL* widthScale)
|
|
|
|
{
|
2008-09-02 21:52:20 +02:00
|
|
|
TRACE("(%p, %p)\n", custom, widthScale);
|
|
|
|
|
2008-07-26 10:48:16 +02:00
|
|
|
if(!custom || !widthScale)
|
|
|
|
return InvalidParameter;
|
|
|
|
|
|
|
|
*widthScale = custom->scale;
|
|
|
|
|
|
|
|
return Ok;
|
|
|
|
}
|
|
|
|
|
2007-08-08 03:42:52 +02:00
|
|
|
GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeCaps(GpCustomLineCap* custom,
|
|
|
|
GpLineCap start, GpLineCap end)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%u,%u)\n", custom, start, end);
|
|
|
|
|
2007-08-08 03:42:52 +02:00
|
|
|
if(!custom)
|
|
|
|
return InvalidParameter;
|
|
|
|
|
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
2008-04-09 21:42:12 +02:00
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipSetCustomLineCapBaseCap(GpCustomLineCap* custom,
|
|
|
|
GpLineCap base)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%u)\n", custom, base);
|
|
|
|
|
2008-04-09 21:42:12 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
2008-04-09 21:46:36 +02:00
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipGetCustomLineCapBaseInset(GpCustomLineCap* custom,
|
|
|
|
REAL* inset)
|
|
|
|
{
|
2008-09-02 21:52:20 +02:00
|
|
|
TRACE("(%p, %p)\n", custom, inset);
|
|
|
|
|
2008-07-26 10:48:11 +02:00
|
|
|
if(!custom || !inset)
|
|
|
|
return InvalidParameter;
|
2008-04-09 21:46:36 +02:00
|
|
|
|
2008-07-26 10:48:11 +02:00
|
|
|
*inset = custom->inset;
|
2008-04-09 21:46:36 +02:00
|
|
|
|
2008-07-26 10:48:11 +02:00
|
|
|
return Ok;
|
2008-04-09 21:46:36 +02:00
|
|
|
}
|
2008-04-09 21:47:22 +02:00
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipSetCustomLineCapBaseInset(GpCustomLineCap* custom,
|
|
|
|
REAL inset)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%0.2f)\n", custom, inset);
|
|
|
|
|
2008-04-09 21:47:22 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
2008-04-09 21:49:02 +02:00
|
|
|
|
2008-07-26 10:48:05 +02:00
|
|
|
/*FIXME: LineJoin completely ignored now */
|
2008-04-09 21:49:02 +02:00
|
|
|
GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeJoin(GpCustomLineCap* custom,
|
|
|
|
GpLineJoin join)
|
|
|
|
{
|
2008-09-02 21:52:20 +02:00
|
|
|
TRACE("(%p, %d)\n", custom, join);
|
|
|
|
|
2008-07-26 10:48:05 +02:00
|
|
|
if(!custom)
|
|
|
|
return InvalidParameter;
|
2008-04-09 21:49:02 +02:00
|
|
|
|
2008-07-26 10:48:05 +02:00
|
|
|
custom->join = join;
|
2008-04-09 21:49:02 +02:00
|
|
|
|
2008-07-26 10:48:05 +02:00
|
|
|
return Ok;
|
2008-04-09 21:49:02 +02:00
|
|
|
}
|
2008-04-09 21:51:08 +02:00
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipSetCustomLineCapWidthScale(GpCustomLineCap* custom,
|
|
|
|
REAL width)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%0.2f)\n", custom, width);
|
|
|
|
|
2008-04-09 21:51:08 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
2008-04-17 21:11:15 +02:00
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipGetCustomLineCapBaseCap(GpCustomLineCap *customCap, GpLineCap *baseCap)
|
|
|
|
{
|
2008-09-02 21:52:20 +02:00
|
|
|
TRACE("(%p, %p)\n", customCap, baseCap);
|
|
|
|
|
2008-04-17 21:11:15 +02:00
|
|
|
if(!customCap || !baseCap)
|
|
|
|
return InvalidParameter;
|
|
|
|
|
|
|
|
*baseCap = customCap->cap;
|
|
|
|
|
|
|
|
return Ok;
|
|
|
|
}
|
2008-09-03 18:34:58 +02:00
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipCreateAdjustableArrowCap(REAL height, REAL width, BOOL fill,
|
|
|
|
GpAdjustableArrowCap **cap)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%0.2f,%0.2f,%i,%p)\n", height, width, fill, cap);
|
|
|
|
|
2008-09-03 18:34:58 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipGetAdjustableArrowCapFillState(GpAdjustableArrowCap* cap, BOOL* fill)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%p)\n", cap, fill);
|
|
|
|
|
2008-09-03 18:34:58 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipGetAdjustableArrowCapHeight(GpAdjustableArrowCap* cap, REAL* height)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%p)\n", cap, height);
|
|
|
|
|
2008-09-03 18:34:58 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipGetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap* cap, REAL* middle)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%p)\n", cap, middle);
|
|
|
|
|
2008-09-03 18:34:58 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipGetAdjustableArrowCapWidth(GpAdjustableArrowCap* cap, REAL* width)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%p)\n", cap, width);
|
|
|
|
|
2008-09-03 18:34:58 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipSetAdjustableArrowCapFillState(GpAdjustableArrowCap* cap, BOOL fill)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%i)\n", cap, fill);
|
|
|
|
|
2008-09-03 18:34:58 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipSetAdjustableArrowCapHeight(GpAdjustableArrowCap* cap, REAL height)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%0.2f)\n", cap, height);
|
|
|
|
|
2008-09-03 18:34:58 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipSetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap* cap, REAL middle)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%0.2f)\n", cap, middle);
|
|
|
|
|
2008-09-03 18:34:58 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipSetAdjustableArrowCapWidth(GpAdjustableArrowCap* cap, REAL width)
|
|
|
|
{
|
|
|
|
static int calls;
|
|
|
|
|
2009-12-18 22:59:06 +01:00
|
|
|
TRACE("(%p,%0.2f)\n", cap, width);
|
|
|
|
|
2008-09-03 18:34:58 +02:00
|
|
|
if(!(calls++))
|
|
|
|
FIXME("not implemented\n");
|
|
|
|
|
|
|
|
return NotImplemented;
|
|
|
|
}
|