/[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

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

Legend:
Removed from v.505  
changed lines
  Added in v.515

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26