Searched refs:preferredHeight (Results 1 - 11 of 11) sorted by relevance
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
H A D | XCustomCursor.java | 48 static Dimension getBestCursorSize(int preferredWidth, int preferredHeight) { argument 54 //Dimension d = new Dimension(Math.abs(preferredWidth), Math.abs(preferredHeight)); 63 XlibWrapper.XQueryBestCursor(display,root_window, Math.abs(preferredWidth),Math.abs(preferredHeight),XlibWrapper.larg1,XlibWrapper.larg2);
|
H A D | XToolkit.java | 1085 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) { argument 1087 java.lang.Math.max(1,preferredWidth), java.lang.Math.max(1,preferredHeight));
|
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/ |
H A D | CCustomCursor.java | 114 public static Dimension getBestCursorSize(final int preferredWidth, final int preferredHeight) { argument 122 final Dimension d = new Dimension(Math.max(1, Math.abs(preferredWidth)), Math.max(1, Math.abs(preferredHeight)));
|
H A D | LWCToolkit.java | 243 public Dimension getBestCursorSize(final int preferredWidth, final int preferredHeight) throws HeadlessException { argument 244 return CCustomCursor.getBestCursorSize(preferredWidth, preferredHeight);
|
/openjdk7/jdk/src/share/classes/javax/swing/tree/ |
H A D | VariableHeightLayoutCache.java | 1031 protected int preferredHeight; field in class:VariableHeightLayoutCache.TreeStateNode 1168 return preferredHeight; 1184 return (preferredHeight != 0); 1366 preferredWidth = preferredHeight = 0; 1371 preferredWidth = preferredHeight = 0; 1378 preferredHeight = getRowHeight(); 1380 preferredHeight = bounds.height; 1389 preferredHeight = 0;
|
/openjdk7/jdk/src/share/classes/sun/awt/ |
H A D | HToolkit.java | 230 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) argument
|
H A D | HeadlessToolkit.java | 252 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) argument
|
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/ |
H A D | MToolkit.java | 560 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) { argument 562 //java.lang.Math.max(1,preferredWidth), java.lang.Math.max(1,preferredHeight));
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Toolkit.java | 1503 * @param preferredHeight the preferred cursor height the component would like 1513 int preferredHeight) throws HeadlessException { 1519 getBestCursorSize(preferredWidth, preferredHeight); 1512 getBestCursorSize(int preferredWidth, int preferredHeight) argument
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/ |
H A D | BasicListUI.java | 104 private int preferredHeight; field in class:BasicListUI 538 * <td>If the visible row count is greater than zero, the preferredHeight 549 * <td>If the visible row count is greater than zero, the preferredHeight 590 height = preferredHeight; 1396 * <code>preferredHeight</code> and potentially <code>cellHeight</code> 1410 preferredHeight = insets.top + insets.bottom; 1469 preferredHeight = rowsPerColumn * cellHeight + insets.top +
|
/openjdk7/jdk/src/windows/classes/sun/awt/windows/ |
H A D | WToolkit.java | 737 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) { argument
|
Completed in 75 milliseconds