From 58f9cb65cf976c2a3d21dfd3150465b7f28f4d2c Mon Sep 17 00:00:00 2001 From: Dennis Hayes Date: Sun, 7 Jul 2002 01:07:53 +0000 Subject: [PATCH] 2002-7-6 DennisHayes * Form.ControlCollection.cs * ImageList.ImageCollection.cs * LinkArea.LinkAreaConverter.cs * deleted files. contents now in main class files svn path=/trunk/mcs/; revision=5635 --- .../Form.ControlCollection.cs | 57 ------ .../ImageList.ImageCollection.cs | 120 ----------- .../LinkArea.LinkAreaConverter.cs | 192 ------------------ 3 files changed, 369 deletions(-) delete mode 100644 mcs/class/System.Windows.Forms/System.Windows.Forms/Form.ControlCollection.cs delete mode 100644 mcs/class/System.Windows.Forms/System.Windows.Forms/ImageList.ImageCollection.cs delete mode 100644 mcs/class/System.Windows.Forms/System.Windows.Forms/LinkArea.LinkAreaConverter.cs diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/Form.ControlCollection.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/Form.ControlCollection.cs deleted file mode 100644 index d19da506642..00000000000 --- a/mcs/class/System.Windows.Forms/System.Windows.Forms/Form.ControlCollection.cs +++ /dev/null @@ -1,57 +0,0 @@ -// -// System.Windows.Forms.Form.ControlCollection.cs -// -// Author: -// stubbed out by Daniel Carrera (dcarrera@math.toronto.edu) -// -// (C) 2002 Ximian, Inc -// - -namespace System.Windows.Forms { - - // - // This is only a template. Nothing is implemented yet. - // - // - - //public class Form.ControlCollection : Control.ControlCollection { - - // - // --- Constructor - // - //[MonoTODO] - //public Form.ControlCollection(Form owner) - //{ - // throw new NotImplementedException (); - //} - - // - // --- Public Methods - // - //[MonoTODO] - //public override void Add(Control value) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public virtual bool Equals(object o); - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public static bool Equals(object o1, object o2); - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public int GetChildIndex(Control c) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public override void Remove(Control value) - //{ - // throw new NotImplementedException (); - //} - // } -} diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/ImageList.ImageCollection.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/ImageList.ImageCollection.cs deleted file mode 100644 index 438e9e80fbf..00000000000 --- a/mcs/class/System.Windows.Forms/System.Windows.Forms/ImageList.ImageCollection.cs +++ /dev/null @@ -1,120 +0,0 @@ -// -// System.Windows.Forms.ImageList.ImageCollection.cs -// -// Author: -// stubbed out by Daniel Carrera (dcarrera@math.toronto.edu) -// -// (C) 2002 Ximian, Inc -// - -namespace System.Windows.Forms { - - // - // This is only a template. Nothing is implemented yet. - // - // - - //public sealed class ImageList.ImageCollection : IList, ICollection, IEnumerable { - - - // - // --- Public Properties - // - //[MonoTODO] - //public int Count { - // get { - // throw new NotImplementedException (); - // } - //} - //[MonoTODO] - //public bool Empty { - // get { - // throw new NotImplementedException (); - // } - //} - //[MonoTODO] - //public bool IsReadOnly { - // get { - // throw new NotImplementedException (); - // } - //} - //[MonoTODO] - //public Image this[int index] { - // get { - // throw new NotImplementedException (); - // } - // set { - // throw new NotImplementedException (); - // } - //} - - // - // --- Public Methods - // - //[MonoTODO] - //public void Add(Icon icon) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public void Add(Image img) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public int Add(Image img, Color col) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public int AddStrip(Image value) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public void Clear() - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public bool Contains(Image image) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public virtual bool Equals(object o); - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public static bool Equals(object o1, object o2); - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public IEnumerator GetEnumerator() - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public int IndexOf(Image image) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public void Remove(Image image) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public void RemoveAt(int index) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public virtual string ToString() - //{ - // throw new NotImplementedException (); - //} - // } -} diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/LinkArea.LinkAreaConverter.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/LinkArea.LinkAreaConverter.cs deleted file mode 100644 index 7e2c8917cf3..00000000000 --- a/mcs/class/System.Windows.Forms/System.Windows.Forms/LinkArea.LinkAreaConverter.cs +++ /dev/null @@ -1,192 +0,0 @@ -// -// System.Windows.Forms.LinkArea.LinkAreaConverter.cs -// -// Author: -// stubbed out by Daniel Carrera (dcarrera@math.toronto.edu) -// -// (C) 2002 Ximian, Inc -// - -namespace System.Windows.Forms { - - // - // This is only a template. Nothing is implemented yet. - // - // - - //public class LinkArea.LinkAreaConverter : TypeConverter { - - // - // --- Constructor - // - //[MonoTODO] - //public LinkArea.LinkAreaConverter() - //{ - // throw new NotImplementedException (); - //} - - // - // --- Public Methods - // - //[MonoTODO] - //public bool CanConvertFrom(Type t) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public override bool CanConvertFrom(ITypeDescriptorContext context, Type t) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public bool CanConvertTo(Type t) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public override bool CanConvertTo(ITypeDescriptorContext context, Type t) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public object ConvertFrom(object o) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture,object o) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public object ConvertFromInvariantString(string str) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public object ConvertFromInvariantString(ITypeDescriptorContext context, string str) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public object ConvertFromString(string str) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public object ConvertFromString(ITypeDescriptorContext context, string str) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public object ConvertTo(object o, Type t) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object o, Type t) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public string ConvertToInvariantString(object o) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public string ConvertToInvariantString(ITypeDescriptorContext context, object o) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public string ConvertToString(object o) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public string ConvertToString(ITypeDescriptorContext context, object o) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public override object CreateInstance(ITypeDescriptorContext context, IDictionary dict) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public object CreateInstance(IDictionary dict) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public virtual bool Equals(object o); - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public static bool Equals(object o1, object o2); - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public bool GetCreateInstanceSupported() - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public override bool GetCreateInstanceSupported(ITypeDescriptorContext context) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public ICollection GetStandardValues() - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public virtual StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public bool GetStandardValuesExclusive() - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public virtual bool GetStandardValuesExclusive(ITypeDescriptorContext context) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public bool GetStandardValuesSupported() - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public virtual bool GetStandardValuesSupported(ITypeDescriptorContext context) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public Type GetType() - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public bool IsValid(object o) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public virtual bool IsValid(ITypeDescriptorContext context, object o) - //{ - // throw new NotImplementedException (); - //} - //[MonoTODO] - //public virtual string ToString() - //{ - // throw new NotImplementedException (); - //} - // } -} -- 2.25.1