Searched defs:clipBounds (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalTreeUI.java181 Rectangle clipBounds = g.getClipBounds();
184 (tree, 0, clipBounds.y));
186 (tree, 0, clipBounds.y + clipBounds.height - 1));
201 g.drawLine(clipBounds.x, rowBounds.y,
202 clipBounds.x + clipBounds.width, rowBounds.y);
208 protected void paintVerticalPartOfLeg(Graphics g, Rectangle clipBounds, argument
211 super.paintVerticalPartOfLeg(g, clipBounds, insets, path);
215 protected void paintHorizontalPartOfLeg(Graphics g, Rectangle clipBounds, argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCompositeCRenderer.java162 clipBounds(sg2d, compositingBounds);
216 clipBounds(sg2d, compositingBounds);
271 clipBounds(sg2d, compositingBounds);
329 void clipBounds(SunGraphics2D sg2d, Rectangle2D bounds) { method in class:CompositeCRenderer
331 * System.err.println("clipBounds"); System.err.println(" transform="+sg2d.transform);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java478 protected void paintHorizontalPartOfLeg(Graphics g, Rectangle clipBounds, argument
485 super.paintHorizontalPartOfLeg(g, clipBounds, insets, bounds,
506 Rectangle clipBounds, Insets insets,
509 super.paintVerticalPartOfLeg(g, clipBounds, insets, path);
525 SynthContext cellContext, Graphics g, Rectangle clipBounds,
592 protected void paintExpandControl(Graphics g, Rectangle clipBounds, argument
604 super.paintExpandControl(g, clipBounds, insets, bounds, path, row,
505 paintVerticalPartOfLeg(Graphics g, Rectangle clipBounds, Insets insets, TreePath path) argument
523 paintRow(TreeCellRenderer renderer, DefaultTreeCellRenderer dtcr, SynthContext treeContext, SynthContext cellContext, Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, Rectangle rowBounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTreeUI.java140 final Rectangle clipBounds = g.getClipBounds();
142 final int beginRow = getRowForPath(tree, getClosestPathForLocation(tree, 0, clipBounds.y));
143 final int endRow = getRowForPath(tree, getClosestPathForLocation(tree, 0, clipBounds.y + clipBounds.height - 1));
154 if (rowBounds != null) g.drawLine(clipBounds.x, rowBounds.y, clipBounds.x + clipBounds.width, rowBounds.y);
159 protected void paintVerticalPartOfLeg(final Graphics g, final Rectangle clipBounds, final Insets insets, final TreePath path) { argument
161 super.paintVerticalPartOfLeg(g, clipBounds, insets, path);
165 protected void paintHorizontalPartOfLeg(final Graphics g, final Rectangle clipBounds, fina argument
185 paintExpandControl(final Graphics g, final Rectangle clipBounds, final Insets insets, final Rectangle bounds, final TreePath path, final int row, final boolean isExpanded, final boolean hasBeenExpanded, final boolean isLeaf) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java1343 * NOT modify <code>clipBounds</code>, or <code>insets</code>.<p>
1346 protected void paintHorizontalPartOfLeg(Graphics g, Rectangle clipBounds, argument
1363 int clipLeft = clipBounds.x;
1364 int clipRight = clipBounds.x + clipBounds.width;
1365 int clipTop = clipBounds.y;
1366 int clipBottom = clipBounds.y + clipBounds.height;
1400 * NOT modify <code>clipBounds</code>, <code>insets</code>.<p>
1402 protected void paintVerticalPartOfLeg(Graphics g, Rectangle clipBounds, argument
1477 paintExpandControl(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
1516 paintRow(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
[all...]

Completed in 46 milliseconds