| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474 |
- //
- // System.Web.UI.WebControls.CheckBox.cs
- //
- // Author:
- // Dick Porter <[email protected]>
- //
- // Copyright (C) 2005-2010 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System.Collections;
- using System.Collections.Specialized;
- using System.ComponentModel;
- using System.Globalization;
- using System.Security.Permissions;
- using System.Web.Util;
- namespace System.Web.UI.WebControls
- {
- // CAS
- [AspNetHostingPermissionAttribute (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
- [AspNetHostingPermissionAttribute (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
- // attributes
- [Designer ("System.Web.UI.Design.WebControls.CheckBoxDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
- [DataBindingHandler ("System.Web.UI.Design.TextDataBindingHandler, " + Consts.AssemblySystem_Design)]
- [DefaultEvent ("CheckedChanged")]
- [DefaultProperty ("Text")]
- [ControlValueProperty ("Checked", null)]
- [SupportsEventValidation]
- public class CheckBox : WebControl, IPostBackDataHandler, ICheckBoxControl
- {
- string render_type;
- AttributeCollection common_attrs;
- AttributeCollection inputAttributes;
- StateBag inputAttributesState;
- AttributeCollection labelAttributes;
- StateBag labelAttributesState;
-
- public CheckBox () : base (HtmlTextWriterTag.Input)
- {
- render_type = "checkbox";
- }
- internal CheckBox (string render_type) : base (HtmlTextWriterTag.Input)
- {
- this.render_type = render_type;
- }
- [DefaultValue (false)]
- [Themeable (false)]
- [WebSysDescription ("")]
- [WebCategory ("Behavior")]
- public virtual bool AutoPostBack {
- get { return (ViewState.GetBool ("AutoPostBack", false)); }
- set { ViewState["AutoPostBack"] = value; }
- }
- [DefaultValue (false)]
- [Themeable (false)]
- [WebSysDescription ("")]
- [WebCategory ("Behavior")]
- public virtual bool CausesValidation {
- get { return ViewState.GetBool ("CausesValidation", false); }
- set { ViewState ["CausesValidation"] = value; }
- }
- [DefaultValue (false)]
- [Bindable (true, BindingDirection.TwoWay)]
- [Themeable (false)]
- [WebSysDescription ("")]
- [WebCategory ("Behavior")]
- public virtual bool Checked {
- get { return (ViewState.GetBool ("Checked", false)); }
- set { ViewState["Checked"] = value; }
- }
- [Browsable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public AttributeCollection InputAttributes {
- get {
- if (inputAttributes == null) {
- if (inputAttributesState == null) {
- inputAttributesState = new StateBag (true);
- if (IsTrackingViewState)
- inputAttributesState.TrackViewState();
- }
- inputAttributes = new AttributeCollection (inputAttributesState);
- }
- return inputAttributes;
- }
- }
- [Browsable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public AttributeCollection LabelAttributes {
- get {
- if (labelAttributes == null) {
- if (labelAttributesState == null) {
- labelAttributesState = new StateBag (true);
- if (IsTrackingViewState)
- labelAttributesState.TrackViewState();
- }
- labelAttributes = new AttributeCollection (labelAttributesState);
- }
- return labelAttributes;
- }
- }
- [DefaultValue ("")]
- [Bindable (true)]
- [Localizable (true)]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public virtual string Text {
- get { return (ViewState.GetString ("Text", String.Empty)); }
- set { ViewState["Text"] = value; }
- }
- [DefaultValue (TextAlign.Right)]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public virtual TextAlign TextAlign {
- get { return (TextAlign) ViewState.GetInt ("TextAlign", (int)TextAlign.Right); }
- set {
- if (value != TextAlign.Left &&
- value != TextAlign.Right) {
- throw new ArgumentOutOfRangeException ("value");
- }
-
- ViewState["TextAlign"] = value;
- }
- }
- [Themeable (false)]
- [DefaultValue ("")]
- [WebSysDescription ("")]
- [WebCategoryAttribute ("Behavior")]
- public virtual string ValidationGroup {
- get { return ViewState.GetString ("ValidationGroup", String.Empty); }
- set { ViewState["ValidationGroup"] = value; }
- }
- static readonly object EventCheckedChanged = new object ();
- [WebSysDescription ("")]
- [WebCategory ("Action")]
- public event EventHandler CheckedChanged {
- add { Events.AddHandler (EventCheckedChanged, value); }
- remove { Events.RemoveHandler (EventCheckedChanged, value); }
- }
- protected virtual void OnCheckedChanged (EventArgs e)
- {
- EventHandler handler = (EventHandler)Events[EventCheckedChanged];
-
- if (handler != null)
- handler (this, e);
- }
- internal virtual string NameAttribute {
- get { return (this.UniqueID); }
- }
-
- protected override void LoadViewState (object savedState)
- {
- if (savedState == null) {
- base.LoadViewState (null);
- return;
- }
- Triplet saved = (Triplet) savedState;
- base.LoadViewState (saved.First);
- if (saved.Second != null) {
- if (inputAttributesState == null) {
- inputAttributesState = new StateBag(true);
- inputAttributesState.TrackViewState ();
- }
- inputAttributesState.LoadViewState (saved.Second);
- }
- if (saved.Third != null) {
- if (labelAttributesState == null) {
- labelAttributesState = new StateBag(true);
- labelAttributesState.TrackViewState ();
- }
- labelAttributesState.LoadViewState (saved.Third);
- }
- }
- protected override object SaveViewState ()
- {
- object baseView = base.SaveViewState ();
- object inputAttrView = null;
- object labelAttrView = null;
- if (inputAttributesState != null)
- inputAttrView = inputAttributesState.SaveViewState ();
- if (labelAttributesState != null)
- labelAttrView = labelAttributesState.SaveViewState ();
- if (baseView == null && inputAttrView == null && labelAttrView == null)
- return null;
- return new Triplet (baseView, inputAttrView, labelAttrView);
- }
- protected override void TrackViewState ()
- {
- base.TrackViewState();
- if (inputAttributesState != null)
- inputAttributesState.TrackViewState ();
- if (labelAttributesState != null)
- labelAttributesState.TrackViewState ();
- }
- protected internal override void OnPreRender (EventArgs e)
- {
- base.OnPreRender (e);
- Page page = Page;
-
- if (page != null && IsEnabled) {
- page.RegisterRequiresPostBack (this);
- page.RegisterEnabledControl (this);
- }
- }
- static bool IsInputOrCommonAttr (string attname)
- {
- attname = attname.ToUpper (Helpers.InvariantCulture);
- switch (attname) {
- case "VALUE":
- case "CHECKED":
- case "SIZE":
- case "MAXLENGTH":
- case "SRC":
- case "ALT":
- case "USEMAP":
- case "DISABLED":
- case "READONLY":
- case "ACCEPT":
- case "ACCESSKEY":
- case "TABINDEX":
- case "ONFOCUS":
- case "ONBLUR":
- case "ONSELECT":
- case "ONCHANGE":
- case "ONCLICK":
- case "ONDBLCLICK":
- case "ONMOUSEDOWN":
- case "ONMOUSEUP":
- case "ONMOUSEOVER":
- case "ONMOUSEMOVE":
- case "ONMOUSEOUT":
- case "ONKEYPRESS":
- case "ONKEYDOWN":
- case "ONKEYUP":
- return true;
- default:
- return false;
- }
- }
- bool AddAttributesForSpan (HtmlTextWriter writer)
- {
- if (HasAttributes) {
- AttributeCollection attributes = Attributes;
- ICollection k = attributes.Keys;
- string [] keys = new string [k.Count];
- k.CopyTo (keys, 0);
- foreach (string key in keys) {
- if (!IsInputOrCommonAttr (key))
- continue;
- if (common_attrs == null)
- common_attrs = new AttributeCollection (new StateBag ());
- common_attrs [key] = Attributes [key];
- attributes.Remove (key);
- }
-
- if (attributes.Count > 0) {
- attributes.AddAttributes (writer);
- return true;
- }
- }
-
- return false;
- }
- protected internal override void Render (HtmlTextWriter w)
- {
- Page page = Page;
- if (page != null) {
- page.VerifyRenderingInServerForm (this);
- page.ClientScript.RegisterForEventValidation (UniqueID);
- }
-
- bool need_span = ControlStyleCreated && !ControlStyle.IsEmpty;
- bool enabled = IsEnabled;
- if (!enabled) {
- #if NET_4_0
- if (!RenderingCompatibilityLessThan40)
- ControlStyle.PrependCssClass (DisabledCssClass);
- else
- #endif
- w.AddAttribute (HtmlTextWriterAttribute.Disabled, "disabled", false);
- need_span = true;
- }
- if (need_span) {
- AddDisplayStyleAttribute (w);
- ControlStyle.AddAttributesToRender (w, this);
- }
-
- string tt = ToolTip;
- if (tt != null && tt.Length > 0){
- w.AddAttribute ("title", tt);
- need_span = true;
- }
- if (HasAttributes && AddAttributesForSpan (w))
- need_span = true;
-
- if (need_span)
- w.RenderBeginTag (HtmlTextWriterTag.Span);
- TextAlign align = TextAlign;
- if (align == TextAlign.Right) {
- RenderInput (w, enabled);
- RenderLabel (w);
- } else {
- RenderLabel (w);
- RenderInput (w, enabled);
- }
- if (need_span)
- w.RenderEndTag ();
- }
- void RenderInput (HtmlTextWriter w, bool enabled)
- {
- if (ClientID != null && ClientID.Length > 0)
- w.AddAttribute (HtmlTextWriterAttribute.Id, ClientID);
- w.AddAttribute (HtmlTextWriterAttribute.Type, render_type);
- string nameAttr = NameAttribute;
- if (nameAttr != null && nameAttr.Length > 0)
- w.AddAttribute (HtmlTextWriterAttribute.Name, nameAttr);
- InternalAddAttributesToRender (w, enabled);
- AddAttributesToRender (w);
-
- if (Checked)
- w.AddAttribute (HtmlTextWriterAttribute.Checked, "checked", false);
- if (AutoPostBack) {
- Page page = Page;
- string onclick = page != null ? page.ClientScript.GetPostBackEventReference (GetPostBackOptions (), true) : String.Empty;
- onclick = String.Concat ("setTimeout('", onclick.Replace ("\\", "\\\\").Replace ("'", "\\'"), "', 0)");
- w.AddAttribute (HtmlTextWriterAttribute.Onclick, BuildScriptAttribute ("onclick", onclick));
- }
- if (AccessKey.Length > 0)
- w.AddAttribute (HtmlTextWriterAttribute.Accesskey, AccessKey);
- if (TabIndex != 0)
- w.AddAttribute (HtmlTextWriterAttribute.Tabindex,
- TabIndex.ToString (NumberFormatInfo.InvariantInfo));
- if (common_attrs != null)
- common_attrs.AddAttributes (w);
- if (inputAttributes != null)
- inputAttributes.AddAttributes (w);
-
- w.RenderBeginTag (HtmlTextWriterTag.Input);
- w.RenderEndTag ();
- }
- void RenderLabel (HtmlTextWriter w)
- {
- string text = Text;
- if (text.Length > 0) {
- if (labelAttributes != null)
- labelAttributes.AddAttributes (w);
- w.AddAttribute (HtmlTextWriterAttribute.For, ClientID);
- w.RenderBeginTag (HtmlTextWriterTag.Label);
- w.Write (text);
- w.RenderEndTag ();
- }
- }
- protected virtual bool LoadPostData (string postDataKey, NameValueCollection postCollection)
- {
- if (!IsEnabled)
- return false;
- string postedValue = postCollection[postDataKey];
- bool postedBool = ((postedValue != null) &&
- (postedValue.Length > 0));
-
- if (Checked != postedBool) {
- Checked = postedBool;
- return (true);
- }
- return (false);
- }
- protected virtual void RaisePostDataChangedEvent ()
- {
- ValidateEvent (UniqueID, String.Empty);
- if (CausesValidation) {
- Page page = Page;
- if (page != null)
- page.Validate (ValidationGroup);
- }
-
- OnCheckedChanged (EventArgs.Empty);
- }
- bool IPostBackDataHandler.LoadPostData (string postDataKey, NameValueCollection postCollection)
- {
- return LoadPostData (postDataKey, postCollection);
- }
-
- void IPostBackDataHandler.RaisePostDataChangedEvent ()
- {
- RaisePostDataChangedEvent ();
- }
- PostBackOptions GetPostBackOptions ()
- {
- PostBackOptions options = new PostBackOptions (this);
- options.ActionUrl = null;
- options.ValidationGroup = null;
- options.Argument = String.Empty;
- options.RequiresJavaScriptProtocol = false;
- options.ClientSubmit = true;
- Page page = Page;
- options.PerformValidation = CausesValidation && page != null && page.AreValidatorsUplevel (ValidationGroup);
- if (options.PerformValidation)
- options.ValidationGroup = ValidationGroup;
- return options;
- }
- protected override void AddAttributesToRender (HtmlTextWriter writer)
- {
- }
- internal virtual void InternalAddAttributesToRender (HtmlTextWriter w, bool enabled)
- {
- if (!enabled)
- w.AddAttribute (HtmlTextWriterAttribute.Disabled, "disabled", false);
- }
- }
- }
|