/******************************************************************************* * Copyright (c) 2011 BestSolution.at and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Tom Schindl<tom.schindl@bestsolution.at> - initial API and implementation *******************************************************************************/ package at.bestsolution.efxclipse.tooling.css.jfx.scene.shape; import static at.bestsolution.efxclipse.tooling.css.CssDialectExtension.Util.createEnumProperties; import static at.bestsolution.efxclipse.tooling.css.CssDialectExtension.Util.createReflective; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import at.bestsolution.efxclipse.tooling.css.CssDialectExtension.BooleanProperty; import at.bestsolution.efxclipse.tooling.css.CssDialectExtension.Property; import at.bestsolution.efxclipse.tooling.css.CssDialectExtension.Proposal; import at.bestsolution.efxclipse.tooling.css.jfx.JFXDialectExtension.FxNumberProperty; import at.bestsolution.efxclipse.tooling.css.jfx.JFXDialectExtension.PaintProperty; import at.bestsolution.efxclipse.tooling.css.jfx.JFXDialectExtension.SizeProperty; public class Shape { public static List<Property> init() { List<Property> properties = new ArrayList<Property>(); properties.addAll(createReflective(PaintProperty.class, "-fx-fill","-fx-stroke")); properties.addAll(createReflective(BooleanProperty.class, "-fx-smooth")); properties.addAll(createReflective(StrokeDashArray.class, "-fx-stroke-dash-array")); properties.addAll(createReflective(FxNumberProperty.class, "-fx-stroke-dash-offset","-fx-stroke-miter-limit")); properties.addAll(createEnumProperties(Arrays.asList("square","butt","round"), "-fx-stroke-line-cap")); properties.addAll(createEnumProperties(Arrays.asList("miter","bevel","round"), "-fx-stroke-line-join")); properties.addAll(createReflective(SizeProperty.class, "-fx-stroke-width")); return properties; } public static class StrokeDashArray extends Property { private List<Proposal> proposals = new ArrayList<Proposal>(); public StrokeDashArray(String name) { super(name); } @Override public List<Proposal> getInitialTermProposals() { return proposals; } } }