/*
 * Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package javafx.css;

import javafx.css.converter.FontConverter;
import javafx.css.converter.SizeConverter;
import javafx.css.converter.StringConverter;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javafx.scene.text.Font;
import javafx.scene.text.FontPosture;
import javafx.scene.text.FontWeight;

An partial implementation of CssMetaData for Font properties which includes the font sub-properties: weight, style, family and size.
Type parameters:
  • <S> – The type of Styleable
Since:JavaFX 8.0
/** * An partial implementation of CssMetaData for Font properties which * includes the font sub-properties: weight, style, family and size. * @param <S> The type of Styleable * @since JavaFX 8.0 */
public abstract class FontCssMetaData<S extends Styleable> extends CssMetaData<S, Font> {
Constructs a FontCSSMetaData object from the specified property and initial Font. The property name is concatenated with "-weight", "-style", "-family" and "-size" to create the sub-properties. For example, new FontCssMetaData<Text>("-fx-font", Font.getDefault()); will create a CssMetaData for "-fx-font" with sub-properties: "-fx-font-weight", "-fx-font-style", "-fx-font-family" and "-fx-font-size"
Params:
  • property – the property name
  • initial – the initial font
/** * Constructs a FontCSSMetaData object from the specified property and initial Font. * {@literal The property name is concatenated with "-weight", "-style", * "-family" and "-size" to create the sub-properties.} * For example, * {@code new FontCssMetaData<Text>("-fx-font", Font.getDefault());} * {@literal will create a CssMetaData for "-fx-font" with sub-properties: * "-fx-font-weight", "-fx-font-style", "-fx-font-family" and "-fx-font-size"} * @param property the property name * @param initial the initial font */
public FontCssMetaData(String property, Font initial) { super(property, FontConverter.getInstance(), initial, true, createSubProperties(property, initial)); } private static <S extends Styleable> List<CssMetaData<? extends Styleable, ?>> createSubProperties(String property, Font initial) { final List<CssMetaData<S, ?>> subProperties = new ArrayList<>(); final Font defaultFont = initial != null ? initial : Font.getDefault(); final CssMetaData<S, String> FAMILY = new CssMetaData<S, String>(property.concat("-family"), StringConverter.getInstance(), defaultFont.getFamily(), true) { @Override public boolean isSettable(S styleable) { return false; } @Override public StyleableProperty<String> getStyleableProperty(S styleable) { return null; } }; subProperties.add(FAMILY); final CssMetaData<S, Number> SIZE = new CssMetaData<S, Number>(property.concat("-size"), SizeConverter.getInstance(), defaultFont.getSize(), true) { @Override public boolean isSettable(S styleable) { return false; } @Override public StyleableProperty<Number> getStyleableProperty(S styleable) { return null; } }; subProperties.add(SIZE); final CssMetaData<S, FontPosture> STYLE = new CssMetaData<S, FontPosture>(property.concat("-style"), FontConverter.FontStyleConverter.getInstance(), FontPosture.REGULAR, true) { @Override public boolean isSettable(S styleable) { return false; } @Override public StyleableProperty<FontPosture> getStyleableProperty(S styleable) { return null; } }; subProperties.add(STYLE); final CssMetaData<S, FontWeight> WEIGHT = new CssMetaData<S, FontWeight>(property.concat("-weight"), FontConverter.FontWeightConverter.getInstance(), FontWeight.NORMAL, true) { @Override public boolean isSettable(S styleable) { return false; } @Override public StyleableProperty<FontWeight> getStyleableProperty(S styleable) { return null; } }; subProperties.add(WEIGHT); return Collections.<CssMetaData<? extends Styleable, ?>>unmodifiableList(subProperties); } }