Fix the build
authorMiguel de Icaza <miguel@gnome.org>
Thu, 26 Sep 2002 04:19:13 +0000 (04:19 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Thu, 26 Sep 2002 04:19:13 +0000 (04:19 -0000)
svn path=/trunk/mcs/; revision=7832

mcs/class/System.Drawing/System.Drawing.Drawing2D/Enums.cs [deleted file]
mcs/class/System.Drawing/System.Drawing.Drawing2D/MatrixOrder.cs
mcs/class/System.Drawing/System.Drawing.Drawing2D/PenAligment.cs [deleted file]
mcs/class/System.Drawing/list.unix

diff --git a/mcs/class/System.Drawing/System.Drawing.Drawing2D/Enums.cs b/mcs/class/System.Drawing/System.Drawing.Drawing2D/Enums.cs
deleted file mode 100644 (file)
index 3ba9f61..0000000
+++ /dev/null
@@ -1,258 +0,0 @@
-//
-// System.Drawing.Drawing2D.Matrix.cs
-//
-// Author:
-//   Stefan Maierhofer <sm@cg.tuwien.ac.at>
-//
-// (C) Ximian, Inc.  http://www.ximian.com
-//
-
-namespace System.Drawing.Drawing2D
-{
-   
-    public enum CombineMode
-    {
-        Complement,
-        Exclude,
-        Intersect,
-        Replace,
-        Union,
-        Xor
-    }
-    
-    public enum CompositingMode
-    {
-        SourceCopy,
-        SourceOver
-    }
-    
-    public enum CompositingQuality
-    {
-        AssumeLinear,
-        Default,
-        GammaCorrected,
-        HighQuality,
-        HighSpeed,
-        Invalid
-    }
-    
-    public enum CoordinateSpace
-    {
-        Device,
-        Page,
-        World
-    }
-    
-    public enum DashCap
-    {
-        Flat,
-        Round,
-        Triangle
-    }
-    
-    public enum DashStyle
-    {
-        Custom,
-        Dash,
-        DashDot,
-        DashDotDot,
-        Dot,
-        Solid
-    }
-    
-    public enum FillMode
-    {
-        Alternate,
-        Winding
-    }
-    
-    public enum FlushIntention
-    {
-        Flush,
-        Sync
-    }
-    
-    public enum HatchStyle
-    {
-        BackwardDiagonal,
-        Cross,
-        DarkDownwardDiagonal,
-        DarkHorizontal,
-        DarkUpwardDiagonal,
-        DarkVertical,
-        DashedDownwardDiagonal,
-        DashedHorizontal,
-        DashedUpwardDiagonal,
-        DashedVertical,
-        DiagonalBrick,
-        DiagonalCross,
-        Divot,
-        DottedDiamond,
-        DottedGrid,
-        ForwardDiagonal,
-        Horizontal,
-        HorizontalBrick,
-        LargeCheckerBoard,
-        LargeConfetti,
-        LargeGrid,
-        LightDownwardDiagonal,
-        LightHorizontal,
-        LightUpwardDiagonal,
-        LightVertical,
-        Max,
-        Min,
-        NarrowHorizontal,
-        NarrowVertical,
-        OutlinedDiamond,
-        Percent05,
-        Percent10,
-        Percent20,
-        Percent25,
-        Percent30,
-        Percent40,
-        Percent50,
-        Percent60,
-        Percent70,
-        Percent75,
-        Percent80,
-        Percent90,
-        Plaid,
-        Shingle,
-        SmallCheckerBoard,
-        SmallConfetti,
-        SmallGrid,
-        SolidDiamond,
-        Sphere,
-        Trellis,
-        Vertical,
-        Wave,
-        Weave,
-        WideDownwardDiagonal,
-        WideUpwardDiagonal,
-        ZigZag
-    }
-    
-    public enum InterpolationMode
-    {
-        Bicubic,
-        Bilinear,
-        Default,
-        High,
-        HighQualityBicubic,
-        HighQualityBilinear,
-        Invalid,
-        Low,
-        NearestNeighbour
-    }
-    
-    public enum LinearGradientMode
-    {
-        BackwardDiagonal,
-        ForwardDiagonal,
-        Horizontal,
-        Vertical
-    }
-    
-    public enum LineCap
-    {
-        AnchorMask,
-        ArrowAnchor,
-        Custom,
-        DiamondAnchor,
-        Flat,
-        NoAnchor,
-        Round,
-        RoundAnchor,
-        Square,
-        SquareAnchor,
-        Triangle
-    }
-    
-    public enum LineJoin
-    {
-        Bevel,
-        Miter,
-        MiterClipped,
-        Round
-    }
-    
-    public enum MatrixOrder
-    {
-        Append,
-        Prepend
-    }
-    
-    public enum PathPointType
-    {
-        Bezier,
-        Bezier3,
-        CloseSubpath,
-        DashMode,
-        Line,
-        PathMarker,
-        PathTypeMask,
-        Start
-    }
-    
-    public enum PenAlignment
-    {
-        Center,
-        Inset,
-        Left,
-        Outset,
-        Right
-    }
-    
-    public enum PenType
-    {
-        HatchFill,
-        LinearGradient,
-        PathGradient,
-        SolidColor,
-        TextureFill
-    }
-    
-    public enum PixelOffsetMode
-    {
-        Default,
-        Half,
-        HighQuality,
-        HighSpeed,
-        Invalid,
-        None
-    }
-    
-    public enum QualityMode
-    {
-        Default,
-        Hight,
-        Invalid,
-        Low
-    }
-    
-    public enum SmoothingMode
-    {
-        AntiAlias,
-        Default,
-        HighQuality,
-        HighSpeed,
-        Invalid,
-        None
-    }
-    
-    public enum WarpMode
-    {
-        Bilinear,
-        Perspective
-    }
-    
-    public enum WrapMode
-    {
-        Clamp,
-        Tile,
-        TileFlipX,
-        TileFlipXY,
-        TileFlipY
-    }
-    
-}
index ec5b0277b65c5ecdb37317c4f2d2693f2278a833..92ed7407d9cd3ef5b76a333161f021573914fb47 100644 (file)
@@ -9,7 +9,7 @@
 //\r
 using System;\r
 \r
-namespace System.Drawing.Drawing2d {\r
+namespace System.Drawing.Drawing2D {\r
        /// <summary>\r
        /// Summary description for MatrixOrder.\r
        /// </summary>\r
diff --git a/mcs/class/System.Drawing/System.Drawing.Drawing2D/PenAligment.cs b/mcs/class/System.Drawing/System.Drawing.Drawing2D/PenAligment.cs
deleted file mode 100644 (file)
index 5ca840f..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-//\r
-// System.Drawing.PenAligment.cs\r
-//\r
-// Author:\r
-//   Stefan Maierhofer <sm@cg.tuwien.ac.at>\r
-//   Dennis Hayes (dennish@Raytek.com)\r
-//\r
-// (C) 2002 Ximian, Inc\r
-//\r
-using System;\r
-\r
-namespace System.Drawing.Drawing2d {\r
-       /// <summary>\r
-       /// Summary description for PenAligment.\r
-       /// </summary>\r
-       public enum PenAlignment {\r
-               Center,\r
-               Inset,\r
-               Left,\r
-               Outset,\r
-               Right\r
-       }\r
-}\r
index 992bbd7098a87d8c5d86b921a0cbd310a2ffffcc..bb6d0a45fba8ee5f677ec3dd54e5bdf356337085 100755 (executable)
@@ -18,7 +18,6 @@ System.Drawing.Drawing2D/CoordinateSpace.cs
 System.Drawing.Drawing2D/CustomLineCap.cs
 System.Drawing.Drawing2D/DashCap.cs
 System.Drawing.Drawing2D/DashStyle.cs
-System.Drawing.Drawing2D/Enums.cs
 System.Drawing.Drawing2D/FillMode.cs
 System.Drawing.Drawing2D/FlushIntention.cs
 System.Drawing.Drawing2D/GraphicsContainer.cs
@@ -37,7 +36,6 @@ System.Drawing.Drawing2D/MatrixOrder.cs
 System.Drawing.Drawing2D/PathData.cs
 System.Drawing.Drawing2D/PathGradientBrush.cs
 System.Drawing.Drawing2D/PathPointType.cs
-System.Drawing.Drawing2D/PenAligment.cs
 System.Drawing.Drawing2D/PenAlignment.cs
 System.Drawing.Drawing2D/PenType.cs
 System.Drawing.Drawing2D/PixelOffsetMode.cs