/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2007 - 2008, Open Source Geospatial Foundation (OSGeo) * (C) 2008 - 2009, Johann Sorel * * 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 org.geotoolkit.map.FeatureMapLayer; import org.geotoolkit.gui.swing.render2d.JMap2D; import com.vividsolutions.jts.geom.MultiPoint; import com.vividsolutions.jts.geom.Point; import java.awt.event.MouseEvent; import java.util.ArrayList; import java.util.Collections; import java.util.List; /** * multi-point creation handler * * @author Johann Sorel * @module */ public class MultiPointCreationDelegate extends AbstractFeatureEditionDelegate { private MultiPoint geometry = null; private final List<Point> subGeometries = new ArrayList<Point>(); public MultiPointCreationDelegate(final JMap2D map, final FeatureMapLayer candidate) { super(map,candidate); } private void reset(){ geometry = null; subGeometries.clear(); decoration.setGeometries(null); } @Override public void mouseClicked(final MouseEvent e) { final int button = e.getButton(); if(button == MouseEvent.BUTTON1){ Point candidate = helper.toJTS(e.getX(), e.getY()); subGeometries.add(candidate); geometry = EditionHelper.createMultiPoint(subGeometries); decoration.setGeometries(Collections.singleton(geometry)); }else if(button == MouseEvent.BUTTON3){ if (subGeometries.size() > 0) { MultiPoint geo = EditionHelper.createMultiPoint(subGeometries); helper.sourceAddGeometry(geo); reset(); } decoration.setGeometries(null); } } int pressed = -1; int lastX = 0; int lastY = 0; @Override public void mousePressed(final MouseEvent e) { pressed = e.getButton(); lastX = e.getX(); lastY = e.getY(); super.mousePressed(e); } @Override public void mouseReleased(final MouseEvent e) { super.mouseReleased(e); } @Override public void mouseDragged(final MouseEvent e) { super.mouseDragged(e); } }