/[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/skrueger/geotools/XMapPane.java revision 557 by alfonx, Tue Nov 24 13:00:54 2009 UTC branches/2.0-RC2/src/skrueger/geotools/XMapPane.java revision 653 by alfonx, Mon Feb 1 15:09:18 2010 UTC
# Line 26  import java.util.HashMap; Line 26  import java.util.HashMap;
26  import java.util.Map;  import java.util.Map;
27  import java.util.Vector;  import java.util.Vector;
28    
29    import javax.swing.JList;
30  import javax.swing.Timer;  import javax.swing.Timer;
31    import javax.swing.border.Border;
32    
33  import org.apache.log4j.Logger;  import org.apache.log4j.Logger;
34    import org.geotools.factory.GeoTools;
35  import org.geotools.feature.FeatureCollection;  import org.geotools.feature.FeatureCollection;
36    import org.geotools.geometry.DirectPosition2D;
37  import org.geotools.geometry.jts.JTS;  import org.geotools.geometry.jts.JTS;
38  import org.geotools.geometry.jts.ReferencedEnvelope;  import org.geotools.geometry.jts.ReferencedEnvelope;
39  import org.geotools.map.DefaultMapContext;  import org.geotools.map.DefaultMapContext;
# Line 65  import schmitzm.geotools.map.event.MapLa Line 69  import schmitzm.geotools.map.event.MapLa
69  import schmitzm.lang.LangUtil;  import schmitzm.lang.LangUtil;
70  import schmitzm.swing.JPanel;  import schmitzm.swing.JPanel;
71  import schmitzm.swing.SwingUtil;  import schmitzm.swing.SwingUtil;
72    import schmitzm.swing.event.MouseInputType;
73    
74  import com.vividsolutions.jts.geom.Coordinate;  import com.vividsolutions.jts.geom.Coordinate;
75  import com.vividsolutions.jts.geom.Envelope;  import com.vividsolutions.jts.geom.Envelope;
# Line 95  import com.vividsolutions.jts.geom.Geome Line 100  import com.vividsolutions.jts.geom.Geome
100   */   */
101  public class XMapPane extends JPanel {  public class XMapPane extends JPanel {
102    
103          private static final int IMAGETYPE = BufferedImage.TYPE_INT_RGB;          // private static final int IMAGETYPE = BufferedImage.TYPE_INT_RGB;
104          private static final int IMAGETYPE_withAlpha = BufferedImage.TYPE_INT_ARGB;          // private static final int IMAGETYPE_withAlpha =
105            // BufferedImage.TYPE_INT_ARGB;
106            private static final int IMAGETYPE = BufferedImage.TYPE_3BYTE_BGR;
107            private static final int IMAGETYPE_withAlpha = BufferedImage.TYPE_4BYTE_ABGR;
108    
109          private final static Logger LOGGER = Logger.getLogger(XMapPane.class);          private final static Logger LOGGER = Logger.getLogger(XMapPane.class);
110    
111            /**
112             * A flag indicating whether the {@link XMapPane} is accepting repaints from
113             * the EDT. @see {@link XMapPane#setPainting(boolean))
114             **/
115          private boolean acceptsRepaintCalls = true;          private boolean acceptsRepaintCalls = true;
116    
117          /**          /**
# Line 140  public class XMapPane extends JPanel { Line 152  public class XMapPane extends JPanel {
152           * the {@link #repaintTimer} is regularly updating the {@link #finalImage}           * the {@link #repaintTimer} is regularly updating the {@link #finalImage}
153           * with previews.           * with previews.
154           */           */
155          public static final int REPEATING_REPAINT_DELAY = 600;          public static final int REPEATING_REPAINT_DELAY = 500;
156    
157          /**          /**
158           * Default delay (milliseconds) before the map will be redrawn when resizing           * Default delay (milliseconds) before the map will be redrawn when resizing
# Line 215  public class XMapPane extends JPanel { Line 227  public class XMapPane extends JPanel {
227           *           *
228           * @see #addGadgets(Graphics2D, boolean)           * @see #addGadgets(Graphics2D, boolean)
229           */           */
230          final static Font waitFont = new Font("Arial", Font.BOLD, 30);          final static Font waitFont = new Font("Arial", Font.BOLD, 28);
231    
232          /**          /**
233           * {@link Font} used to paint error messages into the map           * {@link Font} used to paint error messages into the map
# Line 225  public class XMapPane extends JPanel { Line 237  public class XMapPane extends JPanel {
237          final static Font errorFont = new Font("Arial", Font.BOLD, 13);          final static Font errorFont = new Font("Arial", Font.BOLD, 13);
238    
239          /**          /**
240             * If last average last two renderings took more than that many ms, show the
241             * user a scaled preview
242             **/
243            private static final long PRESCALE_MINTIME = 230;
244    
245            /**
246           * The wait message painted into the map while rendering is going on on           * The wait message painted into the map while rendering is going on on
247           * another thread.           * another thread.
248           *           *
# Line 239  public class XMapPane extends JPanel { Line 257  public class XMapPane extends JPanel {
257           * @param e           * @param e
258           *            Maus-Ereignis           *            Maus-Ereignis
259           */           */
260          public static Point2D getMapCoordinatesFromEvent(final MouseEvent e) {          public static DirectPosition2D getMapCoordinatesFromEvent(final MouseEvent e) {
261                  // aktuelle Geo-Position aus GeoMouseEvent ermitteln                  // aktuelle Geo-Position aus GeoMouseEvent ermitteln
262                  if (e != null && e instanceof MapMouseEvent)                  if (e != null && e instanceof MapMouseEvent)
263                          try {                          try {
264                                  return ((MapMouseEvent) e).getMapPosition().toPoint2D();                                  return ((MapMouseEvent) e).getMapPosition();
265                          } catch (final Exception err) {                          } catch (final Exception err) {
266                                  LOGGER                                  LOGGER
267                                                  .error(                                                  .error(
# Line 260  public class XMapPane extends JPanel { Line 278  public class XMapPane extends JPanel {
278                                  return null;                                  return null;
279    
280                          final AffineTransform at = xMapPane.getScreenToWorld();                          final AffineTransform at = xMapPane.getScreenToWorld();
281                          if (at != null)                          if (at != null) {
282                                  return at.transform(e.getPoint(), null);                                  Point2D transformed = at.transform(e.getPoint(), null);
283                                    return new DirectPosition2D(xMapPane.getMapContext()
284                                                    .getCoordinateReferenceSystem(), transformed.getX(),
285                                                    transformed.getY());
286                            }
287                          return null;                          return null;
288                  }                  }
289                  throw new IllegalArgumentException(                  throw new IllegalArgumentException(
# Line 276  public class XMapPane extends JPanel { Line 298  public class XMapPane extends JPanel {
298    
299                  @Override                  @Override
300                  public void layerAdded(final MapLayerListEvent event) {                  public void layerAdded(final MapLayerListEvent event) {
301                          MapLayer layer = event.getLayer();                          final MapLayer layer = event.getLayer();
302                          layer.addMapLayerListener(bgMapLayerListener);                          layer.addMapLayerListener(bgMapLayerListener);
303                          requestStartRendering();                          requestStartRendering();
   
304                  }                  }
305    
306                  @Override                  @Override
# Line 373  public class XMapPane extends JPanel { Line 394  public class XMapPane extends JPanel {
394           * While dragging, the {@link #updateFinalImage()} method is translating the           * While dragging, the {@link #updateFinalImage()} method is translating the
395           * cached images while setting it together.           * cached images while setting it together.
396           **/           **/
397          Point imageOrigin = new Point(0, 0);          private final Point imageOrigin = new Point(0, 0);
398          /**          /**
399           * For every rendering thread started,           * For every rendering thread started,
400           * {@link GTUtil#createGTRenderer(MapContext)} is called to create a new           * {@link GTUtil#createGTRenderer(MapContext)} is called to create a new
# Line 395  public class XMapPane extends JPanel { Line 416  public class XMapPane extends JPanel {
416                  public void layerAdded(final MapLayerListEvent event) {                  public void layerAdded(final MapLayerListEvent event) {
417                          event.getLayer().addMapLayerListener(localMapLayerListener);                          event.getLayer().addMapLayerListener(localMapLayerListener);
418    
419                          localRenderer.setContext(getMapContext());                          getLocalRenderer().setContext(getMapContext());
420                          requestStartRendering();                          requestStartRendering();
421    
422                  }                  }
423    
424                  @Override                  @Override
425                  public void layerChanged(final MapLayerListEvent event) {                  public void layerChanged(final MapLayerListEvent event) {
426                          localRenderer.setContext(getMapContext());                          // getLocalRenderer().setContext(getMapContext()); geht doch auch
427                            // ohne?!?!? wow...
428                          requestStartRendering();                          requestStartRendering();
429                  }                  }
430    
431                  @Override                  @Override
432                  public void layerMoved(final MapLayerListEvent event) {                  public void layerMoved(final MapLayerListEvent event) {
433                          localRenderer.setContext(getMapContext());                          getLocalRenderer().setContext(getMapContext());
434                          requestStartRendering();                          requestStartRendering();
435                  }                  }
436    
# Line 416  public class XMapPane extends JPanel { Line 438  public class XMapPane extends JPanel {
438                  public void layerRemoved(final MapLayerListEvent event) {                  public void layerRemoved(final MapLayerListEvent event) {
439                          if (event.getLayer() != null)                          if (event.getLayer() != null)
440                                  event.getLayer().removeMapLayerListener(localMapLayerListener);                                  event.getLayer().removeMapLayerListener(localMapLayerListener);
441                          localRenderer.setContext(getMapContext());                          getLocalRenderer().setContext(getMapContext());
442                          requestStartRendering();                          requestStartRendering();
443                  }                  }
444          };          };
445    
446          /**          /**
447           * Listens to each layer in the local {@link MapContext} for changes and           * Listens to each layer in the local {@link MapContext} for changes and
448           * triggers repaints.           * triggers repaints. We don't have to listen layerChanged, because that is
449             * already done in {@link #localContextListener}
450           */           */
451          protected MapLayerListener localMapLayerListener = new MapLayerAdapter() {          protected MapLayerListener localMapLayerListener = new MapLayerAdapter() {
452    
453                  @Override                  // @Override
454                  public void layerChanged(final MapLayerEvent event) {                  // public void layerChanged(final MapLayerEvent event) {
455                          localRenderer.setContext(getMapContext()); // betters for SLD                  // // getLocalRenderer().setContext(getMapContext()); // betters for SLD
456                          // changes?!                  // // // changes?!
457                          requestStartRendering();                  // // requestStartRendering();
458                  }                  // }
459    
460                  @Override                  @Override
461                  public void layerHidden(final MapLayerEvent event) {                  public void layerHidden(final MapLayerEvent event) {
# Line 445  public class XMapPane extends JPanel { Line 468  public class XMapPane extends JPanel {
468                  }                  }
469          };          };
470    
471          private final GTRenderer localRenderer = GTUtil.createGTRenderer();          final private GTRenderer localRenderer = GTUtil.createGTRenderer();
472    
473          private final GTRenderer bgRenderer = GTUtil.createGTRenderer();          private final GTRenderer bgRenderer = GTUtil.createGTRenderer();
474    
# Line 466  public class XMapPane extends JPanel { Line 489  public class XMapPane extends JPanel {
489          /**          /**
490           * This color is used as the default background color when painting a map.           * This color is used as the default background color when painting a map.
491           */           */
492          private Color mapBackgroundColor = Color.WHITE;          private Color mapBackgroundColor = null;
493    
494          /**          /**
495           * A flag indicating that the shown image is invalid and needs to be           * A flag indicating that the shown image is invalid and needs to be
# Line 515  public class XMapPane extends JPanel { Line 538  public class XMapPane extends JPanel {
538          private BufferedImage preFinalImage;          private BufferedImage preFinalImage;
539    
540          // ** if 0, no quick preview will be shown **/          // ** if 0, no quick preview will be shown **/
541          private int quickPreviewHint = 0;          // private int quickPreviewHint = 0;
542    
543          private Map<Object, Object> rendererHints = GTUtil          private Map<Object, Object> rendererHints = GTUtil
544                          .getDefaultGTRendererHints(localRenderer);                          .getDefaultGTRendererHints(getLocalRenderer());
545    
546          /**          /**
547           * If set to <code>true</code>, the {@link #startRenderThreadsTimer} will           * If set to <code>true</code>, the {@link #startRenderThreadsTimer} will
# Line 541  public class XMapPane extends JPanel { Line 564  public class XMapPane extends JPanel {
564    
565          /**          /**
566           * The default state is ZOOM_IN, hence by default the           * The default state is ZOOM_IN, hence by default the
567           * {@link #zoomMapPaneMouseListener} is also enabled.           * {@link #xMapPaneMouseListener} is also enabled.
568           **/           **/
569          private int state = ZOOM_IN;          private int state = ZOOM_IN;
570    
# Line 553  public class XMapPane extends JPanel { Line 576  public class XMapPane extends JPanel {
576    
577          private AffineTransform worldToScreen;          private AffineTransform worldToScreen;
578    
579            // /**
580            // * This {@link MouseListener} is managing all zoom related tasks
581            // */
582            // private final ZoomXMapPaneMouseListener zoomMapPaneMouseListener = new
583            // ZoomXMapPaneMouseListener(
584            // this);
585    
586          /**          /**
587           * This {@link MouseListener} is managing all zoom related tasks           * This {@link MouseListener} is managing all zoom related tasks
588           */           */
589          public final ZoomXMapPaneMouseListener zoomMapPaneMouseListener = new ZoomXMapPaneMouseListener(          private final XMapPaneMouseListener xMapPaneMouseListener = new XMapPaneMouseListener(
590                          this);                          this);
591    
592          /** Is set if a renderer has an error **/          /** Is set if a renderer has an error **/
# Line 598  public class XMapPane extends JPanel { Line 628  public class XMapPane extends JPanel {
628                  /**                  /**
629                   * Adding the #zoomMapPaneMouseListener                   * Adding the #zoomMapPaneMouseListener
630                   */                   */
631                  this.addMouseListener(zoomMapPaneMouseListener);                  this.addMouseListener(xMapPaneMouseListener);
632                  this.addMouseMotionListener(zoomMapPaneMouseListener);                  this.addMouseMotionListener(xMapPaneMouseListener);
633                  this.addMouseWheelListener(zoomMapPaneMouseListener);                  this.addMouseWheelListener(xMapPaneMouseListener);
634                    xMapPaneMouseListener.actions.put(MouseInputType.LClick,
635                                    XMapPaneAction.ZOOM_IN);
636                    xMapPaneMouseListener.actions.put(MouseInputType.LDrag,
637                                    XMapPaneAction.ZOOM_IN);
638                    xMapPaneMouseListener.actions.put(MouseInputType.Wheel,
639                                    XMapPaneAction.ZOOM_IN);
640    
641                    xMapPaneMouseListener.actions.put(MouseInputType.RClick,
642                                    XMapPaneAction.SELECT_ALL);
643    
644                    xMapPaneMouseListener.actions.put(MouseInputType.RDrag,
645                                    XMapPaneAction.PAN);
646    
647                  /*                  /*
648                   * We use a Timer object to avoid rendering delays and flickering when                   * We use a Timer object to avoid rendering delays and flickering when
# Line 616  public class XMapPane extends JPanel { Line 658  public class XMapPane extends JPanel {
658                                                  if (!isWellDefined())                                                  if (!isWellDefined())
659                                                          return;                                                          return;
660    
661                                                  LOGGER.debug("resizeTimer performed");                                                  // LOGGER.debug("resizeTimer performed");
662    
663                                                  final Rectangle bounds = getVisibleRect();                                                  // final Rectangle bounds = getVisibleRect();
664                                                  //                                                  //
665                                                  // System.out.println("\n\ntimer performs with bounds = "                                                  // System.out.println("\n\ntimer performs with bounds = "
666                                                  // + bounds);                                                  // + bounds);
667    
668                                                  final Envelope geoMapArea = tranformWindowToGeo(                                                  // final Envelope geoMapArea = tranformWindowToGeo(
669                                                                  bounds.x, bounds.y, bounds.x + bounds.width,                                                  // bounds.x, bounds.y, bounds.x + bounds.width,
670                                                                  bounds.y + bounds.height);                                                  // bounds.y + bounds.height);
671    
672                                                  if (setMapArea(geoMapArea)) {                                                  paneResized = true;
673                                                          LOGGER.debug("  maparea changed");                                                  if (!setMapArea(getMapArea())) {
674                                                          paneResized = true;                                                          // It's important to request new rendering here.
675                                                  } else                                                          // setMapArea only returns true and only calls
676                                                          LOGGER.debug("  maparea NOT changed");                                                          // requestStartRendering if the maparea has changed.
677                                                            // But if the component is resized, the maparea
678                                                            // doesn't have to change.
679                                                            requestStartRendering();
680                                                    }
681    
682                                          }                                          }
683                                  });                                  });
684                  resizeTimer.setRepeats(false);                  resizeTimer.setRepeats(false);
# Line 646  public class XMapPane extends JPanel { Line 693  public class XMapPane extends JPanel {
693                                  // Seems to be called twice with the same size..                                  // Seems to be called twice with the same size..
694                                  if (oldVisibleRect != null                                  if (oldVisibleRect != null
695                                                  && oldVisibleRect.equals(getVisibleRect())) {                                                  && oldVisibleRect.equals(getVisibleRect())) {
696                                          LOGGER.debug("skipping resize.");                                          // LOGGER.debug("skipping resize.");
697                                          return;                                          return;
698                                  }                                  }
699    
700                                  LOGGER.debug("resized: " + getVisibleRect());                                  // LOGGER.debug("resized: " + getVisibleRect());
701                                  resizeTimer.restart();                                  resizeTimer.restart();
702                                  oldVisibleRect = getVisibleRect();                                  oldVisibleRect = getVisibleRect();
703                          }                          }
# Line 950  public class XMapPane extends JPanel { Line 997  public class XMapPane extends JPanel {
997                  // Remove all mapPaneListeners that have registered with us                  // Remove all mapPaneListeners that have registered with us
998                  mapPaneListeners.clear();                  mapPaneListeners.clear();
999    
1000                  removeMouseMotionListener(zoomMapPaneMouseListener);                  removeMouseMotionListener(xMapPaneMouseListener);
1001                  removeMouseListener(zoomMapPaneMouseListener);                  removeMouseListener(xMapPaneMouseListener);
1002    
1003                  if (localContext != null)                  if (localContext != null)
1004                          getMapContext().clearLayerList();                          getMapContext().clearLayerList();
# Line 967  public class XMapPane extends JPanel { Line 1014  public class XMapPane extends JPanel {
1014           */           */
1015          protected void drawRectangle(final Graphics graphics, final Point startPos,          protected void drawRectangle(final Graphics graphics, final Point startPos,
1016                          final Point e) {                          final Point e) {
1017                    drawRectangle(graphics, startPos, e, Color.WHITE);
1018            }
1019    
1020            /**
1021             * Draws a rectangle in XOR mode from the origin at {@link #startPos} to the
1022             * given point. All in screen coordinates.
1023             */
1024            protected void drawRectangle(final Graphics graphics, final Point startPos,
1025                            final Point e, Color color) {
1026    
1027                  if (!isWellDefined())                  if (!isWellDefined())
1028                          return;                          return;
# Line 982  public class XMapPane extends JPanel { Line 1038  public class XMapPane extends JPanel {
1038                  if (width == 0 && height == 0)                  if (width == 0 && height == 0)
1039                          return;                          return;
1040    
1041                  graphics.setXORMode(Color.WHITE);                  graphics.setXORMode(color);
1042                  graphics.drawRect(left, bottom, width, height);                  graphics.drawRect(left, bottom, width, height);
1043          }          }
1044    
# Line 994  public class XMapPane extends JPanel { Line 1050  public class XMapPane extends JPanel {
1050           *           *
1051           * @param g           * @param g
1052           *            Graphics2D to paint the preview into           *            Graphics2D to paint the preview into
          *  
          * @param state  
          *            Max be {@link #ZOOM_IN} or {@link #ZOOM_OUT}  
1053           */           */
1054          protected boolean drawScaledPreviewImage_Zoom(final Graphics2D graphics) {          protected boolean drawScaledPreviewImage_Zoom(final Graphics2D graphics) {
1055    
1056                  // if (1 == 1)return false;                  // if (1 == 1)return false;
1057                    // if (quickPreviewHint == 0)
1058                    // return false;
1059    
1060                  if (quickPreviewHint == 0)                  if (oldMapArea == null)
1061                          return false;                          return false;
1062    
1063                  graphics.setRenderingHint(RenderingHints.KEY_INTERPOLATION,                  if (getPreFinalImage() == null)
                                 RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR);  
                 graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,  
                                 RenderingHints.VALUE_ANTIALIAS_OFF);  
                 graphics.setRenderingHint(RenderingHints.KEY_RENDERING,  
                                 RenderingHints.VALUE_RENDER_SPEED);  
   
                 if (oldMapArea == null)  
1064                          return false;                          return false;
1065    
1066                  final Rectangle visibleArea = getVisibleRect();                  final Rectangle visibleArea = getVisibleRect();
# Line 1027  public class XMapPane extends JPanel { Line 1075  public class XMapPane extends JPanel {
1075                  final int xx2 = (int) Math.round(oldMapWindow.getMaxX());                  final int xx2 = (int) Math.round(oldMapWindow.getMaxX());
1076                  final int yy2 = (int) Math.round(oldMapWindow.getMaxY());                  final int yy2 = (int) Math.round(oldMapWindow.getMaxY());
1077    
1078                    graphics.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
1079                                    RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR);
1080                    graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
1081                                    RenderingHints.VALUE_ANTIALIAS_OFF);
1082                    graphics.setRenderingHint(RenderingHints.KEY_RENDERING,
1083                                    RenderingHints.VALUE_RENDER_SPEED);
1084    
1085                  graphics.drawImage(getPreFinalImage(), xx1, yy1, xx2, yy2,                  graphics.drawImage(getPreFinalImage(), xx1, yy1, xx2, yy2,
1086                                  (int) visibleArea.getMinX(), (int) visibleArea.getMinY(),                                  (int) visibleArea.getMinX(), (int) visibleArea.getMinY(),
1087                                  (int) visibleArea.getMaxX(), (int) visibleArea.getMaxY(),                                  (int) visibleArea.getMaxX(), (int) visibleArea.getMaxY(),
# Line 1035  public class XMapPane extends JPanel { Line 1090  public class XMapPane extends JPanel {
1090                  final Rectangle painedArea = new Rectangle(xx1, yy1, xx2 - xx1, yy2                  final Rectangle painedArea = new Rectangle(xx1, yy1, xx2 - xx1, yy2
1091                                  - yy1);                                  - yy1);
1092    
1093                  SwingUtil.clearAround(graphics, painedArea, visibleArea);                  SwingUtil.clearAround(graphics, painedArea, visibleArea,
1094                                    getMapBackgroundColor());
1095    
1096                  addGadgets(graphics, true);                  addGadgets(graphics, true);
1097    
1098                  quickPreviewHint = 0;                  // quickPreviewHint = 0;
1099    
1100                  repaintTimer.restart();                  repaintTimer.restart();
1101    
                 graphics.dispose();  
   
1102                  // Something has been drawn                  // Something has been drawn
1103                  return true;                  return true;
1104          }          }
# Line 1057  public class XMapPane extends JPanel { Line 1111  public class XMapPane extends JPanel {
1111           * Lazyly initializes a {@link BufferedImage} for the background renderer.           * Lazyly initializes a {@link BufferedImage} for the background renderer.
1112           */           */
1113          private Image getBgImage() {          private Image getBgImage() {
1114                  //                  if (bgImage == null) {
1115                  // if (bgImage == null) {                          bgImage = new BufferedImage(getVisibleRect().width,
1116                  // bgImage = createImage(getBounds().width, getBounds().height);                                          getVisibleRect().height, IMAGETYPE);
1117                  // }                          SwingUtil.clearImage(finalImage, getMapBackgroundColor());
1118                    }
1119    
1120                  return bgImage;                  return bgImage;
1121          }          }
# Line 1078  public class XMapPane extends JPanel { Line 1133  public class XMapPane extends JPanel {
1133                          // Rectangle curPaintArea = getVisibleRect();                          // Rectangle curPaintArea = getVisibleRect();
1134                          finalImage = new BufferedImage(getVisibleRect().width,                          finalImage = new BufferedImage(getVisibleRect().width,
1135                                          getVisibleRect().height, IMAGETYPE);                                          getVisibleRect().height, IMAGETYPE);
1136                            SwingUtil.clearImage(finalImage, getMapBackgroundColor());
1137    
1138                          requestStartRendering();                          // requestStartRendering();
1139                  }                  }
1140                  return finalImage;                  return finalImage;
1141          }          }
1142    
         public RenderingHints getJava2dHints() {  
                 return java2dHints;  
         }  
   
1143          /**          /**
1144           * Lazyly initializes a {@link BufferedImage} for the background renderer.           * Lazyly initializes a {@link BufferedImage} for the background renderer.
1145           */           */
# Line 1096  public class XMapPane extends JPanel { Line 1148  public class XMapPane extends JPanel {
1148                  if (localImage == null) {                  if (localImage == null) {
1149                          localImage = new BufferedImage(getVisibleRect().width,                          localImage = new BufferedImage(getVisibleRect().width,
1150                                          getVisibleRect().height, IMAGETYPE_withAlpha);                                          getVisibleRect().height, IMAGETYPE_withAlpha);
1151                            SwingUtil.clearImage(localImage, getMapBackgroundColor());
1152                  }                  }
1153    
1154                  return localImage;                  return localImage;
# Line 1111  public class XMapPane extends JPanel { Line 1164  public class XMapPane extends JPanel {
1164                          ReferencedEnvelope mapArea_ = null;                          ReferencedEnvelope mapArea_ = null;
1165                          try {                          try {
1166                                  mapArea_ = localContext.getLayerBounds();                                  mapArea_ = localContext.getLayerBounds();
1167                          } catch (final IOException e) {                          } catch (final Exception e) {
1168                                  LOGGER.warn("localContext.getLayerBounds()", e);                                  LOGGER.warn("localContext.getLayerBounds()", e);
1169                          }                          }
1170    
# Line 1137  public class XMapPane extends JPanel { Line 1190  public class XMapPane extends JPanel {
1190                          try {                          try {
1191                                  localContext.setCoordinateReferenceSystem(GeoImportUtil                                  localContext.setCoordinateReferenceSystem(GeoImportUtil
1192                                                  .getDefaultCRS());                                                  .getDefaultCRS());
1193                          } catch (Exception e) {                          } catch (final Exception e) {
1194                                  throw new RuntimeException("setting context CRS:", e);                                  throw new RuntimeException("setting context CRS:", e);
1195                          }                          }
1196    
# Line 1151  public class XMapPane extends JPanel { Line 1204  public class XMapPane extends JPanel {
1204           * If no parent component is available, WHITE is returned.           * If no parent component is available, WHITE is returned.
1205           **/           **/
1206          public Color getMapBackgroundColor() {          public Color getMapBackgroundColor() {
1207                  if (mapBackgroundColor == null){                  if (mapBackgroundColor == null) {
1208                          if (getParent() != null) return getParent().getBackground();                          if (getParent() != null)
1209                          else return Color.WHITE;                                  return getParent().getBackground();
1210                            else
1211                                    return Color.WHITE;
1212                  }                  }
1213                  return mapBackgroundColor;                  return mapBackgroundColor;
1214          }          }
# Line 1181  public class XMapPane extends JPanel { Line 1236  public class XMapPane extends JPanel {
1236    
1237          public Envelope getMaxExtend() {          public Envelope getMaxExtend() {
1238                  if (maxExtend == null) {                  if (maxExtend == null) {
1239                          // Commented-out because it takes soo much time!  
1240                          //                          // The next command may take long time!
1241                          // long start = System.currentTimeMillis();                          // long start = System.currentTimeMillis();
1242                          // final ReferencedEnvelope layerBounds = GTUtil                          final ReferencedEnvelope layerBounds = GTUtil
1243                          // .getVisibleLayoutBounds(localContext);                                          .getVisibleLayoutBounds(localContext);
1244                          //                                                //                      
1245                          // LOGGER.info(                          // LOGGER.info(
1246                          // (System.currentTimeMillis()-start)+"m to get maxExtend");                          // (System.currentTimeMillis()-start)+"m to get maxExtend");
1247                          //                                                //                      
1248                          // if (layerBounds == null) {                          if (layerBounds == null) {
1249                          // // TODO Last fallback could be the CRS valid area                                  // // TODO Last fallback could be the CRS valid area
1250                          // return null;                                  return null;
1251                          // }                          }
1252                          //  
1253                          // // Kartenbereich um 10% vergroessern                          // Vergrößerung um 10% nochmal rausgenommen
1254                            // // // Kartenbereich um 10% vergroessern
1255                          // return JTSUtil.fixAspectRatio(getVisibleRect(), JTSUtil                          // return JTSUtil.fixAspectRatio(getVisibleRect(), JTSUtil
1256                          // .expandEnvelope(layerBounds, 0.1), true);                          // .expandEnvelope(layerBounds, 0.1), true);
1257    
1258                            return JTSUtil.fixAspectRatio(getVisibleRect(), layerBounds, true);
1259                  }                  }
1260                  return maxExtend;                  return maxExtend;
1261          }          }
# Line 1225  public class XMapPane extends JPanel { Line 1283  public class XMapPane extends JPanel {
1283          }          }
1284    
1285          private Image getPreFinalImage() {          private Image getPreFinalImage() {
                 // if (preFinalImage == null) {  
                 //                        
                 // // Rectangle curPaintArea = getVisibleRect();  
                 // // preFinalImage = new BufferedImage(curPaintArea.width,  
                 // // curPaintArea.height, BufferedImage.TYPE_INT_RGB);  
                 //                        
                 // preFinalImage = createImage(getBounds().width, getBounds().height);  
                 //  
                 // requestStartRendering();  
                 // }  
1286                  return preFinalImage;                  return preFinalImage;
1287          }          }
1288    
# Line 1329  public class XMapPane extends JPanel { Line 1377  public class XMapPane extends JPanel {
1377          }          }
1378    
1379          /**          /**
1380           * Called from the listeners while the mouse is dragging, this method either           * Usually called from {@link XMapPaneAction_Pan} to pan the image.
          * paints a translated (moved/panned) version of the image, or a rectangle.  
1381           *           *
1382           * @param startPos           * @param startPos
1383           *            in screen coordinates           *            in screen coordinates
1384           * @param lastPos           * @param lastPos
1385           *            in screen coordinates           *            in screen coordinates
          * @param event  
          *            the {@link MouseEvent} to read the mouse buttons from  
1386           */           */
1387          public void mouseDragged(final Point startPos, final Point lastPos,          public void pan(final int dX, final int dY) {
                         final MouseEvent event) {  
1388    
1389                  if ((getState() == XMapPane.PAN)                  // Panning needs a panning coursor
1390                                  || ((event.getModifiersEx() & InputEvent.BUTTON3_DOWN_MASK) != 0)) {                  if (getCursor() != SwingUtil.PANNING_CURSOR) {
1391                            setCursor(SwingUtil.PANNING_CURSOR);
1392                          // Panning needs a panning coursor  
1393                          if (getCursor() != SwingUtil.PANNING_CURSOR) {                          // While panning, we deactivate the rendering. So the tasks are
1394                                  setCursor(SwingUtil.PANNING_CURSOR);                          // ready to start when the panning is finished.
1395                            if (bgExecuter != null && bgExecuter.isRunning())
1396                                  // While panning, we deactivate the rendering. So the tasks are                                  bgExecuter.cancelTask();
1397                                  // ready to start when the panning is finished.                          if (localExecuter.isRunning())
1398                                  if (bgExecuter != null && bgExecuter.isRunning())                                  localExecuter.cancelTask();
1399                                          bgExecuter.cancelTask();                  }
1400                                  if (localExecuter.isRunning())                  //
1401                                          localExecuter.cancelTask();                  // if (lastPos.x > 0 && lastPos.y > 0) {
1402                          }                  // final int dx = event.getX() - lastPos.x;
1403                    // final int dy = event.getY() - lastPos.y;
1404                          if (lastPos.x > 0 && lastPos.y > 0) {  
1405                                  final int dx = event.getX() - lastPos.x;                  // TODO Stop dragging when the drag would not be valid...
1406                                  final int dy = event.getY() - lastPos.y;                  // boolean dragValid = true;
1407                    // // check if this panning results in a valid mapArea
1408                                  // TODO Stop dragging when the drag would not be valid...                  // {
1409                                  // boolean dragValid = true;                  // Rectangle winBounds = xMapPane.getBounds();
1410                                  // // check if this panning results in a valid mapArea                  // winBounds.translate(xMapPane.imageOrigin.x,
1411                                  // {                  // -xMapPane.imageOrigin.y);
1412                                  // Rectangle winBounds = xMapPane.getBounds();                  // Envelope newMapAreaBefore = xMapPane.tranformWindowToGeo(
1413                                  // winBounds.translate(xMapPane.imageOrigin.x,                  // winBounds.x, winBounds.y, winBounds.x
1414                                  // -xMapPane.imageOrigin.y);                  // + winBounds.width, winBounds.y
1415                                  // Envelope newMapAreaBefore = xMapPane.tranformWindowToGeo(                  // + winBounds.height);
1416                                  // winBounds.x, winBounds.y, winBounds.x                  //                                      
1417                                  // + winBounds.width, winBounds.y                  //
1418                                  // + winBounds.height);                  // winBounds = xMapPane.getBounds();
1419                                  //                                                        // Point testIng = new Point(xMapPane.imageOrigin);
1420                                  //                  // testIng.translate(dx, dy);
1421                                  // winBounds = xMapPane.getBounds();                  // winBounds.translate(testIng.x, -testIng.y);
1422                                  // Point testIng = new Point(xMapPane.imageOrigin);                  // Envelope newMapAreaAfter = xMapPane.tranformWindowToGeo(
1423                                  // testIng.translate(dx, dy);                  // winBounds.x, winBounds.y, winBounds.x
1424                                  // winBounds.translate(testIng.x, -testIng.y);                  // + winBounds.width, winBounds.y
1425                                  // Envelope newMapAreaAfter = xMapPane.tranformWindowToGeo(                  // + winBounds.height);
1426                                  // winBounds.x, winBounds.y, winBounds.x                  //
1427                                  // + winBounds.width, winBounds.y                  // // If the last drag doesn't change the MapArea anymore cancel
1428                                  // + winBounds.height);                  // it.
1429                                  //                  // if (xMapPane.bestAllowedMapArea(newMapAreaAfter).equals(
1430                                  // // If the last drag doesn't change the MapArea anymore cancel                  // xMapPane.bestAllowedMapArea(newMapAreaBefore))){
1431                                  // it.                  // dragValid = false;
1432                                  // if (xMapPane.bestAllowedMapArea(newMapAreaAfter).equals(                  // return;
1433                                  // xMapPane.bestAllowedMapArea(newMapAreaBefore))){                  // }
1434                                  // dragValid = false;                  // }
                                 // return;  
                                 // }  
                                 // }  
1435    
1436                                  imageOrigin.translate(dx, dy);                  getImageOrigin().translate(dX, dY);
1437                                  updateFinalImage();                  updateFinalImage();
1438                                  repaint();                  repaint();
1439                          }                  // }
1440    
1441                  } else if ((getState() == XMapPane.ZOOM_IN)                  // } else if ((getState() == XMapPane.ZOOM_IN)
1442                                  || (getState() == XMapPane.ZOOM_OUT)                  // || (getState() == XMapPane.ZOOM_OUT)
1443                                  || (getState() == XMapPane.SELECT_ALL)                  // || (getState() == XMapPane.SELECT_ALL)
1444                                  || (getState() == XMapPane.SELECT_TOP)) {                  // || (getState() == XMapPane.SELECT_TOP)) {
1445                    //
1446                          // Draws a rectangle                  // // Draws a rectangle
1447                          final Graphics graphics = getGraphics();                  // final Graphics2D graphics = (Graphics2D) getGraphics();
1448                          drawRectangle(graphics, startPos, event.getPoint());                  // drawRectangle(graphics, startPos, event.getPoint());
1449                          if ((lastPos.x > 0) && (lastPos.y > 0))                  // if ((lastPos.x > 0) && (lastPos.y > 0))
1450                                  drawRectangle(graphics, startPos, lastPos);                  // drawRectangle(graphics, startPos, lastPos);
1451                          graphics.dispose();                  // graphics.dispose();
1452                  }                  // }
1453          }          }
1454    
1455          /**          /**
1456           * Called by the {@link RenderingExecutor} when rendering was cancelled.           * Called by the {@link RenderingExecutor} when rendering was cancelled.
1457           */           */
1458          public void onRenderingCancelled() {          public void onRenderingCancelled() {
1459                  LOGGER.debug("Rendering cancelled");                  // LOGGER.debug("Rendering cancelled");
1460                  repaintTimer.stop();                  repaintTimer.stop();
1461          }          }
1462    
1463          /**          /**
1464           * Called by the {@link RenderingExecutor} when rendering has been           * Called by the {@link RenderingExecutor} when rendering has been
1465           * completed.           * completed.
1466             *
1467             * @param l
1468             *            long ms the rendering took
1469           */           */
1470          public void onRenderingCompleted() {          public void onRenderingCompleted(final long l) {
1471                  LOGGER.debug("complete");                  lastRenderingDuration = (lastRenderingDuration + l) / 2;
1472                    // LOGGER
1473                    // .debug("complete rendering after " + lastRenderingDuration
1474                    // + "ms");
1475    
1476                  repaintTimer.stop();                  repaintTimer.stop();
1477    
# Line 1476  public class XMapPane extends JPanel { Line 1523  public class XMapPane extends JPanel {
1523    
1524                  if (!isWellDefined())                  if (!isWellDefined())
1525                          return;                          return;
1526                    //
1527                    // if (paneResized) {
1528                    // // ((Graphics2D) g).setBackground(getMapBackgroundColor());
1529                    // // g.clearRect(0, 0, getVisibleRect().width,
1530                    // getVisibleRect().height);
1531                    // return;
1532                    // }
1533    
1534                  // super.paintComponent(g); // candidate for removal                  // super.paintComponent(g); // candidate for removal
1535    
# Line 1488  public class XMapPane extends JPanel { Line 1542  public class XMapPane extends JPanel {
1542                          // If the new mapArea and the oldMapArea intersect, we can draw some                          // If the new mapArea and the oldMapArea intersect, we can draw some
1543                          // quick scaled preview to make the user feel that something is                          // quick scaled preview to make the user feel that something is
1544                          // happening.                          // happening.
1545                          if (mapAreaChanged && oldMapArea != null                          if (lastRenderingDuration > PRESCALE_MINTIME && mapAreaChanged
1546                                            && oldMapArea != null
1547                                          && getMapArea().intersects(oldMapArea)                                          && getMapArea().intersects(oldMapArea)
1548                                          & !getMapArea().equals(oldMapArea) && !paneResized) {                                          && !getMapArea().equals(oldMapArea) && !paneResized) {
1549    
1550                                  mapAreaChanged = false;                                  mapAreaChanged = false;
1551    
1552                                  if (getMapArea().covers(oldMapArea)) {                                  // if (getMapArea().covers(oldMapArea)) {
1553                                          quickPreviewHint = ZOOM_OUT;                                  // // quickPreviewHint = ZOOM_OUT;
1554                                          paintedSomething = drawScaledPreviewImage_Zoom((Graphics2D) g);                                  // paintedSomething = drawScaledPreviewImage_Zoom((Graphics2D)
1555                                  } else if (oldMapArea.covers(getMapArea())) {                                  // g);
1556                                          quickPreviewHint = ZOOM_IN;                                  // } else if (oldMapArea.covers(getMapArea())) {
1557                                          paintedSomething = drawScaledPreviewImage_Zoom((Graphics2D) g);                                  // quickPreviewHint = ZOOM_IN;
1558                                  }                                  paintedSomething = drawScaledPreviewImage_Zoom((Graphics2D) g);
1559                                    // }
1560                          }                          }
1561                  }                  }
1562    
# Line 1508  public class XMapPane extends JPanel { Line 1564  public class XMapPane extends JPanel {
1564    
1565                          g.drawImage(getFinalImage(), 0, 0, null);                          g.drawImage(getFinalImage(), 0, 0, null);
1566    
                         g.dispose(); // cand. for removal  
   
1567                          paintedSomething = true; // cand. for removal                          paintedSomething = true; // cand. for removal
1568                  }                  }
1569    
# Line 1557  public class XMapPane extends JPanel { Line 1611  public class XMapPane extends JPanel {
1611                  }                  }
1612    
1613          }          }
1614    //
1615          /**  //      /**
1616           * Performs a {@value #PAN} action. During panning, the displacement is  //       * Performs a {@value #PAN} action. During panning, the displacement is
1617           * stored in {@link #imageOrigin} object. Calling {@link #performPan()} will  //       * stored in {@link #imageOrigin} object. Calling {@link #performPan()} will
1618           * reset the offset and call {@link #setMapArea(Envelope)}.  //       * reset the offset and call {@link #setMapArea(Envelope)}.
1619           */  //       */
1620          public void performPan() {  //      public void performPan() {
1621    //
1622                  Rectangle winBounds = getVisibleRect();  //              final Rectangle winBounds = getVisibleRect();
1623    //
1624                  winBounds.translate(-imageOrigin.x, -imageOrigin.y);  //              winBounds.translate(-imageOrigin.x, -imageOrigin.y);
1625                  final Envelope newMapArea = tranformWindowToGeo(winBounds.x,  //              final Envelope newMapArea = tranformWindowToGeo(winBounds.x,
1626                                  winBounds.y, winBounds.x + winBounds.width, winBounds.y  //                              winBounds.y, winBounds.x + winBounds.width, winBounds.y
1627                                                  + winBounds.height);  //                                              + winBounds.height);
1628    //
1629                  imageOrigin.x = 0;  //              imageOrigin.x = 0;
1630                  imageOrigin.y = 0;  //              imageOrigin.y = 0;
1631    //
1632                  if (!setMapArea(newMapArea)) {  //              if (!setMapArea(newMapArea)) {
1633                          /**  //                      /**
1634                           * If setMapArea returns true, the finalImage is updated anyways.  //                       * If setMapArea returns true, the finalImage is updated anyways.
1635                           * This if-case exists to ensure that we repaint a correct image  //                       * This if-case exists to ensure that we repaint a correct image
1636                           * even if the new panning area has been denied.  //                       * even if the new panning area has been denied.
1637                           */  //                       */
1638                          updateFinalImage();  //                      updateFinalImage();
1639                          repaint();  //                      repaint();
1640                  }  //              }
1641    //
1642                  if (getCursor() == SwingUtil.PANNING_CURSOR)  //              if (getCursor() == SwingUtil.PANNING_CURSOR)
1643                          setCursor(SwingUtil.PAN_CURSOR);  //                      setCursor(SwingUtil.PAN_CURSOR);
1644          }  //      }
1645    
1646          /**          /**
1647           * Entfernt einen Listener von der Map.           * Entfernt einen Listener von der Map.
# Line 1633  public class XMapPane extends JPanel { Line 1687  public class XMapPane extends JPanel {
1687           *            the current map pane extent (screen units)           *            the current map pane extent (screen units)
1688           */           */
1689          private void resetTransforms() {          private void resetTransforms() {
                 ReferencedEnvelope refMapEnv = new ReferencedEnvelope(mapArea,  
                                 getMapContext().getCoordinateReferenceSystem());  
   
1690                  // System.out                  // System.out
1691                  // .println("paintArea in resetTeansofrms = " + getVisibleRect());                  // .println("paintArea in resetTeansofrms = " + getVisibleRect());
1692                  if (!isWellDefined())                  if (!isWellDefined())
1693                          return;                          return;
1694    
1695                    if (mapArea == null)
1696                            return;
1697    
1698                    final ReferencedEnvelope refMapEnv = new ReferencedEnvelope(mapArea,
1699                                    getMapContext().getCoordinateReferenceSystem());
1700    
1701                  worldToScreen = RendererUtilities.worldToScreenTransform(refMapEnv,                  worldToScreen = RendererUtilities.worldToScreenTransform(refMapEnv,
1702                                  getVisibleRect());                                  getVisibleRect());
1703    
1704                  try {                  try {
1705                          screenToWorld = worldToScreen.createInverse();                          screenToWorld = worldToScreen.createInverse();
1706    
1707                  } catch (NoninvertibleTransformException ex) {                  } catch (final NoninvertibleTransformException ex) {
1708                          LOGGER                          LOGGER
1709                                          .error("can't invert worldToScreen to get screenToWorld!",                                          .error("can't invert worldToScreen to get screenToWorld!",
1710                                                          ex);                                                          ex);
# Line 1703  public class XMapPane extends JPanel { Line 1760  public class XMapPane extends JPanel {
1760    
1761                          // setMapArea(localContext.getAreaOfInterest());                          // setMapArea(localContext.getAreaOfInterest());
1762    
1763                          localRenderer.setContext(localContext);                          getLocalRenderer().setContext(localContext);
1764    
1765                          this.localContext.addMapLayerListListener(localContextListener);                          this.localContext.addMapLayerListListener(localContextListener);
1766    
# Line 1717  public class XMapPane extends JPanel { Line 1774  public class XMapPane extends JPanel {
1774    
1775          }          }
1776    
1777            public void setBorder(final Border b) {
1778                    super.setBorder(b);
1779            }
1780    
1781            /**
1782             * Triggers to repaint (fast) and re-render (slow) the JMapPane.
1783             */
1784            public void refresh() {
1785                    mapImageInvalid = true;
1786                    repaint();
1787            }
1788    
1789            // /**
1790            // * Triggers to use new {@link GTRenderer} and refresh the map. Should be
1791            // * called after {@link Style}s have been changed because GTRenderer is
1792            // * otherwise not working well.
1793            // */
1794            // public void refreshRenderers() {
1795            // localRenderer = GTUtil.createGTRenderer();
1796            // setLocalContext(getMapContext());
1797            // mapImageInvalid = true;
1798            // repaint();
1799            // }
1800    
1801            /**
1802             * Set the new map area.
1803             *
1804             * @param newMapArea
1805             * @return <code>true</code> if the mapArea has been changed and a repaint
1806             *         has been triggered.
1807             */
1808          public boolean setMapArea(final Envelope newMapArea) {          public boolean setMapArea(final Envelope newMapArea) {
1809                  if (newMapArea == null)                  if (newMapArea == null)
1810                          return false;                          return false;
1811                  if (getMapContext()                  if (getMapContext().getCoordinateReferenceSystem() == null)
1812                                  .getCoordinateReferenceSystem() == null) return false;                          return false;
1813                  return setMapArea(new ReferencedEnvelope(newMapArea, getMapContext()                  return setMapArea(new ReferencedEnvelope(newMapArea, getMapContext()
1814                                  .getCoordinateReferenceSystem()));                                  .getCoordinateReferenceSystem()));
1815          }          }
1816    
1817          /**          /**
1818             * Set the new map area.
1819             *
1820           * @param newMapArea           * @param newMapArea
1821           * @return <code>true</code> if the mapArea has been changed and a repaint           * @return <code>true</code> if the mapArea has been changed and a repaint
1822           *         has been triggered.           *         has been triggered.
# Line 1801  public class XMapPane extends JPanel { Line 1891  public class XMapPane extends JPanel {
1891           *           *
1892           * @param if <code>null</code>, white is used.           * @param if <code>null</code>, white is used.
1893           */           */
1894          public void setMapBackgroundColor(Color bgColor) {          public void setMapBackgroundColor(final Color bgColor) {
1895                  this.mapBackgroundColor = bgColor;                  this.mapBackgroundColor = bgColor;
1896          }          }
1897    
# Line 1859  public class XMapPane extends JPanel { Line 1949  public class XMapPane extends JPanel {
1949          }          }
1950    
1951          // /** Stored the time used for the last real rendering in ms. **/          // /** Stored the time used for the last real rendering in ms. **/
1952          // private long lastRenderingDuration = Long.MAX_VALUE;          private long lastRenderingDuration = 1000;
1953            private XMapPaneTool tool = XMapPaneTool.INFO;
1954    
1955          /**          /**
1956           * Set the minimum (nearest) allowed zoom scale. This is the bigger number           * Set the minimum (nearest) allowed zoom scale. This is the bigger number
# Line 1897  public class XMapPane extends JPanel { Line 1988  public class XMapPane extends JPanel {
1988           *           *
1989           * @param state           * @param state
1990           */           */
1991            @Deprecated
1992          public void setState(final int state) {          public void setState(final int state) {
1993                  this.state = state;                  this.state = state;
1994    
1995                  zoomMapPaneMouseListener.setEnabled((state == ZOOM_IN                  // throw new RuntimeException("Old concept.. migrate to new concept!");
1996                                  || state == ZOOM_OUT || state == PAN));  
1997                    // xMapPaneMouseListener.setEnabled((state == ZOOM_IN
1998                    // || state == ZOOM_OUT || state == PAN));
1999    
2000                  // Je nach Aktion den Cursor umsetzen                  // Je nach Aktion den Cursor umsetzen
2001                  updateCursor();                  updateCursor();
2002          }          }
2003    
2004            public void configureMouse(MouseInputType type, XMapPaneAction action) {
2005                    xMapPaneMouseListener.actions.put(type, action);
2006            }
2007            
2008            public void setTool(XMapPaneTool tool) {
2009                    this.tool = tool;
2010                    xMapPaneMouseListener.configure(tool);
2011                    setCursor(tool.cursor);
2012            }
2013    
2014          /**          /**
2015           * Standardmaessig wird der Cursor automatisch je nach MapPane-Aktion (Zoom,           * Standardmaessig wird der Cursor automatisch je nach MapPane-Aktion (Zoom,
2016           * Auswahl, ...) gesetzt. Mit dieser Methode kann ein statischer Cursor           * Auswahl, ...) gesetzt. Mit dieser Methode kann ein statischer Cursor
# Line 1967  public class XMapPane extends JPanel { Line 2071  public class XMapPane extends JPanel {
2071                          // localExecuter = new RenderingExecutor(this, 150l);                          // localExecuter = new RenderingExecutor(this, 150l);
2072                          // LOGGER.debug("starting local renderer:");                          // LOGGER.debug("starting local renderer:");
2073    
2074                          localRenderer.setJava2DHints(getJava2dHints());                          getLocalRenderer().setJava2DHints(getJava2dHints());
2075                          localRenderer.setRendererHints(getRendererHints());                          getLocalRenderer().setRendererHints(getRendererHints());
2076    
2077                          final boolean submitted = localExecuter.submit(getMapArea(),                          final boolean submitted = localExecuter.submit(getMapArea(),
2078                                          curPaintArea, (Graphics2D) getLocalImage().getGraphics(),                                          curPaintArea, (Graphics2D) getLocalImage().getGraphics(),
2079                                          localRenderer);                                          getLocalRenderer());
2080                          if (submitted)                          if (submitted)
2081                                  repaintTimer.restart();                                  repaintTimer.restart();
2082                          else                          else
# Line 1984  public class XMapPane extends JPanel { Line 2088  public class XMapPane extends JPanel {
2088                  updateCursor();                  updateCursor();
2089          }          }
2090    
2091            private RenderingHints getJava2dHints() {
2092                    return java2dHints;
2093            }
2094    
2095          /**          /**
2096           * Transformiert einen Geo-Koordinaten-Bereich in Fenster-Koordinaten.           * Transformiert einen Geo-Koordinaten-Bereich in Fenster-Koordinaten.
2097           *           *
# Line 2059  public class XMapPane extends JPanel { Line 2167  public class XMapPane extends JPanel {
2167                                  repaint();                                  repaint();
2168                          }                          }
2169                  }                  }
2170                    
2171    //
2172                  // wenn manueller Cursor gesetzt ist, dann diesen verwenden (unabhaengig                  // wenn manueller Cursor gesetzt ist, dann diesen verwenden (unabhaengig
2173                  // von der aktuellen Aktion                  // von der aktuellen Aktion
2174                  if (this.staticCursor != null) {                  if (this.staticCursor != null) {
2175                          setCursor(staticCursor);                          setCursor(staticCursor);
2176                          return;                          return;
2177                  }                  }
2178                    
2179                  if (getCursor() == SwingUtil.PANNING_CURSOR) {                  if (getCursor() == SwingUtil.PANNING_CURSOR) {
2180                          // This cursor will reset itself                          // This cursor will reset itself
2181                          return;                          return;
2182                  }                  }
2183                    
2184                  // Set the cursor depending on what tool is in use...                  setCursor(tool.cursor);
2185                  switch (state) {  //
2186                  case SELECT_TOP:  //              // Set the cursor depending on what tool is in use...
2187                  case SELECT_ONE_FROM_TOP:  //              switch (state) {
2188                  case SELECT_ALL:  //              case SELECT_TOP:
2189                          setCursor(SwingUtil.CROSSHAIR_CURSOR);  //              case SELECT_ONE_FROM_TOP:
2190                          break;  //              case SELECT_ALL:
2191                  case ZOOM_IN:  //                      setCursor(SwingUtil.CROSSHAIR_CURSOR);
2192                          setCursor(SwingUtil.ZOOMIN_CURSOR);  //                      break;
2193                          break;  //              case ZOOM_IN:
2194                  case ZOOM_OUT:  //                      setCursor(SwingUtil.ZOOMIN_CURSOR);
2195                          setCursor(SwingUtil.ZOOMOUT_CURSOR);  //                      break;
2196                          break;  //              case ZOOM_OUT:
2197                  case PAN:  //                      setCursor(SwingUtil.ZOOMOUT_CURSOR);
2198                          setCursor(SwingUtil.PAN_CURSOR);  //                      break;
2199                          break;  //              case PAN:
2200                  default:  //                      setCursor(SwingUtil.PAN_CURSOR);
2201                          setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));  //                      break;
2202                          break;  //              default:
2203                  }  //                      setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
2204    //                      break;
2205    //              }
2206          }          }
2207    
2208          /**          /**
# Line 2120  public class XMapPane extends JPanel { Line 2232  public class XMapPane extends JPanel {
2232    
2233                  final Graphics2D finalG = getFinalImage().createGraphics();                  final Graphics2D finalG = getFinalImage().createGraphics();
2234                  finalG.setBackground(getMapBackgroundColor());                  finalG.setBackground(getMapBackgroundColor());
2235                  finalG.drawImage(getPreFinalImage(), imageOrigin.x, imageOrigin.y,                  finalG.drawImage(getPreFinalImage(), getImageOrigin().x, getImageOrigin().y,
2236                                  getMapBackgroundColor(), null);                                  getMapBackgroundColor(), null);
2237    
2238                  final int finalImageHeight = getFinalImage().getHeight(null);                  // When panning, we have to clear the area around the image
2239                  final int finalImageWidth = getFinalImage().getWidth(null);                  final Rectangle painedArea = new Rectangle(getImageOrigin().x,
2240                                    getImageOrigin().y, getFinalImage().getWidth(), getFinalImage()
2241                  final Rectangle painedArea = new Rectangle(imageOrigin.x,                                                  .getHeight());
2242                                  imageOrigin.y, finalImageWidth, finalImageHeight);                  SwingUtil.clearAround(finalG, painedArea, getVisibleRect(),
2243                  SwingUtil.clearAround(finalG, painedArea, getVisibleRect());                                  getMapBackgroundColor());
2244    
2245                  addGadgets(finalG, false);  //              addGadgets(finalG, false);
2246    
2247                  finalG.dispose();                  finalG.dispose();
2248    
# Line 2147  public class XMapPane extends JPanel { Line 2259  public class XMapPane extends JPanel {
2259           *            <code>false</code>, it will only depend on           *            <code>false</code>, it will only depend on
2260           *            {@link #localExecuter.isRunning} and #bgExecuter.isRunning           *            {@link #localExecuter.isRunning} and #bgExecuter.isRunning
2261           */           */
2262          private void addGadgets(final Graphics2D graphics, boolean forceWait) {          private void addGadgets(final Graphics2D graphics, final boolean forceWait) {
2263    
2264                  // Paint a logo to the bottom right if available                  // Paint a logo to the bottom right if available
2265                  if (mapImage != null) {                  if (mapImage != null) {
2266                          Rectangle visibleRect = getVisibleRect();                          final Rectangle visibleRect = getVisibleRect();
2267                          graphics.drawImage(mapImage, visibleRect.width                          graphics.drawImage(mapImage, visibleRect.width
2268                                          - mapImage.getWidth() - 10, getVisibleRect().height                                          - mapImage.getWidth() - 10, getVisibleRect().height
2269                                          - mapImage.getHeight() - 10, null);                                          - mapImage.getHeight() - 10, null);
# Line 2177  public class XMapPane extends JPanel { Line 2289  public class XMapPane extends JPanel {
2289    
2290                          graphics.setColor(c);                          graphics.setColor(c);
2291    
2292                          y += 24;                          y += 21;
2293                  }                  }
2294    
2295                  if (!renderingErrors.isEmpty() && isShowExceptions()) {                  if (!renderingErrors.isEmpty() && isShowExceptions()) {
# Line 2185  public class XMapPane extends JPanel { Line 2297  public class XMapPane extends JPanel {
2297                          final Color c = graphics.getColor();                          final Color c = graphics.getColor();
2298                          graphics.setFont(errorFont);                          graphics.setFont(errorFont);
2299    
2300                          for (Exception ex : renderingErrors) {                          for (final Exception ex : renderingErrors) {
2301    
2302                                  String errStr = ex.getLocalizedMessage();                                  String errStr = ex.getLocalizedMessage();
2303    
# Line 2194  public class XMapPane extends JPanel { Line 2306  public class XMapPane extends JPanel {
2306                                  if (errStr == null)                                  if (errStr == null)
2307                                          errStr = "unknown error: " + ex.getClass().getSimpleName();                                          errStr = "unknown error: " + ex.getClass().getSimpleName();
2308    
2309                                  graphics.setColor(Color.WHITE);                                  graphics.setColor(getMapBackgroundColor());
2310                                  graphics.drawString(errStr, 5, y);                                  graphics.drawString(errStr, 5, y);
2311                                  graphics.setColor(Color.RED);                                  graphics.setColor(Color.RED);
2312                                  graphics.drawString(errStr, 6, y + 1);                                  graphics.drawString(errStr, 6, y + 1);
# Line 2222  public class XMapPane extends JPanel { Line 2334  public class XMapPane extends JPanel {
2334                  final CoordinateReferenceSystem mapCRS = getMapContext()                  final CoordinateReferenceSystem mapCRS = getMapContext()
2335                                  .getCoordinateReferenceSystem();                                  .getCoordinateReferenceSystem();
2336                  final CoordinateReferenceSystem fCRS = features.getSchema()                  final CoordinateReferenceSystem fCRS = features.getSchema()
2337                                  .getGeometryDescriptor().getCoordinateReferenceSystem();                                  .getCoordinateReferenceSystem();
2338    
2339                  ReferencedEnvelope _mapArea;                  ReferencedEnvelope _mapArea;
2340                  if (mapArea == null)                  if (mapArea == null)
# Line 2315  public class XMapPane extends JPanel { Line 2427  public class XMapPane extends JPanel {
2427           * @param center           * @param center
2428           *            position in window coordinates           *            position in window coordinates
2429           * @param zoomFaktor           * @param zoomFaktor
2430           *            > 1 for zoom in, < 1 for zoom out. Default is 1.33.           *            > 1 for zoom out, < 1 for zoom in. Default is .5
2431           */           */
2432          public void zoomTo(Point center, Double zoomFaktor) {          public void zoomTo(Point center, Double zoomFaktor) {
2433                  if (zoomFaktor == null || zoomFaktor == 0.)                  if (zoomFaktor == null || zoomFaktor == 0.)
2434                          zoomFaktor = 2.;                          zoomFaktor = .5;
2435    
2436                  final Point2D gcenter = getScreenToWorld().transform(center, null);                  final Point2D gcenter = getScreenToWorld().transform(center, null);
2437                  center = null;                  center = null;
# Line 2340  public class XMapPane extends JPanel { Line 2452  public class XMapPane extends JPanel {
2452                                  .getWidth()) / 2., (mapArea.getHeight() * zoomFaktor - mapArea                                  .getWidth()) / 2., (mapArea.getHeight() * zoomFaktor - mapArea
2453                                  .getHeight()) / 2.);                                  .getHeight()) / 2.);
2454    
2455                  // TODO we actually want that                  // // Move the newMapArea above the new center if we zoom in:
2456                  // // Move the newMapArea above the new center                  newMapArea.translate(gcenter.getX() - mapArea.centre().x, gcenter
2457                  // newMapArea.translate(gcenter.getX() - mapArea.centre().x, gcenter                                  .getY()
2458                  // .getY()                                  - mapArea.centre().y);
                 // - mapArea.centre().y);  
2459    
2460                  setMapArea(newMapArea);                  setMapArea(newMapArea);
2461          }          }
# Line 2353  public class XMapPane extends JPanel { Line 2464  public class XMapPane extends JPanel {
2464           * Shall non-fatal rendering exceptions be reported in the mappane or be           * Shall non-fatal rendering exceptions be reported in the mappane or be
2465           * dropped quitely.           * dropped quitely.
2466           */           */
2467          public void setShowExceptions(boolean showExceptions) {          public void setShowExceptions(final boolean showExceptions) {
2468                  this.showExceptions = showExceptions;                  this.showExceptions = showExceptions;
2469          }          }
2470    
# Line 2364  public class XMapPane extends JPanel { Line 2475  public class XMapPane extends JPanel {
2475                  return showExceptions;                  return showExceptions;
2476          }          }
2477    
2478            public GTRenderer getLocalRenderer() {
2479                    return localRenderer;
2480            }
2481    
2482            /**
2483             * Setzt den Kartenausschnitt auf die Ausdehnung eines bestimmten Layers.
2484             * Macht nichts, wenn {@code null} uebergeben wird.
2485             *
2486             * <br>
2487             *
2488             * @param layer
2489             *            ein Layer
2490             */
2491            public void zoomToLayer(MapLayer layer) {
2492                    if (layer == null)
2493                            return;
2494                    try {
2495    
2496                            // BB umrechnen von Layer-CRS in Map-CRS
2497                            final CoordinateReferenceSystem targetCRS = getMapContext()
2498                                            .getCoordinateReferenceSystem();
2499                            final CoordinateReferenceSystem sourceCRS = layer
2500                                            .getFeatureSource().getSchema()
2501                                            .getCoordinateReferenceSystem();
2502    
2503                            Envelope mapAreaNew;
2504                            if (!CRS.equalsIgnoreMetadata(sourceCRS, targetCRS)) {
2505                                    mapAreaNew = JTSUtil.transformEnvelope(layer.getFeatureSource()
2506                                                    .getBounds(), sourceCRS, targetCRS);
2507                            } else {
2508                                    try {
2509                                            mapAreaNew = layer.getFeatureSource().getBounds();
2510                                    } catch (java.lang.IllegalArgumentException e) {
2511                                            LOGGER.error("Can't calc layers bounds...", e);
2512                                            mapAreaNew = null;
2513    
2514                                            /**
2515                                             *
2516                                             23.10.2009 11:20:50
2517                                             * org.geotools.data.shapefile.shp.PolygonHandler read
2518                                             * WARNUNG: only one hole in this polygon record ERROR
2519                                             * JMapPane zoomToLayer Zoom to layer did not terminate
2520                                             * correctly java.lang.IllegalArgumentException: Points of
2521                                             * LinearRing do not form a closed linestring at
2522                                             * com.vividsolutions
2523                                             * .jts.geom.LinearRing.validateConstruction
2524                                             * (LinearRing.java:105) at
2525                                             * com.vividsolutions.jts.geom.LinearRing
2526                                             * .<init>(LinearRing.java:100) at
2527                                             * com.vividsolutions.jts.geom
2528                                             * .GeometryFactory.createLinearRing
2529                                             * (GeometryFactory.java:339) at
2530                                             * org.geotools.data.shapefile.
2531                                             * shp.PolygonHandler.read(PolygonHandler.java:188) at
2532                                             * org.geotools
2533                                             * .data.shapefile.shp.ShapefileReader$Record.shape
2534                                             * (ShapefileReader.java:106) at
2535                                             * org.geotools.data.shapefile.
2536                                             * ShapefileAttributeReader.next(
2537                                             * ShapefileAttributeReader.java:157) at
2538                                             * org.geotools.data.shapefile
2539                                             * .indexed.IndexedShapefileAttributeReader
2540                                             * .next(IndexedShapefileAttributeReader.java:122) at
2541                                             * org.geotools
2542                                             * .data.FIDFeatureReader.next(FIDFeatureReader.java:96) at
2543                                             * org.geotools.data.FIDFeatureReader.next(FIDFeatureReader.
2544                                             * java:55) at org.geotools.data.MaxFeatureReader.next(
2545                                             * MaxFeatureReader.java:61) at
2546                                             * org.geotools.data.MaxFeatureReader
2547                                             * .next(MaxFeatureReader.java:61)
2548                                             **/
2549                                    }
2550                            }
2551    
2552                            // Kartenbereich um 10% vergroessern, damit z.B. auch ein
2553                            // Punkt-Layer,
2554                            // welches nur aus 2 Punnkten besteht, sichtbar ist (Punkte liegen
2555                            // sonst
2556                            // genau auf dem Rand der angezeigten Flaeche)
2557    
2558                            if (mapAreaNew != null) {
2559                                    mapAreaNew.expandBy(mapAreaNew.getWidth() * 0.1, mapAreaNew
2560                                                    .getHeight() * 0.1);
2561                                    setMapArea(mapAreaNew);
2562                            } else {
2563                                    LOGGER
2564                                                    .warn("Couldn't transformEnvelope when zooming to the layer");
2565                            }
2566                    } catch (Exception err) {
2567                            LOGGER.error("Zoom to layer did not terminate correctly", err);
2568                    }
2569            }
2570    
2571            /**
2572             * Zooms the {@link SelectableXMapPane} to the {@link Envelope} of a layer.
2573             *
2574             * <br>
2575             * A refresh of the map is not done automatically
2576             *
2577             * @param index
2578             *            Index of the {@link MapLayer} in the {@link MapContext} (from
2579             *            back to top)
2580             *
2581             * @author <a href="mailto:[email protected]">Stefan Alfons
2582             *         Kr&uuml;ger</a>
2583             */
2584            public void zoomToLayer(int index) {
2585                    final MapContext context = getMapContext();
2586                    if (context != null)
2587                            zoomToLayer(context.getLayer(index));
2588            }
2589    
2590            /**
2591             * Zooms the {@link SelectableXMapPane} to the {@link Envelope} of the
2592             * selected layer. The layer is selected by the idx, counting from front to
2593             * back, like humans would expect in a {@link JList}
2594             *
2595             * <br>
2596             * A refresh of the map is not done automatically
2597             *
2598             *
2599             *
2600             * @param index
2601             *            Reverse index of the {@link MapLayer} in the
2602             *            {@link MapContext}
2603             *
2604             * @author <a href="mailto:[email protected]">Stefan Alfons
2605             *         Kr&uuml;ger</a>
2606             */
2607            public void zoomToLayerIdxReverse(int index) {
2608                    zoomToLayer(getMapContext().getLayerCount() - 1 - index);
2609            }
2610    
2611            /**
2612             * Aktiviert oder deaktiviert das AntiAliasing for diese
2613             * {@link SelectableXMapPane}. AntiALiasing ist besonders fuer
2614             * Textbeschriftung sehr schoen, verbraucht aber auch mehr Performance.
2615             *
2616             * @author <a href="mailto:[email protected]">Stefan Alfons
2617             *         Kr&uuml;ger</a>
2618             */
2619            public void setAntiAliasing(final boolean aa) {
2620                    // LOGGER.info("Setting AntiAliasing for this JMapPane to " + aa);
2621                    RenderingHints java2DHints = java2dHints;
2622                    if (java2DHints == null) {
2623                            java2DHints = GeoTools.getDefaultHints();
2624                    }
2625    
2626                    java2DHints.put(RenderingHints.KEY_ANTIALIASING,
2627                                    aa ? RenderingHints.VALUE_ANTIALIAS_ON
2628                                                    : RenderingHints.VALUE_ANTIALIAS_OFF);
2629                    java2DHints.put(RenderingHints.KEY_TEXT_ANTIALIASING,
2630                                    aa ? RenderingHints.VALUE_TEXT_ANTIALIAS_ON
2631                                                    : RenderingHints.VALUE_TEXT_ANTIALIAS_OFF);
2632                    java2DHints.put(RenderingHints.KEY_RENDERING,
2633                                    aa ? RenderingHints.VALUE_RENDER_QUALITY
2634                                                    : RenderingHints.VALUE_RENDER_SPEED);
2635    
2636            }
2637    
2638            public Point getImageOrigin() {
2639                    return imageOrigin;
2640            }
2641    
2642  }  }

Legend:
Removed from v.557  
changed lines
  Added in v.653

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26