2007-06-08 13:44:28 -07: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 _GDIPLUSGPSTUBS_H
|
|
|
|
#define _GDIPLUSGPSTUBS_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
class GpGraphics {};
|
2011-02-01 08:49:46 +01:00
|
|
|
class GpPen {};
|
2007-06-08 13:44:28 -07:00
|
|
|
class GpBrush {};
|
2009-01-10 18:45:11 -05:00
|
|
|
class GpHatch : public GpBrush {};
|
2007-08-01 17:56:02 -07:00
|
|
|
class GpSolidFill : public GpBrush {};
|
2007-06-21 16:15:17 -07:00
|
|
|
class GpPath {};
|
2007-07-11 18:07:48 -07:00
|
|
|
class GpMatrix {};
|
2007-07-16 19:45:02 -07:00
|
|
|
class GpPathIterator {};
|
2007-07-19 18:22:34 -07:00
|
|
|
class GpCustomLineCap {};
|
2008-09-03 20:34:58 +04:00
|
|
|
class GpAdjustableArrowCap : public GpCustomLineCap {};
|
2007-07-24 17:19:05 -07:00
|
|
|
class GpImage {};
|
|
|
|
class GpMetafile : public GpImage {};
|
2007-07-30 19:09:41 -07:00
|
|
|
class GpImageAttributes {};
|
2008-11-04 08:54:32 +03:00
|
|
|
class GpCachedBitmap {};
|
2007-07-31 19:15:52 -07:00
|
|
|
class GpBitmap : public GpImage {};
|
2007-08-01 17:56:02 -07:00
|
|
|
class GpPathGradient : public GpBrush {};
|
2007-08-07 18:42:29 -07:00
|
|
|
class GpLineGradient : public GpBrush {};
|
2007-08-09 18:25:14 -07:00
|
|
|
class GpTexture : public GpBrush {};
|
2007-08-13 18:34:51 -07:00
|
|
|
class GpFont {};
|
2008-06-21 13:02:47 -04:00
|
|
|
class GpFontCollection {};
|
|
|
|
class GpFontFamily {};
|
2007-08-14 18:58:39 -07:00
|
|
|
class GpStringFormat {};
|
2008-04-09 12:35:29 -07:00
|
|
|
class GpRegion {};
|
2008-04-09 13:00:16 -07:00
|
|
|
class CGpEffect {};
|
2007-06-08 13:44:28 -07:00
|
|
|
|
|
|
|
#else /* end of c++ declarations */
|
|
|
|
|
|
|
|
typedef struct GpGraphics GpGraphics;
|
|
|
|
typedef struct GpPen GpPen;
|
|
|
|
typedef struct GpBrush GpBrush;
|
2009-01-10 18:45:11 -05:00
|
|
|
typedef struct GpHatch GpHatch;
|
2007-06-08 13:44:28 -07:00
|
|
|
typedef struct GpSolidFill GpSolidFill;
|
2007-06-21 16:15:17 -07:00
|
|
|
typedef struct GpPath GpPath;
|
2007-07-11 18:07:48 -07:00
|
|
|
typedef struct GpMatrix GpMatrix;
|
2007-07-16 19:45:02 -07:00
|
|
|
typedef struct GpPathIterator GpPathIterator;
|
2007-07-19 18:22:34 -07:00
|
|
|
typedef struct GpCustomLineCap GpCustomLineCap;
|
2008-09-03 20:34:58 +04:00
|
|
|
typedef struct GpAdjustableArrowCap GpAdjustableArrowCap;
|
2007-07-24 17:19:05 -07:00
|
|
|
typedef struct GpImage GpImage;
|
|
|
|
typedef struct GpMetafile GpMetafile;
|
2007-07-30 19:09:41 -07:00
|
|
|
typedef struct GpImageAttributes GpImageAttributes;
|
2008-11-04 08:54:32 +03:00
|
|
|
typedef struct GpCachedBitmap GpCachedBitmap;
|
2007-07-31 19:15:52 -07:00
|
|
|
typedef struct GpBitmap GpBitmap;
|
2007-08-01 17:56:02 -07:00
|
|
|
typedef struct GpPathGradient GpPathGradient;
|
2007-08-07 18:42:29 -07:00
|
|
|
typedef struct GpLineGradient GpLineGradient;
|
2007-08-09 18:25:14 -07:00
|
|
|
typedef struct GpTexture GpTexture;
|
2007-08-13 18:34:51 -07:00
|
|
|
typedef struct GpFont GpFont;
|
2008-06-21 13:02:47 -04:00
|
|
|
typedef struct GpFontCollection GpFontCollection;
|
|
|
|
typedef struct GpFontFamily GpFontFamily;
|
2007-08-14 18:58:39 -07:00
|
|
|
typedef struct GpStringFormat GpStringFormat;
|
2008-04-09 12:35:29 -07:00
|
|
|
typedef struct GpRegion GpRegion;
|
2008-04-09 13:00:16 -07:00
|
|
|
typedef struct CGpEffect CGpEffect;
|
2007-06-08 13:44:28 -07:00
|
|
|
|
|
|
|
#endif /* end of c declarations */
|
|
|
|
|
|
|
|
typedef Status GpStatus;
|
|
|
|
typedef Unit GpUnit;
|
|
|
|
typedef BrushType GpBrushType;
|
2007-06-19 19:31:28 -07:00
|
|
|
typedef PointF GpPointF;
|
2007-06-21 16:15:17 -07:00
|
|
|
typedef FillMode GpFillMode;
|
|
|
|
typedef PathData GpPathData;
|
2007-07-05 18:37:52 -07:00
|
|
|
typedef LineCap GpLineCap;
|
2007-07-11 18:08:10 -07:00
|
|
|
typedef RectF GpRectF;
|
2007-08-29 21:42:01 +02:00
|
|
|
typedef Rect GpRect;
|
2007-07-12 19:42:47 -07:00
|
|
|
typedef LineJoin GpLineJoin;
|
2007-07-16 19:44:50 -07:00
|
|
|
typedef DashCap GpDashCap;
|
2007-07-16 19:45:16 -07:00
|
|
|
typedef DashStyle GpDashStyle;
|
2007-07-17 19:31:15 -07:00
|
|
|
typedef MatrixOrder GpMatrixOrder;
|
2007-07-23 20:24:35 -07:00
|
|
|
typedef Point GpPoint;
|
2007-08-01 17:56:10 -07:00
|
|
|
typedef WrapMode GpWrapMode;
|
2008-04-10 12:40:13 -07:00
|
|
|
typedef Color GpColor;
|
2008-06-18 11:33:10 +04:00
|
|
|
typedef FlushIntention GpFlushIntention;
|
2008-07-10 15:26:58 +01:00
|
|
|
typedef CoordinateSpace GpCoordinateSpace;
|
2011-02-01 08:49:46 +01:00
|
|
|
typedef PenAlignment GpPenAlignment;
|
2008-12-03 18:22:55 +03:00
|
|
|
typedef PenType GpPenType;
|
2007-06-08 13:44:28 -07:00
|
|
|
|
|
|
|
#endif
|