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