Searched refs:getCellBounds (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DListUI.java45 * the cell's bounds, as provided by {@code getCellBounds}.
83 public abstract Rectangle getCellBounds(JList list, int index1, int index2); method in class:ListUI
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java304 Rectangle rowBounds = getCellBounds(list, index, index);
371 Rectangle prev = getCellBounds(list, index - 1);
372 Rectangle me = getCellBounds(list, index);
394 rect = getCellBounds(list, index);
401 rect = getCellBounds(list, index);
417 rect = getCellBounds(list, index);
422 Rectangle prev = getCellBounds(list, index - 1);
423 Rectangle me = getCellBounds(list, index);
433 rect = getCellBounds(list, index);
436 rect = getCellBounds(lis
951 public Rectangle getCellBounds(JList list, int index1, int index2) { method in class:BasicListUI
995 private Rectangle getCellBounds(JList list, int index) { method in class:BasicListUI
[all...]
H A DBasicScrollBarUI.java1272 Rectangle rect = list.getCellBounds(index, index);
1281 Rectangle rect = list.getCellBounds(index, index);
1291 Rectangle rect = list.getCellBounds(index, index);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiListUI.java103 * Invokes the <code>getCellBounds</code> method on each UI handled by this object.
108 public Rectangle getCellBounds(JList a, int b, int c) { method in class:MultiListUI
110 ((ListUI) (uis.elementAt(0))).getCellBounds(a,b,c);
112 ((ListUI) (uis.elementAt(i))).getCellBounds(a,b,c);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java1046 Rectangle bounds = getCellBounds(first, first);
1079 Rectangle bounds = getCellBounds(location, location);
1103 bounds = getCellBounds(visIndex, visIndex);
1149 Rectangle cellBounds = getCellBounds(index, index);
1272 rect = getCellBounds(index, index);
1536 getCellBounds(index, index)) != null &&
1580 * as provided by {@code getCellBounds}. This method returns {@code -1}
1631 public Rectangle getCellBounds(int index0, int index1) { method in class:JList
1633 return (ui != null) ? ui.getCellBounds(this, index0, index1) : null;
2451 Rectangle r = getCellBounds(
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaListUI.java143 final Rectangle rowBounds = getCellBounds(list, selectedIndex, selectedIndex);
H A DAquaComboBoxUI.java358 final int page = listBox.getVisibleRect().height / listBox.getCellBounds(0, 0).height;
378 final int page = listBox.getVisibleRect().height / listBox.getCellBounds(0, 0).height;
H A DAquaComboBoxPopup.java328 final Rectangle cellBounds = list.getCellBounds(0, 0);
/openjdk7/jdk/test/javax/swing/JList/6462008/
H A Dbug6462008.java283 Rectangle r = list.getCellBounds(4, 4);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDragSourceContextPeer.java326 selectedOutline = component.getCellBounds(selectedIndices[0], selectedIndices[selectedIndices.length-1]);
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java245 Rectangle bounds = list.getCellBounds(i, i);
1360 Rectangle r = list.getCellBounds(index, index);
1837 Rectangle r = list.getCellBounds(index, index);
H A DSwingUtilities2.java676 Rectangle cellBounds = list.getCellBounds(index, index);

Completed in 85 milliseconds