Searched refs:fixedCellHeight (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java203 * {@code fixedCellHeight} on the list, or have these values calculated
213 * // compute values for the fixedCellWidth and fixedCellHeight
315 private int fixedCellHeight = -1; field in class:JList
565 * to update the fixedCellWidth and fixedCellHeight properties from the
568 * This method sets fixedCellWidth and fixedCellHeight but does <b>not</b>
593 fixedCellHeight = d.height;
615 * {@code fixedCellHeight} properties by requesting the cell renderer
625 * {@code fixedCellHeight}, and {@code fixedCellWidth} properties may be
638 * <code>fixedCellHeight</code>
653 * then recompute fixedCellWidth and fixedCellHeight
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java529 * and the maximum width of the cells. If JList.fixedCellHeight
531 * (cellVerticalMargins + fixedCellHeight) * model.getSize() where
1320 * values of fixedCellWidth, fixedCellHeight, and prototypeCellValue.
1326 /* If both JList fixedCellWidth and fixedCellHeight have been
1331 int fixedCellHeight = list.getFixedCellHeight();
1336 if (fixedCellHeight != -1) {
1337 cellHeight = fixedCellHeight;
1345 /* If either of JList fixedCellWidth and fixedCellHeight haven't
1352 if ((fixedCellWidth == -1) || (fixedCellHeight == -1)) {
1367 if (fixedCellHeight
1399 updateHorizontalLayoutState(int fixedCellWidth, int fixedCellHeight) argument
[all...]

Completed in 37 milliseconds