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

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaPopupMenuUI.java59 final Rectangle popupBounds = popupMenu.getBounds(); // NB: origin is still at 0,0
60 paintRoundRect(g2d, popupBounds);
61 clipEdges(g2d, popupBounds);
68 protected void paintRoundRect(final Graphics2D g2d, final Rectangle popupBounds) { argument
76 g2d.drawRoundRect(-2, -2, popupBounds.width + 3, popupBounds.height + 3, 12, 12);
80 protected void clipEdges(final Graphics2D g2d, final Rectangle popupBounds) { argument
88 popupBounds.setLocation(popupMenu.getLocationOnScreen());
91 if (popupBounds.contains(invokerCenter)) {
100 final Point popupCenter = new Point((int)popupBounds
[all...]

Completed in 29 milliseconds