gdiplus: Brush implementation.
This commit is contained in:
parent
7e9d498d1e
commit
cc0a676b22
|
@ -7,6 +7,7 @@ IMPORTLIB = libgdiplus.$(IMPLIBEXT)
|
|||
IMPORTS = user32 gdi32 advapi32 kernel32 ntdll
|
||||
|
||||
C_SRCS = \
|
||||
brush.c \
|
||||
gdiplus.c \
|
||||
graphics.c \
|
||||
pen.c
|
||||
|
|
|
@ -0,0 +1,57 @@
|
|||
/*
|
||||
* 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"
|
||||
|
||||
GpStatus WINGDIPAPI GdipCreateSolidFill(ARGB color, GpSolidFill **sf)
|
||||
{
|
||||
COLORREF col = ARGB2COLORREF(color);
|
||||
|
||||
if(!sf) return InvalidParameter;
|
||||
|
||||
*sf = GdipAlloc(sizeof(GpSolidFill));
|
||||
if (!*sf) return OutOfMemory;
|
||||
|
||||
(*sf)->brush.gdibrush = CreateSolidBrush(col);
|
||||
(*sf)->brush.bt = BrushTypeSolidColor;
|
||||
(*sf)->brush.color = col;
|
||||
|
||||
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;
|
||||
}
|
|
@ -119,7 +119,7 @@
|
|||
@ stub GdipCreateRegionRect
|
||||
@ stub GdipCreateRegionRectI
|
||||
@ stub GdipCreateRegionRgnData
|
||||
@ stub GdipCreateSolidFill
|
||||
@ stdcall GdipCreateSolidFill(long ptr)
|
||||
@ stub GdipCreateStreamOnFile
|
||||
@ stub GdipCreateStringFormat
|
||||
@ stub GdipCreateTexture2
|
||||
|
@ -127,7 +127,7 @@
|
|||
@ stub GdipCreateTexture
|
||||
@ stub GdipCreateTextureIA
|
||||
@ stub GdipCreateTextureIAI
|
||||
@ stub GdipDeleteBrush
|
||||
@ stdcall GdipDeleteBrush(ptr)
|
||||
@ stub GdipDeleteCachedBitmap
|
||||
@ stub GdipDeleteCustomLineCap
|
||||
@ stub GdipDeleteFont
|
||||
|
@ -228,7 +228,7 @@
|
|||
@ stub GdipGetAdjustableArrowCapMiddleInset
|
||||
@ stub GdipGetAdjustableArrowCapWidth
|
||||
@ stub GdipGetAllPropertyItems
|
||||
@ stub GdipGetBrushType
|
||||
@ stdcall GdipGetBrushType(ptr ptr)
|
||||
@ stub GdipGetCellAscent
|
||||
@ stub GdipGetCellDescent
|
||||
@ stub GdipGetClip
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
#define __WINE_GP_PRIVATE_H_
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "gdiplus.h"
|
||||
|
||||
#define GP_DEFAULT_PENSTYLE (PS_GEOMETRIC | PS_ENDCAP_FLAT)
|
||||
|
@ -40,4 +39,14 @@ struct GpGraphics{
|
|||
HWND hwnd;
|
||||
};
|
||||
|
||||
struct GpBrush{
|
||||
HBRUSH gdibrush;
|
||||
GpBrushType bt;
|
||||
COLORREF color;
|
||||
};
|
||||
|
||||
struct GpSolidFill{
|
||||
GpBrush brush;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue