Package org.w3c.dom.css

Examples of org.w3c.dom.css.CSSPrimitiveValue


                                       Context c) {
        if (e == null) {
            throw new RuntimeException
                (Messages.formatMessage("element.needed", null));
        }
        CSSPrimitiveValue val = c.getFontSize(e);
        short type = val.getPrimitiveType();
        float fs = cssToUserSpace
            (type,
             val.getFloatValue(type),
             (SVGElement)HiddenChildElementSupport.getParentElement(e),
             d,
             c);
        float xh = c.getXHeight(e);
        return v / xh / fs;
View Full Code Here


                                       Context c) {
        if (e == null) {
            throw new RuntimeException
                (Messages.formatMessage("element.needed", null));
        }
        CSSPrimitiveValue val = c.getFontSize(e);
        short type = val.getPrimitiveType();
        float fs = cssToUserSpace
            (type,
             val.getFloatValue(type),
             (SVGElement)HiddenChildElementSupport.getParentElement(e),
             d,
             c);
        float xh = c.getXHeight(e);
        return v * xh * fs;
 
View Full Code Here

     * @param ctx the context used to resolve relative value
     */
    public static float cssOtherCoordinateToUserSpace(CSSValue v,
                                                      String prop,
                                                      Context ctx) {
        CSSPrimitiveValue pv = (CSSPrimitiveValue)v;
        short type = pv.getPrimitiveType();
        return cssToUserSpace(pv.getFloatValue(type),
                              type,
                              OTHER_LENGTH,
                              ctx);
    }
View Full Code Here

     * @param ctx the context used to resolve relative value
     */
    public static float cssHorizontalCoordinateToUserSpace(CSSValue v,
                                                           String prop,
                                                           Context ctx) {
        CSSPrimitiveValue pv = (CSSPrimitiveValue)v;
        short type = pv.getPrimitiveType();
        return cssToUserSpace(pv.getFloatValue(type),
                              type,
                              HORIZONTAL_LENGTH,
                              ctx);
    }
View Full Code Here

     * @param ctx the context used to resolve relative value
     */
    public static float cssVerticalCoordinateToUserSpace(CSSValue v,
                                                         String prop,
                                                         Context ctx) {
        CSSPrimitiveValue pv = (CSSPrimitiveValue)v;
        short type = pv.getPrimitiveType();
        return cssToUserSpace(pv.getFloatValue(type),
                              type,
                              VERTICAL_LENGTH,
                              ctx);
    }
View Full Code Here

     * @param ctx the context used to resolve relative value
     */
    public static float cssOtherLengthToUserSpace(CSSValue v,
                                                  String prop,
                                                  Context ctx) {
        CSSPrimitiveValue pv = (CSSPrimitiveValue)v;
        short type = pv.getPrimitiveType();
        return cssLengthToUserSpace(pv.getFloatValue(type),
                                    prop,
                                    type,
                                    OTHER_LENGTH,
                                    ctx);
    }
View Full Code Here

     * @param ctx the context used to resolve relative value
     */
    public static float cssHorizontalLengthToUserSpace(CSSValue v,
                                                       String prop,
                                                       Context ctx) {
        CSSPrimitiveValue pv = (CSSPrimitiveValue)v;
        short type = pv.getPrimitiveType();
        return cssLengthToUserSpace(pv.getFloatValue(type),
                                    prop,
                                    type,
                                    HORIZONTAL_LENGTH,
                                    ctx);
    }
View Full Code Here

     * @param ctx the context used to resolve relative value
     */
    public static float cssVerticalLengthToUserSpace(CSSValue v,
                                                     String prop,
                                                     Context ctx) {
        CSSPrimitiveValue pv = (CSSPrimitiveValue)v;
        short type = pv.getPrimitiveType();
        return cssLengthToUserSpace(pv.getFloatValue(type),
                                    prop,
                                    type,
                                    VERTICAL_LENGTH,
                                    ctx);
    }
View Full Code Here

     * @param v the value to convert
     * @param d HORIZONTAL_LENGTH, VERTICAL_LENGTH, or OTHER_LENGTH
     * @param ctx the context
     */
    protected static float pixelsToEms(float v, short d, Context ctx) {
        CSSPrimitiveValue fontSize = ctx.getFontSize();
        short type = fontSize.getPrimitiveType();
        return v / cssToUserSpace(fontSize.getFloatValue(type),
                                  type,
                                  d,
                                  ctx);
    }
View Full Code Here

     * @param v the value to convert
     * @param d HORIZONTAL_LENGTH, VERTICAL_LENGTH, or OTHER_LENGTH
     * @param ctx the context
     */
    protected static float emsToPixels(float v, short d, Context ctx) {
        CSSPrimitiveValue fontSize = ctx.getFontSize();
        short type = fontSize.getPrimitiveType();
        return v * cssToUserSpace(fontSize.getFloatValue(type),
                                  type,
                                  d,
                                  ctx);
    }
View Full Code Here

TOP

Related Classes of org.w3c.dom.css.CSSPrimitiveValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.