2008-02-16 Ivan N. Zlatev <contact@i-nz.net>
[mono.git] / mcs / class / System / System.ComponentModel / CultureInfoConverter.cs
1 //
2 // System.ComponentModel.CultureInfoConverter
3 //
4 // Authors:
5 //  Martin Willemoes Hansen (mwh@sysrq.dk)
6 //  Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //
8 // (C) 2003 Martin Willemoes Hansen
9 // (C) 2003 Andreas Nahr
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System.Globalization;
34 using System.Reflection;
35 using System.ComponentModel.Design.Serialization;
36
37 namespace System.ComponentModel
38 {
39         public class CultureInfoConverter : TypeConverter
40         {
41
42                 public CultureInfoConverter()
43                 {
44                 }
45
46                 public override bool CanConvertFrom (ITypeDescriptorContext context,
47                         Type sourceType)
48                 {
49                         if (sourceType == typeof (string)) 
50                                 return true;
51                         return base.CanConvertFrom (context, sourceType);
52                 }
53
54                 public override bool CanConvertTo (ITypeDescriptorContext context,
55                         Type destinationType)
56                 {
57                         if (destinationType == typeof (string))
58                                 return true;
59                         if (destinationType == typeof (InstanceDescriptor))
60                                 return true;
61                         return base.CanConvertTo (context, destinationType);
62                 }
63
64                 public override object ConvertFrom (ITypeDescriptorContext context,
65                         CultureInfo culture, object value)
66                 {
67                         if (value.GetType() == typeof (string)) {
68                                 string CultureString = (String) value;
69                                 if (String.Compare (CultureString, "(default)", true) == 0) {
70                                         return CultureInfo.InvariantCulture;
71                                 }
72                                 try {
73                                         // try to create a new CultureInfo if form is RFC 1766
74                                         return new CultureInfo (CultureString);
75                                 } catch {
76                                         // try to create a new CultureInfo if form is verbose name
77                                         foreach (CultureInfo CI in CultureInfo.GetCultures (CultureTypes.AllCultures))
78                                         // LAMESPEC MS seems to use EnglishName (culture invariant) - check this
79                                                 if (CI.EnglishName.IndexOf (CultureString) >= 0)
80                                                         return CI;
81                                 }
82                                 throw new ArgumentException ("Culture incorrect or not available in this environment.", "value");
83                         }
84                         return base.ConvertFrom (context, culture, value);
85                 }
86
87                 public override object ConvertTo (ITypeDescriptorContext context,
88                                                   CultureInfo culture, object value, Type destinationType)
89                 {
90                         if (destinationType == typeof (string) && value != null && (value is CultureInfo))
91                                 // LAMESPEC MS seems to use EnglishName (culture invariant) - check this
92                                 return ((CultureInfo) value).EnglishName;
93                         if (destinationType == typeof (InstanceDescriptor) && value is CultureInfo) {
94                                 CultureInfo cval = (CultureInfo) value;
95                                 ConstructorInfo ctor = typeof(CultureInfo).GetConstructor (new Type[] {typeof(int)});
96                                 return new InstanceDescriptor (ctor, new object[] {cval.LCID});
97                         }
98                         return base.ConvertTo (context, culture, value, destinationType);
99                 }
100
101                 public override StandardValuesCollection GetStandardValues (ITypeDescriptorContext context)
102                 {
103                         return new StandardValuesCollection (CultureInfo.GetCultures (CultureTypes.AllCultures));
104                 }
105
106                 public override bool GetStandardValuesExclusive (ITypeDescriptorContext context)
107                 {
108                         return false;
109                 }
110
111                 public override bool GetStandardValuesSupported (ITypeDescriptorContext context)
112                 {
113                         return true;
114                 }
115
116         }
117 }