2007-06-15 01:09:07 +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 "windef.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "gdiplus.h"
|
|
|
|
#include "gdiplus_private.h"
|
|
|
|
|
2007-07-20 03:23:04 +02:00
|
|
|
GpStatus WINGDIPAPI GdipCloneBrush(GpBrush *brush, GpBrush **clone)
|
|
|
|
{
|
|
|
|
if(!brush || !clone)
|
|
|
|
return InvalidParameter;
|
|
|
|
|
2007-07-24 05:24:24 +02:00
|
|
|
switch(brush->bt){
|
|
|
|
case BrushTypeSolidColor:
|
|
|
|
*clone = GdipAlloc(sizeof(GpSolidFill));
|
|
|
|
if (!*clone) return OutOfMemory;
|
2007-07-20 03:23:04 +02:00
|
|
|
|
2007-07-24 05:24:24 +02:00
|
|
|
memcpy(*clone, brush, sizeof(GpSolidFill));
|
2007-07-20 03:23:04 +02:00
|
|
|
|
2007-07-24 05:24:24 +02:00
|
|
|
(*clone)->gdibrush = CreateBrushIndirect(&(*clone)->lb);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return NotImplemented;
|
|
|
|
}
|
2007-07-20 03:23:04 +02:00
|
|
|
|
|
|
|
return Ok;
|
|
|
|
}
|
|
|
|
|
2007-06-15 01:09:07 +02:00
|
|
|
GpStatus WINGDIPAPI GdipCreateSolidFill(ARGB color, GpSolidFill **sf)
|
|
|
|
{
|
|
|
|
COLORREF col = ARGB2COLORREF(color);
|
|
|
|
|
|
|
|
if(!sf) return InvalidParameter;
|
|
|
|
|
|
|
|
*sf = GdipAlloc(sizeof(GpSolidFill));
|
|
|
|
if (!*sf) return OutOfMemory;
|
|
|
|
|
2007-07-20 03:22:59 +02:00
|
|
|
(*sf)->brush.lb.lbStyle = BS_SOLID;
|
|
|
|
(*sf)->brush.lb.lbColor = col;
|
|
|
|
(*sf)->brush.lb.lbHatch = 0;
|
|
|
|
|
2007-06-15 01:09:07 +02:00
|
|
|
(*sf)->brush.gdibrush = CreateSolidBrush(col);
|
|
|
|
(*sf)->brush.bt = BrushTypeSolidColor;
|
2007-07-24 05:24:24 +02:00
|
|
|
(*sf)->color = color;
|
2007-06-15 01:09:07 +02:00
|
|
|
|
|
|
|
return Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipGetBrushType(GpBrush *brush, GpBrushType *type)
|
|
|
|
{
|
|
|
|
if(!brush || !type) return InvalidParameter;
|
|
|
|
|
|
|
|
*type = brush->bt;
|
|
|
|
|
|
|
|
return Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush *brush)
|
|
|
|
{
|
|
|
|
if(!brush) return InvalidParameter;
|
|
|
|
|
|
|
|
DeleteObject(brush->gdibrush);
|
|
|
|
GdipFree(brush);
|
|
|
|
|
|
|
|
return Ok;
|
|
|
|
}
|
2007-07-24 05:24:13 +02:00
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipGetSolidFillColor(GpSolidFill *sf, ARGB *argb)
|
|
|
|
{
|
|
|
|
if(!sf || !argb)
|
|
|
|
return InvalidParameter;
|
|
|
|
|
2007-07-24 05:24:24 +02:00
|
|
|
*argb = sf->color;
|
|
|
|
|
|
|
|
return Ok;
|
2007-07-24 05:24:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
GpStatus WINGDIPAPI GdipSetSolidFillColor(GpSolidFill *sf, ARGB argb)
|
|
|
|
{
|
|
|
|
if(!sf)
|
|
|
|
return InvalidParameter;
|
|
|
|
|
2007-07-24 05:24:24 +02:00
|
|
|
sf->color = argb;
|
|
|
|
sf->brush.lb.lbColor = ARGB2COLORREF(argb);
|
|
|
|
|
|
|
|
DeleteObject(sf->brush.gdibrush);
|
|
|
|
sf->brush.gdibrush = CreateSolidBrush(sf->brush.lb.lbColor);
|
|
|
|
|
|
|
|
return Ok;
|
2007-07-24 05:24:13 +02:00
|
|
|
}
|