source: branch/egtra-gdiplus/GdiPlusGpStubs.ab

Last change on this file was 241, checked in by イグトランス (egtra), 17 years ago

GDI+に対して名前空間で囲ったものの、現在コンパイルできないため分岐させておく

File size: 2.4 KB
Line 
1' GdiplusGpStubs.ab
2
3#ifndef __GDIPLUSGPSTUBS_AB__
4#define __GDIPLUSGPSTUBS_AB__
5
6#require <GdiPlusTypes.ab>
7#require <GdiPlusEnums.ab>
8#require <Classes/System/Drawing/Drawing2D/misc.ab>
9#require <Classes/System/Drawing/Drawing2D/Matrix.ab>
10
11Namespace Gdiplus
12
13Type GpGraphics
14End Type
15
16Type GpBrush
17End Type
18Type GpTexture
19' Inherits GpBrush
20End Type
21Type GpSolidFill
22' Inherits GpBrush
23End Type
24Type GpLineGradient
25' Inherits GpBrush
26End Type
27Type GpPathGradient
28' Inherits GpBrush
29End Type
30Type GpHatch
31' Inherits GpBrush
32End Type
33
34Type GpPen
35End Type
36Type GpCustomLineCap
37End Type
38Type GpAdjustableArrowCap
39' Inherits GpCustomLineCap
40End Type
41
42Type GpImage
43End Type
44Type GpBitmap
45' Inherits GpImage
46End Type
47Type GpMetafile
48' Inherits GpImage
49End Type
50Type GpImageAttributes
51End Type
52
53Type GpPath
54End Type
55Type GpRegion
56End Type
57Type GpPathIterator
58End Type
59
60Type GpFontFamily
61End Type
62Type GpFont
63End Type
64Type GpStringFormat
65End Type
66Type GpFontCollection
67End Type
68Type GpInstalledFontCollection
69' Inherits GpFontCollection
70End Type
71Type GpPrivateFontCollection
72' Inherits GpFontCollection
73End Type
74
75'Type GpCachedBitmap;
76Type GpCachedBitmap
77End Type
78
79TypeDef GpStatus = Gdiplus.Status
80TypeDef GpFillMode = System.Drawing.Drawing2D.FillMode
81TypeDef GpWrapMode = System.Drawing.Drawing2D.WrapMode
82TypeDef GpUnit = System.Drawing.GraphicsUnit
83TypeDef GpCoordinateSpace = System.Drawing.Drawing2D.CoordinateSpace
84TypeDef GpPointF = System.Drawing.PointF
85TypeDef GpPoint = System.Drawing.Point
86TypeDef GpRectF = System.Drawing.RectangleF
87TypeDef GpRect = System.Drawing.Rectangle
88TypeDef GpSizeF = System.Drawing.SizeF
89TypeDef GpHatchStyle = System.Drawing.Drawing2D.HatchStyle
90TypeDef GpDashStyle = System.Drawing.Drawing2D.DashStyle
91TypeDef GpLineCap = System.Drawing.Drawing2D.LineCap
92TypeDef GpDashCap = System.Drawing.Drawing2D.DashCap
93
94
95TypeDef GpPenAlignment = System.Drawing.Drawing2D.PenAlignment
96
97TypeDef GpLineJoin = System.Drawing.Drawing2D.LineJoin
98TypeDef GpPenType = System.Drawing.PenType
99
100'TypeDef GpMatrix = Matrix
101Type GpMatrix
102End Type
103
104TypeDef GpBrushType = BrushType
105TypeDef GpMatrixOrder = System.Drawing.Drawing2D.MatrixOrder
106TypeDef GpFlushIntention = System.Drawing.Drawing2D.FlushIntention
107TypeDef GpPathData = PathData
108
109End Namespace
110
111#endif '__GDIPLUSGPSTUBS_AB__
Note: See TracBrowser for help on using the repository browser.