bf0084e561c89e7815dcffda218529ad1e40ec85
[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.Security.Permissions;
34 using System.Text;
35
36 namespace System.Web.UI {
37
38         // CAS - no InheritanceDemand here as the class is sealed
39         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
40         public sealed class CssStyleCollection
41         {
42                 StateBag bag;
43                 StateBag style;
44                 string last_string;
45
46                 internal CssStyleCollection (StateBag bag)
47                 {
48                         this.bag = bag;
49                         if (bag != null) {
50                                 last_string = (string) bag ["style"];
51                                 style = new StateBag ();
52                                 if (last_string != null)
53                                         FillStyle (last_string);
54                         }
55                 }
56
57                 void FillStyle (string s)
58                 {
59                         int mark = s.IndexOf (':');
60                         if (mark == -1)
61                                 return;
62                         string key = s.Substring (0, mark). Trim ();
63                         if (mark + 1 > s.Length)
64                                 return;
65
66                         string fullValue = s.Substring (mark + 1);
67                         if (fullValue == "")
68                                 return;
69
70                         mark = fullValue.IndexOf (';');
71                         string value;
72                         if (mark == -1)
73                                 value = fullValue.Trim ();
74                         else
75                                 value = fullValue.Substring (0, mark).Trim ();
76
77                         style.Add (key, value);
78                         if (mark + 1 > fullValue.Length)
79                                 return;
80                         FillStyle (fullValue.Substring (mark + 1));
81                 }
82
83                 string BagToString ()
84                 {
85                         if (last_string != null)
86                                 return last_string;
87
88                         StringBuilder sb = new StringBuilder ();
89                         foreach (string key in Keys)
90                                 sb.AppendFormat ("{0}: {1};", key, style [key]);
91
92                         last_string = sb.ToString ();
93                         return last_string;
94                 }
95
96                 public int Count
97                 {
98                         get {
99                                 if (bag == null)
100                                         throw new NullReferenceException ();
101                                 return style.Count;
102                         }
103                 }
104
105                 public string this [string key] {
106                         get {
107                                 return style [key] as string;
108                         }
109
110                         set {
111                                 Add (key, value);
112                         }
113                 }
114
115                 public ICollection Keys {
116                         get { return style.Keys; }
117                 }
118
119                 public void Add (string key, string value)
120                 {
121                         if (style == null)
122                                 style = new StateBag ();
123                         style [key] = value;
124                         last_string = null;
125                         bag ["style"] = BagToString ();
126                 }
127
128 #if NET_2_0
129                 public
130 #else
131                 internal
132 #endif
133                 void Add (HtmlTextWriterStyle key, string value)
134                 {
135                         Add (HtmlTextWriter.StaticGetStyleName (key), value);
136                 }
137
138                 public void Clear ()
139                 {
140                         if (style != null)
141                                 style.Clear ();
142                         last_string = null;
143                         bag.Remove ("style");
144                 }
145
146                 public void Remove (string key)
147                 {
148                         if (style != null)
149                                 style.Remove (key);
150                         last_string = null;
151                         bag ["style"] = BagToString ();
152                 }
153 #if NET_2_0
154                 public string this [HtmlTextWriterStyle key] {
155                         get {
156                                 return style [HtmlTextWriter.StaticGetStyleName (key)] as string;
157                         }
158                         set {
159                                 Add (HtmlTextWriter.StaticGetStyleName (key), value);
160                         }
161                 }
162
163                 public void Remove (HtmlTextWriterStyle key)
164                 {
165                         Remove (HtmlTextWriter.StaticGetStyleName (key));
166                 }
167
168                 public
169 #else
170                 internal
171 #endif
172                 string Value {
173                         get { return BagToString (); }
174                         set {
175                                 if (style != null)
176                                         style = new StateBag ();
177                                 style.Clear ();
178                                 last_string = value;
179                                 bag ["style"] = value;
180                                 if (value != null)
181                                         FillStyle (value);
182                         }
183                 }
184         }
185 }
186