merge 100015:100420
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / RadioButton.cs
1 //
2 // System.Web.UI.WebControls.RadioButton.cs
3 //
4 // Author:
5 //      Dick Porter  <dick@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.Collections.Specialized;
30 using System.ComponentModel;
31 using System.Security.Permissions;
32
33 namespace System.Web.UI.WebControls {
34
35         // CAS
36         [AspNetHostingPermissionAttribute (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
37         [AspNetHostingPermissionAttribute (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
38         // attributes
39         [Designer ("System.Web.UI.Design.WebControls.CheckBoxDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
40 #if NET_2_0
41         [SupportsEventValidation]
42 #endif
43         public class RadioButton : CheckBox , IPostBackDataHandler
44         {
45                 public RadioButton () : base ("radio")
46                 {
47                 }
48
49                 [DefaultValue ("")]
50 #if NET_2_0
51                 [Themeable (false)]
52 #endif
53                 [WebSysDescription ("")]
54                 [WebCategory ("Behavior")]
55                 public virtual string GroupName
56                 {
57                         get {
58                                 return (ViewState.GetString ("GroupName",
59                                                              String.Empty));
60                         }
61                         set {
62                                 ViewState["GroupName"] = value;
63                         }
64                 }
65
66                 internal override string NameAttribute 
67                 {
68                         get {
69                                 string unique = UniqueID;
70                                 string gn = GroupName;
71                                 if (gn.Length == 0)
72                                         return unique;
73                                 int colon = -1;
74                                 if (unique != null) {
75 #if NET_2_0
76                                         colon = unique.LastIndexOf (IdSeparator);
77 #else
78                                         colon = unique.IndexOf (IdSeparator);
79 #endif
80                                 }
81                                 
82                                 if (colon == -1)
83                                         return gn;
84                                 
85                                 return unique.Substring (0, colon + 1) + gn;
86                         }
87                 }
88
89                 internal string ValueAttribute {
90                         get {
91                                 return ViewState.GetString ("Value", String.Empty);
92                         }
93                         set {
94                                 ViewState["Value"] = value;
95                         }
96                 }
97
98                 internal override void InternalAddAttributesToRender (HtmlTextWriter w) 
99                 {
100                         base.InternalAddAttributesToRender (w);
101                         string val = ValueAttribute;
102                         if (val == null || val.Length == 0) {
103 #if NET_2_0
104                                 string id = ID;
105                                 if (!String.IsNullOrEmpty (id))
106                                         val = id;
107                                 else
108 #endif
109                                         val = UniqueID;
110                         }
111                         
112                         w.AddAttribute (HtmlTextWriterAttribute.Value, val);
113                 }
114
115 #if NET_2_0
116                 protected internal
117 #else           
118                 protected
119 #endif          
120                 override void OnPreRender (EventArgs e)
121                 {
122                         base.OnPreRender (e);
123                 }
124
125 #if NET_2_0
126                 protected override
127 #endif
128                 bool LoadPostData (string postDataKey, NameValueCollection postCollection) 
129                 {
130                         bool checkedOnClient = postCollection[NameAttribute] == postDataKey;
131                         if (Checked == checkedOnClient)
132                                 return false;
133
134                         Checked = checkedOnClient;
135                         return checkedOnClient;                 
136                 }
137
138 #if NET_2_0
139                 protected override void RaisePostDataChangedEvent ()
140                 {
141                         if (CausesValidation)
142                                 Page.Validate (ValidationGroup);
143                         OnCheckedChanged (EventArgs.Empty);
144                 }
145 #endif
146                 
147                 bool IPostBackDataHandler.LoadPostData (string postDataKey, NameValueCollection postCollection)
148                 {
149                         return LoadPostData (postDataKey, postCollection);
150                 }
151         }
152 }