2008-03-13 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / FontUnitConverter.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 // 
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 // 
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
21 //
22 // Authors:
23 //      Peter Bartok    (pbartok@novell.com)
24 //
25 //
26
27 using System;
28 using System.Collections;
29 using System.ComponentModel;
30 using System.Globalization;
31
32 namespace System.Web.UI.WebControls 
33 {
34         public class FontUnitConverter : TypeConverter 
35         {
36                 #region Public Constructors
37                 public FontUnitConverter() 
38                 {
39                 }
40                 #endregion      // Public Constructors
41
42                 #region Public Instance Methods
43                 public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) 
44                 {
45                         if (sourceType == typeof(string)) 
46                         {
47                                 return true;
48                         }
49                         return base.CanConvertFrom (context, sourceType);
50                 }
51
52                 public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType) 
53                 {
54                         if (destinationType == typeof (string)) {
55                                 return true;
56                         }
57
58                         return base.CanConvertTo (context, destinationType);
59                 }
60
61                 public override object ConvertFrom(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) 
62                 {
63                         string  s;
64
65                         if ((value == null) || !(value is string)) 
66                         {
67                                 return base.ConvertFrom (context, culture, value);
68                         }
69
70
71                         s = (string)value;
72
73                         if (culture == null) 
74                         {
75                                 culture = CultureInfo.CurrentCulture;
76                         }
77
78                         if (s == "") 
79                         {
80                                 return FontUnit.Empty;
81                         }
82                         return FontUnit.Parse(s, culture);
83                 }
84
85                 public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType) 
86                 {
87                         FontUnit        fu;
88
89                         if ((value == null) || !(value is FontUnit) || (destinationType != typeof(string))) 
90                         {
91                                 return base.ConvertTo (context, culture, value, destinationType);
92                         }
93
94                         if (culture == null) 
95                         {
96                                 culture = CultureInfo.CurrentCulture;
97                         }
98
99                         fu = (FontUnit)value;
100
101                         return fu.ToString(culture);
102                 }
103
104                 public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) 
105                 {
106                         PropertyDescriptorCollection props = TypeDescriptor.GetProperties (typeof (FontUnit));
107                         ArrayList vals = new ArrayList ();
108                 
109                         for (int i = 0; i < props.Count; i++)
110                                 vals.Add (props [i].GetValue (null));
111                         return new StandardValuesCollection (vals);
112                 }
113
114                 public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) 
115                 {
116                         return false;
117                 }
118
119                 public override bool GetStandardValuesSupported(ITypeDescriptorContext context) 
120                 {
121                         return true;
122                 }
123                 #endregion      // Public Instance Methods
124         }
125 }