modules/graphics/src/main/java/com/sun/javafx/tk/ScreenConfigurationAccessor.java

Print this page




  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.javafx.tk;
  27 
  28 /*
  29  */
  30 public interface ScreenConfigurationAccessor {
  31     public int getMinX(Object obj);
  32     public int getMinY(Object obj);
  33     public int getWidth(Object obj);
  34     public int getHeight(Object obj);
  35     public int getVisualMinX(Object obj);
  36     public int getVisualMinY(Object obj);
  37     public int getVisualHeight(Object obj);
  38     public int getVisualWidth(Object obj);
  39     public float getDPI(Object obj);
  40     public float getUIScale(Object obj);
  41     public float getRenderScale(Object obj);
  42 }


  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.javafx.tk;
  27 
  28 /*
  29  */
  30 public interface ScreenConfigurationAccessor {
  31     public int getMinX(Object obj);
  32     public int getMinY(Object obj);
  33     public int getWidth(Object obj);
  34     public int getHeight(Object obj);
  35     public int getVisualMinX(Object obj);
  36     public int getVisualMinY(Object obj);
  37     public int getVisualHeight(Object obj);
  38     public int getVisualWidth(Object obj);
  39     public float getDPI(Object obj);
  40     public float getRecommendedOutputScaleX(Object obj);
  41     public float getRecommendedOutputScaleY(Object obj);
  42 }