[System.Web.*] Reference source import: System.Web.Profile.(ProfileInfoCollection...
[mono.git] / mcs / class / System.Web / System.Web.UI.HtmlControls / HtmlTable.cs
old mode 100755 (executable)
new mode 100644 (file)
index 800b64a..7ae378a
-/*     System.Web.UI.HtmlControls\r
-*      Authors\r
-*              Leen Toelen (toelen@hotmail.com)\r
-*/\r
-\r
-using System;\r
-using System.Web;\r
-using System.Web.UI;\r
-using System.Globalization;\r
-\r
-namespace System.Web.UI.HtmlControls{\r
-       \r
-       public class HtmlTable : HtmlContainerControl {\r
-               private HtmlTableRowCollection _rows;\r
-               \r
-               public HtmlTable():base("table"){}\r
-               \r
-               protected override ControlCollection CreateControlCollection(){\r
-                       return new HtmlTableRowControlCollection(this);\r
-               }\r
-               \r
-               protected override void RenderChildren(HtmlTextWriter writer){\r
-                       writer.WriteLine();\r
-                       writer.Indent = writer.Indent + 1;\r
-                       base.RenderChildren(writer);\r
-                       writer.Indent = writer.Indent - 1;\r
-               }\r
-               \r
-               protected override void RenderEndTag(HtmlTextWriter writer){\r
-                       base.RenderEndTag(writer);\r
-                       writer.WriteLine();\r
-               }\r
-               \r
-               public string Align {\r
-                       get{\r
-                               string attr = Attributes["align"];\r
-                               if (attr != null) return attr;\r
-                               return String.Empty;\r
-                       }\r
-                       set{\r
-                               Attributes["align"] = AttributeToString(value);\r
-                       }\r
-               }\r
-               \r
-               public string BgColor {\r
-                       get{\r
-                               string attr = Attributes["bgcolor"];\r
-                               if (attr != null) return attr;\r
-                               return String.Empty;\r
-                       }\r
-                       set{\r
-                               Attributes["bgcolor"] = AttributeToString(value);\r
-                       }\r
-               }\r
-               \r
-               public int Border {\r
-                       get{\r
-                               string attr = Attributes["border"];\r
-                               if (attr != null) return Int32.Parse(attr, CultureInfo.InvariantCulture);\r
-                               return -1;\r
-                       }\r
-                       set{\r
-                               Attributes["border"] = AttributeToString(value);\r
-                       }\r
-               }\r
-               \r
-               public string BorderColor {\r
-                       get{\r
-                               string attr = Attributes["bordercolor"];\r
-                               if (attr != null) return attr;\r
-                               return String.Empty;\r
-                       }\r
-                       set{\r
-                               Attributes["bordercolor"] = AttributeToString(value);\r
-                       }\r
-               }\r
-               \r
-               public int CellPadding {\r
-                       get{\r
-                               string attr = Attributes["cellpadding"];\r
-                               if (attr != null) return Int32.Parse(attr, CultureInfo.InvariantCulture);\r
-                               return -1;\r
-                       }\r
-                       set{\r
-                               Attributes["cellpadding"] = AttributeToString(value);\r
-                       }\r
-               }\r
-               \r
-               public int CellSpacing {\r
-                       get{\r
-                               string attr = Attributes["cellspacing"];\r
-                               if (attr != null) return Int32.Parse(attr, CultureInfo.InvariantCulture);\r
-                               return -1;\r
-                       }\r
-                       set{\r
-                               Attributes["cellspacing"] = AttributeToString(value);\r
-                       }\r
-               }\r
-               \r
-               public string Height {\r
-                       get{\r
-                               string attr = Attributes["height"];\r
-                               if (attr != null) return attr;\r
-                               return String.Empty;\r
-                       }\r
-                       set{\r
-                               Attributes["height"] = AttributeToString(value);\r
-                       }\r
-               }\r
-               \r
-               public override string InnerHtml {\r
-                       get{\r
-                               throw new NotSupportedException("InnerHtml property not supported by HtmlTable");\r
-                       }\r
-                       set{\r
-                               throw new NotSupportedException("InnerHtml property not supported by HtmlTable");\r
-                       }\r
-               }\r
-               \r
-               public override string InnerText {\r
-                       get{\r
-                               throw new NotSupportedException("InnerText property not supported by HtmlTable");\r
-                       }\r
-                       set{\r
-                               throw new NotSupportedException("InnerText property not supported by HtmlTable");\r
-                       }\r
-               }\r
-               \r
-               public virtual HtmlTableRowCollection Rows {\r
-                       get{\r
-                               if (_rows == null) _rows = new HtmlTableRowCollection(this);\r
-                               return _rows;\r
-                       }\r
-               }\r
-               \r
-               public string Width {\r
-                       get{\r
-                               string attr = Attributes["width"];\r
-                               if (attr != null) return attr;\r
-                               return String.Empty;\r
-                       }\r
-                       set{\r
-                               Attributes["width"] = AttributeToString(value);\r
-                       }\r
-               }\r
-               \r
-               protected class HtmlTableRowControlCollection : ControlCollection {\r
-                       \r
-                       internal HtmlTableRowControlCollection(Control owner): base(owner){}\r
-                       \r
-                       public override void Add(Control child){\r
-                               if ((child as HtmlTableCell) != null){\r
-                                       base.Add(child);\r
-                               }\r
-                               else{\r
-                                       throw new ArgumentException("HtmlTableRow cannot have children of type" + child.GetType().Name);\r
-                               }\r
-                       }\r
-                       \r
-                       public override void AddAt(int index, Control child){\r
-                               if ((child as HtmlTableCell) != null){\r
-                                       base.AddAt(index,child);\r
-                               }\r
-                               else{\r
-                                       throw new ArgumentException("HtmlTableRow cannot have children of type" + child.GetType().Name);\r
-                               }\r
-                       }\r
-               } // end of HtmlTableRowControlCollection\r
-       }\r
-       // end of System.Web.UI.HtmlControl\r
-}\r
+//
+// System.Web.UI.HtmlControls.HtmlTable.cs
+//
+// Author:
+//     Sebastien Pouliot  <sebastien@ximian.com>
+//
+// Copyright (C) 2005-2010 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System.ComponentModel;
+using System.Globalization;
+using System.Security.Permissions;
+using System.Web.Util;
+
+namespace System.Web.UI.HtmlControls
+{
+       // CAS
+       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+       [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+       // attributes
+       [ParseChildren (true, "Rows")]  
+       public class HtmlTable : HtmlContainerControl
+       {
+               HtmlTableRowCollection _rows;
+
+               public HtmlTable ()
+                       : base ("table")
+               {
+               }
+
+               [DefaultValue ("")]
+               [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+               [WebSysDescription("")]
+               [WebCategory("Layout")]
+               public string Align {
+                       get {
+                               string s = Attributes ["align"];
+                               return (s == null) ? String.Empty : s;
+                       }
+                       set {
+                               if (value == null)
+                                       Attributes.Remove ("align");
+                               else
+                                       Attributes ["align"] = value;
+                       }
+               }
+
+               [DefaultValue ("")]
+               [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+               [WebSysDescription("")]
+               [WebCategory("Appearance")]
+               public string BgColor {
+                       get {
+                               string s = Attributes ["bgcolor"];
+                               return (s == null) ? String.Empty : s;
+                       }
+                       set {
+                               if (value == null)
+                                       Attributes.Remove ("bgcolor");
+                               else
+                                       Attributes ["bgcolor"] = value;
+                               }
+               }
+
+               [DefaultValue (-1)]
+               [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+               [WebSysDescription("")]
+               [WebCategory("Appearance")]
+               public int Border {
+                       get {
+                               string s = Attributes ["border"];
+                               return (s == null) ? -1 : Convert.ToInt32 (s);
+                       }
+                       set {
+                               if (value == -1)
+                                       Attributes.Remove ("border");
+                               else
+                                       Attributes ["border"] = value.ToString (Helpers.InvariantCulture);
+                       }
+               }
+
+               [DefaultValue ("")]
+               [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+               [WebSysDescription("")]
+               [WebCategory("Appearance")]
+               public string BorderColor {
+                       get {
+                               string s = Attributes ["bordercolor"];
+                               return (s == null) ? String.Empty : s;
+                       }
+                       set {
+                               if (value == null)
+                                       Attributes.Remove ("bordercolor");
+                               else
+                                       Attributes ["bordercolor"] = value;
+                       }
+               }
+
+               [DefaultValue ("")]
+               [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+               [WebSysDescription("")]
+               [WebCategory("Appearance")]
+               public int CellPadding {
+                       get {
+                               string s = Attributes ["cellpadding"];
+                               return (s == null) ? -1 : Convert.ToInt32 (s);
+                       }
+                       set {
+                               if (value == -1)
+                                       Attributes.Remove ("cellpadding");
+                               else
+                                       Attributes ["cellpadding"] = value.ToString (Helpers.InvariantCulture);
+                       }
+               }
+
+               [DefaultValue ("")]
+               [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+               [WebSysDescription("")]
+               [WebCategory("Appearance")]
+               public int CellSpacing {
+                       get {
+                               string s = Attributes ["cellspacing"];
+                               return (s == null) ? -1 : Convert.ToInt32 (s);
+                       }
+                       set {
+                               if (value == -1)
+                                       Attributes.Remove ("cellspacing");
+                               else
+                                       Attributes ["cellspacing"] = value.ToString (Helpers.InvariantCulture);
+                       }
+               }
+
+               [DefaultValue ("")]
+               [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+               [WebSysDescription("")]
+               [WebCategory("Layout")]
+               public string Height {
+                       get {
+                               string s = Attributes ["height"];
+                               return (s == null) ? String.Empty : s;
+                       }
+                       set {
+                               if (value == null)
+                                       Attributes.Remove ("height");
+                               else
+                                       Attributes ["height"] = value;
+                       }
+               }
+
+               public override string InnerHtml {
+                       get { throw new NotSupportedException (); }
+                       set { throw new NotSupportedException (); }
+               }
+
+               public override string InnerText {
+                       get { throw new NotSupportedException (); }
+                       set { throw new NotSupportedException (); }
+               }
+
+               [Browsable (false)]
+               [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+               public virtual HtmlTableRowCollection Rows {
+                       get {
+                               if (_rows == null)
+                                       _rows = new HtmlTableRowCollection (this);
+                               return _rows;
+                       }
+               }
+
+               [DefaultValue ("")]
+               [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+               [WebSysDescription("")]
+               [WebCategory("Layout")]
+               public string Width {
+                       get {
+                               string s = Attributes ["width"];
+                               return (s == null) ? String.Empty : s;
+                       }
+                       set {
+                               if (value == null)
+                                       Attributes.Remove ("width");
+                               else
+                                       Attributes ["width"] = value;
+                       }
+               }
+
+
+               protected override ControlCollection CreateControlCollection ()
+               {
+                       return new HtmlTableRowControlCollection (this);
+               }
+
+               protected internal override void RenderChildren (HtmlTextWriter writer)
+               {
+                       if (HasControls ()) {
+                               writer.Indent++;
+                               base.RenderChildren (writer);
+                               writer.Indent--;
+                               writer.WriteLine ();
+                       }
+               }
+
+               protected override void RenderEndTag (HtmlTextWriter writer)
+               {
+                       writer.WriteLine ();
+                       writer.WriteEndTag (TagName);
+                       writer.WriteLine ();
+               }
+
+
+               protected class HtmlTableRowControlCollection : ControlCollection {
+
+                       internal HtmlTableRowControlCollection (HtmlTable owner)
+                               : base (owner)
+                       {
+                       }
+
+                       public override void Add (Control child)
+                       {
+                               if (child == null)
+                                       throw new NullReferenceException ("null");
+                               if (!(child is HtmlTableRow))
+                                       throw new ArgumentException ("child", Locale.GetText ("Must be an HtmlTableRow instance."));
+
+                               base.Add (child);
+                       }
+
+                       public override void AddAt (int index, Control child)
+                       {
+                               if (child == null)
+                                       throw new NullReferenceException ("null");
+                               if (!(child is HtmlTableRow))
+                                       throw new ArgumentException ("child", Locale.GetText ("Must be an HtmlTableRow instance."));
+
+                               base.AddAt (index, child);
+                       }
+               }
+       }
+}