Changeset 241 for branch/egtra-gdiplus/GdiPlusGpStubs.ab
- Timestamp:
- May 9, 2007, 10:26:36 PM (18 years ago)
- Location:
- branch/egtra-gdiplus
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branch/egtra-gdiplus/GdiPlusGpStubs.ab
r119 r241 9 9 #require <Classes/System/Drawing/Drawing2D/Matrix.ab> 10 10 11 Class GpGraphics 12 End Class 11 Namespace Gdiplus 13 12 14 Class GpBrush 15 End Class 16 Class GpTexture 17 Inherits GpBrush 18 End Class 19 Class GpSolidFill 20 Inherits GpBrush 21 End Class 22 Class GpLineGradient 23 Inherits GpBrush 24 End Class 25 Class GpPathGradient 26 Inherits GpBrush 27 End Class 28 Class GpHatch 29 Inherits GpBrush 30 End Class 13 Type GpGraphics 14 End Type 31 15 32 Class GpPen 33 End Class 34 Class GpCustomLineCap 35 End Class 36 Class GpAdjustableArrowCap 37 Inherits GpCustomLineCap 38 End Class 16 Type GpBrush 17 End Type 18 Type GpTexture 19 ' Inherits GpBrush 20 End Type 21 Type GpSolidFill 22 ' Inherits GpBrush 23 End Type 24 Type GpLineGradient 25 ' Inherits GpBrush 26 End Type 27 Type GpPathGradient 28 ' Inherits GpBrush 29 End Type 30 Type GpHatch 31 ' Inherits GpBrush 32 End Type 39 33 40 Class GpImage 41 End Class 42 Class GpBitmap 43 Inherits GpImage 44 End Class 45 Class GpMetafile 46 Inherits GpImage 47 End Class 48 Class GpImageAttributes 49 End Class 34 Type GpPen 35 End Type 36 Type GpCustomLineCap 37 End Type 38 Type GpAdjustableArrowCap 39 ' Inherits GpCustomLineCap 40 End Type 50 41 51 Class GpPath 52 End Class 53 Class GpRegion 54 End Class 55 Class GpPathIterator 56 End Class 42 Type GpImage 43 End Type 44 Type GpBitmap 45 ' Inherits GpImage 46 End Type 47 Type GpMetafile 48 ' Inherits GpImage 49 End Type 50 Type GpImageAttributes 51 End Type 57 52 58 Class GpFontFamily 59 End Class 60 Class GpFont 61 End Class 62 Class GpStringFormat 63 End Class 64 Class GpFontCollection 65 End Class 66 Class GpInstalledFontCollection 67 Inherits GpFontCollection 68 End Class 69 Class GpPrivateFontCollection 70 Inherits GpFontCollection 71 End Class 53 Type GpPath 54 End Type 55 Type GpRegion 56 End Type 57 Type GpPathIterator 58 End Type 72 59 73 'Class GpCachedBitmap; 74 Class GpCachedBitmap 75 End Class 60 Type GpFontFamily 61 End Type 62 Type GpFont 63 End Type 64 Type GpStringFormat 65 End Type 66 Type GpFontCollection 67 End Type 68 Type GpInstalledFontCollection 69 ' Inherits GpFontCollection 70 End Type 71 Type GpPrivateFontCollection 72 ' Inherits GpFontCollection 73 End Type 76 74 77 TypeDef GpStatus = Status 78 TypeDef GpFillMode = FillMode 79 TypeDef GpWrapMode = WrapMode 80 TypeDef GpUnit = GraphicsUnit 81 TypeDef GpCoordinateSpace = CoordinateSpace 82 TypeDef GpPointF = PointF 83 TypeDef GpPoint = Point 84 TypeDef GpRectF = RectangleF 85 TypeDef GpRect = Rectangle 86 TypeDef GpSizeF = SizeF 87 TypeDef GpHatchStyle = HatchStyle 88 TypeDef GpDashStyle = DashStyle 89 TypeDef GpLineCap = LineCap 90 TypeDef GpDashCap = DashCap 75 'Type GpCachedBitmap; 76 Type GpCachedBitmap 77 End Type 78 79 TypeDef GpStatus = Gdiplus.Status 80 TypeDef GpFillMode = System.Drawing.Drawing2D.FillMode 81 TypeDef GpWrapMode = System.Drawing.Drawing2D.WrapMode 82 TypeDef GpUnit = System.Drawing.GraphicsUnit 83 TypeDef GpCoordinateSpace = System.Drawing.Drawing2D.CoordinateSpace 84 TypeDef GpPointF = System.Drawing.PointF 85 TypeDef GpPoint = System.Drawing.Point 86 TypeDef GpRectF = System.Drawing.RectangleF 87 TypeDef GpRect = System.Drawing.Rectangle 88 TypeDef GpSizeF = System.Drawing.SizeF 89 TypeDef GpHatchStyle = System.Drawing.Drawing2D.HatchStyle 90 TypeDef GpDashStyle = System.Drawing.Drawing2D.DashStyle 91 TypeDef GpLineCap = System.Drawing.Drawing2D.LineCap 92 TypeDef GpDashCap = System.Drawing.Drawing2D.DashCap 91 93 92 94 93 TypeDef GpPenAlignment = PenAlignment95 TypeDef GpPenAlignment = System.Drawing.Drawing2D.PenAlignment 94 96 95 TypeDef GpLineJoin = LineJoin96 TypeDef GpPenType = PenType97 TypeDef GpLineJoin = System.Drawing.Drawing2D.LineJoin 98 TypeDef GpPenType = System.Drawing.PenType 97 99 98 TypeDef GpMatrix = Matrix 100 'TypeDef GpMatrix = Matrix 101 Type GpMatrix 102 End Type 103 99 104 TypeDef GpBrushType = BrushType 100 TypeDef GpMatrixOrder = MatrixOrder101 TypeDef GpFlushIntention = FlushIntention105 TypeDef GpMatrixOrder = System.Drawing.Drawing2D.MatrixOrder 106 TypeDef GpFlushIntention = System.Drawing.Drawing2D.FlushIntention 102 107 TypeDef GpPathData = PathData 103 108 109 End Namespace 110 104 111 #endif '__GDIPLUSGPSTUBS_AB__ 105
Note:
See TracChangeset
for help on using the changeset viewer.