**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / ImageIndexConverter.cs
blob8577ec0bf384ab18228e19c0011fdd3bd94bb467
1 //
2 // System.Windows.Forms.ImageIndexConverter.cs
3 //
4 // Author:
5 // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 // Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) 2002 Ximian, Inc
9 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System.ComponentModel;
32 using System.Globalization;
33 using System.Collections;
35 namespace System.Windows.Forms {
37 // <summary>
38 // </summary>
40 public class ImageIndexConverter : Int32Converter {
43 // --- Constructor
45 [MonoTODO]
46 public ImageIndexConverter()
52 // --- Public Methods
55 [MonoTODO]
56 public override object ConvertFrom(ITypeDescriptorContext context,
57 CultureInfo culture, object value )
59 //FIXME:
60 return base.ConvertFrom(context, culture, value);
64 [MonoTODO]
65 public override object ConvertTo( ITypeDescriptorContext context, CultureInfo culture,
66 object value, Type destinationType)
68 //FIXME:
69 return base.ConvertTo(context, culture, value, destinationType);
72 [MonoTODO]
73 public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
75 //FIXME:
76 return base.GetStandardValues(context);
79 [MonoTODO]
80 public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
82 //FIXME:
83 return base.GetStandardValuesExclusive(context);
86 [MonoTODO]
87 public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
89 //FIXME:
90 return base.GetStandardValuesSupported(context);
94 // --- Public Properties
97 [MonoTODO]
98 protected virtual bool IncludeNoneAsStandardValue {
99 get {
100 throw new NotImplementedException ();