Searched refs:getBounds (Results 101 - 125 of 309) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DBufferedImageGraphicsConfig.java170 public Rectangle getBounds() { method in class:BufferedImageGraphicsConfig
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifButtonUI.java118 Rectangle r = oldClip.getBounds();
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphicsConfiguration.java51 * component, use {@link #getBounds() getBounds} to get the bounds of
59 * Rectangle bounds = gc.getBounds();
64 * environment, call <code>getBounds</code> on all of the
70 * You can also use <code>getBounds</code> to determine the bounds
71 * of the virtual device. To do this, first call <code>getBounds</code> on all
74 * from the calls to <code>getBounds</code>. The union is the
90 * virtualBounds.union(gc[i].getBounds());
401 public abstract Rectangle getBounds(); method in class:GraphicsConfiguration
/openjdk7/jdk/test/java/awt/Component/isLightweightCrash/
H A DStubPeerCrash.java146 public Rectangle getBounds(){return null;}; method in class:StubComponentPeer
/openjdk7/jdk/test/java/awt/Graphics2D/DrawString/
H A DDrawStrSuper.java69 g2d.fill(tl.getBounds());
/openjdk7/jdk/test/java/awt/print/PaintSetEnabledDeadlock/
H A DPaintSetEnabledDeadlock.java120 Rectangle rect = getBounds();
/openjdk7/jdk/test/javax/swing/JPopupMenu/7156657/
H A Dbug7156657.java98 return popupMenu.getBounds();
/openjdk7/jdk/test/javax/swing/JSplitPane/4885629/
H A Dbug4885629.java101 Rectangle rect = ((BasicSplitPaneUI) sp.getUI()).getDivider().getBounds();
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DTextRenderer.java57 int[] bounds = gl.getBounds();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicDesktopIconUI.java222 startingBounds = desktopIcon.getBounds();
289 Rectangle r = f.getBounds();
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DComponentView.java116 (Rectangle) a : a.getBounds();
333 Rectangle r = a.getBounds();
H A DDefaultHighlighter.java62 Rectangle a = component.getBounds();
404 Rectangle alloc = bounds.getBounds();
472 r = bounds.getBounds();
483 (Rectangle)shape : shape.getBounds();
541 alloc = bounds.getBounds();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHRuleView.java116 a.getBounds();
256 Rectangle r = a.getBounds();
/openjdk7/jdk/src/share/classes/sun/awt/
H A DEmbeddedFrame.java374 * but getBounds() after setBoundsPrivate() may return unpredictable value.
397 * introduced, and they work just the same way as getLocation() and getBounds()
404 * but getBounds() after setBoundsPrivate() may return unpredictable value.
435 * but getBounds() after setBoundsPrivate() may return unpredictable value.
462 * introduced, and they work just the same way as getLocation() and getBounds()
469 * but getBounds() after setBoundsPrivate() may return unpredictable value.
472 * @see java.awt.Component#getBounds
484 return getBounds();
541 return getBounds();
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DCompositionArea.java206 Rectangle2D bounds = composedTextLayout.getBounds();
299 if (layout.getBounds().contains(x, y)) {
/openjdk7/jdk/src/share/classes/sun/font/
H A DGraphicComponent.java163 Rectangle2D bounds = graphic.getBounds();
282 Rectangle2D bounds = graphic.getBounds();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DExtendedSatelliteComponent.java79 Rectangle bounds = scene.getBounds();
151 Rectangle bounds = scene.getBounds();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DExtendedSatelliteComponent.java80 Rectangle bounds = scene.getBounds();
154 Rectangle bounds = scene.getBounds();
H A DDiagramScene.java176 Rectangle r = new Rectangle(w.getBounds());
682 Rectangle r = b.getBounds();
695 Rectangle bounds = this.getScrollPane().getBounds();
748 Point location = new Point(b.getBounds().x + offx2, b.getBounds().y + offy2);
749 Rectangle r = new Rectangle(location.x, location.y, b.getBounds().width, b.getBounds().height);
856 Rectangle r = fw.getBounds();
1150 Rectangle r = fw.getBounds();
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DVariableGridLayout.java130 Rectangle b = c.getBounds();
187 Rectangle b = c.getBounds();
/openjdk7/jdk/test/sun/java2d/DirectX/OnScreenRenderingResizeTest/
H A DOnScreenRenderingResizeTest.java112 int maxW = gc.getBounds().width /2;
113 int maxH = gc.getBounds().height/2;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXChoicePeer.java790 Rectangle choiceRec = XChoicePeer.this.getBounds();
855 if (helper.isInVertSB(getBounds(), local.x, local.y)) {
857 helper.handleVSBEvent(e, getBounds(), local.x, local.y);
866 helper.handleVSBEvent(e, getBounds(), local.x, local.y);
879 helper.handleVSBEvent(e, getBounds(), local.x, local.y);
944 getBounds());
987 Rectangle bounds = getBounds();
1099 Rectangle choiceRect = getBounds();
H A DXEmbeddedFramePeer.java154 Rectangle oldBounds = getBounds();
200 // don't use getBounds() inherited from XDecoratedPeer
201 public Rectangle getBounds() { method in class:XEmbeddedFramePeer
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DSurfaceData.java264 Rectangle r = peer.getBounds();
778 public Rectangle getBounds() { method in class:D3DSurfaceData
780 Rectangle r = peer.getBounds();
894 peer.getBounds().width, peer.getBounds().height,
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalInternalFrameTitlePane.java437 if (frame.isIconifiable()) { rect = iconButton.getBounds(); }
438 else if (frame.isMaximizable()) { rect = maxButton.getBounds(); }
439 else if (frame.isClosable()) { rect = closeButton.getBounds(); }

Completed in 198 milliseconds

1234567891011>>