// // $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.css2.font; 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.CssIdent; import org.w3c.css.values.CssNumber; import org.w3c.css.values.CssOperator; import org.w3c.css.values.CssValue; import java.util.Vector; /** */ public class FontWeight extends CssProperty implements FontConstant { Vector values = new Vector(); private static CssIdent all = new CssIdent("all"); /** * Create a new FontWeight */ public FontWeight() { // nothing to do } /** * Creates a new FontWeight * * @param expression the font weight * @throws InvalidParamException values are incorrect */ public FontWeight(ApplContext ac, CssExpression expression, boolean check) throws InvalidParamException { char op = expression.getOperator(); CssValue val = expression.getValue(); setByUser(); if (val.equals(all)) { values.addElement(all); expression.next(); return; } do { if (expression.getValue() instanceof CssIdent) { int hash = ((CssIdent) expression.getValue()).hashCode(); int i = 0; for (; i < hash_values.length; i++) { if (hash_values[i] == hash) { values.addElement(FONTWEIGHT[i]); break; } } if (i == FONTWEIGHT.length) { throw new InvalidParamException("value", expression.getValue(), getPropertyName(), ac); } } else if (val instanceof CssNumber) { CssNumber num = (CssNumber) val; if (num.isInteger()) { int vali = num.getInt(); if (isCorrectWeight(vali)) { // verify the entire part number values.addElement(val); } } else { throw new InvalidParamException("value", expression.getValue(), getPropertyName(), ac); } } else { throw new InvalidParamException("value", expression.getValue(), getPropertyName(), ac); } op = expression.getOperator(); expression.next(); } while (op == CssOperator.COMMA); } public FontWeight(ApplContext ac, CssExpression expression) throws InvalidParamException { this(ac, expression, false); } /** * Returns the current value */ public Object get() { return values.elementAt(0); } /** * Returns a string representation of the object. */ public String toString() { String ret = ""; int i = 0; while (i < values.size()) { ret += ", " + values.elementAt(i); i++; } return ret.substring(2); } /** * Returns the name of this property */ public String getPropertyName() { return "font-weight"; } /** * Add this property to the CssStyle. * * @param style The CssStyle */ public void addToStyle(ApplContext ac, CssStyle style) { Css2Style style0 = (Css2Style) style; if (style0.fontWeight != null) { style0.addRedefinitionWarning(ac, this); } style0.fontWeight = 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 ((Css2Style) style).getFaceFontWeight(); } else { return ((Css2Style) style).fontWeight; } } /** * Compares two properties for equality. * * @param property The other property. */ public boolean equals(CssProperty property) { // @@TODO return false; } /** * Is the value of this property is a default value. * It is used by all macro for the function print */ public boolean isDefault() { return false; } private boolean isCorrectWeight(int val) { val = val / 100; return val > 0 && val < 10; } private static int[] hash_values; static { hash_values = new int[FONTWEIGHT.length]; for (int i = 0; i < FONTWEIGHT.length; i++) hash_values[i] = FONTWEIGHT[i].hashCode(); } }