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

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

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

Legend:

Unmodified
Added
Removed
  • branch/egtra-gdiplus/Classes/System/Drawing/Drawing2D/Matrix.ab

    r77 r241  
    44#define __SYSTEM_DRAWING_DRAWING2D_MATRIX_AB__
    55
     6#include <GdiPlusGpStubs.ab>
     7
    68Class Matrix
     9Public
     10    Function NativeMatrix() As *Gdiplus.GpMatrix
     11        Return 0 '仮
     12    End Function
    713End Class
    814
  • branch/egtra-gdiplus/Classes/System/Drawing/Drawing2D/misc.ab

    r77 r241  
    33#ifndef __SYSTEM_DRAWING_DRAWING2D_MISC_AB__
    44#define __SYSTEM_DRAWING_DRAWING2D_MISC_AB__
     5
     6#require <gdiplusenums.ab>
     7
     8Namespace System
     9Namespace Drawing
     10Namespace Drawing2D
    511
    612Enum CombineMode
     
    8591End Enum
    8692
     93Enum WarpMode
     94    Perspective     ' 0
     95    Bilinear        ' 1
     96End Enum
     97
     98Enum DashCap
     99    Flat             = 0
     100    Round            = 2
     101    Triangle         = 3
     102End Enum
     103
     104Enum LineCap
     105    Flat             = 0
     106    Square           = 1
     107    Round            = 2
     108    Triangle         = 3
     109
     110    NoAnchor         = &h10
     111    SquareAnchor     = &h11
     112    RoundAnchor      = &h12
     113    DiamondAnchor    = &h13
     114    ArrowAnchor      = &h14
     115
     116    Custom           = &hff
     117
     118    AnchorMask       = &hf0
     119End Enum
     120
     121Enum PenAlignment
     122    Center       = 0
     123    Inset        = 1
     124End Enum
     125
     126Enum LineJoin
     127    Miter        = 0
     128    Bevel        = 1
     129    Round        = 2
     130    MiterClipped = 3
     131End Enum
     132
     133Enum PenType
     134    SolidColor       = Gdiplus.BrushTypeSolidColor
     135    HatchFill        = Gdiplus.BrushTypeHatchFill
     136    TextureFill      = Gdiplus.BrushTypeTextureFill
     137    PathGradient     = Gdiplus.BrushTypePathGradient
     138    LinearGradient   = Gdiplus.BrushTypeLinearGradient
     139    Unknown          = -1
     140End Enum
     141
     142End Namespace 'Drawing2D
     143End Namespace 'Drawing
     144End Namespace 'System
     145
    87146#endif '__SYSTEM_DRAWING_DRAWING2D_MISC_AB__
Note: See TracChangeset for help on using the changeset viewer.