// // System.Windows.Forms.ImageIndexConverter // // 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 ImageIndexConverter : Int32Converter { // // --- Constructor // // [MonoTODO] // public ImageIndexConverter() // { // throw new NotImplementedException (); // } // // --- Public Methods // // [MonoTODO] // public bool CanConvertFrom(Type t) // { // throw new NotImplementedException (); // } // [MonoTODO] // public virtual bool CanConvertFrom(ITypeDescriptorContext context, Type t) // { // throw new NotImplementedException (); // } // [MonoTODO] // public bool CanConvertTo(Type t) // { // throw new NotImplementedException (); // } // [MonoTODO] // public virtual bool CanConvertTo(ITypeDescriptorContext context, Type t) // { // throw new NotImplementedException (); // } // [MonoTODO] // public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object o ) // { // throw new NotImplementedException (); // } // [MonoTODO] // public object ConvertFrom(object o) // { // throw new NotImplementedException (); // } // [MonoTODO] // public object ConvertFromInvariantString(string s) // { // throw new NotImplementedException (); // } // [MonoTODO] // public object ConvertFromInvariantString(ITypeDescriptorContext context , string s) // { // throw new NotImplementedException (); // } // [MonoTODO] // public object ConvertFromString(string s) // { // throw new NotImplementedException (); // } // [MonoTODO] // public object ConvertFromString( ITypeDescriptorContext context, string s) // { // throw new NotImplementedException (); // } // [MonoTODO] // public object ConvertFromString( ITypeDescriptorContext context, CultureInfo culture, string s) // { // throw new NotImplementedException (); // } // [MonoTODO] // public object ConvertTo(object o, Type t) // { // throw new NotImplementedException (); // } // [MonoTODO] // public 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 ConvertToInvariantString( ITypeDescriptorContext context, CultureInfo culture, object o) // { // throw new NotImplementedException (); // } // [MonoTODO] // public string ConvertToString( ITypeDescriptorContext context, object o) // { // throw new NotImplementedException (); // } // [MonoTODO] // public string ConvertToString( ITypeDescriptorContext context, CultureInfo culture, object o) // { // throw new NotImplementedException (); // } // [MonoTODO] // public object CreateInstance(IDictionary dict) // { // throw new NotImplementedException (); // } // [MonoTODO] // public object CreateInstance( ITypeDescriptorContext context, 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 bool GetCreateInstanceSupported(ITypeDescriptorContext context) // { // throw new NotImplementedException (); // } // [MonoTODO] // public PropertyDescriptorCollection GetProperties(object o) // { // throw new NotImplementedException (); // } // [MonoTODO] // public PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object o) // { // throw new NotImplementedException (); // } // [MonoTODO] // public bool GetPropertiesSupported() // { // throw new NotImplementedException (); // } // [MonoTODO] // public virtual bool GetPropertiesSupported(ITypeDescriptorContext context) // { // throw new NotImplementedException (); // } // [MonoTODO] // public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) // { // throw new NotImplementedException (); // } // [MonoTODO] // public ICollection GetStandardValues() // { // throw new NotImplementedException (); // } // [MonoTODO] // public bool GetStandardValuesExclusive() // { // throw new NotImplementedException (); // } // [MonoTODO] // public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) // { // throw new NotImplementedException (); // } // [MonoTODO] // public bool GetStandardValuesSupported() // { // throw new NotImplementedException (); // } // [MonoTODO] // public override bool GetStandardValuesSupported(ITypeDescriptorContext context) // { // 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 (); // } // // --- Public Properties // // [MonoTODO] // protected virtual bool IncludeNoneAsStandardValue { // get { // throw new NotImplementedException (); // } //} //} }