Merge pull request #5714 from alexischr/update_bockbuild
[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-2010 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 using System.Collections;
32 using System.Collections.Specialized;
33 using System.Web.UI;
34 using System.ComponentModel;
35 using System.Security.Permissions;
36
37 namespace System.Web.UI.WebControls
38 {
39         [AspNetHostingPermissionAttribute (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
40         [AspNetHostingPermissionAttribute (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
41         public abstract class ButtonFieldBase : DataControlField
42         {
43                 [DefaultValueAttribute (ButtonType.Link)]
44                 [WebSysDescription ("")]
45                 [WebCategoryAttribute ("Appearance")]
46                 public virtual ButtonType ButtonType {
47                         get { return (ButtonType) ViewState.GetInt ("ButtonType", (int) ButtonType.Link); }
48                         set {
49                                 ViewState ["ButtonType"] = value;
50                                 OnFieldChanged ();
51                         }
52                 }
53
54                 [DefaultValueAttribute (false)]
55                 [WebSysDescription ("")]
56                 [WebCategoryAttribute ("Behavior")]
57                 public virtual bool CausesValidation {
58                         get { return ViewState.GetBool ("CausesValidation", false); }
59                         set {
60                                 ViewState ["CausesValidation"] = value;
61                                 OnFieldChanged ();
62                         }
63                 }
64
65                 [DefaultValueAttribute (false)]
66                 [WebSysDescription ("")]
67                 [WebCategoryAttribute ("Behavior")]
68                 public override bool ShowHeader {
69                         get { return ViewState.GetBool ("showHeader", false); }
70                         set { 
71                                 ViewState ["showHeader"] = value;
72                                 OnFieldChanged ();
73                         }
74                 }
75
76                 [DefaultValueAttribute ("")]
77                 [WebSysDescription ("")]
78                 [WebCategoryAttribute ("Behavior")]
79                 public virtual string ValidationGroup {
80                         get { return ViewState.GetString ("ValidationGroup", String.Empty); }
81                         set {
82                                 ViewState ["ValidationGroup"] = value;
83                                 OnFieldChanged ();
84                         }
85                 }
86                 
87                 protected override void CopyProperties (DataControlField newField)
88                 {
89                         base.CopyProperties (newField);
90                         ButtonFieldBase field = (ButtonFieldBase) newField;
91                         field.ButtonType = ButtonType;
92                         field.CausesValidation = CausesValidation;
93                         field.ShowHeader = ShowHeader;
94                         field.ValidationGroup = ValidationGroup;
95                 }
96         }
97 }