merge -r 58060:58217
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / ButtonFieldBase.cs
1 //
2 // System.Web.UI.WebControls.ButtonFieldBase.cs
3 //
4 // Authors:
5 //      Lluis Sanchez Gual (lluis@novell.com)
6 //
7 // (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32 using System.Collections;
33 using System.Collections.Specialized;
34 using System.Web.UI;
35 using System.ComponentModel;
36 using System.Security.Permissions;
37
38 namespace System.Web.UI.WebControls {
39
40         [AspNetHostingPermissionAttribute (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
41         [AspNetHostingPermissionAttribute (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
42         public abstract class ButtonFieldBase : DataControlField
43         {
44                 [DefaultValueAttribute (ButtonType.Link)]
45                 [WebSysDescription ("")]
46                 [WebCategoryAttribute ("Appearance")]
47                 public virtual ButtonType ButtonType {
48                         get {
49                                 object ob = ViewState ["ButtonType"];
50                                 if (ob != null) return (ButtonType) ob;
51                                 return ButtonType.Link;
52                         }
53                         set {
54                                 ViewState ["ButtonType"] = value;
55                                 OnFieldChanged ();
56                         }
57                 }
58
59                 [DefaultValueAttribute (false)]
60                 [WebSysDescription ("")]
61                 [WebCategoryAttribute ("Behavior")]
62                 public virtual bool CausesValidation {
63                         get {
64                                 object ob = ViewState ["CausesValidation"];
65                                 if (ob != null) return (bool) ob;
66                                 return false;
67                         }
68                         set {
69                                 ViewState ["CausesValidation"] = value;
70                                 OnFieldChanged ();
71                         }
72                 }
73
74                 [DefaultValueAttribute (false)]
75                 [WebSysDescription ("")]
76                 [WebCategoryAttribute ("Behavior")]
77                 public override bool ShowHeader {
78                         get {
79                                 object val = ViewState ["showHeader"];
80                                 return val != null ? (bool) val : false;
81                         }
82                         set { 
83                                 ViewState ["showHeader"] = value;
84                                 OnFieldChanged ();
85                         }
86                 }
87
88                 [DefaultValueAttribute ("")]
89                 [WebSysDescription ("")]
90                 [WebCategoryAttribute ("Behavior")]
91                 public virtual string ValidationGroup {
92                         get {
93                                 object ob = ViewState ["ValidationGroup"];
94                                 if (ob != null) return (string) ob;
95                                 return "";
96                         }
97                         set {
98                                 ViewState ["ValidationGroup"] = value;
99                                 OnFieldChanged ();
100                         }
101                 }
102                 
103                 protected override void CopyProperties (DataControlField newField)
104                 {
105                         base.CopyProperties (newField);
106                         ButtonFieldBase field = (ButtonFieldBase) newField;
107                         field.ButtonType = ButtonType;
108                         field.CausesValidation = CausesValidation;
109                         field.ShowHeader = ShowHeader;
110                         field.ValidationGroup = ValidationGroup;
111                 }
112         }
113 }
114 #endif