/[schmitzm]/trunk/src/skrueger/geotools/XMapPane.java
ViewVC logotype

Diff of /trunk/src/skrueger/geotools/XMapPane.java

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

trunk/src/org/geotools/gui/swing/JMapPane.java revision 2 by mojays, Tue Feb 24 22:43:52 2009 UTC branches/1.0-gt2-2.6/src/gtmig/org/geotools/swing/XMapPane.java revision 512 by mojays, Fri Nov 6 15:00:17 2009 UTC
# Line 13  Line 13 
13   *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU   *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14   *    Lesser General Public License for more details.   *    Lesser General Public License for more details.
15   */   */
16  package org.geotools.gui.swing;  package gtmig.org.geotools.swing;
17    
18  /**  /**
19   * <b>Xulu:<br>   * This class is 50% copied from GeoTools 2.6.x JMapPane. GeoTools is LGPL, SCHMITZM also.<br/>
20   *    Code taken from gt-2.4.2 to make some changes (marked with {@code xulu}),   * In addition to
  *    which can not be realized in a subclass:</b>  
  *    <ul>  
  *       <li>{@link #getMapArea()} declared as {@code final}<li>  
  *       <li>some variables declared as {@code protected}</li>  
  *       <li>minimal/maximal zoom scale</li>  
  *       <li>zoom in and zoom out via mouse click realized by setMapArea(..)</li>  
  *    </ul>  
  * <br><br>  
  * A simple map container that is a JPanel with a map in. provides simple  
  * pan,zoom, highlight and selection The mappane stores an image of the map  
  * (drawn from the context) and an image of the slected feature(s) to speed up  
  * rendering of the highlights. Thus the whole map is only redrawn when the bbox  
  * changes, selection is only redrawn when the selected feature changes.  
  *  
  *  
  * @author Ian Turton  
  *  
21   */   */
22    
23    import java.awt.AlphaComposite;
24  import java.awt.Color;  import java.awt.Color;
25  import java.awt.Cursor;  import java.awt.Cursor;
26    import java.awt.Font;
27  import java.awt.Graphics;  import java.awt.Graphics;
28  import java.awt.Graphics2D;  import java.awt.Graphics2D;
29  import java.awt.LayoutManager;  import java.awt.Image;
30    import java.awt.Point;
31  import java.awt.Rectangle;  import java.awt.Rectangle;
32    import java.awt.RenderingHints;
33    import java.awt.event.ActionEvent;
34    import java.awt.event.ActionListener;
35    import java.awt.event.ComponentAdapter;
36    import java.awt.event.ComponentEvent;
37  import java.awt.event.InputEvent;  import java.awt.event.InputEvent;
38  import java.awt.event.MouseEvent;  import java.awt.event.MouseEvent;
39  import java.awt.event.MouseListener;  import java.awt.event.MouseListener;
40  import java.awt.event.MouseMotionListener;  import java.awt.geom.AffineTransform;
41    import java.awt.geom.NoninvertibleTransformException;
42    import java.awt.geom.Point2D;
43  import java.awt.image.BufferedImage;  import java.awt.image.BufferedImage;
44  import java.beans.PropertyChangeEvent;  import java.beans.PropertyChangeEvent;
45  import java.beans.PropertyChangeListener;  import java.beans.PropertyChangeListener;
46  import java.io.IOException;  import java.io.IOException;
 import java.util.Date;  
47  import java.util.HashMap;  import java.util.HashMap;
48  import java.util.Map;  import java.util.Map;
49    import java.util.Vector;
50    
51    import javax.swing.JFrame;
52  import javax.swing.JPanel;  import javax.swing.JPanel;
53    import javax.swing.Timer;
54    
55  import org.apache.log4j.Logger;  import org.apache.log4j.Logger;
56  import org.geotools.feature.FeatureCollection;  import org.geotools.feature.FeatureCollection;
57  import org.geotools.filter.IllegalFilterException;  import org.geotools.geometry.jts.JTS;
58  import org.geotools.gui.swing.event.HighlightChangeListener;  import org.geotools.geometry.jts.ReferencedEnvelope;
 import org.geotools.gui.swing.event.HighlightChangedEvent;  
 import org.geotools.gui.swing.event.SelectionChangeListener;  
 import org.geotools.gui.swing.event.SelectionChangedEvent;  
59  import org.geotools.map.DefaultMapContext;  import org.geotools.map.DefaultMapContext;
60  import org.geotools.map.MapContext;  import org.geotools.map.MapContext;
61  import org.geotools.map.MapLayer;  import org.geotools.map.MapLayer;
62    import org.geotools.map.event.MapLayerEvent;
63  import org.geotools.map.event.MapLayerListEvent;  import org.geotools.map.event.MapLayerListEvent;
64  import org.geotools.map.event.MapLayerListListener;  import org.geotools.map.event.MapLayerListListener;
65  import org.geotools.referencing.crs.DefaultGeographicCRS;  import org.geotools.map.event.MapLayerListener;
66    import org.geotools.referencing.CRS;
67  import org.geotools.renderer.GTRenderer;  import org.geotools.renderer.GTRenderer;
68    import org.geotools.renderer.label.LabelCacheImpl;
69  import org.geotools.renderer.lite.LabelCache;  import org.geotools.renderer.lite.LabelCache;
70  import org.geotools.renderer.lite.LabelCacheDefault;  import org.geotools.swing.JMapPane;
71  import org.geotools.renderer.lite.StreamingRenderer;  //import org.geotools.swing.RenderingExecutor;  // gt2-2.6.1
72  import org.geotools.styling.Graphic;  import skrueger.geotools.RenderingExecutor;     // until gt2-2.6.1
73  import org.geotools.styling.LineSymbolizer;  import org.geotools.swing.event.MapMouseEvent;
74  import org.geotools.styling.Mark;  import org.geotools.swing.event.MapPaneEvent;
75  import org.geotools.styling.PointSymbolizer;  import org.geotools.swing.event.MapPaneListener;
76  import org.geotools.styling.PolygonSymbolizer;  import org.opengis.feature.simple.SimpleFeature;
77  import org.geotools.styling.Style;  import org.opengis.feature.simple.SimpleFeatureType;
78  import org.geotools.styling.StyleBuilder;  import org.opengis.referencing.FactoryException;
 import org.geotools.styling.StyleFactory;  
 import org.opengis.filter.Filter;  
 import org.opengis.filter.FilterFactory2;  
79  import org.opengis.referencing.crs.CoordinateReferenceSystem;  import org.opengis.referencing.crs.CoordinateReferenceSystem;
80    import org.opengis.referencing.operation.MathTransform;
81    import org.opengis.referencing.operation.TransformException;
82    
83    import schmitzm.geotools.GTUtil;
84    import schmitzm.geotools.JTSUtil;
85    import schmitzm.geotools.gui.SelectableXMapPane;
86    import schmitzm.geotools.map.event.JMapPaneListener;
87    import schmitzm.geotools.map.event.MapLayerAdapter;
88  import schmitzm.swing.SwingUtil;  import schmitzm.swing.SwingUtil;
89    
90  import com.vividsolutions.jts.geom.Coordinate;  import com.vividsolutions.jts.geom.Coordinate;
91  import com.vividsolutions.jts.geom.Envelope;  import com.vividsolutions.jts.geom.Envelope;
92  import com.vividsolutions.jts.geom.Geometry;  import com.vividsolutions.jts.geom.Geometry;
 import com.vividsolutions.jts.geom.GeometryFactory;  
93    
94  public class JMapPane extends JPanel implements MouseListener,  public class XMapPane extends JPanel implements PropertyChangeListener {
95          MouseMotionListener, HighlightChangeListener,SelectionChangeListener, PropertyChangeListener,          private static Logger LOGGER = Logger.getLogger(XMapPane.class);
96          MapLayerListListener {  
97      private static Logger LOGGER = Logger.getLogger( JMapPane.class.getName() );          /**
98     /**           * Sets whether a layer is regarded or ignored on {@link #SELECT_TOP},
99       *           * {@link #SELECT_ALL} and {@link #SELECT_ONE_FROM_TOP} actions.
100       */           *
101      private static final long serialVersionUID = -8647971481359690499L;           * @param layer
102             *            a layer
103      public static final int Reset = 0;           * @param selectable
104             *            if {@code false} the layer is ignored during the upper
105      public static final int ZoomIn = 1;           *            mentioned actions. If <code>null</code>, the default (true)
106             *            will be used.
107      public static final int ZoomOut = 2;           */
108            public void setMapLayerSelectable(MapLayer layer, Boolean selectable) {
109      public static final int Pan = 3;                  if (selectable == null)
110                            mapLayerSelectable.remove(layer);
111      public static final int Select = 4;                  else
112                            mapLayerSelectable.put(layer, selectable);
113      private static final int POLYGON = 0;          }
114    
115      private static final int LINE = 1;          /**
116             * Holds a flag for each layer, whether it is regarded or ignored on
117      private static final int POINT = 2;           * {@link #SELECT_TOP}, {@link #SELECT_ALL} and {@link #SELECT_ONE_FROM_TOP}
118             * actions.
119      /**           */
120       * what renders the map          final protected HashMap<MapLayer, Boolean> mapLayerSelectable = new HashMap<MapLayer, Boolean>();
121       */  
122      GTRenderer renderer;          /**
123             * Returns whether a layer is regarded or ignored on {@link #SELECT_TOP},
124      private GTRenderer highlightRenderer, selectionRenderer;           * {@link #SELECT_ALL} and {@link #SELECT_ONE_FROM_TOP} actions. Returns
125             * <code>true</code> if the selectability has not been defined.
126      /**           *
127       * the map context to render           * @param layer
128       */           *            a layer
129      MapContext context;           */
130            public boolean isMapLayerSelectable(MapLayer layer) {
131      private MapContext selectionContext;                  Boolean selectable = mapLayerSelectable.get(layer);
132                    return selectable == null ? true : selectable;
133      /**          }
134       * the area of the map to draw  
135       */          /**
136  //xulu.sc           * Flag fuer Modus "Kartenausschnitt bewegen". Nicht fuer Window-Auswahl
137  //    Envelope mapArea;           * moeglich!
138      protected Envelope mapArea;           *
139  //xulu.ec           * @see #setState(int)
140             */
141      /**          public static final int PAN = 1;
142       * the size of the pane last time we drew          /**
143       */           * Flag fuer Modus "Heran zoomen".
144  //xulu.sc           *
145  //    private Rectangle oldRect = null;           * @see #setState(int)
146      protected Rectangle oldRect = null;           * @see #setState(int)
147  //xulu.ec           */
148            public static final int ZOOM_IN = 2;
149      /**          /**
150       * the last map area drawn.           * Flag fuer Modus "Heraus zoomen". Nicht fuer Window-Auswahl moeglich!
151       */           *
152  //xulu.sc           * @see #setState(int)
153  //    private Envelope oldMapArea = null;           */
154      protected Envelope oldMapArea = null;          public static final int ZOOM_OUT = 3;
155  //xulu.ec          /**
156             * Flag fuer Modus
157      /**           * "SimpleFeature-Auswahl auf dem obersten (sichtbaren) Layer".
158       * the base image of the map           *
159       */           * @see #setState(int)
160      protected  BufferedImage baseImage, panningImage;           * @see #setState(int)
161      // SK: private BufferedImage baseImage, panningImage;           */
162            public static final int SELECT_TOP = 4;
163      /**          /**
164       * image of selection           * Flag fuer Modus "SimpleFeature-Auswahl auf allen (sichtbaren) Layern".
165       */           *
166      private BufferedImage selectImage;           * @see #setState(int)
167             * @see #setState(int)
168      /**           */
169       * style for selected items          public static final int SELECT_ALL = 103;
170       */          /**
171      private Style selectionStyle;           * Flag fuer Modus
172             * "Auswahl nur eines Features, das erste sichtbare von Oben".
173      /**           *
174       * layer that selection works on           * @see #setState(int)
175       */           * @see #setState(int)
176      private MapLayer selectionLayer;           */
177            public static final int SELECT_ONE_FROM_TOP = 104;
178      /**  
179       * layer that highlight works on          public static final long DEFAULT_REPAINTING_DELAY = 200;
180       */  
181      private MapLayer highlightLayer;          protected RenderingExecutor bgExecuter;
182    
183      /**          /**
184       * the object which manages highlighting           * the map context to render
185       */           */
186      private HighlightManager highlightManager;          MapContext localContext;
187            /**
188      /**           * the map context to render
189       * is highlighting on or off           */
190       */          MapContext bgContext;
191      private boolean highlight = true;  
192            /**
193      /**           * the area of the map to draw
194       * a factory for filters           */
195       */          protected Envelope mapArea = null;
196      FilterFactory2 ff;          /**
197             * We store the old mapArea for a moment to use it for the
198      /**           * "quick scaled preview" in case of ZoomOut
199       * a factory for geometries           **/
200       */          protected Envelope oldMapArea = null;
201      GeometryFactory gf = new GeometryFactory(); // FactoryFinder.getGeometryFactory(null);  
202            /**
203      /**           * the size of the pane last time we drew
204       * the collections of features to be selected or highlighted           */
205       */          protected Rectangle oldRect = null;
206      FeatureCollection selection;  
207            /**
208      /**           * The Renderer for the Background uses this Image. When set to null, please
209       * the collections of features to be selected or highlighted           * dispose the {@link Graphics2D}
210       */           */
211      FeatureCollection highlightFeature;          protected BufferedImage bgImage;
212    
213      private int state = ZoomIn;          /**
214             * The Renderer for the LocalLayers uses this Image. When set to null,
215      /**           * please dispose this {@link Graphics2D}
216       * how far to zoom in or out           */
217       */          volatile protected BufferedImage localImage;
218      private double zoomFactor = 2.0;  
219            /**
220      Style lineHighlightStyle;           * compass and icon are rendered into this image
221             */
222      Style pointHighlightStyle;  //      protected BufferedImage gadgetsImage;
223    
224      Style polygonHighlightStyle;          /**
225             * The default state is ZOOM_IN, hence by default the
226      Style polygonSelectionStyle;           * {@link #zoomMapPaneMouseListener} is also enabled.
227             **/
228      Style pointSelectionStyle;          private int state = ZOOM_IN;
229    
230      Style lineSelectionStyle;          /**
231             * Konvertiert die Maus-Koordinaten (relativ zum <code>JMapPane</code>) in
232      boolean changed = true;           * Karten-Koordinaten.
233             *
234      LabelCache labelCache = new LabelCacheDefault();           * @param e
235             *            Maus-Ereignis
236  //xulu.sc           */
237  //    private boolean reset = false;          public static Point2D getMapCoordinatesFromEvent(MouseEvent e) {
238      protected boolean reset = false;                  // aktuelle Geo-Position aus GeoMouseEvent ermitteln
239  //xulu.ec                  if (e != null && e instanceof MapMouseEvent)
240                            try {
241      int startX;                                  return ((MapMouseEvent) e).getMapPosition().toPoint2D();
242                            } catch (Exception err) {
243      int startY;                                  LOGGER
244                                                    .error(
245      private boolean clickable;                                                                  "return ((GeoMouseEvent) e).getMapCoordinate(null).toPoint2D();",
246                                                                    err);
247      int lastX;                          }
248    
249      int lastY;                  // aktuelle Geo-Position ueber Transformation des JMapPane berechnen
250                    if (e != null && e.getSource() instanceof XMapPane) {
251      private SelectionManager selectionManager;                          
252  //xulu.sn                          final XMapPane xMapPane = (XMapPane) e.getSource();
253      private Double maxZoomScale = Double.MIN_VALUE;                          
254      private Double minZoomScale = Double.MAX_VALUE;                          if (!xMapPane.isWellDefined()) return null;
255  //xulu.en                          
256                            AffineTransform at = xMapPane.getScreenToWorld();
257  // sk.sn                              if (at != null)
258      /**                                  return at.transform(e.getPoint(), null);
259       * Wenn true, dann wurde PANNING via mouseDraged-Events begonnen. Dieses Flag wird benutzt um nur einmal den passenden Cursor nur einmal zu setzen.                          return null;
260       */                  }
261          private boolean panning_started = false;                  throw new IllegalArgumentException(
262  // sk.en                                          "MouseEvent has to be of instance MapMouseEvent or come from an XMapPane");
263            }
264      public JMapPane() {  
265          this(null, true, null, null);          /**
266      }           * A flag indicating that the shown image is invalid and needs to be
267             * re-rendered.
268      /**           */
269       * create a basic JMapPane          protected boolean mapImageInvalid = true;
270       *  
271       * @param render -          protected LabelCache labelCache = new LabelCacheImpl();
272       *            how to draw the map  
273       * @param context -          /**
274       *            the map context to display           * If not <code>null</code>, the {@link XMapPane} will not allow to zoom/pan
275       */           * out of that area
276      public JMapPane(GTRenderer render, MapContext context) {           **/
277          this(null, true, render, context);          private Envelope maxExtend = null;
278      }  
279            private Double maxZoomScale = Double.MIN_VALUE;
280      /**          private Double minZoomScale = Double.MAX_VALUE;
281       * full constructor extending JPanel  
282       *          /**
283       * @param layout -           * This color is used as the default background color when painting a map.
284       *            layout (probably shouldn't be set)           */
285       * @param isDoubleBuffered -          private Color mapBackgroundColor = Color.WHITE;
286       *            a Swing thing I don't really understand  
287       * @param render -          /**
288       *            what to draw the map with           * This {@link MouseListener} is managing all zoom related tasks
289       * @param context -           */
290       *            what to draw          public final ZoomXMapPaneMouseListener zoomMapPaneMouseListener = new ZoomXMapPaneMouseListener(
291       */                          this);
292      public JMapPane(LayoutManager layout, boolean isDoubleBuffered,  
293              GTRenderer render, MapContext context) {          /**
294          super(layout, isDoubleBuffered);           * A flag indicating, that the image size has changed and the buffered
295             * images are not big enough any more
296          ff = (FilterFactory2) org.geotools.factory.CommonFactoryFinder           **/
297                  .getFilterFactory(null);          protected boolean paneResized = false;
298          setRenderer(render);  
299            /**
300          setContext(context);           * While threads are working, we call {@link XMapPane#updateFinalImage()}
301             * regularly and repaint(). This {@link Timer} is stoppen when all renderers
302          this.addMouseListener(this);           * finished.
303          this.addMouseMotionListener(this);           */
304          setHighlightManager(new HighlightManager(highlightLayer));          final private Timer repainterTimer;
305          setSelectionManager(new SelectionManager(selectionLayer));  
306          lineHighlightStyle = setupStyle(LINE, Color.red);          /**
307             * The flag {@link #requestStartRendering} can be set to true by events.
308          pointHighlightStyle = setupStyle(POINT, Color.red);           * This {@link Timer} checks the flag regularly and starts one renderer
309             * thread.
310          polygonHighlightStyle = setupStyle(POLYGON, Color.red);           */
311            final private Timer startRenderThreadsTimer;
312          polygonSelectionStyle = setupStyle(POLYGON, Color.cyan);  
313            private Map<Object, Object> rendererHints;
314          pointSelectionStyle = setupStyle(POINT, Color.cyan);  
315            public Map<Object, Object> getRendererHints() {
316          lineSelectionStyle = setupStyle(LINE, Color.cyan);                  return rendererHints;
317          setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));          }
318      }  
319            /**
320      /**           * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein Screenshot gemacht
321       * get the renderer           * wird) wird. Dann werden wird der Hintergrund auf WEISS gesetzt.
322       */           *
323      public GTRenderer getRenderer() {           * @author <a href="mailto:[email protected]">Stefan Alfons
324          return renderer;           *         Kr&uuml;ger</a>
325      }           */
326            @Override
327      public void setRenderer(GTRenderer renderer) {          public void print(Graphics g) {
328          Map hints = new HashMap();                  Color orig = getBackground();
329          if (renderer instanceof StreamingRenderer) {                  setBackground(Color.WHITE);
330              hints = renderer.getRendererHints();  
331              if (hints == null) {                  // wrap in try/finally so that we always restore the state
332                  hints = new HashMap();                  try {
333              }                          super.print(g);
334              if (hints.containsKey(StreamingRenderer.LABEL_CACHE_KEY)) {                  } finally {
335                  labelCache = (LabelCache) hints                          setBackground(orig);
336                          .get(StreamingRenderer.LABEL_CACHE_KEY);                  }
337              } else {          }
338                  hints.put(StreamingRenderer.LABEL_CACHE_KEY, labelCache);  
339              }          /**
340              renderer.setRendererHints(hints);           * full constructor extending JPanel
341          }           *
342             * @param rendererHints
343          this.renderer = renderer;           *
344          this.highlightRenderer = new StreamingRenderer();           * @param layout
345          this.selectionRenderer = new StreamingRenderer();           *            - layout (probably shouldn't be set)
346             * @param isDoubleBuffered
347          hints.put("memoryPreloadingEnabled", Boolean.FALSE);           *            - a Swing thing I don't really understand
348          highlightRenderer.setRendererHints(hints);           * @param render
349          selectionRenderer.setRendererHints(hints);           *            - what to draw the map with
350             * @param localContext
351          if (this.context != null) {           *            - {@link MapContext} of layer to render.
352              this.renderer.setContext(this.context);           */
353          }          public XMapPane(final MapContext localContext,
354      }                          Map<Object, Object> rendererHints) {
355                    super(true);
356      public MapContext getContext() {  
357          return context;                  setRendererHints(rendererHints);
358      }  
359                    setOpaque(true);
360      public void setContext(MapContext context) {  
361          if (this.context != null) {                  setLocalContext(localContext);
362              this.context.removeMapLayerListListener(this);  
363          }                  /**
364                     * Adding the #zoomMapPaneMouseListener
365          this.context = context;                   */
366                    this.addMouseListener(zoomMapPaneMouseListener);
367          if (context != null) {                  this.addMouseMotionListener(zoomMapPaneMouseListener);
368              this.context.addMapLayerListListener(this);                  this.addMouseWheelListener(zoomMapPaneMouseListener);
369          }  
370                    /*
371          if (renderer != null) {                   * We use a Timer object to avoid rendering delays and flickering when
372              renderer.setContext(this.context);                   * the user is drag-resizing the parent container of this map pane.
373          }                   *
374      }                   * Using a ComponentListener doesn't work because, unlike a JFrame, the
375                     * pane receives a stream of events during drag-resizing.
376      public Envelope getMapArea() {                   */
377          return mapArea;                  resizingPaintDelay = DEFAULT_RESIZING_PAINT_DELAY;
378      }                  resizeTimer = new Timer(resizingPaintDelay, new ActionListener() {
379    
380      public void setMapArea(Envelope mapArea) {                          public void actionPerformed(ActionEvent e) {
381          this.mapArea = mapArea;                                  paneResized = true;
382      }  
383                                    if (!isWellDefined())
384      public int getState() {                                          return;
385          return state;  
386      }                                  Rectangle bounds = getVisibleRect();
387    
388      public void setState(int state) {                                  Envelope geoMapArea = tranformWindowToGeo(bounds.x, bounds.y,
389          this.state = state;                                                  bounds.x + bounds.width, bounds.y + bounds.height);
390    
391          // System.out.println("State: " + state);                                  setMapArea(bestAllowedMapArea(geoMapArea));
392      }                          }
393                    });
394      public double getZoomFactor() {                  resizeTimer.setRepeats(false);
395          return zoomFactor;                  this.addComponentListener(new ComponentAdapter() {
396      }  
397                            @Override
398      public void setZoomFactor(double zoomFactor) {                          public void componentResized(ComponentEvent e) {
399          this.zoomFactor = zoomFactor;                                  if (bgExecuter != null)
400      }                                          bgExecuter.cancelTask();
401                                    if (localExecuter != null)
402      public MapLayer getSelectionLayer() {                                          localExecuter.cancelTask();
403          return selectionLayer;                                  resizeTimer.restart();
404      }                          }
405    
406      public void setSelectionLayer(MapLayer selectionLayer) {                  });
407          this.selectionLayer = selectionLayer;  
408          if(selectionManager!=null) {                  repainterTimer = new Timer((int) DEFAULT_REPAINTING_DELAY,
409              selectionManager.setSelectionLayer(selectionLayer);                                  new ActionListener() {
410          }  
411      }                                          @Override
412                                            public void actionPerformed(ActionEvent e) {
413      public boolean isHighlight() {                                                  updateFinalImage();
414          return highlight;                                                  XMapPane.this.repaint(DEFAULT_REPAINTING_DELAY);
415      }                                          }
416                                    });
417      public void setHighlight(boolean highlight) {                  repainterTimer.setInitialDelay(1000);
418          this.highlight = highlight;                  repainterTimer.setRepeats(true);
419      }  
420                    startRenderThreadsTimer = new Timer(200, new ActionListener() {
421      public MapLayer getHighlightLayer() {  
422          return highlightLayer;                          @Override
423      }                          public void actionPerformed(ActionEvent e) {
424                                    synchronized (requestStartRendering) {
425      public void setHighlightLayer(MapLayer highlightLayer) {                                          if (requestStartRendering && isValid())
426          this.highlightLayer = highlightLayer;                                                  startRendering();
427                                            requestStartRendering = false;
428          if (highlightManager != null) {                                  }
429              highlightManager.setHighlightLayer(highlightLayer);                          }
430          }                  });
431      }                  startRenderThreadsTimer.start();
432    
433      public HighlightManager getHighlightManager() {          }
434          return highlightManager;  
435      }          // TODO doku
436            public XMapPane() {
437      public void setHighlightManager(HighlightManager highlightManager) {                  this(null, null);
438          this.highlightManager = highlightManager;          }
439          this.highlightManager.addHighlightChangeListener(this);  
440          this.addMouseMotionListener(this.highlightManager);          /**
441      }           * Sets the mapArea to best possibly present the given features. If only one
442             * single point is given, the window is moved over the point.
443      public Style getLineHighlightStyle() {           *
444          return lineHighlightStyle;           * Note: The method does not call {@link #repaint()} on the
445      }           * {@link SelectableXMapPane} .
446             *
447      public void setLineHighlightStyle(Style lineHighlightStyle) {           * @param features
448          this.lineHighlightStyle = lineHighlightStyle;           *            if <code>null</code> or size==0, the function doesn nothing.
449      }           */
450            public void zoomTo(
451      public Style getLineSelectionStyle() {                          FeatureCollection<SimpleFeatureType, SimpleFeature> features) {
452          return lineSelectionStyle;  
453      }                  CoordinateReferenceSystem mapCRS = getContext()
454                                    .getCoordinateReferenceSystem();
455      public void setLineSelectionStyle(Style lineSelectionStyle) {                  CoordinateReferenceSystem fCRS = features.getSchema()
456          this.lineSelectionStyle = lineSelectionStyle;                                  .getGeometryDescriptor().getCoordinateReferenceSystem();
457      }  
458                    double width = mapArea.getWidth();
459      public Style getPointHighlightStyle() {                  double height = mapArea.getHeight();
460          return pointHighlightStyle;                  double ratio = height / width;
461      }  
462                    if (features == null || features.size() == 0) {
463      public void setPointHighlightStyle(Style pointHighlightStyle) {                          // feature count == 0 Zoom to the full extend
464          this.pointHighlightStyle = pointHighlightStyle;                          return;
465      }                  } else if (features.size() == 1) {
466    
467      public Style getPointSelectionStyle() {                          // feature count == 1 Just move the window to the point and zoom 'a
468          return pointSelectionStyle;                          // bit'
469      }                          SimpleFeature singleFeature = (SimpleFeature) features.iterator()
470                                            .next();
471      public void setPointSelectionStyle(Style pointSelectionStyle) {  
472          this.pointSelectionStyle = pointSelectionStyle;                          if (((Geometry) singleFeature.getDefaultGeometry())
473      }                                          .getCoordinates().length > 1) {
474                                    // System.out.println("Zoomed to only pne poylgon");
475      public Style getPolygonHighlightStyle() {                                  // Poly
476          return polygonHighlightStyle;                                  // TODO max width vs. height
477      }                                  width = features.getBounds().getWidth() * 3;
478                                    height = ratio * width;
479      public void setPolygonHighlightStyle(Style polygonHighlightStyle) {                          } else {
480          this.polygonHighlightStyle = polygonHighlightStyle;                                  // System.out.println("Zoomed in a bit becasue only one point");
481      }                                  // width *= .9;
482                                    // height *= .9;
483      public Style getPolygonSelectionStyle() {                          }
484          return polygonSelectionStyle;  
485      }                          Coordinate centre = features.getBounds().centre();
486                            if (!mapCRS.equals(fCRS)) {
487      public void setPolygonSelectionStyle(Style polygonSelectionStyle) {                                  // only to calculations if the CRS differ
488          this.polygonSelectionStyle = polygonSelectionStyle;                                  try {
489      }                                          MathTransform fToMap;
490                                            fToMap = CRS.findMathTransform(fCRS, mapCRS);
491      protected void paintComponent(Graphics g) {                                          // centre is transformed to the mapCRS
492          super.paintComponent(g);                                          centre = JTS.transform(centre, null, fToMap);
493                                    } catch (FactoryException e) {
494          if ((renderer == null) || (mapArea == null)  ) {                                          LOGGER.error("Looking for a Math transform", e);
495              return;                                  } catch (TransformException e) {
496          }                                          LOGGER.error("Looking for a Math transform", e);
497                                    }
498          Rectangle r = getBounds();                          }
499          Rectangle dr = new Rectangle(r.width, r.height);  
500                            Coordinate newLeftBottom = new Coordinate(centre.x - width / 2.,
501          if (!r.equals(oldRect) || reset) {                                          centre.y - height / 2.);
502                  if(!r.equals(oldRect) && (mapArea == null)) {                          Coordinate newTopRight = new Coordinate(centre.x + width / 2.,
503                          try {                                          centre.y + height / 2.);
504                                          mapArea=context.getLayerBounds();  
505                                  } catch (IOException e) {                          Envelope newMapArea = new Envelope(newLeftBottom, newTopRight);
506                                          // TODO Auto-generated catch block  
507                                          e.printStackTrace();                          setMapArea(newMapArea);
508                                  }  
509                  }                  } else {
510                                            ReferencedEnvelope fBounds = features.getBounds();
511                  if (mapArea != null){  
512                          /* either the viewer size has changed or we've done a reset */                          Envelope bounds;
513                          changed = true; /* note we need to redraw */                          if (!mapCRS.equals(fCRS)) {
514                          reset = false; /* forget about the reset */                                  bounds = JTSUtil.transformEnvelope(fBounds, fCRS, mapCRS);
515                          oldRect = r; /* store what the current size is */                          } else {
516                                                            bounds = fBounds;
517                          mapArea = fixAspectRatio(r, mapArea);                          }
518                  }                          // BB umrechnen von Layer-CRS in Map-CRS
519          }  
520                            // Expand a bit
521          if (!mapArea.equals(oldMapArea)) { /* did the map extent change? */                          bounds.expandBy(bounds.getWidth() / 6., bounds.getHeight() / 6.);
522              changed = true;  
523              oldMapArea = mapArea;                          setMapArea(bounds);
524  //          when we tell the context that the bounds have changed WMSLayers                  }
525              // can refresh them selves          }
526              context.setAreaOfInterest(mapArea, context  
527                      .getCoordinateReferenceSystem());          private void setRendererHints(Map<Object, Object> rendererHints) {
528          }                  this.rendererHints = rendererHints;
529            }
530          if (changed) { /* if the map changed then redraw */  
531              changed = false;          /**
532              baseImage = new BufferedImage(dr.width, dr.height,           * Return <code>true</code> if a CRS and a {@link #mapArea} are set and the
533                      BufferedImage.TYPE_INT_ARGB);           * {@link XMapPane} is visible and has bounds set.
534             */
535              Graphics2D ig = baseImage.createGraphics();          public boolean isWellDefined() {
536              /* System.out.println("rendering"); */                  
537              renderer.setContext(context);                  try {
538              labelCache.clear(); // work around anoying labelcache bug                          
539                    if (getContext() == null)
540                            return false;
541              // draw the map                  if (getContext().getLayerCount() <= 0)
542              renderer.paint((Graphics2D) ig, dr, mapArea);                          return false;
543                    if (getMapArea() == null)
544              // TODO , nur machen, wenn panning beginnt                          return false;
545              panningImage = new BufferedImage(dr.width, dr.height,                  if (getBounds().getWidth() == 0)
546                          BufferedImage.TYPE_INT_RGB);                          return false;
547                                if (getBounds().getHeight() == 0)
548          }                          return false;
549                    } catch (Exception e) {
550          ((Graphics2D) g).drawImage(baseImage, 0, 0, this);                          return false;
551                    }
552          if ((selection != null) && (selection.size() > 0)) {                  return true;
553              // paint selection          }
554    
555              String type = selectionLayer.getFeatureSource().getSchema()          /**
556              .getDefaultGeometry().getType().getName();           * Default delay (milliseconds) before the map will be redrawn when resizing
557              /*String type = selection.getDefaultGeometry().getGeometryType();*/           * the pane. This is to avoid flickering while drag-resizing.
558              /*System.out.println(type);*/           */
559              if (type == null)          public static final int DEFAULT_RESIZING_PAINT_DELAY = 500; // delay in
560                  type = "polygon";          // milliseconds
561    
562              /* String type = "point"; */          private Timer resizeTimer;
563            private int resizingPaintDelay;
564              if (type.toLowerCase().endsWith("polygon")) {          /**
565                  selectionStyle = polygonSelectionStyle;           * We store the old transform for a moment to use it for the
566              } else if (type.toLowerCase().endsWith("point")) {           * "quick scaled preview" in case of ZoomIn
567                  selectionStyle = pointSelectionStyle;           **/
568              } else if (type.toLowerCase().endsWith("line")) {          protected AffineTransform oldScreenToWorld = null;
569                  selectionStyle = lineSelectionStyle;  
570              }          /**
571             * Manuell gesetzter statischer Cursor, unabhaengig von der aktuellen
572              selectionContext = new DefaultMapContext(DefaultGeographicCRS.WGS84);           * MapPane-Funktion
573             */
574              selectionContext.addLayer(selection, selectionStyle);          protected Cursor staticCursor = null;
575              selectionRenderer.setContext(selectionContext);  
576            /**
577              selectImage = new BufferedImage(dr.width, dr.height,           * Standardmaessig wird der Cursor automatisch je nach MapPane-Aktion (Zoom,
578                      BufferedImage.TYPE_INT_ARGB);           * Auswahl, ...) gesetzt. Mit dieser Methode kann ein statischer Cursor
579             * gesetzt werden, der unabhaengig von der aktuellen MapPanes-Aktion
580              Graphics2D ig = selectImage.createGraphics();           * beibehalten wird. Um diesen statischen Cursor wieder zu entfernen, kann
581              /* System.out.println("rendering selection"); */           * {@code null} als Parameter uebergeben werden
582              selectionRenderer.paint((Graphics2D) ig, dr, mapArea);           *
583             * @param cursor
584              ((Graphics2D) g).drawImage(selectImage, 0, 0, this);           *            Cursor
585          }           */
586            public void setStaticCursor(Cursor cursor) {
587          if (highlight && (highlightFeature != null)                  this.staticCursor = cursor;
588                  && (highlightFeature.size() > 0)) {                  if (cursor != null)
589              /*                          super.setCursor(cursor);
590               * String type = selection.getDefaultGeometry().getGeometryType();          }
591               * System.out.println(type); if(type==null) type="polygon";  
592               */          /**
593              String type = highlightLayer.getFeatureSource().getSchema()           * Liefert den statisch eingestellten Cursor, der unabhaengig von der
594              .getDefaultGeometry().getType().getName();           * eingestellten MapPane-Aktion (Zoom, Auswahl, ...) verwendet wird.
595              /*String type = selection.getDefaultGeometry().getGeometryType();*/           *
596              //System.out.println(type);           * @return {@code null}, wenn kein statischer Cursor verwendet, sondern der
597              if (type == null)           *         Cursor automatisch je nach MapPane-Aktion eingestellt wird.
598                  type = "polygon";           */
599            public Cursor getStaticCursor() {
600              /* String type = "point"; */                  return this.staticCursor;
601              Style highlightStyle = null;          }
602              if (type.toLowerCase().endsWith("polygon")) {  
603                  highlightStyle = polygonHighlightStyle;          /**
604              } else if (type.toLowerCase().endsWith("point")) {           * Abhaengig von selState wird der Cursor gesetzt
605                  highlightStyle = pointHighlightStyle;           */
606              } else if (type.toLowerCase().endsWith("line")) {          public void updateCursorAndRepaintTimer() {
607                  highlightStyle = lineHighlightStyle;  
608              }                  if (bgExecuter != null && bgExecuter.isRunning()
609                                    || localExecuter != null && localExecuter.isRunning()) {
610                            setCursor(WAIT_CURSOR);
611                            return;
612                    } else {
613              MapContext highlightContext = new DefaultMapContext(                          // Allow one last rendering
614                      DefaultGeographicCRS.WGS84);                          if (repainterTimer.isRunning()) {
615                                    repainterTimer.stop();
616              highlightContext.addLayer(highlightFeature, highlightStyle);                                  updateFinalImage();
617              highlightRenderer.setContext(highlightContext);                                  repaint();
618                            }
619              /* System.out.println("rendering highlight"); */                  }
620              highlightRenderer.paint((Graphics2D) g, dr, mapArea);  
621          }                  // wenn manueller Cursor gesetzt ist, dann diesen verwenden (unabhaengig
622      }                  // von der aktuellen Aktion
623                    if (this.staticCursor != null) {
624      private Envelope fixAspectRatio(Rectangle r, Envelope mapArea) {                          setCursor(staticCursor);
625                                    return;
626          double mapWidth = mapArea.getWidth(); /* get the extent of the map */                  }
627          double mapHeight = mapArea.getHeight();                  if (getCursor() == SwingUtil.PANNING_CURSOR) {
628          double scaleX = r.getWidth() / mapArea.getWidth(); /*                          // This cursor will reset itself
629                                                               * calculate the new                          return;
630                                                               * scale                  }
631                                                               */  
632                    // Je nach Aktion den Cursor umsetzen
633          double scaleY = r.getHeight() / mapArea.getHeight();                  switch (state) {
634          double scale = 1.0; // stupid compiler!                  case SELECT_TOP:
635                    case SELECT_ONE_FROM_TOP:
636          if (scaleX < scaleY) { /* pick the smaller scale */                  case SELECT_ALL:
637              scale = scaleX;                          setCursor(SwingUtil.CROSSHAIR_CURSOR);
638          } else {                          break;
639              scale = scaleY;                  case ZOOM_IN:
640          }                          setCursor(SwingUtil.ZOOMIN_CURSOR);
641                            break;
642          /* calculate the difference in width and height of the new extent */                  case ZOOM_OUT:
643          double deltaX = /* Math.abs */((r.getWidth() / scale) - mapWidth);                          setCursor(SwingUtil.ZOOMOUT_CURSOR);
644          double deltaY = /* Math.abs */((r.getHeight() / scale) - mapHeight);                          break;
645                    case PAN:
646          /*                          setCursor(SwingUtil.PAN_CURSOR);
647           * System.out.println("delta x " + deltaX); System.out.println("delta y " +                          break;
648           * deltaY);                  default:
649           */                          setCursor(normalCursor);
650                            break;
651          /* create the new extent */                  }
652          Coordinate ll = new Coordinate(mapArea.getMinX() - (deltaX / 2.0),          }
653                  mapArea.getMinY() - (deltaY / 2.0));  
654          Coordinate ur = new Coordinate(mapArea.getMaxX() + (deltaX / 2.0),          //
655                  mapArea.getMaxY() + (deltaY / 2.0));          // /**
656            // * Gibt den "normalen" Cursor zurueck. Dieser kann neben dem "pointer"
657          return new Envelope(ll, ur);          // auch
658      }          // * ein Sanduhr-Wartecursor sein.
659            // *
660      public void doSelection(double x, double y, MapLayer layer) {          // * @author <a href="mailto:[email protected]">Stefan Alfons
661            // * Kr&uuml;ger</a>
662          Geometry geometry = gf.createPoint(new Coordinate(x, y));          // */
663            // public Cursor getNormalCursor() {
664          // org.opengis.geometry.Geometry geometry = new Point();          // return normalCursor;
665            // }
666              findFeature(geometry, layer);          //
667            // /**
668      }          // * Setzt den "normalen" Cursor. Dieser kann neben dem default "pointer"
669            // z.B.
670      /**          // * auch ein Sanduhr-Wartecursor sein.
671       * @param geometry -          // *
672       *            a geometry to construct the filter with          // * @author <a href="mailto:[email protected]">Stefan Alfons
673       * @param i -          // * Kr&uuml;ger</a>
674       *            the index of the layer to search          // */
675       * @throws IndexOutOfBoundsException          // public void setNormalCursor(Cursor normalCursor) {
676       */          // this.normalCursor = normalCursor;
677      private void findFeature(Geometry geometry, MapLayer layer)          // }
678              throws IndexOutOfBoundsException {  
679          org.opengis.filter.spatial.BinarySpatialOperator f = null;          /**
680             * Berechnet die Transformation zwischen Fenster- und Karten-Koordinaten
681             * neu.
682          if ((context == null) || (layer==null)) {           */
683              return ;          protected void resetTransforms() {
684          }                  if (getMapArea() == null || getWidth() == 0 || getHeight() == 0)
685                            return;
686    
687                    // We store the last Transform
688          try {                  oldScreenToWorld = screenToWorld;
689              String name = layer.getFeatureSource().getSchema()  
690                      .getDefaultGeometry().getName();                  this.screenToWorld = new AffineTransform(
691                    // Genauso wie die Fenster-Koordinaten, werden die Longitude-Koordinaten
692              if (name == "") {                                  // nach rechts (Osten) hin groesser
693                  name = "the_geom";                                  // --> positive Verschiebung
694              }                                  getMapArea().getWidth() / getWidth(),
695                                    // keine Verzerrung
696              try {                                  0.0, 0.0,
697                  f = ff.contains(ff.property(name), ff.literal(geometry));                                  // Waehrend die Fenster-Koordinaten nach unten hin groesser
698                  if(selectionManager!=null) {                                  // werden,
699                      System.out.println("selection changed");                                  // werden Latitude-Koordinaten nach Sueden hin keiner
700                      selectionManager.selectionChanged(this, f);                                  // --> negative Verschiebung
701                                    -getMapArea().getHeight() / getHeight(),
702                  }                                  // Die Longitude-Koordinaten werden nach Osten hin groesser
703              } catch (IllegalFilterException e) {                                  // --> obere linke Ecke des Fensters hat also den Minimalwert
704                  // TODO Auto-generated catch block                                  getMapArea().getMinX(),
705                  e.printStackTrace();                                  // Die Latitude-Koordinaten werden nach Norden hin groesser
706              }                                  // --> obere linke Ecke des Fensters hat also den Maximalwert
707                                    getMapArea().getMaxY());
708              /*// f.addLeftGeometry(ff.property(name));  
709              // System.out.println("looking with " + f);                  try {
710              FeatureCollection fc = layer.getFeatureSource().getFeatures(f);                          this.worldToScreen = screenToWorld.createInverse();
711                    } catch (NoninvertibleTransformException e) {
712                            LOGGER.error(e);
713                    }
714              if (fcol == null) {          }
715                  fcol = fc;  
716            /**
717                  // here we should set the defaultgeom type           * Transformation zwischen Fenster-Koordinaten und Karten-Koordinaten
718              } else {           * (lat/lon)
719                  fcol.addAll(fc);           */
720              }*/          protected AffineTransform screenToWorld = null;
721    
722              /*          private AffineTransform worldToScreen;
723               * GeometryAttributeType gat =  
724               * layer.getFeatureSource().getSchema().getDefaultGeometry();          /**
725               * fcol.setDefaultGeometry((Geometry)gat.createDefaultValue());           * Listens to changes of the "local" {@link MapContext} and triggers
726               */           * repaints where needed.
727             */
728              /*          private MapLayerListListener localContextListener = new MapLayerListListener() {
729               * Iterator fi = fc.iterator(); while (fi.hasNext()) { Feature feat =  
730               * (Feature) fi.next(); System.out.println("selected " +                  @Override
731               * feat.getAttribute("STATE_NAME")); }                  public void layerAdded(final MapLayerListEvent event) {
732               */                          event.getLayer().addMapLayerListener(localMapLayerListener);
733          } catch (IllegalFilterException e) {  
734              // TODO Auto-generated catch block                          if (localContext.getLayers().length == 1) { // the first one
735              e.printStackTrace();                                  // if the Area of Interest is unset, the LayerBounds are used
736          }                                  if (!setMapArea(localContext.getAreaOfInterest()))
737          return ;                                          repaint();
738      }  
739                                    return;
740      public void mouseClicked(MouseEvent e) {                          }
741          // System.out.println("before area "+mapArea+"\nw:"+mapArea.getWidth()+"  
742          // h:"+mapArea.getHeight());                          // We need to redraw, even in case that the mapArea didn't change
743          Rectangle bounds = this.getBounds();                          // mapImageInvalid = true;
744          double x = (double) (e.getX());                          // repaint();
745          double y = (double) (e.getY());                          requestStartRendering();
746          double width = mapArea.getWidth();  
747          double height = mapArea.getHeight();                  }
748  //xulu.sc  
749  //        double width2 = mapArea.getWidth() / 2.0;                  @Override
750  //        double height2 = mapArea.getHeight() / 2.0;                  public void layerRemoved(final MapLayerListEvent event) {
751          double width2 = width / 2.0;                          if (event.getLayer() != null)
752          double height2 = height / 2.0;                                  event.getLayer().removeMapLayerListener(localMapLayerListener);
753  //xulu.ec                          // mapImageInvalid = true;
754          double mapX = ((x * width) / (double) bounds.width) + mapArea.getMinX();                          // repaint();
755          double mapY = (((bounds.getHeight() - y) * height) / (double) bounds.height)                          requestStartRendering();
756                  + mapArea.getMinY();                  }
757    
758          /*                  @Override
759           * System.out.println(""+x+"->"+mapX);                  public void layerChanged(final MapLayerListEvent event) {
760           * System.out.println(""+y+"->"+mapY);                          // mapImageInvalid = true;
761           */                          // repaint();
762                            requestStartRendering();
763          /*                  }
764           * Coordinate ll = new Coordinate(mapArea.getMinX(), mapArea.getMinY());  
765           * Coordinate ur = new Coordinate(mapArea.getMaxX(), mapArea.getMaxY());                  @Override
766           */                  public void layerMoved(final MapLayerListEvent event) {
767          double zlevel = 1.0;                          // mapImageInvalid = true;
768                            // repaint();
769          switch (state) {                          requestStartRendering();
770          case Pan:                  }
771              zlevel = 1.0;          };
772  //xulu.sc SK: return here.. a mouselistener is maanaging the PANNING  
773  //            break;          /**
774              return;           * Listens to changes of the "background" {@link MapContext} and triggers
775  //xulu.ec           * repaints where needed.
776          case ZoomIn:           */
777              zlevel = zoomFactor;          private MapLayerListListener bgContextListener = new MapLayerListListener() {
778    
779              break;                  @Override
780                    public void layerAdded(final MapLayerListEvent event) {
781          case ZoomOut:                          event.getLayer().addMapLayerListener(bgMapLayerListener);
782              zlevel = 1.0 / zoomFactor;  
783                            if (localContext.getLayers().length == 0
784              break;                                          && bgContext.getLayers().length == 1) { // the first one and
785                                    // localContext is
786          case Select:                                  // empty
787              doSelection(mapX, mapY, selectionLayer);                                  if (!setMapArea(localContext.getAreaOfInterest()))
788                                            requestStartRendering();
789                                    return;
790              return;                          }
791    
792          default:                          // We need to redraw, even in case that the mapArea didn't change
793              return;                          // mapImageInvalid = true;
794          }                          // repaint();
795                            requestStartRendering();
796          Coordinate ll = new Coordinate(mapX - (width2 / zlevel), mapY  
797                  - (height2 / zlevel));                  }
798          Coordinate ur = new Coordinate(mapX + (width2 / zlevel), mapY  
799                  + (height2 / zlevel));                  @Override
800  //xulu.sc SK: Check for min/max scale                  public void layerRemoved(final MapLayerListEvent event) {
801  //        mapArea = new Envelope(ll, ur);                          if (event.getLayer() != null)
802          final Envelope newMapArea = new Envelope(ll, ur);                                  event.getLayer().removeMapLayerListener(bgMapLayerListener);
803          setMapArea( bestAllowedMapArea( newMapArea ) );                          // mapImageInvalid = true;
804  //xulu.ec                          // repaint();
805                            requestStartRendering();
806          // System.out.println("after area "+mapArea+"\nw:"+mapArea.getWidth()+"                  }
807          // h:"+mapArea.getHeight());  
808          repaint();                  @Override
809      }                  public void layerChanged(final MapLayerListEvent event) {
810                            // mapImageInvalid = true;
811      public void mouseEntered(MouseEvent e) {                          // repaint();
812      }                          requestStartRendering();
813                    }
814      public void mouseExited(MouseEvent e) {  
815      }                  @Override
816                    public void layerMoved(final MapLayerListEvent event) {
817      public void mousePressed(MouseEvent e) {                          // mapImageInvalid = true;
818          startX = e.getX();                          // repaint();
819          startY = e.getY();                          requestStartRendering();
820          lastX = 0;                  }
821          lastY = 0;          };
822      }  
823                /**
824      public void mouseReleased(MouseEvent e) {           * Listens to each layer in the local {@link MapContext} for changes and
825          int endX = e.getX();           * triggers repaints.
826          int endY = e.getY();           */
827                    protected MapLayerListener localMapLayerListener = new MapLayerAdapter() {
828          processDrag(startX, startY, endX, endY, e);  
829          lastX = 0;                  @Override
830          lastY = 0;                  public void layerShown(MapLayerEvent event) {
831                                    // mapImageInvalid = true;
832          /**                          // repaint();
833           * Es wird nicht (mehr) gepannt!                          requestStartRendering();
834           */                  }
835          panning_started = false;  
836      }                  @Override
837                    public void layerHidden(MapLayerEvent event) {
838      public void mouseDragged(MouseEvent e) {                          // mapImageInvalid = true;
839          Graphics graphics = this.getGraphics();                          // repaint();
840          int x = e.getX();                          requestStartRendering();
841          int y = e.getY();                  }
842            
843                    @Override
844          if ( (state == JMapPane.Pan) || ((e.getModifiersEx() & InputEvent.BUTTON3_DOWN_MASK) != 0))  {                  public void layerChanged(MapLayerEvent event) {
845              /**                          // Change of SLD for example
846               * SK:                          // mapImageInvalid = true;
847               * Der Cursor wird auf PANNING gesetzt.                          // repaint();
848               */                          requestStartRendering();
849                  if (panning_started == false){                  }
850                          panning_started = true;          };
851                          setCursor( SwingUtil.PANNING_CURSOR );  
852                  }          /**
853                             * Listens to each layer in the local {@link MapContext} for changes and
854                             * triggers repaints.
855              // move the image with the mouse           */
856              if ((lastX > 0) && (lastY > 0)) {          protected MapLayerListener bgMapLayerListener = new MapLayerAdapter() {
857                  int dx = lastX - startX;  
858                  int dy = lastY - startY;                  @Override
859                  // System.out.println("translate "+dx+","+dy);                  public void layerShown(MapLayerEvent event) {
860                  final Graphics2D g2 = panningImage.createGraphics();                          // mapImageInvalid = true;
861                  g2.setBackground( new Color(240,240,240) ); //TODO richtige farbe? am besten vom L&F die hintergrundfarbe auslesen...                          // repaint();
862                                  g2.clearRect(0, 0, this.getWidth(), this.getHeight());                          requestStartRendering();
863                                  g2.drawImage(baseImage, dx, dy, this);                  }
864                  graphics.drawImage(panningImage, 0, 0, this);  
865              }                  @Override
866                    public void layerHidden(MapLayerEvent event) {
867              lastX = x;                          // mapImageInvalid = true;
868              lastY = y;                          // repaint();
869          } else                          requestStartRendering();
870                                    }
871          if ((state == JMapPane.ZoomIn) || (state == JMapPane.ZoomOut)) {  
872                            @Override
873                            public void layerChanged(MapLayerEvent event) {
874              graphics.setXORMode(Color.WHITE);                          // Change of SLD for example
875                            // mapImageInvalid = true;
876              if ((lastX > 0) && (lastY > 0)) {                          // repaint();
877                  drawRectangle(graphics);                          requestStartRendering();
878              }                  }
879            };
880              // draw new box  
881              lastX = x;          /**
882              lastY = y;           * Liefert eine affine Transformation, um von den Fenster-Koordinaten in die
883              drawRectangle(graphics);           * Karten-Koordinaten (Lat/Lon) umzurechnen.
884          } else if (state == JMapPane.Select && selectionLayer != null) {           *
885             * @return eine Kopie der aktuellen Transformation; <code>null</code> wenn
886              // construct a new bbox filter           *         noch keine Karte angezeigt wird
887              Rectangle bounds = this.getBounds();           */
888            public AffineTransform getScreenToWorld() {
889              double mapWidth = mapArea.getWidth();                  if (screenToWorld == null)
890              double mapHeight = mapArea.getHeight();                          resetTransforms();
891                    // nur Kopie der Transformation zurueckgeben!
892              double x1 = ((this.startX * mapWidth) / (double) bounds.width)                  if (screenToWorld == null)
893                      + mapArea.getMinX();                          return null;
894              double y1 = (((bounds.getHeight() - this.startY) * mapHeight) / (double) bounds.height)                  return new AffineTransform(screenToWorld);
895                      + mapArea.getMinY();          }
896              double x2 = ((x * mapWidth) / (double) bounds.width)  
897                      + mapArea.getMinX();          public AffineTransform getWorldToScreenTransform() {
898              double y2 = (((bounds.getHeight() - y) * mapHeight) / (double) bounds.height)                  if (worldToScreen == null) {
899                      + mapArea.getMinY();                          resetTransforms();
900              double left = Math.min(x1, x2);                  }
901              double right = Math.max(x1, x2);                  // nur Kopie der Transformation zurueckgeben!
902              double bottom = Math.min(y1, y2);                  return new AffineTransform(worldToScreen);
903              double top = Math.max(y1, y2);          }
904    
905            public MapContext getContext() {
906              String name = selectionLayer.getFeatureSource().getSchema()                  if (localContext == null) {
907                      .getDefaultGeometry().getName();                          this.localContext = new DefaultMapContext();
908                            this.localContext.addMapLayerListListener(localContextListener);
909              if (name == "") {                  }
910                  name = "the_geom";                  return localContext;
911              }          }
912              Filter bb = ff.bbox(ff.property(name), left, bottom, right, top,  
913                      getContext().getCoordinateReferenceSystem().toString());          public MapContext getBgContext() {
914              if(selectionManager!=null) {                  return bgContext;
915                  selectionManager.selectionChanged(this, bb);          }
916              }  
917            /**
918              graphics.setXORMode(Color.green);           *
919             * @param context
920              /*           */
921               * if ((lastX > 0) && (lastY > 0)) { drawRectangle(graphics); }          public void setLocalContext(final MapContext context) {
922               */                  // Remove the default listener from the old context
923                    if (this.localContext != null) {
924              // draw new box                          this.localContext.removeMapLayerListListener(localContextListener);
925              lastX = x;  
926              lastY = y;                          // adding listener to all layers
927              drawRectangle(graphics);                          for (MapLayer mapLayer : localContext.getLayers()) {
928         }                                  mapLayer.removeMapLayerListener(localMapLayerListener);
929                                }
930      }                  }
931    
932      // sk.cs                  this.localContext = context;
933  //    private void processDrag(int x1, int y1, int x2, int y2) {  
934      // sk.ce                  if (context != null) {
935      protected void processDrag(int x1, int y1, int x2, int y2, MouseEvent e) {                          setMapArea(localContext.getAreaOfInterest());
936            
937          /****                          this.localContext.addMapLayerListListener(localContextListener);
938           * If no layer is availabe we dont want a NullPointerException  
939           */                          // adding listener to all layers
940          if (mapArea == null) return;                          for (MapLayer mapLayer : localContext.getLayers()) {
941                                            mapLayer.addMapLayerListener(localMapLayerListener);
942          // System.out.println("processing drag from " + x1 + "," + y1 + " -> "                          }
943          // + x2 + "," + y2);                  }
944          if ((x1 == x2) && (y1 == y2)) {  
945              if (isClickable()) {                  mapImageInvalid = true;
946                  mouseClicked(new MouseEvent(this, 0, new Date().getTime(), 0,                  repaint();
947                          x1, y1, y2, false));          }
948              }  
949            public void setBgContext(final MapContext context) {
950              return;  
951          }                  // Remove the default listener from the old context
952                            if (this.bgContext != null) {
953          Rectangle bounds = this.getBounds();                          this.bgContext.removeMapLayerListListener(bgContextListener);
954    
955          double mapWidth = mapArea.getWidth();                          // adding listener to all layers
956          double mapHeight = mapArea.getHeight();                          for (MapLayer mapLayer : bgContext.getLayers()) {
957                                    mapLayer.removeMapLayerListener(bgMapLayerListener);
958          double startX = ((x1 * mapWidth) / (double) bounds.width)                          }
959                  + mapArea.getMinX();                  }
960          double startY = (((bounds.getHeight() - y1) * mapHeight) / (double) bounds.height)  
961                  + mapArea.getMinY();                  this.bgContext = context;
962          double endX = ((x2 * mapWidth) / (double) bounds.width)  
963                  + mapArea.getMinX();                  if (context != null) {
964          double endY = (((bounds.getHeight() - y2) * mapHeight) / (double) bounds.height)                          setMapArea(bgContext.getAreaOfInterest());
965                  + mapArea.getMinY();  
966                            this.bgContext.addMapLayerListListener(bgContextListener);
967          if (  (state == JMapPane.Pan) || (e.getButton()== MouseEvent.BUTTON3)) {  
968              // move the image with the mouse                          // adding listener to all layers
969              // calculate X offsets from start point to the end Point                          for (MapLayer mapLayer : bgContext.getLayers()) {
970              double deltaX1 = endX - startX;                                  mapLayer.addMapLayerListener(bgMapLayerListener);
971                            }
972              // System.out.println("deltaX " + deltaX1);                  }
973              // new edges                  mapImageInvalid = true;
974              double left = mapArea.getMinX() - deltaX1;                  repaint();
975              double right = mapArea.getMaxX() - deltaX1;          }
976    
977              // now for Y          /**
978              double deltaY1 = endY - startY;           * Returns a copy of the mapArea
979             *
980              // System.out.println("deltaY " + deltaY1);           * @return
981              double bottom = mapArea.getMinY() - deltaY1;           */
982              double top = mapArea.getMaxY() - deltaY1;          public Envelope getMapArea() {
983              Coordinate ll = new Coordinate(left, bottom);                  if (mapArea == null) {
984              Coordinate ur = new Coordinate(right, top);                          final Rectangle paneBounds = getBounds();
985  //xulu.sc  
986  //            mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));                          try {
987              setMapArea( fixAspectRatio(this.getBounds(), new Envelope(ll, ur)) );                                  mapArea = localContext.getLayerBounds();
988  //xulu.ec                          } catch (final IOException e) {
989          } else if (state == JMapPane.ZoomIn) {                                  LOGGER.warn("context.getLayerBounds()", e);
990                                            }
991    
992                  // Zu kleine Flächen sollen nicht gezoomt werden.                          if (mapArea != null) {
993                  //sk.bc                                  /* either the viewer size has changed or we've done a reset */
994                  if ( (Math.abs(x1-x2) * Math.abs(y2-y1) )<100 ) return;                                  mapImageInvalid = true; /* note we need to redraw */
995                  // sk.ec                                  oldRect = paneBounds; /* store what the current size is */
996                                                    mapArea = bestAllowedMapArea(mapArea);
997                  drawRectangle(this.getGraphics());                          }
998              // make the dragged rectangle (in map coords) the new BBOX                  }
999              double left = Math.min(startX, endX);  
1000              double right = Math.max(startX, endX);                  if (mapArea == null)
1001              double bottom = Math.min(startY, endY);                          return null;
1002              double top = Math.max(startY, endY);  
1003              Coordinate ll = new Coordinate(left, bottom);                  return new Envelope(mapArea);
1004              Coordinate ur = new Coordinate(right, top);          }
1005  //xulu.sc  
1006  //            mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));          /**
1007              setMapArea( fixAspectRatio(this.getBounds(), new Envelope(ll, ur)) );           * @param newMapArea
1008  //xulu.ec           * @return <code>true</code> if the mapArea has been changed and a repaint
1009          } else if (state == JMapPane.ZoomOut) {           *         has been triggered.
1010                  drawRectangle(this.getGraphics());           */
1011                            public boolean setMapArea(final Envelope newMapArea) {
1012                  // make the dragged rectangle in screen coords the new map size?  
1013              double left = Math.min(startX, endX);                  if (newMapArea == null
1014              double right = Math.max(startX, endX);                                  || bestAllowedMapArea(newMapArea).equals(mapArea)) {
1015              double bottom = Math.min(startY, endY);                          // No change.. no need to repaint
1016              double top = Math.max(startY, endY);                          return false;
1017              double nWidth = (mapWidth * mapWidth) / (right - left);                  }
1018              double nHeight = (mapHeight * mapHeight) / (top - bottom);  
1019              double deltaX1 = left - mapArea.getMinX();                  // Testen, ob der Unterschied nur im minimalen Rundungsfehlerbereich
1020              double nDeltaX1 = (deltaX1 * nWidth) / mapWidth;                  // liegt
1021              double deltaY1 = bottom - mapArea.getMinY();                  if (mapArea != null) {
1022              double nDeltaY1 = (deltaY1 * nHeight) / mapHeight;                          Envelope candNew = bestAllowedMapArea(newMapArea);
1023              Coordinate ll = new Coordinate(mapArea.getMinX() - nDeltaX1,                          double tolX = mapArea.getWidth() / 1000.;
1024                      mapArea.getMinY() - nDeltaY1);                          double tolY = mapArea.getHeight() / 1000.;
1025              double deltaX2 = mapArea.getMaxX() - right;                          if ((candNew.getMinX() - tolX < mapArea.getMinX())
1026              double nDeltaX2 = (deltaX2 * nWidth) / mapWidth;                                          && (mapArea.getMinX() < candNew.getMinX() + tolX)
1027              double deltaY2 = mapArea.getMaxY() - top;                                          && (candNew.getMaxX() - tolX < mapArea.getMaxX())
1028              double nDeltaY2 = (deltaY2 * nHeight) / mapHeight;                                          && (mapArea.getMaxX() < candNew.getMaxX() + tolX)
1029              Coordinate ur = new Coordinate(mapArea.getMaxX() + nDeltaX2,  
1030                      mapArea.getMaxY() + nDeltaY2);                                          && (candNew.getMinY() - tolY < mapArea.getMinY())
1031  //xulu.sc                                                      && (mapArea.getMinY() < candNew.getMinY() + tolY)
1032  //            mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));                                          && (candNew.getMaxY() - tolY < mapArea.getMaxY())
1033              setMapArea( fixAspectRatio(this.getBounds(), new Envelope(ll, ur)) );                                          && (mapArea.getMaxY() < candNew.getMaxY() + tolY)
1034  //xulu.ec  
1035          } else if (state == JMapPane.Select && selectionLayer !=null) {                          ) {
1036              double left = Math.min(startX, endX);                                  // The two mapAreas only differ my 1/1000th.. ignore
1037              double right = Math.max(startX, endX);  
1038              double bottom = Math.min(startY, endY);                                  return false;
1039              double top = Math.max(startY, endY);                          }
1040                    }
1041    
1042              String name = selectionLayer.getFeatureSource().getSchema()                  oldMapArea = mapArea;
1043                      .getDefaultGeometry().getLocalName();  
1044                    System.out.println("requested setting to \\t" + newMapArea);
1045              if (name == "") {                  this.mapArea = bestAllowedMapArea(newMapArea);
1046                  name = "the_geom";                  System.out.println("set to \\t\\ŧ" + newMapArea);
1047              }  
1048              Filter bb = ff.bbox(ff.property(name), left, bottom, right, top,                  if (localContext != null) {
1049                      getContext().getCoordinateReferenceSystem().toString());                          localContext.setAreaOfInterest(mapArea, localContext
1050              //System.out.println(bb.toString());                                          .getCoordinateReferenceSystem());
1051              if(selectionManager!=null) {                  }
1052                  selectionManager.selectionChanged(this, bb);                  if (bgContext != null) {
1053              }                          bgContext.setAreaOfInterest(mapArea, localContext
1054              /*FeatureCollection fc;                                          .getCoordinateReferenceSystem());
1055              selection = null;                  }
1056              try {                  resetTransforms();
1057                  fc = selectionLayer.getFeatureSource().getFeatures(bb);                  mapImageInvalid = true;
1058                  selection = fc;                  mapAreaChanged = true;
1059              } catch (IOException e) {                  repaint();
1060                  e.printStackTrace();                  return true;
1061              }          }
1062  */  
1063          }          public int getState() {
1064                    return state;
1065  //xulu.so          }
1066  //        setMapArea(mapArea);  
1067  //xulu.eo          /**
1068          repaint();           * Enables/Disables the ZOOM Mouse Listener. Upates the Cursor and stops the
1069      }           * repaint Timer if
1070             *
1071      private boolean isClickable() {           * @param state
1072          return clickable;           */
1073      }          public void setState(final int state) {
1074                    this.state = state;
1075      private org.geotools.styling.Style setupStyle(int type, Color color) {  
1076          StyleFactory sf = org.geotools.factory.CommonFactoryFinder                  zoomMapPaneMouseListener.setEnabled((state == ZOOM_IN
1077                  .getStyleFactory(null);                                  || state == ZOOM_OUT || state == PAN));
1078          StyleBuilder sb = new StyleBuilder();  
1079                    // Je nach Aktion den Cursor umsetzen
1080          org.geotools.styling.Style s = sf.createStyle();                  updateCursorAndRepaintTimer();
1081          s.setTitle("selection");          }
1082    
1083          // TODO parameterise the color          /** Cursor wenn kein Mausbutton gedrueckt wird. default oder SwingUtil.PAN **/
1084          PolygonSymbolizer ps = sb.createPolygonSymbolizer(color);          protected static Cursor normalCursor = Cursor
1085          ps.setStroke(sb.createStroke(color));                          .getPredefinedCursor(Cursor.DEFAULT_CURSOR);
1086    
1087          LineSymbolizer ls = sb.createLineSymbolizer(color);          public static final Cursor WAIT_CURSOR = Cursor
1088          Graphic h = sb.createGraphic();                          .getPredefinedCursor(Cursor.WAIT_CURSOR);
1089          h.setMarks(new Mark[] { sb.createMark("square", color) });  
1090            public static final int NONE = -123;
1091          PointSymbolizer pts = sb.createPointSymbolizer(h);  
1092            private RenderingExecutor localExecuter;
1093          // Rule r = sb.createRule(new Symbolizer[]{ps,ls,pts});  
1094          switch (type) {          private BufferedImage finalImage;
1095          case POLYGON:  
1096              s = sb.createStyle(ps);          /**
1097             * A flag set it {@link #setMapArea(Envelope)} to indicated the
1098              break;           * {@link #paintComponent(Graphics)} method, that the image on-screen is
1099             * associated with {@link #oldMapArea} and may hence be scaled for a quick
1100          case POINT:           * preview.<br/>
1101              s = sb.createStyle(pts);           * The flag is reset
1102             **/
1103              break;          private boolean mapAreaChanged = false;
1104    
1105          case LINE:          private JFrame finalImageFrame;
1106              s = sb.createStyle(ls);  
1107          }          private volatile Boolean requestStartRendering = false;
1108            private BufferedImage preFinalImage;
1109          return s;  
1110      }          protected void paintComponent(final Graphics g) {
1111                    // Maybe update the cursor
1112      public void highlightChanged(HighlightChangedEvent e) {                  updateCursorAndRepaintTimer();
1113          org.opengis.filter.Filter f = e.getFilter();  
1114                    if (!acceptsRepaintCalls)
1115          try {                          return;
1116              highlightFeature = highlightLayer.getFeatureSource().getFeatures(f);  
1117          } catch (IOException e1) {                  boolean paintedSomething = false;
1118              // TODO Auto-generated catch block  
1119              e1.printStackTrace();                  if (mapImageInvalid) { /* if the map changed then redraw */
1120          }  
1121                            mapImageInvalid = false; // Reset for next round
1122          repaint();  
1123      }                          // If the new mapArea and the oldMapArea intersect, we can draw some
1124                            // quick scaled preview to make the user feel that something is
1125      public void propertyChange(PropertyChangeEvent evt) {                          // happening.
1126          String prop = evt.getPropertyName();                          if (mapAreaChanged && oldMapArea != null
1127                                            && getMapArea().intersects(oldMapArea)
1128          if (prop.equalsIgnoreCase("crs")) {                                          & !getMapArea().equals(oldMapArea)) {
1129              context.setAreaOfInterest(context.getAreaOfInterest(),  
1130                      (CoordinateReferenceSystem) evt.getNewValue());                                  mapAreaChanged = false;
1131          }  
1132      }                                  if (getMapArea().covers(oldMapArea)) {
1133                                            setQuickPreviewHint(ZOOM_OUT);
1134      public boolean isReset() {                                          paintedSomething = drawScaledPreviewImage_Zoom((Graphics2D) g);
1135          return reset;                                  } else if (oldMapArea.covers(getMapArea())) {
1136      }                                          setQuickPreviewHint(ZOOM_IN);
1137                                            paintedSomething = drawScaledPreviewImage_Zoom((Graphics2D) g);
1138      public void setReset(boolean reset) {                                  }
1139          this.reset = reset;  
1140      }                          }
1141    
1142      public void layerAdded(MapLayerListEvent event) {                          if (paneResized) {
1143          changed = true;                                  paneResized = false;
1144                                    preFinalImage = null;
1145          if (context.getLayers().length == 1) { // the first one                                  finalImage = null;
1146                                    localImage = null;
1147              try {                                  bgImage = null;
1148  //xulu.sc      //                              gadgetsImage = null;
1149  //            mapArea = context.getLayerBounds();                          }
1150                mapArea = context.getAreaOfInterest();  
1151                if ( mapArea == null )                          // Start the Threads and Timers to render the image
1152                  mapArea = context.getLayerBounds();                          requestStartRendering();
1153  //xulu.ec  
1154              } catch (IOException e) {                  }
1155                  // TODO Auto-generated catch block  
1156                  e.printStackTrace();                  if (!paintedSomething) {
1157              }  
1158                            // TODO Should just paint the getFinalImage(). Update should be
1159              reset = true;                          // called by timer every 300ms, and the repaint() until all threads
1160          }                          // are done.
1161                            g.drawImage(getFinalImage(), 0, 0, this);
1162          repaint();  
1163      }                          paintedSomething = true;
1164                    }
1165      public void layerRemoved(MapLayerListEvent event) {  
1166          changed = true;          }
1167          repaint();  
1168      }          /**
1169             * Cancels all running renderers and sets the flag to start new ones. <br/>
1170      public void layerChanged(MapLayerListEvent event) {           *
1171          changed = true;           * @see #startRenderThreadsTimer
1172          // System.out.println("layer changed - repaint");           */
1173          repaint();          private void requestStartRendering() {
1174      }                  if (bgExecuter != null)
1175                            bgExecuter.cancelTask();
1176      public void layerMoved(MapLayerListEvent event) {                  if (localExecuter != null)
1177          changed = true;                          localExecuter.cancelTask();
1178          repaint();                  requestStartRendering = true;
1179      }          }
1180    
1181      protected void drawRectangle(Graphics graphics) {          /**
1182          // undraw last box/draw new box           * Transformiert einen Fenster-Koordinaten-Bereich in Geo-Koordinaten.
1183          int left = Math.min(startX, lastX);           *
1184          int right = Math.max(startX, lastX);           * @param ox
1185          int top = Math.max(startY, lastY);           *            X-Koordinate der VON-Position
1186          int bottom = Math.min(startY, lastY);           * @param oy
1187          int width = right - left;           *            Y-Koordinate der VON-Position
1188          int height = top - bottom;           * @param px
1189          // System.out.println("drawing rect("+left+","+bottom+","+ width+","+           *            X-Koordinate der BIS-Position
1190          // height+")");           * @param py
1191          graphics.drawRect(left, bottom, width, height);           *            Y-Koordinate der BIS-Position
1192      }           */
1193            public Envelope tranformWindowToGeo(int ox, int oy, int px, int py) {
1194      /**                  AffineTransform at = getScreenToWorld();
1195       * if clickable is set to true then a single click on the map pane will zoom                  Point2D geoO = at.transform(new Point2D.Double(ox, oy), null);
1196       * or pan the map.                  Point2D geoP = at.transform(new Point2D.Double(px, py), null);
1197       *                  return new Envelope(geoO.getX(), geoP.getX(), geoO.getY(), geoP.getY());
1198       * @param clickable          }
1199       */  
1200      public void setClickable(boolean clickable) {          /**
1201          this.clickable = clickable;           * Transformiert einen Geo-Koordinaten-Bereich in Fenster-Koordinaten.
1202      }           *
1203             * @param ox
1204      public void mouseMoved(MouseEvent e) {           *            X-Koordinate der VON-Position
1205      }           * @param oy
1206             *            Y-Koordinate der VON-Position
1207      public FeatureCollection getSelection() {           * @param px
1208          return selection;           *            X-Koordinate der BIS-Position
1209      }           * @param py
1210             *            Y-Koordinate der BIS-Position
1211      public void setSelection(FeatureCollection selection) {           * @param winToGeotransform
1212          this.selection = selection;           *            Eine Window to Geo transform. If <code>null</code>,
1213          repaint();           *            {@link #getScreenToWorld()} is used.
1214      }           */
1215            public Envelope tranformGeoToWindow(double ox, double oy, double px,
1216      /* (non-Javadoc)                          double py, AffineTransform winToGeotransform) {
1217       * @see org.geotools.gui.swing.event.SelectionChangeListener#selectionChanged(org.geotools.gui.swing.event.SelectionChangedEvent)                  AffineTransform at = winToGeotransform == null ? getScreenToWorld()
1218       */                                  : winToGeotransform;
1219      public void selectionChanged(SelectionChangedEvent e) {                  Point2D geoO;
1220                    try {
1221          try {                          geoO = at.inverseTransform(new Point2D.Double(ox, oy), null);
1222              selection = selectionLayer.getFeatureSource().getFeatures(e.getFilter());                          Point2D geoP = at
1223              repaint();                                          .inverseTransform(new Point2D.Double(px, py), null);
1224          } catch (IOException e1) {                          return new Envelope(geoO.getX(), geoP.getX(), geoO.getY(), geoP
1225              e1.printStackTrace();                                          .getY());
1226          }                  } catch (NoninvertibleTransformException e) {
1227      }                          LOGGER.error(e);
1228                            return new Envelope(ox, oy, px, py);
1229      public SelectionManager getSelectionManager() {                  }
1230          return selectionManager;          }
1231      }  
1232            /**
1233      public void setSelectionManager(SelectionManager selectionManager) {           * Diretly paints scaled preview into the {@link SelectableXMapPane}. Used
1234          this.selectionManager = selectionManager;           * to give the user something to look at while we are rendering. Method
1235          this.selectionManager.addSelectionChangeListener(this);           * should be called after {@link #setMapArea(Envelope)} has been set to the
1236             * new mapArea and transform has been reset.<br/>
1237      }           * This method does nothing if the {@link #lastRenderingDuration} is smaller
1238             * then a trashhold.
1239             *
1240  //xulu.sn           * @param g
1241      /**           *            Graphics2D to paint the preview into
1242       * Korrigiert den {@link Envelope} aka {@code mapArea} auf die beste erlaubte Flaeche damit           *
1243       * die Massstabsbeschaenkungen noch eingehalten werden, FALLS der uebergeben Envelope           * @param state
1244       * nicht schon gueltig sein sollte.           *            Max be {@link #ZOOM_IN} or {@link #ZOOM_OUT}
1245       *           */
1246       * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>          protected boolean drawScaledPreviewImage_Zoom(Graphics2D graphics) {
1247       */  
1248    public Envelope bestAllowedMapArea(Envelope env) {                  if (quickPreviewHint == 0)
1249      if (getWidth() == 0) return env;                          return false;
1250      if (env == null) return env;  
1251                    graphics.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
1252      double scale = env.getWidth() / getWidth();                                  RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR);
1253      double centerX = env.getMinX() + env.getWidth() / 2.;                  graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
1254      double centerY = env.getMinY() + env.getHeight() / 2.;                                  RenderingHints.VALUE_ANTIALIAS_OFF);
1255      double newWidth2;                  graphics.setRenderingHint(RenderingHints.KEY_RENDERING,
1256      double newHeight2;                                  RenderingHints.VALUE_RENDER_SPEED);
1257      if (scale < getMaxZoomScale()) {  
1258        //****************************************************************************                  if (oldMapArea == null)
1259        // Wir zoomen weiter rein als erlaubt => Anpassen des envelope                          return false;
1260        //****************************************************************************  
1261        newWidth2 = getMaxZoomScale() * getWidth() / 2.;                  Rectangle visibleArea = getVisibleRect();
1262        newHeight2 = getMaxZoomScale() * getHeight() / 2.;  
1263      } else if (scale > getMinZoomScale()) {                  // Calculate the oldMapArea in the current WindowCoordinates:
1264        //****************************************************************************                  Envelope oldMapWindow = tranformGeoToWindow(oldMapArea.getMinX(),
1265        // Wir zoomen weiter raus als erlaubt => Anpassen des envelope                                  oldMapArea.getMinY(), oldMapArea.getMaxX(), oldMapArea
1266        //****************************************************************************                                                  .getMaxY(), null);
1267        newWidth2 = getMinZoomScale() * getWidth() / 2.;  
1268        newHeight2 = getMinZoomScale() * getHeight() / 2.;                  int xx1 = (int) Math.round(oldMapWindow.getMinX());
1269      } else {                  int yy1 = (int) Math.round(oldMapWindow.getMinY());
1270        //****************************************************************************                  int xx2 = (int) Math.round(oldMapWindow.getMaxX());
1271        // Die mapArea / der Envelope ist ist gueltig! Keine Aenderungen                  int yy2 = (int) Math.round(oldMapWindow.getMaxY());
1272        //****************************************************************************  
1273        return env;                  graphics.drawImage(getPreFinalImage(), xx1, yy1, xx2, yy2,
1274      }                                  (int) visibleArea.getMinX(), (int) visibleArea.getMinY(),
1275                                    (int) visibleArea.getMaxX(), (int) visibleArea.getMaxY(),
1276      Coordinate ll = new Coordinate(centerX - newWidth2, centerY                                  getMapBackgroundColor(), null);
1277                                     - newHeight2);                  
1278      Coordinate ur = new Coordinate(centerX + newWidth2, centerY  
1279                                     + newHeight2);                  Rectangle painedArea = new Rectangle(xx1, yy1, xx2 - xx1, yy2 - yy1);
1280    
1281      return new Envelope(ll, ur);                  SwingUtil.clearAround(graphics, painedArea, visibleArea);
1282    }                  
1283                    addGadgets(graphics);
1284    /**  //              graphics.drawImage(getGadgetsImage(), 0,0, (int) visibleArea.getMaxX(), (int) visibleArea.getMaxY(),null);
1285     * Retuns the minimum allowed zoom scale. This is the bigger number value of the two.  
1286     * Defaults to {@link Double}.MAX_VALUE                  quickPreviewHint = 0;
1287     *  
1288     * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>                  graphics.dispose();
1289     */                  // Something has been drawn
1290    public Double getMinZoomScale() {                  return true;
1291      return minZoomScale;          }
1292    }          
1293            final static Font waitFont = new Font("Arial", Font.BOLD, 30);
1294    /**  
1295     * Retuns the maximum allowed zoom scale. This is the smaller number value of the two.          /**
1296     * Defaults to {@link Double}.MIN_VALUE           * Paints some optinal stuff into the given {@link Graphics2D}. Usually called as the last paint on the mapImage.
1297     *           */
1298     * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>          private void addGadgets(Graphics2D graphics) {
1299     */  
1300    public Double getMaxZoomScale() {                  if (mapImage != null)
1301      return maxZoomScale;                          graphics.drawImage(mapImage,
1302    }                                          getBounds().width - mapImage.getWidth() - 10,
1303                                            getBounds().height - mapImage.getHeight() - 10, this);
1304    /**  
1305     * Set the maximum allowed zoom scale. This is the smaller number value of the two.                  // If still rendering, paint a gray shadow or so...
1306     *                  if (bgExecuter != null && bgExecuter.isRunning()
1307     * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>                                  || localExecuter != null && localExecuter.isRunning()) {
1308     */                          graphics.setColor(Color.BLACK);
1309    public void setMaxZoomScale(Double maxZoomScale) {                          
1310      // System.out.println("setting max scale to "+maxZoomScale);                          graphics.setFont(waitFont);
1311      this.maxZoomScale = maxZoomScale;                          graphics.drawString("Wait...", 40, 70);
1312    }                  }
1313                    
1314    /**          }
1315     * Set the minimum (nearest) allowed zoom scale. This is the bigger number value of the two.  
1316     *          /**
1317     * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>           * Accumulates all three images
1318     */           *
1319    public void setMinZoomScale(Double minZoomScale) {           * @return
1320      this.minZoomScale = minZoomScale;           */
1321    }          synchronized protected BufferedImage updateFinalImage() {
1322  //xulu.en  
1323                    final Graphics2D finalG = (Graphics2D) getFinalImage().getGraphics();
1324                    finalG.setBackground(getMapBackgroundColor());
1325                    
1326                    
1327                    // Render the two map images first, into the preFinalImage
1328                    {
1329                            final Graphics2D preFinalG = (Graphics2D) getPreFinalImage().getGraphics();
1330                            preFinalG.setBackground(getMapBackgroundColor());
1331                            
1332                            preFinalG.drawImage(getBgImage(), 0, 0,
1333                                            getMapBackgroundColor(), null);
1334                            // // Draw the local layers image
1335                            preFinalG.drawImage(getLocalImage(), 0, 0, null);
1336                            preFinalG.dispose();
1337                    }
1338                    
1339                    finalG.drawImage(getPreFinalImage(), imageOrigin.x, imageOrigin.y,
1340                                    getMapBackgroundColor(), null);
1341    
1342                    // System.out.println(new Date().getTime() - startTime +
1343                    // "ms for update");
1344                    //
1345                    // if (finalImageFrame == null) {
1346                    // finalImageFrame = new JFrame();
1347                    // finalImageFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
1348                    // SwingUtil.setRelativeFramePosition(finalImageFrame, 0, 0);
1349                    // }
1350                    // finalImageFrame.setContentPane(new JLabel(new
1351                    // ImageIcon(finalImage)));
1352                    // finalImageFrame.pack();
1353                    // finalImageFrame.setVisible(true);
1354    
1355                    final int finalImageHeight = getFinalImage().getHeight(null);
1356                    final int finalImageWidth = getFinalImage().getWidth(null);
1357    
1358                    Rectangle painedArea = new Rectangle(imageOrigin.x, imageOrigin.y,
1359                                    finalImageWidth, finalImageHeight);
1360                    SwingUtil.clearAround(finalG, painedArea, getVisibleRect());
1361    
1362                    addGadgets(finalG);
1363    //              finalG.drawImage(getGadgetsImage(), 0, 0, null);
1364    
1365                    finalG.dispose();
1366    
1367                    return finalImage;
1368            }
1369    
1370            /*
1371             * Set alpha composite. For example, pass in 1.0f to have 100% opacity pass
1372             * in 0.25f to have 25% opacity.
1373             */
1374            private AlphaComposite makeComposite(float alpha) {
1375                    int type = AlphaComposite.SRC_OVER;
1376                    return (AlphaComposite.getInstance(type, alpha));
1377            }
1378    
1379            private Image getFinalImage() {
1380    
1381                    if (finalImage == null) {
1382                            finalImage = null;
1383                            Rectangle curPaintArea = getVisibleRect();
1384                            finalImage = new BufferedImage(curPaintArea.width,
1385                                            curPaintArea.height, BufferedImage.TYPE_INT_RGB);
1386    
1387                            requestStartRendering();
1388                    }
1389                    return finalImage;
1390            }
1391            
1392            private Image getPreFinalImage() {
1393                    
1394                    if (preFinalImage == null) {
1395                            preFinalImage = null;
1396                            Rectangle curPaintArea = getVisibleRect();
1397    
1398                            preFinalImage = new BufferedImage(curPaintArea.width,
1399                                            curPaintArea.height, BufferedImage.TYPE_INT_RGB);
1400                            
1401                            requestStartRendering();
1402                    }
1403                    return preFinalImage;
1404            }
1405    
1406            /**
1407             * While dragging, the {@link #updateFinalImage()} method is translating the
1408             * cached images while setting it together.
1409             **/
1410            Point imageOrigin = new Point(0, 0);
1411    
1412            /**
1413             * Starts rendering on one or two threads
1414             */
1415            private void startRendering() {
1416    
1417                    if (!isWellDefined())
1418                            return;
1419    
1420                    if (bgExecuter != null)
1421                            // Stop all renderers
1422                            bgExecuter.cancelTask();
1423    
1424                    if (localExecuter != null)
1425                            localExecuter.cancelTask();
1426                    //
1427                    //
1428                    // LOGGER.debug("stopping any running renderes:");
1429                    // int count = 0;
1430                    // while (bgExecuter.isRunning() || localExecuter.isRunning()) {
1431                    // LOGGER.debug("waiting for threads to stop");
1432                    //
1433                    // bgExecuter.cancelTask();
1434                    // localExecuter.cancelTask();
1435                    //
1436                    // count++;
1437                    //
1438                    // try {
1439                    // Thread.sleep(100);
1440                    // } catch (InterruptedException e) {
1441                    // LOGGER.error(e);
1442                    // }
1443                    //
1444                    // if (count > 100) {
1445                    // throw new RuntimeException(
1446                    // "Unable to stop rendering thread for 10secs");
1447                    // }
1448                    // }
1449                    // LOGGER.debug(" threads stopped after " + count / 10. + "secs");
1450    
1451                    Rectangle curPaintArea = getVisibleRect();
1452    
1453                    // allow a single pixel margin at the right and bottom edges
1454                    curPaintArea.width -= 1;
1455                    curPaintArea.height -= 1;
1456    
1457                    labelCache.clear();
1458    
1459                    /**
1460                     */
1461    
1462                    /**
1463                     * We have to set new renderer
1464                     */
1465    
1466                    if (getBgContext() != null) {
1467                            bgExecuter = new RenderingExecutor(this);
1468                            LOGGER.debug("starting bg renderer:");
1469                            // /* System.out.println("rendering"); */
1470                            final GTRenderer createGTRenderer = GTUtil.createGTRenderer(
1471                                            localContext, getRendererHints());
1472                            createGTRenderer.setJava2DHints(getJava2dHints());
1473                            bgExecuter.submit(getBgContext().getAreaOfInterest(), curPaintArea,
1474                                            (Graphics2D) getBgImage().getGraphics(), createGTRenderer);
1475                    }
1476    
1477                    if (getContext() != null) {
1478                            localExecuter = new RenderingExecutor(this);
1479                            LOGGER.debug("starting local renderer:");
1480                            final GTRenderer createGTRenderer = GTUtil.createGTRenderer(
1481                                            localContext, getRendererHints());
1482                            createGTRenderer.setJava2DHints(getJava2dHints());
1483                            localExecuter.submit(getContext().getAreaOfInterest(),
1484                                            curPaintArea, (Graphics2D) getLocalImage().getGraphics(),
1485                                            createGTRenderer);
1486                    }
1487    
1488                    updateCursorAndRepaintTimer();
1489    
1490                    // start regular repaints until all renderers are done.
1491                    repainterTimer.setRepeats(true);
1492                    repainterTimer.restart();
1493    
1494            }
1495    
1496            /**
1497             * Lazyly initializes a {@link BufferedImage} for the background renderer.
1498             */
1499            private BufferedImage getBgImage() {
1500    
1501                    if (bgImage == null) {
1502                            LOGGER.debug("creating a new background image");
1503    
1504                            Rectangle curPaintArea = getVisibleRect();
1505                            // allow a single pixel margin at the right and bottom edges
1506                            curPaintArea.width -= 1;
1507                            curPaintArea.height -= 1;
1508    
1509                            bgImage = new BufferedImage(curPaintArea.width + 1,
1510                                            curPaintArea.height + 1, BufferedImage.TYPE_INT_ARGB);
1511                    }
1512    
1513                    return bgImage;
1514            }
1515    
1516            /** An (transparent) image to paint over the map in the lower right corner **/
1517            private BufferedImage mapImage = null;
1518    
1519            private boolean acceptsRepaintCalls = true;
1520    
1521            /**
1522             * Get the BufferedImage to use as a flaoting icon in the lower right
1523             * corner.
1524             *
1525             * @return <code>null</code> if the feature is deactivated.
1526             */
1527            public BufferedImage getMapImage() {
1528                    return mapImage;
1529            }
1530    
1531            /**
1532             * Set the BufferedImage to use as a flaoting icon in the lower right corner
1533             *
1534             * @param mapImageIcon
1535             *            <code>null</code> is allowed and deactivates this icon.
1536             */
1537            public void setMapImage(BufferedImage mapImage) {
1538                    this.mapImage = mapImage;
1539    //              gadgetsImage = null;
1540            }
1541    
1542            /**
1543             * Lazyly initializes a {@link BufferedImage} for the background renderer.
1544             */
1545            private BufferedImage getLocalImage() {
1546    
1547                    if (localImage == null) {
1548                            LOGGER.debug("creating a new local image");
1549    
1550                            Rectangle curPaintArea = getVisibleRect();
1551                            // allow a single pixel margin at the right and bottom edges
1552                            curPaintArea.width -= 1;
1553                            curPaintArea.height -= 1;
1554    
1555                            localImage = new BufferedImage(curPaintArea.width + 1,
1556                                            curPaintArea.height + 1, BufferedImage.TYPE_INT_ARGB);
1557                    }
1558    
1559                    return localImage;
1560            }
1561    //
1562    //      /**
1563    //       * Lazyly initializes a {@link BufferedImage} for the background renderer.
1564    //       */
1565    //      private BufferedImage getGadgetsImage() {
1566    //
1567    //              if (gadgetsImage == null) {
1568    //                      LOGGER.debug("creating a new gadgets image");
1569    //
1570    //                      Rectangle curPaintArea = getVisibleRect();
1571    //                      // allow a single pixel margin at the right and bottom edges
1572    //                      curPaintArea.width -= 1;
1573    //                      curPaintArea.height -= 1;
1574    //
1575    //                      gadgetsImage = new BufferedImage(curPaintArea.width + 1,
1576    //                                      curPaintArea.height + 1, BufferedImage.TYPE_INT_ARGB);
1577    //
1578    //                      if (mapImage != null)
1579    //                              gadgetsImage.getGraphics().drawImage(mapImage,
1580    //                                              curPaintArea.width - mapImage.getWidth() - 10,
1581    //                                              curPaintArea.height - mapImage.getHeight() - 10, this);
1582    //                      
1583    //              }
1584    //
1585    //              return gadgetsImage;
1586    //      }
1587    
1588            /**
1589             * Called by the {@linkplain XMapPane.RenderingTask} when rendering has been
1590             * completed Publishes a {@linkplain MapPaneEvent} of type {@code
1591             * MapPaneEvent.Type.RENDERING_STOPPED} to listeners.
1592             *
1593             * @see MapPaneListener#onRenderingStopped(org.geotools.swing.event.MapPaneEvent)
1594             */
1595            public void onRenderingCompleted() {
1596                    System.out.println("onRenderingCompleted");
1597    
1598                    updateFinalImage();
1599    
1600                    repaint();
1601    
1602            }
1603    
1604            /**
1605             * Called by the {@linkplain XMapPane.RenderingTask} when rendering was
1606             * cancelled. Publishes a {@linkplain MapPaneEvent} of type {@code
1607             * MapPaneEvent.Type.RENDERING_STOPPED} to listeners.
1608             *
1609             * @see MapPaneListener#onRenderingStopped(org.geotools.swing.event.MapPaneEvent)
1610             */
1611            public void onRenderingCancelled() {
1612                    LOGGER.debug("Rendering cancelled");
1613            }
1614    
1615            /**
1616             * Called by the {@linkplain XMapPane.RenderingTask} when rendering failed.
1617             * Publishes a {@linkplain MapPaneEvent} of type {@code
1618             * MapPaneEvent.Type.RENDERING_STOPPED} to listeners.
1619             *
1620             * @param renderingError
1621             *            The error that occured during rendering
1622             *
1623             * @see MapPaneListener#onRenderingStopped(org.geotools.swing.event.MapPaneEvent)
1624             */
1625            public void onRenderingFailed(Exception renderingError) {
1626                    // MapPaneEvent ev = new MapPaneEvent(this,
1627                    // MapPaneEvent.Type.RENDERING_STOPPED);
1628                    // publishEvent(ev);
1629                    LOGGER.warn("Rendering failed", renderingError);
1630                    updateFinalImage();
1631                    repaint();
1632    
1633            }
1634    
1635            /**
1636             * Called when a rendering request has been rejected. This will be common,
1637             * such as when the user pauses during drag-resizing fo the map pane. The
1638             * base implementation does nothing. It is provided for sub-classes to
1639             * override if required.
1640             */
1641            public void onRenderingRejected() {
1642                    LOGGER.warn("Rendering rejected");
1643                    repaint();
1644            }
1645    
1646            @Override
1647            public void propertyChange(final PropertyChangeEvent evt) {
1648                    final String prop = evt.getPropertyName();
1649    
1650                    if (prop.equalsIgnoreCase("crs")) {
1651                            localContext.setAreaOfInterest(localContext.getAreaOfInterest(),
1652                                            (CoordinateReferenceSystem) evt.getNewValue());
1653                    }
1654            }
1655    
1656            // xulu.sn
1657            /**
1658             * Korrigiert den {@link Envelope} aka {@code mapArea} auf die beste
1659             * erlaubte Flaeche damit die Massstabsbeschaenkungen noch eingehalten
1660             * werden, FALLS der uebergeben Envelope nicht schon gueltig sein sollte.<br/>
1661             * Since 21. April 09: Before thecalculation starts, the aspect ratio is
1662             * corrected. This change implies, that setMapArea() will most of the time
1663             * not allow setting to a wrong aspectRatio.
1664             *
1665             * @author <a href="mailto:[email protected]">Stefan Alfons
1666             *         Kr&uuml;ger</a>
1667             */
1668            public Envelope bestAllowedMapArea(Envelope env) {
1669                    if (getWidth() == 0)
1670                            return env;
1671                    if (env == null)
1672                            return null;
1673    
1674                    Envelope newArea = null;
1675    
1676                    /**
1677                     * Correct the aspect Ratio before we check the rest. Otherwise we might
1678                     * easily fail. We allow to grow here, because we don't check against
1679                     * the maxExtend
1680                     */
1681                    Rectangle curPaintArea = getVisibleRect();
1682    
1683                    env = JTSUtil.fixAspectRatio(curPaintArea, env, true);
1684    
1685                    final double scale = env.getWidth() / getWidth();
1686                    final double centerX = env.getMinX() + env.getWidth() / 2.;
1687                    final double centerY = env.getMinY() + env.getHeight() / 2.;
1688                    double newWidth2 = 0;
1689                    double newHeight2 = 0;
1690                    if (scale < getMaxZoomScale()) {
1691                            // ****************************************************************************
1692                            // Wir zoomen weiter rein als erlaubt => Anpassen des envelope
1693                            // ****************************************************************************
1694                            newWidth2 = getMaxZoomScale() * getWidth() / 2.;
1695                            newHeight2 = getMaxZoomScale() * getHeight() / 2.;
1696                    } else if (scale > getMinZoomScale()) {
1697                            // ****************************************************************************
1698                            // Wir zoomen weiter raus als erlaubt => Anpassen des envelope
1699                            // ****************************************************************************
1700                            newWidth2 = getMinZoomScale() * getWidth() / 2.;
1701                            newHeight2 = getMinZoomScale() * getHeight() / 2.;
1702                    } else {
1703                            // ****************************************************************************
1704                            // Die mapArea / der Envelope ist ist gueltig! Keine Aenderungen
1705                            // ****************************************************************************
1706                            newArea = env;
1707                    }
1708    
1709                    if (newArea == null) {
1710    
1711                            final Coordinate ll = new Coordinate(centerX - newWidth2, centerY
1712                                            - newHeight2);
1713                            final Coordinate ur = new Coordinate(centerX + newWidth2, centerY
1714                                            + newHeight2);
1715    
1716                            newArea = new Envelope(ll, ur);
1717                    }
1718    
1719                    Envelope maxAllowedExtend = getMaxExtend();
1720                    while (maxAllowedExtend != null && !maxAllowedExtend.contains(newArea)
1721                                    && newArea != null && !newArea.isNull()
1722                                    && !Double.isNaN(newArea.getMinX())
1723                                    && !Double.isNaN(newArea.getMaxX())
1724                                    && !Double.isNaN(newArea.getMinY())
1725                                    && !Double.isNaN(newArea.getMaxY())) {
1726                            /*
1727                             * If a maxExtend is set, we have to honour that...
1728                             */
1729    
1730                            // Exceeds top? Move down and maybe cut
1731                            if (newArea.getMaxY() > maxAllowedExtend.getMaxY()) {
1732                                    double divY = newArea.getMaxY() - maxAllowedExtend.getMaxY();
1733                                    // LOGGER.debug("Moving area down by " + divY);
1734    
1735                                    newArea = new Envelope(new Coordinate(newArea.getMinX(),
1736                                                    newArea.getMinY() - divY), new Coordinate(newArea
1737                                                    .getMaxX(), newArea.getMaxY() - divY));
1738    
1739                                    if (newArea.getMinY() < maxAllowedExtend.getMinY()) {
1740                                            // LOGGER.debug("Now it exeeds the bottom border.. cut!");
1741                                            // And cut the bottom if it moved out of the area
1742                                            newArea = new Envelope(new Coordinate(newArea.getMinX(),
1743                                                            maxAllowedExtend.getMinY()), new Coordinate(newArea
1744                                                            .getMaxX(), newArea.getMaxY()));
1745    
1746                                            // LOGGER.debug("and fix aspect ratio");
1747    
1748                                            newArea = JTSUtil.fixAspectRatio(this.getBounds(), newArea,
1749                                                            false);
1750                                    }
1751                            }
1752    
1753                            // Exceeds bottom? Move up and maybe cut
1754                            if (newArea.getMinY() < maxAllowedExtend.getMinY()) {
1755                                    double divY = newArea.getMinY() - maxAllowedExtend.getMinY();
1756                                    // LOGGER.debug("Moving area up by " + divY);
1757    
1758                                    newArea = new Envelope(new Coordinate(newArea.getMinX(),
1759                                                    newArea.getMinY() - divY), new Coordinate(newArea
1760                                                    .getMaxX(), newArea.getMaxY() - divY));
1761    
1762                                    if (newArea.getMaxY() > maxAllowedExtend.getMaxY()) {
1763                                            // LOGGER.debug("Now it exeeds the top border.. cut!");
1764                                            // And cut the bottom if it moved out of the area
1765                                            newArea = new Envelope(new Coordinate(newArea.getMinX(),
1766                                                            newArea.getMinY()), new Coordinate(newArea
1767                                                            .getMaxX(), maxAllowedExtend.getMaxY()));
1768    
1769                                            // LOGGER.debug("and fix aspect ratio");
1770    
1771                                            newArea = JTSUtil.fixAspectRatio(this.getBounds(), newArea,
1772                                                            false);
1773                                    }
1774                            }
1775    
1776                            // Exceeds to the right? move and maybe cut
1777                            if (newArea.getMaxX() > maxAllowedExtend.getMaxX()) {
1778    
1779                                    // Move left..
1780                                    double divX = newArea.getMaxX() - maxAllowedExtend.getMaxX();
1781                                    // LOGGER.debug("Moving area left by " + divX);
1782    
1783                                    newArea = new Envelope(new Coordinate(newArea.getMinX() - divX,
1784                                                    newArea.getMinY()), new Coordinate(newArea.getMaxX()
1785                                                    - divX, newArea.getMaxY()));
1786    
1787                                    if (newArea.getMinX() < maxAllowedExtend.getMinX()) {
1788                                            // LOGGER.debug("Now it exeeds the left border.. cut!");
1789                                            // And cut the left if it moved out of the area
1790                                            newArea = new Envelope(new Coordinate(maxAllowedExtend
1791                                                            .getMinX(), newArea.getMinY()), new Coordinate(
1792                                                            newArea.getMaxX(), newArea.getMaxY()));
1793    
1794                                            // LOGGER.debug("and fix aspect ratio");
1795    
1796                                            newArea = JTSUtil.fixAspectRatio(this.getBounds(), newArea,
1797                                                            false);
1798                                    }
1799                            }
1800    
1801                            // Exceeds to the left? move and maybe cut
1802                            if (newArea.getMinX() < maxAllowedExtend.getMinX()) {
1803    
1804                                    // Move right..
1805                                    double divX = newArea.getMinX() - maxAllowedExtend.getMinX();
1806                                    // LOGGER.debug("Moving area right by " + divX);
1807    
1808                                    newArea = new Envelope(new Coordinate(newArea.getMinX() - divX,
1809                                                    newArea.getMinY()), new Coordinate(newArea.getMaxX()
1810                                                    - divX, newArea.getMaxY()));
1811    
1812                                    if (newArea.getMaxX() > maxAllowedExtend.getMaxX()) {
1813                                            // LOGGER.debug("Now it exeeds the right border.. cut!");
1814                                            // And cut the left if it moved out of the area
1815                                            newArea = new Envelope(new Coordinate(newArea.getMinX(),
1816                                                            newArea.getMinY()), new Coordinate(maxAllowedExtend
1817                                                            .getMaxX(), newArea.getMaxY()));
1818    
1819                                            // LOGGER.debug("and fix aspect ratio");
1820    
1821                                            newArea = JTSUtil.fixAspectRatio(this.getBounds(), newArea,
1822                                                            false);
1823                                    }
1824                            }
1825    
1826                    }
1827    
1828                    return newArea;
1829            }
1830    
1831            /**
1832             * Retuns the minimum allowed zoom scale. This is the bigger number value of
1833             * the two. Defaults to {@link Double}.MAX_VALUE
1834             *
1835             * @author <a href="mailto:[email protected]">Stefan Alfons
1836             *         Kr&uuml;ger</a>
1837             */
1838            public Double getMinZoomScale() {
1839                    return minZoomScale;
1840            }
1841    
1842            /**
1843             * Retuns the maximum allowed zoom scale. This is the smaller number value
1844             * of the two. Defaults to {@link Double}.MIN_VALUE
1845             *
1846             * @author <a href="mailto:[email protected]">Stefan Alfons
1847             *         Kr&uuml;ger</a>
1848             */
1849            public Double getMaxZoomScale() {
1850                    return maxZoomScale;
1851            }
1852    
1853            /**
1854             * Set the maximum allowed zoom scale. This is the smaller number value of
1855             * the two. If <code>null</code> is passed, Double.MINVALUE are used which
1856             * mean there is no restriction.
1857             *
1858             * @author <a href="mailto:[email protected]">Stefan Alfons
1859             *         Kr&uuml;ger</a>
1860             */
1861            public void setMaxZoomScale(final Double maxZoomScale) {
1862                    this.maxZoomScale = maxZoomScale == null ? Double.MIN_VALUE
1863                                    : maxZoomScale;
1864            }
1865    
1866            /**
1867             * Set the minimum (nearest) allowed zoom scale. This is the bigger number
1868             * value of the two. If <code>null</code> is passed, Double.MAXVALUE are
1869             * used which mean there is no restriction.
1870             *
1871             *
1872             * @author <a href="mailto:[email protected]">Stefan Alfons
1873             *         Kr&uuml;ger</a>
1874             */
1875            public void setMinZoomScale(final Double minZoomScale) {
1876                    this.minZoomScale = minZoomScale == null ? Double.MAX_VALUE
1877                                    : minZoomScale;
1878            }
1879    
1880            /**
1881             * Defines an evelope of the viwable area. The JMapPane will never show
1882             * anything outside of this extend.
1883             *
1884             * @param maxExtend
1885             *            <code>null</code> to not have this restriction.
1886             */
1887            public void setMaxExtend(Envelope maxExtend) {
1888                    this.maxExtend = maxExtend;
1889            }
1890    
1891            /**
1892             * Returns the evelope of the viewable area. The JMapPane will never show
1893             * anything outside of this extend. If this has been set to
1894             * <code>null</code> via {@link #setMaxExtend(Envelope)}, it tries to return
1895             * quickly the context's bounds. It it takes to long to determine the
1896             * context bounds, <code>null</code> is returned.
1897             *
1898             * @param maxExtend
1899             *            <code>null</code> to not have this restriction.
1900             */
1901    
1902            public Envelope getMaxExtend() {
1903                    if (maxExtend == null) {
1904                            final ReferencedEnvelope layerBounds = GTUtil
1905                                            .getVisibleLayoutBounds(localContext);
1906                            if (layerBounds == null) {
1907                                    // TODO Last fallback could be the CRS valid area
1908                                    return null;
1909                            }
1910    
1911                            // Kartenbereich um 10% vergroessern
1912                            return JTSUtil.fixAspectRatio(this.getBounds(), JTSUtil
1913                                            .expandEnvelope(layerBounds, 0.1), true);
1914                    }
1915                    return maxExtend;
1916            }
1917    
1918            /**
1919             * Set the background color of the map.
1920             *
1921             * @param if <code>null</code>, white is used.
1922             */
1923            public void setMapBackgroundColor(Color bgColor) {
1924                    if (bgColor == null)
1925                            bgColor = Color.WHITE;
1926                    this.mapBackgroundColor = bgColor;
1927            }
1928    
1929            /**
1930             * Returns the background {@link Color} of the map pane. Default is white.
1931             **/
1932            public Color getMapBackgroundColor() {
1933                    return mapBackgroundColor;
1934            }
1935    
1936            /**
1937             *
1938             * @param b
1939             */
1940            public void setPainting(boolean b) {
1941                    acceptsRepaintCalls = b;
1942            }
1943    
1944            /**
1945             * Fuegt der Map einen Listener hinzu.
1946             *
1947             * @param l
1948             *            neuer Listener
1949             */
1950            public void addMapPaneListener(JMapPaneListener l) {
1951                    mapPaneListeners.add(l);
1952            }
1953    
1954            /**
1955             * Liste der angeschlossenen Listener, die auf Aktionen des MapPanes
1956             * lauschen.
1957             */
1958            protected Vector<JMapPaneListener> mapPaneListeners = new Vector<JMapPaneListener>();
1959    
1960            /**
1961             * A flag indicating if dispose() was already called. If true, then further
1962             * use of this {@link SelectableXMapPane} is undefined.
1963             */
1964            private boolean disposed = false;
1965    
1966            /**
1967             * Entfernt einen Listener von der Map.
1968             *
1969             * @param l
1970             *            zu entfernender Listener
1971             */
1972            public void removeMapPaneListener(JMapPaneListener l) {
1973                    mapPaneListeners.remove(l);
1974            }
1975    
1976            /** Stored the time used for the last real rendering in ms. **/
1977            private long lastRenderingDuration = Long.MAX_VALUE;
1978    
1979            // if null, no quick preview will be shown
1980            private int quickPreviewHint = 0;
1981    
1982            /**
1983             * For every rendering thread started,
1984             * {@link GTUtil#createGTRenderer(MapContext)} is called to create a new
1985             * renderer. These Java2D rendering hints are passed to the
1986             * {@link GTRenderer}. The java2dHints are the same for all renderers (bg
1987             * and local).
1988             */
1989            private RenderingHints java2dHints;
1990    
1991            /**
1992             * Returns in milli seconds the time the last rending of the
1993             * {@link SelectableXMapPane} took. #Long.MAX_VALUE if the JMapPane has not
1994             * been rendered yet.
1995             */
1996            public long getLastRenderingDuration() {
1997                    return lastRenderingDuration;
1998            }
1999    
2000            /**
2001             * Should be called when the {@link JMapPane} is not needed no more to help
2002             * the GarbageCollector
2003             *
2004             * Removes all {@link JMapPaneListener}s that are registered
2005             *
2006             * @author <a href="mailto:[email protected]">Stefan Alfons
2007             *         Kr&uuml;ger</a>
2008             */
2009            public void dispose() {
2010                    if (isDisposed())
2011                            return;
2012    
2013                    disposed = true;
2014    
2015                    if (bgExecuter != null) {
2016                            bgExecuter.cancelTask();
2017                    }
2018    
2019                    if (localExecuter != null) {
2020                            localExecuter.cancelTask();
2021                    }
2022    
2023                    startRenderThreadsTimer.stop();
2024                    repainterTimer.stop();
2025    
2026                    if (bgImage != null)
2027                            bgImage.flush();
2028                    if (localImage != null)
2029                            localImage.flush();
2030    //              if (gadgetsImage != null)
2031    //                      gadgetsImage.flush();
2032                    if (finalImage != null)
2033                            finalImage.flush();
2034                    if (preFinalImage != null)
2035                            preFinalImage.flush();
2036    
2037                    // if (dragWaitCursorListener != null)
2038                    // this.removeMouseListener(dragWaitCursorListener);
2039                    // if (mouseWheelZoomListener != null)
2040                    // this.removeMouseWheelListener(mouseWheelZoomListener);
2041    
2042                    // Alle mapPaneListener entfernen
2043                    mapPaneListeners.clear();
2044    
2045                    removeMouseMotionListener(zoomMapPaneMouseListener);
2046                    removeMouseListener(zoomMapPaneMouseListener);
2047    
2048                    if (localContext != null)
2049                            getContext().clearLayerList();
2050                    if (bgContext != null)
2051                            getBgContext().clearLayerList();
2052    
2053                    removeAll();
2054            }
2055    
2056            /**
2057             * A flag indicating if dispose() has already been called. If true, then
2058             * further use of this {@link SelectableXMapPane} is undefined.
2059             */
2060            private boolean isDisposed() {
2061                    return disposed;
2062            }
2063    
2064            public void setQuickPreviewHint(int quickPreviewHint) {
2065                    this.quickPreviewHint = quickPreviewHint;
2066    
2067            }
2068    
2069            public void setJava2dHints(RenderingHints java2dHints) {
2070                    this.java2dHints = java2dHints;
2071            }
2072    
2073            public RenderingHints getJava2dHints() {
2074                    return java2dHints;
2075            }
2076    
2077            /**
2078             * Zooms towards a point.
2079             *
2080             * @param center
2081             *            position in window coordinates
2082             * @param zoomFaktor
2083             *            > 1 for zoom in, < 1 for zoom out. Default is 1.33.
2084             */
2085            public void zoomTo(Point center, Double zoomFaktor) {
2086                    if (zoomFaktor == null || zoomFaktor == 0.)
2087                            zoomFaktor = 2.;
2088    
2089                    Point2D gcenter = getScreenToWorld().transform(center, null);
2090                    center = null;
2091                    
2092                    if (
2093                                    Double.isNaN(gcenter.getX()) || Double.isNaN(gcenter.getY())
2094                                    ||
2095                                    Double.isInfinite(gcenter.getX()) || Double.isInfinite(gcenter.getY())
2096                                    
2097                    ) {
2098                            // Not inside valid CRS area! cancel
2099                            return;
2100                    }
2101    
2102                    final Envelope mapArea = getMapArea();
2103                    
2104                    Envelope newMapArea = new Envelope(mapArea);
2105                    newMapArea
2106                                    .expandBy((mapArea.getWidth() * zoomFaktor - mapArea
2107                                                    .getWidth()) / 2., (mapArea.getHeight()
2108                                                    * zoomFaktor - mapArea.getHeight()) / 2.);
2109    
2110                    // Move the newMapArea above the new center
2111                    newMapArea.translate(gcenter.getX() - mapArea.centre().x, gcenter.getY()
2112                                    - mapArea.centre().y);
2113    
2114                    setMapArea(newMapArea);
2115            }
2116    
2117            /**
2118             * Zooms towards a point.
2119             *
2120             * @param center
2121             *            position in window coordinates
2122             * @param zoomFactor
2123             *            > 1 for zoom in, < 1 for zoom out. Default is 1.33
2124             */
2125            public void zoomTo(Point center) {
2126                    zoomTo(center, null);
2127            }
2128    
2129            public void mouseDragged(Point startPos, Point lastPos, MouseEvent event) {
2130    
2131                    if ((getState() == XMapPane.PAN)
2132                                    || ((event.getModifiersEx() & InputEvent.BUTTON3_DOWN_MASK) != 0)) {
2133    
2134                            if (getCursor() != SwingUtil.PANNING_CURSOR) {
2135                                    setCursor(SwingUtil.PANNING_CURSOR);
2136    
2137                                    // While panning, we deactivate the rendering. So the tasts are
2138                                    // ready to start when the panning os done.
2139                                    if (bgExecuter != null)
2140                                            bgExecuter.cancelTask();
2141                                    if (localExecuter != null)
2142                                            localExecuter.cancelTask();
2143                            }
2144    
2145                            if (lastPos.x > 0 && lastPos.y > 0) {
2146                                    final int dx = event.getX() - lastPos.x;
2147                                    final int dy = event.getY() - lastPos.y;
2148    
2149                                    // TODO Stop dragging when the drag would not be valid...
2150                                    // boolean dragValid = true;
2151                                    // // check if this panning results in a valid mapArea
2152                                    // {
2153                                    // Rectangle winBounds = xMapPane.getBounds();
2154                                    // winBounds.translate(xMapPane.imageOrigin.x,
2155                                    // -xMapPane.imageOrigin.y);
2156                                    // Envelope newMapAreaBefore = xMapPane.tranformWindowToGeo(
2157                                    // winBounds.x, winBounds.y, winBounds.x
2158                                    // + winBounds.width, winBounds.y
2159                                    // + winBounds.height);
2160                                    //                                      
2161                                    //
2162                                    // winBounds = xMapPane.getBounds();
2163                                    // Point testIng = new Point(xMapPane.imageOrigin);
2164                                    // testIng.translate(dx, dy);
2165                                    // winBounds.translate(testIng.x, -testIng.y);
2166                                    // Envelope newMapAreaAfter = xMapPane.tranformWindowToGeo(
2167                                    // winBounds.x, winBounds.y, winBounds.x
2168                                    // + winBounds.width, winBounds.y
2169                                    // + winBounds.height);
2170                                    //
2171                                    // // If the last drag doesn't change the MapArea anymore cancel
2172                                    // it.
2173                                    // if (xMapPane.bestAllowedMapArea(newMapAreaAfter).equals(
2174                                    // xMapPane.bestAllowedMapArea(newMapAreaBefore))){
2175                                    // dragValid = false;
2176                                    // return;
2177                                    // }
2178                                    // }
2179    
2180                                    imageOrigin.translate(dx, dy);
2181                                    updateFinalImage();
2182                                    repaint();
2183                            }
2184    
2185                    } else if ((getState() == XMapPane.ZOOM_IN)
2186                                    || (getState() == XMapPane.ZOOM_OUT)
2187                                    || (getState() == XMapPane.SELECT_ALL)
2188                                    || (getState() == XMapPane.SELECT_TOP)
2189                    // || (getState() == XMapPane.SELECT_ONE_FROM_TOP)
2190                    ) {
2191                            final Graphics graphics = getGraphics();
2192    
2193                            drawRectangle(graphics, startPos, event.getPoint());
2194    
2195                            if ((lastPos.x > 0) && (lastPos.y > 0)) {
2196                                    drawRectangle(graphics, startPos, lastPos);
2197                            }
2198    
2199                    }
2200    
2201            }
2202    
2203            /**
2204             * Draws a rectangle in XOR mode from the origin at {@link #startPos} to the
2205             * given point. All in screen coordinates.
2206             */
2207            protected void drawRectangle(final Graphics graphics, Point startPos,
2208                            Point e) {
2209                    // undraw last box/draw new box
2210                    final int left = Math.min(startPos.x, e.x);
2211                    final int right = Math.max(startPos.x, e.x);
2212                    final int top = Math.max(startPos.y, e.y);
2213                    final int bottom = Math.min(startPos.y, e.y);
2214                    final int width = right - left;
2215                    final int height = top - bottom;
2216    
2217                    if (width == 0 && height == 0)
2218                            return;
2219    
2220                    graphics.setXORMode(Color.WHITE);
2221                    graphics.drawRect(left, bottom, width, height);
2222            }
2223    
2224            /**
2225             * Finalizes a PAN action
2226             */
2227            public void performPan() {
2228                    Rectangle winBounds = getBounds();
2229                    winBounds.translate(-imageOrigin.x, -imageOrigin.y);
2230                    Envelope newMapArea = tranformWindowToGeo(winBounds.x, winBounds.y,
2231                                    winBounds.x + winBounds.width, winBounds.y + winBounds.height);
2232    
2233                    imageOrigin.x = 0;
2234                    imageOrigin.y = 0;
2235    
2236                    if (!setMapArea(newMapArea)){
2237                            updateFinalImage();
2238                            repaint();
2239                    }
2240    
2241                    if (getCursor() == SwingUtil.PANNING_CURSOR)
2242                            setCursor(SwingUtil.PAN_CURSOR);
2243            }
2244    
2245  }  }

Legend:
Removed from v.2  
changed lines
  Added in v.512

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26