New test.
[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 object ConvertFrom(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) 
53                 {
54                         string  s;
55
56                         if ((value == null) || !(value is string)) 
57                         {
58                                 return base.ConvertFrom (context, culture, value);
59                         }
60
61
62                         s = (string)value;
63
64                         if (culture == null) 
65                         {
66                                 culture = CultureInfo.CurrentCulture;
67                         }
68
69                         if (s == "") 
70                         {
71                                 return FontUnit.Empty;
72                         }
73                         return FontUnit.Parse(s, culture);
74                 }
75
76                 public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType) 
77                 {
78                         FontUnit        fu;
79
80                         if ((value == null) || !(value is FontUnit) || (destinationType != typeof(string))) 
81                         {
82                                 return base.ConvertTo (context, culture, value, destinationType);
83                         }
84
85                         if (culture == null) 
86                         {
87                                 culture = CultureInfo.CurrentCulture;
88                         }
89
90                         fu = (FontUnit)value;
91
92                         return fu.ToString(culture);
93                 }
94
95                 public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) 
96                 {
97                         PropertyDescriptorCollection props = TypeDescriptor.GetProperties (typeof (FontUnit));
98                         ArrayList vals = new ArrayList ();
99                 
100                         for (int i = 0; i < props.Count; i++)
101                                 vals.Add (props [i].GetValue (null));
102                         return new StandardValuesCollection (vals);
103                 }
104
105                 public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) 
106                 {
107                         return false;
108                 }
109
110                 public override bool GetStandardValuesSupported(ITypeDescriptorContext context) 
111                 {
112                         return true;
113                 }
114                 #endregion      // Public Instance Methods
115         }
116 }