com.actelion.research.gui.hidpi.HiDPIUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
/*
* Copyright (c) 1997 - 2016
* Actelion Pharmaceuticals Ltd.
* Gewerbestrasse 16
* CH-4123 Allschwil, Switzerland
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of the the copyright holder nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
package com.actelion.research.gui.hidpi;
import java.awt.*;
import java.awt.geom.AffineTransform;
import java.lang.reflect.Method;
import java.util.Locale;
import java.util.WeakHashMap;
/**
* @author max
*/
public class HiDPIUtil {
private static final String version = System.getProperty("java.version");
public static final boolean IS_JAVA_8_OR_OLDER = version.startsWith("1.");
public static final boolean IS_JAVA_8 = version.startsWith("1.8");
public static final boolean IS_JAVA_9 = version.startsWith("9");
public static final boolean IS_JAVA_10 = version.startsWith("10");
public static final boolean IS_JAVA_11 = version.startsWith("11");
/**
* Tries to look up the System property for the given key. In untrusted
* environments this may throw a SecurityException. In this case we catch
* the exception and answer null
.
*
* @param key
* the name of the system property
* @return the system property's String value, or null
if
* there's no such value, or a SecurityException has been caught
*/
public static String getSystemProperty(String key) {
try {
return System.getProperty(key);
} catch (SecurityException e) {
// log("Can't read the System property " + key + ".");
return null;
}
}
private static boolean containsIgnoreCase(String str, String searchFor) {
return str != null
&& str.toUpperCase(Locale.ENGLISH).contains(
searchFor.toUpperCase(Locale.ENGLISH));
}
private static final String JAVA_VENDOR = getSystemProperty("java.vendor");
public static final boolean IS_VENDOR_APPLE = containsIgnoreCase(JAVA_VENDOR, "Apple");
/**
* Utility class for retina routine
*/
private final static class DetectRetinaKit {
private final static WeakHashMap devicesScaleFactorCacheMap = new WeakHashMap();
/**
* This uses {@link GraphicsConfiguration}'s default transform as detailed at
* https://bugs.openjdk.java.net/browse/JDK-8172962 (starting in Java 9).
*/
private static double getScaleFactorModern(GraphicsDevice device) {
GraphicsConfiguration graphicsConfig = device.getDefaultConfiguration();
AffineTransform tx = graphicsConfig.getDefaultTransform();
double scaleX = tx.getScaleX();
double scaleY = tx.getScaleY();
return Math.max(scaleX, scaleY);
}
/**
* The best way to understand whether we are on a retina device is [NSScreen
* backingScaleFactor] But we should not invoke it from any thread. We do not have access to
* the AppKit thread on the other hand. So let's use a dedicated method. It is rather safe
* because it caches a value that has been got on AppKit previously.
*/
private static double getScaleFactorLegacy(GraphicsDevice device) {
try {
Method getScaleFactorMethod = Class.forName("sun.awt.CGraphicsDevice")
.getMethod("getScaleFactor");
if (getScaleFactorMethod == null) {
return 1.0;
}
int result = (Integer) getScaleFactorMethod.invoke(device);
if (result <= 0) {
return 1.0;
}
return result;
} catch (Throwable t) {
return 1.0;
}
}
private static double getScaleFactor(GraphicsDevice device) {
if (IS_VENDOR_APPLE) {
return 1.0;
}
if (devicesScaleFactorCacheMap.containsKey(device)) {
return devicesScaleFactorCacheMap.get(device);
}
double result = !IS_JAVA_8_OR_OLDER ?
getScaleFactorModern(device) : getScaleFactorLegacy(device);
devicesScaleFactorCacheMap.put(device, result);
return result;
}
/**
* This method perfectly detects retina Graphics2D for jdk7+ For Apple JDK6 it returns
* false.
*
* @param g
* graphics to be tested
* @return false if the device of the Graphics2D is not a retina device, jdk is an Apple JDK
* or Oracle API has been changed.
*/
private static double getScaleFactor(Graphics2D g) {
GraphicsDevice device = g.getDeviceConfiguration().getDevice();
return getScaleFactor(device);
}
/**
* Checks that at least one retina device is present. Do not use this method if your are
* going to make decision for a particular screen. isRetina(Graphics2D) is more preferable
*
* @return true if at least one device is a retina device
*/
private static double getScaleFactor() {
if (IS_VENDOR_APPLE) {
return 1.0f;
}
// Oracle JDK
double result = 1.0;
GraphicsEnvironment e = GraphicsEnvironment.getLocalGraphicsEnvironment();
GraphicsDevice[] devices = e.getScreenDevices();
// now get the configurations for each device
for (GraphicsDevice device : devices) {
result = Math.max(result, getScaleFactor(device));
}
return result;
}
}
public static double getScaleFactor(Graphics2D graphics) {
return DetectRetinaKit.getScaleFactor(graphics);
}
private static Double cachedScaleFactorReply = null;
public static double getScaleFactor() {
if (cachedScaleFactorReply != null) {
return cachedScaleFactorReply;
}
double result = GraphicsEnvironment.isHeadless() ? 1.0 : DetectRetinaKit.getScaleFactor();
cachedScaleFactorReply = Double.valueOf(result);
return cachedScaleFactorReply;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy