2026-03-17 13:31:18 -07:00

34 lines
753 B
Java

package org.apache.batik.css.engine;
import org.apache.batik.css.engine.value.Value;
import org.apache.batik.util.ParsedURL;
import org.w3c.dom.Element;
public interface CSSContext {
void checkLoadExternalResource(ParsedURL parsedURL, ParsedURL parsedURL2) throws SecurityException;
float getBlockHeight(Element element);
float getBlockWidth(Element element);
float getBolderFontWeight(float f);
CSSEngine getCSSEngineForElement(Element element);
Value getDefaultFontFamily();
float getLighterFontWeight(float f);
float getMediumFontSize();
float getPixelToMillimeter();
float getPixelUnitToMillimeter();
Value getSystemColor(String str);
boolean isDynamic();
boolean isInteractive();
}