source: trunk/ab5.0/ablib/src/GdiPlusGpStubs.ab@ 560

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

インクルードガードとその他不要な前処理定義などの削除

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