2006-12-11 Igor Zelmanovich <igorz@mainsoft.com>
[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                                         colon = unique.IndexOf (':');
76                                 if (colon == -1)
77                                         return gn;
78
79                                 return unique.Substring (0, colon + 1) + gn;
80                         }
81                 }
82
83                 internal string ValueAttribute {
84                         get {
85                                 return ViewState.GetString ("Value", String.Empty);
86                         }
87                         set {
88                                 ViewState["Value"] = value;
89                         }
90                 }
91
92                 internal override void InternalAddAttributesToRender (HtmlTextWriter w) 
93                 {
94                         base.InternalAddAttributesToRender (w);
95                         string val = ValueAttribute;
96                         if (val == null || val.Length == 0)
97                                 val = UniqueID;
98                         w.AddAttribute (HtmlTextWriterAttribute.Value, val);
99                 }
100
101 #if NET_2_0
102                 protected internal
103 #else           
104                 protected
105 #endif          
106                 override void OnPreRender (EventArgs e)
107                 {
108                         base.OnPreRender (e);
109                 }
110
111 #if NET_2_0
112                 protected override
113 #endif
114                 bool LoadPostData (string postDataKey, NameValueCollection postCollection) 
115                 {
116                         bool checkedOnClient = postCollection[NameAttribute] == postDataKey;
117                         if (Checked == checkedOnClient)
118                                 return false;
119
120                         Checked = checkedOnClient;
121                         return checkedOnClient;                 
122                 }
123
124 #if NET_2_0
125                 protected override
126 #endif
127                 void RaisePostDataChangedEvent ()
128                 {
129 #if NET_2_0
130                         if (CausesValidation)
131                                 Page.Validate (ValidationGroup);
132 #endif
133                         OnCheckedChanged (EventArgs.Empty);
134                 }
135
136                 bool IPostBackDataHandler.LoadPostData (string postDataKey, NameValueCollection postCollection)
137                 {
138                         return LoadPostData (postDataKey, postCollection);
139                 }
140         }
141 }