All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.css.properties.css3.CssGlyphOrVert Maven / Gradle / Ivy

The newest version!
//
// $Id: CssGlyphOrVert.java,v 1.2 2010-01-05 13:49:52 ylafon Exp $
// From Sijtsche de Jong ([email protected])
//
// (c) COPYRIGHT 1995-2000  World Wide Web Consortium (MIT, INRIA, Keio University)
// Please first read the full copyright statement at
// http://www.w3.org/Consortium/Legal/copyright-software-19980720

package org.w3c.css.properties.css3;

import org.w3c.css.parser.CssStyle;
import org.w3c.css.properties.css.CssProperty;
import org.w3c.css.util.ApplContext;
import org.w3c.css.util.InvalidParamException;
import org.w3c.css.values.CssAngle;
import org.w3c.css.values.CssExpression;
import org.w3c.css.values.CssIdent;
import org.w3c.css.values.CssValue;

/**
 *  

* Value: <angle> || auto || inherit
* Initial:auto
* Applies to:all elements
* Inherited:yes
* Percentages:no
* Media::visual *

* glyph-orientation-vertical' controls glyph orientation when the primary * text advance direction is vertical. */ public class CssGlyphOrVert extends CssProperty { CssValue vert; CssIdent auto = new CssIdent("auto"); CssIdent inline = new CssIdent("inline"); CssIdent upright = new CssIdent("upright"); /** * Create a new CssGlyphOrVert */ public CssGlyphOrVert() { vert = auto; } /** * Create a new CssGlyphOrVert * * @param expression The expression for this property 8 @exception InvalidParamException Incorrect value */ public CssGlyphOrVert(ApplContext ac, CssExpression expression, boolean check) throws InvalidParamException { setByUser(); CssValue val = expression.getValue(); if (val.equals(inherit)) { vert = inherit; expression.next(); } else if (val instanceof CssAngle) { vert = val; expression.next(); } else if (val instanceof CssIdent) { if (val.equals(auto)) { vert = val; expression.next(); } else if (val.equals(inline)) { vert = val; expression.next(); } else if (val.equals(upright)) { vert = val; expression.next(); } else { throw new InvalidParamException("value", val.toString(), getPropertyName(), ac); } } else { throw new InvalidParamException("value", val.toString(), getPropertyName(), ac); } } public CssGlyphOrVert(ApplContext ac, CssExpression expression) throws InvalidParamException { this(ac, expression, false); } /** * Add this property to the CssStyle * * @param style The CssStyle */ public void addToStyle(ApplContext ac, CssStyle style) { if (((Css3Style) style).cssGlyphOrVert != null) style.addRedefinitionWarning(ac, this); ((Css3Style) style).cssGlyphOrVert = this; } /** * Get this property in the style. * * @param style The style where the property is * @param resolve if true, resolve the style to find this property */ public CssProperty getPropertyInStyle(CssStyle style, boolean resolve) { if (resolve) { return ((Css3Style) style).getGlyphOrVert(); } else { return ((Css3Style) style).cssGlyphOrVert; } } /** * Compares two properties for equality. * * @param value The other property. */ public boolean equals(CssProperty property) { return (property instanceof CssGlyphOrVert && vert.equals(((CssGlyphOrVert) property).vert)); } /** * Returns the name of this property */ public String getPropertyName() { return "glyph-orientation-vertical"; } /** * Returns the value of this property */ public Object get() { return vert; } /** * Returns true if this property is "softly" inherited */ public boolean isSoftlyInherited() { return vert.equals(inherit); } /** * Returns a string representation of the object */ public String toString() { return vert.toString(); } /** * Is the value of this property a default value * It is used by alle macro for the function print */ public boolean isDefault() { return vert == auto; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy