CssPrimitiveValue.cs :  » GUI » SharpVectorGraphics » SharpVectors » Dom » Css » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » GUI » SharpVectorGraphics 
SharpVectorGraphics » SharpVectors » Dom » Css » CssPrimitiveValue.cs
using System;
using System.Text.RegularExpressions;
using System.Collections;
using System.Drawing;
using System.Xml;

namespace SharpVectors.Dom.Css{
  /// <summary>
  /// The CSSPrimitiveValue interface represents a single CSS value. This interface may be used to determine the value of a specific style property currently set in a block or to set a specific style property explicitly within the block. An instance of this interface might be obtained from the getPropertyCSSValue method of the CSSStyleDeclaration interface. A CSSPrimitiveValue object only occurs in a context of a CSS property.
  /// Conversions are allowed between absolute values (from millimeters to centimeters, from degrees to radians, and so on) but not between relative values. (For example, a pixel value cannot be converted to a centimeter value.) Percentage values can't be converted since they are relative to the parent value (or another property value). There is one exception for color percentage values: since a color percentage value is relative to the range 0-255, a color percentage value can be converted to a number; (see also the RGBColor interface).
  /// </summary>
  /// <developer>niklas@protocol7.com</developer>
  /// <completed>100</completed>
  public class CssPrimitiveValue : CssValue, ICssPrimitiveValue
  {
    internal static CssPrimitiveValue Create(Match match, bool readOnly)
    {
      if(match.Groups["length"].Success)
      {
        return new CssPrimitiveLengthValue(match.Groups["lengthNumber"].Value, match.Groups["lengthUnit"].Value, readOnly);
      }
      else if(match.Groups["angle"].Success)
      {
        return new CssPrimitiveAngleValue(match.Groups["angleNumber"].Value, match.Groups["angleUnit"].Value, readOnly);
      }
      else if(match.Groups["funcname"].Success && match.Groups["funcname"].Value == "rgb")
      {
        return new CssPrimitiveRgbValue(match.Groups["func"].Value, readOnly);
      }
      else if(match.Groups["colorIdent"].Success && CssPrimitiveRgbValue.IsColorName(match.Groups["colorIdent"].Value))
      {                                                         
        return new CssPrimitiveRgbValue(match.Groups["colorIdent"].Value, readOnly);
      }
      else
      {
        return new CssPrimitiveValue(match, readOnly);
      }
    }

    #region Constructors
    /// <summary>
    /// Constructor called by CssValue.GetCssValue()
    /// </summary>
    /// <param name="match">A Regex that matches a CssPrimitiveValue</param>
    /// <param name="readOnly">Specifiec if this instance is read-only</param>
    private CssPrimitiveValue(Match match, bool readOnly) : this(match.Value, readOnly)
    {
      if(match.Groups["func"].Success)
      {
        switch(match.Groups["funcname"].Value){
          case "rect":
            _primitiveType = CssPrimitiveType.Rect;
            rectValue = new Rect(match.Groups["funcvalue"].Value, ReadOnly);
            break;
          case "attr":
            _primitiveType = CssPrimitiveType.Attr;
            stringValue = match.Groups["funcvalue"].Value;
            break;
          case "url":
            stringValue = match.Groups["funcvalue"].Value;
            _primitiveType = CssPrimitiveType.Uri;
            break;
          case "counter":
            throw new NotImplementedException("Counters are not implemented");
            //_primitiveType = CssPrimitiveType.CSS_COUNTER;
        }
      }
      else if(match.Groups["freqTimeNumber"].Success)
      {
        floatValue = Single.Parse(match.Groups["numberValue2"].Value, CssNumber.Format);

        switch(match.Groups["unit2"].Value)
        {
          case "Hz":
            _primitiveType = CssPrimitiveType.Hz;
            break;
          case "kHz":
            _primitiveType = CssPrimitiveType.KHz;
            break;
          case "in":
            _primitiveType = CssPrimitiveType.In;
            break;
          case "s":
            _primitiveType = CssPrimitiveType.S;
            break;
          case "ms":
            _primitiveType = CssPrimitiveType.Ms;
            break;
          case "%":
            _primitiveType = CssPrimitiveType.Percentage;
            break;
          default:
            _primitiveType = CssPrimitiveType.Number;
            break;
        }
      }
      else if(match.Groups["string"].Success)
      {
        stringValue = match.Groups["stringvalue"].Value;
        _primitiveType = CssPrimitiveType.String;
      }
      else if(match.Groups["colorIdent"].Success)
      {
        string val = match.Value;
        stringValue = match.Value;
        _primitiveType = CssPrimitiveType.Ident;
      }
      else
      {
        _primitiveType = CssPrimitiveType.Unknown;
      }
    }

    protected CssPrimitiveValue(string cssText, bool readOnly) : base(CssValueType.PrimitiveValue, cssText, readOnly)
    {
    }

    /// <summary>
    /// Only for internal use
    /// </summary>
    protected CssPrimitiveValue() : base()
    {
      _cssValueType = CssValueType.PrimitiveValue;
    }
    #endregion

    #region Private fields
    protected double floatValue = double.NaN;
    private string stringValue = null;
    private Rect rectValue = null;
    protected RgbColor colorValue = null;
    #endregion

    #region Internal methods
    public override CssValue GetAbsoluteValue(string propertyName, XmlElement elm)
    {
      if(propertyName == "font-size")
      {
        return new CssAbsPrimitiveLengthValue(this, propertyName, elm);
      }
      else
      {
        return new CssAbsPrimitiveValue(this, propertyName, elm);
      }
    }

    #endregion

    public string PrimitiveTypeAsString
    {
      get
      {
        switch(PrimitiveType)
        {
          case CssPrimitiveType.Percentage:
            return "%";
          case CssPrimitiveType.Ems:
            return "em";
          case CssPrimitiveType.Exs:
            return "ex";
          case CssPrimitiveType.Px:
            return "px";
          case CssPrimitiveType.Cm:
            return "cm";
          case CssPrimitiveType.Mm:
            return "mm";
          case CssPrimitiveType.In:
            return "in";
          case CssPrimitiveType.Pt:
            return "pt";
          case CssPrimitiveType.Pc:
            return "pc";
          case CssPrimitiveType.Deg:
            return "deg";
          case CssPrimitiveType.Rad:
            return "rad";
          case CssPrimitiveType.Grad:
            return "grad";
          case CssPrimitiveType.Ms:
            return "ms";
          case CssPrimitiveType.S:
            return "s";
          case CssPrimitiveType.Hz:
            return "hz";
          case CssPrimitiveType.KHz:
            return "khz";
          default:
            return String.Empty;
        }
      }
    }

    protected internal virtual void _setCssText(string cssText)
    {
    }

    public override string CssText
    {
      get
      {
        if(PrimitiveType == CssPrimitiveType.String)
        {
          return "\"" + GetStringValue() + "\"";
        }
        else
        {
          return base.CssText;
        }
      }
      set
      {
        if(ReadOnly)
        {
          throw new DomException(DomExceptionType.InvalidModificationErr, "CssPrimitiveValue is read-only");
        }
        else
        {
          _setCssText(value);
        }
      }
    }

    #region Implementation of ICssPrimitiveValue
    /// <summary>
    /// A method to set the float value with a specified unit. If the property attached with this value can not accept the specified unit or the float value, the value will be unchanged and a DOMException will be raised.
    /// </summary>
    /// <param name="unitType">A unit code as defined above. The unit code can only be a float unit type (i.e. CSS_NUMBER, CSS_PERCENTAGE, CSS_EMS, CSS_EXS, CSS_PX, CSS_CM, CSS_MM, CSS_IN, CSS_PT, CSS_PC, CSS_DEG, CSS_RAD, CSS_GRAD, CSS_MS, CSS_S, CSS_HZ, CSS_KHZ, CSS_DIMENSION).</param>
    /// <param name="floatValue">The new float value.</param>
    /// <exception cref="DomException">INVALID_ACCESS_ERR: Raised if the CSS value doesn't contain a float value.</exception>
    /// <exception cref="DomException">NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</exception>
    public virtual void SetFloatValue(CssPrimitiveType unitType, double floatValue)
    {
      if(this.ReadOnly)
      {
        throw new DomException(DomExceptionType.NoModificationAllowedErr);
      }
      else
      {
        this._setType(unitType);
        _setFloatValue(floatValue);
      }
    }

    protected void _setFloatValue(string floatValue)
    {
      System.Globalization.NumberFormatInfo nfi = new System.Globalization.NumberFormatInfo();
      nfi.NumberDecimalSeparator = ".";
      _setFloatValue(Double.Parse(floatValue, nfi));
    }

    protected void _setFloatValue(double floatValue)
    {
      this.floatValue = floatValue;
    }

    /// <summary>
    /// This method is used to get a float value in a specified unit. If this CSS value doesn't contain a float value or can't be converted into the specified unit, a DOMException is raised
    /// </summary>
    /// <param name="unitType">A unit code to get the float value. The unit code can only be a float unit type (i.e. CSS_NUMBER, CSS_PERCENTAGE, CSS_EMS, CSS_EXS, CSS_PX, CSS_CM, CSS_MM, CSS_IN, CSS_PT, CSS_PC, CSS_DEG, CSS_RAD, CSS_GRAD, CSS_MS, CSS_S, CSS_HZ, CSS_KHZ, CSS_DIMENSION).</param>
    /// <returns>The float value in the specified unit.</returns>
    /// <exception cref="DomException">INVALID_ACCESS_ERR: Raised if the CSS value doesn't contain a float value.</exception>
    public virtual double GetFloatValue(CssPrimitiveType unitType)
    {
      if(double.IsNaN(floatValue))
      {
        throw new DomException(DomExceptionType.InvalidAccessErr);
      }
      else
      {
        double ret = double.NaN;
        switch(PrimitiveType)
        {
          case CssPrimitiveType.Percentage:
            if(unitType == CssPrimitiveType.Percentage) ret = floatValue;
            break;
          case CssPrimitiveType.Ms:
            if(unitType == CssPrimitiveType.Ms) ret = floatValue;
            else if(unitType == CssPrimitiveType.S) ret = floatValue / 1000;
            break;
          case CssPrimitiveType.S:
            if(unitType == CssPrimitiveType.Ms) ret = floatValue * 1000;
            else if(unitType == CssPrimitiveType.S) ret = floatValue;
            break;
          case CssPrimitiveType.Hz:
            if(unitType == CssPrimitiveType.Hz) ret = floatValue;
            else if(unitType == CssPrimitiveType.KHz) ret = floatValue / 1000;
            break;
          case CssPrimitiveType.KHz:
            if(unitType == CssPrimitiveType.Hz) ret = floatValue * 1000;
            else if(unitType == CssPrimitiveType.KHz) ret = floatValue;
            break;
          case CssPrimitiveType.Dimension:
            if(unitType == CssPrimitiveType.Dimension) ret = floatValue;
            break;
        }
        if(double.IsNaN(ret))
        {
          throw new DomException(DomExceptionType.InvalidAccessErr);
        }
        else return ret;
      }

    }

    /// <summary>
    /// A method to set the string value with the specified unit. If the property attached to this value can't accept the specified unit or the string value, the value will be unchanged and a DOMException will be raised.
    /// </summary>
    /// <param name="stringType">A string code as defined above. The string code can only be a string unit type (i.e. CSS_STRING, CSS_URI, CSS_IDENT, and CSS_ATTR).</param>
    /// <param name="stringValue">The new string value</param>
    /// <exception cref="DomException">INVALID_ACCESS_ERR: Raised if the CSS value doesn't contain a string value.</exception>
    /// <exception cref="DomException">NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</exception>
    public virtual void SetStringValue(CssPrimitiveType stringType, string stringValue)
    {
      throw new NotImplementedException("SetStringValue");
    }

    /// <summary>
    /// This method is used to get the string value. If the CSS value doesn't contain a string value, a DOMException is raised.
    /// Note: Some properties (like 'font-family' or 'voice-family') convert a whitespace separated list of idents to a string.
    /// </summary>
    /// <returns>The string value in the current unit. The current primitiveType can only be a string unit type (i.e. CSS_STRING, CSS_URI, CSS_IDENT and CSS_ATTR).</returns>
    /// <exception cref="DomException">INVALID_ACCESS_ERR: Raised if the CSS value doesn't contain a string value.</exception>
    public virtual string GetStringValue()
    {
      string ret = null;
      switch(PrimitiveType)
      {
        case CssPrimitiveType.String:
        case CssPrimitiveType.Uri:
        case CssPrimitiveType.Ident:
        case CssPrimitiveType.Attr:
          ret = stringValue;
          break;
      }
      if(ret != null) return ret;
      else throw new DomException(DomExceptionType.InvalidAccessErr);
    }

    /// <summary>
    /// This method is used to get the Counter value. If this CSS value doesn't contain a counter value, a DOMException is raised. Modification to the corresponding style property can be achieved using the Counter interface
    /// </summary>
    /// <returns>The Counter value.</returns>
    /// <exception cref="DomException">INVALID_ACCESS_ERR: Raised if the CSS value doesn't contain a Counter value (e.g. this is not CSS_COUNTER).</exception>
    public virtual SharpVectors.Dom.Css.ICounter GetCounterValue()
    {
      throw new NotImplementedException("GetCounterValue");
    }

    /// <summary>
    /// This method is used to get the Rect value. If this CSS value doesn't contain a rect value, a DOMException is raised. Modification to the corresponding style property can be achieved using the Rect interface.
    /// </summary>
    /// <returns>The Rect value.</returns>
    /// <exception cref="DomException">INVALID_ACCESS_ERR: Raised if the CSS value doesn't contain a rect value.</exception>
    public virtual SharpVectors.Dom.Css.IRect GetRectValue()
    {
      if(PrimitiveType == CssPrimitiveType.Rect) return rectValue;
      else throw new DomException(DomExceptionType.InvalidAccessErr);
    }

    /// <summary>
    /// This method is used to get the RGB color. If this CSS value doesn't contain a RGB color value, a DOMException is raised. Modification to the corresponding style property can be achieved using the RGBColor interface.
    /// </summary>
    /// <returns>the RGB color value.</returns>
    /// <exception cref="DomException">INVALID_ACCESS_ERR: Raised if the CSS value doesn't contain a rgb value.</exception>
    public virtual SharpVectors.Dom.Css.IRgbColor GetRgbColorValue()
    {
      if(PrimitiveType == CssPrimitiveType.RgbColor) return colorValue;
      else throw new DomException(DomExceptionType.InvalidAccessErr);
    }

    private CssPrimitiveType _primitiveType = CssPrimitiveType.Unknown;
    protected void _setType(CssPrimitiveType type)
    {
      _primitiveType = type;
    }

    /// <summary>
    /// The type of the value as defined by the constants specified above.
    /// </summary>
    public virtual CssPrimitiveType PrimitiveType
    {
      get
      {
        return _primitiveType;
      }
    }
    #endregion
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.