New test.
[mono.git] / mcs / class / System.Web / System.Web.UI.HtmlControls / HtmlInputRadioButton.cs
1 //
2 // System.Web.UI.HtmlControls.HtmlInputRadioButton.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.Security.Permissions;
32
33 namespace System.Web.UI.HtmlControls {
34
35         // CAS
36         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
37         [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
38         // attributes
39         [DefaultEvent ("ServerChange")]
40 #if NET_2_0
41         [SupportsEventValidation]
42 #endif
43         public class HtmlInputRadioButton : HtmlInputControl, IPostBackDataHandler {
44
45                 private static readonly object serverChangeEvent = new object ();
46
47
48                 public HtmlInputRadioButton ()
49                         : base ("radio")
50                 {
51                 }
52
53
54                 [DefaultValue ("")]
55                 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
56                 [WebSysDescription("")]
57                 [WebCategory("Misc")]
58                 public bool Checked {
59                         get { return (Attributes ["checked"] == "checked"); }
60                         set {
61                                 if (value)
62                                         Attributes ["checked"] = "checked";
63                                 else
64                                         Attributes.Remove ("checked");
65                         }
66                 }
67
68                 public override string Name {
69                         get {
70                                 string s = Attributes ["name"];
71                                 return (s == null) ? String.Empty : s;
72                         }
73                         set {
74                                 if (value == null)
75                                         Attributes.Remove ("name");
76                                 else
77                                         Attributes ["name"] = value;
78                         }
79                 }
80
81                 public override string Value {
82                         get {
83                                 string s = Attributes ["value"];
84                                 if (s == null || s.Length == 0) {
85                                         s = ID;
86                                         if ((s != null) && (s.Length == 0))
87                                                 s = null;
88                                 }
89                                 return s;
90                         }
91                         set {
92                                 if (value == null)
93                                         Attributes.Remove ("value");
94                                 else
95                                         Attributes ["value"] = value;
96                         }
97                 }
98
99 #if NET_2_0
100                 protected internal
101 #else
102                 protected
103 #endif          
104                 override void OnPreRender (EventArgs e)
105                 {
106                         base.OnPreRender (e);
107
108                         if (Page != null) {
109                                 Page.RegisterRequiresPostBack (this);
110                         }
111                 }
112
113                 protected virtual void OnServerChange (EventArgs e)
114                 {
115                         EventHandler serverChange = (EventHandler) Events [serverChangeEvent];
116                         if (serverChange != null)
117                                 serverChange (this, e);
118                 }
119
120                 protected override void RenderAttributes (HtmlTextWriter writer)
121                 {
122 #if NET_2_0
123                         if (Page != null)
124                                 Page.ClientScript.RegisterForEventValidation (this.UniqueID, Value);
125 #endif
126                         writer.WriteAttribute ("value", Value);
127                         Attributes.Remove ("value");
128                         base.RenderAttributes (writer);
129                 }
130 #if NET_2_0
131                 protected virtual bool LoadPostData (string postDataKey, NameValueCollection postCollection)
132                 {
133                         return DefaultLoadPostData (postDataKey, postCollection);
134                 }
135
136                 protected virtual void RaisePostDataChangedEvent ()
137                 {
138                         OnServerChange (EventArgs.Empty);
139                 }
140 #endif
141
142                 internal bool DefaultLoadPostData (string postDataKey, NameValueCollection postCollection)
143                 {
144                         string s = postCollection [postDataKey];
145                         if ((s != null) && (Attributes ["value"] != postDataKey)) {
146                                 Attributes ["value"] = postDataKey;
147                                 // this doesn't seems to trigger a change
148                         }
149                         return false;
150                 }
151
152                 bool IPostBackDataHandler.LoadPostData (string postDataKey, NameValueCollection postCollection)
153                 {
154 #if NET_2_0
155                         return LoadPostData (postDataKey, postCollection);
156 #else
157                         return DefaultLoadPostData (postDataKey, postCollection);
158 #endif
159                 }
160
161                 void IPostBackDataHandler.RaisePostDataChangedEvent ()
162                 {
163 #if NET_2_0
164                         RaisePostDataChangedEvent ();
165 #else
166                         OnServerChange (EventArgs.Empty);
167 #endif
168                 }
169
170
171                 [WebSysDescription("")]
172                 [WebCategory("Action")]
173                 public event EventHandler ServerChange {
174                         add { Events.AddHandler (serverChangeEvent, value); }
175                         remove { Events.RemoveHandler (serverChangeEvent, value); }
176                 }
177         }
178 }