
w3c.css.properties.css3.CssGap Maven / Gradle / Ivy
//
// Author: Yves Lafon
//
// COPYRIGHT (c) 1995-2018 World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang)
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.properties.css3;
import org.w3c.css.parser.CssStyle;
import org.w3c.css.util.ApplContext;
import org.w3c.css.util.InvalidParamException;
import org.w3c.css.values.CssExpression;
import org.w3c.css.values.CssValue;
import org.w3c.css.values.CssValueList;
import java.util.ArrayList;
import static org.w3c.css.values.CssOperator.SPACE;
/**
* @spec https://www.w3.org/TR/2018/WD-css-align-3-20180423/#propdef-gap
*/
public class CssGap extends org.w3c.css.properties.css.CssGap {
private CssColumnGap columnGap;
private CssRowGap rowGap;
/**
* Create a new CssGap
*/
public CssGap() {
value = initial;
columnGap = new CssColumnGap();
rowGap = new CssRowGap();
}
/**
* Create a new CssGap
*/
public CssGap(ApplContext ac, CssExpression expression,
boolean check) throws InvalidParamException {
if (check && expression.getCount() > 2) {
throw new InvalidParamException("unrecognize", ac);
}
CssValue val;
// get the separator now in case we need it.
char op = expression.getOperator();
// create the values we will fill
columnGap = new CssColumnGap();
rowGap = new CssRowGap();
val = CssRowGap.checkSyntax(ac, expression, this);
rowGap.value = val;
if (!expression.end()) {
if (op != SPACE) {
throw new InvalidParamException("operator",
((new Character(op)).toString()), ac);
}
// inherit can only be alone
if (inherit.equals(val)) {
throw new InvalidParamException("value", val.toString(),
getPropertyName(), ac);
}
val = CssRowGap.checkSyntax(ac, expression, this);
// same for value #2
if (inherit.equals(val)) {
throw new InvalidParamException("value", val.toString(),
getPropertyName(), ac);
}
columnGap.value = val;
ArrayList v = new ArrayList<>(2);
v.add(rowGap.value);
v.add(columnGap.value);
value = new CssValueList(v);
} else {
value = val;
columnGap.value = val;
}
}
public CssGap(ApplContext ac, CssExpression expression)
throws InvalidParamException {
this(ac, expression, false);
}
/**
* Is the value of this property a default value
* It is used by all macro for the function print
*/
public boolean isDefault() {
return (value == initial);
}
/**
* Add this property to the CssStyle.
*
* @param style The CssStyle
*/
public void addToStyle(ApplContext ac, CssStyle style) {
super.addToStyle(ac, style);
columnGap.addToStyle(ac, style);
rowGap.addToStyle(ac, style);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy