svn path=/branches/mono-1-1-9/mcs/; revision=51216
[mono.git] / mcs / class / System.Web / System.Web.UI.HtmlControls / HtmlTextArea.cs
1 //
2 // System.Web.UI.HtmlControls.HtmlTextArea.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.Collections.Specialized;
31 using System.Globalization;
32 using System.Security.Permissions;
33
34 namespace System.Web.UI.HtmlControls {
35
36         // CAS
37         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
38         [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
39         // attributes
40         [DefaultEvent ("ServerChange")]
41         [ValidationProperty ("Value")]
42         public class HtmlTextArea : HtmlContainerControl, IPostBackDataHandler {
43
44                 private static readonly object serverChangeEvent = new object ();
45
46
47                 public HtmlTextArea ()
48                         : base ("textarea")
49                 {
50                 }
51
52
53                 [DefaultValue ("")]
54                 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
55                 [WebSysDescription("")]
56                 [WebCategory("Appearance")]
57                 public int Cols {
58                         get {
59                                 string s = Attributes ["cols"];
60                                 return (s == null) ? -1 : Convert.ToInt32 (s);
61                         }
62                         set {
63                                 if (value == -1)
64                                         Attributes.Remove ("cols");
65                                 else
66                                         Attributes ["cols"] = value.ToString (CultureInfo.InvariantCulture);
67                         }
68                 }
69
70                 [DefaultValue ("")]
71                 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
72                 [WebSysDescription("")]
73                 [WebCategory("Behavior")]
74                 public virtual string Name {
75                         get { return ID; }
76                         set { ; }
77                 }
78
79                 [DefaultValue ("")]
80                 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
81                 [WebSysDescription("")]
82                 [WebCategory("Appearance")]
83                 public int Rows {
84                         get {
85                                 string s = Attributes ["rows"];
86                                 return (s == null) ? -1 : Convert.ToInt32 (s);
87                         }
88                         set {
89                                 if (value == -1)
90                                         Attributes.Remove ("rows");
91                                 else
92                                         Attributes ["rows"] = value.ToString (CultureInfo.InvariantCulture);
93                         }
94                 }
95
96                 [DefaultValue ("")]
97                 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
98                 [WebSysDescription("")]
99                 [WebCategory("Appearance")]
100                 public string Value {
101                         get { return InnerHtml; }
102                         set { InnerHtml = value; }
103                 }
104
105
106                 protected override void AddParsedSubObject (object obj)
107                 {
108                         if (!((obj is LiteralControl) || (obj is DataBoundLiteralControl))) {
109                                 throw new HttpException (Locale.GetText ("Wrong type."));
110                         }
111                         base.AddParsedSubObject (obj);
112                 }
113
114 #if NET_2_0
115                 protected internal
116 #else           
117                 protected
118 #endif          
119                 override void OnPreRender (EventArgs e)
120                 {
121                         base.OnPreRender (e);
122
123                         if (Page != null) {
124                                 Page.RegisterRequiresPostBack (this);
125                         }
126                 }
127
128                 protected virtual void OnServerChange (EventArgs e)
129                 {
130                         EventHandler serverChange = (EventHandler) Events [serverChangeEvent];
131                         if (serverChange != null)
132                                 serverChange (this, e);
133                 }
134
135                 protected override void RenderAttributes (HtmlTextWriter writer)
136                 {
137                         if (Attributes ["name"] == null) {
138                                 writer.WriteAttribute ("name", Name);
139                         }
140                         base.RenderAttributes (writer);
141                 }
142
143 #if NET_2_0
144                 protected virtual bool LoadPostData (string postDataKey, NameValueCollection postCollection)
145                 {
146                         return DefaultLoadPostData (postDataKey, postCollection);
147                 }
148
149                 protected virtual void RaisePostDataChangedEvent ()
150                 {
151                         OnServerChange (EventArgs.Empty);
152                 }
153 #endif
154
155                 internal bool DefaultLoadPostData (string postDataKey, NameValueCollection postCollection)
156                 {
157                         string s = postCollection [postDataKey];
158                         if ((s != null) && (s != Value)) {
159                                 Value = s;
160                                 return true;
161                         }
162                         return false;
163                 }
164
165                 bool IPostBackDataHandler.LoadPostData (string postDataKey, NameValueCollection postCollection)
166                 {
167 #if NET_2_0
168                         return LoadPostData (postDataKey, postCollection);
169 #else
170                         return DefaultLoadPostData (postDataKey, postCollection);
171 #endif
172                 }
173
174                 void IPostBackDataHandler.RaisePostDataChangedEvent ()
175                 {
176 #if NET_2_0
177                         RaisePostDataChangedEvent ();
178 #else
179                         OnServerChange (EventArgs.Empty);
180 #endif
181                 }
182
183
184                 [WebSysDescription("")]
185                 [WebCategory("Action")]
186                 public event EventHandler ServerChange {
187                         add { Events.AddHandler (serverChangeEvent, value); }
188                         remove { Events.RemoveHandler (serverChangeEvent, value); }
189                 }
190         }
191 }