| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- //
- // System.Web.UI.HtmlControls.HtmlHead
- //
- // Authors:
- // Lluis Sanchez Gual ([email protected])
- //
- // Copyright (C) 2004-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.
- //
- #if NET_2_0
- using System.ComponentModel;
- using System.Collections;
- using System.Security.Permissions;
- using System.Web.UI.WebControls;
- namespace System.Web.UI.HtmlControls
- {
- // CAS - no InheritanceDemand here as the class is sealed
- [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
- // attributes
- [ControlBuilder (typeof(HtmlHeadBuilder))]
- public sealed class HtmlHead: HtmlGenericControl, IParserAccessor {
- string titleText;
- HtmlTitle title;
- //Hashtable metadata;
- StyleSheetBag styleSheet;
-
- public HtmlHead(): base("head") {}
- public HtmlHead (string tag) : base (tag)
- {
- }
-
- protected internal override void OnInit (EventArgs e)
- {
- //You can only have one <head runat="server"> control on a page.
- if(Page.Header!=null)
- throw new HttpException ("You can only have one <head runat=\"server\"> control on a page.");
- Page.SetHeader (this);
- }
-
- protected internal override void RenderChildren (HtmlTextWriter writer)
- {
- EnsureTitleControl ();
- base.RenderChildren (writer);
- // if (metadata != null) {
- // foreach (DictionaryEntry entry in metadata) {
- // writer.AddAttribute ("name", entry.Key.ToString ());
- // writer.AddAttribute ("content", entry.Value.ToString ());
- // writer.RenderBeginTag (HtmlTextWriterTag.Meta);
- // writer.RenderEndTag ();
- // }
- // }
-
- if (styleSheet != null)
- styleSheet.Render (writer);
- }
-
- protected internal override void AddedControl (Control control, int index)
- {
- //You can only have one <title> element within the <head> element.
- HtmlTitle t = control as HtmlTitle;
- if (t != null) {
- if (title != null)
- throw new HttpException ("You can only have one <title> element within the <head> element.");
- title = t;
- }
- base.AddedControl (control, index);
- }
- protected internal override void RemovedControl (Control control)
- {
- if (title == control)
- title = null;
- base.RemovedControl (control);
- }
-
- void EnsureTitleControl () {
- if (title != null)
- return;
- HtmlTitle t = new HtmlTitle ();
- t.Text = titleText;
- Controls.Add (t);
- }
- // IList LinkedStyleSheets {
- // get {
- // if (styleSheets == null) styleSheets = new ArrayList ();
- // return styleSheets;
- // }
- // }
- //
- // IDictionary Metadata {
- // get {
- // if (metadata == null) metadata = new Hashtable ();
- // return metadata;
- // }
- // }
-
- public IStyleSheet StyleSheet {
- get {
- if (styleSheet == null) styleSheet = new StyleSheetBag ();
- return styleSheet;
- }
- }
-
- public string Title {
- get {
- if (title != null)
- return title.Text;
- else
- return titleText;
- }
- set {
- if (title != null)
- title.Text = value;
- else
- titleText = value;
- }
- }
- }
-
- internal class StyleSheetBag: IStyleSheet
- {
- ArrayList entries = new ArrayList ();
-
- internal class StyleEntry
- {
- public Style Style;
- public string Selection;
- public IUrlResolutionService UrlResolver;
- }
-
- public StyleSheetBag ()
- {
- }
-
- public void CreateStyleRule (Style style, IUrlResolutionService urlResolver, string selection)
- {
- StyleEntry entry = new StyleEntry ();
- entry.Style = style;
- entry.UrlResolver = urlResolver;
- entry.Selection = selection;
- entries.Add (entry);
- }
-
- public void RegisterStyle (Style style, IUrlResolutionService urlResolver)
- {
- for (int n=0; n<entries.Count; n++) {
- if (((StyleEntry)entries[n]).Style == style)
- return;
- }
-
- string name = "aspnet_" + entries.Count;
- style.SetRegisteredCssClass (name);
- CreateStyleRule (style, urlResolver, "." + name);
- }
-
- public void Render (HtmlTextWriter writer)
- {
- writer.AddAttribute ("type", "text/css");
- writer.RenderBeginTag (HtmlTextWriterTag.Style);
- foreach (StyleEntry entry in entries) {
- CssStyleCollection sts = entry.Style.GetStyleAttributes (entry.UrlResolver);
- writer.Write ("\n" + entry.Selection + " {" + sts.Value + "}");
- }
- writer.RenderEndTag ();
- }
- }
- }
- #endif
|