source: branches/swt/include/win/gdiplusgpstubs.h@ 22145

Last change on this file since 22145 was 22082, checked in by rousseau, 11 years ago

Added headers for 'GDI+'

headers:
o gdiplus.h
o gdipluscolor.h
o gdipluscolormatrix.h
o gdiplusenums.h
o gdiplusflat.h
o gdiplusgpstubs.h
o gdiplusimaging.h
o gdiplusinit.h
o gdiplusmem.h
o gdiplusmetaheader.h
o gdipluspixelformats.h
o gdiplustypes.h

info-links:
o http://en.wikipedia.org/wiki/Graphics_Device_Interface
o http://msdn.microsoft.com/en-us/library/windows/desktop/ms533798%28v=vs.85%29.aspx
o http://msdn.microsoft.com/en-us/library/windows/desktop/ms534077%28v=vs.85%29.aspx
o http://msdn.microsoft.com/en-us/library/ms533798%28v=vs.85%29.aspx
o http://msdn.microsoft.com/en-us/library/ms534077%28v=vs.85%29.aspx
o http://wiki.winehq.org/GdiPlus

File size: 3.1 KB
Line 
1/*
2 * Copyright (C) 2007 Google (Evan Stade)
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 */
18
19#ifndef _GDIPLUSGPSTUBS_H
20#define _GDIPLUSGPSTUBS_H
21
22#ifdef __cplusplus
23
24class GpGraphics {};
25class GpPen {};
26class GpBrush {};
27class GpHatch : public GpBrush {};
28class GpSolidFill : public GpBrush {};
29class GpPath {};
30class GpMatrix {};
31class GpPathIterator {};
32class GpCustomLineCap {};
33class GpAdjustableArrowCap : public GpCustomLineCap {};
34class GpImage {};
35class GpMetafile : public GpImage {};
36class GpImageAttributes {};
37class GpCachedBitmap {};
38class GpBitmap : public GpImage {};
39class GpPathGradient : public GpBrush {};
40class GpLineGradient : public GpBrush {};
41class GpTexture : public GpBrush {};
42class GpFont {};
43class GpFontCollection {};
44class GpFontFamily {};
45class GpStringFormat {};
46class GpRegion {};
47class CGpEffect {};
48
49#else /* end of c++ declarations */
50
51typedef struct GpGraphics GpGraphics;
52typedef struct GpPen GpPen;
53typedef struct GpBrush GpBrush;
54typedef struct GpHatch GpHatch;
55typedef struct GpSolidFill GpSolidFill;
56typedef struct GpPath GpPath;
57typedef struct GpMatrix GpMatrix;
58typedef struct GpPathIterator GpPathIterator;
59typedef struct GpCustomLineCap GpCustomLineCap;
60typedef struct GpAdjustableArrowCap GpAdjustableArrowCap;
61typedef struct GpImage GpImage;
62typedef struct GpMetafile GpMetafile;
63typedef struct GpImageAttributes GpImageAttributes;
64typedef struct GpCachedBitmap GpCachedBitmap;
65typedef struct GpBitmap GpBitmap;
66typedef struct GpPathGradient GpPathGradient;
67typedef struct GpLineGradient GpLineGradient;
68typedef struct GpTexture GpTexture;
69typedef struct GpFont GpFont;
70typedef struct GpFontCollection GpFontCollection;
71typedef struct GpFontFamily GpFontFamily;
72typedef struct GpStringFormat GpStringFormat;
73typedef struct GpRegion GpRegion;
74typedef struct CGpEffect CGpEffect;
75
76#endif /* end of c declarations */
77
78typedef Status GpStatus;
79typedef Unit GpUnit;
80typedef BrushType GpBrushType;
81typedef PointF GpPointF;
82typedef FillMode GpFillMode;
83typedef PathData GpPathData;
84typedef LineCap GpLineCap;
85typedef RectF GpRectF;
86typedef Rect GpRect;
87typedef LineJoin GpLineJoin;
88typedef DashCap GpDashCap;
89typedef DashStyle GpDashStyle;
90typedef MatrixOrder GpMatrixOrder;
91typedef Point GpPoint;
92typedef WrapMode GpWrapMode;
93typedef Color GpColor;
94typedef FlushIntention GpFlushIntention;
95typedef CoordinateSpace GpCoordinateSpace;
96typedef PenAlignment GpPenAlignment;
97typedef PenType GpPenType;
98
99#endif
Note: See TracBrowser for help on using the repository browser.