826635e9b8b099a0ec2c4d1a38c82d218f958632
[mono.git] / mcs / class / System.Web / System.Web.UI / CssStyleCollection.cs
1 //
2 // System.Web.UI.CssStyleCollection.cs
3 //
4 // Authors:
5 //      Duncan Mak  (duncan@ximian.com)
6 //      Gonzalo Paniagua (gonzalo@ximian.com)
7 //
8 // (C) 2002 Ximian, Inc. (http://www.ximian.com)
9 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System.IO;
32 using System.Collections;
33 using System.Text;
34
35 namespace System.Web.UI {
36
37         public sealed class CssStyleCollection
38         {
39                 StateBag bag;
40                 StateBag style;
41                 string last_string;
42
43                 internal CssStyleCollection (StateBag bag)
44                 {
45                         this.bag = bag;
46                         if (bag != null) {
47                                 last_string = (string) bag ["style"];
48                                 style = new StateBag ();
49                                 if (last_string != null)
50                                         FillStyle (last_string);
51                         }
52                 }
53
54                 void FillStyle (string s)
55                 {
56                         int mark = s.IndexOf (':');
57                         if (mark == -1)
58                                 return;
59                         string key = s.Substring (0, mark). Trim ();
60                         if (mark + 1 > s.Length)
61                                 return;
62
63                         string fullValue = s.Substring (mark + 1);
64                         if (fullValue == "")
65                                 return;
66
67                         mark = fullValue.IndexOf (';');
68                         string value;
69                         if (mark == -1)
70                                 value = fullValue.Trim ();
71                         else
72                                 value = fullValue.Substring (0, mark).Trim ();
73
74                         style.Add (key, value);
75                         if (mark + 1 > fullValue.Length)
76                                 return;
77                         FillStyle (fullValue.Substring (mark + 1));
78                 }
79
80                 string BagToString ()
81                 {
82                         if (last_string != null)
83                                 return last_string;
84
85                         StringBuilder sb = new StringBuilder ();
86                         foreach (string key in Keys)
87                                 sb.AppendFormat ("{0}: {1};", key, style [key]);
88
89                         last_string = sb.ToString ();
90                         return last_string;
91                 }
92
93                 public int Count
94                 {
95                         get {
96                                 if (bag == null)
97                                         throw new NullReferenceException ();
98                                 return style.Count;
99                         }
100                 }
101
102                 public string this [string key] {
103                         get {
104                                 return style [key] as string;
105                         }
106
107                         set {
108                                 Add (key, value);
109                         }
110                 }
111
112                 public ICollection Keys {
113                         get { return style.Keys; }
114                 }
115
116                 public void Add (string key, string value)
117                 {
118                         if (style == null)
119                                 style = new StateBag ();
120                         style [key] = value;
121                         last_string = null;
122                         bag ["style"] = BagToString ();
123                 }
124
125 #if NET_2_0
126                 public
127 #else
128                 internal
129 #endif
130                 void Add (HtmlTextWriterStyle key, string value)
131                 {
132                         Add (HtmlTextWriter.StaticGetStyleName (key), value);
133                 }
134
135                 public void Clear ()
136                 {
137                         if (style != null)
138                                 style.Clear ();
139                         last_string = null;
140                         bag.Remove ("style");
141                 }
142
143                 public void Remove (string key)
144                 {
145                         if (style != null)
146                                 style.Remove (key);
147                         last_string = null;
148                         bag ["style"] = BagToString ();
149                 }
150 #if NET_2_0
151                 public string this [HtmlTextWriterStyle key] {
152                         get {
153                                 return style [HtmlTextWriter.StaticGetStyleName (key)] as string;
154                         }
155                         set {
156                                 Add (HtmlTextWriter.StaticGetStyleName (key), value);
157                         }
158                 }
159
160                 public void Remove (HtmlTextWriterStyle key)
161                 {
162                         Remove (HtmlTextWriter.StaticGetStyleName (key));
163                 }
164
165                 public
166 #else
167                 internal
168 #endif
169                 string Value {
170                         get { return BagToString (); }
171                         set {
172                                 if (style != null)
173                                         style = new StateBag ();
174                                 style.Clear ();
175                                 last_string = value;
176                                 bag ["style"] = value;
177                                 if (value != null)
178                                         FillStyle (value);
179                         }
180                 }
181         }
182 }
183