Lines Matching refs:fixedCellHeight

203  * {@code fixedCellHeight} on the list, or have these values calculated
213 * // compute values for the fixedCellWidth and fixedCellHeight
315 private int fixedCellHeight = -1;
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.
701 * Returns the value of the {@code fixedCellHeight} property.
707 return fixedCellHeight;
730 int oldValue = fixedCellHeight;
731 fixedCellHeight = height;
732 firePropertyChange("fixedCellHeight", oldValue, fixedCellHeight);
754 * {@code fixedCellHeight} properties to be re-calculated. Only one
776 * was set, then recompute fixedCellWidth and fixedCellHeight.
2400 * This is trivial if both {@code fixedCellWidth} and {@code fixedCellHeight}
2403 * insets. The height is the {@code fixedCellHeight} multiplied by the
2406 * If either {@code fixedCellWidth} or {@code fixedCellHeight} haven't been
2409 * value of {@code 256}. The height is the {@code fixedCellHeight} multiplied
2410 * by {@code visibleRowCount}, if {@code fixedCellHeight} is greater than
2416 * {@code fixedCellHeight} multiplied by the {@code visibleRowCount},
2441 int fixedCellHeight = getFixedCellHeight();
2443 if ((fixedCellWidth > 0) && (fixedCellHeight > 0)) {
2445 int height = (visibleRowCount * fixedCellHeight) + dy;
2463 fixedCellHeight = (fixedCellHeight > 0) ? fixedCellHeight : 16;
2464 return new Dimension(fixedCellWidth, fixedCellHeight * visibleRowCount);
2840 ",fixedCellHeight=" + fixedCellHeight +