dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/System.Drawing/Drawing2D Blend.cs,NO


From: Richard Baumann <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System.Drawing/Drawing2D Blend.cs,NONE,1.1 PathGradientBrush.cs,NONE,1.1 LinearGradientBrush.cs,1.1,1.2
Date: Sun, 06 Jul 2003 01:57:33 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/System.Drawing/Drawing2D
In directory subversions:/tmp/cvs-serv31915/System.Drawing/Drawing2D

Modified Files:
        LinearGradientBrush.cs 
Added Files:
        Blend.cs PathGradientBrush.cs 
Log Message:
Add stubs, and fix typos, to get svg# loading.


--- NEW FILE ---
/*
 * Blend.cs - Implementation of the "System.Drawing.Drawing2D.Blend" class.
 *
 * Copyright (C) 2003  Southern Storm Software, Pty Ltd.
 * Copyright (C) 2003  Free Software Foundation, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

namespace System.Drawing.Drawing2D
{

[TODO]
public sealed class Blend
{
        // Constructors.
        [TODO]
        public Blend()
        {
                throw new NotImplementedException(".ctor");
        }

        [TODO]
        public Blend(int count)
        {
                throw new NotImplementedException(".ctor");
        }

        [TODO]
        public float[] Factors
        {
                get
                {
                        throw new NotImplementedException("Factors");
                }
                set
                {
                        throw new NotImplementedException("Factors");
                }
        }

        [TODO]
        public float[] Positions
        {
                get
                {
                        throw new NotImplementedException("Positions");
                }
                set
                {
                        throw new NotImplementedException("Positions");
                }
        }

}; // class Blend

}; // namespace System.Drawing.Drawing2D

--- NEW FILE ---
/*
 * PathGradientBrush.cs - Implementation of 
"System.Drawing.Drawing2D.PathGradientBrush" 
 *
 * Copyright (C) 2003  Southern Storm Software, Pty Ltd.
 * 
 * Contributed by Gopal.V 
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

namespace System.Drawing.Drawing2D
{
        public class PathGradientBrush
        {
                [TODO]
                public PathGradientBrush(GraphicsPath path)
                {
                         throw new NotImplementedException(".ctor");
                }

                [TODO]
                public PathGradientBrush(Point[] points)
                {
                         throw new NotImplementedException(".ctor");
                }

                [TODO]
                public PathGradientBrush(PointF[] points)
                {
                         throw new NotImplementedException(".ctor");
                }

                [TODO]
                public PathGradientBrush(Point[] points, WrapMode wrapMode)
                {
                         throw new NotImplementedException(".ctor");
                }

                [TODO]
                public PathGradientBrush(PointF[] points, WrapMode wrapMode)
                {
                         throw new NotImplementedException(".ctor");
                }

                [TODO]
                public Blend Blend
                {
                        get
                        {
                                throw new NotImplementedException("Blend");
                        }
                        set
                        {
                                throw new NotImplementedException("Blend");
                        }
                }

                [TODO]
                public Color CenterColor
                {
                        get
                        {
                                throw new 
NotImplementedException("CenterColor");
                        }
                        set
                        {
                                throw new 
NotImplementedException("CenterColor");
                        }
                }

                [TODO]
                public PointF CenterPoint
                {
                        get
                        {
                                throw new 
NotImplementedException("CenterPoint");
                        }
                        set
                        {
                                throw new 
NotImplementedException("CenterPoint");
                        }
                }

                [TODO]
                public PointF FocusScales
                {
                        get
                        {
                                throw new 
NotImplementedException("FocusScales");
                        }
                        set
                        {
                                throw new 
NotImplementedException("FocusScales");
                        }
                }

                [TODO]
                public ColorBlend InterpolationColors
                {
                        get
                        {
                                throw new 
NotImplementedException("InterpolationColors");
                        }
                        set
                        {
                                throw new 
NotImplementedException("InterpolationColors");
                        }
                }

                [TODO]
                public RectangleF Rectangle
                {
                        get
                        {
                                throw new NotImplementedException("Rectangle");
                        }
                }

                [TODO]
                public Color[] SurroundColors
                {
                        get
                        {
                                throw new 
NotImplementedException("SurroundColors");
                        }
                        set
                        {
                                throw new 
NotImplementedException("SurroundColors");
                        }
                }

                [TODO]
                public Matrix Transform
                {
                        get
                        {
                                throw new NotImplementedException("Transform");
                        }
                        set
                        {
                                throw new NotImplementedException("Transform");
                        }
                }

                [TODO]
                public WrapMode WrapMode
                {
                        get
                        {
                                throw new NotImplementedException("WrapMode");
                        }
                        set
                        {
                                throw new NotImplementedException("WrapMode");
                        }
                }

                [TODO]
                public override object Clone()
                {
                        throw new NotImplementedException("Clone");
                }

                [TODO]
                public void MultiplyTransform(Matrix matrix)
                {
                        throw new NotImplementedException("MultiplyTransform");
                }

                [TODO]
                public void MultiplyTransform(Matrix matrix, MatrixOrder order)
                {
                        throw new NotImplementedException("MultiplyTransform");
                }

                [TODO]
                public void ResetTransform()
                {
                        throw new NotImplementedException("ResetTransform");
                }

                [TODO]
                public void RotateTransform(float angle)
                {
                        throw new NotImplementedException("RotateTransform");
                }

                [TODO]
                public void RotateTransform(float angle, MatrixOrder order)
                {
                        throw new NotImplementedException("RotateTransform");
                }

                [TODO]
                public void ScaleTransform(float sx, float sy)
                {
                        throw new NotImplementedException("ScaleTransform");
                }

                [TODO]
                public void ScaleTransform(float sx, float sy, MatrixOrder 
order)
                {
                        throw new NotImplementedException("ScaleTransform");
                }

                [TODO]
                public void SetBlendTriangularShape(float focus)
                {
                        throw new 
NotImplementedException("SetBlendTriangularShape");
                }

                [TODO]
                public void SetBlendTriangularShape(float focus, float scale)
                {
                        throw new 
NotImplementedException("SetBlendTriangularShape");
                }

                [TODO]
                public void SetSigmaBellShape(float focus)
                {
                        throw new NotImplementedException("SetSigmaBellShape");
                }

                [TODO]
                public void SetSigmaBellShape(float focus, float scale)
                {
                        throw new NotImplementedException("SetSigmaBellShape");
                }

                [TODO]
                public void TranslateTransform(float dx, float dy)
                {
                        throw new NotImplementedException("TranslateTransform");
                }

                [TODO]
                public void TranslateTransform(float dx, float dy, MatrixOrder 
order)
                {
                        throw new NotImplementedException("TranslateTransform");
                }

        }
}//namespace

Index: LinearGradientBrush.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System.Drawing/Drawing2D/LinearGradientBrush.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** LinearGradientBrush.cs      7 Jun 2003 22:40:58 -0000       1.1
--- LinearGradientBrush.cs      6 Jul 2003 05:57:31 -0000       1.2
***************
*** 129,132 ****
--- 129,220 ----
        // TODO: properties and transform methods
  
+       // Properties
+       [TODO]
+       public Blend Blend
+                       {
+                               get
+                               {
+                                       throw new 
NotImplementedException("Blend");
+                               }
+                               set
+                               {
+                                       throw new 
NotImplementedException("Blend");
+                               }
+                       }
+ 
+       [TODO]
+       public bool GammaCorrection
+                       {
+                               get
+                               {
+                                       throw new 
NotImplementedException("GammaCorrection");
+                               }
+                               set
+                               {
+                                       throw new 
NotImplementedException("GammaCorrection");
+                               }
+                       }
+ 
+       [TODO]
+       public ColorBlend InterpolationColors
+                       {
+                               get
+                               {
+                                       throw new 
NotImplementedException("InterpolationColors");
+                               }
+                               set
+                               {
+                                       throw new 
NotImplementedException("InterpolationColors");
+                               }
+                       }
+ 
+       [TODO]
+       public Color[] LinearColors
+                       {
+                               get
+                               {
+                                       throw new 
NotImplementedException("LinearColors");
+                               }
+                               set
+                               {
+                                       throw new 
NotImplementedException("LinearColors");
+                               }
+                       }
+ 
+       [TODO]
+       public RectangleF Rectangle
+                       {
+                               get
+                               {
+                                       throw new 
NotImplementedException("Rectangle");
+                               }
+                       }
+ 
+       [TODO]
+       public Matrix Transform
+                       {
+                               get
+                               {
+                                       throw new 
NotImplementedException("Transform");
+                               }
+                               set
+                               {
+                                       throw new 
NotImplementedException("Transform");
+                               }
+                       }
+ 
+       [TODO]
+       public WrapMode WrapMode
+                       {
+                               get
+                               {
+                                       throw new 
NotImplementedException("WrapMode");
+                               }
+                               set
+                               {
+                                       throw new 
NotImplementedException("WrapMode");
+                               }
+                       }
+ 
        // Clone this brush.
        public override Object Clone()
***************
*** 165,168 ****
--- 253,334 ----
                                }
                                return brush;
+                       }
+ 
+       [TODO]
+       public void MultiplyTransform(Matrix matrix)
+                       {
+                               throw new 
NotImplementedException("MultiplyTransform");
+                       }
+ 
+       [TODO]
+       public void MultiplyTransform(Matrix matrix, MatrixOrder order)
+                       {
+                               throw new 
NotImplementedException("MultiplyTransform");
+                       }
+ 
+       [TODO]
+       public void ResetTransform()
+                       {
+                               throw new 
NotImplementedException("ResetTransform");
+                       }
+ 
+       [TODO]
+       public void RotateTransform(float angle)
+                       {
+                               throw new 
NotImplementedException("RotateTransform");
+                       }
+ 
+       [TODO]
+       public void RotateTransform(float angle, MatrixOrder order)
+                       {
+                               throw new 
NotImplementedException("RotateTransform");
+                       }
+ 
+       [TODO]
+       public void ScaleTransform(float sx, float sy)
+                       {
+                               throw new 
NotImplementedException("ScaleTransform");
+                       }
+ 
+       [TODO]
+       public void ScaleTransform(float sx, float sy, MatrixOrder order)
+                       {
+                               throw new 
NotImplementedException("ScaleTransform");
+                       }
+ 
+       [TODO]
+       public void SetBlendTriangularShape(float focus)
+                       {
+                               throw new 
NotImplementedException("SetBlendTriangularShape");
+                       }
+ 
+       [TODO]
+       public void SetBlendTriangularShape(float focus, float scale)
+                       {
+                               throw new 
NotImplementedException("SetBlendTriangularShape");
+                       }
+ 
+       [TODO]
+       public void SetSigmaBellShape(float focus)
+                       {
+                               throw new 
NotImplementedException("SetSigmaBellShape");
+                       }
+ 
+       [TODO]
+       public void SetSigmaBellShape(float focus, float scale)
+                       {
+                               throw new 
NotImplementedException("SetSigmaBellShape");
+                       }
+ 
+       [TODO]
+       public void TranslateTransform(float dx, float dy)
+                       {
+                               throw new 
NotImplementedException("TranslateTransform");
+                       }
+ 
+       [TODO]
+       public void TranslateTransform(float dx, float dy, MatrixOrder order)
+                       {
+                               throw new 
NotImplementedException("TranslateTransform");
                        }
  





reply via email to

[Prev in Thread] Current Thread [Next in Thread]