New test.
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / TableHeaderCell.cs
1 //
2 // System.Web.UI.WebControls.TableHeaderCell.cs
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System.ComponentModel;
30 using System.Security.Permissions;
31 using System.Text;
32
33 namespace System.Web.UI.WebControls {
34
35         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
36         [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
37         public class TableHeaderCell : TableCell {
38
39                 public TableHeaderCell ()
40                         : base (HtmlTextWriterTag.Th)
41                 {
42                 }
43
44 #if NET_2_0
45                 [DefaultValue ("")]
46                 public virtual string AbbreviatedText {
47                         get {
48                                 object o = ViewState ["AbbreviatedText"];
49                                 return (o == null) ? String.Empty : (string) o;
50                         }
51                         set {
52                                 if (value == null)
53                                         ViewState.Remove ("AbbreviatedText");
54                                 else
55                                         ViewState ["AbbreviatedText"] = value;
56                         }
57                 }
58
59                 [DefaultValue (null)]
60                 [TypeConverter (typeof (StringArrayConverter))]
61                 public virtual string[] CategoryText {
62                         get {
63                                 object o = ViewState ["CategoryText"];
64                                 return (o == null) ? new string [0] : (string[]) o;
65                         }
66                         set {
67                                 ViewState ["CategoryText"] = value;
68                         }
69                 }
70
71                 [DefaultValue (TableHeaderScope.NotSet)]
72                 public virtual TableHeaderScope Scope {
73                         get {
74                                 object o = ViewState ["Scope"];
75                                 return (o == null) ? TableHeaderScope.NotSet : (TableHeaderScope) o;
76                         }
77                         set {
78                                 ViewState ["Scope"] = (int) value;
79                         }
80                 }
81
82                 protected override void AddAttributesToRender (HtmlTextWriter writer)
83                 {
84                         base.AddAttributesToRender (writer);
85                         if (writer != null) {
86                                 object o = ViewState ["AbbreviatedText"];
87                                 if (o != null)
88                                         writer.AddAttribute (HtmlTextWriterAttribute.Abbr, (string) o);
89
90                                 switch (Scope) {
91                                 case TableHeaderScope.Column:
92                                         writer.AddAttribute (HtmlTextWriterAttribute.Scope, "column");
93                                         break;
94                                 case TableHeaderScope.Row:
95                                         writer.AddAttribute (HtmlTextWriterAttribute.Scope, "row");
96                                         break;
97                                 }
98
99                                 string[] cats = CategoryText;
100                                 if (cats.Length == 1) {
101                                         writer.AddAttribute (HtmlTextWriterAttribute.Axis, cats [0]);
102                                 } else if (cats.Length > 1) {
103                                         StringBuilder sb = new StringBuilder ();
104                                         for (int i=0; i < cats.Length - 1; i++) {
105                                                 sb.Append (cats [i]);
106                                                 sb.Append (",");
107                                         }
108                                         sb.Append (cats [cats.Length - 1]);
109                                         writer.AddAttribute (HtmlTextWriterAttribute.Axis, sb.ToString ());
110                                 }
111                         }
112                 }
113 #endif
114         }
115 }