source: Include/GdiPlusGpStubs.ab@ 33

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

Graphics クラスの追加とそれに伴う修正

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