| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769 |
- // 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.
- //
- // Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
- //
- // Authors:
- // Peter Dennis Bartok ([email protected])
- //
- //
- using System;
- using System.ComponentModel;
- using System.Drawing;
- namespace System.Web.UI.WebControls
- {
- [TypeConverter(typeof(System.ComponentModel.ExpandableObjectConverter))]
- [ToolboxItem("")]
- public class Style : System.ComponentModel.Component, System.Web.UI.IStateManager
- {
- [Flags]
- internal enum Styles
- {
- None = 0,
- BackColor = 0x00000001,
- BorderColor = 0x00000002,
- BorderStyle = 0x00000004,
- BorderWidth = 0x00000008,
- CssClass = 0x00000010,
- Font = 0x00000020,
- ForeColor = 0x00000040,
- Height = 0x00000080,
- Width = 0x00000100,
- // from TableStyle (which doesn't override IsEmpty)
- BackImageUrl = 0x00000200,
- CellPadding = 0x00000400,
- CellSpacing = 0x00000800,
- GridLines = 0x00001000,
- HorizontalAlign = 0x00002000,
- // from TableItemStyle (which doesn't override IsEmpty neither)
- VerticalAlign = 0x00004000,
- Wrap = 0x00008000,
- // from DataGridPagerStyle (and, once again, no IsEmpty override)
- Mode = 0x00010000,
- NextPageText = 0x00020000,
- PageButtonCount = 0x00040000,
- Position = 0x00080000,
- PrevPageText = 0x00100000,
- Visible = 0x00200000
-
- }
- #region Fields
- internal Styles styles;
- internal StateBag viewstate;
- private FontInfo fontinfo;
- private bool tracking;
- #if NET_2_0
- private string registered_class;
- #endif
- #endregion // Fields
- #region Public Constructors
- public Style() : this(new StateBag())
- {
- }
- public Style(System.Web.UI.StateBag bag)
- {
- if (bag != null) {
- viewstate = bag;
- } else {
- viewstate = new StateBag();
- }
- tracking = false;
- }
- #endregion // Public Constructors
- #region Public Instance Properties
- [Bindable(true)]
- [DefaultValue(typeof (Color), "")]
- [NotifyParentProperty(true)]
- [TypeConverter(typeof(System.Web.UI.WebControls.WebColorConverter))]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public Color BackColor
- {
- get
- {
- if ((styles & Styles.BackColor) == 0)
- {
- return Color.Empty;
- }
- return (Color)viewstate["BackColor"];
- }
- set
- {
- viewstate["BackColor"] = value;
- styles |= Styles.BackColor;
- }
- }
- [Bindable(true)]
- [DefaultValue(typeof (Color), "")]
- [NotifyParentProperty(true)]
- [TypeConverter(typeof(System.Web.UI.WebControls.WebColorConverter))]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public Color BorderColor
- {
- get
- {
- if ((styles & Styles.BorderColor) == 0)
- {
- return Color.Empty;
- }
- return (Color)viewstate["BorderColor"];
- }
- set
- {
- viewstate["BorderColor"] = value;
- styles |= Styles.BorderColor;
- }
- }
- [Bindable(true)]
- [DefaultValue(BorderStyle.NotSet)]
- [NotifyParentProperty(true)]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public BorderStyle BorderStyle
- {
- get
- {
- if ((styles & Styles.BorderStyle) == 0)
- {
- return BorderStyle.NotSet;
- }
- return (BorderStyle)viewstate["BorderStyle"];
- }
- set
- {
- viewstate["BorderStyle"] = value;
- styles |= Styles.BorderStyle;
- }
- }
- [Bindable(true)]
- [DefaultValue(typeof (Unit), "")]
- [NotifyParentProperty(true)]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public Unit BorderWidth
- {
- get
- {
- if ((styles & Styles.BorderWidth) == 0)
- {
- return Unit.Empty;
- }
- return (Unit)viewstate["BorderWidth"];
- }
- set
- {
- if (value.Value < 0)
- {
- throw new ArgumentOutOfRangeException("Value", value.Value, "BorderWidth must not be negative");
- }
- viewstate["BorderWidth"] = value;
- styles |= Styles.BorderWidth;
- }
- }
- [DefaultValue("")]
- [NotifyParentProperty(true)]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public string CssClass
- {
- get
- {
- if ((styles & Styles.CssClass) == 0)
- {
- return string.Empty;
- }
- return (string)viewstate["CssClass"];
- }
- set
- {
- viewstate["CssClass"] = value;
- styles |= Styles.CssClass;
- }
- }
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
- [NotifyParentProperty(true)]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public FontInfo Font
- {
- get
- {
- if (fontinfo == null)
- {
- fontinfo = new FontInfo(this);
- }
- return fontinfo;
- }
- }
- [Bindable(true)]
- [DefaultValue(typeof (Color), "")]
- [NotifyParentProperty(true)]
- [TypeConverter(typeof(System.Web.UI.WebControls.WebColorConverter))]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public Color ForeColor
- {
- get
- {
- if ((styles & Styles.ForeColor) == 0)
- {
- return Color.Empty;
- }
- return (Color)viewstate["ForeColor"];
- }
- set
- {
- viewstate["ForeColor"] = value;
- styles |= Styles.ForeColor;
- }
- }
- [Bindable(true)]
- [DefaultValue(typeof (Unit), "")]
- [NotifyParentProperty(true)]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public Unit Height
- {
- get
- {
- if ((styles & Styles.Height) == 0)
- {
- return Unit.Empty;
- }
- return (Unit)viewstate["Height"];
- }
- set
- {
- if (value.Value < 0)
- {
- throw new ArgumentOutOfRangeException("Value", value.Value, "Height must not be negative");
- }
- viewstate["Height"] = value;
- styles |= Styles.Height;
- }
- }
- [Bindable(true)]
- [DefaultValue(typeof (Unit), "")]
- [NotifyParentProperty(true)]
- [WebSysDescription ("")]
- [WebCategory ("Appearance")]
- public Unit Width
- {
- get
- {
- if ((styles & Styles.Width) == 0)
- {
- return Unit.Empty;
- }
- return (Unit)viewstate["Width"];
- }
- set
- {
- if (value.Value < 0)
- {
- throw new ArgumentOutOfRangeException("Value", value.Value, "Width must not be negative");
- }
- viewstate["Width"] = value;
- styles |= Styles.Width;
- }
- }
- #endregion // Public Instance Properties
- #region Protected Instance Properties
- protected internal virtual bool IsEmpty
- {
- get
- {
- return (styles == 0);
- }
- }
- protected bool IsTrackingViewState
- {
- get
- {
- return tracking;
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- protected internal StateBag ViewState
- {
- get
- {
- return viewstate;
- }
- }
- #endregion // Protected Instance Properties
- #region Public Instance Methods
- public void AddAttributesToRender(System.Web.UI.HtmlTextWriter writer)
- {
- AddAttributesToRender(writer, null);
- }
- public virtual void AddAttributesToRender(System.Web.UI.HtmlTextWriter writer, WebControl owner)
- {
- if ((styles & Styles.CssClass) != 0)
- {
- string s = (string)viewstate["CssClass"];
- if (s != string.Empty)
- writer.AddAttribute (HtmlTextWriterAttribute.Class, s);
- }
- CssStyleCollection attributes = new CssStyleCollection ();
- FillStyleAttributes (attributes);
- foreach (string attr in attributes.Keys)
- writer.AddStyleAttribute (attr, attributes [attr]);
- }
-
- void FillStyleAttributes (CssStyleCollection attributes)
- {
- string s;
- Color color;
- BorderStyle bs;
- Unit u;
- if ((styles & Styles.BackColor) != 0)
- {
- color = (Color)viewstate["BackColor"];
- if (!color.IsEmpty)
- attributes.Add (HtmlTextWriterStyle.BackgroundColor, ColorTranslator.ToHtml(color));
- }
- if ((styles & Styles.BorderColor) != 0)
- {
- color = (Color)viewstate["BorderColor"];
- if (!color.IsEmpty)
- attributes.Add (HtmlTextWriterStyle.BorderColor, ColorTranslator.ToHtml(color));
- }
- if ((styles & Styles.BorderStyle) != 0)
- {
- bs = (BorderStyle)viewstate["BorderStyle"];
- if (bs != BorderStyle.NotSet)
- attributes.Add (HtmlTextWriterStyle.BorderStyle, bs.ToString());
- }
- if ((styles & Styles.BorderWidth) != 0)
- {
- u = (Unit)viewstate["BorderWidth"];
- if (!u.IsEmpty)
- attributes.Add (HtmlTextWriterStyle.BorderWidth, u.ToString());
- }
- if ((styles & Styles.ForeColor) != 0)
- {
- color = (Color)viewstate["ForeColor"];
- if (!color.IsEmpty)
- attributes.Add (HtmlTextWriterStyle.Color, ColorTranslator.ToHtml(color));
- }
- if ((styles & Styles.Height) != 0)
- {
- u = (Unit)viewstate["Height"];
- if (!u.IsEmpty)
- attributes.Add (HtmlTextWriterStyle.Height, u.ToString());
- }
- if ((styles & Styles.Width) != 0)
- {
- u = (Unit)viewstate["Width"];
- if (!u.IsEmpty)
- attributes.Add (HtmlTextWriterStyle.Width, u.ToString());
- }
- if (fontinfo != null) {
- // Fonts are a bit weird
- if (fontinfo.Name != string.Empty)
- {
- s = fontinfo.Names[0];
- for (int i = 1; i < fontinfo.Names.Length; i++)
- {
- s += "," + fontinfo.Names[i];
- }
- attributes.Add (HtmlTextWriterStyle.FontFamily, s);
- }
- if (fontinfo.Bold)
- {
- attributes.Add (HtmlTextWriterStyle.FontWeight, "bold");
- }
- if (fontinfo.Italic)
- {
- attributes.Add (HtmlTextWriterStyle.FontStyle, "italic");
- }
- if (!fontinfo.Size.IsEmpty)
- {
- attributes.Add (HtmlTextWriterStyle.FontSize, fontinfo.Size.ToString());
- }
- // These styles are munged into a attribute decoration
- s = string.Empty;
- if (fontinfo.Overline)
- {
- s += "overline ";
- }
- if (fontinfo.Strikeout)
- {
- s += "line-through ";
- }
- if (fontinfo.Underline)
- {
- s += "underline ";
- }
- if (s != string.Empty)
- {
- attributes.Add (HtmlTextWriterStyle.TextDecoration, s);
- }
- }
- }
- public virtual void CopyFrom(Style s)
- {
- if ((s == null) || s.IsEmpty)
- {
- return;
- }
- if (s.fontinfo != null)
- {
- Font.CopyFrom(s.fontinfo);
- }
- if (((s.styles & Styles.BackColor) != 0) && (s.BackColor != Color.Empty))
- {
- this.BackColor = s.BackColor;
- }
- if (((s.styles & Styles.BorderColor) != 0) && (s.BorderColor != Color.Empty))
- {
- this.BorderColor = s.BorderColor;
- }
- if (((s.styles & Styles.BorderStyle) != 0) && (s.BorderStyle != BorderStyle.NotSet))
- {
- this.BorderStyle = s.BorderStyle;
- }
- if (((s.styles & Styles.BorderWidth) != 0) && (s.BorderWidth != Unit.Empty))
- {
- this.BorderWidth = s.BorderWidth;
- }
- if (((s.styles & Styles.CssClass) != 0) && (s.CssClass != string.Empty))
- {
- this.CssClass = s.CssClass;
- }
- if (((s.styles & Styles.ForeColor) != 0) && (s.ForeColor != Color.Empty))
- {
- this.ForeColor = s.ForeColor;
- }
- if (((s.styles & Styles.Height) != 0) && (s.Height != Unit.Empty))
- {
- this.Height = s.Height;
- }
- if (((s.styles & Styles.Width) != 0) && (s.Width != Unit.Empty))
- {
- this.Width = s.Width;
- }
- }
- public virtual void MergeWith(Style s)
- {
- if ((s == null) || (s.IsEmpty))
- {
- return;
- }
- if (s.fontinfo != null)
- {
- Font.MergeWith(s.fontinfo);
- }
- if (((styles & Styles.BackColor) == 0) && ((s.styles & Styles.BackColor) != 0) && (s.BackColor != Color.Empty))
- {
- this.BackColor = s.BackColor;
- }
- if (((styles & Styles.BorderColor) == 0) && ((s.styles & Styles.BorderColor) != 0) && (s.BorderColor != Color.Empty))
- {
- this.BorderColor = s.BorderColor;
- }
- if (((styles & Styles.BorderStyle) == 0) && ((s.styles & Styles.BorderStyle) != 0) && (s.BorderStyle != BorderStyle.NotSet))
- {
- this.BorderStyle = s.BorderStyle;
- }
- if (((styles & Styles.BorderWidth) == 0) && ((s.styles & Styles.BorderWidth) != 0) && (s.BorderWidth != Unit.Empty))
- {
- this.BorderWidth = s.BorderWidth;
- }
- if (((styles & Styles.CssClass) == 0) && ((s.styles & Styles.CssClass) != 0) && (s.CssClass != string.Empty))
- {
- this.CssClass = s.CssClass;
- }
- if (((styles & Styles.ForeColor) == 0) && ((s.styles & Styles.ForeColor) != 0) && (s.ForeColor != Color.Empty))
- {
- this.ForeColor = s.ForeColor;
- }
- if (((styles & Styles.Height) == 0) && ((s.styles & Styles.Height) != 0) && (s.Height != Unit.Empty))
- {
- this.Height = s.Height;
- }
- if (((styles & Styles.Width) == 0) && ((s.styles & Styles.Width) != 0) && (s.Width != Unit.Empty))
- {
- this.Width = s.Width;
- }
- }
- public virtual void Reset()
- {
- viewstate.Remove("BackColor");
- viewstate.Remove("BorderColor");
- viewstate.Remove("BorderStyle");
- viewstate.Remove("BorderWidth");
- viewstate.Remove("CssClass");
- viewstate.Remove("ForeColor");
- viewstate.Remove("Height");
- viewstate.Remove("Width");
- if (fontinfo != null)
- {
- fontinfo.Reset();
- }
- styles = Styles.None;
- }
- public override string ToString()
- {
- return string.Empty;
- }
- #endregion // Public Instance Methods
- #region Protected Instance Methods
- protected internal void LoadViewState(object state)
- {
- viewstate.LoadViewState(state);
- // Update our style
- this.styles = Styles.None;
- if (viewstate["BackColor"] != null)
- {
- styles |= Styles.BackColor;
- }
- if (viewstate["BorderColor"] != null)
- {
- styles |= Styles.BorderColor;
- }
- if (viewstate["BorderStyle"] != null)
- {
- styles |= Styles.BorderStyle;
- }
- if (viewstate["BorderWidth"] != null)
- {
- styles |= Styles.BorderWidth;
- }
- if (viewstate["CssClass"] != null)
- {
- styles |= Styles.CssClass;
- }
- if (viewstate["ForeColor"] != null)
- {
- styles |= Styles.ForeColor;
- }
- if (viewstate["Height"] != null)
- {
- styles |= Styles.Height;
- }
- if (viewstate["Width"] != null)
- {
- styles |= Styles.Width;
- }
- if (fontinfo != null) {
- fontinfo.LoadViewState();
- }
- LoadViewStateInternal();
- }
- internal virtual void LoadViewStateInternal()
- {
- // Override me
- }
- protected internal virtual object SaveViewState ()
- {
- if (styles != Styles.None)
- {
- return viewstate.SaveViewState();
- }
- return null;
- }
- [MonoTODO]
- protected internal virtual void SetBit( int bit )
- {
- throw new NotImplementedException();
- }
- protected internal virtual void TrackViewState()
- {
- tracking = true;
- viewstate.TrackViewState();
- }
- #endregion // Protected Instance Methods
- #region IStateManager Properties & Methods
- void IStateManager.LoadViewState(object state)
- {
- LoadViewState(state);
- }
- object IStateManager.SaveViewState()
- {
- return SaveViewState();
- }
- void IStateManager.TrackViewState()
- {
- TrackViewState();
- }
- bool IStateManager.IsTrackingViewState
- {
- get
- {
- return this.IsTrackingViewState;
- }
- }
- #endregion // IStateManager Properties & Methods
- #region REMOVE ME
- internal static int BORDERWIDTH = 0xeadbeef;
- internal static int FORECOLOR = 0xeadbeef;
- [Obsolete ("This method will be removed in Fresh")]
- internal bool IsSet(int blah)
- {
- if (blah == BORDERWIDTH)
- return ((styles & Styles.BorderWidth) != 0);
- if (blah == FORECOLOR)
- return ((styles & Styles.ForeColor) != 0);
- return false;
- }
- [Obsolete ("This method will be removed in Fresh")]
- internal void Set(int blah)
- {
- }
- #endregion // REMOVE ME
- #if NET_2_0
- protected virtual void FillStyleAttributes (CssStyleCollection attributes, IUrlResolutionService urlResolver)
- {
- FillStyleAttributes (attributes);
- }
- internal void SetRegisteredCssClass (string name)
- {
- registered_class = name;
- }
- public CssStyleCollection GetStyleAttributes (IUrlResolutionService resolver)
- {
- CssStyleCollection col = new CssStyleCollection ();
- FillStyleAttributes (col, resolver);
- return col;
- }
- [MonoTODO]
- public string RegisteredCssClass {
- get {
- return registered_class;
- }
- }
- internal virtual void CopyTextStylesFrom (Style source)
- {
- // Need to ask lluis if we need fonts, too
- if ((styles & Styles.ForeColor) != 0) {
- ForeColor = source.ForeColor;
- }
- if ((styles & Styles.BackColor) != 0) {
- BackColor = source.BackColor;
- }
- }
- public void SetDirty ()
- {
- if (viewstate != null)
- viewstate.SetDirty ();
- }
- public static bool IsStyleEmpty (Style s)
- {
- if (s == null)
- return true;
- return s.IsEmpty;
- }
- #endif
- }
- }
|