[13] | 1 | ' GdiplusGpStubs.ab
|
---|
| 2 |
|
---|
| 3 | #ifndef __GDIPLUSGPSTUBS_AB__
|
---|
| 4 | #define __GDIPLUSGPSTUBS_AB__
|
---|
| 5 |
|
---|
[119] | 6 | #require <GdiPlusTypes.ab>
|
---|
| 7 | #require <GdiPlusEnums.ab>
|
---|
| 8 | #require <Classes/System/Drawing/Drawing2D/misc.ab>
|
---|
| 9 | #require <Classes/System/Drawing/Drawing2D/Matrix.ab>
|
---|
[33] | 10 |
|
---|
[13] | 11 | Class GpGraphics
|
---|
| 12 | End Class
|
---|
| 13 |
|
---|
| 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
|
---|
| 31 |
|
---|
| 32 | Class GpPen
|
---|
| 33 | End Class
|
---|
| 34 | Class GpCustomLineCap
|
---|
| 35 | End Class
|
---|
| 36 | Class GpAdjustableArrowCap
|
---|
| 37 | Inherits GpCustomLineCap
|
---|
| 38 | End Class
|
---|
| 39 |
|
---|
| 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
|
---|
| 50 |
|
---|
| 51 | Class GpPath
|
---|
| 52 | End Class
|
---|
| 53 | Class GpRegion
|
---|
| 54 | End Class
|
---|
| 55 | Class GpPathIterator
|
---|
| 56 | End Class
|
---|
| 57 |
|
---|
| 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
|
---|
| 72 |
|
---|
| 73 | 'Class GpCachedBitmap;
|
---|
| 74 | Class GpCachedBitmap
|
---|
| 75 | End Class
|
---|
| 76 |
|
---|
| 77 | TypeDef GpStatus = Status
|
---|
| 78 | TypeDef GpFillMode = FillMode
|
---|
| 79 | TypeDef GpWrapMode = WrapMode
|
---|
[119] | 80 | TypeDef GpUnit = GraphicsUnit
|
---|
[13] | 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
|
---|
| 91 |
|
---|
| 92 |
|
---|
| 93 | TypeDef GpPenAlignment = PenAlignment
|
---|
| 94 |
|
---|
| 95 | TypeDef GpLineJoin = LineJoin
|
---|
| 96 | TypeDef GpPenType = PenType
|
---|
| 97 |
|
---|
| 98 | TypeDef GpMatrix = Matrix
|
---|
| 99 | TypeDef GpBrushType = BrushType
|
---|
| 100 | TypeDef GpMatrixOrder = MatrixOrder
|
---|
| 101 | TypeDef GpFlushIntention = FlushIntention
|
---|
| 102 | TypeDef GpPathData = PathData
|
---|
| 103 |
|
---|
| 104 | #endif '__GDIPLUSGPSTUBS_AB__
|
---|
| 105 |
|
---|