Răsfoiți Sursa

2002-9-2 DennisHayes <[email protected]>

* FontConverter.cs
* FontFamily.cs
* Icon.cs
* IconConverter.cs
* ImageAnimator.cs
* ImageConverter.cs
* ImageFormatConverter.cs
* PointConverter.cs
* RectangleConverter.cs
* Sample.cs
* SizeConverter.cs
* SolidBrush.cs
* StringFormat.cs
* SystemBrushes.cs
* SystemIcons.cs
* SystemPens.cs
* TextureBrush.cs
* ToolboxBitmapAttribute.cs
* Added null classes for most/all classes, Many stubs, and some implmentation

svn path=/trunk/mcs/; revision=7408

Dennis Hayes 23 ani în urmă
părinte
comite
057909bc36

+ 22 - 0
mcs/class/System.Drawing/System.Drawing/ChangeLog

@@ -1,3 +1,25 @@
+2002-9-2  DennisHayes <[email protected]>
+
+	* FontConverter.cs
+	* FontFamily.cs
+	* Icon.cs
+	* IconConverter.cs
+	* ImageAnimator.cs
+	* ImageConverter.cs
+	* ImageFormatConverter.cs
+	* PointConverter.cs
+	* RectangleConverter.cs
+	* Sample.cs
+	* SizeConverter.cs
+	* SolidBrush.cs
+	* StringFormat.cs
+	* SystemBrushes.cs
+	* SystemIcons.cs
+	* SystemPens.cs
+	* TextureBrush.cs
+	* ToolboxBitmapAttribute.cs
+	* Added null classes for most/all classes, Many stubs, and some implmentation
+
 2002-9-2  DennisHayes <[email protected]>
 
 	* Bitmap.cs

+ 22 - 0
mcs/class/System.Drawing/System.Drawing/FontConverter.cs

@@ -0,0 +1,22 @@
+//
+// System.Drawing.FontConverter.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for FontConverter.
+	/// </summary>
+	public class FontConverter
+	{
+		public FontConverter()
+		{
+		}
+	}
+}

+ 19 - 0
mcs/class/System.Drawing/System.Drawing/FontFamily.cs

@@ -0,0 +1,19 @@
+//
+// System.Drawing.FontFamily.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing {
+	/// <summary>
+	/// Summary description for FontFamily.
+	/// </summary>
+	public class FontFamily {
+		public FontFamily() {
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/Icon.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.Icon.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for Icon.
+	/// </summary>
+	public class Icon
+	{
+		public Icon()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 19 - 0
mcs/class/System.Drawing/System.Drawing/IconConverter.cs

@@ -0,0 +1,19 @@
+                                                                                                             //
+// System.Drawing.IconConverter.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing {
+	/// <summary>
+	/// Summary description for IconConverter.
+	/// </summary>
+	public class IconConverter {
+		public IconConverter() {
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/ImageAnimator.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.ImageAnimator.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for ImageAnimator.
+	/// </summary>
+	public class ImageAnimator
+	{
+		public ImageAnimator()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/ImageConverter.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.ImageConverter.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for ImageConverter.
+	/// </summary>
+	public class ImageConverter
+	{
+		public ImageConverter()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/ImageFormatConverter.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.FontConverter.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for ImageFormatConverter.
+	/// </summary>
+	public class ImageFormatConverter
+	{
+		public ImageFormatConverter()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/PointConverter.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.PointConverter.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for PointConverter.
+	/// </summary>
+	public class PointConverter
+	{
+		public PointConverter()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/RectangleConverter.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.RectangleConverter.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for RectangleConverter.
+	/// </summary>
+	public class RectangleConverter
+	{
+		public RectangleConverter()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 20 - 0
mcs/class/System.Drawing/System.Drawing/Sample.cs

@@ -0,0 +1,20 @@
+//
+// System.Drawing..cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing {
+	/// <summary>
+	/// Summary description for FontConverter.
+	/// </summary>
+	public class Sample {
+		public Sample() {
+		}
+	}
+}
+

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/SizeConverter.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.SizeConverter.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for SizeConverter.
+	/// </summary>
+	public class SizeConverter
+	{
+		public SizeConverter()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/SolidBrush.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.SolidBrush.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for SolidBrush.
+	/// </summary>
+	public class SolidBrush
+	{
+		public SolidBrush()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/StringFormat.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.StringFormat.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for StringFormat.
+	/// </summary>
+	public class StringFormat
+	{
+		public StringFormat()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/SystemBrushes.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.SystemBrushes.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for SystemBrushes.
+	/// </summary>
+	public class SystemBrushes
+	{
+		public SystemBrushes()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/SystemIcons.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.SystemIcons.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for SystemIcons.
+	/// </summary>
+	public class SystemIcons
+	{
+		public SystemIcons()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/SystemPens.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.SystemPens.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for SystemPens.
+	/// </summary>
+	public class SystemPens
+	{
+		public SystemPens()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/TextureBrush.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.TextureBrush.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for TextureBrush.
+	/// </summary>
+	public class TextureBrush
+	{
+		public TextureBrush()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}

+ 25 - 0
mcs/class/System.Drawing/System.Drawing/ToolboxBitmapAttribute.cs

@@ -0,0 +1,25 @@
+//
+// System.Drawing.ToolboxBitmapAttribute.cs
+//
+// Author:
+//   Dennis Hayes ([email protected])
+//
+// (C) 2002 Ximian, Inc
+//
+using System;
+
+namespace System.Drawing
+{
+	/// <summary>
+	/// Summary description for ToolboxBitmapAttribute.
+	/// </summary>
+	public class ToolboxBitmapAttribute
+	{
+		public ToolboxBitmapAttribute()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}