2002-7-1 DennisHayes <dennish@raytek.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / CursorConverter.cs
1 //\r
2 // System.Windows.Forms.CursorConverter.cs\r
3 //\r
4 // Author:\r
5 //   stubbed out by Jaak Simm (jaaksimm@firm.ee)\r
6 //\r
7 // (C) Ximian, Inc., 2002\r
8 //\r
9 \r
10 using System.ComponentModel;\r
11 using System.Globalization;\r
12 \r
13 namespace System.Windows.Forms\r
14 {\r
15         /// <summary>\r
16         /// Provides a type converter to convert Cursor objects to and from various other representations.\r
17         ///\r
18         /// ToDo note:\r
19         ///  - nothing is implemented\r
20         /// </summary>\r
21 \r
22         [MonoTODO]\r
23         public class CursorConverter : TypeConverter\r
24         {\r
25                 \r
26 //              #region Constructors\r
27 //              [MonoTODO]\r
28 //              public CursorConverter() {\r
29 //                      throw new NotImplementedException ();\r
30 //              }\r
31 //              #endregion\r
32 //              \r
33 //              \r
34 //              \r
35 //              #region Methods\r
36 //              [MonoTODO]\r
37 //              public override bool CanConvertFrom(ITypeDescriptorContext context,Type sourceType) {\r
38 //                      throw new NotImplementedException ();\r
39 //              }\r
40 //              \r
41 //              [MonoTODO]\r
42 //              public override bool CanConvertTo(ITypeDescriptorContext context,Type destinationType) {\r
43 //                      throw new NotImplementedException ();\r
44 //              }\r
45 //              \r
46 //              [MonoTODO]\r
47 //              public override object ConvertFrom(ITypeDescriptorContext context,CultureInfo culture,object value) {\r
48 //                      throw new NotImplementedException ();\r
49 //              }\r
50 //              \r
51 //              [MonoTODO]\r
52 //              public override object ConvertTo(ITypeDescriptorContext context,CultureInfo culture,object value,Type destinationType) {\r
53 //                      throw new NotImplementedException ();\r
54 //              }\r
55 //              \r
56 //              [MonoTODO]\r
57 //              public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) {\r
58 //                      throw new NotImplementedException ();\r
59 //              }\r
60 //              \r
61 //              [MonoTODO]\r
62 //              public override bool GetStandardValuesSupported(ITypeDescriptorContext context) {\r
63 //                      throw new NotImplementedException ();\r
64 //              }\r
65 //              #endregion\r
66         }\r
67 }\r