Searched defs:maxH (Results 1 - 5 of 5) sorted by relevance
/openjdk7/jdk/src/macosx/classes/sun/lwawt/ |
H A D | PlatformWindow.java | 137 public void setSizeConstraints(int minW, int minH, int maxW, int maxH); argument
|
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/ |
H A D | CPlatformEmbeddedFrame.java | 183 public void setSizeConstraints(int minW, int minH, int maxW, int maxH) {} argument
|
H A D | CViewPlatformEmbeddedFrame.java | 174 public void setSizeConstraints(int minW, int minH, int maxW, int maxH) { argument
|
H A D | CPlatformWindow.java | 56 private static native void nativeSetNSWindowMinMax(long nsWindowPtr, double minW, double minH, double maxW, double maxH); argument 690 public void setSizeConstraints(int minW, int minH, int maxW, int maxH) { argument 691 nativeSetNSWindowMinMax(getNSWindowPtr(), minW, minH, maxW, maxH);
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/ |
H A D | AbstractRegionPainter.java | 535 * @param maxH The maximium scale in the horizontal direction to use before punting and redrawing from scratch. 536 * For example, if maxH is 2, then we will attempt to scale any cached images up to 2x the canvas 537 * width before redrawing from scratch. Reasonable maxH values may improve painting performance. 545 CacheMode cacheMode, double maxH, double maxV) { 546 if (maxH < 1 || maxH < 1) { 547 throw new IllegalArgumentException("Both maxH and maxV must be >= 1"); 554 this.maxHorizontalScaleFactor = maxH; 544 PaintContext(Insets insets, Dimension canvasSize, boolean inverted, CacheMode cacheMode, double maxH, double maxV) argument
|
Completed in 43 milliseconds