/[schmitzm]/branches/2.0-RC2/src/skrueger/geotools/selection/FeatureMapLayerSelectionSynchronizer.java
ViewVC logotype

Diff of /branches/2.0-RC2/src/skrueger/geotools/selection/FeatureMapLayerSelectionSynchronizer.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/src/skrueger/geotools/selection/FeatureMapLayerSelectionSynchronizer.java revision 224 by alfonx, Tue Jul 14 15:57:19 2009 UTC branches/1.0-gt2-2.6/src/skrueger/geotools/selection/FeatureMapLayerSelectionSynchronizer.java revision 414 by alfonx, Thu Sep 24 13:23:08 2009 UTC
# Line 1  Line 1 
1    /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3     *
4     * This file is part of the SCHMITZM library - a collection of utility
5     * classes based on Java 1.6, focusing (not only) on Java Swing
6     * and the Geotools library.
7     *
8     * The SCHMITZM project is hosted at:
9     * http://wald.intevation.org/projects/schmitzm/
10     *
11     * This program is free software; you can redistribute it and/or
12     * modify it under the terms of the GNU Lesser General Public License
13     * as published by the Free Software Foundation; either version 3
14     * of the License, or (at your option) any later version.
15     *
16     * This program is distributed in the hope that it will be useful,
17     * but WITHOUT ANY WARRANTY; without even the implied warranty of
18     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19     * GNU General Public License for more details.
20     *
21     * You should have received a copy of the GNU Lesser General Public License (license.txt)
22     * along with this program; if not, write to the Free Software
23     * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24     * or try this link: http://www.gnu.org/licenses/lgpl.html
25     *
26     * Contributors:
27     *     Martin O. J. Schmitz - initial API and implementation
28     *     Stefan A. Krüger - additional utility classes
29     ******************************************************************************/
30  /**  /**
31   Copyright 2008 Stefan Alfons Krüger   Copyright 2008 Stefan Alfons Krüger
32    
33   atlas-framework - This file is part of the Atlas Framework   atlas-framework - This file is part of the Atlas Framework
34    
35   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; either version 2.1 of the License, or (at your option) any later version.   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; either version 2.1 of the License, or (at your option) any later version.
# Line 15  package skrueger.geotools.selection; Line 44  package skrueger.geotools.selection;
44    
45  import java.beans.PropertyChangeEvent;  import java.beans.PropertyChangeEvent;
46  import java.beans.PropertyChangeListener;  import java.beans.PropertyChangeListener;
 import java.util.Arrays;  
 import java.util.Collection;  
47  import java.util.HashSet;  import java.util.HashSet;
48    import java.util.Iterator;
49  import java.util.Set;  import java.util.Set;
50  import java.util.Vector;  import java.util.Vector;
51    
# Line 25  import javax.swing.JTable; Line 53  import javax.swing.JTable;
53  import javax.swing.ListSelectionModel;  import javax.swing.ListSelectionModel;
54  import javax.swing.event.ListSelectionListener;  import javax.swing.event.ListSelectionListener;
55    
 import org.geotools.feature.Feature;  
56  import org.geotools.map.MapLayer;  import org.geotools.map.MapLayer;
57  import org.geotools.styling.FeatureTypeStyle;  import org.geotools.styling.FeatureTypeStyle;
58  import org.geotools.styling.Style;  import org.geotools.styling.Style;
59    import org.opengis.feature.simple.SimpleFeature;
60  import org.opengis.filter.identity.FeatureId;  import org.opengis.filter.identity.FeatureId;
61    
62  import schmitzm.geotools.FilterUtil;  import schmitzm.geotools.FilterUtil;
# Line 37  import schmitzm.geotools.map.event.Featu Line 65  import schmitzm.geotools.map.event.Featu
65  import schmitzm.geotools.map.event.JMapPaneEvent;  import schmitzm.geotools.map.event.JMapPaneEvent;
66  import schmitzm.geotools.map.event.JMapPaneListener;  import schmitzm.geotools.map.event.JMapPaneListener;
67  import schmitzm.geotools.styling.StylingUtil;  import schmitzm.geotools.styling.StylingUtil;
 import schmitzm.lang.LangUtil;  
68  import skrueger.geotools.MapPaneToolBar;  import skrueger.geotools.MapPaneToolBar;
69  import skrueger.geotools.StyledLayerInterface;  import skrueger.geotools.StyledLayerInterface;
70    
# Line 138  public class FeatureMapLayerSelectionSyn Line 165  public class FeatureMapLayerSelectionSyn
165           * selection.           * selection.
166           *           *
167           * @param newSelection           * @param newSelection
168           *            A {@link Vector} of Feature-IDs that are selected.           *            A {@link Vector} of SimpleFeature-IDs that are selected.
169           */           */
170          private void changeLayerStyle(final Vector<String> newSelection) {          private void changeLayerStyle(final Vector<String> newSelection) {
                 Style selectionMapStyle = null;  
171                  try {                  try {
172                            Style originalStyle = mapLayer.getStyle();
173                          if (newSelection.isEmpty()) {                          if (newSelection.isEmpty()) {
174    
175                                  selectionMapStyle = styledLayer.getStyle();                                  // Check if the Style contains a SELECTION FTS
176                                  // LOGGER.debug("NO SELECTION .. set to original style directly");                                  
177                                    FeatureTypeStyle[] clone = originalStyle.featureTypeStyles().toArray( new FeatureTypeStyle[] {} ).clone();
178                                    
179                                    for (FeatureTypeStyle fts : clone) {
180                                            if (fts.getName() != null
181                                                            && fts.getName().equals(SELECTION_STYLING)) {
182                                                    originalStyle.featureTypeStyles().remove(fts);
183                                                    
184                                                    mapPane.refresh();
185    
186                                                    return;
187                                            }
188                                    }
189    
190                          } else {                          } else {
191                                  LOGGER.debug("SELECTION .. change style");                                  LOGGER.debug("SELECTION .. change style");
# Line 157  public class FeatureMapLayerSelectionSyn Line 196  public class FeatureMapLayerSelectionSyn
196                                  // additional styles might be selected.                                  // additional styles might be selected.
197                                  // Taking the style from the mapLayer indicated, that we have to                                  // Taking the style from the mapLayer indicated, that we have to
198                                  // remove any selection rules first.                                  // remove any selection rules first.
                                 Style originalStyle = mapLayer.getStyle();  
199    
200                                  // TODO The default style is not good here. We need                                  FeatureTypeStyle selectionFTStyle = StylingUtil
                                 // .createSelectionStyle(normalStyle, geoObj);  
                                 selectionMapStyle = StylingUtil  
201                                                  .createSelectionStyle(styledLayer.getGeoObject());                                                  .createSelectionStyle(styledLayer.getGeoObject());
                                 // selectionMapStyle = StylingUtil  
                                 // .createDefaultStyle(styledLayer.getGeoObject());  
202    
203                                  selectionMapStyle.getFeatureTypeStyles()[0]                                  selectionFTStyle.setName(SELECTION_STYLING);
                                                 .setName(SELECTION_STYLING);  
204    
205                                  /**                                  /**
206                                   *                                   *
# Line 175  public class FeatureMapLayerSelectionSyn Line 208  public class FeatureMapLayerSelectionSyn
208                                   * used on objects that are selected. <br/>                                   * used on objects that are selected. <br/>
209                                   *                                   *
210                                   * Note 1:<br/>                                   * Note 1:<br/>
211                                   * It is NEVER allowed to GeoTools extend Filter () { .. } (and write                                   * It is NEVER allowed to GeoTools extend Filter () { .. } (and
212                                   * tests into the evaluate block). Especially for the                                   * write tests into the evaluate block). Especially for the
213                                   * ShapeFileRenderer, we may only use a geotools Filter.<br/>                                   * ShapeFileRenderer, we may only use a geotools Filter.<br/>
214                                   *                                   *
215                                   * Note 2:<br/>                                   * Note 2:<br/>
216                                   * The FilterUtil.FILTER_FAC2.id(fids) wants a set of FeatureId-Objects!                                   * The FilterUtil.FILTER_FAC2.id(fids) wants a set of
217                                     * FeatureId-Objects!
218                                   */                                   */
219    
220                                  Set<FeatureId> fids = new HashSet<FeatureId>();                                  Set<FeatureId> fids = new HashSet<FeatureId>();
# Line 188  public class FeatureMapLayerSelectionSyn Line 222  public class FeatureMapLayerSelectionSyn
222                                          fids.add(FilterUtil.FILTER_FAC2.featureId(fid));                                          fids.add(FilterUtil.FILTER_FAC2.featureId(fid));
223                                  }                                  }
224    
225                                  selectionMapStyle.getFeatureTypeStyles()[0].getRules()[0]                                  selectionFTStyle.rules().get(0).setFilter(
226                                                  .setFilter(FilterUtil.FILTER_FAC2.id(fids));                                                  FilterUtil.FILTER_FAC2.id(fids));
227    
228                                  FeatureTypeStyle[] originalFeatureTypeStyles = originalStyle                                  // Maybe there has already been another selection
229                                                  .getFeatureTypeStyles();                                  // FeatureTypeStyle... Let's replace it...
230                                  FeatureTypeStyle[] newFeatureTypes;                                  boolean foundAndReplaced = false;
231                                  if (originalFeatureTypeStyles[originalFeatureTypeStyles.length - 1]                                  for (FeatureTypeStyle fts : originalStyle.featureTypeStyles()) {
232                                                  .getName() != null                                          if (fts.getName() != null
233                                                  && originalFeatureTypeStyles[originalFeatureTypeStyles.length - 1]                                                          && fts.getName().equals(SELECTION_STYLING)) {
234                                                                  .getName().equals(SELECTION_STYLING)) {                                                  foundAndReplaced = true;
235                                          newFeatureTypes = Arrays.copyOf(originalFeatureTypeStyles,                                                  fts.rules().clear();
236                                                          originalFeatureTypeStyles.length - 1);                                                  fts.rules().addAll(selectionFTStyle.rules());
237                                  } else {                                                  break;
238                                          newFeatureTypes = originalFeatureTypeStyles;                                          }
239                                    }
240                                    if (!foundAndReplaced) {
241                                            originalStyle.featureTypeStyles().add(selectionFTStyle);
242                                  }                                  }
243    
244                                  // The last FTS is the selection FTS                                  // Refresh the map
245                                  newFeatureTypes = LangUtil.extendArray(newFeatureTypes,                                  mapPane.refresh();
                                                 selectionMapStyle.getFeatureTypeStyles());  
   
                                 selectionMapStyle.setFeatureTypeStyles(newFeatureTypes);  
   
246                          }                          }
247    
                         mapLayer.setStyle(selectionMapStyle);  
                         mapPane.refresh();  
248                  } catch (Exception e) {                  } catch (Exception e) {
249                          LOGGER.error("Error while trying to create a selection style", e);                          LOGGER.error("Error while trying to create a selection style", e);
250                  }                  }
# Line 270  public class FeatureMapLayerSelectionSyn Line 301  public class FeatureMapLayerSelectionSyn
301                  // Avoid event circles in propertyChange(..)                  // Avoid event circles in propertyChange(..)
302                  selectionChangeCausedByMe = true;                  selectionChangeCausedByMe = true;
303    
304                  Collection<Feature> selectionResult = (Collection<Feature>) fse                  Iterator<SimpleFeature> fi = fse.getSelectionResult().iterator();
                                 .getSelectionResult();  
305    
306                  // reset the selection of the DpLayerSelectionModel                  // reset the selection of the DpLayerSelectionModel
307                  // layerSelModel.setValueIsAdjusting(true);                  // layerSelModel.setValueIsAdjusting(true);
308    
309                  if (selectedTool == MapPaneToolBar.TOOL_SELECTION_ADD) {                  if (selectedTool == MapPaneToolBar.TOOL_SELECTION_ADD) {
310                          layerSelModel.setValueIsAdjusting(true);                          layerSelModel.setValueIsAdjusting(true);
311                          for (Feature f : selectionResult) {  
312                            for (int fIdx = 0; fi.hasNext(); fIdx++) {
313                                    SimpleFeature f = fi.next();
314                                  layerSelModel.addSelection(f.getID());                                  layerSelModel.addSelection(f.getID());
315                          }                          }
316                          layerSelModel.setValueIsAdjusting(false);                          layerSelModel.setValueIsAdjusting(false);
# Line 286  public class FeatureMapLayerSelectionSyn Line 318  public class FeatureMapLayerSelectionSyn
318                          layerSelModel.setValueIsAdjusting(true);                          layerSelModel.setValueIsAdjusting(true);
319                          layerSelModel.clearSelection();                          layerSelModel.clearSelection();
320    
321                          for (Feature f : selectionResult) {                          for (int fIdx = 0; fi.hasNext(); fIdx++) {
322                                    SimpleFeature f = fi.next();
323                                  layerSelModel.addSelection(f.getID());                                  layerSelModel.addSelection(f.getID());
324                          }                          }
325    
326                          LOGGER.debug("Setting selection to " + selectionResult.size());                          // LOGGER.debug("Setting selection to " + fi.());
327    
328                          layerSelModel.setValueIsAdjusting(false);                          layerSelModel.setValueIsAdjusting(false);
329                  } else if (selectedTool == MapPaneToolBar.TOOL_SELECTION_REMOVE) {                  } else if (selectedTool == MapPaneToolBar.TOOL_SELECTION_REMOVE) {
330                          layerSelModel.setValueIsAdjusting(true);                          layerSelModel.setValueIsAdjusting(true);
331                          for (Feature f : selectionResult) {                          for (int fIdx = 0; fi.hasNext(); fIdx++) {
332                                    SimpleFeature f = fi.next();
333                                  layerSelModel.removeSelection(f.getID());                                  layerSelModel.removeSelection(f.getID());
334                          }                          }
335                          layerSelModel.setValueIsAdjusting(false);                          layerSelModel.setValueIsAdjusting(false);

Legend:
Removed from v.224  
changed lines
  Added in v.414

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26