2002-9-2 DennisHayes <dennish@raytek.com>
authorDennis Hayes <dennis@mono-cvs.ximian.com>
Thu, 12 Sep 2002 18:35:49 +0000 (18:35 -0000)
committerDennis Hayes <dennis@mono-cvs.ximian.com>
Thu, 12 Sep 2002 18:35:49 +0000 (18:35 -0000)
* 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

19 files changed:
mcs/class/System.Drawing/System.Drawing/ChangeLog
mcs/class/System.Drawing/System.Drawing/FontConverter.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/FontFamily.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/Icon.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/IconConverter.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/ImageAnimator.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/ImageConverter.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/ImageFormatConverter.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/PointConverter.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/RectangleConverter.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/Sample.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/SizeConverter.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/SolidBrush.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/StringFormat.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/SystemBrushes.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/SystemIcons.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/SystemPens.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/TextureBrush.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/ToolboxBitmapAttribute.cs [new file with mode: 0644]

index 103096250a69a81c9bbd00c4c15ad17a69051ab1..d4518cc780309cfa90f9cafe0d7ccdb355d57dfe 100644 (file)
@@ -1,3 +1,25 @@
+2002-9-2  DennisHayes <dennish@raytek.com>\r
+\r
+       * FontConverter.cs\r
+       * FontFamily.cs\r
+       * Icon.cs\r
+       * IconConverter.cs\r
+       * ImageAnimator.cs\r
+       * ImageConverter.cs\r
+       * ImageFormatConverter.cs\r
+       * PointConverter.cs\r
+       * RectangleConverter.cs\r
+       * Sample.cs\r
+       * SizeConverter.cs\r
+       * SolidBrush.cs\r
+       * StringFormat.cs\r
+       * SystemBrushes.cs\r
+       * SystemIcons.cs\r
+       * SystemPens.cs\r
+       * TextureBrush.cs\r
+       * ToolboxBitmapAttribute.cs\r
+       * Added null classes for most/all classes, Many stubs, and some implmentation\r
+\r
 2002-9-2  DennisHayes <dennish@raytek.com>\r
 \r
        * Bitmap.cs\r
diff --git a/mcs/class/System.Drawing/System.Drawing/FontConverter.cs b/mcs/class/System.Drawing/System.Drawing/FontConverter.cs
new file mode 100644 (file)
index 0000000..8962ed1
--- /dev/null
@@ -0,0 +1,22 @@
+//\r
+// System.Drawing.FontConverter.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for FontConverter.\r
+       /// </summary>\r
+       public class FontConverter\r
+       {\r
+               public FontConverter()\r
+               {\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/FontFamily.cs b/mcs/class/System.Drawing/System.Drawing/FontFamily.cs
new file mode 100644 (file)
index 0000000..6d87cf4
--- /dev/null
@@ -0,0 +1,19 @@
+//\r
+// System.Drawing.FontFamily.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing {\r
+       /// <summary>\r
+       /// Summary description for FontFamily.\r
+       /// </summary>\r
+       public class FontFamily {\r
+               public FontFamily() {\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/Icon.cs b/mcs/class/System.Drawing/System.Drawing/Icon.cs
new file mode 100644 (file)
index 0000000..d585582
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.Icon.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for Icon.\r
+       /// </summary>\r
+       public class Icon\r
+       {\r
+               public Icon()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/IconConverter.cs b/mcs/class/System.Drawing/System.Drawing/IconConverter.cs
new file mode 100644 (file)
index 0000000..68d79cf
--- /dev/null
@@ -0,0 +1,19 @@
+                                                                                                             //\r
+// System.Drawing.IconConverter.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing {\r
+       /// <summary>\r
+       /// Summary description for IconConverter.\r
+       /// </summary>\r
+       public class IconConverter {\r
+               public IconConverter() {\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/ImageAnimator.cs b/mcs/class/System.Drawing/System.Drawing/ImageAnimator.cs
new file mode 100644 (file)
index 0000000..cd27fb0
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.ImageAnimator.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for ImageAnimator.\r
+       /// </summary>\r
+       public class ImageAnimator\r
+       {\r
+               public ImageAnimator()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/ImageConverter.cs b/mcs/class/System.Drawing/System.Drawing/ImageConverter.cs
new file mode 100644 (file)
index 0000000..4a2e6cf
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.ImageConverter.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for ImageConverter.\r
+       /// </summary>\r
+       public class ImageConverter\r
+       {\r
+               public ImageConverter()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/ImageFormatConverter.cs b/mcs/class/System.Drawing/System.Drawing/ImageFormatConverter.cs
new file mode 100644 (file)
index 0000000..ea71b04
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.FontConverter.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for ImageFormatConverter.\r
+       /// </summary>\r
+       public class ImageFormatConverter\r
+       {\r
+               public ImageFormatConverter()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/PointConverter.cs b/mcs/class/System.Drawing/System.Drawing/PointConverter.cs
new file mode 100644 (file)
index 0000000..f9258ae
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.PointConverter.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for PointConverter.\r
+       /// </summary>\r
+       public class PointConverter\r
+       {\r
+               public PointConverter()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/RectangleConverter.cs b/mcs/class/System.Drawing/System.Drawing/RectangleConverter.cs
new file mode 100644 (file)
index 0000000..a6f60dc
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.RectangleConverter.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for RectangleConverter.\r
+       /// </summary>\r
+       public class RectangleConverter\r
+       {\r
+               public RectangleConverter()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/Sample.cs b/mcs/class/System.Drawing/System.Drawing/Sample.cs
new file mode 100644 (file)
index 0000000..8502d8a
--- /dev/null
@@ -0,0 +1,20 @@
+//\r
+// System.Drawing..cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing {\r
+       /// <summary>\r
+       /// Summary description for FontConverter.\r
+       /// </summary>\r
+       public class Sample {\r
+               public Sample() {\r
+               }\r
+       }\r
+}\r
+\r
diff --git a/mcs/class/System.Drawing/System.Drawing/SizeConverter.cs b/mcs/class/System.Drawing/System.Drawing/SizeConverter.cs
new file mode 100644 (file)
index 0000000..b1fea07
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.SizeConverter.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for SizeConverter.\r
+       /// </summary>\r
+       public class SizeConverter\r
+       {\r
+               public SizeConverter()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/SolidBrush.cs b/mcs/class/System.Drawing/System.Drawing/SolidBrush.cs
new file mode 100644 (file)
index 0000000..cfd7a0d
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.SolidBrush.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for SolidBrush.\r
+       /// </summary>\r
+       public class SolidBrush\r
+       {\r
+               public SolidBrush()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/StringFormat.cs b/mcs/class/System.Drawing/System.Drawing/StringFormat.cs
new file mode 100644 (file)
index 0000000..54ae658
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.StringFormat.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for StringFormat.\r
+       /// </summary>\r
+       public class StringFormat\r
+       {\r
+               public StringFormat()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/SystemBrushes.cs b/mcs/class/System.Drawing/System.Drawing/SystemBrushes.cs
new file mode 100644 (file)
index 0000000..41f4014
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.SystemBrushes.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for SystemBrushes.\r
+       /// </summary>\r
+       public class SystemBrushes\r
+       {\r
+               public SystemBrushes()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/SystemIcons.cs b/mcs/class/System.Drawing/System.Drawing/SystemIcons.cs
new file mode 100644 (file)
index 0000000..fe66c14
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.SystemIcons.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for SystemIcons.\r
+       /// </summary>\r
+       public class SystemIcons\r
+       {\r
+               public SystemIcons()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/SystemPens.cs b/mcs/class/System.Drawing/System.Drawing/SystemPens.cs
new file mode 100644 (file)
index 0000000..68ac8cf
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.SystemPens.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for SystemPens.\r
+       /// </summary>\r
+       public class SystemPens\r
+       {\r
+               public SystemPens()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/TextureBrush.cs b/mcs/class/System.Drawing/System.Drawing/TextureBrush.cs
new file mode 100644 (file)
index 0000000..c12cb29
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.TextureBrush.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for TextureBrush.\r
+       /// </summary>\r
+       public class TextureBrush\r
+       {\r
+               public TextureBrush()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r
diff --git a/mcs/class/System.Drawing/System.Drawing/ToolboxBitmapAttribute.cs b/mcs/class/System.Drawing/System.Drawing/ToolboxBitmapAttribute.cs
new file mode 100644 (file)
index 0000000..8894fe5
--- /dev/null
@@ -0,0 +1,25 @@
+//\r
+// System.Drawing.ToolboxBitmapAttribute.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@Raytek.com)\r
+//\r
+// (C) 2002 Ximian, Inc\r
+//\r
+using System;\r
+\r
+namespace System.Drawing\r
+{\r
+       /// <summary>\r
+       /// Summary description for ToolboxBitmapAttribute.\r
+       /// </summary>\r
+       public class ToolboxBitmapAttribute\r
+       {\r
+               public ToolboxBitmapAttribute()\r
+               {\r
+                       //\r
+                       // TODO: Add constructor logic here\r
+                       //\r
+               }\r
+       }\r
+}\r