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 ColorBlend.cs,NONE,1.


From: Richard Baumann <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System.Drawing ColorBlend.cs,NONE,1.1 Graphics.cs,1.5,1.6
Date: Sun, 06 Jul 2003 01:57:33 -0400

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

Modified Files:
        Graphics.cs 
Added Files:
        ColorBlend.cs 
Log Message:
Add stubs, and fix typos, to get svg# loading.


--- NEW FILE ---
/*
 * ColorBlend.cs - Implementation of "System.Drawing.Drawing2D.ColorBlend" 
 *
 * 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 sealed class ColorBlend
        {
                [TODO]
                public ColorBlend(int count)
                {
                         throw new NotImplementedException(".ctor");
                }

                [TODO]
                public ColorBlend()
                {
                         throw new NotImplementedException(".ctor");
                }

                [TODO]
                public System.Drawing.Color[] Colors 
                {
                        get
                        {
                                throw new NotImplementedException("Colors");
                        }
                        set
                        {
                                throw new NotImplementedException("Colors");
                        }
                }

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

        }
}//namespace
Index: Graphics.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Drawing/Graphics.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** Graphics.cs 13 Jun 2003 21:55:55 -0000      1.5
--- Graphics.cs 6 Jul 2003 05:57:31 -0000       1.6
***************
*** 478,486 ****
  
        // Clear the entire drawing surface.
!       public void Clear()
                        {
                                lock(this)
                                {
!                                       ToolkitGraphics.Clear();
                                }
                        }
--- 478,486 ----
  
        // Clear the entire drawing surface.
!       public void Clear(Color color)
                        {
                                lock(this)
                                {
!                                       ToolkitGraphics.Clear(color);
                                }
                        }
***************
*** 898,902 ****
                        }
        [TODO]
!       public void DrawImage(Image image, RectangleF destRect,
                                                  float srcX, float srcY,
                                                  float srcWidth, float 
srcHeight,
--- 898,902 ----
                        }
        [TODO]
!       public void DrawImage(Image image, Rectangle destRect,
                                                  float srcX, float srcY,
                                                  float srcWidth, float 
srcHeight,
***************
*** 913,917 ****
                        }
        [TODO]
!       public void DrawImage(Image image, RectangleF destRect,
                                                  float srcX, float srcY,
                                                  float srcWidth, float 
srcHeight,
--- 913,917 ----
                        }
        [TODO]
!       public void DrawImage(Image image, Rectangle destRect,
                                                  float srcX, float srcY,
                                                  float srcWidth, float 
srcHeight,
***************
*** 929,933 ****
                        }
        [TODO]
!       public void DrawImage(Image image, RectangleF destRect,
                                                  float srcX, float srcY,
                                                  float srcWidth, float 
srcHeight,
--- 929,933 ----
                        }
        [TODO]
!       public void DrawImage(Image image, Rectangle destRect,
                                                  float srcX, float srcY,
                                                  float srcWidth, float 
srcHeight,
***************
*** 946,950 ****
                        }
        [TODO]
!       public void DrawImage(Image image, RectangleF destRect,
                                                  float srcX, float srcY,
                                                  float srcWidth, float 
srcHeight,
--- 946,950 ----
                        }
        [TODO]
!       public void DrawImage(Image image, Rectangle destRect,
                                                  float srcX, float srcY,
                                                  float srcWidth, float 
srcHeight,





reply via email to

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