// // $Id$ // From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr) // // (c) COPYRIGHT MIT and INRIA, 1997. // Please first read the full copyright statement in file COPYRIGHT.html package org.w3c.css.properties.atsc; import org.w3c.css.parser.CssSelectors; 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.CssExpression; import org.w3c.css.values.CssOperator; //import org.w3c.css.values.CssValue; /** *

*    'border-color' *

*

* Value: <color>{1,4}
* Initial: the value of the 'color' property
* Applies to: all elements
* Inherited: no
* Percentage values: N/A
*

* The 'border-color' property sets the color of the four borders. 'border-color' * can have from one to four values, and the values are set on the different * sides as for 'border-width' above. *

* If no color value is specified, the value of the 'color' property of the * element itself will take its place: *

 * P {
 * color: black;
 * background: white;
 * border: solid;
 * }
 * 
*

* In the above example, the border will be a solid black line. * * @version $Revision$ */ public class CssBorderColorATSC extends CssProperty implements CssOperator { CssBorderTopColorATSC top; CssBorderBottomColorATSC bottom; CssBorderRightColorATSC right; CssBorderLeftColorATSC left; //private static CssIdent transparent = new CssIdent("transparent"); /** * Create a new CssBorderColorATSC with all four sides */ public CssBorderColorATSC(CssBorderTopColorATSC top, CssBorderBottomColorATSC bottom, CssBorderRightColorATSC right, CssBorderLeftColorATSC left) { this.top = top; this.bottom = bottom; this.left = left; this.right = right; } /** * Create a new CssBorderATSC * * @param expression The expression for this property * @throws InvalidParamException Values are incorrect */ public CssBorderColorATSC(ApplContext ac, CssExpression expression, boolean check) throws InvalidParamException { setByUser(); switch (expression.getCount()) { case 1: /* CssValue val = expression.floatValue(); if (val.equals(transparent)) { top = new CssBorderTopColorATSC(); top.face.face = transparent; expression.next(); } else if (val.equals(inherit)) { top = new CssBorderTopColorATSC(); top.face.face = inherit; expression.next(); } else{*/ top = new CssBorderTopColorATSC(ac, expression); /*bottom = new CssBorderBottomColorATSC((CssBorderFaceColorATSC) top.get()); right = new CssBorderRightColorATSC((CssBorderFaceColorATSC) top.get()); left = new CssBorderLeftColorATSC((CssBorderFaceColorATSC) top.get());*/ break; case 2: if (expression.getOperator() != SPACE) throw new InvalidParamException("operator", Character.toString(expression.getOperator()), ac); if (expression.getValue().equals(inherit)) { throw new InvalidParamException("unrecognize", ac); } top = new CssBorderTopColorATSC(ac, expression); if (expression.getValue().equals(inherit)) { throw new InvalidParamException("unrecognize", ac); } right = new CssBorderRightColorATSC(ac, expression); /*bottom = new CssBorderBottomColorATSC((CssBorderFaceColorATSC) top.get()); left = new CssBorderLeftColorATSC((CssBorderFaceColorATSC) right.get());*/ break; case 3: if (expression.getOperator() != SPACE) throw new InvalidParamException("operator", Character.toString(expression.getOperator()), ac); if (expression.getValue().equals(inherit)) { throw new InvalidParamException("unrecognize", ac); } top = new CssBorderTopColorATSC(ac, expression); if (expression.getOperator() != SPACE) throw new InvalidParamException("operator", Character.toString(expression.getOperator()), ac); if (expression.getValue().equals(inherit)) { throw new InvalidParamException("unrecognize", ac); } right = new CssBorderRightColorATSC(ac, expression); if (expression.getValue().equals(inherit)) { throw new InvalidParamException("unrecognize", ac); } bottom = new CssBorderBottomColorATSC(ac, expression); //left = new CssBorderLeftColorATSC((CssBorderFaceColorATSC) right.get()); break; case 4: if (expression.getOperator() != SPACE) throw new InvalidParamException("operator", Character.toString(expression.getOperator()), ac); if (expression.getValue().equals(inherit)) { throw new InvalidParamException("unrecognize", ac); } top = new CssBorderTopColorATSC(ac, expression); if (expression.getOperator() != SPACE) throw new InvalidParamException("operator", Character.toString(expression.getOperator()), ac); if (expression.getValue().equals(inherit)) { throw new InvalidParamException("unrecognize", ac); } right = new CssBorderRightColorATSC(ac, expression); if (expression.getOperator() != SPACE) throw new InvalidParamException("operator", Character.toString(expression.getOperator()), ac); if (expression.getValue().equals(inherit)) { throw new InvalidParamException("unrecognize", ac); } bottom = new CssBorderBottomColorATSC(ac, expression); if (expression.getValue().equals(inherit)) { throw new InvalidParamException("unrecognize", ac); } left = new CssBorderLeftColorATSC(ac, expression); break; default: if (check) { throw new InvalidParamException("unrecognize", ac); } } } public CssBorderColorATSC(ApplContext ac, CssExpression expression) throws InvalidParamException { this(ac, expression, false); } /** * Returns the value of this property */ public Object get() { return top; } /** * Returns the name of this property */ public String getPropertyName() { return "border-color"; } /** * Returns a string representation of the object. */ public String toString() { String result = ""; // top should never be null if (top != null) result += top; if (right != null) result += " " + right; if (bottom != null) result += " " + bottom; if (left != null) result += " " + left; return result; /*if (right.face.equals(left.face)) { if (top.face.equals(bottom.face)) { if (top.face.equals(right.face)) { return top.toString(); } else { return top + " " + right; } } else { return top + " " + right + " " + bottom; } } else { return top + " " + right + " " + bottom + " " + left; }*/ } /** * Set this property to be important. * Overrides this method for a macro */ public void setImportant() { if (top != null) { top.setImportant(); } if (right != null) { right.setImportant(); } if (left != null) { left.setImportant(); } if (bottom != null) { bottom.setImportant(); } } /** * Returns true if this property is important. * Overrides this method for a macro */ public boolean getImportant() { return ((top == null || top.getImportant()) && (right == null || right.getImportant()) && (left == null || left.getImportant()) && (bottom == null || bottom.getImportant())); } /** * Set the context. * Overrides this method for a macro * * @see org.w3c.css.css.CssCascadingOrder#order * @see org.w3c.css.css.StyleSheetParser#handleRule */ public void setSelectors(CssSelectors selector) { super.setSelectors(selector); if (top != null) { top.setSelectors(selector); } if (right != null) { right.setSelectors(selector); } if (bottom != null) { bottom.setSelectors(selector); } if (left != null) { left.setSelectors(selector); } } /** * Add this property to the CssStyle * * @param style The CssStyle */ public void addToStyle(ApplContext ac, CssStyle style) { if (top != null) { top.addToStyle(ac, style); } if (right != null) { right.addToStyle(ac, style); } if (left != null) { left.addToStyle(ac, style); } if (bottom != null) { bottom.addToStyle(ac, style); } } /** * 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) { throw new IllegalStateException("Can't invoke this method on the property " + getPropertyName()); } /** * Update the source file and the line. * Overrides this method for a macro * * @param line The line number where this property is defined * @param source The source file where this property is defined */ public void setInfo(int line, String source) { super.setInfo(line, source); if (top != null) { top.setInfo(line, source); } if (right != null) { right.setInfo(line, source); } if (left != null) { left.setInfo(line, source); } if (bottom != null) { bottom.setInfo(line, source); } } /** * Compares two properties for equality. * * @param value The other property. */ public boolean equals(CssProperty property) { return false; } }