source: trunk/Include/GdiPlusGpStubs.ab@ 435

Last change on this file since 435 was 300, checked in by dai, 17 years ago

trunkディレクトリを作成。bin、Include、TestCaseをtrunkに移動した。
標準ライブラリのビルドバッチを追加。

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