[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 |
|
---|
[241] | 11 | Namespace Gdiplus
|
---|
[13] | 12 |
|
---|
[241] | 13 | Type GpGraphics
|
---|
| 14 | End Type
|
---|
[13] | 15 |
|
---|
[241] | 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
|
---|
[13] | 33 |
|
---|
[241] | 34 | Type GpPen
|
---|
| 35 | End Type
|
---|
| 36 | Type GpCustomLineCap
|
---|
| 37 | End Type
|
---|
| 38 | Type GpAdjustableArrowCap
|
---|
| 39 | ' Inherits GpCustomLineCap
|
---|
| 40 | End Type
|
---|
[13] | 41 |
|
---|
[241] | 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
|
---|
[13] | 52 |
|
---|
[241] | 53 | Type GpPath
|
---|
| 54 | End Type
|
---|
| 55 | Type GpRegion
|
---|
| 56 | End Type
|
---|
| 57 | Type GpPathIterator
|
---|
| 58 | End Type
|
---|
[13] | 59 |
|
---|
[241] | 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
|
---|
[13] | 74 |
|
---|
[241] | 75 | 'Type GpCachedBitmap;
|
---|
| 76 | Type GpCachedBitmap
|
---|
| 77 | End Type
|
---|
[13] | 78 |
|
---|
[241] | 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
|
---|
[13] | 93 |
|
---|
| 94 |
|
---|
[241] | 95 | TypeDef GpPenAlignment = System.Drawing.Drawing2D.PenAlignment
|
---|
[13] | 96 |
|
---|
[241] | 97 | TypeDef GpLineJoin = System.Drawing.Drawing2D.LineJoin
|
---|
| 98 | TypeDef GpPenType = System.Drawing.PenType
|
---|
| 99 |
|
---|
| 100 | 'TypeDef GpMatrix = Matrix
|
---|
| 101 | Type GpMatrix
|
---|
| 102 | End Type
|
---|
| 103 |
|
---|
[13] | 104 | TypeDef GpBrushType = BrushType
|
---|
[241] | 105 | TypeDef GpMatrixOrder = System.Drawing.Drawing2D.MatrixOrder
|
---|
| 106 | TypeDef GpFlushIntention = System.Drawing.Drawing2D.FlushIntention
|
---|
[13] | 107 | TypeDef GpPathData = PathData
|
---|
| 108 |
|
---|
[241] | 109 | End Namespace
|
---|
| 110 |
|
---|
[13] | 111 | #endif '__GDIPLUSGPSTUBS_AB__
|
---|