Searched refs:preferredWidth (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableColumn.java145 private int preferredWidth; field in class:TableColumn
259 preferredWidth = this.width = Math.max(width, 0);
529 * Sets this column's preferred width to <code>preferredWidth</code>.
530 * If <code>preferredWidth</code> exceeds the minimum or maximum width,
535 * <code>preferredWidth</code>,
538 * @param preferredWidth the new preferred width
545 public void setPreferredWidth(int preferredWidth) { argument
546 int old = this.preferredWidth;
547 this.preferredWidth = Math.min(Math.max(preferredWidth, minWidt
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXCustomCursor.java48 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 DXToolkit.java1085 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 DCCustomCursor.java114 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 DLWCToolkit.java243 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 DVariableHeightLayoutCache.java1030 protected int preferredWidth; field in class:VariableHeightLayoutCache.TreeStateNode
1177 return preferredWidth;
1366 preferredWidth = preferredHeight = 0;
1371 preferredWidth = preferredHeight = 0;
1376 preferredWidth = bounds.width;
/openjdk7/jdk/src/share/classes/sun/awt/
H A DHToolkit.java230 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) argument
H A DHeadlessToolkit.java252 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DMToolkit.java560 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 DToolkit.java1501 * @param preferredWidth the preferred cursor width the component would like
1512 public Dimension getBestCursorSize(int preferredWidth, argument
1519 getBestCursorSize(preferredWidth, preferredHeight);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWToolkit.java737 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) { argument

Completed in 69 milliseconds