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. |
44 |
|
|
45 |
import java.beans.PropertyChangeEvent; |
import java.beans.PropertyChangeEvent; |
46 |
import java.beans.PropertyChangeListener; |
import java.beans.PropertyChangeListener; |
47 |
import java.util.Collection; |
import java.io.File; |
48 |
|
import java.util.HashSet; |
49 |
|
import java.util.Iterator; |
50 |
|
import java.util.Set; |
51 |
import java.util.Vector; |
import java.util.Vector; |
52 |
|
|
53 |
import javax.swing.JTable; |
import javax.swing.JTable; |
54 |
import javax.swing.ListSelectionModel; |
import javax.swing.ListSelectionModel; |
|
import javax.swing.event.ListSelectionEvent; |
|
55 |
import javax.swing.event.ListSelectionListener; |
import javax.swing.event.ListSelectionListener; |
|
import javax.swing.text.Utilities; |
|
56 |
|
|
57 |
import org.geotools.feature.Feature; |
import org.geotools.feature.FeatureCollection; |
58 |
|
import org.geotools.feature.FeatureIterator; |
59 |
|
import org.geotools.filter.FidFilterImpl; |
60 |
import org.geotools.map.MapLayer; |
import org.geotools.map.MapLayer; |
61 |
import org.geotools.styling.PolygonSymbolizer; |
import org.geotools.styling.FeatureTypeStyle; |
|
import org.geotools.styling.Rule; |
|
|
import org.geotools.styling.RuleImpl; |
|
62 |
import org.geotools.styling.Style; |
import org.geotools.styling.Style; |
63 |
import org.geotools.styling.StyleImpl; |
import org.geotools.styling.visitor.DuplicatingStyleVisitor; |
64 |
import org.geotools.styling.Symbolizer; |
import org.opengis.feature.simple.SimpleFeature; |
65 |
|
import org.opengis.feature.simple.SimpleFeatureType; |
66 |
import org.opengis.filter.Filter; |
import org.opengis.filter.Filter; |
67 |
import org.opengis.filter.FilterVisitor; |
import org.opengis.filter.Not; |
68 |
import org.opengis.layer.StyleURL; |
import org.opengis.filter.identity.FeatureId; |
69 |
|
|
70 |
import schmitzm.geotools.FilterUtil; |
import schmitzm.geotools.FilterUtil; |
71 |
import schmitzm.geotools.gui.FeatureCollectionTableModel; |
import schmitzm.geotools.gui.SelectableXMapPane; |
|
import schmitzm.geotools.gui.JMapPane; |
|
72 |
import schmitzm.geotools.map.event.FeatureSelectedEvent; |
import schmitzm.geotools.map.event.FeatureSelectedEvent; |
|
import schmitzm.geotools.map.event.JMapPaneEvent; |
|
73 |
import schmitzm.geotools.map.event.JMapPaneListener; |
import schmitzm.geotools.map.event.JMapPaneListener; |
74 |
|
import schmitzm.geotools.map.event.MapPaneEvent; |
75 |
import schmitzm.geotools.styling.StylingUtil; |
import schmitzm.geotools.styling.StylingUtil; |
76 |
import schmitzm.lang.LangUtil; |
import skrueger.geotools.MapPaneToolBar; |
77 |
import skrueger.geotools.StyledFeatureCollectionInterface; |
import skrueger.geotools.StyledFeaturesInterface; |
|
import skrueger.geotools.StyledMapInterface; |
|
|
import skrueger.geotools.selection.StyledFeatureLayerSelectionModel; |
|
|
import skrueger.geotools.selection.StyledLayerSelectionEvent; |
|
|
import skrueger.geotools.selection.StyledLayerSelectionModel; |
|
78 |
|
|
79 |
/** |
/** |
80 |
* This class keeps the selection of a (feature) {@link JTable} synchronized |
* This class keeps the selection of a (feature) {@link JTable} synchronized |
97 |
public class FeatureMapLayerSelectionSynchronizer extends |
public class FeatureMapLayerSelectionSynchronizer extends |
98 |
StyledLayerSelectionModelSynchronizer<StyledFeatureLayerSelectionModel> |
StyledLayerSelectionModelSynchronizer<StyledFeatureLayerSelectionModel> |
99 |
implements JMapPaneListener { |
implements JMapPaneListener { |
100 |
|
|
101 |
|
/** |
102 |
|
* This constant is set as the {@link FeatureTypeStyle#getName()} attribute |
103 |
|
* in the {@link FeatureTypeStyle}s that only exist to present the selected |
104 |
|
* features |
105 |
|
**/ |
106 |
|
public static final String SELECTION_STYLING_FTS_NAME = "SELECTION"; |
107 |
|
|
108 |
/** |
/** |
109 |
* Holds the {@link MapLayer} to keep synchronized with the layer selection |
* Holds the {@link MapLayer} to keep synchronized with the layer selection |
110 |
* model. |
* model. |
111 |
*/ |
*/ |
112 |
protected final MapLayer mapLayer; |
protected final MapLayer mapLayer; |
113 |
protected final StyledMapInterface<?> styledMapLayer; |
protected final StyledFeaturesInterface<?> styledLayer; |
114 |
protected final JMapPane mapPane; |
protected final SelectableXMapPane mapPane; |
115 |
|
private final MapPaneToolBar toolBar; |
116 |
|
|
117 |
/** |
/** |
118 |
* Creates a new synchronizer |
* Creates a new synchronizer |
126 |
*/ |
*/ |
127 |
public FeatureMapLayerSelectionSynchronizer( |
public FeatureMapLayerSelectionSynchronizer( |
128 |
StyledFeatureLayerSelectionModel layerSelModel, |
StyledFeatureLayerSelectionModel layerSelModel, |
129 |
StyledMapInterface<?> styledMapLayer, MapLayer mapLayer, |
StyledFeaturesInterface<?> styledLayer, MapLayer mapLayer, |
130 |
JMapPane mapPane) { |
SelectableXMapPane mapPane, MapPaneToolBar toolBar) { |
131 |
|
|
132 |
super(layerSelModel); |
super(layerSelModel); |
133 |
this.styledMapLayer = styledMapLayer; |
this.styledLayer = styledLayer; |
134 |
|
|
135 |
this.mapLayer = mapLayer; |
this.mapLayer = mapLayer; |
136 |
this.mapPane = mapPane; |
this.mapPane = mapPane; |
137 |
|
this.toolBar = toolBar; |
138 |
} |
} |
139 |
|
|
140 |
/** |
/** |
149 |
*/ |
*/ |
150 |
@Override |
@Override |
151 |
public void propertyChange(PropertyChangeEvent evt) { |
public void propertyChange(PropertyChangeEvent evt) { |
152 |
|
|
153 |
|
if (!isEnabled()) |
154 |
|
return; |
155 |
|
|
156 |
if (!(evt instanceof StyledLayerSelectionEvent)) |
if (!(evt instanceof StyledLayerSelectionEvent)) |
157 |
return; |
return; |
158 |
StyledLayerSelectionEvent selEvt = (StyledLayerSelectionEvent) evt; |
StyledLayerSelectionEvent selEvt = (StyledLayerSelectionEvent) evt; |
162 |
return; |
return; |
163 |
// Apply new selection on table (except this event is one of |
// Apply new selection on table (except this event is one of |
164 |
// some more events) |
// some more events) |
165 |
Vector<Feature> newSelection = layerSelModel.getSelection(); |
Vector<String> newSelection = layerSelModel.getSelection(); |
166 |
if (newSelection == null) |
if (newSelection == null) |
167 |
return; |
return; |
168 |
|
|
175 |
selectionChangeCausedByMe = false; |
selectionChangeCausedByMe = false; |
176 |
} |
} |
177 |
|
|
178 |
private void changeLayerStyle(final Vector<Feature> newSelection) { |
/** |
179 |
Style selectionMapStyle = null; |
* Changes the Style of the {@link MapLayer} to reflect changes of the |
180 |
|
* selection. |
181 |
|
* |
182 |
|
* @param newSelection |
183 |
|
* A {@link Vector} of SimpleFeature-IDs that are selected. |
184 |
|
*/ |
185 |
|
private void changeLayerStyle(final Vector<String> newSelection) { |
186 |
try { |
try { |
|
if (newSelection.isEmpty()) { |
|
187 |
|
|
188 |
selectionMapStyle = styledMapLayer.getStyle(); |
Style originalStyle = mapLayer.getStyle(); |
|
LOGGER.debug("NO SELECTION .. reset original style"); |
|
189 |
|
|
190 |
} else { |
if (newSelection.isEmpty()) { |
191 |
LOGGER.debug("SELECTION .. change style"); |
|
192 |
|
// Check if the Style contains a SELECTION FTS |
193 |
|
|
194 |
Style originalStyle = styledMapLayer.getStyle(); |
FeatureTypeStyle[] clone = originalStyle.featureTypeStyles() |
195 |
|
.toArray(new FeatureTypeStyle[] {}).clone(); |
196 |
|
|
197 |
// TODO This clone is a deep clone and it is slow.. |
for (FeatureTypeStyle fts : clone) { |
198 |
selectionMapStyle = StylingUtil |
if (fts.getName() != null |
199 |
.createDefaultStyle(styledMapLayer.getGeoObject()); |
&& fts.getName().equals(SELECTION_STYLING_FTS_NAME)) { |
200 |
|
originalStyle.featureTypeStyles().remove(fts); |
201 |
// Symbolizer sss = selectionMapStyle.getFeatureTypeStyles()[0].getRules()[0].getSymbolizers()[0]; |
|
202 |
// if (sss instanceof PolygonSymbolizer) { |
mapLayer.setStyle(originalStyle); |
203 |
// PolygonSymbolizer ps = (PolygonSymbolizer) sss; |
// replaceRenderer(); |
204 |
// ps.getFill().setOpacity( FilterUtil.FILTER_FAC.literal(0.5)); |
// // mapPane.refresh(); |
205 |
// } |
|
206 |
|
return; |
207 |
// Rule selectedRule = StylingUtil.STYLE_FACTORY.createRule(); |
} |
208 |
selectionMapStyle.getFeatureTypeStyles()[0].getRules()[0] |
} |
|
.setFilter(new Filter() { |
|
|
|
|
|
@Override |
|
|
public Object accept(FilterVisitor visitor, |
|
|
Object extraData) { |
|
|
return null; |
|
|
} |
|
|
|
|
|
@Override |
|
|
public boolean evaluate(Object obj) { |
|
|
if (obj instanceof Feature) { |
|
|
Feature f = (Feature) obj; |
|
|
// TODO BAD CODE |
|
|
for (Feature ff : newSelection) { |
|
|
if (ff.getID().equals(f.getID())) |
|
|
return true; |
|
|
} |
|
|
return false; |
|
|
|
|
|
} |
|
|
return false; |
|
|
} |
|
|
|
|
|
}); |
|
|
|
|
|
selectionMapStyle.setFeatureTypeStyles(LangUtil.extendArray( |
|
|
originalStyle |
|
|
.getFeatureTypeStyles(), selectionMapStyle.getFeatureTypeStyles())); |
|
209 |
|
|
210 |
// selectionMapStyle.setFeatureTypeStyles(originalStyle.getF) |
} else { |
211 |
|
|
212 |
// Flat copy the style |
LOGGER.debug("SELECTION .. change style"); |
213 |
|
|
214 |
// selectionMapStyle = |
// Saving a repaint if the selection didn't change |
215 |
// StylingUtil.createDefaultStyle(styledMapLayer.getGeoObject()); |
if (!selectionChanged(newSelection, originalStyle)) { |
216 |
|
return; |
217 |
|
} |
218 |
|
|
219 |
|
// We take Style from the MapLayer that is displayed at the |
220 |
|
// moment. We do not use the styledLayer.getStyle, because in |
221 |
|
// the atlas, this always return the default style, but |
222 |
|
// additional styles might be selected. |
223 |
|
// Taking the style from the mapLayer indicated, that we have to |
224 |
|
// remove any selection rules first. |
225 |
|
|
226 |
|
FeatureTypeStyle selectionFTStyle = StylingUtil |
227 |
|
.createSelectionStyle(styledLayer.getGeoObject()); |
228 |
|
|
229 |
|
selectionFTStyle.setName(SELECTION_STYLING_FTS_NAME); |
230 |
|
|
231 |
|
/** |
232 |
|
* |
233 |
|
* Add a Filter to the selectionMapStyle, so that it is only |
234 |
|
* used on objects that are selected. <br/> |
235 |
|
* To optimize rendering speed, the filter checks whether more |
236 |
|
* than half of the features are selected. If so, the filter is |
237 |
|
* inverted to be shorter. |
238 |
|
* |
239 |
|
*/ |
240 |
|
final FeatureCollection<SimpleFeatureType, SimpleFeature> featureCollectionFiltered = styledLayer |
241 |
|
.getFeatureCollectionFiltered(); |
242 |
|
if (newSelection.size() > featureCollectionFiltered.size() / 2) { |
243 |
|
FeatureIterator<SimpleFeature> iterator = featureCollectionFiltered |
244 |
|
.features(); |
245 |
|
Set<FeatureId> antiFids = new HashSet<FeatureId>(); |
246 |
|
try { |
247 |
|
while (iterator.hasNext()) { |
248 |
|
SimpleFeature next = iterator.next(); |
249 |
|
if (!newSelection.contains(next.getID())) |
250 |
|
antiFids.add(FilterUtil.FILTER_FAC2 |
251 |
|
.featureId(next.getID())); |
252 |
|
} |
253 |
|
|
254 |
|
selectionFTStyle.rules().get(0).setFilter( |
255 |
|
FilterUtil.FILTER_FAC2 |
256 |
|
.not(FilterUtil.FILTER_FAC2 |
257 |
|
.id(antiFids))); |
258 |
|
|
259 |
|
} finally { |
260 |
|
featureCollectionFiltered.close(iterator); |
261 |
|
} |
262 |
|
} else { |
263 |
|
Set<FeatureId> fids = new HashSet<FeatureId>(); |
264 |
|
for (String fid : newSelection) { |
265 |
|
fids.add(FilterUtil.FILTER_FAC2.featureId(fid)); |
266 |
|
} |
267 |
|
|
268 |
|
selectionFTStyle.rules().get(0).setFilter( |
269 |
|
FilterUtil.FILTER_FAC2.id(fids)); |
270 |
|
} |
271 |
|
|
272 |
|
// Maybe there has already been another selection |
273 |
|
// FeatureTypeStyle... Let's replace it... |
274 |
|
boolean foundAndReplaced = false; |
275 |
|
for (FeatureTypeStyle fts : originalStyle.featureTypeStyles()) { |
276 |
|
if (fts.getName() != null |
277 |
|
&& fts.getName().equals(SELECTION_STYLING_FTS_NAME)) { |
278 |
|
foundAndReplaced = true; |
279 |
|
fts.rules().clear(); |
280 |
|
fts.rules().addAll(selectionFTStyle.rules()); |
281 |
|
break; |
282 |
|
} |
283 |
|
} |
284 |
|
if (!foundAndReplaced) { |
285 |
|
originalStyle.featureTypeStyles().add(selectionFTStyle); |
286 |
|
} |
287 |
|
|
288 |
|
// Refresh the map |
289 |
|
// mapPane.refresh(); |
290 |
|
|
291 |
|
DuplicatingStyleVisitor dsv = new DuplicatingStyleVisitor(); |
292 |
|
dsv.visit(originalStyle); |
293 |
|
Style newStyle = (Style) dsv.getCopy(); |
294 |
|
|
295 |
|
// SK-Debug |
296 |
|
try { |
297 |
|
// |
298 |
|
StylingUtil.saveStyleToSLD(newStyle, new File( |
299 |
|
"/home/stefan/Desktop/selection.sld")); |
300 |
|
} catch (Exception e) { |
301 |
|
} |
302 |
|
|
303 |
|
// DuplicatingStyleVisitor dsv = new DuplicatingStyleVisitor(); |
304 |
|
// dsv.visit(originalStyle); |
305 |
|
// Style newStyle = originalStyle; |
306 |
|
|
307 |
|
// Style newStyle = StylingUtil.STYLE_BUILDER.createStyle(); |
308 |
|
// newStyle.featureTypeStyles().addAll(originalStyle.featureTypeStyles()); |
309 |
|
mapLayer.setStyle(newStyle); |
310 |
|
|
311 |
|
replaceRenderer(); |
312 |
} |
} |
313 |
|
|
|
mapLayer.setStyle(selectionMapStyle); |
|
|
mapPane.refresh(); |
|
314 |
} catch (Exception e) { |
} catch (Exception e) { |
315 |
LOGGER.error("Error while trying to create a selection style", e); |
LOGGER.error("Error while trying to create a selection style", e); |
316 |
} |
} |
317 |
} |
} |
318 |
|
|
319 |
// |
/** |
320 |
// /** |
* Analyzes whether the selection has changed in comparison to the selection |
321 |
// * Called when the table selection is changed by the user. When calling |
* stored in the mapLayer.Style |
322 |
// this |
* |
323 |
// * method changes the selection of the {@link StyledLayerSelectionModel}. |
* @param newSelection a List<String> of all newly selected FIDs |
324 |
// * |
* @param originalStyle the original {@link Style} that has an earlier selection coded into the {@link Style} |
325 |
// * @param evt |
* @return <code>true</code> if changed. |
326 |
// * an event |
*/ |
327 |
// */ |
private boolean selectionChanged(Vector<String> newSelection, |
328 |
// @Override |
Style originalStyle) { |
329 |
// public void valueChanged(ListSelectionEvent evt) { |
|
330 |
// |
boolean SELECTION_STYLING_foundInMapStyle = false; |
331 |
// } |
|
332 |
|
/** |
333 |
|
* testing, whether the selection really changed. If not, we can save |
334 |
|
* one rendering! |
335 |
|
*/ |
336 |
|
for (FeatureTypeStyle fts : originalStyle.featureTypeStyles()) { |
337 |
|
|
338 |
|
if (fts.getName() != null |
339 |
|
&& fts.getName().equals(SELECTION_STYLING_FTS_NAME)) { |
340 |
|
|
341 |
|
SELECTION_STYLING_foundInMapStyle = true; |
342 |
|
|
343 |
|
Filter filter = fts.rules().get(0).getFilter(); |
344 |
|
if (filter instanceof Not) { |
345 |
|
FidFilterImpl antiOrigFidsFilter = (FidFilterImpl) ((Not) filter) |
346 |
|
.getFilter(); |
347 |
|
|
348 |
|
// Check one way |
349 |
|
final Set<String> antiFids = antiOrigFidsFilter |
350 |
|
.getFidsSet(); |
351 |
|
|
352 |
|
if (antiFids.isEmpty() && !newSelection.isEmpty()) |
353 |
|
return true; |
354 |
|
|
355 |
|
for (String fid : antiFids) { |
356 |
|
if (newSelection.contains(fid)) { |
357 |
|
return true; |
358 |
|
} |
359 |
|
} |
360 |
|
|
361 |
|
// Check the other way |
362 |
|
for (String fid : newSelection) { |
363 |
|
if (antiFids.contains(fid)) { |
364 |
|
return true; |
365 |
|
} |
366 |
|
} |
367 |
|
|
368 |
|
if (antiFids.size() + newSelection.size() != styledLayer |
369 |
|
.getFeatureCollectionFiltered().size()) |
370 |
|
return true; |
371 |
|
|
372 |
|
} else { |
373 |
|
FidFilterImpl origFidsFilter = (FidFilterImpl) filter; |
374 |
|
|
375 |
|
// Check one way |
376 |
|
final Set<String> fids = origFidsFilter.getFidsSet(); |
377 |
|
|
378 |
|
if (fids.isEmpty() && newSelection.isEmpty()) |
379 |
|
return false; |
380 |
|
if (fids.size() != newSelection.size()) |
381 |
|
return true; |
382 |
|
|
383 |
|
for (String fid : fids) { |
384 |
|
if (!newSelection.contains(fid)) { |
385 |
|
return true; |
386 |
|
} |
387 |
|
} |
388 |
|
|
389 |
|
// Check the other way |
390 |
|
for (String fid : newSelection) { |
391 |
|
if (!fids.contains(fid)) { |
392 |
|
return true; |
393 |
|
} |
394 |
|
} |
395 |
|
|
396 |
|
} |
397 |
|
|
398 |
|
break; |
399 |
|
} |
400 |
|
} |
401 |
|
|
402 |
|
if (!SELECTION_STYLING_foundInMapStyle && !newSelection.isEmpty()) |
403 |
|
return true; |
404 |
|
|
405 |
|
return false; |
406 |
|
} |
407 |
|
|
408 |
|
/** |
409 |
|
* Replaces the local renderer |
410 |
|
*/ |
411 |
|
private void replaceRenderer() { |
412 |
|
} |
413 |
|
|
414 |
|
/** |
415 |
|
* Used to synchronize {@link FeatureSelectedEvent}s with the |
416 |
|
* {@link StyledFeatureLayerSelectionModel} |
417 |
|
*/ |
418 |
@Override |
@Override |
419 |
public void performMapPaneEvent(JMapPaneEvent e) { |
public void performMapPaneEvent(MapPaneEvent e) { |
420 |
|
|
421 |
|
// Ignore event if it is caused by us or the synchronizer is disabled. |
422 |
|
if (!isEnabled() || selectionChangeCausedByMe) |
423 |
|
return; |
424 |
|
|
425 |
if (!(e instanceof FeatureSelectedEvent)) { |
if (!(e instanceof FeatureSelectedEvent)) { |
426 |
// LOGGER.debug("Ignoring event " + e); |
// LOGGER.debug("Ignoring event " + e); |
427 |
return; |
return; |
428 |
} |
} |
429 |
|
|
430 |
|
/** |
431 |
|
* Only listen to FeatureSelectedEvents if an appropriate tool is |
432 |
|
* selected. |
433 |
|
*/ |
434 |
|
final int selectedTool = toolBar.getSelectedTool(); |
435 |
|
if (selectedTool != MapPaneToolBar.TOOL_SELECTION_ADD |
436 |
|
&& selectedTool != MapPaneToolBar.TOOL_SELECTION_REMOVE |
437 |
|
&& selectedTool != MapPaneToolBar.TOOL_SELECTION_SET) { |
438 |
|
return; |
439 |
|
} |
440 |
|
|
441 |
// only listen to events directly coming from JMapPane |
// only listen to events directly coming from JMapPane |
442 |
// selection (ignore selections from FilterDialog) |
// selection (ignore selections from FilterDialog) |
443 |
if ( e.getSourceObject() != this.mapPane ) |
if (e.getSourceObject() != this.mapPane) |
444 |
return; |
return; |
|
|
|
|
FeatureSelectedEvent fse = (FeatureSelectedEvent) e; |
|
|
// LOGGER.debug("Do event " + fse); |
|
|
// LOGGER.debug("Do event " + fse.getSelectionResult()); |
|
445 |
|
|
446 |
// ignore event if it is caused by the DpLayerVectorSelectionModel |
/** |
447 |
if (selectionChangeCausedByMe) |
* Checking, that the FeatureSelectedEvent actually contains features |
448 |
|
* from this layer |
449 |
|
*/ |
450 |
|
FeatureSelectedEvent fse = (FeatureSelectedEvent) e; |
451 |
|
final String sourceID = fse.getSourceLayer().getTitle(); |
452 |
|
final String syncForID = mapLayer.getTitle(); |
453 |
|
if (sourceID != null && syncForID != null |
454 |
|
&& !sourceID.equals(syncForID)) { |
455 |
|
LOGGER.debug("Ignoring a FeatureSelectedEvent from " + sourceID); |
456 |
return; |
return; |
457 |
|
} |
458 |
|
|
459 |
|
// LOGGER.debug("do event " + fse); |
460 |
|
|
461 |
// Avoid event circles in propertyChange(..) |
// Avoid event circles in propertyChange(..) |
462 |
selectionChangeCausedByMe = true; |
selectionChangeCausedByMe = true; |
463 |
|
|
464 |
// reset the selection of the DpLayerSelectionModel |
final FeatureCollection<SimpleFeatureType, SimpleFeature> selectionResult = fse |
465 |
// layerSelModel.setValueIsAdjusting(true); |
.getSelectionResult(); |
466 |
|
Iterator<SimpleFeature> fi = selectionResult.iterator(); |
467 |
|
try { |
468 |
|
|
469 |
|
// reset the selection of the DpLayerSelectionModel |
470 |
|
// layerSelModel.setValueIsAdjusting(true); |
471 |
|
|
472 |
layerSelModel.addSelection((Collection<Feature>) fse |
if (selectedTool == MapPaneToolBar.TOOL_SELECTION_ADD) { |
473 |
.getSelectionResult()); |
layerSelModel.setValueIsAdjusting(true); |
474 |
|
|
475 |
// for (int i = evt.getFirstIndex(); i <= evt.getLastIndex(); i++) { |
for (int fIdx = 0; fi.hasNext(); fIdx++) { |
476 |
// Feature changedFeature = featureTableModel.getFeature(featureTable |
SimpleFeature f = fi.next(); |
477 |
// .convertRowIndexToModel(i)); |
layerSelModel.addSelection(f.getID()); |
478 |
// if (featureTable.isRowSelected(i)) |
} |
479 |
// layerSelModel.addSelection(changedFeature); |
layerSelModel.setValueIsAdjusting(false); |
480 |
// else |
} else if (selectedTool == MapPaneToolBar.TOOL_SELECTION_SET) { |
481 |
// layerSelModel.removeSelection(changedFeature); |
layerSelModel.setValueIsAdjusting(true); |
482 |
// } |
layerSelModel.clearSelection(); |
483 |
// layerSelModel.setValueIsAdjusting(false); |
|
484 |
|
for (int fIdx = 0; fi.hasNext(); fIdx++) { |
485 |
|
SimpleFeature f = fi.next(); |
486 |
|
layerSelModel.addSelection(f.getID()); |
487 |
|
} |
488 |
|
|
489 |
|
// LOGGER.debug("Setting selection to " + fi.()); |
490 |
|
|
491 |
|
layerSelModel.setValueIsAdjusting(false); |
492 |
|
} else if (selectedTool == MapPaneToolBar.TOOL_SELECTION_REMOVE) { |
493 |
|
layerSelModel.setValueIsAdjusting(true); |
494 |
|
for (int fIdx = 0; fi.hasNext(); fIdx++) { |
495 |
|
SimpleFeature f = fi.next(); |
496 |
|
layerSelModel.removeSelection(f.getID()); |
497 |
|
} |
498 |
|
layerSelModel.setValueIsAdjusting(false); |
499 |
|
} |
500 |
|
|
501 |
// Show selected feature in the map, which is not automatically done by |
} finally { |
502 |
// the FeatureSelectedEvent |
selectionResult.close(fi); |
503 |
|
} |
504 |
|
|
505 |
|
// Show selected features in the map, which is not automatically done by |
506 |
|
// the origin: FeatureSelectedEvent |
507 |
changeLayerStyle(layerSelModel.getSelection()); |
changeLayerStyle(layerSelModel.getSelection()); |
508 |
|
|
509 |
// Danger of event circles in propertyChange(..) banned |
// Danger of event circles in propertyChange(..) banned |
510 |
selectionChangeCausedByMe = false; |
selectionChangeCausedByMe = false; |
511 |
} |
} |
512 |
|
|
513 |
} |
} |