// // $Id: ATSCColor.java,v 1.3 2005/09/14 15:14:18 ylafon Exp $ // 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.CssStyle; import org.w3c.css.properties.css1.CssProperty; import org.w3c.css.util.ApplContext; import org.w3c.css.util.InvalidParamException; import org.w3c.css.values.CssExpression; import org.w3c.css.values.CssIdent; import org.w3c.css.values.CssValue; /** *
* Value: <color>
* Initial: UA specific
* Applies to: all elements
* Inherited: yes
* Percentage values: N/A
*
* This property describes the text color of an element (often referred to as * the foreground color). There are different ways to specify red: *
* EM { color: red } /* natural language * /
* EM { color: rgb(255,0,0) } /* RGB range 0-255 * /
*
* @version $Revision: 1.3 $
*/
public class ATSCColor extends CssProperty {
CssValue color;
/**
* Create a new ATSCColor
*/
public ATSCColor() {
color = inherit;
}
/**
* Set the value of the property
* @param expression The expression for this property
* @exception InvalidParamException Values are incorrect
*/
public ATSCColor(ApplContext ac, CssExpression expression, boolean check)
throws InvalidParamException {
if(check && expression.getCount() > 1) {
throw new InvalidParamException("unrecognize", ac);
}
CssValue val = expression.getValue();
setByUser();
if (val.equals(inherit)) {
color = inherit;
expression.next();
} else if (val instanceof org.w3c.css.values.ATSCColor ||
val instanceof org.w3c.css.values.CssColor) {
color = val;
expression.next();
} else if (val instanceof CssIdent) {
color = new org.w3c.css.values.ATSCColor(ac, (String) val.get());
expression.next();
} else {
throw new InvalidParamException("value", expression.getValue(),
getPropertyName(), ac);
}
}
public ATSCColor(ApplContext ac, CssExpression expression)
throws InvalidParamException {
this(ac, expression, false);
}
/**
* Returns the value of this property
*/
public Object get() {
return color;
}
/**
* Returns the color
*/
public org.w3c.css.values.ATSCColor getColor() {
if (color.equals(inherit)) {
/*
System.err.println("[ERROR] org.w3c.css.properties.CssColor");
System.err.println("[ERROR] value is inherited");
*/
return null;
} else {
return (org.w3c.css.values.ATSCColor) color;
}
}
/**
* Returns true if this property is "softly" inherited
* e.g. his value equals inherit
*/
public boolean isSoftlyInherited() {
return color.equals(inherit);
}
/**
* Returns a string representation of the object.
*/
public String toString() {
return color.toString();
}
/**
* Add this property to the CssStyle.
*
* @param style The CssStyle
*/
public void addToStyle(ApplContext ac, CssStyle style) {
ATSCStyle style0 = (ATSCStyle) style;
if (style0.ATSCcolor != null) {
style0.addRedefinitionWarning(ac, this);
}
style0.ATSCcolor = 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 ((ATSCStyle) style).getColorATSC();
} else {
return ((ATSCStyle) style).ATSCcolor;
}
}
/**
* Compares two properties for equality.
*
* @param value The other property.
*/
public boolean equals(CssProperty property) {
return (property instanceof ATSCColor &&
color.equals(((ATSCColor) property).color));
}
/**
* Returns the name of this property
*/
public String getPropertyName() {
return "color";
}
}