source: trunk/Include/GdiPlusGpStubs.ab@ 473

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

実験として書いていたControlクラスを追加(せめてコミット前に既存のContorolに混ぜようとしたがコンパイルできなかった)。
ほかForms, Drawing及びGDI+の修正。

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