Ignore:
Timestamp:
May 9, 2007, 10:26:36 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

GDI+に対して名前空間で囲ったものの、現在コンパイルできないため分岐させておく

Location:
branch/egtra-gdiplus
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branch/egtra-gdiplus/GdiPlusGpStubs.ab

    r119 r241  
    99#require <Classes/System/Drawing/Drawing2D/Matrix.ab>
    1010
    11 Class GpGraphics
    12 End Class
     11Namespace Gdiplus
    1312
    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
     13Type GpGraphics
     14End Type
    3115
    32 Class GpPen
    33 End Class
    34 Class GpCustomLineCap
    35 End Class
    36 Class GpAdjustableArrowCap
    37     Inherits GpCustomLineCap
    38 End Class
     16Type GpBrush
     17End Type
     18Type GpTexture
     19'   Inherits GpBrush
     20End Type
     21Type GpSolidFill
     22'   Inherits GpBrush
     23End Type
     24Type GpLineGradient
     25'   Inherits GpBrush
     26End Type
     27Type GpPathGradient
     28'   Inherits GpBrush
     29End Type
     30Type GpHatch
     31'   Inherits GpBrush
     32End Type
    3933
    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
     34Type GpPen
     35End Type
     36Type GpCustomLineCap
     37End Type
     38Type GpAdjustableArrowCap
     39'   Inherits GpCustomLineCap
     40End Type
    5041
    51 Class GpPath
    52 End Class
    53 Class GpRegion
    54 End Class
    55 Class GpPathIterator
    56 End Class
     42Type GpImage
     43End Type
     44Type GpBitmap
     45'   Inherits GpImage
     46End Type
     47Type GpMetafile
     48'   Inherits GpImage
     49End Type
     50Type GpImageAttributes
     51End Type
    5752
    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
     53Type GpPath
     54End Type
     55Type GpRegion
     56End Type
     57Type GpPathIterator
     58End Type
    7259
    73 'Class GpCachedBitmap;
    74 Class GpCachedBitmap
    75 End Class
     60Type GpFontFamily
     61End Type
     62Type GpFont
     63End Type
     64Type GpStringFormat
     65End Type
     66Type GpFontCollection
     67End Type
     68Type GpInstalledFontCollection
     69'   Inherits GpFontCollection
     70End Type
     71Type GpPrivateFontCollection
     72'   Inherits GpFontCollection
     73End Type
    7674
    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;
     76Type GpCachedBitmap
     77End Type
     78
     79TypeDef GpStatus = Gdiplus.Status
     80TypeDef GpFillMode = System.Drawing.Drawing2D.FillMode
     81TypeDef GpWrapMode = System.Drawing.Drawing2D.WrapMode
     82TypeDef GpUnit = System.Drawing.GraphicsUnit
     83TypeDef GpCoordinateSpace = System.Drawing.Drawing2D.CoordinateSpace
     84TypeDef GpPointF = System.Drawing.PointF
     85TypeDef GpPoint = System.Drawing.Point
     86TypeDef GpRectF = System.Drawing.RectangleF
     87TypeDef GpRect = System.Drawing.Rectangle
     88TypeDef GpSizeF = System.Drawing.SizeF
     89TypeDef GpHatchStyle = System.Drawing.Drawing2D.HatchStyle
     90TypeDef GpDashStyle = System.Drawing.Drawing2D.DashStyle
     91TypeDef GpLineCap = System.Drawing.Drawing2D.LineCap
     92TypeDef GpDashCap = System.Drawing.Drawing2D.DashCap
    9193
    9294
    93 TypeDef GpPenAlignment = PenAlignment
     95TypeDef GpPenAlignment = System.Drawing.Drawing2D.PenAlignment
    9496
    95 TypeDef GpLineJoin = LineJoin
    96 TypeDef GpPenType = PenType
     97TypeDef GpLineJoin = System.Drawing.Drawing2D.LineJoin
     98TypeDef GpPenType = System.Drawing.PenType
    9799
    98 TypeDef GpMatrix = Matrix
     100'TypeDef GpMatrix = Matrix
     101Type GpMatrix
     102End Type
     103
    99104TypeDef GpBrushType = BrushType
    100 TypeDef GpMatrixOrder = MatrixOrder
    101 TypeDef GpFlushIntention = FlushIntention
     105TypeDef GpMatrixOrder = System.Drawing.Drawing2D.MatrixOrder
     106TypeDef GpFlushIntention = System.Drawing.Drawing2D.FlushIntention
    102107TypeDef GpPathData = PathData
    103108
     109End Namespace
     110
    104111#endif '__GDIPLUSGPSTUBS_AB__
    105 
Note: See TracChangeset for help on using the changeset viewer.