| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370 |
- //
- // System.Web.UI.WebControls.ImageButton.cs
- //
- // Authors:
- // Jordi Mas i Hernandez ([email protected])
- //
- // (C) 2005 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.Specialized;
- using System.ComponentModel;
- namespace System.Web.UI.WebControls {
- [DefaultEvent("Click")]
- #if NET_2_0
- [Designer ("System.Web.UI.Design.WebControls.PreviewControlDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
- #endif
- public class ImageButton : Image, IPostBackDataHandler, IPostBackEventHandler
- #if NET_2_0
- , IButtonControl
- #endif
- {
- private static readonly object ClickEvent = new object ();
- private static readonly object CommandEvent = new object ();
- private int pos_x, pos_y;
- public ImageButton ()
- {
- }
- #if ONLY_1_1
- [Bindable(false)]
- #endif
- [DefaultValue(true)]
- [WebSysDescription ("")]
- [WebCategory ("Behavior")]
- #if NET_2_0
- [Themeable (false)]
- public virtual
- #else
- public
- #endif
- bool CausesValidation {
- get {
- return ViewState.GetBool ("CausesValidation", true);
- }
- set {
- ViewState ["CausesValidation"] = value;
- }
- }
- [Bindable(true)]
- [DefaultValue("")]
- [WebSysDescription ("")]
- [WebCategory ("Behavior")]
- #if NET_2_0
- [Themeable (false)]
- public virtual
- #else
- public
- #endif
- string CommandArgument {
- get {
- return ViewState.GetString ("CommandArgument", "");
- }
- set {
- ViewState ["CommandArgument"] = value;
- }
- }
- [DefaultValue("")]
- [WebSysDescription ("")]
- [WebCategory ("Behavior")]
- #if NET_2_0
- [Themeable (false)]
- public virtual
- #else
- public
- #endif
- string CommandName {
- get {
- return ViewState.GetString ("CommandName", "");
- }
- set {
- ViewState ["CommandName"] = value;
- }
- }
- #if NET_2_0
- [EditorBrowsable (EditorBrowsableState.Always)]
- [Browsable (true)]
- [DefaultValue (true)]
- [Bindable (true)]
- [MonoTODO]
- public virtual new bool Enabled
- {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [Browsable (false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- [Themeable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [MonoTODO]
- public virtual new bool GenerateEmptyAlternateText
- {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [DefaultValue ("")]
- [Themeable (false)]
- [MonoTODO]
- public virtual string OnClientClick
- {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [Themeable (false)]
- [UrlProperty]
- [DefaultValue ("")]
- [Editor ("System.Web.UI.Design.UrlEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
- [MonoTODO]
- public virtual string PostBackUrl
- {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [Themeable (false)]
- [DefaultValue ("")]
- [WebSysDescription ("")]
- [WebCategory ("Behavior")]
- public virtual string ValidationGroup
- {
- get {
- return ViewState.GetString ("ValidationGroup", "");
- }
- set {
- ViewState ["ValidationGroup"] = value;
- }
- }
- #endif
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- #if NET_2_0 && HAVE_CONTROL_ADAPTERS
- protected virtual new
- #else
- protected override
- #endif
- HtmlTextWriterTag TagKey {
- get { return HtmlTextWriterTag.Input; }
- }
- #if NET_2_0
- [MonoTODO]
- protected virtual string Text
- {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- #endif
- protected override void AddAttributesToRender (HtmlTextWriter writer)
- {
- if (Page != null)
- Page.VerifyRenderingInServerForm (this);
- writer.AddAttribute (HtmlTextWriterAttribute.Type, "image");
- if (CausesValidation && Page != null && Page.AreValidatorsUplevel ()) {
- ClientScriptManager csm = new ClientScriptManager (Page);
- writer.AddAttribute (HtmlTextWriterAttribute.Onclick, csm.GetClientValidationEvent ());
- writer.AddAttribute ("language", "javascript");
- }
- base.AddAttributesToRender (writer);
- }
- #if NET_2_0
- [MonoTODO]
- protected virtual PostBackOptions GetPostBackOptions ()
- {
- throw new NotImplementedException ();
- }
- #endif
- #if NET_2_0
- [MonoTODO]
- protected virtual bool LoadPostData (string postDataKey, NameValueCollection psotCollection)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void RaisePostDataChangedEvent ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- protected virtual void RaisePostBackEvent (string eventArgument)
- {
- throw new NotImplementedException ();
- }
- #endif
- bool IPostBackDataHandler.LoadPostData (string postDataKey, NameValueCollection postCollection)
- {
- string x, y;
- x = postCollection [UniqueID + ".x"];
- y = postCollection [UniqueID + ".y"];
- if (x != null && y != null) {
- pos_x = Int32.Parse(x);
- pos_y = Int32.Parse(y);
- Page.RegisterRequiresRaiseEvent (this);
- }
- return true;
- }
- void IPostBackDataHandler.RaisePostDataChangedEvent ()
- {
- }
- void IPostBackEventHandler.RaisePostBackEvent (string eventArgument)
- {
- if (CausesValidation)
- #if NET_2_0
- Page.Validate (ValidationGroup);
- #else
- Page.Validate ();
- #endif
- OnClick (new ImageClickEventArgs (pos_x, pos_y));
- OnCommand (new CommandEventArgs (CommandName, CommandArgument));
- }
- protected virtual void OnClick (ImageClickEventArgs e)
- {
- if (Events != null) {
- EventHandler eh = (EventHandler) (Events [ClickEvent]);
- if (eh != null)
- eh (this, e);
- }
- }
- protected virtual void OnCommand (CommandEventArgs e)
- {
- if (Events != null) {
- CommandEventHandler eh = (CommandEventHandler) (Events [CommandEvent]);
- if (eh != null)
- eh (this, e);
- }
- RaiseBubbleEvent (this, e);
- }
- #if NET_2_0
- protected internal
- #else
- protected
- #endif
- override void OnPreRender (EventArgs e)
- {
- if (Page != null)
- Page.RegisterRequiresPostBack (this);
- }
- [WebSysDescription ("")]
- [WebCategory ("Action")]
- public event ImageClickEventHandler Click
- {
- add {
- Events.AddHandler (ClickEvent, value);
- }
- remove {
- Events.RemoveHandler (ClickEvent, value);
- }
- }
- [WebSysDescription ("")]
- [WebCategory ("Action")]
- public event CommandEventHandler Command
- {
- add {
- Events.AddHandler (CommandEvent, value);
- }
- remove {
- Events.RemoveHandler (CommandEvent, value);
- }
- }
- #if NET_2_0
- [MonoTODO]
- string IButtonControl.Text
- {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- event EventHandler IButtonControl.Click
- {
- add {
- throw new NotImplementedException ();
- }
- remove {
- throw new NotImplementedException ();
- }
- }
-
- #endif
- }
- }
|