Sweden-Number/include/gdiplusflat.h

100 lines
4.6 KiB
C
Raw Normal View History

2007-06-08 22:44:28 +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
*/
#ifndef _FLATAPI_H
#define _FLATAPI_H
#define WINGDIPAPI __stdcall
2007-06-20 04:31:28 +02:00
#define GDIPCONST const
2007-06-08 22:44:28 +02:00
#ifdef __cplusplus
extern "C" {
#endif
GpStatus WINGDIPAPI GdipCreatePen1(ARGB,REAL,GpUnit,GpPen**);
GpStatus WINGDIPAPI GdipDeletePen(GpPen*);
GpStatus WINGDIPAPI GdipSetPenEndCap(GpPen*,GpLineCap);
GpStatus WINGDIPAPI GdipSetPenLineCap197819(GpPen*,GpLineCap,GpLineCap,GpDashCap);
2007-07-13 04:42:47 +02:00
GpStatus WINGDIPAPI GdipSetPenLineJoin(GpPen*,GpLineJoin);
2007-07-17 04:44:58 +02:00
GpStatus WINGDIPAPI GdipSetPenMiterLimit(GpPen*,REAL);
2007-06-08 22:44:28 +02:00
GpStatus WINGDIPAPI GdipCreateFromHDC(HDC,GpGraphics**);
GpStatus WINGDIPAPI GdipCreateFromHWND(HWND,GpGraphics**);
GpStatus WINGDIPAPI GdipDeleteGraphics(GpGraphics *);
2007-06-20 04:31:19 +02:00
GpStatus WINGDIPAPI GdipDrawArc(GpGraphics*,GpPen*,REAL,REAL,REAL,REAL,REAL,REAL);
2007-06-16 06:27:38 +02:00
GpStatus WINGDIPAPI GdipDrawBezier(GpGraphics*,GpPen*,REAL,REAL,REAL,REAL,REAL,
REAL,REAL,REAL);
2007-06-20 04:31:28 +02:00
GpStatus WINGDIPAPI GdipDrawCurve2(GpGraphics*,GpPen*,GDIPCONST GpPointF*,INT,REAL);
2007-06-08 22:44:28 +02:00
GpStatus WINGDIPAPI GdipDrawLineI(GpGraphics*,GpPen*,INT,INT,INT,INT);
2007-06-22 01:15:13 +02:00
GpStatus WINGDIPAPI GdipDrawLines(GpGraphics*,GpPen*,GDIPCONST GpPointF*,INT);
2007-07-12 03:07:34 +02:00
GpStatus WINGDIPAPI GdipDrawPath(GpGraphics*,GpPen*,GpPath*);
GpStatus WINGDIPAPI GdipDrawPie(GpGraphics*,GpPen*,REAL,REAL,REAL,REAL,REAL,REAL);
2007-06-08 22:44:28 +02:00
GpStatus WINGDIPAPI GdipDrawRectangleI(GpGraphics*,GpPen*,INT,INT,INT,INT);
2007-07-14 05:19:46 +02:00
GpStatus WINGDIPAPI GdipFillPath(GpGraphics*,GpBrush*,GpPath*);
2007-06-08 22:44:28 +02:00
GpStatus WINGDIPAPI GdipFillPie(GpGraphics*,GpBrush*,REAL,REAL,REAL,REAL,REAL,REAL);
2007-07-14 02:51:25 +02:00
GpStatus WINGDIPAPI GdipGetCompositingQuality(GpGraphics*,CompositingQuality*);
2007-07-14 02:51:29 +02:00
GpStatus WINGDIPAPI GdipGetInterpolationMode(GpGraphics*,InterpolationMode*);
2007-07-14 02:51:33 +02:00
GpStatus WINGDIPAPI GdipGetPixelOffsetMode(GpGraphics*,PixelOffsetMode*);
2007-07-14 02:51:13 +02:00
GpStatus WINGDIPAPI GdipGetSmoothingMode(GpGraphics*,SmoothingMode*);
GpStatus WINGDIPAPI GdipRestoreGraphics(GpGraphics*,GraphicsState);
GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics*,GraphicsState*);
2007-07-14 02:51:25 +02:00
GpStatus WINGDIPAPI GdipSetCompositingQuality(GpGraphics*,CompositingQuality);
2007-07-14 02:51:29 +02:00
GpStatus WINGDIPAPI GdipSetInterpolationMode(GpGraphics*,InterpolationMode);
2007-07-14 02:51:33 +02:00
GpStatus WINGDIPAPI GdipSetPixelOffsetMode(GpGraphics*,PixelOffsetMode);
2007-07-14 02:51:13 +02:00
GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics*,SmoothingMode);
2007-06-08 22:44:28 +02:00
GpStatus WINGDIPAPI GdipCreateSolidFill(ARGB,GpSolidFill**);
GpStatus WINGDIPAPI GdipGetBrushType(GpBrush*,GpBrushType*);
GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush*);
2007-07-12 03:06:56 +02:00
GpStatus WINGDIPAPI GdipAddPathArc(GpPath*,REAL,REAL,REAL,REAL,REAL,REAL);
2007-07-07 01:14:07 +02:00
GpStatus WINGDIPAPI GdipAddPathLine2(GpPath*,GDIPCONST GpPointF*,INT);
2007-07-13 04:43:15 +02:00
GpStatus WINGDIPAPI GdipAddPathPath(GpPath*,GDIPCONST GpPath*,BOOL);
2007-07-07 01:14:17 +02:00
GpStatus WINGDIPAPI GdipClosePathFigure(GpPath*);
2007-07-07 01:14:24 +02:00
GpStatus WINGDIPAPI GdipClosePathFigures(GpPath*);
GpStatus WINGDIPAPI GdipCreatePath(GpFillMode,GpPath**);
GpStatus WINGDIPAPI GdipDeletePath(GpPath*);
2007-07-13 04:43:07 +02:00
GpStatus WINGDIPAPI GdipGetPathFillMode(GpPath*,GpFillMode*);
2007-07-07 01:14:38 +02:00
GpStatus WINGDIPAPI GdipGetPathPoints(GpPath*,GpPointF*,INT);
2007-07-07 01:14:44 +02:00
GpStatus WINGDIPAPI GdipGetPathTypes(GpPath*,BYTE*,INT);
2007-07-12 03:08:10 +02:00
GpStatus WINGDIPAPI GdipGetPathWorldBounds(GpPath*,GpRectF*,GDIPCONST GpMatrix*,
GDIPCONST GpPen*);
2007-07-07 01:14:34 +02:00
GpStatus WINGDIPAPI GdipGetPointCount(GpPath*,INT*);
2007-07-12 03:07:28 +02:00
GpStatus WINGDIPAPI GdipStartPathFigure(GpPath*);
2007-07-13 04:43:10 +02:00
GpStatus WINGDIPAPI GdipResetPath(GpPath*);
2007-07-14 02:51:01 +02:00
GpStatus WINGDIPAPI GdipSetPathFillMode(GpPath*,GpFillMode);
2007-07-12 03:08:05 +02:00
GpStatus WINGDIPAPI GdipTransformPath(GpPath*,GpMatrix*);
GpStatus WINGDIPAPI GdipCreateMatrix2(REAL,REAL,REAL,REAL,REAL,REAL,GpMatrix**);
GpStatus WINGDIPAPI GdipDeleteMatrix(GpMatrix*);
GpStatus WINGDIPAPI GdipTransformMatrixPoints(GpMatrix*,GpPointF*,INT);
GpStatus WINGDIPAPI GdipCreatePathIter(GpPathIterator**,GpPath*);
GpStatus WINGDIPAPI GdipDeletePathIter(GpPathIterator*);
2007-07-17 04:45:06 +02:00
GpStatus WINGDIPAPI GdipPathIterCopyData(GpPathIterator*,INT*,GpPointF*,BYTE*,
INT,INT);
GpStatus WINGDIPAPI GdipPathIterNextSubpath(GpPathIterator*,INT*,INT*,INT*,BOOL*);
2007-07-17 04:45:13 +02:00
GpStatus WINGDIPAPI GdipPathIterRewind(GpPathIterator*);
2007-06-08 22:44:28 +02:00
#ifdef __cplusplus
}
#endif
#endif