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

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

GdiPlusEnums.abの列挙体を名前空間System.Drawing以下に配置

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