Lines Matching refs:visibleRect
3432 * @param visibleRect the view area visible within the viewport
3440 public int getScrollableUnitIncrement(Rectangle visibleRect,
3445 (0, visibleRect.y);
3449 if(rowBounds.y != visibleRect.y) {
3452 return Math.max(0, (visibleRect.y - rowBounds.y));
3454 return (rowBounds.y + rowBounds.height - visibleRect.y);
3474 * width of <code>visibleRect</code>, based on <code>orientation</code>.
3476 * @param visibleRect the view area visible within the viewport
3484 public int getScrollableBlockIncrement(Rectangle visibleRect,
3486 return (orientation == SwingConstants.VERTICAL) ? visibleRect.height :
3487 visibleRect.width;