/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2007 - 2008, Open Source Geospatial Foundation (OSGeo) * (C) 2008 - 2009, Johann Sorel * (C) 2011, 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.swing.render2d.control.edition; import com.vividsolutions.jts.geom.Geometry; import com.vividsolutions.jts.geom.GeometryCollection; import java.awt.event.MouseEvent; import java.util.Collections; import org.geotoolkit.map.FeatureMapLayer; import org.geotoolkit.gui.swing.render2d.JMap2D; import org.opengis.feature.Feature; /** * Edition tool to remove geometry parts in geometry collections. * * @author Johann Sorel * @module */ public class GeometryCollectionPartDeleteDelegate extends AbstractFeatureEditionDelegate { private Feature feature = null; private Geometry geometry = null; public GeometryCollectionPartDeleteDelegate(final JMap2D map, final FeatureMapLayer candidate) { super(map,candidate); } private void reset(){ feature = null; geometry = null; decoration.setGeometries(null); } private void setCurrentFeature(final Feature feature){ this.feature = feature; if(feature != null){ this.geometry = helper.toObjectiveCRS(feature); if(geometry != null){ geometry.clone(); } }else{ this.geometry = null; } decoration.setGeometries(Collections.singleton(this.geometry)); } @Override public void mouseClicked(final MouseEvent e) { final int button = e.getButton(); if (button == MouseEvent.BUTTON1) { if(geometry == null){ setCurrentFeature(helper.grabFeature(e.getX(), e.getY(), false)); }else if(geometry instanceof GeometryCollection){ geometry = helper.deleteSubGeometry((GeometryCollection)geometry, e.getX(), e.getY()); decoration.setGeometries(Collections.singleton(this.geometry)); } } else if (button == MouseEvent.BUTTON3 && geometry != null) { helper.sourceModifyFeature(feature, geometry, true); reset(); } } }