/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2014, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library 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 * Lesser General Public License for more details. */ package org.geotoolkit.gui.javafx.style; import java.awt.Color; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.fxml.FXML; import static org.geotoolkit.gui.javafx.style.FXStyleElementController.getStyleFactory; import org.geotoolkit.map.MapLayer; import org.opengis.style.Halo; /** * * @author Johann Sorel (Geomatys) */ public class FXHalo extends FXStyleElementController<Halo>{ @FXML protected FXFill uiFill; @FXML protected FXNumberExpression uiRadius; @Override public Class<Halo> getEditedClass() { return Halo.class; } @Override public Halo newValue() { return getStyleFactory().halo(Color.WHITE, 1); } @Override public void initialize() { super.initialize(); final ChangeListener changeListener = (ChangeListener) (ObservableValue observable, Object oldValue, Object newValue) -> { if(updating) return; value.set(getStyleFactory().halo(uiFill.valueProperty().get(), uiRadius.valueProperty().get())); }; uiFill.valueProperty().addListener(changeListener); uiRadius.valueProperty().addListener(changeListener); } @Override public void setLayer(MapLayer layer) { super.setLayer(layer); uiFill.setLayer(layer); uiRadius.setLayer(layer); } @Override protected void updateEditor(Halo styleElement) { uiFill.valueProperty().setValue(styleElement.getFill()); uiRadius.valueProperty().setValue(styleElement.getRadius()); } }