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