//// //// System.Windows.Forms.CursorConverter.cs //// //// Author: //// stubbed out by Jaak Simm (jaaksimm@firm.ee) //// //// (C) Ximian, Inc., 2002 //// // //using System.ComponentModel; //using System.Globalization; // //namespace System.Windows.Forms //{ // /// // /// Provides a type converter to convert Cursor objects to and from various other representations. // /// // /// ToDo note: // /// - nothing is implemented // /// // // [MonoTODO] // public class CursorConverter : TypeConverter // { // // #region Constructors // [MonoTODO] // public CursorConverter() { // throw new NotImplementedException (); // } // #endregion // // // // #region Methods // [MonoTODO] // public override bool CanConvertFrom(ITypeDescriptorContext context,Type sourceType) { // throw new NotImplementedException (); // } // // [MonoTODO] // public override bool CanConvertTo(ITypeDescriptorContext context,Type destinationType) { // throw new NotImplementedException (); // } // // [MonoTODO] // public override object ConvertFrom(ITypeDescriptorContext context,CultureInfo culture,object value) { // throw new NotImplementedException (); // } // // [MonoTODO] // public override object ConvertTo(ITypeDescriptorContext context,CultureInfo culture,object value,Type destinationType) { // throw new NotImplementedException (); // } // // [MonoTODO] // public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { // throw new NotImplementedException (); // } // // [MonoTODO] // public override bool GetStandardValuesSupported(ITypeDescriptorContext context) { // throw new NotImplementedException (); // } // #endregion // } //}