// // System.Web.UI.WebControls.Image.cs // // Authors: // Gaurav Vaish (gvaish@iitk.ac.in) // Andreas Nahr (ClassDevelopment@A-SoftTech.com) // // (C) Gaurav Vaish (2002) // (C) 2003 Andreas Nahr // // // 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; using System.Web; using System.Web.UI; using System.ComponentModel; namespace System.Web.UI.WebControls { [DefaultProperty("ImageUrl")] public class Image : WebControl { public Image(): base(HtmlTextWriterTag.Img) { } #if NET_2_0 [Localizable (true)] #endif [DefaultValue (""), Bindable (true), WebCategory ("Appearance")] [WebSysDescription ("An alternative text that is shown if the image cannot be displayed.")] public virtual string AlternateText { get { object o = ViewState["AlternateText"]; if(o!=null) return (string)o; return String.Empty; } set { ViewState["AlternateText"] = value; } } [Browsable (false), EditorBrowsable (EditorBrowsableState.Never)] public override bool Enabled { get { return base.Enabled; } set { base.Enabled = value; } } [Browsable (false), EditorBrowsable (EditorBrowsableState.Never)] [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)] public override FontInfo Font { get { return base.Font; } } #if !NET_2_0 [Bindable (true)] #endif [DefaultValue (typeof (ImageAlign), "NotSet"), WebCategory ("Layout")] [WebSysDescription ("The alignment of the image.")] public virtual ImageAlign ImageAlign { get { object o = ViewState["ImageAlign"]; if(o!=null) return (ImageAlign)o; return ImageAlign.NotSet; } set { ViewState["ImageAlign"] = value; } } #if NET_2_0 [Localizable (true)] [UrlProperty] #endif [DefaultValue (""), Bindable (true), WebCategory ("Appearance")] [Editor ("System.Web.UI.Design.ImageUrlEditor, " + Consts.AssemblySystem_Design, typeof (System.Drawing.Design.UITypeEditor))] [WebSysDescription ("The URL to the image file.")] public virtual string ImageUrl { get { object o = ViewState["ImageUrl"]; if(o!=null) return (string)o; return String.Empty; } set { ViewState["ImageUrl"] = value; } } #if NET_2_0 [WebCategory ("Accessibility")] [DefaultValueAttribute ("")] [UrlPropertyAttribute] [EditorAttribute ("System.Web.UI.Design.UrlEditor, System.Design, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] public string DescriptionUrl { get { object o = ViewState["DescriptionUrl"]; if(o!=null) return (string)o; return String.Empty; } set { ViewState["DescriptionUrl"] = value; } } [DefaultValueAttribute (false)] [WebCategory ("Accessibility")] public bool GenerateEmptyAlternateText { get { object o = ViewState["GenerateEmptyAlternateText"]; if(o!=null) return (bool)o; return false; } set { ViewState["GenerateEmptyAlternateText"] = value; } } #endif protected override void AddAttributesToRender(HtmlTextWriter writer) { base.AddAttributesToRender(writer); if(ImageUrl.Length > 0) { writer.AddAttribute(HtmlTextWriterAttribute.Src, ResolveUrl(ImageUrl)); } #if NET_2_0 if (DescriptionUrl.Length > 0) writer.AddAttribute (HtmlTextWriterAttribute.Longdesc, DescriptionUrl); if (AlternateText.Length > 0 || GenerateEmptyAlternateText) writer.AddAttribute(HtmlTextWriterAttribute.Alt, AlternateText); #else if (AlternateText.Length > 0) writer.AddAttribute(HtmlTextWriterAttribute.Alt, AlternateText); #endif if(BorderWidth.IsEmpty) { writer.AddAttribute(HtmlTextWriterAttribute.Border, "0"); } if(ImageAlign != ImageAlign.NotSet) { writer.AddAttribute(HtmlTextWriterAttribute.Align, Enum.Format(typeof(ImageAlign), ImageAlign, "G")); } } protected override void RenderContents(HtmlTextWriter writer) { } } }