]> gerrit.simantics Code Review - simantics/district.git/commitdiff
Some initial fixes for DPI in map nodes (lot's TODO still) 57/2757/1
authorjsimomaa <jani.simomaa@gmail.com>
Wed, 6 Mar 2019 20:13:54 +0000 (22:13 +0200)
committerjsimomaa <jani.simomaa@gmail.com>
Wed, 6 Mar 2019 20:13:54 +0000 (22:13 +0200)
gitlab #36

Change-Id: If7022ea127d595ea6eaa89878fce38212c81734f

org.simantics.district.maps/src/org/simantics/maps/sg/MapAttributionNode.java
org.simantics.district.maps/src/org/simantics/maps/sg/MapLocationZoomInfoNode.java

index 66543aac457858b4b8db49eb8d5c108244d7f692..d97d22ebd5eec6dff9388cfefe38b8c02db04160 100644 (file)
@@ -10,6 +10,7 @@ import java.awt.geom.AffineTransform;
 import java.awt.geom.Rectangle2D;
 
 import org.simantics.scenegraph.g2d.G2DNode;
+import org.simantics.scenegraph.utils.DPIUtil;
 
 public class MapAttributionNode extends G2DNode {
 
@@ -33,7 +34,7 @@ public class MapAttributionNode extends G2DNode {
         g2d.setTransform(new AffineTransform());
         // do the rendering magic
         
-        Font rulerFont = new Font("Tahoma", Font.PLAIN, 9);
+        Font rulerFont = new Font("Tahoma", Font.PLAIN, DPIUtil.upscale(9));
         
         //g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
         g2d.setStroke(new BasicStroke(1));
@@ -43,7 +44,9 @@ public class MapAttributionNode extends G2DNode {
         if (bounds == null)
             return; // FIXME
 
-        String str = "Map data © OpenStreetMap contributors";
+        String str = "Map data \u00A9 OpenStreetMap contributors";
+        
+        g2d.setFont(rulerFont);
         FontMetrics fm = g2d.getFontMetrics();
         Rectangle2D r = fm.getStringBounds(str, g2d);
 
index bad499e6f02cb7ca6408608495b1a23753ccc304..9e027ecbbf27b535960a3574830b4fa480cb5b41 100644 (file)
@@ -15,6 +15,7 @@ import org.simantics.g2d.participant.MouseUtil;
 import org.simantics.g2d.participant.MouseUtil.MouseInfo;
 import org.simantics.maps.MapScalingTransform;
 import org.simantics.scenegraph.g2d.G2DNode;
+import org.simantics.scenegraph.utils.DPIUtil;
 
 public class MapLocationZoomInfoNode extends G2DNode {
 
@@ -40,7 +41,7 @@ public class MapLocationZoomInfoNode extends G2DNode {
         g2d.setTransform(new AffineTransform());
         // do the rendering magic
         
-        Font rulerFont = new Font("Tahoma", Font.PLAIN, 9);
+        Font rulerFont = new Font("Tahoma", Font.PLAIN, DPIUtil.upscale(9));
         
         //g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
         g2d.setStroke(new BasicStroke(1));
@@ -68,6 +69,7 @@ public class MapLocationZoomInfoNode extends G2DNode {
         }
         
         String str = "X: " + formatValue(startLon, MAX_DIGITS) + ", Y: " + formatValue(startLat, MAX_DIGITS) + ", Z: " + zoomLevel;
+        g2d.setFont(rulerFont);
         FontMetrics fm = g2d.getFontMetrics();
         Rectangle2D r = fm.getStringBounds(str, g2d);